]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/scripts/mtx-changer.in
Add Phil Stracchino's fix for Qt5
[bacula/bacula] / bacula / scripts / mtx-changer.in
index 6a40f72d396642c1401a5a71ee891e92088b88ad..f1dc2d3141c7176970dfb82598b2a2a27727f956 100644 (file)
@@ -1,22 +1,21 @@
 #!/bin/sh
 #
-# Bacula interface to mtx autoloader
+#   Bacula(R) - The Network Backup Solution
 #
-#  Written by Kern Sibbald
+#   Copyright (C) 2000-2016 Kern Sibbald
 #
-#  Bacula® - The Network Backup Solution
+#   The original author of Bacula is Kern Sibbald, with contributions
+#   from many others, a complete list can be found in the file AUTHORS.
 #
-#  Copyright (C) 2000-2014 Free Software Foundation Europe e.V.
+#   You may use this file and others of this release according to the
+#   license defined in the LICENSE file, which includes the Affero General
+#   Public License, v3.0 ("AGPLv3") and some additional permissions and
+#   terms pursuant to its AGPLv3 Section 7.
 #
-#  The main author of Bacula is Kern Sibbald, with contributions from many
-#  others, a complete list can be found in the file AUTHORS.
+#   This notice must be preserved when any source code is 
+#   conveyed and/or propagated.
 #
-#  You may use this file and others of this release according to the
-#  license defined in the LICENSE file, which includes the GNU Lesser
-#  General Public License, v3.0 ("LGPLv3") and some additional permissions and
-#  terms pursuant to its LGPLv3 Section 7.
-#
-#  Bacula® is a registered trademark of Kern Sibbald.
+#   Bacula(R) is a registered trademark of Kern Sibbald.
 #
 #  If you set in your Device resource
 #
@@ -32,7 +31,7 @@
 #  for example:
 #
 #  mtx-changer /dev/sg0 load 1 /dev/nst0 0 (on a Linux system)
-#
+# 
 #  will request to load the first cartidge into drive 0, where
 #   the SCSI control channel is /dev/sg0, and the read/write device
 #   is /dev/nst0.
 #  Many changers need an offline after the unload. Also many
 #   changers need a sleep 60 after the mtx load.
 #
-#  N.B. If you change the script, take care to return either
+#  N.B. If you change the script, take care to return either 
 #   the mtx exit code or a 0. If the script exits with a non-zero
 #   exit code, Bacula will assume the request failed.
 #
 
+# myversion must be the same as version in mtx-changer.conf
+myversion=2
+
 # source our conf file
 if test ! -f @scriptdir@/mtx-changer.conf ; then
   echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
@@ -71,6 +73,13 @@ if test ! -f @scriptdir@/mtx-changer.conf ; then
 fi
 . @scriptdir@/mtx-changer.conf
 
+if test "${version}" != "${myversion}" ; then
+  echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
+  echo "ERROR: @scriptdir@/mtx-changer.conf has wrong version. Wanted ${myversion}, got ${version} !!!"
+  echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
+  exit 1
+fi
+
 MTX=@MTX@
 
 if test ${debug_log} -ne 0 ; then
@@ -78,8 +87,8 @@ if test ${debug_log} -ne 0 ; then
 fi
 dbgfile="@working_dir@/mtx.log"
 debug() {
-    if test -f $dbgfile; then
-       echo "`date +\"%Y%m%d-%H:%M:%S\"` $*" >> $dbgfile
+    if test -f $dbgfile -a ${debug_level} -ge $1; then
+       echo "`date +%m%d-%H:%M:%S.%N|cut -c1-16` ${chgr_id} $2" >> $dbgfile
     fi
 }
 
@@ -107,7 +116,7 @@ make_temp_file() {
 #  So we separate STDOUT and STDERR in
 #  certain of the mtx commands. The contents of STDERR
 #  is then printed after the STDOUT produced by mtx
-#  thus we sometimes get better changer results.
+#  thus we sometimes get better changer results. 
 #
 make_err_file() {
   ERRFILE=`mktemp @working_dir@/mtx.err.XXXXXXXXXX`
@@ -122,7 +131,7 @@ make_err_file() {
 
 
 #
-# The purpose of this function to wait a maximum
+# The purpose of this function to wait a maximum 
 #   time for the drive. It will
 #   return as soon as the drive is ready, or after
 #   waiting a maximum of 300 seconds.
@@ -133,12 +142,12 @@ make_err_file() {
 #   in the code at the top of this script.
 #
 wait_for_drive() {
-  i=0
+  i=0 
   while [ $i -le 300 ]; do  # Wait max 300 seconds
     if mt -f $1 status 2>&1 | grep "${ready}" >/dev/null 2>&1; then
       break
     fi
-    debug "Device $1 - not ready, retrying..."
+    debug $dbglvl "Device $1 - not ready, retrying..."
     sleep 1
     i=`expr $i + 1`
   done
@@ -161,7 +170,7 @@ check_parm_count() {
     fi
 }
 
-# Check for special cases where only 2 arguments are needed,
+# Check for special cases where only 2 arguments are needed, 
 #  all others are a minimum of 5
 #
 case $2 in
@@ -187,11 +196,10 @@ slot=$3
 device=$4
 drive=$5
 
-debug "Parms: $ctl $cmd $slot $device $drive"
+debug $dbglvl "Parms: $ctl $cmd $slot $device $drive"
 
-case $cmd in
+case $cmd in 
    unload)
-      debug "Doing mtx -f $ctl unload $slot $drive"
 
       if test ${offline} -eq 1 ; then
        mt -f $device offline
@@ -200,33 +208,60 @@ case $cmd in
        sleep ${offline_sleep}
       fi
       make_err_file
-      ${MTX} -f $ctl unload $slot $drive 2>${ERRFILE}
-      rtn=$?
+      for i in 1 2 3 4 5 ; do
+        debug $idbglvl "Doing mtx -f $ctl unload slot=$slot drv=$drive"
+        ${MTX} -f $ctl unload $slot $drive 2>${ERRFILE}
+        rtn=$?
+        if test $rtn -eq 0 ; then
+           break
+        fi
+        grep "Error Code=" ${ERRFILE} 2>/dev/null 1>/dev/null
+        if test $? -ne 0 ; then
+           break
+        fi
+        sleep $i
+      done
       cat ${ERRFILE}
       rm -f ${ERRFILE} >/dev/null 2>&1
+      if test $rtn -ne 0 ; then
+        debug $idbglvl "FAIL: mtx -f $ctl unload slot=$slot drv=$drive"
+      fi
       exit $rtn
       ;;
 
    load)
-      debug "Doing mtx -f $ctl load $slot $drive"
       make_err_file
-      ${MTX} -f $ctl load $slot $drive 2>${ERRFILE}
-      rtn=$?
+      for i in 1 2 3 4 5 ; do
+        debug $idbglvl "Doing mtx -f $ctl load slot=$slot drv=$drive"
+        ${MTX} -f $ctl load $slot $drive 2>${ERRFILE}
+        rtn=$?
+        if test $rtn -eq 0 ; then
+           break
+        fi
+        grep "Error Code=" ${ERRFILE} 2>/dev/null 1>/dev/null
+        if test $? -ne 0 ; then
+           break
+        fi
+        sleep $i
+      done
       if test ${load_sleep} -ne 0 ; then
        sleep ${load_sleep}
       fi
       wait_for_drive $device
       cat ${ERRFILE}
       rm -f ${ERRFILE} >/dev/null 2>&1
+      if test $rtn -ne 0 ; then
+        debug $idbglvl "FAIL: mtx -f $ctl load slot=$slot drv=$drive"
+      fi
       exit $rtn
       ;;
 
-   list)
-      debug "Doing mtx -f $ctl -- to list volumes"
+   list) 
       make_temp_file
       if test ${inventory} -ne 0 ; then
        ${MTX} -f $ctl inventory
       fi
+      debug $dbglvl "Doing mtx -f $ctl list"
       ${MTX} -f $ctl status >${TMPFILE}
       rtn=$?
       if test ${vxa_packetloader} -ne 0 ; then
@@ -236,30 +271,33 @@ case $cmd in
       fi
       cat ${TMPFILE} | grep "^Data Transfer Element [0-9]*:Full (Storage Element [0-9]" | awk '{printf "%s:%s\n",$7,$10}'
       rm -f ${TMPFILE} >/dev/null 2>&1
+      if test $rtn -ne 0 ; then
+        debug $idbglvl "FAIL: mtx -f $ctl list"
+      fi
       exit $rtn
       ;;
 
    listall)
 #  Drive content:        D:Drive num:F:Slot loaded:Volume Name
 #  D:0:F:2:vol2        or D:Drive num:E
-#  D:1:F:42:vol42
+#  D:1:F:42:vol42   
 #  D:3:E
-#
+# 
 #  Slot content:
 #  S:1:F:vol1            S:Slot num:F:Volume Name
 #  S:2:E              or S:Slot num:E
 #  S:3:F:vol4
-#
+# 
 #  Import/Export tray slots:
 #  I:10:F:vol10          I:Slot num:F:Volume Name
 #  I:11:E             or I:Slot num:E
 #  I:12:F:vol40
-
-      debug "Doing mtx -f $ctl -- to list all"
       make_temp_file
       if test ${inventory} -ne 0 ; then
        ${MTX} -f $ctl inventory
       fi
+      debug $dbglvl "Doing mtx -f $ctl -- to list all"
       ${MTX} -f $ctl status >${TMPFILE}
       rtn=$?
       # can be converted to awk+sed+cut, see below
@@ -273,7 +311,7 @@ case $cmd in
       # If perl isn't installed, you can use by those commands
 #cat ${TMPFILE} | grep "Data Transfer Element" | awk "{print \"D:\"\$4 \$7 \$9 \$10}" | sed "s/=/:/" | sed "s/Full/F:/" | sed "s/Empty/E/"
 #cat ${TMPFILE} | grep -v "Data Transfer Element" | grep "Storage Element" | grep -v "IMPORT/EXPORT" | awk "{print \"S:\"\$3 \$4 \$5}" | sed "s/IMPORT\/EXPORT//" | sed "s/Full *:VolumeTag=/F:/" | sed "s/Empty/E/"
-#cat ${TMPFILE} | grep -v "Data Transfer Element" | grep "Storage Element" | grep "IMPORT/EXPORT" | awk "{print \"I:\"\$3 \$4 \$5}" | sed "s/IMPORT\/EXPORT//" | sed "s/Full *:VolumeTag=/F:/" | sed "s/Empty/E/"
+#cat ${TMPFILE} | grep -v "Data Transfer Element" | grep "Storage Element" | grep "IMPORT/EXPORT" | awk "{print \"I:\"\$3 \$4 \$5}" | sed "s/IMPORT\/EXPORT//" | sed "s/Full *:VolumeTag=/F:/" | sed "s/Empty/E/" 
 
       rm -f ${TMPFILE} >/dev/null 2>&1
       exit $rtn
@@ -281,25 +319,35 @@ case $cmd in
 
    transfer)
       slotdest=$device
-      debug "Doing transfer from $slot to $slotdest"
+      debug $dbglvl "Doing transfer from $slot to $slotdest"
       ${MTX} -f $ctl transfer $slot $slotdest
       rtn=$?
+      if test $rtn -ne 0 ; then
+        debug $idbglvl "FAIL: mtx -f $ctl transfer from=$slot to=$slotdest"
+      fi
       exit $rtn
       ;;
 
    loaded)
-      debug "Doing mtx -f $ctl $drive -- to find what is loaded"
       make_temp_file
+      debug $idbglvl "Doing mtx -f $ctl $drive -- to find what is loaded"
       ${MTX} -f $ctl status >${TMPFILE}
       rtn=$?
       cat ${TMPFILE} | grep "^Data Transfer Element $drive:Full" | awk "{print \$7}"
       cat ${TMPFILE} | grep "^Data Transfer Element $drive:Empty" | awk "{print 0}"
       rm -f ${TMPFILE} >/dev/null 2>&1
+      if test $rtn -ne 0 ; then
+        debug $idbglvl "FAIL: mtx -f $ctl loaded drv=$drive"
+      fi
       exit $rtn
       ;;
 
    slots)
-      debug "Doing mtx -f $ctl -- to get count of slots"
+      debug $dbglvl "Doing mtx -f $ctl -- to get count of slots"
       ${MTX} -f $ctl status | grep " *Storage Changer" | awk "{print \$5}"
+      rtn=$?
+      if test $rtn -ne 0 ; then
+        debug $idbglvl "FAIL: mtx -f $ctl slots"
+      fi
       ;;
 esac