]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/ua_label.c
FreeBSD fixes; manual updates
[bacula/bacula] / bacula / src / dird / ua_label.c
1 /*
2  *
3  *   Bacula Director -- Tape labeling commands
4  *
5  *     Kern Sibbald, April MMIII
6  *
7  *   Version $Id$
8  */
9
10 /*
11    Copyright (C) 2000-2003 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "dird.h"
32
33 /* Slot list definition */
34 typedef struct s_vol_list {
35    struct s_vol_list *next;
36    char *VolName;
37    int Slot;
38 } vol_list_t;
39
40
41 /* Forward referenced functions */
42 static int do_label(UAContext *ua, char *cmd, int relabel);
43 static void label_from_barcodes(UAContext *ua);
44 static int send_label_request(UAContext *ua, MEDIA_DBR *mr, MEDIA_DBR *omr, 
45                POOL_DBR *pr, int relabel, bool media_record_exits);
46 static vol_list_t *get_slot_list_from_SD(UAContext *ua);
47 static int is_cleaning_tape(UAContext *ua, MEDIA_DBR *mr, POOL_DBR *pr);
48
49
50 /*
51  * Label a tape 
52  *  
53  *   label storage=xxx volume=vvv
54  */
55 int label_cmd(UAContext *ua, char *cmd)
56 {
57    return do_label(ua, cmd, 0);       /* standard label */
58 }
59
60 int relabel_cmd(UAContext *ua, char *cmd)
61 {
62    return do_label(ua, cmd, 1);      /* relabel tape */
63 }
64
65
66 /*
67  * Update Slots corresponding to Volumes in autochanger 
68  */
69 int update_slots(UAContext *ua)
70 {
71    STORE *store;
72    vol_list_t *vl, *vol_list = NULL;
73    MEDIA_DBR mr;
74
75    if (!open_db(ua)) {
76       return 1;
77    }
78    store = get_storage_resource(ua, 1);
79    if (!store) {
80       return 1;
81    }
82    ua->jcr->store = store;
83
84    vol_list = get_slot_list_from_SD(ua);
85
86
87    if (!vol_list) {
88       bsendmsg(ua, _("No Volumes found to label, or no barcodes.\n"));
89       goto bail_out;
90    }
91
92    /* Walk through the list updating the media records */
93    for (vl=vol_list; vl; vl=vl->next) {
94
95       memset(&mr, 0, sizeof(mr));
96       bstrncpy(mr.VolumeName, vl->VolName, sizeof(mr.VolumeName));
97       db_lock(ua->db);
98       if (db_get_media_record(ua->jcr, ua->db, &mr)) {
99           if (mr.Slot != vl->Slot) {
100              mr.Slot = vl->Slot;
101              if (!db_update_media_record(ua->jcr, ua->db, &mr)) {
102                 bsendmsg(ua, _("%s\n"), db_strerror(ua->db));
103              } else {
104                 bsendmsg(ua, _(
105                   "Catalog record for Volume \"%s\" updated to reference slot %d.\n"),
106                   mr.VolumeName, mr.Slot);
107              }
108           } else {
109              bsendmsg(ua, _("Catalog record for Volume \"%s\" is up to date.\n"),
110                 mr.VolumeName);
111           }   
112           db_unlock(ua->db);
113           continue;
114       } else {
115           bsendmsg(ua, _("Record for Volume \"%s\" not found in catalog.\n"), 
116              mr.VolumeName);
117       }
118       db_unlock(ua->db);
119    }
120
121
122 bail_out:
123    /* Free list */
124    for (vl=vol_list; vl; ) {
125       vol_list_t *ovl;
126       free(vl->VolName);
127       ovl = vl;
128       vl = vl->next;
129       free(ovl);
130    }
131
132    if (ua->jcr->store_bsock) {
133       bnet_sig(ua->jcr->store_bsock, BNET_TERMINATE);
134       bnet_close(ua->jcr->store_bsock);
135       ua->jcr->store_bsock = NULL;
136    }
137    return 1;
138 }
139
140 /*
141  * Common routine for both label and relabel
142  */
143 static int do_label(UAContext *ua, char *cmd, int relabel)
144 {
145    STORE *store;
146    BSOCK *sd;
147    sd = ua->jcr->store_bsock;
148    char dev_name[MAX_NAME_LENGTH];
149    MEDIA_DBR mr, omr;
150    POOL_DBR pr;
151    int ok = FALSE;
152    int mounted = FALSE;
153    int i;
154    bool media_record_exists = false;
155    static char *barcode_keyword[] = {
156       "barcode",
157       "barcodes",
158       NULL};
159
160
161    memset(&pr, 0, sizeof(pr));
162    if (!open_db(ua)) {
163       return 1;
164    }
165    store = get_storage_resource(ua, 1);
166    if (!store) {
167       return 1;
168    }
169    ua->jcr->store = store;
170
171    if (!relabel && find_arg_keyword(ua, barcode_keyword) >= 0) {
172       label_from_barcodes(ua);
173       return 1;
174    }
175
176    /* If relabel get name of Volume to relabel */
177    if (relabel) {
178       /* Check for oldvolume=name */
179       i = find_arg_with_value(ua, "oldvolume"); 
180       if (i >= 0) {
181          memset(&omr, 0, sizeof(omr));
182          bstrncpy(omr.VolumeName, ua->argv[i], sizeof(omr.VolumeName));
183          if (db_get_media_record(ua->jcr, ua->db, &omr)) {
184             goto checkVol;
185          } 
186          bsendmsg(ua, "%s", db_strerror(ua->db));
187       }
188       /* No keyword or Vol not found, ask user to select */
189       if (!select_media_dbr(ua, &omr)) {
190          return 1;
191       }
192
193       /* Require Volume to be Purged */
194 checkVol:
195       if (strcmp(omr.VolStatus, "Purged") != 0) {
196          bsendmsg(ua, _("Volume \"%s\" has VolStatus %s. It must be purged before relabeling.\n"),
197             omr.VolumeName, omr.VolStatus);
198          return 1;
199       }
200    }
201
202    /* Check for volume=NewVolume */
203    i = find_arg_with_value(ua, "volume");
204    if (i >= 0) {
205       pm_strcpy(&ua->cmd, ua->argv[i]);
206       goto checkName;
207    }
208
209    /* Get a new Volume name */
210    for ( ;; ) {
211       media_record_exists = false;
212       if (!get_cmd(ua, _("Enter new Volume name: "))) {
213          return 1;
214       }
215 checkName:
216       if (!is_volume_name_legal(ua, ua->cmd)) {
217          continue;
218       }
219
220       memset(&mr, 0, sizeof(mr));
221       bstrncpy(mr.VolumeName, ua->cmd, sizeof(mr.VolumeName));
222       /* If VolBytes are zero the Volume is not labeled */
223       if (db_get_media_record(ua->jcr, ua->db, &mr)) {
224          if (mr.VolBytes != 0) {
225              bsendmsg(ua, _("Media record for new Volume \"%s\" already exists.\n"), 
226                 mr.VolumeName);
227              continue;
228           }
229           media_record_exists = true;
230       }
231       break;                          /* Got it */
232    }
233
234    /* If autochanger, request slot */
235    if (store->autochanger) {
236       i = find_arg_with_value(ua, "slot"); 
237       if (i >= 0) {
238          mr.Slot = atoi(ua->argv[i]);
239       } else if (!get_pint(ua, _("Enter slot (0 for none): "))) {
240          return 1;
241       } else {
242          mr.Slot = ua->pint32_val;
243       }
244    }
245
246    bstrncpy(mr.MediaType, store->media_type, sizeof(mr.MediaType));
247
248    /* Must select Pool if not already done */
249    if (pr.PoolId == 0) {
250       memset(&pr, 0, sizeof(pr));
251       if (!select_pool_dbr(ua, &pr)) {
252          return 1;
253       }
254    }
255
256    bsendmsg(ua, _("Connecting to Storage daemon %s at %s:%d ...\n"), 
257       store->hdr.name, store->address, store->SDport);
258    if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
259       bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
260       return 1;   
261    }
262    sd = ua->jcr->store_bsock;
263
264    ok = send_label_request(ua, &mr, &omr, &pr, relabel, media_record_exists);
265
266    if (ok) {
267       if (relabel) {
268          if (!db_delete_media_record(ua->jcr, ua->db, &omr)) {
269             bsendmsg(ua, _("Delete of Volume \"%s\" failed. ERR=%s"),
270                omr.VolumeName, db_strerror(ua->db));
271          } else {
272             bsendmsg(ua, _("Old volume \"%s\" deleted from catalog.\n"), 
273                omr.VolumeName);
274          }
275       }
276       if (ua->automount) {
277          bstrncpy(dev_name, store->dev_name, sizeof(dev_name));
278          bsendmsg(ua, _("Requesting mount %s ...\n"), dev_name);
279          bash_spaces(dev_name);
280          bnet_fsend(sd, "mount %s", dev_name);
281          unbash_spaces(dev_name);
282          while (bnet_recv(sd) >= 0) {
283             bsendmsg(ua, "%s", sd->msg);
284             /* Here we can get
285              *  3001 OK mount. Device=xxx      or
286              *  3001 Mounted Volume vvvv
287              */
288             mounted = strncmp(sd->msg, "3001 ", 5) == 0;
289          }
290       }
291    }
292    if (!mounted) {
293       bsendmsg(ua, _("Do not forget to mount the drive!!!\n"));
294    }
295    bnet_sig(sd, BNET_TERMINATE);
296    bnet_close(sd);
297    ua->jcr->store_bsock = NULL;
298
299    return 1;
300 }
301
302 /*
303  * Request SD to send us the slot:barcodes, then wiffle
304  *  through them all labeling them.
305  */
306 static void label_from_barcodes(UAContext *ua)
307 {
308    STORE *store = ua->jcr->store;
309    POOL_DBR pr;
310    MEDIA_DBR mr, omr;
311    vol_list_t *vl, *vol_list = NULL;
312    bool media_record_exists;
313
314    vol_list = get_slot_list_from_SD(ua);
315
316    if (!vol_list) {
317       bsendmsg(ua, _("No Volumes found to label, or no barcodes.\n"));
318       goto bail_out;
319    }
320
321    /* Display list of Volumes and ask if he really wants to proceed */
322    bsendmsg(ua, _("The following Volumes will be labeled:\n"
323                   "Slot  Volume\n"
324                   "==============\n"));
325    for (vl=vol_list; vl; vl=vl->next) {
326       bsendmsg(ua, "%4d  %s\n", vl->Slot, vl->VolName);
327    }
328    if (!get_cmd(ua, _("Do you want to continue? (y/n): ")) ||
329        (ua->cmd[0] != 'y' && ua->cmd[0] != 'Y')) {
330       goto bail_out;
331    }
332    /* Select a pool */
333    memset(&pr, 0, sizeof(pr));
334    if (!select_pool_dbr(ua, &pr)) {
335       goto bail_out;
336    }
337    memset(&omr, 0, sizeof(omr));
338
339    /* Fire off the label requests */
340    for (vl=vol_list; vl; vl=vl->next) {
341
342       memset(&mr, 0, sizeof(mr));
343       bstrncpy(mr.VolumeName, vl->VolName, sizeof(mr.VolumeName));
344       media_record_exists = false;
345       if (db_get_media_record(ua->jcr, ua->db, &mr)) {
346           if (mr.VolBytes != 0) {
347              bsendmsg(ua, _("Media record for Slot %d Volume \"%s\" already exists.\n"), 
348                 vl->Slot, mr.VolumeName);
349              continue;
350           } 
351           media_record_exists = true;
352       }
353       /*
354        * Deal with creating cleaning tape here. Normal tapes created in
355        *  send_label_request() below
356        */
357       if (is_cleaning_tape(ua, &mr, &pr)) {
358          if (media_record_exists) {      /* we update it */
359             mr.VolBytes = 1;
360             if (!db_update_media_record(ua->jcr, ua->db, &mr)) {
361                 bsendmsg(ua, "%s", db_strerror(ua->db));
362             }
363          } else {                        /* create the media record */
364             set_pool_dbr_defaults_in_media_dbr(&mr, &pr);
365             if (db_create_media_record(ua->jcr, ua->db, &mr)) {
366                bsendmsg(ua, _("Catalog record for cleaning tape \"%s\" successfully created.\n"),
367                   mr.VolumeName);
368             } else {
369                bsendmsg(ua, "Catalog error on cleaning tape: %s", db_strerror(ua->db));
370             }
371          }
372          continue;                    /* done, go handle next volume */
373       }
374       bstrncpy(mr.MediaType, store->media_type, sizeof(mr.MediaType));
375       if (ua->jcr->store_bsock) {
376          bnet_sig(ua->jcr->store_bsock, BNET_TERMINATE);
377          bnet_close(ua->jcr->store_bsock);
378          ua->jcr->store_bsock = NULL;
379       }
380       bsendmsg(ua, _("Connecting to Storage daemon %s at %s:%d ...\n"), 
381          store->hdr.name, store->address, store->SDport);
382       if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
383          bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
384          goto bail_out;
385       }
386
387       mr.Slot = vl->Slot;
388       send_label_request(ua, &mr, &omr, &pr, 0, media_record_exists);
389    }
390
391
392 bail_out:
393    /* Free list */
394    for (vl=vol_list; vl; ) {
395       vol_list_t *ovl;
396       free(vl->VolName);
397       ovl = vl;
398       vl = vl->next;
399       free(ovl);
400    }
401
402    if (ua->jcr->store_bsock) {
403       bnet_sig(ua->jcr->store_bsock, BNET_TERMINATE);
404       bnet_close(ua->jcr->store_bsock);
405       ua->jcr->store_bsock = NULL;
406    }
407
408    return;
409 }
410
411 /* 
412  * Check if the Volume name has legal characters
413  * If ua is non-NULL send the message
414  */
415 int is_volume_name_legal(UAContext *ua, char *name)
416 {
417    int len;
418    char *p;
419    char *accept = ":.-_";
420
421    /* Restrict the characters permitted in the Volume name */
422    for (p=name; *p; p++) {
423       if (B_ISALPHA(*p) || B_ISDIGIT(*p) || strchr(accept, (int)(*p))) {
424          continue;
425       }
426       if (ua) {
427          bsendmsg(ua, _("Illegal character \"%c\" in a volume name.\n"), *p);
428       }
429       return 0;
430    }
431    len = strlen(name);
432    if (len >= MAX_NAME_LENGTH) {
433       if (ua) {
434          bsendmsg(ua, _("Volume name too long.\n"));
435       }
436       return 0;
437    }
438    if (len == 0) {
439       if (ua) {
440          bsendmsg(ua, _("Volume name must be at least one character long.\n"));
441       }
442       return 0;
443    }
444    return 1;
445 }
446
447 static int send_label_request(UAContext *ua, MEDIA_DBR *mr, MEDIA_DBR *omr, 
448                               POOL_DBR *pr, int relabel, bool media_record_exists)
449 {
450    BSOCK *sd;
451    char dev_name[MAX_NAME_LENGTH];
452    int ok = FALSE;
453
454    sd = ua->jcr->store_bsock;
455    bstrncpy(dev_name, ua->jcr->store->dev_name, sizeof(dev_name));
456    bash_spaces(dev_name);
457    bash_spaces(mr->VolumeName);
458    bash_spaces(mr->MediaType);
459    bash_spaces(pr->Name);
460    if (relabel) {
461       bash_spaces(omr->VolumeName);
462       bnet_fsend(sd, "relabel %s OldName=%s NewName=%s PoolName=%s MediaType=%s Slot=%d", 
463          dev_name, omr->VolumeName, mr->VolumeName, pr->Name, mr->MediaType, mr->Slot);
464       bsendmsg(ua, _("Sending relabel command from \"%s\" to \"%s\" ...\n"),
465          omr->VolumeName, mr->VolumeName);
466    } else {
467       bnet_fsend(sd, "label %s VolumeName=%s PoolName=%s MediaType=%s Slot=%d", 
468          dev_name, mr->VolumeName, pr->Name, mr->MediaType, mr->Slot);
469       bsendmsg(ua, _("Sending label command for Volume \"%s\" Slot %d ...\n"), 
470          mr->VolumeName, mr->Slot);
471       Dmsg5(200, "label %s VolumeName=%s PoolName=%s MediaType=%s Slot=%d\n", 
472          dev_name, mr->VolumeName, pr->Name, mr->MediaType, mr->Slot);
473    }
474
475    while (bnet_recv(sd) >= 0) {
476       bsendmsg(ua, "%s", sd->msg);
477       if (strncmp(sd->msg, "3000 OK label.", 14) == 0) {
478          ok = TRUE;
479       } 
480    }
481    unbash_spaces(mr->VolumeName);
482    unbash_spaces(mr->MediaType);
483    unbash_spaces(pr->Name);
484    mr->LabelDate = time(NULL);
485    if (ok) {
486       if (media_record_exists) {      /* we update it */
487          mr->VolBytes = 1;
488          if (!db_update_media_record(ua->jcr, ua->db, mr)) {
489              bsendmsg(ua, "%s", db_strerror(ua->db));
490              ok = FALSE;
491          }
492       } else {                        /* create the media record */
493          set_pool_dbr_defaults_in_media_dbr(mr, pr);
494          mr->VolBytes = 1;               /* flag indicating Volume labeled */
495          if (db_create_media_record(ua->jcr, ua->db, mr)) {
496             bsendmsg(ua, _("Catalog record for Volume \"%s\", Slot %d  successfully created.\n"),
497             mr->VolumeName, mr->Slot);
498          } else {
499             bsendmsg(ua, "%s", db_strerror(ua->db));
500             ok = FALSE;
501          }
502       }
503    } else {
504       bsendmsg(ua, _("Label command failed.\n"));
505    }
506    return ok;
507 }
508
509 static vol_list_t *get_slot_list_from_SD(UAContext *ua)
510 {
511    STORE *store = ua->jcr->store;
512    char dev_name[MAX_NAME_LENGTH];
513    BSOCK *sd;
514    vol_list_t *vl;
515    vol_list_t *vol_list = NULL;
516
517
518    bsendmsg(ua, _("Connecting to Storage daemon %s at %s:%d ...\n"), 
519       store->hdr.name, store->address, store->SDport);
520    if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
521       bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
522       return NULL;
523    }
524    sd  = ua->jcr->store_bsock;
525
526    bstrncpy(dev_name, store->dev_name, sizeof(dev_name));
527    bash_spaces(dev_name);
528    /* Ask for autochanger list of volumes */
529    bnet_fsend(sd, _("autochanger list %s \n"), dev_name);
530
531    /* Read and organize list of Volumes */
532    while (bnet_recv(sd) >= 0) {
533       char *p;
534       int Slot;
535       strip_trailing_junk(sd->msg);
536
537       /* Check for returned SD messages */
538       if (sd->msg[0] == '3'     && B_ISDIGIT(sd->msg[1]) &&
539           B_ISDIGIT(sd->msg[2]) && B_ISDIGIT(sd->msg[3]) &&
540           sd->msg[4] == ' ') {
541          bsendmsg(ua, "%s\n", sd->msg);   /* pass them on to user */
542          continue;
543       }
544
545       /* Validate Slot:Barcode */
546       p = strchr(sd->msg, ':');
547       if (p && strlen(p) > 1) {
548          *p++ = 0;
549          if (!is_an_integer(sd->msg)) {
550             continue;
551          }
552       } else {
553          continue;
554       }
555       Slot = atoi(sd->msg);
556       if (Slot <= 0 || !is_volume_name_legal(ua, p)) {
557          continue;
558       }
559
560       /* Add Slot and VolumeName to list */
561       vl = (vol_list_t *)malloc(sizeof(vol_list_t));
562       vl->Slot = Slot;
563       vl->VolName = bstrdup(p);
564       if (!vol_list) {
565          vl->next = vol_list;
566          vol_list = vl;
567       } else {
568          /* Add new entry to end of list */
569          for (vol_list_t *tvl=vol_list; tvl; tvl=tvl->next) {
570             if (!tvl->next) {
571                tvl->next = vl;
572                vl->next = NULL;
573                break;
574             }
575          }
576       }
577    }
578    return vol_list;
579 }
580
581 /*
582  * Check if this is a cleaning tape by comparing the Volume name
583  *  with the Cleaning Prefix. If they match, this is a cleaning 
584  *  tape.
585  */
586 static int is_cleaning_tape(UAContext *ua, MEDIA_DBR *mr, POOL_DBR *pr)
587 {
588    if (!ua->jcr->pool) {
589       /* Find Pool resource */
590       ua->jcr->pool = (POOL *)GetResWithName(R_POOL, pr->Name);
591       if (!ua->jcr->pool) {
592          bsendmsg(ua, _("Pool %s resource not found!\n"), pr->Name);
593          return 1;
594       }
595    }
596    if (ua->jcr->pool->cleaning_prefix == NULL) {
597       return 0;
598    }
599    Dmsg4(200, "CLNprefix=%s: Vol=%s: len=%d strncmp=%d\n",
600       ua->jcr->pool->cleaning_prefix, mr->VolumeName,
601       strlen(ua->jcr->pool->cleaning_prefix), 
602       strncmp(mr->VolumeName, ua->jcr->pool->cleaning_prefix,
603                   strlen(ua->jcr->pool->cleaning_prefix)));
604    return strncmp(mr->VolumeName, ua->jcr->pool->cleaning_prefix,
605                   strlen(ua->jcr->pool->cleaning_prefix)) == 0;
606 }