]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dircmd.c
Fix error message
[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 device=", 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    Dmsg0(110, "Start Dir Job\n");
167    jcr = new_jcr(sizeof(JCR), stored_free_jcr); /* create Job Control Record */
168    jcr->dir_bsock = bs;               /* save Director bsock */
169    jcr->dir_bsock->jcr = jcr;
170    jcr->dcrs = New(alist(10, not_owned_by_alist));
171    /* Initialize FD start condition variable */
172    int errstat = pthread_cond_init(&jcr->job_start_wait, NULL);
173    if (errstat != 0) {
174       Jmsg1(jcr, M_FATAL, 0, _("Unable to init job cond variable: ERR=%s\n"), strerror(errstat));
175       goto bail_out;
176    }
177
178    Dmsg0(1000, "stored in start_job\n");
179
180    /*
181     * Authenticate the Director
182     */
183    if (!authenticate_director(jcr)) {
184       Jmsg(jcr, M_FATAL, 0, _("Unable to authenticate Director\n"));
185       goto bail_out;
186    }
187    Dmsg0(90, "Message channel init completed.\n");
188
189    for (quit=false; !quit;) {
190       /* Read command */
191       if ((bnet_stat = bnet_recv(bs)) <= 0) {
192          break;               /* connection terminated */
193       }
194       Dmsg1(199, "<dird: %s\n", bs->msg);
195       found = false;
196       for (i=0; cmds[i].cmd; i++) {
197         if (strncmp(cmds[i].cmd, bs->msg, strlen(cmds[i].cmd)) == 0) {
198            if ((!cmds[i].monitoraccess) && (jcr->director->monitor)) {
199               Dmsg1(100, "Command %s illegal.\n", cmds[i].cmd);
200               bnet_fsend(bs, illegal_cmd);
201               bnet_sig(bs, BNET_EOD);
202               break;
203            }
204            Dmsg1(200, "Do command: %s\n", cmds[i].cmd);
205            if (!cmds[i].func(jcr)) { /* do command */
206               quit = true; /* error, get out */
207               Dmsg1(190, "Command %s requsts quit\n", cmds[i].cmd);
208            }
209            found = true;             /* indicate command found */
210            break;
211         }
212       }
213       if (!found) {                   /* command not found */
214         bnet_fsend(bs, derrmsg);
215         break;
216       }
217    }
218 bail_out:
219    dequeue_messages(jcr);             /* send any queued messages */
220    bnet_sig(bs, BNET_TERMINATE);
221    free_jcr(jcr);
222    return NULL;
223 }
224
225 /*
226  * Set debug level as requested by the Director
227  *
228  */
229 static bool setdebug_cmd(JCR *jcr)
230 {
231    BSOCK *dir = jcr->dir_bsock;
232    int level, trace_flag;
233
234    Dmsg1(10, "setdebug_cmd: %s", dir->msg);
235    if (sscanf(dir->msg, "setdebug=%d trace=%d", &level, &trace_flag) != 2 || level < 0) {
236       bnet_fsend(dir, "3991 Bad setdebug command: %s\n", dir->msg);
237       return 0;
238    }
239    debug_level = level;
240    set_trace(trace_flag);
241    return bnet_fsend(dir, OKsetdebug, level);
242 }
243
244
245 /*
246  * Cancel a Job
247  */
248 static bool cancel_cmd(JCR *cjcr)
249 {
250    BSOCK *dir = cjcr->dir_bsock;
251    int oldStatus;
252    char Job[MAX_NAME_LENGTH];
253    JCR *jcr;
254
255    if (sscanf(dir->msg, "cancel Job=%127s", Job) == 1) {
256       if (!(jcr=get_jcr_by_full_name(Job))) {
257          bnet_fsend(dir, _("3992 Job %s not found.\n"), Job);
258       } else {
259          P(jcr->mutex);
260          oldStatus = jcr->JobStatus;
261          set_jcr_job_status(jcr, JS_Canceled);
262          if (!jcr->authenticated && oldStatus == JS_WaitFD) {
263             pthread_cond_signal(&jcr->job_start_wait); /* wake waiting thread */
264          }
265          V(jcr->mutex);
266          if (jcr->file_bsock) {
267             bnet_sig(jcr->file_bsock, BNET_TERMINATE);
268          }
269          /* If thread waiting on mount, wake him */
270          if (jcr->dcr && jcr->dcr->dev &&
271               (jcr->dcr->dev->dev_blocked == BST_WAITING_FOR_SYSOP ||
272                jcr->dcr->dev->dev_blocked == BST_UNMOUNTED ||
273                jcr->dcr->dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP)) {
274              pthread_cond_signal(&jcr->dcr->dev->wait_next_vol);
275          }
276          bnet_fsend(dir, _("3000 Job %s marked to be canceled.\n"), jcr->Job);
277          free_jcr(jcr);
278       }
279    } else {
280       bnet_fsend(dir, _("3993 Error scanning cancel command.\n"));
281    }
282    bnet_sig(dir, BNET_EOD);
283    return 1;
284 }
285
286 /*
287  * Label a tape
288  *
289  */
290 static bool label_cmd(JCR *jcr)
291 {
292    return do_label(jcr, 0);
293 }
294
295 static bool relabel_cmd(JCR *jcr)
296 {
297    return do_label(jcr, 1);
298 }
299
300 static bool do_label(JCR *jcr, int relabel)
301 {
302    POOLMEM *newname, *oldname, *poolname, *mtype;
303    POOL_MEM dev_name;
304    BSOCK *dir = jcr->dir_bsock;
305    DEVICE *dev;
306    bool ok = false;
307    int slot;
308
309    newname = get_memory(dir->msglen+1);
310    oldname = get_memory(dir->msglen+1);
311    poolname = get_memory(dir->msglen+1);
312    mtype = get_memory(dir->msglen+1);
313    if (relabel) {
314       if (sscanf(dir->msg, "relabel %127s OldName=%127s NewName=%127s PoolName=%127s MediaType=%127s Slot=%d",
315           dev_name.c_str(), oldname, newname, poolname, mtype, &slot) == 6) {
316          ok = true;
317       }
318    } else {
319       *oldname = 0;
320       if (sscanf(dir->msg, "label %127s VolumeName=%127s PoolName=%127s MediaType=%127s Slot=%d",
321           dev_name.c_str(), newname, poolname, mtype, &slot) == 5) {
322          ok = true;
323       }
324    }
325    if (ok) {
326       unbash_spaces(newname);
327       unbash_spaces(oldname);
328       unbash_spaces(poolname);
329       unbash_spaces(mtype);
330       dev = find_device(jcr, dev_name);
331       if (dev) {
332          /******FIXME**** compare MediaTypes */
333          P(dev->mutex);               /* Use P to avoid indefinite block */
334          if (!dev->is_open()) {
335             label_volume_if_ok(jcr, dev, oldname, newname, poolname, slot, relabel);
336             force_close_dev(dev);
337          /* Under certain "safe" conditions, we can steal the lock */
338          } else if (dev->dev_blocked &&
339                     (dev->dev_blocked == BST_UNMOUNTED ||
340                      dev->dev_blocked == BST_WAITING_FOR_SYSOP ||
341                      dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP)) {
342             label_volume_if_ok(jcr, dev, oldname, newname, poolname, slot, relabel);
343          } else if (dev->is_busy()) {
344             send_dir_busy_message(dir, dev);
345          } else {                     /* device not being used */
346             label_volume_if_ok(jcr, dev, oldname, newname, poolname, slot, relabel);
347          }
348          V(dev->mutex);
349       } else {
350          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), dev_name.c_str());
351       }
352    } else {
353       /* NB dir->msg gets clobbered in bnet_fsend, so save command */
354       pm_strcpy(jcr->errmsg, dir->msg);
355       bnet_fsend(dir, _("3903 Error scanning label command: %s\n"), jcr->errmsg);
356    }
357    free_memory(oldname);
358    free_memory(newname);
359    free_memory(poolname);
360    free_memory(mtype);
361    bnet_sig(dir, BNET_EOD);
362    return true;
363 }
364
365 /*
366  * Read the tape label and determine if we can safely
367  * label the tape (not a Bacula volume), then label it.
368  *
369  *  Enter with the mutex set
370  */
371 static void label_volume_if_ok(JCR *jcr, DEVICE *dev, char *oldname,
372                                char *newname, char *poolname,
373                                int slot, int relabel)
374 {
375    BSOCK *dir = jcr->dir_bsock;
376    bsteal_lock_t hold;
377    DCR *dcr = jcr->dcr;
378    int label_status;
379
380    dcr->dev = dev;
381    steal_device_lock(dev, &hold, BST_WRITING_LABEL);
382
383    if (!try_autoload_device(jcr, slot, newname)) {
384       goto bail_out;                  /* error */
385    }
386
387    /* See what we have for a Volume */
388    if (dev->is_dvd()) {
389       label_status = read_dev_volume_label_guess(dcr, 1);
390    } else {
391       label_status = read_dev_volume_label(dcr);
392    }
393    
394    switch(label_status) {
395    case VOL_NAME_ERROR:
396    case VOL_VERSION_ERROR:
397    case VOL_LABEL_ERROR:
398    case VOL_OK:
399       if (!relabel) {
400          bnet_fsend(dir, _(
401             "3920 Cannot label Volume because it is already labeled: \"%s\"\n"),
402              dev->VolHdr.VolName);
403          break;
404       }
405       /* Relabel request. If oldname matches, continue */
406       if (strcmp(oldname, dev->VolHdr.VolName) != 0) {
407          bnet_fsend(dir, _("3921 Wrong volume mounted.\n"));
408          break;
409       }
410       if (dev->label_type != B_BACULA_LABEL) {
411          bnet_fsend(dir, _("3922 Cannot relabel an ANSI/IBM labeled Volume.\n"));
412          break;
413       }
414       /* Fall through wanted! */
415    case VOL_IO_ERROR:
416    case VOL_NO_LABEL:
417       if (!write_new_volume_label_to_dev(dcr, newname, poolname)) {
418          bnet_fsend(dir, _("3912 Failed to label Volume: ERR=%s\n"), strerror_dev(dev));
419          break;
420       }
421       bstrncpy(dcr->VolumeName, newname, sizeof(dcr->VolumeName));
422       /* The following 3000 OK label. string is scanned in ua_label.c */
423       bnet_fsend(dir, "3000 OK label. Volume=%s Device=%s\n",
424          newname, dev->print_name());
425       break;
426    case VOL_NO_MEDIA:
427       bnet_fsend(dir, _("3912 Failed to label Volume: ERR=%s\n"), strerror_dev(dev));
428       break;
429    default:
430       bnet_fsend(dir, _("3913 Cannot label Volume. "
431 "Unknown status %d from read_volume_label()\n"), label_status);
432       break;
433    }
434
435 bail_out:
436    give_back_device_lock(dev, &hold);
437    return;
438 }
439
440
441 /*
442  * Read the tape label
443  *
444  *  Enter with the mutex set
445  */
446 static bool read_label(DCR *dcr)
447 {
448    int ok;
449    JCR *jcr = dcr->jcr;
450    BSOCK *dir = jcr->dir_bsock;
451    bsteal_lock_t hold;
452    DEVICE *dev = dcr->dev;
453
454    steal_device_lock(dev, &hold, BST_DOING_ACQUIRE);
455
456    dcr->VolumeName[0] = 0;
457    dev->state &= ~ST_LABEL;           /* force read of label */
458    switch (read_dev_volume_label(dcr)) {
459    case VOL_OK:
460       bnet_fsend(dir, _("3001 Mounted Volume: %s\n"), dev->VolHdr.VolName);
461       ok = true;
462       break;
463    default:
464       bnet_fsend(dir, _("3902 Cannot mount Volume on Storage Device %s because:\n%s"),
465          dev->print_name(), jcr->errmsg);
466       ok = false;
467       break;
468    }
469    give_back_device_lock(dev, &hold);
470    return ok;
471 }
472
473 static DEVICE *find_device(JCR *jcr, POOL_MEM &devname)
474 {
475    DEVRES *device;
476    AUTOCHANGER *changer;
477    bool found = false;
478
479    unbash_spaces(devname);
480    LockRes();
481    foreach_res(device, R_DEVICE) {
482       /* Find resource, and make sure we were able to open it */
483       if (fnmatch(device->hdr.name, devname.c_str(), 0) == 0) {
484          if (!device->dev) {
485             device->dev = init_dev(jcr, NULL, device);
486          }
487          if (!device->dev) {
488             Jmsg(jcr, M_WARNING, 0, _("\n"
489                "     Device \"%s\" requested by DIR could not be opened or does not exist.\n"),
490                  devname.c_str());
491             continue;
492          }
493          Dmsg1(20, "Found device %s\n", device->hdr.name);
494          found = true;
495          break;
496       }
497    }
498    foreach_res(changer, R_AUTOCHANGER) {
499       /* Find resource, and make sure we were able to open it */
500       if (fnmatch(devname.c_str(), changer->hdr.name, 0) == 0) {
501          /* Try each device in this AutoChanger */
502          foreach_alist(device, changer->device) {
503             Dmsg1(100, "Try changer device %s\n", device->hdr.name);
504             if (!device->dev) {
505                device->dev = init_dev(jcr, NULL, device);
506             }
507             if (!device->dev) {
508                Dmsg1(100, "Device %s could not be opened. Skipped\n", devname.c_str());
509                Jmsg(jcr, M_WARNING, 0, _("\n"
510                   "     Device \"%s\" in changer \"%s\" requested by DIR could not be opened or does not exist.\n"),
511                     device->hdr.name, devname.c_str());
512                continue;
513             }
514             if (!device->dev->autoselect) {
515                continue;              /* device is not available */
516             }
517             Dmsg1(20, "Found changer device %s\n", device->hdr.name);
518             found = true;
519             break;
520          }
521          break;                    /* we found it but could not open a device */
522       }
523    }
524
525    if (found) {
526       jcr->dcr = new_dcr(jcr, device->dev);
527       UnlockRes();
528       jcr->dcr->device = device;
529       return jcr->dcr->dev;
530    }
531    UnlockRes();
532    return NULL;
533 }
534
535
536 /*
537  * Mount command from Director
538  */
539 static bool mount_cmd(JCR *jcr)
540 {
541    POOL_MEM devname;
542    BSOCK *dir = jcr->dir_bsock;
543    DEVICE *dev;
544    DCR *dcr;
545
546    if (sscanf(dir->msg, "mount %127s", devname.c_str()) == 1) {
547       dev = find_device(jcr, devname);
548       dcr = jcr->dcr;
549       if (dev) {
550          P(dev->mutex);               /* Use P to avoid indefinite block */
551          switch (dev->dev_blocked) {         /* device blocked? */
552          case BST_WAITING_FOR_SYSOP:
553             /* Someone is waiting, wake him */
554             Dmsg0(100, "Waiting for mount. Attempting to wake thread\n");
555             dev->dev_blocked = BST_MOUNT;
556             bnet_fsend(dir, "3001 OK mount. Device=%s\n", 
557                dev->print_name());
558             pthread_cond_signal(&dev->wait_next_vol);
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_signal(&dev->wait_next_vol);
589             break;
590
591          case BST_DOING_ACQUIRE:
592             bnet_fsend(dir, _("3001 Device %s is mounted; doing acquire.\n"),
593                        dev->print_name());
594             break;
595
596          case BST_WRITING_LABEL:
597             bnet_fsend(dir, _("3903 Device %s is being labeled.\n"), 
598                dev->print_name());
599             break;
600
601          case BST_NOT_BLOCKED:
602             if (dev->is_open()) {
603                if (dev->is_labeled()) {
604                   bnet_fsend(dir, _("3001 Device %s is mounted with Volume \"%s\"\n"),
605                      dev->print_name(), dev->VolHdr.VolName);
606                } else {
607                   bnet_fsend(dir, _("3905 Device %s open but no Bacula volume is mounted.\n"
608                                  "If this is not a blank tape, try unmounting and remounting the Volume.\n"),
609                              dev->print_name());
610                }
611             } else {
612                if (!dev_is_tape(dev)) {
613                   bnet_fsend(dir, _("3906 cannot mount non-tape.\n"));
614                   break;
615                }
616                if (open_dev(dev, NULL, OPEN_READ_WRITE) < 0) {
617                   bnet_fsend(dir, _("3901 open device failed: ERR=%s\n"),
618                      strerror_dev(dev));
619                   break;
620                }
621                read_label(dcr);
622                if (dev->is_labeled()) {
623                   bnet_fsend(dir, _("3001 Device %s is already mounted with Volume \"%s\"\n"),
624                      dev->print_name(), dev->VolHdr.VolName);
625                } else {
626                   bnet_fsend(dir, _("3905 Device %s open but no Bacula volume is mounted.\n"
627                                     "If this is not a blank tape, try unmounting and remounting the Volume.\n"),
628                              dev->print_name());
629                }
630             }
631             break;
632
633          default:
634             bnet_fsend(dir, _("3905 Bizarre wait state %d\n"), dev->dev_blocked);
635             break;
636          }
637          V(dev->mutex);
638       } else {
639          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
640       }
641    } else {
642       pm_strcpy(jcr->errmsg, dir->msg);
643       bnet_fsend(dir, _("3909 Error scanning mount command: %s\n"), jcr->errmsg);
644    }
645    bnet_sig(dir, BNET_EOD);
646    return true;
647 }
648
649 /*
650  * unmount command from Director
651  */
652 static bool unmount_cmd(JCR *jcr)
653 {
654    POOL_MEM devname;
655    BSOCK *dir = jcr->dir_bsock;
656    DEVICE *dev;
657
658    if (sscanf(dir->msg, "unmount %127s", devname.c_str()) == 1) {
659       dev = find_device(jcr, devname);
660       if (dev) {
661          P(dev->mutex);               /* Use P to avoid indefinite block */
662          if (!dev->is_open()) {
663             Dmsg0(90, "Device already unmounted\n");
664             bnet_fsend(dir, _("3901 Device %s is already unmounted.\n"), 
665                dev->print_name());
666
667          } else if (dev->dev_blocked == BST_WAITING_FOR_SYSOP) {
668             Dmsg2(90, "%d waiter dev_block=%d. doing unmount\n", dev->num_waiting,
669                dev->dev_blocked);
670             open_dev(dev, NULL, 0);     /* fake open for close */
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             open_dev(dev, NULL, 0);     /* fake open for close */
698             offline_or_rewind_dev(dev);
699             force_close_dev(dev);
700             bnet_fsend(dir, _("3002 Device %s unmounted.\n"), 
701                dev->print_name());
702          }
703          V(dev->mutex);
704       } else {
705          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
706       }
707    } else {
708       /* NB dir->msg gets clobbered in bnet_fsend, so save command */
709       pm_strcpy(jcr->errmsg, dir->msg);
710       bnet_fsend(dir, _("3907 Error scanning unmount command: %s\n"), jcr->errmsg);
711    }
712    bnet_sig(dir, BNET_EOD);
713    return true;
714 }
715
716 /*
717  * Release command from Director. This rewinds the device and if
718  *   configured does a offline and ensures that Bacula will
719  *   re-read the label of the tape before continuing. This gives
720  *   the operator the chance to change the tape anytime before the
721  *   next job starts.
722  */
723 static bool release_cmd(JCR *jcr)
724 {
725    POOL_MEM devname;
726    BSOCK *dir = jcr->dir_bsock;
727    DEVICE *dev;
728
729    if (sscanf(dir->msg, "release %127s", devname.c_str()) == 1) {
730       dev = find_device(jcr, devname);
731       if (dev) {
732          P(dev->mutex);               /* Use P to avoid indefinite block */
733          if (!dev->is_open()) {
734             Dmsg0(90, "Device already released\n");
735             bnet_fsend(dir, _("3911 Device %s already released.\n"), 
736                dev->print_name());
737
738          } else if (dev->dev_blocked == BST_WAITING_FOR_SYSOP ||
739                     dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP) {
740             Dmsg2(90, "%d waiter dev_block=%d. doing unmount\n", dev->num_waiting,
741                dev->dev_blocked);
742             bnet_fsend(dir, _("3912 Device %s waiting for mount.\n"), 
743                dev->print_name());
744
745          } else if (dev->dev_blocked == BST_DOING_ACQUIRE) {
746             bnet_fsend(dir, _("3913 Device %s is busy in acquire.\n"), 
747                dev->print_name());
748
749          } else if (dev->dev_blocked == BST_WRITING_LABEL) {
750             bnet_fsend(dir, _("3914 Device %s is being labeled.\n"), 
751                dev->print_name());
752
753          } else if (dev->is_busy()) {
754             send_dir_busy_message(dir, dev);
755          } else {                     /* device not being used */
756             Dmsg0(90, "Device not in use, unmounting\n");
757             release_volume(jcr->dcr);
758             bnet_fsend(dir, _("3012 Device %s released.\n"), 
759                dev->print_name());
760          }
761          V(dev->mutex);
762       } else {
763          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
764       }
765    } else {
766       /* NB dir->msg gets clobbered in bnet_fsend, so save command */
767       pm_strcpy(jcr->errmsg, dir->msg);
768       bnet_fsend(dir, _("3917 Error scanning release command: %s\n"), jcr->errmsg);
769    }
770    bnet_sig(dir, BNET_EOD);
771    return true;
772 }
773
774
775
776 /*
777  * Autochanger command from Director
778  */
779 static bool autochanger_cmd(JCR *jcr)
780 {
781    POOL_MEM devname;
782    BSOCK *dir = jcr->dir_bsock;
783    DEVICE *dev;
784    DCR *dcr;
785    const char *cmd = NULL;
786    bool ok = false;
787
788    if (sscanf(dir->msg, "autochanger list %127s ", devname.c_str()) == 1) {
789       cmd = "list";
790       ok = true;
791    } else if (sscanf(dir->msg, "autochanger slots %127s ", devname.c_str()) == 1) {
792       cmd = "slots";
793       ok = true;
794    }
795    if (ok) {
796       dev = find_device(jcr, devname);
797       dcr = jcr->dcr;
798       if (dev) {
799          P(dev->mutex);               /* Use P to avoid indefinite block */
800          if (!dev_is_tape(dev)) {
801             bnet_fsend(dir, _("3995 Device %s is not an autochanger.\n"), 
802                dev->print_name());
803          } else if (!dev->is_open()) {
804             autochanger_cmd(dcr, dir, cmd);
805          /* Under certain "safe" conditions, we can steal the lock */
806          } else if (dev->dev_blocked &&
807                     (dev->dev_blocked == BST_UNMOUNTED ||
808                      dev->dev_blocked == BST_WAITING_FOR_SYSOP ||
809                      dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP)) {
810             autochanger_cmd(dcr, dir, cmd);
811          } else if (dev->is_busy()) {
812             send_dir_busy_message(dir, dev);
813          } else {                     /* device not being used */
814             autochanger_cmd(dcr, dir, cmd);
815          }
816          V(dev->mutex);
817       } else {
818          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
819       }
820    } else {  /* error on scanf */
821       pm_strcpy(jcr->errmsg, dir->msg);
822       bnet_fsend(dir, _("3908 Error scanning autocharger list/slots command: %s\n"),
823          jcr->errmsg);
824    }
825    bnet_sig(dir, BNET_EOD);
826    return true;
827 }
828
829 /*
830  * Read and return the Volume label
831  */
832 static bool readlabel_cmd(JCR *jcr)
833 {
834    POOL_MEM devname;
835    BSOCK *dir = jcr->dir_bsock;
836    DEVICE *dev;
837    int Slot;
838
839    if (sscanf(dir->msg, "readlabel %127s Slot=%d", devname.c_str(), &Slot) == 2) {
840       dev = find_device(jcr, devname);
841       if (dev) {
842          P(dev->mutex);               /* Use P to avoid indefinite block */
843          if (!dev->is_open()) {
844             read_volume_label(jcr, dev, Slot);
845             force_close_dev(dev);
846          /* Under certain "safe" conditions, we can steal the lock */
847          } else if (dev->dev_blocked &&
848                     (dev->dev_blocked == BST_UNMOUNTED ||
849                      dev->dev_blocked == BST_WAITING_FOR_SYSOP ||
850                      dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP)) {
851             read_volume_label(jcr, dev, Slot);
852          } else if (dev->is_busy()) {
853             send_dir_busy_message(dir, dev);
854          } else {                     /* device not being used */
855             read_volume_label(jcr, dev, Slot);
856          }
857          V(dev->mutex);
858       } else {
859          bnet_fsend(dir, _("3999 Device \"%s\" not found\n"), devname.c_str());
860       }
861    } else {
862       pm_strcpy(jcr->errmsg, dir->msg);
863       bnet_fsend(dir, _("3909 Error scanning readlabel command: %s\n"), jcr->errmsg);
864    }
865    bnet_sig(dir, BNET_EOD);
866    return true;
867 }
868
869 /*
870  * Read the tape label
871  *
872  *  Enter with the mutex set
873  */
874 static void read_volume_label(JCR *jcr, DEVICE *dev, int Slot)
875 {
876    BSOCK *dir = jcr->dir_bsock;
877    bsteal_lock_t hold;
878    DCR *dcr = jcr->dcr;
879
880    dcr->dev = dev;
881    steal_device_lock(dev, &hold, BST_WRITING_LABEL);
882
883    if (!try_autoload_device(jcr, Slot, "")) {
884       goto bail_out;                  /* error */
885    }
886
887    dev->state &= ~ST_LABEL;           /* force read of label */
888    switch (read_dev_volume_label(dcr)) {
889    case VOL_OK:
890       /* DO NOT add quotes around the Volume name. It is scanned in the DIR */
891       bnet_fsend(dir, _("3001 Volume=%s Slot=%d\n"), dev->VolHdr.VolName, Slot);
892       Dmsg1(100, "Volume: %s\n", dev->VolHdr.VolName);
893       break;
894    default:
895       bnet_fsend(dir, _("3902 Cannot mount Volume on Storage Device %s because:\n%s"),
896                  dev->print_name(), jcr->errmsg);
897       break;
898    }
899
900 bail_out:
901    give_back_device_lock(dev, &hold);
902    return;
903 }
904
905 static bool try_autoload_device(JCR *jcr, int slot, const char *VolName)
906 {
907    DCR *dcr = jcr->dcr;
908    BSOCK *dir = jcr->dir_bsock;
909    DEVICE *dev = dcr->dev;
910
911    bstrncpy(dcr->VolumeName, VolName, sizeof(dcr->VolumeName));
912    dcr->VolCatInfo.Slot = slot;
913    dcr->VolCatInfo.InChanger = slot > 0;
914    if (autoload_device(dcr, 0, dir) < 0) {    /* autoload if possible */
915       return false;
916    }
917
918    /* Ensure that the device is open -- autoload_device() closes it */
919    for ( ; !dev->is_open(); ) {
920       if (open_dev(dev, dcr->VolumeName, OPEN_READ_WRITE) < 0) {
921          bnet_fsend(dir, _("3910 Unable to open device %s: ERR=%s\n"),
922             dev->print_name(), dev->strerror());
923          return false;
924       }
925    }
926    return true;
927 }
928
929 static void send_dir_busy_message(BSOCK *dir, DEVICE *dev)
930 {
931    if (dev->can_read()) {
932        bnet_fsend(dir, _("3911 Device %s is busy reading.\n"),
933                    dev->print_name());;
934    } else {
935        bnet_fsend(dir, _("3912 Device %s is busy with %d writer(s).\n"),
936           dev->print_name(), dev->num_writers);
937    }
938 }