]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/label.c
Update doc, default working directory bscan
[bacula/bacula] / bacula / src / stored / label.c
1 /*
2  *
3  *  label.c  Bacula routines to handle labels 
4  *
5  *   Kern Sibbald, MM
6  *                            
7  *
8  *   Version $Id$
9  */
10 /*
11    Copyright (C) 2000, 2001, 2002 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"                   /* pull in global headers */
31 #include "stored.h"                   /* pull in Storage Deamon headers */
32
33 /* Forward referenced functions */
34 static int create_volume_label(DEVICE *dev, char *VolName);
35 static void create_volume_label_record(JCR *jcr, DEVICE *dev, DEV_RECORD *rec);
36
37 extern char my_name[];
38 extern int debug_level;
39
40 /*
41  * Read the volume label
42  *
43  *  If jcr->VolumeName == NULL, we accept any Bacula Volume
44  *  If jcr->VolumeName[0] == 0, we accept any Bacula Volume
45  *  otherwise jcr->VolumeName must match the Volume.
46  *
47  *  If VolName given, ensure that it matches   
48  *
49  *  Returns VOL_  code as defined in record.h
50  *    VOL_NOT_READ
51  *    VOL_OK
52  *    VOL_NO_LABEL
53  *    VOL_IO_ERROR
54  *    VOL_NAME_ERROR
55  *    VOL_CREATE_ERROR
56  *    VOL_VERSION_ERROR
57  *    VOL_LABEL_ERROR
58  */  
59 int read_dev_volume_label(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
60 {
61    char *VolName = jcr->VolumeName;
62    DEV_RECORD *record;
63    int ok = 0;
64
65    Dmsg2(30, "Enter read_volume_label device=%s vol=%s\n", 
66       dev_name(dev), VolName);
67
68    if (dev->state & ST_LABEL) {       /* did we already read label? */
69       /* Compare Volume Names */
70       if (VolName && *VolName && strcmp(dev->VolHdr.VolName, VolName) != 0) {
71          Mmsg(&jcr->errmsg, _("Volume name mismatch on device %s: Wanted %s got %s\n"),
72             dev_name(dev), VolName, dev->VolHdr.VolName);
73          /*
74           * Cancel Job if too many label errors
75           *  => we are in a loop
76           */
77          if (jcr->label_errors > 100) {
78             jcr->JobStatus = JS_Cancelled;
79             Jmsg(jcr, M_FATAL, 0, "%s", jcr->errmsg);
80          }
81          return jcr->label_status = VOL_NAME_ERROR;
82       }
83       Dmsg0(30, "Leave read_volume_label() VOL_OK\n");
84       return jcr->label_status = VOL_OK;       /* label already read */
85    }
86
87    dev->state &= ~(ST_LABEL|ST_APPEND|ST_READ);  /* set no label, no append */
88
89    if (!rewind_dev(dev)) {
90       Mmsg(&jcr->errmsg, _("Couldn't rewind device %s ERR=%s\n"), dev_name(dev),
91          strerror_dev(dev));
92       return jcr->label_status = VOL_IO_ERROR;
93    }
94    strcpy(dev->VolHdr.Id, "**error**");
95
96    /* Read the device label block */
97    record = new_record();
98    Dmsg0(90, "Big if statement in read_volume_label\n");
99    if (!read_block_from_dev(dev, block)) { 
100       Mmsg(&jcr->errmsg, _("Volume on %s is not a Bacula labeled Volume, \
101 because:\n   %s"), dev_name(dev), strerror_dev(dev));
102    } else if (!read_record_from_block(block, record)) {
103       Mmsg(&jcr->errmsg, _("Could not read Volume label from block.\n"));
104    } else if (!unser_volume_label(dev, record)) {
105       Mmsg(&jcr->errmsg, _("Could not unserialize Volume label: %s\n"),
106          strerror_dev(dev));
107    } else if (strcmp(dev->VolHdr.Id, BaculaId) != 0 && 
108               strcmp(dev->VolHdr.Id, OldBaculaId) != 0) {
109       Mmsg(&jcr->errmsg, _("Volume Header Id bad: %s\n"), dev->VolHdr.Id);
110    } else {
111       ok = 1;
112    }
113    if (!ok) {
114       free_record(record);
115       empty_block(block);
116       rewind_dev(dev);
117       return jcr->label_status = VOL_NO_LABEL;
118    }
119
120    free_record(record);
121    empty_block(block);
122    rewind_dev(dev);
123
124    if (dev->VolHdr.VerNum != BaculaTapeVersion && 
125        dev->VolHdr.VerNum != OldCompatibleBaculaTapeVersion1 &&  
126        dev->VolHdr.VerNum != OldCompatibleBaculaTapeVersion2) {
127       Mmsg(&jcr->errmsg, _("Volume on %s has wrong Bacula version. Wanted %d got %d\n"),
128          dev_name(dev), BaculaTapeVersion, dev->VolHdr.VerNum);
129       return jcr->label_status = VOL_VERSION_ERROR;
130    }
131
132    /* Compare Volume Names */
133    Dmsg2(30, "Compare Vol names: VolName=%s hdr=%s\n", VolName?VolName:"*", dev->VolHdr.VolName);
134    if (VolName && *VolName && strcmp(dev->VolHdr.VolName, VolName) != 0) {
135       Mmsg(&jcr->errmsg, _("Volume name mismatch. Wanted %s got %s\n"),
136          VolName, dev->VolHdr.VolName);
137       /*
138        * Cancel Job if too many label errors
139        *  => we are in a loop
140        */
141       if (jcr->label_errors > 100) {
142          jcr->JobStatus = JS_Cancelled;
143          Jmsg(jcr, M_FATAL, 0, "%s", jcr->errmsg);
144       }
145       return jcr->label_status = VOL_NAME_ERROR;
146    }
147    Dmsg1(30, "Copy vol_name=%s\n", dev->VolHdr.VolName);
148
149    /* We are looking for either an unused Bacula tape (PRE_LABEL) or
150     * a Bacula volume label (VOL_LABEL)
151     */
152    if (dev->VolHdr.LabelType != PRE_LABEL && dev->VolHdr.LabelType != VOL_LABEL) {
153       Mmsg(&jcr->errmsg, _("Volume on %s has bad Bacula label type: %x\n"), 
154           dev_name(dev), dev->VolHdr.LabelType);
155       return jcr->label_status = VOL_LABEL_ERROR;
156    }
157
158    dev->state |= ST_LABEL;            /* set has Bacula label */
159    if (debug_level >= 10) {
160       dump_volume_label(dev);
161    }
162    Dmsg0(30, "Leave read_volume_label() VOL_OK\n");
163    return jcr->label_status = VOL_OK;
164 }
165
166 /*  unser_volume_label 
167  *  
168  * Unserialize the Volume label into the device Volume_Label
169  * structure.
170  *
171  * Assumes that the record is already read.
172  *
173  * Returns: 0 on error
174  *          1 on success
175 */
176
177 int unser_volume_label(DEVICE *dev, DEV_RECORD *rec)
178 {
179    ser_declare;
180
181    if (rec->FileIndex != VOL_LABEL && rec->FileIndex != PRE_LABEL) {
182       Mmsg3(&dev->errmsg, _("Expecting Volume Label, got FI=%s Stream=%s len=%d\n"), 
183               FI_to_ascii(rec->FileIndex), 
184               stream_to_ascii(rec->Stream, rec->FileIndex),
185               rec->data_len);
186       return 0;
187    }
188
189    dev->VolHdr.LabelType = rec->FileIndex;
190    dev->VolHdr.LabelSize = rec->data_len;
191
192
193   /* Unserialize the record into the Volume Header */
194   ser_begin(rec->data, SER_LENGTH_Volume_Label);
195 #define Fld(x)  (dev->VolHdr.x)
196    unser_string(Fld(Id));
197
198    unser_uint32(Fld(VerNum));
199
200    if (Fld(VerNum) >= 11) {
201       unser_btime(Fld(label_btime));
202       unser_btime(Fld(write_btime));
203    } else { /* old way */ 
204    unser_float64(Fld(label_date));
205    unser_float64(Fld(label_time));
206    }
207    unser_float64(Fld(write_date));    /* Unused with VerNum >= 11 */
208    unser_float64(Fld(write_time));    /* Unused with VerNum >= 11 */
209
210    unser_string(Fld(VolName));
211    unser_string(Fld(PrevVolName));
212    unser_string(Fld(PoolName));
213    unser_string(Fld(PoolType));
214    unser_string(Fld(MediaType));
215
216    unser_string(Fld(HostName));
217    unser_string(Fld(LabelProg));
218    unser_string(Fld(ProgVersion));
219    unser_string(Fld(ProgDate));
220
221    ser_end(rec->data, SER_LENGTH_Volume_Label);
222 #undef Fld
223    Dmsg0(90, "ser_read_vol\n");
224    if (debug_level >= 90) {
225       dump_volume_label(dev);      
226    }
227    return 1;
228 }
229
230 /*
231  * Put a volume label into the block
232  *
233  *  Returns: 0 on failure
234  *           1 on success
235  */
236 int write_volume_label_to_block(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
237 {
238    DEV_RECORD rec;
239
240    Dmsg0(20, "write Label in write_volume_label_to_block()\n");
241    memset(&rec, 0, sizeof(rec));
242    rec.data = get_memory(SER_LENGTH_Volume_Label);
243
244    create_volume_label_record(jcr, dev, &rec);
245
246    empty_block(block);                /* Volume label always at beginning */
247    if (!write_record_to_block(block, &rec)) {
248       free_pool_memory(rec.data);
249       Jmsg1(jcr, M_FATAL, 0, _("Cannot write Volume label to block for device %s\n"),
250          dev_name(dev));
251       return 0;
252    } else {
253       Dmsg1(90, "Wrote label of %d bytes to block\n", rec.data_len);
254    }
255    free_pool_memory(rec.data);
256    return 1;
257 }
258
259 /* 
260  *  create_volume_label_record
261  *   Serialize label (from dev->VolHdr structure) into device record.
262  *   Assumes that the dev->VolHdr structure is properly 
263  *   initialized.
264 */
265 static void create_volume_label_record(JCR *jcr, DEVICE *dev, DEV_RECORD *rec)
266 {
267    ser_declare;
268    struct date_time dt;
269
270    /* Serialize the label into the device record. */
271
272    ser_begin(rec->data, SER_LENGTH_Volume_Label);
273 #define Fld(x)  (dev->VolHdr.x)
274    ser_string(Fld(Id));
275
276    ser_uint32(Fld(VerNum));
277
278    if (Fld(VerNum >= 11)) {
279       ser_btime(Fld(label_btime));
280       Fld(write_btime) = get_current_btime();
281       ser_btime(Fld(write_btime));
282       Fld(write_date) = 0;
283       Fld(write_time) = 0;
284    } else {
285       /* OLD WAY DEPRECATED */
286       ser_float64(Fld(label_date));
287       ser_float64(Fld(label_time));
288       get_current_time(&dt);
289       Fld(write_date) = dt.julian_day_number;
290       Fld(write_time) = dt.julian_day_fraction;
291    }
292    ser_float64(Fld(write_date));   /* 0 if VerNum >= 11 */
293    ser_float64(Fld(write_time));   /* 0  if VerNum >= 11 */
294
295    ser_string(Fld(VolName));
296    ser_string(Fld(PrevVolName));
297    ser_string(Fld(PoolName));
298    ser_string(Fld(PoolType));
299    ser_string(Fld(MediaType));
300
301    ser_string(Fld(HostName));
302    ser_string(Fld(LabelProg));
303    ser_string(Fld(ProgVersion));
304    ser_string(Fld(ProgDate));
305
306    ser_end(rec->data, SER_LENGTH_Volume_Label);
307    rec->data_len = ser_length(rec->data);
308    rec->FileIndex = Fld(LabelType);
309    rec->VolSessionId = jcr->VolSessionId;
310    rec->VolSessionTime = jcr->VolSessionTime;
311    rec->Stream = jcr->NumVolumes;
312    Dmsg2(100, "Created Vol label rec: FI=%s len=%d\n", FI_to_ascii(rec->FileIndex),
313       rec->data_len);
314 #undef Fld
315 }     
316
317
318 /*
319  * Create a volume label in memory
320  *  Returns: 0 on error
321  *           1 on success
322  */
323 static int create_volume_label(DEVICE *dev, char *VolName)
324 {
325    struct date_time dt;
326    DEVRES *device = (DEVRES *)dev->device;
327
328    Dmsg0(90, "Start create_volume_label()\n");
329
330    ASSERT(dev != NULL);
331
332    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
333
334    /* ***FIXME*** we really need to get the volume name,    
335     * pool name, and pool type from the database.
336     * We also need to pickup the MediaType.
337     */
338    strcpy(dev->VolHdr.Id, BaculaId);
339    dev->VolHdr.VerNum = BaculaTapeVersion;
340    dev->VolHdr.LabelType = PRE_LABEL;  /* Mark tape as unused */
341    strcpy(dev->VolHdr.VolName, VolName);
342    strcpy(dev->VolHdr.PoolName, "Default");
343    strcpy(dev->VolHdr.MediaType, device->media_type);
344    strcpy(dev->VolHdr.PoolType, "Backup");
345
346    /* Put label time/date in header */
347    if (BaculaTapeVersion >= 11) {
348       dev->VolHdr.label_btime = get_current_btime();
349       dev->VolHdr.label_date = 0;
350       dev->VolHdr.label_time = 0;
351    } else {
352       /* OLD WAY DEPRECATED */
353       get_current_time(&dt);
354       dev->VolHdr.label_date = dt.julian_day_number;
355       dev->VolHdr.label_time = dt.julian_day_fraction;
356    }
357
358    if (gethostname(dev->VolHdr.HostName, sizeof(dev->VolHdr.HostName)) != 0) {
359       dev->VolHdr.HostName[0] = 0;
360    }
361    bstrncpy(dev->VolHdr.LabelProg, my_name, sizeof(dev->VolHdr.LabelProg));
362    sprintf(dev->VolHdr.ProgVersion, "Ver. %s %s", VERSION, DATE);
363    sprintf(dev->VolHdr.ProgDate, "Build %s %s", __DATE__, __TIME__);
364    dev->state |= ST_LABEL;            /* set has Bacula label */
365    if (debug_level >= 90) {
366       dump_volume_label(dev);
367    }
368    return 1;
369 }
370
371 /*
372  * Write a Volume Label
373  *  !!! Note, this is ONLY used for writing
374  *            a fresh volume label.  Any data
375  *            after the label will be destroyed,
376  *            in fact, we write the label 5 times !!!!
377  * 
378  *  This routine expects that open_device() was previously called.
379  *
380  *  This routine should be used only when labeling a blank tape.
381  */
382 int write_volume_label_to_dev(JCR *jcr, DEVRES *device, char *VolName, char *PoolName)
383 {
384    DEVICE *dev = device->dev;
385    DEV_RECORD rec;   
386    DEV_BLOCK *block;
387    int stat = 1;
388
389
390    Dmsg0(99, "write_volume_label()\n");
391    if (!create_volume_label(dev, VolName)) {
392       return 0;
393    }
394    strcpy(dev->VolHdr.MediaType, device->media_type);
395    bstrncpy(dev->VolHdr.VolName, VolName, sizeof(dev->VolHdr.VolName));
396    bstrncpy(dev->VolHdr.PoolName, PoolName, sizeof(dev->VolHdr.PoolName));
397
398    if (!rewind_dev(dev)) {
399       Dmsg2(30, "Bad status on %s from rewind. ERR=%s\n", dev_name(dev), strerror_dev(dev));
400       return 0;
401    }
402
403    block = new_block(dev);
404    memset(&rec, 0, sizeof(rec));
405    rec.data = get_memory(SER_LENGTH_Volume_Label);
406    create_volume_label_record(jcr, dev, &rec);
407    rec.Stream = 0;
408
409    if (!write_record_to_block(block, &rec)) {
410       Dmsg2(30, "Bad Label write on %s. ERR=%s\n", dev_name(dev), strerror_dev(dev));
411       free_block(block);
412       free_pool_memory(rec.data);
413       return 0;
414    } else {
415       Dmsg2(30, "Wrote label of %d bytes to %s\n", rec.data_len, dev_name(dev));
416    }
417    free_pool_memory(rec.data);
418       
419    Dmsg0(99, "Call write_block_to_device()\n");
420    if (!write_block_to_dev(jcr, dev, block)) {
421       Dmsg2(30, "Bad Label write on %s. ERR=%s\n", dev_name(dev), strerror_dev(dev));
422       stat = 9;
423    }
424    Dmsg0(99, " Wrote block to device\n");
425      
426    flush_dev(dev);
427    weof_dev(dev, 1);
428    dev->state |= ST_LABEL;
429
430    if (debug_level >= 20)  {
431       dump_volume_label(dev);
432    }
433    free_block(block);
434    return stat;
435 }     
436
437
438 /*
439  * Create session label
440  *  The pool memory must be released by the calling program
441  */
442 void create_session_label(JCR *jcr, DEV_RECORD *rec, int label)
443 {
444    ser_declare;
445    struct date_time dt;
446
447    rec->sync           = 1;         /* wait for completion */
448    rec->VolSessionId   = jcr->VolSessionId;
449    rec->VolSessionTime = jcr->VolSessionTime;
450    rec->Stream         = jcr->JobId;
451
452    ser_begin(rec->data, SER_LENGTH_Session_Label);
453    ser_string(BaculaId);
454    ser_uint32(BaculaTapeVersion);
455
456    ser_uint32(jcr->JobId);
457
458    if (BaculaTapeVersion >= 11) {
459       ser_btime(get_current_btime());
460       ser_float64(0);
461    } else {
462       /* OLD WAY DEPRECATED */
463       get_current_time(&dt);
464       ser_float64(dt.julian_day_number);
465       ser_float64(dt.julian_day_fraction);
466    }
467
468    ser_string(jcr->pool_name);
469    ser_string(jcr->pool_type);
470    ser_string(jcr->job_name);         /* base Job name */
471    ser_string(jcr->client_name);
472
473    /* Added in VerNum 10 */
474    ser_string(jcr->Job);              /* Unique name of this Job */
475    ser_string(jcr->fileset_name);
476    ser_uint32(jcr->JobType);
477    ser_uint32(jcr->JobLevel);
478    if (BaculaTapeVersion >= 11) {
479       ser_string(jcr->fileset_md5);
480    }
481
482    if (label == EOS_LABEL) {
483       ser_uint32(jcr->JobFiles);
484       ser_uint64(jcr->JobBytes);
485       ser_uint32(jcr->StartBlock);
486       ser_uint32(jcr->EndBlock);
487       ser_uint32(jcr->StartFile);
488       ser_uint32(jcr->EndFile);
489       ser_uint32(jcr->JobErrors);
490
491       /* Added in VerNum 11 */
492       ser_uint32(jcr->JobStatus);
493    }
494    ser_end(rec->data, SER_LENGTH_Session_Label);
495    rec->data_len = ser_length(rec->data);
496 }
497
498 /* Write session label
499  *  Returns: 0 on failure
500  *           1 on success 
501  */
502 int write_session_label(JCR *jcr, DEV_BLOCK *block, int label)
503 {
504    DEVICE *dev = jcr->device->dev;
505    DEV_RECORD *rec;
506
507    rec = new_record();
508    Dmsg1(90, "session_label record=%x\n", rec);
509    switch (label) {
510       case SOS_LABEL:
511          if (dev->state & ST_TAPE) {
512             jcr->StartBlock = dev->block_num;
513             jcr->StartFile  = dev->file;
514          } else {
515             jcr->StartBlock = (uint32_t)dev->file_addr;
516             jcr->StartFile = (uint32_t)(dev->file_addr >> 32);
517          }
518          break;
519       case EOS_LABEL:
520          if (dev->state & ST_TAPE) {
521             jcr->EndBlock = dev->EndBlock;
522             jcr->EndFile  = dev->EndFile;
523          } else {
524             jcr->EndBlock = (uint32_t)dev->file_addr;
525             jcr->EndFile = (uint32_t)(dev->file_addr >> 32);
526          }
527          break;
528       default:
529          Jmsg1(jcr, M_ABORT, 0, _("Bad session label = %d\n"), label);
530          break;
531    }
532    create_session_label(jcr, rec, label);
533    rec->FileIndex = label;
534
535    /* 
536     * We guarantee that the session record can totally fit
537     *  into a block. If not, write the block, and put it in
538     *  the next block. Having the sesssion record totally in
539     *  one block makes reading them much easier (no need to
540     *  read the next block).
541     */
542    if (!can_write_record_to_block(block, rec)) {
543       Dmsg0(100, "Cannot write session label to block.\n");
544       if (!write_block_to_device(jcr, dev, block)) {
545          Dmsg0(90, "Got session label write_block_to_dev error.\n");
546          Jmsg(jcr, M_FATAL, 0, _("Error writing Session label to %s: %s\n"), 
547                            dev_vol_name(dev), strerror(errno));
548          free_record(rec);
549          return 0;
550       }
551    }
552    if (!write_record_to_block(block, rec)) {
553       Jmsg(jcr, M_FATAL, 0, _("Error writing Session label to %s: %s\n"), 
554                         dev_vol_name(dev), strerror(errno));
555       free_record(rec);
556       return 0;
557    }
558
559    Dmsg6(20, "Write sesson_label record JobId=%d FI=%s SessId=%d Strm=%s len=%d\n\
560 remainder=%d\n", jcr->JobId,
561       FI_to_ascii(rec->FileIndex), rec->VolSessionId, 
562       stream_to_ascii(rec->Stream, rec->FileIndex), rec->data_len,
563       rec->remainder);
564
565    free_record(rec);
566    Dmsg2(20, "Leave write_session_label Block=%d File=%d\n", 
567       dev->block_num, dev->file);
568    return 1;
569 }
570
571 void dump_volume_label(DEVICE *dev)
572 {
573    int dbl = debug_level;
574    uint32_t File;
575    char *LabelType, buf[30];
576    struct tm tm;
577    struct date_time dt;
578
579    debug_level = 1;
580    File = dev->file;
581    switch (dev->VolHdr.LabelType) {
582       case PRE_LABEL:
583          LabelType = "PRE_LABEL";
584          break;
585       case VOL_LABEL:
586          LabelType = "VOL_LABEL";
587          break;
588       case EOM_LABEL:
589          LabelType = "EOM_LABEL";
590          break;
591       case SOS_LABEL:
592          LabelType = "SOS_LABEL";
593          break;
594       case EOS_LABEL:
595          LabelType = "EOS_LABEL";
596          break;
597       case EOT_LABEL:
598          goto bail_out;
599       default:
600          LabelType = buf;
601          sprintf(buf, "Unknown %d", dev->VolHdr.LabelType);
602          break;
603    }
604               
605    
606    Pmsg11(-1, "\nVolume Label:\n\
607 Id                : %s\
608 VerNo             : %d\n\
609 VolName           : %s\n\
610 PrevVolName       : %s\n\
611 VolFile           : %d\n\
612 LabelType         : %s\n\
613 LabelSize         : %d\n\
614 PoolName          : %s\n\
615 MediaType         : %s\n\
616 PoolType          : %s\n\
617 HostName          : %s\n\
618 ",
619              dev->VolHdr.Id, dev->VolHdr.VerNum,
620              dev->VolHdr.VolName, dev->VolHdr.PrevVolName,
621              File, LabelType, dev->VolHdr.LabelSize, 
622              dev->VolHdr.PoolName, dev->VolHdr.MediaType, 
623              dev->VolHdr.PoolType, dev->VolHdr.HostName);
624
625    if (dev->VolHdr.VerNum >= 11) {
626       char dt[50];
627       bstrftime(dt, sizeof(dt), btime_to_unix(dev->VolHdr.label_btime));
628       Pmsg1(-1, "Date label written: %s\n", dt);
629    } else {
630    dt.julian_day_number   = dev->VolHdr.label_date;
631    dt.julian_day_fraction = dev->VolHdr.label_time;
632    tm_decode(&dt, &tm);
633    Pmsg5(-1, "\
634 Date label written: %04d-%02d-%02d at %02d:%02d\n", 
635       tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday, tm.tm_hour, tm.tm_min);
636    }
637
638 bail_out:
639    debug_level = dbl;
640 }
641
642 int unser_session_label(SESSION_LABEL *label, DEV_RECORD *rec) 
643 {
644    ser_declare;
645
646    unser_begin(rec->data, SER_LENGTH_Session_Label);
647    unser_string(label->Id);
648    unser_uint32(label->VerNum);
649    unser_uint32(label->JobId);
650    if (label->VerNum >= 11) {
651       unser_btime(label->write_btime);
652    } else {
653    unser_float64(label->write_date);
654    }
655    unser_float64(label->write_time);
656    unser_string(label->PoolName);
657    unser_string(label->PoolType);
658    unser_string(label->JobName);
659    unser_string(label->ClientName);
660    if (label->VerNum >= 10) {
661       unser_string(label->Job);          /* Unique name of this Job */
662       unser_string(label->FileSetName);
663       unser_uint32(label->JobType);
664       unser_uint32(label->JobLevel);
665    }
666    if (label->VerNum >= 11) {
667       unser_string(label->FileSetMD5);
668    } else {
669       label->FileSetMD5[0] = 0;
670    }
671    if (rec->FileIndex == EOS_LABEL) {
672       unser_uint32(label->JobFiles);
673       unser_uint64(label->JobBytes);
674       unser_uint32(label->StartBlock);
675       unser_uint32(label->EndBlock);
676       unser_uint32(label->StartFile);
677       unser_uint32(label->EndFile);
678       unser_uint32(label->JobErrors);
679       if (label->VerNum >= 11) {
680          unser_uint32(label->JobStatus);
681       } else {
682          label->JobStatus = JS_Terminated; /* kludge */
683       }
684    }      
685    return 1;
686 }
687
688
689 static void dump_session_label(DEV_RECORD *rec, char *type)
690 {
691    int dbl;
692    struct date_time dt;
693    struct tm tm;
694    SESSION_LABEL label;
695    char ec1[30], ec2[30], ec3[30], ec4[30], ec5[30], ec6[30], ec7[30];
696
697    unser_session_label(&label, rec);
698    dbl = debug_level;
699    debug_level = 1;
700    Pmsg7(-1, "\n%s Record:\n\
701 JobId             : %d\n\
702 VerNum            : %d\n\
703 PoolName          : %s\n\
704 PoolType          : %s\n\
705 JobName           : %s\n\
706 ClientName        : %s\n\
707 ",    type, label.JobId, label.VerNum,
708       label.PoolName, label.PoolType,
709       label.JobName, label.ClientName);
710
711    if (label.VerNum >= 10) {
712       Pmsg4(-1, "\
713 Job (unique name) : %s\n\
714 FileSet           : %s\n\
715 JobType           : %c\n\
716 JobLevel          : %c\n\
717 ", label.Job, label.FileSetName, label.JobType, label.JobLevel);
718    }
719
720    if (rec->FileIndex == EOS_LABEL) {
721       Pmsg8(-1, "\
722 JobFiles          : %s\n\
723 JobBytes          : %s\n\
724 StartBlock        : %s\n\
725 EndBlock          : %s\n\
726 StartFile         : %s\n\
727 EndFile           : %s\n\
728 JobErrors         : %s\n\
729 JobStatus         : %c\n\
730 ",
731          edit_uint64_with_commas(label.JobFiles, ec1),
732          edit_uint64_with_commas(label.JobBytes, ec2),
733          edit_uint64_with_commas(label.StartBlock, ec3),
734          edit_uint64_with_commas(label.EndBlock, ec4),
735          edit_uint64_with_commas(label.StartFile, ec5),
736          edit_uint64_with_commas(label.EndFile, ec6),
737          edit_uint64_with_commas(label.JobErrors, ec7), 
738          label.JobStatus);
739    }
740    if (label.VerNum >= 11) {
741       char dt[50];
742       bstrftime(dt, sizeof(dt), btime_to_unix(label.write_btime));
743       Pmsg1(-1, _("Date written      : %s\n"), dt);
744    } else {
745    dt.julian_day_number   = label.write_date;
746    dt.julian_day_fraction = label.write_time;
747    tm_decode(&dt, &tm);
748       Pmsg5(-1, _("\
749 Date written      : %04d-%02d-%02d at %02d:%02d\n"),
750       tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday, tm.tm_hour, tm.tm_min);
751    }
752
753    debug_level = dbl;
754 }
755
756 void dump_label_record(DEVICE *dev, DEV_RECORD *rec, int verbose)
757 {
758    char *type;
759    int dbl;
760
761    dbl = debug_level;
762    debug_level = 1;
763    switch (rec->FileIndex) {
764       case PRE_LABEL:
765          type = _("Fresh Volume");   
766          break;
767       case VOL_LABEL:
768          type = _("Volume");
769          break;
770       case SOS_LABEL:
771          type = _("Begin Session");
772          break;
773       case EOS_LABEL:
774          type = _("End Session");
775          break;
776       case EOM_LABEL:
777          type = _("End of Media");
778          break;
779       case EOT_LABEL:
780          type = ("End of Tape");
781          break;
782       default:
783          type = _("Unknown");
784          break;
785    }
786    if (verbose) {
787       switch (rec->FileIndex) {
788          case PRE_LABEL:
789          case VOL_LABEL:
790             unser_volume_label(dev, rec);
791             dump_volume_label(dev);
792             break;
793          case SOS_LABEL:
794             dump_session_label(rec, type);
795             break;
796          case EOS_LABEL:
797             dump_session_label(rec, type);
798             break;
799          case EOM_LABEL:
800             Pmsg5(-1, "%s Record: SessId=%d SessTime=%d JobId=%d DataLen=%d\n",
801                type, rec->VolSessionId, rec->VolSessionTime, rec->Stream, rec->data_len);
802             break;
803          case EOT_LABEL:
804             Pmsg0(-1, _("End of physical tape.\n"));
805             break;
806          default:
807             Pmsg5(-1, "%s Record: SessId=%d SessTime=%d JobId=%d DataLen=%d\n",
808                type, rec->VolSessionId, rec->VolSessionTime, rec->Stream, rec->data_len);
809             break;
810       }
811    } else {
812       switch (rec->FileIndex) {
813          case SOS_LABEL:
814          case EOS_LABEL:
815             SESSION_LABEL label;
816             unser_session_label(&label, rec);
817             Pmsg6(-1, "%s Record: SessId=%d SessTime=%d JobId=%d Level=%c \
818 Type=%c\n",
819                type, rec->VolSessionId, rec->VolSessionTime, rec->Stream, 
820                label.JobLevel, label.JobType);
821             break;
822          case EOM_LABEL:
823          case PRE_LABEL:
824          case VOL_LABEL:
825          default:
826             Pmsg5(-1, "%s Record: SessId=%d SessTime=%d JobId=%d DataLen=%d\n",
827          type, rec->VolSessionId, rec->VolSessionTime, rec->Stream, rec->data_len);
828             break;
829          case EOT_LABEL:
830             break;
831       }
832    }
833    debug_level = dbl;
834 }