1064eb0b66dd2495741eec7edc69076d8f433f10
[debian/amanda] / changer-src / chg-zd-mtx.sh.in
1 #!/bin/sh 
2 #
3 # Exit Status:
4 # 0 Alles Ok
5 # 1 Illegal Request
6 # 2 Fatal Error
7 #
8 # Contributed by Eric DOUTRELEAU <Eric.Doutreleau@int-evry.fr>
9 # This is supposed to work with Zubkoff/Dandelion version of mtx
10 #
11 # Modified by Joe Rhett <jrhett@isite.net>
12 # to work with MTX 1.2.9 by Eric Lee Green http://mtx.sourceforge.net
13 #
14 # Modified by Jason Hollinden <jhollind@sammg.com> on 13-Feb-2001
15 # to work with MTX 1.2.10, >9 slots, has barcode support, and works with
16 # multiple configs at once.
17 # NOTE:  Only tested the 2 additions with an ADIC Scalar 100.
18
19 ################################################################################
20 # Here are the things you need to do and know to configure this script:
21 #
22 #   * Figure out what the robot device name is and what the tape drive
23 #     device name is.  They will be different!
24 #
25 #     You cannot send robot commands to a tape drive and vice versa.
26 #     Both should respond to "mtx -f /dev/... inquiry".  Hopefully,
27 #     that output will make it obvious which is which.
28 #
29 #     For instance, here is what mtx has to say about my current robot:
30 #
31 #       Product Type: Medium Changer
32 #       Vendor ID: 'ATL     '
33 #       Product ID: 'ACL2640 206     '
34 #       Revision: '2A5A'
35 #       Attached Changer: No
36 #
37 #     and here is what it says about a tape drive:
38 #
39 #       Product Type: Tape Drive
40 #       Vendor ID: 'Quantum '
41 #       Product ID: 'DLT4000         '
42 #       Revision: 'CD50'
43 #       Attached Changer: No
44 #
45 #     Note the "Product Type" value makes it clear which is which.
46 #
47 #     If it is not obvious, "mf -f /dev/... rewind" should be happy when
48 #     talking to a (loaded) tape drive but the changer should give some
49 #     kind of error.  Similarly, "mtx -f /dev/... status" should show good
50 #     results with the changer but fail with a tape drive device name.
51 #
52 #     Once you have this figured out, set "changerdev" in amanda.conf
53 #     to the changer device and "tapedev" to the tape device.
54 #
55 #   * Find out what the first and last storage slots are.  Running
56 #     "mtx -f /dev/... status" should give you something like this
57 #     (although the output will vary widely based on the version of mtx
58 #     and the specifics of your robot):
59 #
60 #         Storage Changer /dev/changer:1 Drives, 9 Slots ( 0 Import/Export )
61 #       Data Transfer Element 0:Empty
62 #             Storage Element 1:Full :VolumeTag=SR0001
63 #             Storage Element 2:Full :VolumeTag=SR0002
64 #             Storage Element 3:Full :VolumeTag=SR0003
65 #             Storage Element 4:Full :VolumeTag=SR0004
66 #             Storage Element 5:Full :VolumeTag=SR0005
67 #             Storage Element 6:Full :VolumeTag=SR0006
68 #             Storage Element 7:Full :VolumeTag=SR0007
69 #             Storage Element 8:Full :VolumeTag=SR0008
70 #             Storage Element 9:Full :VolumeTag=SR0009
71 #
72 #     This says the first storage slot (element) is "1" and the last
73 #     is "9".  If you allocate the entire robot to Amanda, you do not need
74 #     to set the "firstslot" or "lastslot" configuration file variables --
75 #     the script will compute these values for you.
76 #
77 #     You do not have to allocate all of the slots for Amanda use,
78 #     but whatever slots you use must be contiguous (i.e. 4 through 9
79 #     in the above would be OK but 1, 2, 5, 6, 9 would not).  The one
80 #     exception to this is that if one of the slots contains a cleaning
81 #     cartridge, it may be in any slot (Amanda will just skip over it if
82 #     it is between firstslot and lastslot).
83 #
84 #   * Speaking of cleaning cartridges, if you have a storage slot dedicated
85 #     to one, figure out what slot it is in.  That slot number will go in
86 #     the "cleanslot" variable.
87 #
88 #     Also, decide if you want the changer script to automatically run
89 #     the cleaning tape through the drive after every so many mounts,
90 #     and how many mounts you want to do between cleanings.  If you
91 #     want the script to do this, set the "autoclean" variable to 1 and
92 #     the "autocleancount" to the number of mounts between cleanings.
93 #     If you do not want to do automatic cleanings (including not having
94 #     a cleaning cartridge in the robot), set "autoclean" to 0.
95 #
96 #     Note that only a count of mounts is used to determine when it is
97 #     time to clean.  The script does not try to detect if the drive is
98 #     requesting cleaning, or how much the drive was used on a given
99 #     mount.
100 #
101 #   * If you tell Amanda about a cleaning cartridge, whether for automatic
102 #     operation or manual (amtape <config> clean), you must also tell
103 #     the script how long it takes to run the cleaning cycle.  It is
104 #     impossible for the script to determine when the cleaning operation
105 #     is done, so the "cleancycle" variable is the number of seconds
106 #     the longest cleaning operation takes (you'll just have to figure
107 #     this out by watching it a few times, or maybe finding it in a tape
108 #     drive hardware manual).  The script will sleep for this length of
109 #     time whenever the cleaning tape is referenced.  The default is 120
110 #     seconds (two minutes).
111 #
112 #   * Figure out the drive slot number.  By default, it is set to 0.
113 #     In the example above, the tape drive ("Data Transfer Element")
114 #     is in slot 0. If your drive slot is not 0, you
115 #     need to set the drive slot number with the "driveslot" variable.
116 #
117 #   * Figure out whether your robot has a barcode reader and whether
118 #     your version of mtx supports it.  If you see "VolumeTag" entries
119 #     in the "mtx -f /dev/xxx status" output you did above, you have
120 #     a reader and mtx can work with it, so you may set the "havereader"
121 #     variable to 1.  The default is 0 (do not use a reader).
122 #
123 #   * Pick any tape to load and then determine if the robot can put it
124 #     away directly or whether an "offline" must be done first.
125 #
126 #     With the tape still mounted and ready, try to put the tape away
127 #     with "mtx".  If you get some kind of error, which is the most
128 #     common response, try "mt -f /dev/... offline", wait for the drive
129 #     to unload and make sure the robot takes no action on its own to
130 #     store the tape.  Assuming it does not, try the "mtx" command again
131 #     to store the tape.
132 #
133 #     If you had to issue the "mt -f /dev/... offline" before you could
134 #     use "mtx" to store the tape, set the "offline_before_unload"
135 #     variable to 1.  If "mtx" unloaded the drive and put the tape away
136 #     all by itself, set it to 0.
137 #
138 #   * Some drives and robots require a small delay between unloading the
139 #     tape and instructing the robot to move it back to storage.
140 #     For instance, if you try to grab the tape too soon on an ATL robot
141 #     with DLT tape drives, it will rip the leader out of the drive and
142 #     require sincerely painful hardware maintenance.
143 #
144 #     If you need a little delay, set the "unloadpause" variable to
145 #     the number of seconds to wait before trying to take a tape from
146 #     a drive back to storage.  The default is 0.
147 #
148 #   * Some drives also require a short pause after loading, or the drive
149 #     will return an I/O error during a test to see if it's online (which
150 #     this script uses "mt rewind" to test).  My drives don't recover from
151 #     this, and must be reloaded before they will come online after failing
152 #     such a test.  For this reason there is an "initial_poll_delay"
153 #     variable which will pause for a certain number of seconds before
154 #     looping through the online test for the first time.  The default is 0.
155 ####
156
157 ####
158 # Now you are ready to set up the variables in the changer configuration
159 # file.
160 #
161 # All variables are in "changerfile".conf where "changerfile" is set
162 # in amanda.conf.  For example, if amanda.conf has:
163 #
164 #       changerfile="/etc/amanda/Dailyset1/CHANGER"
165 #
166 # the variables must be in "/etc/amanda/Dailyset1/CHANGER.conf".
167 #
168 # If "changerfile" is a relative path, it is relative to the directory
169 # that contains amanda.conf.  That also happens to be the directory Amanda
170 # makes current before running this script.
171 #
172 # Here is a commented out example file with all the variables and showing
173 # their default value (if any):
174 ####
175 # firstslot=?               #### First storage slot (element) -- required
176 # lastslot=?                #### Last storage slot (element) -- required
177 # cleanslot=-1              #### Slot with cleaner tape -- default is "-1"
178 #                           #### Set negative to indicate no cleaner available
179 # driveslot=0               #### Drive slot number.  Defaults to 0
180 #                           #### Use the 'Data Transfer Element' you want
181 #
182 #   # Do you want to clean the drive after a certain number of accesses?
183 #   # NOTE - This is unreliable, since 'accesses' aren't 'uses', and we
184 #   #        have no reliable way to count this.  A single amcheck could
185 #   #        generate as many accesses as slots you have, plus 1.
186 #   # ALSO NOTE - many modern tape loaders handle this automatically.
187 #
188 # autoclean=0               #### Set to '1' or greater to enable
189 #
190 # autocleancount=99         #### Number of access before a clean.
191 #
192 # havereader=0              #### If you have a barcode reader, set to 1.
193 #
194 # offline_before_unload=0   #### Does your robot require an
195 #                           #### 'mt offline' before mtx unload?
196 #
197 # poll_drive_ready=NN       #### Time (seconds) between tests to see if
198 #                           #### the tape drive has gone ready (default: 3).
199 #
200 # max_drive_wait=NN         #### Maximum time (seconds) to wait for the
201 #                           #### tape drive to become ready (default: 120).
202 #
203 # initial_poll_delay=NN     #### initial delay after load before polling for
204 #                           #### readiness
205 ####
206
207 ####
208 # Now it is time to test the setup.  Do all of the following in the
209 # directory that contains the amanda.conf file, and do all of it as
210 # the Amanda user.
211 #
212 #   * Run this:
213 #
214 #       .../chg-zd-mtx -info
215 #       echo $?             #### (or "echo $status" if you use csh/tcsh)
216 #
217 #     You should get a single line from the script like this (the actual
218 #     numbers will vary):
219 #
220 #       5 9 1 1
221 #
222 #     The first number (5) is the "current" slot.  This may or may not be
223 #     the slot actually loaded at the moment (if any).  It is the slot
224 #     Amanda will try to use next.
225 #
226 #     The second number (9) is the number of slots.
227 #
228 #     The third number will always be "1" and indicates the changer is
229 #     capable of going backward.
230 #
231 #     The fourth number is optional.  If you set $havereader to 1, it
232 #     will be "1", otherwise it will not be present.
233 #
234 #     The exit code ($? or $status) should be zero.
235 #
236 #   * Run this:
237 #
238 #       .../chg-zd-mtx -reset
239 #       echo $?
240 #
241 #     The script should output a line like this:
242 #
243 #       1 /dev/rmt/0mn
244 #
245 #     The number at the first should match $firstslot.  The device name
246 #     after that should be your tape device.
247 #
248 #     The exit code ($? or $status) should be zero.
249 #
250 #   * Run this:
251 #
252 #       .../chg-zd-mtx -slot next
253 #       echo $?
254 #
255 #     The script should output a line like this:
256 #
257 #       2 /dev/rmt/0mn
258 #
259 #     The number at the first should be one higher than $firstslot.
260 #     The device name after that should be your tape device.
261 #
262 #     The exit code ($? or $status) should be zero.
263 #
264 #   * Run this:
265 #
266 #       .../chg-zd-mtx -slot current
267 #       echo $?
268 #
269 #     Assuming the tape is still loaded from the previous test, the
270 #     robot should not move and the script should report the same thing
271 #     the previous command did.
272 #
273 #   * If you continue to run "-slot next" commands, the robot should load
274 #     each tape in turn then wrap back around to the first when it
275 #     reaches $lasttape.  If $cleanslot is within the $firstslot to
276 #     $lastslot range, the script will skip over that entry.
277 #
278 #   * Finally, try some of the amtape commands and make sure they work:
279 #
280 #       amtape <config> reset
281 #       amtape <config> slot next
282 #       amtape <config> slot current
283 #
284 #   * If you set $havereader non-zero, now would be a good time to create
285 #     the initial barcode database:
286 #
287 #       amtape <config> update
288 ####
289
290 ################################################################################
291 # To debug this script, first look in @AMANDA_DBGDIR@.  The script
292 # uses one of two log files there, depending on what version of Amanda
293 # is calling it.  It may be chg-zd-mtx.YYYYMMDD*.debug, or it may be
294 # changer.debug.driveN where 'N' is the drive number.
295 #
296 # If the log file does not help, try running the script, **as the Amanda
297 # user**, in the amanda.conf directory with whatever set of args the log
298 # said were used when you had a problem.  If nothing else useful shows up
299 # in the output, try running the script with the DEBUG environment variable
300 # set non-null, e.g.:
301 #
302 #       env DEBUG=yes .../chg-zd-mtx ...
303 ################################################################################
304
305 ################################################################################
306 # You may need to customize these things
307 ################################################################################
308
309 MT=@MT@
310 MTF=@MT_FILE_FLAG@
311 MTX=@MTX@
312
313 ################################################################################
314 # No user-level customization should be required beyond this point.
315 ################################################################################
316
317 test -n "$DEBUG" && set -x
318 TMPDIR="@AMANDA_TMPDIR@"
319 DBGDIR="@AMANDA_DBGDIR@"
320
321 argv0=$0
322 myname=`expr "$argv0" : '.*/\(.*\)'`
323
324 config=`pwd 2>/dev/null`
325 config=`expr "$config" : '.*/\(.*\)'`
326
327 ###
328 # Functions to write a new log file entry and append more log information.
329 ###
330
331 ds=`date '+%H:%M:%S' 2>/dev/null`
332 if [ $? -eq 0  -a  -n "$ds" ]; then
333         logprefix=`echo "$ds" | sed 's/./ /g'`
334 else
335         logprefix=""
336 fi
337
338 LogAppend() {
339         if [ -z "$logprefix" ]; then
340                 echo "$@" >> $DBGFILE
341         else
342                 echo "$logprefix" "$@" >> $DBGFILE
343         fi
344 }
345
346 Log() {
347         if [ -z "$logprefix" ]; then
348                 echo "===" "`date`" "===" >> $DBGFILE
349                 echo "$@" >> $DBGFILE
350         else
351                 ds=`date '+%H:%M:%S' 2>/dev/null`
352                 echo "$ds" "$@" >> $DBGFILE
353         fi
354 }
355
356 ###
357 # Common exit function.
358 #
359 #   $1 = exit code
360 #   $2 = slot result
361 #   $3 = additional information (error message, tape devive, etc)
362 ###
363
364 internal_call=0
365 Exit() {
366         if [ $internal_call -gt 0 ]; then
367                 call_type=Return
368         else
369                 call_type=Exit
370         fi
371         code=$1
372         shift
373         exit_slot=$1
374         shift
375         exit_answer="$@"
376         Log $call_type "($code)" "->" "$exit_slot" "$@"
377         echo "$exit_slot" "$@"
378         if [ $call_type = Return ]; then
379                 return $code
380         fi
381         amgetconf$SUF dbclose.$argv0:$DBGFILE > /dev/null 2>&1
382         exit $code
383 }
384
385 ###
386 # Function to run another command and log it.
387 ###
388
389 Run() {
390         Log Running: "$@"
391         rm -f $stdout $stderr
392         "$@" > $stdout 2> $stderr
393         exitcode=$?
394         Log Exit code: $exitcode
395         if [ -s $stdout ]
396         then
397                 LogAppend Stdout:
398                 cat $stdout >> $DBGFILE
399         fi
400         if [ -s $stderr ]
401         then
402                 LogAppend Stderr:
403                 cat $stderr >> $DBGFILE
404         fi
405         cat $stdout
406         cat $stderr 1>&2
407         return $exitcode
408 }
409
410 ###
411 # Return success if the arg is numeric.
412 ###
413
414 IsNumeric() {
415         test -z "$1" && return 1
416         x="`expr "$1" : '\([-0-9][0-9]*\)' 2>/dev/null`"
417         return `expr X"$1" != X"$x"`
418 }
419
420 ###
421 # Run $MTX status unless the previous output is still valid.
422 ###
423
424 mtx_status_valid=0
425 get_mtx_status() {
426         test -n "$DEBUG" && set -x
427         if [ $mtx_status_valid -ne 0 ]; then
428                 return 0
429         fi
430         rm -f $mtx_status
431         Run $MTX status > $mtx_status 2>&1
432         status=$?
433         if [ $status -eq 0 ]; then
434                 mtx_status_valid=1
435         fi
436         return $status
437 }
438
439 ###
440 # Determine the slot currently loaded.  Set $loadedslot to the slot
441 # currently loaded, or "-1", and $loadedbarcode to the corresponding
442 # barcode (or nothing).
443 ###
444
445 get_loaded_info() {
446         test -n "$DEBUG" && set -x
447         get_mtx_status
448
449         set x `sed -n '
450 /^Data Transfer Element:Empty/                          {
451     s/.*/-1/p
452     q
453 }
454 /^Data Transfer Element '$driveslot':Empty/             {
455     s/.*/-1/p
456     q
457 }
458 /^Data Transfer Element:Full (Storage Element \([0-9][0-9]*\) Loaded):VolumeTag *= *\([^     ]*\)/               {
459     s/.*(Storage Element \([0-9][0-9]*\) Loaded):VolumeTag *= *\([^     ]*\)/\1 \2/p
460     q
461 }
462 /^Data Transfer Element '$driveslot':Full (Storage Element \([0-9][0-9]*\) Loaded):VolumeTag *= *\([^     ]*\)/  {
463     s/.*(Storage Element \([0-9][0-9]*\) Loaded):VolumeTag *= *\([^     ]*\)/\1 \2/p
464     q
465 }
466 /^Data Transfer Element '$driveslot':Full (Unknown Storage Element Loaded):VolumeTag *= *\([^     ]*\)/ {
467     s/.*:VolumeTag *= *\([^     ]*\)/-2 \1/p
468     q
469 }
470 /^Data Transfer Element:Full (Storage Element \([0-9][0-9]*\) Loaded)/                           {
471     s/.*(Storage Element \([0-9][0-9]*\) Loaded).*/\1/p
472     q
473 }
474 /^Data Transfer Element '$driveslot':Full (Storage Element \([0-9][0-9]*\) Loaded)/              {
475     s/.*Storage Element \([0-9][0-9]*\) Loaded.*/\1/p
476     q
477 }
478 /^Data Transfer Element '$driveslot':Full (Unknown Storage Element Loaded)/     {
479     s/.*/-2/p
480     q
481 }
482 ' < $mtx_status 2>&1`
483         shift                                   # get rid of the "x"
484         loadedslot=$1
485         loadedbarcode=$2
486         if [ -z "$loadedslot" ]; then
487                 Exit 2 "<none>" "could not determine current slot, are you sure your drive slot is $driveslot"
488                 return $?                       # in case we are internal
489         fi
490
491         #Use the current slot if it's empty and we don't know which slot is loaded'
492         if [ $loadedslot -eq -2 ]; then
493                 set x `sed -n '
494 {
495     /^.*Storage Element '$currentslot':Empty/ {
496         s/.*Storage Element \([0-9][0-9]*\):Empty/\1/p
497         q
498     }
499     /^.*Storage Element '$currentslot':Full/ {
500         s/.*Storage Element \([0-9][0-9]*\):Full/-2/p
501         q
502     }
503 }
504 ' < $mtx_status 2>& 1`
505                 shift                           # get rid of the "x"
506                 loadedslotx=$1
507                 if [ ! -z $loadedslotx ]; then
508                         loadedslot=$loadedslotx
509                 fi
510         fi
511
512         #Use the first empty slot if we don't know which slot is loaded'
513         if [ $loadedslot -eq -2 ]; then
514                 set x `sed -n '
515 {
516     /^.*Storage Element \([0-9][0-9]*\):Empty/ {
517         s/.*Storage Element \([0-9][0-9]*\):Empty/\1/p
518         q
519     }
520 }
521 ' < $mtx_status 2>& 1`
522                 shift                           # get rid of the "x"
523                 loadedslot=$1
524         fi
525
526         if IsNumeric "$loadedslot" ; then
527                 :
528         else
529                 Exit 2 \
530                      "<none>" \
531                      "currently loaded slot ($loadedslot) not numeric"
532                 return $?                       # in case we are internal
533         fi
534         Log       "STATUS   -> currently loaded slot = $loadedslot"
535         LogAppend "         -> currently loaded barcode = \"$loadedbarcode\""
536 }
537
538 ###
539 # Get a list of slots between $firstslot and $lastslot, if they are set.
540 # If they are not set, set them to the first and last slot seen on the
541 # assumption the entire robot is to be used (???).
542 ###
543
544 slot_list=
545 get_slot_list() {
546         test -n "$DEBUG" && set -x
547         if [ -n "$slot_list" ]; then
548                 return
549         fi
550         get_mtx_status
551         slot_list=`sed -n '
552 /^Data Transfer Element:Full (Storage Element \([0-9][0-9]*\) Loaded)/ {
553     s/.*(Storage Element \([0-9][0-9]*\) Loaded).*/\1/p
554 }
555 /^Data Transfer Element '$driveslot':Full (Storage Element \([0-9][0-9]*\) Loaded)/ {
556     s/.*Storage Element \([0-9][0-9]*\) Loaded.*/\1/p
557 }
558 /^Data Transfer Element '$driveslot':Full (Unknown Storage Element Loaded)/ {
559     : loop
560     n
561     /^.*Storage Element \([0-9][0-9]*\):Full/ {
562         s/.*Storage Element \([0-9][0-9]*\):Full.*/\1/p
563         b loop
564     }
565     /^.*Storage Element \([0-9][0-9]*\):Empty/ {
566         s/.*Storage Element \([0-9][0-9]*\):Empty/\1/p
567     }
568 }
569 /^.*Storage Element \([0-9][0-9]*\):Full/ {
570     s/.*Storage Element \([0-9][0-9]*\):Full.*/\1/p
571 }
572 ' < $mtx_status 2>&1 | grep -v "^${cleanslot}\$" | sort -n`
573         slot_list=`echo $slot_list`             # remove the newlines
574         if [ $firstslot -lt 0 -o $lastslot -lt 0 ]; then
575                 last=$lastslot
576                 for slot in $slot_list; do
577                         if [ $firstslot -lt 0 ]; then
578                                 Log "SLOTLIST -> firstslot set to $slot"
579                                 firstslot=$slot
580                         fi
581                         if [ $lastslot -lt 0 ]; then
582                                 last=$slot
583                         fi
584                 done
585                 if [ $lastslot -lt 0 -a $last -ge 0 ]; then
586                         Log "SLOTLIST -> lastslot set to $last"
587                         lastslot=$last
588                 fi
589                 if [ $firstslot -lt 0 ]; then
590                         Exit 2 \
591                              "<none>" \
592                              "cannot determine first slot"
593                         return $?               # in case we are internal
594                 elif [ $lastslot -lt 0 ]; then
595                         Exit 2 \
596                              "<none>" \
597                              "cannot determine last slot"
598                         return $?               # in case we are internal
599                 fi
600         fi
601         amanda_slot_list=
602         for slot in $slot_list; do
603                 if [ $slot -ge $firstslot -a $slot -le $lastslot ]; then
604                         amanda_slot_list="$amanda_slot_list $slot"
605                 fi
606         done
607         if [ -z "$amanda_slot_list" ]; then
608                 Exit 2 \
609                      "<none>" \
610                      "no slots available"
611                 return $?                       # in case we are internal
612         fi
613         slot_list="$amanda_slot_list"
614 }
615
616 # Paths
617 prefix=@prefix@
618 exec_prefix=@exec_prefix@
619 sbindir=@sbindir@
620 libexecdir=@libexecdir@
621
622 # try to hit all the possibilities here
623 PATH=$sbindir:$libexecdir:/usr/bin:/bin:/usr/sbin:/sbin:/usr/ucb:/usr/local/bin
624 export PATH
625
626 USE_VERSION_SUFFIXES="@USE_VERSION_SUFFIXES@"
627 if test "$USE_VERSION_SUFFIXES" = "yes"; then
628         SUF="-@VERSION@"
629 else
630         SUF=
631 fi
632
633 DBGFILE=`amgetconf$SUF dbopen.$argv0 2>/dev/null | grep -v BUGGY`
634 if [ -z "$DBGFILE" ]
635 then
636         DBGFILE=/dev/null                       # will try this again below
637 fi
638
639 changerfile=`amgetconf$SUF changerfile 2>/dev/null | grep -v BUGGY`
640 if [ -z "$changerfile" ]; then
641         Exit 2 \
642              "<none>" \
643              "changerfile must be specified in amanda.conf"
644 fi
645
646 tape=`amgetconf$SUF tapedev 2>/dev/null | grep -v BUGGY`
647 if [ -z "$tape" ]; then
648         Exit 2 \
649              "<none>" \
650              "tapedev may not be empty"
651 elif [ $tape = "/dev/null" -o `expr "$tape" : 'null:'` -eq 5 ]; then
652         Exit 2 \
653              "<none>" \
654              "tapedev ($tape) may not be the null device"
655 fi
656 TAPE=`amgetconf$SUF changerdev 2>/dev/null | grep -v BUGGY`
657 if [ -z "$TAPE" ]; then
658         Exit 2 \
659              "<none>" \
660              "changerdev may not be empty"
661 elif [ $TAPE = "/dev/null" ]; then
662         Exit 2 \
663              "<none>" \
664              "changerdev ($TAPE) may not be the null device"
665 fi
666 export TAPE                                     # for mtx command
667
668 #### Set up the various config files.
669
670 configfile=$changerfile.conf
671 cleanfile=$changerfile-clean
672 accessfile=$changerfile-access
673 slotfile=$changerfile-slot
674 labelfile=$changerfile-barcodes
675 [ ! -s $cleanfile ] && echo 0 > $cleanfile
676 [ ! -s $accessfile ] && echo 0 > $accessfile
677 [ ! -s $slotfile ] && echo -1 > $slotfile
678 [ ! -f $labelfile ] && > $labelfile
679 cleancount=`cat $cleanfile`
680 accesscount=`cat $accessfile`
681
682 #### Dig out of the config file what is needed
683
684 varlist=
685 varlist="$varlist firstslot"
686 varlist="$varlist lastslot"
687 varlist="$varlist cleanslot"
688 varlist="$varlist cleancycle"
689 varlist="$varlist OFFLINE_BEFORE_UNLOAD"        # old name
690 varlist="$varlist offline_before_unload"
691 varlist="$varlist unloadpause"
692 varlist="$varlist AUTOCLEAN"                    # old name
693 varlist="$varlist autoclean"
694 varlist="$varlist autocleancount"
695 varlist="$varlist havereader"
696 varlist="$varlist driveslot"
697 varlist="$varlist poll_drive_ready"
698 varlist="$varlist initial_poll_delay"
699 varlist="$varlist max_drive_wait"
700
701 for var in $varlist
702 do
703         val="`cat $configfile 2>/dev/null | sed -n '
704 # Ignore comment lines (anything starting with a #).
705 /^[     ]*#/d
706 # Find the first var=val line in the file, print the value and quit.
707 /^[     ]*'$var'[       ]*=[    ]*\([^  ][^     ]*\).*/ {
708         s/^[    ]*'$var'[       ]*=[    ]*\([^  ][^     ]*\).*/\1/p
709         q
710 }
711 '`"
712         eval $var=\"$val\"
713 done
714
715 # Deal with driveslot first so we can get DBGFILE set if we are still
716 # using the old amgetconf.
717
718 if [ -z "$driveslot" ]; then
719         driveslot=0;
720 fi
721
722 # Get DBGFILE set if it is not already.
723
724 if [ $DBGFILE = /dev/null ]; then
725         if [ -d "$DBGDIR" ]; then
726                 DBGFILE=$DBGDIR/changer.debug.drive$driveslot
727         else
728                 DBGFILE=/dev/null
729         fi
730         Log === Start "`date`" ===
731 fi
732 if [ -z "$driveslot" ]; then
733         Exit 2 \
734              "<none>" \
735              "cannot determine drive slot from $tape"
736 fi
737
738 stdout=$TMPDIR/$myname.1.$$
739 stderr=$TMPDIR/$myname.2.$$
740 mtx_status=$TMPDIR/$myname.status.$$
741 trap "rm -f $stdout $stderr $mtx_status" 0      # exit cleanup
742
743 Log "Using config file $configfile"
744
745 # Log the argument list.
746
747 Log "Arg info:"
748 LogAppend "\$# = $#"
749 i=0
750 LogAppend "\$$i = \"$argv0\""
751 for arg in "$@"; do
752         i=`expr $i + 1`
753         LogAppend "\$$i = \"$arg\""
754 done
755
756 # Set the default config values for those not in the file.  Log the
757 # results and make sure each is valid (numeric).
758
759 firstslot=${firstslot:-'-1'}                            # default: mtx status
760 lastslot=${lastslot:-'-1'}                              # default: mtx status
761 cleanslot=${cleanslot:-'-1'}                            # default: -1
762 cleancycle=${cleancycle:-'120'}                         # default: two minutes
763 if [ -z "$offline_before_unload" -a -n "$OFFLINE_BEFORE_UNLOAD" ]; then
764         offline_before_unload=$OFFLINE_BEFORE_UNLOAD    # (old name)
765 fi
766 offline_before_unload=${offline_before_unload:-'0'}     # default: 0
767 unloadpause=${unloadpause:-'0'}                         # default: 0
768 if [ -z "$autoclean" -a -n "$AUTOCLEAN" ]; then
769         autoclean=$AUTOCLEAN                            # (old name)
770 fi
771 autoclean=${autoclean:-'0'}                             # default: 0
772 autocleancount=${autocleancount:-'99'}                  # default: 99
773 havereader=${havereader:-'0'}                           # default: 0
774 poll_drive_ready=${poll_drive_ready:-'3'}               # default: three seconds
775 initial_poll_delay=${initial_poll_delay:-'0'}           # default: zero zeconds
776 max_drive_wait=${max_drive_wait:-'120'}                 # default: two minutes
777
778 get_slot_list
779
780 Log "Config info:"
781 for var in $varlist; do
782         if [ $var = "OFFLINE_BEFORE_UNLOAD" ]; then
783                 continue                        # old name
784         elif [ $var = "AUTOCLEAN" ]; then
785                 continue                        # old name
786         fi
787         eval val=\"'$'$var\"
788         if [ -z "$val" ]; then
789                 Exit 2 \
790                      "<none>" \
791                      "$var missing in $configfile"
792         fi
793         if IsNumeric "$val" ; then
794                 :
795         else
796                 Exit 2 \
797                      "<none>" \
798                      "$var ($val) not numeric in $configfile"
799         fi
800         LogAppend $var = \"$val\"
801 done
802
803 # Run the rest of the config file sanity checks.
804
805 if [ $firstslot -gt $lastslot ]; then
806         Exit 2 \
807              "<none>" \
808              "firstslot ($firstslot) greater than" \
809              "lastslot ($lastslot) in $configfile"
810 fi
811 if [ $autoclean -ne 0 -a $cleanslot -lt 0 ]; then
812         Exit 2 \
813              "<none>" \
814              "autoclean set but cleanslot not valid ($cleanslot)"
815 fi
816
817 # Set up the current slot
818
819 currentslot=`cat $slotfile`
820 if IsNumeric "$currentslot" ; then
821         if [ $currentslot -lt $firstslot ]; then
822                 Log "SETUP    -> current slot $currentslot" \
823                                  "less than $firstslot ..." \
824                                  "resetting to $firstslot"
825                 currentslot=$firstslot
826         elif [ $currentslot -gt $lastslot ]; then
827                 Log "SETUP    -> current slot $currentslot" \
828                                  "greater than $lastslot ..." \
829                                  "resetting to $lastslot"
830                 currentslot=$lastslot
831         fi
832 else
833         Log "SETUP    -> contents of $slotfile ($currentslot) invalid," \
834                          "setting current slot to first slot ($firstslot)"
835         currentslot=$firstslot
836 fi
837
838 found_current=0
839 first_slot_in_list=-1
840 next_slot_after_current=-1
841 for slot in $slot_list; do
842         if [ $first_slot_in_list -lt 0 ]; then
843                 first_slot_in_list=$slot        # in case $firstslot is missing
844         fi
845         if [ $slot -eq $currentslot ]; then
846                 found_current=1
847                 break
848         elif [ $slot -gt $currentslot ]; then
849                 next_slot_after_current=$slot   # $currentslot is missing
850                 break
851         fi
852 done
853 if [ $found_current -eq 0 ]; then
854         if [ $next_slot_after_current -lt 0 ]; then
855                 new_currentslot=$first_slot_in_list
856         else
857                 new_currentslot=$next_slot_after_current
858         fi
859         Log "WARNING  -> current slot $currentslot not available," \
860                          "setting current slot to next slot ($new_currentslot)"
861         currentslot=$new_currentslot
862 fi
863
864 # More routines.
865
866 ###
867 # Eject the current tape and put it away.
868 ###
869
870 eject() {
871         test -n "$DEBUG" && set -x
872         Log "EJECT    -> ejecting tape from $tape"
873         get_loaded_info 
874         if [ $loadedslot -gt 0 ]; then
875                 Log "EJECT    -> moving tape from drive $driveslot" \
876                                  "to storage slot $loadedslot"
877                 if [ $offline_before_unload -ne 0 ]; then
878                         Run $MT $MTF $tape offline > /dev/null 2>&1
879                 fi
880                 sleep $unloadpause
881                 result=`Run $MTX unload $loadedslot $driveslot 2>&1`
882                 status=$?
883                 Log "         -> status $status, result \"$result\""
884                 mtx_status_valid=0
885                 if [ $status -ne 0 ]; then
886                         answer="$result"
887                         code=2
888                 else
889                         answer="$tape"
890                         code=0
891                 fi
892         else
893                 answer="Drive was not loaded"
894                 code=1
895         fi
896         Exit $code "$loadedslot" "$answer"
897         return $?                               # in case we are internal
898 }
899
900 ###
901 # Reset the robot back to the first slot.
902 ###
903
904 reset() {
905         test -n "$DEBUG" && set -x
906         Log "RESET    -> loading tape from slot $firstslot" \
907                          "to drive $driveslot ($tape)"
908         # Call loadslot without doing it as an internal and let it finish
909         # things up.
910         loadslot $firstslot
911         # NOTREACHED
912         Exit 2 "<none>" "reset: should not get here"
913         return $?                               # in case we are internal
914 }
915
916 ###
917 # Unload the current tape (if necessary) and load a new one (unless
918 # "advance").  If no tape is loaded, get the value of "current" from
919 # $slotfile.
920 ###
921
922 loadslot() {
923         test -n "$DEBUG" && set -x
924         if [ $# -lt 1 ]; then
925                 Exit 2 "<none>" "Missing -slot argument"
926                 return $?                       # in case we are internal
927         fi
928         whichslot=$1
929         Log "LOADSLOT -> load drive $driveslot ($tape) from slot $whichslot"
930
931         numeric=`echo $whichslot | sed 's/[^0-9]//g'`
932         case $whichslot in
933         current|prev|next|advance)
934                 find_slot=$currentslot
935                 ;;
936         first)
937                 find_slot=$firstslot
938                 ;;
939         last)
940                 find_slot=$lastslot
941                 ;;
942         $numeric)
943                 find_slot=$numeric
944                 ;;
945         clean)
946                 find_slot=$cleanslot
947                 ;;
948         *)
949                 Exit 2 "<none>" "Illegal slot: \"$whichslot\""
950                 return $?                       # in case we are internal
951                 ;;
952         esac
953
954         # Find the requested slot in the slot list.  By loading the "set"
955         # command with multiple copies, we guarantee that if the slot is
956         # found, we can look both forward and backward without running
957         # off the end.  Putting $cleanslot at the end allows us to find
958         # that slot since it is not in $slot_list.
959         get_slot_list
960         set x $slot_list $slot_list $slot_list $cleanslot
961         shift                                   # get rid of the "x"
962         prev_slot=$1
963         shift
964         while [ $# -gt 0 ]; do
965                 if [ $1 -eq $find_slot ]; then
966                         break
967                 fi
968                 prev_slot=$1
969                 shift
970         done
971         if [ $# -le 0 ]; then
972                 Exit 2 \
973                      "<none>" \
974                      "Cannot find slot $find_slot" \
975                      "in slot list ($slot_list)"
976                 return $?                       # in case we are internal
977         fi
978
979         # Determine the slot to load.
980         case $whichslot in
981         next|advance)
982                 shift
983                 loadslot=$1
984                 ;;
985         prev)
986                 loadslot=$prev_slot
987                 ;;
988         *)
989                 loadslot=$find_slot
990         esac
991
992         # If the desired slot is already loaded, we are done.  Only update
993         # current slot if this is not the cleaning slot.
994         get_loaded_info
995         if [ $loadslot = $loadedslot ]; then
996                 if [ $loadslot -ne $cleanslot ]; then
997                         rm -f $slotfile
998                         echo $loadslot > $slotfile
999                 fi
1000                 Exit 0 "$loadedslot" "$tape"
1001                 return $?                       # in case we are internal
1002         fi
1003         if [ $loadedslot -eq -2 ]; then
1004                 Exit 0 "$loadedslot" "$tape"
1005                 return $?                       # in case we are internal
1006         fi
1007
1008         # If we are loading the cleaning tape, bump the cleaning count
1009         # and reset the access count.  Otherwise, bump the access count
1010         # and see if it is time to do a cleaning.
1011         if [ $loadslot = $cleanslot ]; then
1012                 rm -f $cleanfile $accessfile
1013                 expr $cleancount + 1 > $cleanfile
1014                 echo 0 > $accessfile
1015         else
1016                 rm -f $accessfile
1017                 expr $accesscount + 1 > $accessfile
1018                 if [ $autoclean -ne 0 -a $accesscount -gt $autocleancount ]
1019                 then
1020                         internal_call=`expr $internal_call + 1`
1021                         loadslot clean > /dev/null 2>&1
1022                         status=$?
1023                         internal_call=`expr $internal_call - 1`
1024                         if [ $status -ne 0 ]; then
1025                                 Exit $status "$loadslot" "$exit_answer"
1026                                 return $?       # in case we are internal
1027                         fi
1028
1029                         # Slot $cleanslot might contain an ordinary tape
1030                         # rather than a cleaning tape.  A cleaning tape
1031                         # *MIGHT* auto-eject; an ordinary tape does not.
1032                         # We therefore have to read the status again to
1033                         # check what actually happened.
1034                         mtx_status_valid=0
1035                         get_loaded_info
1036                 fi
1037         fi
1038
1039         # Unload whatever tape is in the drive.
1040         internal_call=`expr $internal_call + 1`
1041         eject > /dev/null 2>&1
1042         status=$?
1043         internal_call=`expr $internal_call - 1`
1044         if [ $status -gt 1 ]; then
1045                 Exit $status "$exit_slot" "$exit_answer"
1046                 return $?                       # in case we are internal
1047         fi
1048
1049         # If we were doing an "advance", we are done.
1050         if [ $whichslot = advance ]; then
1051                 if [ $loadslot -ne $cleanslot ]; then
1052                         rm -f $slotfile
1053                         echo $loadslot > $slotfile
1054                 fi
1055                 Exit 0 "$loadslot" "/dev/null"
1056                 return $?                       # in case we are internal
1057         fi
1058
1059         # Load the tape, finally!
1060         Log "LOADSLOT -> loading tape from slot $loadslot" \
1061                          "to drive $driveslot ($tape)"
1062         result=`Run $MTX load $loadslot $driveslot 2>&1`
1063         status=$?
1064         Log "         -> status $status, result \"$result\""
1065         mtx_status_valid=0
1066         if [ $status -ne 0 ]; then
1067                 Exit 2 "$loadslot" "$result"
1068                 return $?                       # in case we are internal
1069         fi
1070
1071         ###
1072         # Cleaning tapes never go "ready", so instead we just sit here
1073         # for "long enough" (as determined empirically by the user),
1074         # then return success.
1075         ###
1076         if [ $loadslot -eq $cleanslot ]; then
1077                 Run sleep $cleancycle
1078                 Exit 0 "$loadslot" "$tape"
1079                 return $?                       # in case we are internal
1080         fi
1081
1082         ###
1083         # Wait for the drive to go online.
1084         ###
1085         waittime=0
1086         ready=0
1087         sleep $initial_poll_delay
1088         while [ $waittime -lt $max_drive_wait ]; do
1089                 result=`Run $MT $MTF $tape rewind 2>&1`
1090                 if [ $? -eq 0 ]; then
1091                         ready=1
1092                         break
1093                 fi
1094                 sleep $poll_drive_ready
1095                 waittime=`expr $waittime + $poll_drive_ready`
1096         done
1097         if [ $ready -eq 0 ]; then
1098                 Exit 2 "$loadslot" "Drive not ready after" \
1099                                    "$max_drive_wait seconds," \
1100                                    "rewind said \"$result\""
1101                 return $?                       # in case we are internal
1102         fi
1103
1104         if [ $loadslot -ne $cleanslot ]; then
1105                 rm -f $slotfile
1106                 echo $loadslot > $slotfile
1107         fi
1108         Exit 0 "$loadslot" "$tape"
1109         return $?                               # in case we are internal
1110 }
1111
1112 ###
1113 # Return information about how the changer is configured and the current
1114 # state of the robot.
1115 ###
1116
1117 info() {
1118         test -n "$DEBUG" && set -x
1119         get_loaded_info
1120         get_slot_list
1121         Log       "INFO     -> first slot: $firstslot"
1122         LogAppend "         -> current slot: $currentslot"
1123         LogAppend "         -> loaded slot: $loadedslot"
1124         LogAppend "         -> last slot: $lastslot"
1125         LogAppend "         -> slot list: $slot_list"
1126         LogAppend "         -> can go backwards: 1"
1127         LogAppend "         -> havereader: $havereader"
1128
1129         ###
1130         # Check if a barcode reader is configured or not.  If so, it
1131         # passes the 4th item in the echo back to amtape signifying it
1132         # can search based on barcodes.
1133         ###
1134         reader=
1135         if [ $havereader -eq 1 ]; then
1136                 reader=1
1137         fi
1138
1139         if [ $currentslot -lt $firstslot -o $currentslot -gt $lastslot ]; then
1140                 currentslot=$firstslot          # what "current" will get
1141         fi
1142         set x $slot_list
1143         shift                                   # get rid of the "x"
1144         numslots=$#
1145         Exit 0 "$currentslot" "$numslots 1 $reader"
1146         return $?                               # in case we are internal
1147 }
1148
1149 ###
1150 # Read the labelfile and scan for a particular entry.
1151 ###
1152
1153 read_labelfile() {
1154         labelfile_entry_found=0
1155         labelfile_label=
1156         labelfile_barcode=
1157
1158         lbl_search=$1
1159         bc_search=$2
1160
1161         line=0
1162         while read lbl bc junk; do
1163                 line=`expr $line + 1`
1164                 if [ -z "$lbl" -o -z "$bc" -o -n "$junk" ]; then
1165                         Log       "ERROR    -> Line $line malformed: $lbl $bc $junk"
1166                         LogAppend "         -> Remove $labelfile" \
1167                                                "and run" \
1168                                                "\"$sbindir/amtape $config update\""
1169                         Exit 2 \
1170                              "<none>" \
1171                              "Line $line malformed in $labelfile: $lbl $bc $junk"
1172                         return $?               # in case we are internal
1173                 fi
1174                 if [ $lbl = "$lbl_search" -o $bc = "$bc_search" ]; then
1175                         if [ $labelfile_entry_found -ne 0 ]; then
1176                                 Log       "ERROR    -> Duplicate entries: $labelfile line $line"
1177                                 LogAppend "         -> Remove $labelfile" \
1178                                                        "and run" \
1179                                                        "\"$sbindir/amtape $config update\""
1180                                 Exit 2 \
1181                                      "<none>" \
1182                                      "Duplicate entries: $labelfile line $line"
1183                                 return $?       # in case we are internal
1184                         fi
1185                         labelfile_entry_found=1
1186                         labelfile_label=$lbl
1187                         labelfile_barcode=$bc
1188                 fi
1189         done
1190 }
1191
1192 ###
1193 # Adds the label and barcode for the currently loaded tape to the
1194 # barcode file.  Return an error if the database is messed up.
1195 ###
1196
1197 addlabel() {
1198         test -n "$DEBUG" && set -x
1199         if [ $# -lt 1 ]; then
1200                 Exit 2 "<none>" "Missing -label argument"
1201                 return $?                       # in case we are internal
1202         fi
1203         tapelabel=$1
1204         if [ $havereader -eq 0 ]; then
1205                 Exit 2 "<none>" "Not configured with barcode reader"
1206                 return $?                       # in case we are internal
1207         fi
1208         get_loaded_info
1209         if [ $loadedslot -lt 0 ]; then
1210                 Exit 1 "<none>" "No tape currently loaded"
1211                 return $?                       # in case we are internal
1212         fi
1213         Log       "LABEL    -> Adding label \"$tapelabel\"" \
1214                                "with barcode \"$loadedbarcode\"" \
1215                                "for slot $loadedslot" \
1216                                "into $labelfile"
1217         read_labelfile "$tapelabel" "$loadedbarcode" < $labelfile
1218         if [ $labelfile_entry_found -ne 0 ]; then
1219                 lf_val=
1220                 if [ "$labelfile_barcode" != "$loadedbarcode" ]; then
1221                         lf_type=label
1222                         lf_val=$tapelabel
1223                         val_type=barcode
1224                         old_val=$labelfile_barcode
1225                         new_val=$loadedbarcode
1226                 elif [ "$labelfile_label" != "$tapelabel" ]; then
1227                         lf_type=barcode
1228                         lf_val=$loadedbarcode
1229                         val_type=label
1230                         old_val=$labelfile_label
1231                         new_val=$tapelabel
1232                 fi
1233                 if [ -n "$lf_val" ]; then
1234                         LogAppend "ERROR    -> !!! Label database corrupted !!!"
1235                         LogAppend "         -> \"$old_val\" conflicts with" \
1236                                                "new $val_type \"$new_val\"" \
1237                                                "for $lf_type \"$lf_val\""
1238                         LogAppend "         -> Remove $labelfile" \
1239                                                "and run" \
1240                                                "\"$sbindir/amtape $config update\""
1241                         Exit 2 \
1242                              "<none>" \
1243                              "$tapelabel: \"$old_val\" conflicts with" \
1244                              "new $val_type \"$new_val\"" \
1245                              "for $lf_type \"$lf_val\""
1246                         return $?               # in case we are internal
1247                 fi
1248                 LogAppend "         -> already synced"
1249         else
1250                 echo "$tapelabel $loadedbarcode" >> $labelfile
1251                 LogAppend "         -> appended $labelfile entry:" \
1252                                        "$tapelabel $loadedbarcode"
1253         fi
1254         Exit 0 "$loadedslot" "$tape"
1255         return $?                               # in case we are internal
1256 }
1257
1258 ###
1259 # Look for a label in the barcode file.  If found, locate the slot it's
1260 # in by looking for the barcode in the mtx output, then load that tape.
1261 ###
1262
1263 searchtape() {
1264         test -n "$DEBUG" && set -x
1265         if [ $# -lt 1 ]; then
1266                 Exit 2 "<none>" "Missing -search argument"
1267                 return $?                       # in case we are internal
1268         fi
1269         tapelabel=$1
1270         if [ $havereader -eq 0 ]; then
1271                 Exit 2 "<none>" "Not configured with barcode reader"
1272                 return $?                       # in case we are internal
1273         fi
1274         Log "SEARCH   -> Hunting for label \"$tapelabel\""
1275         read_labelfile "$tapelabel" "" < $labelfile
1276         if [ $labelfile_entry_found -eq 0 ]; then
1277                 LogAppend "         -> !!! label \"$tapelabel\" not found" \
1278                                        "in $labelfile !!!"
1279                 LogAppend "         -> Remove $labelfile" \
1280                                        "and run" \
1281                                        "\"$sbindir/amtape $config update\""
1282                 Exit 2 \
1283                      "<none>" \
1284                      "$tapelabel: label \"$tapelabel\" not found in $labelfile"
1285                 return $?                       # in case we are internal
1286         fi
1287         LogAppend "         -> barcode is \"$labelfile_barcode\""
1288         get_mtx_status
1289         foundslot=`sed -n '
1290 /VolumeTag *= *'$labelfile_barcode' *$/                 {
1291         s/.*Storage Element \([0-9][0-9]*\).*/\1/p
1292         q
1293 }
1294 ' < $mtx_status`
1295         LogAppend "         -> foundslot is $foundslot"
1296         if [ -z "$foundslot" ]; then
1297                 LogAppend "ERROR    -> !!! Could not find slot" \
1298                                        "for barcode \"$labelfile_barcode\"!!!"
1299                 LogAppend "         -> Remove $labelfile" \
1300                                        "and run" \
1301                                        "\"$sbindir/amtape $config update\""
1302                 Exit 2 \
1303                      "<none>" \
1304                      "barcode \"$labelfile_barcode\"" \
1305                      "not found in mtx status output"
1306                 return $?                       # in case we are internal
1307         fi
1308         # Call loadslot without doing it as an internal and let it finish
1309         # things up.
1310         loadslot $foundslot
1311         # NOTREACHED
1312         Exit 2 "<none>" "searchtape: should not get here"
1313         return $?                               # in case we are internal
1314 }
1315
1316 ###
1317 # Program invocation begins here
1318 ###
1319
1320 if [ $# -lt 1 ]; then
1321         Exit 2 "<none>" "Usage: $myname -command args"
1322 fi
1323 cmd=$1
1324 shift
1325 case "$cmd" in
1326 -slot)
1327         loadslot "$@"
1328         ;;
1329 -info)
1330         info "$@"
1331         ;;
1332 -reset)
1333         reset "$@"
1334         ;;
1335 -eject)
1336         eject "$@"
1337         ;;
1338 -label) 
1339         addlabel "$@"
1340         ;;
1341 -search)
1342         searchtape "$@"
1343         ;;
1344 -clean)
1345         loadslot clean
1346         ;;
1347 *)
1348         Exit 2 "<none>" "unknown option: $cmd"
1349         ;;
1350 esac
1351
1352 Exit 2 "<none>" "$myname: should not get here"