]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dircmd.c
acf10f6151075cf8a7c46d37393aa6d0ca06e3da
[bacula/bacula] / bacula / src / stored / dircmd.c
1 /*
2  *  This file handles accepting Director Commands
3  *
4  *    Most Director commands are handled here, with the
5  *    exception of the Job command command and subsequent
6  *    subcommands that are handled
7  *    in job.c.
8  *
9  *    N.B. in this file, in general we must use P(dev->mutex) rather
10  *      than lock_device(dev) so that we can examine the blocked
11  *      state rather than blocking ourselves. In some "safe" cases,
12  *      we can do things to a blocked device. CAREFUL!!!!
13  *
14  *    File daemon commands are handled in fdcmd.c
15  *
16  *     Kern Sibbald, May MMI
17  *
18  *   Version $Id$
19  *
20  */
21 /*
22    Copyright (C) 2001-2005 Kern Sibbald
23
24    This program is free software; you can redistribute it and/or
25    modify it under the terms of the GNU General Public License as
26    published by the Free Software Foundation; either version 2 of
27    the License, or (at your option) any later version.
28
29    This program is distributed in the hope that it will be useful,
30    but WITHOUT ANY WARRANTY; without even the implied warranty of
31    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
32    General Public License for more details.
33
34    You should have received a copy of the GNU General Public
35    License along with this program; if not, write to the Free
36    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
37    MA 02111-1307, USA.
38
39  */
40
41 #include "bacula.h"
42 #include "stored.h"
43
44 /* Exported variables */
45
46 /* Imported variables */
47 extern BSOCK *filed_chan;
48 extern int r_first, r_last;
49 extern struct s_res resources[];
50 extern char my_name[];
51 extern time_t daemon_start_time;
52 extern struct s_last_job last_job;
53
54 /* Static variables */
55 static char derrmsg[]     = "3900 Invalid command\n";
56 static char OKsetdebug[]  = "3000 OK setdebug=%d\n";
57 static char illegal_cmd[] = "3997 Illegal command for a Director with Monitor directive enabled\n";
58
59 /* Imported functions */
60 extern void terminate_child();
61 extern bool job_cmd(JCR *jcr);
62 extern bool use_cmd(JCR *jcr);
63 extern bool run_cmd(JCR *jcr);
64 extern bool status_cmd(JCR *sjcr);
65 extern bool qstatus_cmd(JCR *jcr);
66 //extern bool query_cmd(JCR *jcr);
67
68 /* Forward referenced functions */
69 static bool label_cmd(JCR *jcr);
70 static bool relabel_cmd(JCR *jcr);
71 static bool readlabel_cmd(JCR *jcr);
72 static bool release_cmd(JCR *jcr);
73 static bool setdebug_cmd(JCR *jcr);
74 static bool cancel_cmd(JCR *cjcr);
75 static bool mount_cmd(JCR *jcr);
76 static bool unmount_cmd(JCR *jcr);
77 static bool autochanger_cmd(JCR *sjcr);
78 static bool do_label(JCR *jcr, int relabel);
79 static DEVICE *find_device(JCR *jcr, POOL_MEM &dev_name);
80 static void read_volume_label(JCR *jcr, DEVICE *dev, int Slot);
81 static void label_volume_if_ok(JCR *jcr, DEVICE *dev, char *oldname,
82                                char *newname, char *poolname,
83                                int Slot, int relabel);
84 static bool try_autoload_device(JCR *jcr, int slot, const char *VolName);
85 static void send_dir_busy_message(BSOCK *dir, DEVICE *dev);
86
87 struct s_cmds {
88    const char *cmd;
89    bool (*func)(JCR *jcr);
90    int monitoraccess; /* specify if monitors have access to this function */
91 };
92
93 /*
94  * The following are the recognized commands from the Director.
95  */
96 static struct s_cmds cmds[] = {
97    {"JobId=",      job_cmd,         0},     /* start Job */
98    {"autochanger", autochanger_cmd, 0},
99    {"bootstrap",   bootstrap_cmd,   0},
100    {"cancel",      cancel_cmd,      0},
101    {"label",       label_cmd,       0},     /* label a tape */
102    {"mount",       mount_cmd,       0},
103    {"readlabel",   readlabel_cmd,   0},
104    {"release",     release_cmd,     0},
105    {"relabel",     relabel_cmd,     0},     /* relabel a tape */
106    {"setdebug=",   setdebug_cmd,    0},     /* set debug level */
107    {"status",      status_cmd,      1},
108    {".status",     qstatus_cmd,     1},
109    {"unmount",     unmount_cmd,     0},
110    {"use storage=", use_cmd,        0},
111    {"run",         run_cmd,         0},
112 // {"query",       query_cmd,       0},
113    {NULL,        NULL}                      /* list terminator */
114 };
115
116
117 /*
118  * Connection request. We accept connections either from the
119  *  Director or a Client (File daemon).
120  *
121  * Note, we are running as a seperate thread of the Storage daemon.
122  *  and it is because a Director has made a connection with
123  *  us on the "Message" channel.
124  *
125  * Basic tasks done here:
126  *  - Create a JCR record
127  *  - If it was from the FD, call handle_filed_connection()
128  *  - Authenticate the Director
129  *  - We wait for a command
130  *  - We execute the command
131  *  - We continue or exit depending on the return status
132  */
133 void *handle_connection_request(void *arg)
134 {
135    BSOCK *bs = (BSOCK *)arg;
136    JCR *jcr;
137    int i;
138    bool found, quit;
139    int bnet_stat = 0;
140    char name[MAX_NAME_LENGTH];
141
142    if (bnet_recv(bs) <= 0) {
143       Emsg0(M_ERROR, 0, _("Connection request failed.\n"));
144       bnet_close(bs);
145       return NULL;
146    }
147
148    /*
149     * Do a sanity check on the message received
150     */
151    if (bs->msglen < 25 || bs->msglen > (int)sizeof(name)-25) {
152       Emsg1(M_ERROR, 0, _("Invalid connection. Len=%d\n"), bs->msglen);
153       bnet_close(bs);
154       return NULL;
155    }
156    /*
157     * See if this is a File daemon connection. If so
158     *   call FD handler.
159     */
160    Dmsg1(110, "Conn: %s", bs->msg);
161    if (sscanf(bs->msg, "Hello Start Job %127s", name) == 1) {
162       handle_filed_connection(bs, name);
163       return NULL;
164    }
165
166    /* 
167     * This is a connection from the Director, so setup a JCR 
168     */
169    Dmsg0(110, "Start Dir Job\n");
170    jcr = new_jcr(sizeof(JCR), stored_free_jcr); /* create Job Control Record */
171    jcr->dir_bsock = bs;               /* save Director bsock */
172    jcr->dir_bsock->jcr = jcr;
173    jcr->dcrs = New(alist(10, not_owned_by_alist));
174    /* Initialize FD start condition variable */
175    int errstat = pthread_cond_init(&jcr->job_start_wait, NULL);
176    if (errstat != 0) {
177       Jmsg1(jcr, M_FATAL, 0, _("Unable to init job cond variable: ERR=%s\n"), strerror(errstat));
178       goto bail_out;
179    }
180
181    Dmsg0(1000, "stored in start_job\n");
182
183    /*
184     * Authenticate the Director
185     */
186    if (!authenticate_director(jcr)) {
187       Jmsg(jcr, M_FATAL, 0, _("Unable to authenticate Director\n"));
188       goto bail_out;
189    }
190    Dmsg0(90, "Message channel init completed.\n");
191
192    for (quit=false; !quit;) {
193       /* Read command */
194       if ((bnet_stat = bnet_recv(bs)) <= 0) {
195          break;               /* connection terminated */
196       }
197       Dmsg1(199, "<dird: %s\n", bs->msg);
198       found = false;
199       for (i=0; cmds[i].cmd; i++) {
200         if (strncmp(cmds[i].cmd, bs->msg, strlen(cmds[i].cmd)) == 0) {
201            if ((!cmds[i].monitoraccess) && (jcr->director->monitor)) {
202               Dmsg1(100, "Command %s illegal.\n", cmds[i].cmd);
203               bnet_fsend(bs, illegal_cmd);
204               bnet_sig(bs, BNET_EOD);
205               break;
206            }
207            Dmsg1(200, "Do command: %s\n", cmds[i].cmd);
208            if (!cmds[i].func(jcr)) { /* do command */
209               quit = true; /* error, get out */
210               Dmsg1(190, "Command %s requsts quit\n", cmds[i].cmd);
211            }
212            found = true;             /* indicate command found */
213            break;
214         }
215       }
216       if (!found) {                   /* command not found */
217         bnet_fsend(bs, derrmsg);
218         break;
219       }
220    }
221 bail_out:
222    generate_daemon_event(jcr, "JobEnd");
223    dequeue_messages(jcr);             /* send any queued messages */
224    bnet_sig(bs, BNET_TERMINATE);
225    free_jcr(jcr);
226    return NULL;
227 }
228
229 /*
230  * Set debug level as requested by the Director
231  *
232  */
233 static bool setdebug_cmd(JCR *jcr)
234 {
235    BSOCK *dir = jcr->dir_bsock;
236    int level, trace_flag;
237
238    Dmsg1(10, "setdebug_cmd: %s", dir->msg);
239    if (sscanf(dir->msg, "setdebug=%d trace=%d", &level, &trace_flag) != 2 || level < 0) {
240       bnet_fsend(dir, "3991 Bad setdebug command: %s\n", dir->msg);
241       return 0;
242    }
243    debug_level = level;
244    set_trace(trace_flag);
245    return bnet_fsend(dir, OKsetdebug, level);
246 }
247
248
249 /*
250  * Cancel a Job
251  */
252 static bool cancel_cmd(JCR *cjcr)
253 {
254    BSOCK *dir = cjcr->dir_bsock;
255    int oldStatus;
256    char Job[MAX_NAME_LENGTH];
257    JCR *jcr;
258
259    if (sscanf(dir->msg, "cancel Job=%127s", Job) == 1) {
260       if (!(jcr=get_jcr_by_full_name(Job))) {
261          bnet_fsend(dir, _("3992 Job %s not found.\n"), Job);
262       } else {
263          P(jcr->mutex);
264          oldStatus = jcr->JobStatus;
265          set_jcr_job_status(jcr, JS_Canceled);
266          if (!jcr->authenticated && oldStatus == JS_WaitFD) {
267             pthread_cond_signal(&jcr->job_start_wait); /* wake waiting thread */
268          }
269          V(jcr->mutex);
270          if (jcr->file_bsock) {
271             bnet_sig(jcr->file_bsock, BNET_TERMINATE);
272          }
273          /* If thread waiting on mount, wake him */
274          if (jcr->dcr && jcr->dcr->dev && jcr->dcr->dev->waiting_for_mount()) {
275              pthread_cond_signal(&jcr->dcr->dev->wait_next_vol);
276              pthread_cond_broadcast(&wait_device_release);
277          }
278          bnet_fsend(dir, _("3000 Job %s marked to be canceled.\n"), jcr->Job);
279          free_jcr(jcr);
280       }
281    } else {
282       bnet_fsend(dir, _("3993 Error scanning cancel command.\n"));
283    }
284    bnet_sig(dir, BNET_EOD);
285    return 1;
286 }
287
288 /*
289  * Label a tape
290  *
291  */
292 static bool label_cmd(JCR *jcr)
293 {
294    return do_label(jcr, 0);
295 }
296
297 static bool relabel_cmd(JCR *jcr)
298 {
299    return do_label(jcr, 1);
300 }
301
302 static bool do_label(JCR *jcr, int relabel)
303 {
304    POOLMEM *newname, *oldname, *poolname, *mtype;
305    POOL_MEM dev_name;
306    BSOCK *dir = jcr->dir_bsock;
307    DEVICE *dev;
308    bool ok = false;
309    int slot;
310
311    newname = get_memory(dir->msglen+1);
312    oldname = get_memory(dir->msglen+1);
313    poolname = get_memory(dir->msglen+1);
314    mtype = get_memory(dir->msglen+1);
315    if (relabel) {
316       if (sscanf(dir->msg, "relabel %127s OldName=%127s NewName=%127s PoolName=%127s MediaType=%127s Slot=%d",
317           dev_name.c_str(), oldname, newname, poolname, mtype, &slot) == 6) {
318          ok = true;
319       }
320    } else {
321       *oldname = 0;
322       if (sscanf(dir->msg, "label %127s VolumeName=%127s PoolName=%127s MediaType=%127s Slot=%d",
323           dev_name.c_str(), newname, poolname, mtype, &slot) == 5) {
324          ok = true;
325       }
326    }
327    if (ok) {
328       unbash_spaces(newname);
329       unbash_spaces(oldname);
330       unbash_spaces(poolname);
331       unbash_spaces(mtype);
332       dev = find_device(jcr, dev_name);
333       if (dev) {
334          /******FIXME**** compare MediaTypes */
335          P(dev->mutex);               /* Use P to avoid indefinite block */
336          if (!dev->is_open()) {
337             label_volume_if_ok(jcr, dev, oldname, newname, poolname, slot, relabel);
338             force_close_dev(dev);
339          /* Under certain "safe" conditions, we can steal the lock */
340          } else if (dev->can_steal_lock()) {
341             label_volume_if_ok(jcr, dev, oldname, newname, poolname, slot, relabel);
342          } else if (dev->is_busy()) {
343             send_dir_busy_message(dir, dev);
344          } else {                     /* device not being used */
345             label_volume_if_ok(jcr, dev, oldname, newname, poolname, slot, relabel);
346          }
347          V(dev->mutex);
348       } else {
349          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), dev_name.c_str());
350       }
351    } else {
352       /* NB dir->msg gets clobbered in bnet_fsend, so save command */
353       pm_strcpy(jcr->errmsg, dir->msg);
354       bnet_fsend(dir, _("3903 Error scanning label command: %s\n"), jcr->errmsg);
355    }
356    free_memory(oldname);
357    free_memory(newname);
358    free_memory(poolname);
359    free_memory(mtype);
360    bnet_sig(dir, BNET_EOD);
361    return true;
362 }
363
364 /*
365  * Read the tape label and determine if we can safely
366  * label the tape (not a Bacula volume), then label it.
367  *
368  *  Enter with the mutex set
369  */
370 static void label_volume_if_ok(JCR *jcr, DEVICE *dev, char *oldname,
371                                char *newname, char *poolname,
372                                int slot, int relabel)
373 {
374    BSOCK *dir = jcr->dir_bsock;
375    bsteal_lock_t hold;
376    DCR *dcr = jcr->dcr;
377    int label_status;
378
379    dcr->dev = dev;
380    steal_device_lock(dev, &hold, BST_WRITING_LABEL);
381
382    if (!try_autoload_device(jcr, slot, newname)) {
383       goto bail_out;                  /* error */
384    }
385
386    /* See what we have for a Volume */
387    if (dev->is_dvd()) {
388       label_status = read_dev_volume_label_guess(dcr, 1);
389    } else {
390       label_status = read_dev_volume_label(dcr);
391    }
392    
393    switch(label_status) {
394    case VOL_NAME_ERROR:
395    case VOL_VERSION_ERROR:
396    case VOL_LABEL_ERROR:
397    case VOL_OK:
398       if (!relabel) {
399          bnet_fsend(dir, _(
400             "3920 Cannot label Volume because it is already labeled: \"%s\"\n"),
401              dev->VolHdr.VolName);
402          break;
403       }
404       /* Relabel request. If oldname matches, continue */
405       if (strcmp(oldname, dev->VolHdr.VolName) != 0) {
406          bnet_fsend(dir, _("3921 Wrong volume mounted.\n"));
407          break;
408       }
409       if (dev->label_type != B_BACULA_LABEL) {
410          bnet_fsend(dir, _("3922 Cannot relabel an ANSI/IBM labeled Volume.\n"));
411          break;
412       }
413       /* Fall through wanted! */
414    case VOL_IO_ERROR:
415    case VOL_NO_LABEL:
416       if (!write_new_volume_label_to_dev(dcr, newname, poolname)) {
417          bnet_fsend(dir, _("3912 Failed to label Volume: ERR=%s\n"), strerror_dev(dev));
418          break;
419       }
420       bstrncpy(dcr->VolumeName, newname, sizeof(dcr->VolumeName));
421       /* The following 3000 OK label. string is scanned in ua_label.c */
422       bnet_fsend(dir, "3000 OK label. Volume=%s Device=%s\n",
423          newname, dev->print_name());
424       break;
425    case VOL_NO_MEDIA:
426       bnet_fsend(dir, _("3912 Failed to label Volume: ERR=%s\n"), strerror_dev(dev));
427       break;
428    default:
429       bnet_fsend(dir, _("3913 Cannot label Volume. "
430 "Unknown status %d from read_volume_label()\n"), label_status);
431       break;
432    }
433
434 bail_out:
435    give_back_device_lock(dev, &hold);
436    return;
437 }
438
439
440 /*
441  * Read the tape label
442  *
443  *  Enter with the mutex set
444  */
445 static bool read_label(DCR *dcr)
446 {
447    int ok;
448    JCR *jcr = dcr->jcr;
449    BSOCK *dir = jcr->dir_bsock;
450    bsteal_lock_t hold;
451    DEVICE *dev = dcr->dev;
452
453    steal_device_lock(dev, &hold, BST_DOING_ACQUIRE);
454
455    dcr->VolumeName[0] = 0;
456    dev->clear_labeled();              /* force read of label */
457    switch (read_dev_volume_label(dcr)) {
458    case VOL_OK:
459       bnet_fsend(dir, _("3001 Mounted Volume: %s\n"), dev->VolHdr.VolName);
460       ok = true;
461       break;
462    default:
463       bnet_fsend(dir, _("3902 Cannot mount Volume on Storage Device %s because:\n%s"),
464          dev->print_name(), jcr->errmsg);
465       ok = false;
466       break;
467    }
468    give_back_device_lock(dev, &hold);
469    return ok;
470 }
471
472 static DEVICE *find_device(JCR *jcr, POOL_MEM &devname)
473 {
474    DEVRES *device;
475    AUTOCHANGER *changer;
476    bool found = false;
477
478    unbash_spaces(devname);
479 // LockRes();
480    foreach_res(device, R_DEVICE) {
481       /* Find resource, and make sure we were able to open it */
482       if (fnmatch(device->hdr.name, devname.c_str(), 0) == 0) {
483          if (!device->dev) {
484             device->dev = init_dev(jcr, NULL, device);
485          }
486          if (!device->dev) {
487             Jmsg(jcr, M_WARNING, 0, _("\n"
488                "     Device \"%s\" requested by DIR could not be opened or does not exist.\n"),
489                  devname.c_str());
490             continue;
491          }
492          Dmsg1(20, "Found device %s\n", device->hdr.name);
493          found = true;
494          break;
495       }
496    }
497    foreach_res(changer, R_AUTOCHANGER) {
498       /* Find resource, and make sure we were able to open it */
499       if (fnmatch(devname.c_str(), changer->hdr.name, 0) == 0) {
500          /* Try each device in this AutoChanger */
501          foreach_alist(device, changer->device) {
502             Dmsg1(100, "Try changer device %s\n", device->hdr.name);
503             if (!device->dev) {
504                device->dev = init_dev(jcr, NULL, device);
505             }
506             if (!device->dev) {
507                Dmsg1(100, "Device %s could not be opened. Skipped\n", devname.c_str());
508                Jmsg(jcr, M_WARNING, 0, _("\n"
509                   "     Device \"%s\" in changer \"%s\" requested by DIR could not be opened or does not exist.\n"),
510                     device->hdr.name, devname.c_str());
511                continue;
512             }
513             if (!device->dev->autoselect) {
514                continue;              /* device is not available */
515             }
516             Dmsg1(20, "Found changer device %s\n", device->hdr.name);
517             found = true;
518             break;
519          }
520          break;                    /* we found it but could not open a device */
521       }
522    }
523
524    if (found) {
525       jcr->dcr = new_dcr(jcr, device->dev);
526 //    UnlockRes();
527       jcr->dcr->device = device;
528       return jcr->dcr->dev;
529    }
530 // UnlockRes();
531    return NULL;
532 }
533
534
535 /*
536  * Mount command from Director
537  */
538 static bool mount_cmd(JCR *jcr)
539 {
540    POOL_MEM devname;
541    BSOCK *dir = jcr->dir_bsock;
542    DEVICE *dev;
543    DCR *dcr;
544
545    if (sscanf(dir->msg, "mount %127s", devname.c_str()) == 1) {
546       dev = find_device(jcr, devname);
547       dcr = jcr->dcr;
548       if (dev) {
549          P(dev->mutex);               /* Use P to avoid indefinite block */
550          switch (dev->dev_blocked) {         /* device blocked? */
551          case BST_WAITING_FOR_SYSOP:
552             /* Someone is waiting, wake him */
553             Dmsg0(100, "Waiting for mount. Attempting to wake thread\n");
554             dev->dev_blocked = BST_MOUNT;
555             bnet_fsend(dir, "3001 OK mount. Device=%s\n", 
556                dev->print_name());
557             pthread_cond_broadcast(&dev->wait_next_vol);
558             pthread_cond_broadcast(&wait_device_release);
559             break;
560
561          /* In both of these two cases, we (the user) unmounted the Volume */
562          case BST_UNMOUNTED_WAITING_FOR_SYSOP:
563          case BST_UNMOUNTED:
564             /* We freed the device, so reopen it and wake any waiting threads */
565             if (open_dev(dev, NULL, OPEN_READ_WRITE) < 0) {
566                bnet_fsend(dir, _("3901 open device failed: ERR=%s\n"),
567                   strerror_dev(dev));
568                break;
569             }
570             read_dev_volume_label(dcr);
571             if (dev->dev_blocked == BST_UNMOUNTED) {
572                /* We blocked the device, so unblock it */
573                Dmsg0(100, "Unmounted. Unblocking device\n");
574                read_label(dcr);       /* this should not be necessary */
575                unblock_device(dev);
576             } else {
577                Dmsg0(100, "Unmounted waiting for mount. Attempting to wake thread\n");
578                dev->dev_blocked = BST_MOUNT;
579             }
580             if (dev->is_labeled()) {
581                bnet_fsend(dir, _("3001 Device %s is mounted with Volume \"%s\"\n"),
582                   dev->print_name(), dev->VolHdr.VolName);
583             } else {
584                bnet_fsend(dir, _("3905 Device %s open but no Bacula volume is mounted.\n"
585                                  "If this is not a blank tape, try unmounting and remounting the Volume.\n"),
586                           dev->print_name());
587             }
588             pthread_cond_broadcast(&dev->wait_next_vol);
589             pthread_cond_broadcast(&wait_device_release);
590             break;
591
592          case BST_DOING_ACQUIRE:
593             bnet_fsend(dir, _("3001 Device %s is mounted; doing acquire.\n"),
594                        dev->print_name());
595             break;
596
597          case BST_WRITING_LABEL:
598             bnet_fsend(dir, _("3903 Device %s is being labeled.\n"), 
599                dev->print_name());
600             break;
601
602          case BST_NOT_BLOCKED:
603             if (dev->is_open()) {
604                if (dev->is_labeled()) {
605                   bnet_fsend(dir, _("3001 Device %s is mounted with Volume \"%s\"\n"),
606                      dev->print_name(), dev->VolHdr.VolName);
607                } else {
608                   bnet_fsend(dir, _("3905 Device %s open but no Bacula volume is mounted.\n"
609                                  "If this is not a blank tape, try unmounting and remounting the Volume.\n"),
610                              dev->print_name());
611                }
612             } else {
613                if (!dev->is_tape()) {
614                   /* Nothing to do */
615                   break;
616                }
617                if (open_dev(dev, NULL, OPEN_READ_WRITE) < 0) {
618                   bnet_fsend(dir, _("3901 open device failed: ERR=%s\n"),
619                      strerror_dev(dev));
620                   break;
621                }
622                read_label(dcr);
623                if (dev->is_labeled()) {
624                   bnet_fsend(dir, _("3001 Device %s is already mounted with Volume \"%s\"\n"),
625                      dev->print_name(), dev->VolHdr.VolName);
626                } else {
627                   bnet_fsend(dir, _("3905 Device %s open but no Bacula volume is mounted.\n"
628                                     "If this is not a blank tape, try unmounting and remounting the Volume.\n"),
629                              dev->print_name());
630                }
631             }
632             break;
633
634          default:
635             bnet_fsend(dir, _("3905 Bizarre wait state %d\n"), dev->dev_blocked);
636             break;
637          }
638          V(dev->mutex);
639       } else {
640          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
641       }
642    } else {
643       pm_strcpy(jcr->errmsg, dir->msg);
644       bnet_fsend(dir, _("3909 Error scanning mount command: %s\n"), jcr->errmsg);
645    }
646    bnet_sig(dir, BNET_EOD);
647    return true;
648 }
649
650 /*
651  * unmount command from Director
652  */
653 static bool unmount_cmd(JCR *jcr)
654 {
655    POOL_MEM devname;
656    BSOCK *dir = jcr->dir_bsock;
657    DEVICE *dev;
658
659    if (sscanf(dir->msg, "unmount %127s", devname.c_str()) == 1) {
660       dev = find_device(jcr, devname);
661       if (dev) {
662          P(dev->mutex);               /* Use P to avoid indefinite block */
663          if (!dev->is_open()) {
664             Dmsg0(90, "Device already unmounted\n");
665             bnet_fsend(dir, _("3901 Device %s is already unmounted.\n"), 
666                dev->print_name());
667
668          } else if (dev->dev_blocked == BST_WAITING_FOR_SYSOP) {
669             Dmsg2(90, "%d waiter dev_block=%d. doing unmount\n", dev->num_waiting,
670                dev->dev_blocked);
671             offline_or_rewind_dev(dev);
672             force_close_dev(dev);
673             dev->dev_blocked = BST_UNMOUNTED_WAITING_FOR_SYSOP;
674             bnet_fsend(dir, _("3001 Device %s unmounted.\n"), 
675                dev->print_name());
676
677          } else if (dev->dev_blocked == BST_DOING_ACQUIRE) {
678             bnet_fsend(dir, _("3902 Device %s is busy in acquire.\n"), 
679                dev->print_name());
680
681          } else if (dev->dev_blocked == BST_WRITING_LABEL) {
682             bnet_fsend(dir, _("3903 Device %s is being labeled.\n"), 
683                dev->print_name());
684
685          } else if (dev->is_busy()) {
686             send_dir_busy_message(dir, dev);
687          } else {                     /* device not being used */
688             Dmsg0(90, "Device not in use, unmounting\n");
689             /* On FreeBSD, I am having ASSERT() failures in block_device()
690              * and I can only imagine that the thread id that we are
691              * leaving in no_wait_id is being re-used. So here,
692              * we simply do it by hand.  Gross, but a solution.
693              */
694             /*  block_device(dev, BST_UNMOUNTED); replace with 2 lines below */
695             dev->dev_blocked = BST_UNMOUNTED;
696             dev->no_wait_id = 0;
697             offline_or_rewind_dev(dev);
698             force_close_dev(dev);
699             bnet_fsend(dir, _("3002 Device %s unmounted.\n"), 
700                dev->print_name());
701          }
702          V(dev->mutex);
703       } else {
704          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
705       }
706    } else {
707       /* NB dir->msg gets clobbered in bnet_fsend, so save command */
708       pm_strcpy(jcr->errmsg, dir->msg);
709       bnet_fsend(dir, _("3907 Error scanning unmount command: %s\n"), jcr->errmsg);
710    }
711    bnet_sig(dir, BNET_EOD);
712    return true;
713 }
714
715 /*
716  * Release command from Director. This rewinds the device and if
717  *   configured does a offline and ensures that Bacula will
718  *   re-read the label of the tape before continuing. This gives
719  *   the operator the chance to change the tape anytime before the
720  *   next job starts.
721  */
722 static bool release_cmd(JCR *jcr)
723 {
724    POOL_MEM devname;
725    BSOCK *dir = jcr->dir_bsock;
726    DEVICE *dev;
727
728    if (sscanf(dir->msg, "release %127s", devname.c_str()) == 1) {
729       dev = find_device(jcr, devname);
730       if (dev) {
731          P(dev->mutex);               /* Use P to avoid indefinite block */
732          if (!dev->is_open()) {
733             Dmsg0(90, "Device already released\n");
734             bnet_fsend(dir, _("3911 Device %s already released.\n"), 
735                dev->print_name());
736
737          } else if (dev->dev_blocked == BST_WAITING_FOR_SYSOP ||
738                     dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP) {
739             Dmsg2(90, "%d waiter dev_block=%d. doing unmount\n", dev->num_waiting,
740                dev->dev_blocked);
741             bnet_fsend(dir, _("3912 Device %s waiting for mount.\n"), 
742                dev->print_name());
743
744          } else if (dev->dev_blocked == BST_DOING_ACQUIRE) {
745             bnet_fsend(dir, _("3913 Device %s is busy in acquire.\n"), 
746                dev->print_name());
747
748          } else if (dev->dev_blocked == BST_WRITING_LABEL) {
749             bnet_fsend(dir, _("3914 Device %s is being labeled.\n"), 
750                dev->print_name());
751
752          } else if (dev->is_busy()) {
753             send_dir_busy_message(dir, dev);
754          } else {                     /* device not being used */
755             Dmsg0(90, "Device not in use, unmounting\n");
756             release_volume(jcr->dcr);
757             bnet_fsend(dir, _("3012 Device %s released.\n"), 
758                dev->print_name());
759          }
760          V(dev->mutex);
761       } else {
762          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
763       }
764    } else {
765       /* NB dir->msg gets clobbered in bnet_fsend, so save command */
766       pm_strcpy(jcr->errmsg, dir->msg);
767       bnet_fsend(dir, _("3917 Error scanning release command: %s\n"), jcr->errmsg);
768    }
769    bnet_sig(dir, BNET_EOD);
770    return true;
771 }
772
773
774
775 /*
776  * Autochanger command from Director
777  */
778 static bool autochanger_cmd(JCR *jcr)
779 {
780    POOL_MEM devname;
781    BSOCK *dir = jcr->dir_bsock;
782    DEVICE *dev;
783    DCR *dcr;
784    const char *cmd = NULL;
785    bool ok = false;
786
787    if (sscanf(dir->msg, "autochanger list %127s ", devname.c_str()) == 1) {
788       cmd = "list";
789       ok = true;
790    } else if (sscanf(dir->msg, "autochanger slots %127s ", devname.c_str()) == 1) {
791       cmd = "slots";
792       ok = true;
793    }
794    if (ok) {
795       dev = find_device(jcr, devname);
796       dcr = jcr->dcr;
797       if (dev) {
798          P(dev->mutex);               /* Use P to avoid indefinite block */
799          if (!dev->is_tape()) {
800             bnet_fsend(dir, _("3995 Device %s is not an autochanger.\n"), 
801                dev->print_name());
802          } else if (!dev->is_open()) {
803             autochanger_cmd(dcr, dir, cmd);
804          /* Under certain "safe" conditions, we can steal the lock */
805          } else if (dev->can_steal_lock()) {
806             autochanger_cmd(dcr, dir, cmd);
807          } else if (dev->is_busy()) {
808             send_dir_busy_message(dir, dev);
809          } else {                     /* device not being used */
810             autochanger_cmd(dcr, dir, cmd);
811          }
812          V(dev->mutex);
813       } else {
814          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
815       }
816    } else {  /* error on scanf */
817       pm_strcpy(jcr->errmsg, dir->msg);
818       bnet_fsend(dir, _("3908 Error scanning autocharger list/slots command: %s\n"),
819          jcr->errmsg);
820    }
821    bnet_sig(dir, BNET_EOD);
822    return true;
823 }
824
825 /*
826  * Read and return the Volume label
827  */
828 static bool readlabel_cmd(JCR *jcr)
829 {
830    POOL_MEM devname;
831    BSOCK *dir = jcr->dir_bsock;
832    DEVICE *dev;
833    int Slot;
834
835    if (sscanf(dir->msg, "readlabel %127s Slot=%d", devname.c_str(), &Slot) == 2) {
836       dev = find_device(jcr, devname);
837       if (dev) {
838          P(dev->mutex);               /* Use P to avoid indefinite block */
839          if (!dev->is_open()) {
840             read_volume_label(jcr, dev, Slot);
841             force_close_dev(dev);
842          /* Under certain "safe" conditions, we can steal the lock */
843          } else if (dev->can_steal_lock()) {
844             read_volume_label(jcr, dev, Slot);
845          } else if (dev->is_busy()) {
846             send_dir_busy_message(dir, dev);
847          } else {                     /* device not being used */
848             read_volume_label(jcr, dev, Slot);
849          }
850          V(dev->mutex);
851       } else {
852          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
853       }
854    } else {
855       pm_strcpy(jcr->errmsg, dir->msg);
856       bnet_fsend(dir, _("3909 Error scanning readlabel command: %s\n"), jcr->errmsg);
857    }
858    bnet_sig(dir, BNET_EOD);
859    return true;
860 }
861
862 /*
863  * Read the tape label
864  *
865  *  Enter with the mutex set
866  */
867 static void read_volume_label(JCR *jcr, DEVICE *dev, int Slot)
868 {
869    BSOCK *dir = jcr->dir_bsock;
870    bsteal_lock_t hold;
871    DCR *dcr = jcr->dcr;
872
873    dcr->dev = dev;
874    steal_device_lock(dev, &hold, BST_WRITING_LABEL);
875
876    if (!try_autoload_device(jcr, Slot, "")) {
877       goto bail_out;                  /* error */
878    }
879
880    dev->clear_labeled();              /* force read of label */
881    switch (read_dev_volume_label(dcr)) {
882    case VOL_OK:
883       /* DO NOT add quotes around the Volume name. It is scanned in the DIR */
884       bnet_fsend(dir, _("3001 Volume=%s Slot=%d\n"), dev->VolHdr.VolName, Slot);
885       Dmsg1(100, "Volume: %s\n", dev->VolHdr.VolName);
886       break;
887    default:
888       bnet_fsend(dir, _("3902 Cannot mount Volume on Storage Device %s because:\n%s"),
889                  dev->print_name(), jcr->errmsg);
890       break;
891    }
892
893 bail_out:
894    give_back_device_lock(dev, &hold);
895    return;
896 }
897
898 static bool try_autoload_device(JCR *jcr, int slot, const char *VolName)
899 {
900    DCR *dcr = jcr->dcr;
901    BSOCK *dir = jcr->dir_bsock;
902    DEVICE *dev = dcr->dev;
903
904    bstrncpy(dcr->VolumeName, VolName, sizeof(dcr->VolumeName));
905    dcr->VolCatInfo.Slot = slot;
906    dcr->VolCatInfo.InChanger = slot > 0;
907    if (autoload_device(dcr, 0, dir) < 0) {    /* autoload if possible */
908       return false;
909    }
910
911    /* Ensure that the device is open -- autoload_device() closes it */
912    for ( ; !dev->is_open(); ) {
913       if (open_dev(dev, dcr->VolumeName, OPEN_READ_WRITE) < 0) {
914          bnet_fsend(dir, _("3910 Unable to open device %s: ERR=%s\n"),
915             dev->print_name(), dev->strerror());
916          return false;
917       }
918    }
919    return true;
920 }
921
922 static void send_dir_busy_message(BSOCK *dir, DEVICE *dev)
923 {
924    if (dev->can_read()) {
925        bnet_fsend(dir, _("3911 Device %s is busy reading.\n"),
926                    dev->print_name());;
927    } else {
928        bnet_fsend(dir, _("3912 Device %s is busy with %d writer(s).\n"),
929           dev->print_name(), dev->num_writers);
930    }
931 }