]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/bscan.c
For symmetry, add this file. At present, all it does is update the version table.
[bacula/bacula] / bacula / src / stored / bscan.c
index a606979e3070b28d75455cc8c47fec955a8e72ff..d0d406c7a2582c4d230b636a2e8c854c91dc5344 100644 (file)
@@ -36,7 +36,7 @@
 
 /* Forward referenced functions */
 static void do_scan(void);
-static void record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec);
+static int record_cb(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec);
 static int  create_file_attributes_record(B_DB *db, JCR *mjcr, 
                               char *fname, char *lname, int type,
                               char *ap, DEV_RECORD *rec);
@@ -55,18 +55,18 @@ static int update_SIG_record(B_DB *db, char *SIGbuf, DEV_RECORD *rec, int type);
 
 /* Global variables */
 STORES *me;
+#ifdef HAVE_CYGWIN
+int win32_client = 1;
+#else
+int win32_client = 0;
+#endif
+
 
 /* Local variables */
 static DEVICE *dev = NULL;
 static B_DB *db;
 static JCR *bjcr;                    /* jcr for bscan */
 static BSR *bsr = NULL;
-static struct stat statp;
-static int type;
-static long record_file_index;
-static POOLMEM *fname;                      /* original file name */
-static POOLMEM *ofile;                      /* output name with prefix */
-static POOLMEM *lname;                      /* link name */
 static MEDIA_DBR mr;
 static POOL_DBR pr;
 static JOB_DBR jr;
@@ -76,12 +76,14 @@ static ATTR_DBR ar;
 static FILE_DBR fr;
 static SESSION_LABEL label;
 static SESSION_LABEL elabel;
+static ATTR *attr;
 
 static time_t lasttime = 0;
 
 static char *db_name = "bacula";
 static char *db_user = "bacula";
 static char *db_password = "";
+static char *db_host = NULL;
 static char *wd = NULL;
 static int update_db = 0;
 static int update_vol_info = 0;
@@ -100,16 +102,17 @@ static void usage()
 "Usage: bscan [-d debug_level] <bacula-archive>\n"
 "       -b bootstrap      specify a bootstrap file\n"
 "       -c <file>         specify configuration file\n"
-"       -dnn              set debug level to nn\n"
+"       -d <nn>           set debug level to nn\n"
 "       -m                update media info in database\n"
-"       -n name           specify the database name (default bacula)\n"
-"       -u user           specify database user name (default bacula)\n"
-"       -p password       specify database password (default none)\n"
+"       -n <name>         specify the database name (default bacula)\n"
+"       -u <user>         specify database user name (default bacula)\n"
+"       -p <password      specify database password (default none)\n"
+"       -h <host>         specify database host (default NULL)\n"
 "       -r                list records\n"
 "       -s                synchronize or store in database\n"
 "       -v                verbose\n"
-"       -V              specify Volume names (separated by |)\n"
-"       -w dir            specify working directory (default from conf file)\n"
+"       -V <Volumes>      specify Volume names (separated by |)\n"
+"       -w <dir>          specify working directory (default from conf file)\n"
 "       -?                print this message\n\n"));
    exit(1);
 }
@@ -124,64 +127,68 @@ int main (int argc, char *argv[])
    init_msg(NULL, NULL);
 
 
-   while ((ch = getopt(argc, argv, "b:c:d:mn:p:rsu:vw:?")) != -1) {
+   while ((ch = getopt(argc, argv, "b:c:d:h:mn:p:rsu:vV:w:?")) != -1) {
       switch (ch) {
-         case 'b':
-           bsr = parse_bsr(NULL, optarg);
-           break;
+      case 'b':
+        bsr = parse_bsr(NULL, optarg);
+        break;
 
-         case 'c':                    /* specify config file */
-           if (configfile != NULL) {
-              free(configfile);
-           }
-           configfile = bstrdup(optarg);
-           break;
+      case 'c':                    /* specify config file */
+        if (configfile != NULL) {
+           free(configfile);
+        }
+        configfile = bstrdup(optarg);
+        break;
 
-         case 'd':                    /* debug level */
-           debug_level = atoi(optarg);
-           if (debug_level <= 0)
-              debug_level = 1; 
-           break;
+      case 'd':                    /* debug level */
+        debug_level = atoi(optarg);
+        if (debug_level <= 0)
+           debug_level = 1; 
+        break;
 
-         case 'm':
-           update_vol_info = 1;
-           break;
+      case 'h':
+        db_host = optarg;
+        break;
 
-         case 'n':
-           db_name = optarg;
-           break;
+      case 'm':
+        update_vol_info = 1;
+        break;
 
-         case 'u':
-           db_user = optarg;
-           break;
+      case 'n':
+        db_name = optarg;
+        break;
 
-         case 'p':
-           db_password = optarg;
-           break;
+      case 'u':
+        db_user = optarg;
+        break;
 
-         case 'r':
-           list_records = 1;
-           break;
+      case 'p':
+        db_password = optarg;
+        break;
 
-         case 's':
-           update_db = 1;
-           break;
+      case 'r':
+        list_records = 1;
+        break;
 
-         case 'v':
-           verbose++;
-           break;
+      case 's':
+        update_db = 1;
+        break;
 
-         case 'V':                    /* Volume name */
-           VolumeName = optarg;
-           break;
+      case 'v':
+        verbose++;
+        break;
 
-         case 'w':
-           wd = optarg;
-           break;
+      case 'V':                    /* Volume name */
+        VolumeName = optarg;
+        break;
 
-         case '?':
-        default:
-           usage();
+      case 'w':
+        wd = optarg;
+        break;
+
+      case '?':
+      default:
+        usage();
 
       }  
    }
@@ -232,7 +239,7 @@ int main (int argc, char *argv[])
       exit(1);
    }
 
-   if ((db=db_init_database(NULL, db_name, db_user, db_password, NULL, 0, NULL)) == NULL) {
+   if ((db=db_init_database(NULL, db_name, db_user, db_password, db_host, 0, NULL)) == NULL) {
       Emsg0(M_ERROR_TERM, 0, _("Could not init Bacula database\n"));
    }
    if (!db_open_database(NULL, db)) {
@@ -249,12 +256,43 @@ int main (int argc, char *argv[])
    return 0;
 }
   
+/*  
+ * We are at the end of reading a tape. Now, we simulate handling
+ *   the end of writing a tape by wiffling through the attached
+ *   jcrs creating jobmedia records.
+ */
+static int bscan_mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
+{
+   Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
+   for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
+      if (verbose) {
+         Pmsg1(000, _("Create JobMedia for Job %s\n"), mjcr->Job);
+      }
+      if (dev->state & ST_TAPE) {
+        mjcr->EndBlock = dev->EndBlock;
+        mjcr->EndFile = dev->EndFile;
+      } else {
+        mjcr->EndBlock = (uint32_t)dev->file_addr;
+        mjcr->StartBlock = (uint32_t)(dev->file_addr >> 32);
+      }
+      if (!create_jobmedia_record(db, mjcr)) {
+         Pmsg2(000, _("Could not create JobMedia record for Volume=%s Job=%s\n"),
+           dev->VolCatInfo.VolCatName, mjcr->Job);
+      }
+   }  
+   /* Now let common read routine get up next tape. Note,
+    * we call mount_next... with bscan's jcr because that is where we
+    * have the Volume list, but we get attached.
+    */
+   int stat = mount_next_read_volume(jcr, dev, block);
+   /* we must once more detach ourselves (attached by mount_next ...) */
+   detach_jcr_from_device(dev, jcr); /* detach bscan jcr */
+   return stat;
+}
 
 static void do_scan()            
 {
-   fname = get_pool_memory(PM_FNAME);
-   ofile = get_pool_memory(PM_FNAME);
-   lname = get_pool_memory(PM_FNAME);
+   attr = new_attr();
 
    memset(&ar, 0, sizeof(ar));
    memset(&pr, 0, sizeof(pr));
@@ -263,18 +301,17 @@ static void do_scan()
    memset(&fsr, 0, sizeof(fsr));
    memset(&fr, 0, sizeof(fr));
 
+   /* Detach bscan's jcr as we are not a real Job on the tape */
    detach_jcr_from_device(dev, bjcr);
 
-   read_records(bjcr, dev, record_cb, mount_next_read_volume);
+   read_records(bjcr, dev, record_cb, bscan_mount_next_read_volume);
    release_device(bjcr, dev);
 
-   free_pool_memory(fname);
-   free_pool_memory(ofile);
-   free_pool_memory(lname);
+   free_attr(attr);
    term_dev(dev);
 }
 
-static void record_cb(JCR *bjcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec)
+static int record_cb(JCR *bjcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec)
 {
    JCR *mjcr;
    char ec1[30];
@@ -298,364 +335,320 @@ static void record_cb(JCR *bjcr, DEVICE *dev, DEV_BLOCK *block, DEV_RECORD *rec)
         dump_label_record(dev, rec, 1);
       }
       switch (rec->FileIndex) {
-        case PRE_LABEL:
-            Pmsg0(000, _("Volume is prelabeled. This tape cannot be scanned.\n"));
-           return;
-           break;
-        case VOL_LABEL:
-           unser_volume_label(dev, rec);
-           /* Check Pool info */
-           strcpy(pr.Name, dev->VolHdr.PoolName);
-           strcpy(pr.PoolType, dev->VolHdr.PoolType);
-           if (db_get_pool_record(bjcr, db, &pr)) {
-              if (verbose) {
-                  Pmsg1(000, _("Pool record for %s found in DB.\n"), pr.Name);
-              }
-           } else {
-              if (!update_db) {
-                  Pmsg1(000, _("VOL_LABEL: Pool record not found for Pool: %s\n"),
-                    pr.Name);
-              }
-              create_pool_record(db, &pr);
-           }
-           if (strcmp(pr.PoolType, dev->VolHdr.PoolType) != 0) {
-               Pmsg2(000, _("VOL_LABEL: PoolType mismatch. DB=%s Vol=%s\n"),
-                 pr.PoolType, dev->VolHdr.PoolType);
-              return;
-           } else if (verbose) {
-               Pmsg1(000, _("Pool type \"%s\" is OK.\n"), pr.PoolType);
-           }
+      case PRE_LABEL:
+         Pmsg0(000, _("Volume is prelabeled. This tape cannot be scanned.\n"));
+        return 1;
+        break;
 
-           /* Check Media Info */
-           memset(&mr, 0, sizeof(mr));
-           strcpy(mr.VolumeName, dev->VolHdr.VolName);
-           mr.PoolId = pr.PoolId;
-           if (db_get_media_record(bjcr, db, &mr)) {
-              if (verbose) {
-                  Pmsg1(000, _("Media record for %s found in DB.\n"), mr.VolumeName);
-              }
-              /* Clear out some volume statistics that will be updated */
-              mr.VolJobs = mr.VolFiles = mr.VolBlocks = 0;
-              mr.VolBytes = rec->data_len + 20;
-           } else {
-              if (!update_db) {
-                  Pmsg1(000, _("VOL_LABEL: Media record not found for Volume: %s\n"),
-                    mr.VolumeName);
-              }
-              strcpy(mr.MediaType, dev->VolHdr.MediaType);
-              create_media_record(db, &mr, &dev->VolHdr);
+      case VOL_LABEL:
+        unser_volume_label(dev, rec);
+        /* Check Pool info */
+        bstrncpy(pr.Name, dev->VolHdr.PoolName, sizeof(pr.Name));
+        bstrncpy(pr.PoolType, dev->VolHdr.PoolType, sizeof(pr.PoolType));
+        if (db_get_pool_record(bjcr, db, &pr)) {
+           if (verbose) {
+               Pmsg1(000, _("Pool record for %s found in DB.\n"), pr.Name);
            }
-           if (strcmp(mr.MediaType, dev->VolHdr.MediaType) != 0) {
-               Pmsg2(000, _("VOL_LABEL: MediaType mismatch. DB=%s Vol=%s\n"),
-                 mr.MediaType, dev->VolHdr.MediaType);
-              return;
-           } else if (verbose) {
-               Pmsg1(000, _("Media type \"%s\" is OK.\n"), mr.MediaType);
-           }
-           /* Reset some JCR variables */
-           for (mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
-              mjcr->VolFirstIndex = mjcr->FileIndex = 0;
-              mjcr->StartBlock = mjcr->EndBlock = 0;
-              mjcr->StartFile = mjcr->EndFile = 0;
+        } else {
+           if (!update_db) {
+               Pmsg1(000, _("VOL_LABEL: Pool record not found for Pool: %s\n"),
+                 pr.Name);
            }
+           create_pool_record(db, &pr);
+        }
+        if (strcmp(pr.PoolType, dev->VolHdr.PoolType) != 0) {
+            Pmsg2(000, _("VOL_LABEL: PoolType mismatch. DB=%s Vol=%s\n"),
+              pr.PoolType, dev->VolHdr.PoolType);
+           return 1;
+        } else if (verbose) {
+            Pmsg1(000, _("Pool type \"%s\" is OK.\n"), pr.PoolType);
+        }
 
-            Pmsg1(000, _("VOL_LABEL: OK for Volume: %s\n"), mr.VolumeName);
-           break;
-        case SOS_LABEL:
-           mr.VolJobs++;
-           if (ignored_msgs > 0) {
-               Pmsg1(000, _("%d \"errors\" ignored before first Start of Session record.\n"), 
-                    ignored_msgs);
-              ignored_msgs = 0;
-           }
-           unser_session_label(&label, rec);
-           memset(&jr, 0, sizeof(jr));
-           jr.JobId = label.JobId;
-           if (db_get_job_record(bjcr, db, &jr)) {
-              /* Job record already exists in DB */
-               update_db = 0;  /* don't change db in create_job_record */
-              if (verbose) {
-                  Pmsg1(000, _("SOS_LABEL: Found Job record for JobId: %d\n"), jr.JobId);
-              }
-           } else {
-              /* Must create a Job record in DB */
-              if (!update_db) {
-                  Pmsg1(000, _("SOS_LABEL: Job record not found for JobId: %d\n"),
-                    jr.JobId);
-              }
-           }
-           /* Create Client record if not already there */
-              strcpy(cr.Name, label.ClientName);
-              create_client_record(db, &cr);
-              jr.ClientId = cr.ClientId;
-
-            /* process label, if Job record exists don't update db */
-           mjcr = create_job_record(db, &jr, &label, rec);
-           update_db = save_update_db;
-
-           jr.PoolId = pr.PoolId;
-           /* Set start positions into JCR */
-           if (dev->state & ST_TAPE) {
-              mjcr->StartBlock = dev->block_num;
-              mjcr->StartFile = dev->file;
-           } else {
-              mjcr->StartBlock = (uint32_t)dev->file_addr;
-              mjcr->StartFile = (uint32_t)(dev->file_addr >> 32);
+        /* Check Media Info */
+        memset(&mr, 0, sizeof(mr));
+        bstrncpy(mr.VolumeName, dev->VolHdr.VolName, sizeof(mr.VolumeName));
+        mr.PoolId = pr.PoolId;
+        if (db_get_media_record(bjcr, db, &mr)) {
+           if (verbose) {
+               Pmsg1(000, _("Media record for %s found in DB.\n"), mr.VolumeName);
            }
-           mjcr->start_time = jr.StartTime;
-           mjcr->JobLevel = jr.Level;
-
-           mjcr->client_name = get_pool_memory(PM_FNAME);
-           pm_strcpy(&mjcr->client_name, label.ClientName);
-           mjcr->pool_type = get_pool_memory(PM_FNAME);
-           pm_strcpy(&mjcr->pool_type, label.PoolType);
-           mjcr->fileset_name = get_pool_memory(PM_FNAME);
-           pm_strcpy(&mjcr->fileset_name, label.FileSetName);
-           mjcr->pool_name = get_pool_memory(PM_FNAME);
-           pm_strcpy(&mjcr->pool_name, label.PoolName);
-
-           if (rec->VolSessionId != jr.VolSessionId) {
-               Pmsg3(000, _("SOS_LABEL: VolSessId mismatch for JobId=%u. DB=%d Vol=%d\n"),
-                 jr.JobId,
-                 jr.VolSessionId, rec->VolSessionId);
-              return;
+           /* Clear out some volume statistics that will be updated */
+           mr.VolJobs = mr.VolFiles = mr.VolBlocks = 0;
+           mr.VolBytes = rec->data_len + 20;
+        } else {
+           if (!update_db) {
+               Pmsg1(000, _("VOL_LABEL: Media record not found for Volume: %s\n"),
+                 mr.VolumeName);
            }
-           if (rec->VolSessionTime != jr.VolSessionTime) {
-               Pmsg3(000, _("SOS_LABEL: VolSessTime mismatch for JobId=%u. DB=%d Vol=%d\n"),
-                 jr.JobId,
-                 jr.VolSessionTime, rec->VolSessionTime);
-              return;
+           bstrncpy(mr.MediaType, dev->VolHdr.MediaType, sizeof(mr.MediaType));
+           create_media_record(db, &mr, &dev->VolHdr);
+        }
+        if (strcmp(mr.MediaType, dev->VolHdr.MediaType) != 0) {
+            Pmsg2(000, _("VOL_LABEL: MediaType mismatch. DB=%s Vol=%s\n"),
+              mr.MediaType, dev->VolHdr.MediaType);
+           return 1;
+        } else if (verbose) {
+            Pmsg1(000, _("Media type \"%s\" is OK.\n"), mr.MediaType);
+        }
+        /* Reset some JCR variables */
+        for (mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
+           mjcr->VolFirstIndex = mjcr->FileIndex = 0;
+           mjcr->StartBlock = mjcr->EndBlock = 0;
+           mjcr->StartFile = mjcr->EndFile = 0;
+        }
+
+         Pmsg1(000, _("VOL_LABEL: OK for Volume: %s\n"), mr.VolumeName);
+        break;
+
+      case SOS_LABEL:
+        mr.VolJobs++;
+        if (ignored_msgs > 0) {
+            Pmsg1(000, _("%d \"errors\" ignored before first Start of Session record.\n"), 
+                 ignored_msgs);
+           ignored_msgs = 0;
+        }
+        unser_session_label(&label, rec);
+        memset(&jr, 0, sizeof(jr));
+        jr.JobId = label.JobId;
+        if (db_get_job_record(bjcr, db, &jr)) {
+           /* Job record already exists in DB */
+            update_db = 0;  /* don't change db in create_job_record */
+           if (verbose) {
+               Pmsg1(000, _("SOS_LABEL: Found Job record for JobId: %d\n"), jr.JobId);
            }
-           if (jr.PoolId != pr.PoolId) {
-               Pmsg3(000, _("SOS_LABEL: PoolId mismatch for JobId=%u. DB=%d Vol=%d\n"),
-                 jr.JobId,
-                 jr.PoolId, pr.PoolId);
-              return;
+        } else {
+           /* Must create a Job record in DB */
+           if (!update_db) {
+               Pmsg1(000, _("SOS_LABEL: Job record not found for JobId: %d\n"),
+                 jr.JobId);
            }
+        }
+        /* Create Client record if not already there */
+           bstrncpy(cr.Name, label.ClientName, sizeof(cr.Name));
+           create_client_record(db, &cr);
+           jr.ClientId = cr.ClientId;
+
+         /* process label, if Job record exists don't update db */
+        mjcr = create_job_record(db, &jr, &label, rec);
+        update_db = save_update_db;
+
+        jr.PoolId = pr.PoolId;
+        /* Set start positions into JCR */
+        if (dev->state & ST_TAPE) {
+           mjcr->StartBlock = dev->block_num;
+           mjcr->StartFile = dev->file;
+        } else {
+           mjcr->StartBlock = (uint32_t)dev->file_addr;
+           mjcr->StartFile = (uint32_t)(dev->file_addr >> 32);
+        }
+        mjcr->start_time = jr.StartTime;
+        mjcr->JobLevel = jr.Level;
+
+        mjcr->client_name = get_pool_memory(PM_FNAME);
+        pm_strcpy(&mjcr->client_name, label.ClientName);
+        mjcr->pool_type = get_pool_memory(PM_FNAME);
+        pm_strcpy(&mjcr->pool_type, label.PoolType);
+        mjcr->fileset_name = get_pool_memory(PM_FNAME);
+        pm_strcpy(&mjcr->fileset_name, label.FileSetName);
+        mjcr->pool_name = get_pool_memory(PM_FNAME);
+        pm_strcpy(&mjcr->pool_name, label.PoolName);
+
+        if (rec->VolSessionId != jr.VolSessionId) {
+            Pmsg3(000, _("SOS_LABEL: VolSessId mismatch for JobId=%u. DB=%d Vol=%d\n"),
+              jr.JobId,
+              jr.VolSessionId, rec->VolSessionId);
+           return 1;
+        }
+        if (rec->VolSessionTime != jr.VolSessionTime) {
+            Pmsg3(000, _("SOS_LABEL: VolSessTime mismatch for JobId=%u. DB=%d Vol=%d\n"),
+              jr.JobId,
+              jr.VolSessionTime, rec->VolSessionTime);
+           return 1;
+        }
+        if (jr.PoolId != pr.PoolId) {
+            Pmsg3(000, _("SOS_LABEL: PoolId mismatch for JobId=%u. DB=%d Vol=%d\n"),
+              jr.JobId,
+              jr.PoolId, pr.PoolId);
+           return 1;
+        }
+        break;
+
+      case EOS_LABEL:
+        unser_session_label(&elabel, rec);
+
+        /* Create FileSet record */
+        bstrncpy(fsr.FileSet, label.FileSetName, sizeof(fsr.FileSet));
+        bstrncpy(fsr.MD5, label.FileSetMD5, sizeof(fsr.MD5));
+        create_fileset_record(db, &fsr);
+        jr.FileSetId = fsr.FileSetId;
+
+        mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
+        if (!mjcr) {
+            Pmsg2(000, _("Could not find SessId=%d SessTime=%d for EOS record.\n"),
+                 rec->VolSessionId, rec->VolSessionTime);
            break;
-        case EOS_LABEL:
-           unser_session_label(&elabel, rec);
-
-           /* Create FileSet record */
-           strcpy(fsr.FileSet, label.FileSetName);
-           strcpy(fsr.MD5, label.FileSetMD5);
-           create_fileset_record(db, &fsr);
-           jr.FileSetId = fsr.FileSetId;
-
-           mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
-           if (!mjcr) {
-               Pmsg2(000, _("Could not find SessId=%d SessTime=%d for EOS record.\n"),
-                    rec->VolSessionId, rec->VolSessionTime);
-              break;
-           }
+        }
 
-           /* Do the final update to the Job record */
-           update_job_record(db, &jr, &elabel, rec);
+        /* Do the final update to the Job record */
+        update_job_record(db, &jr, &elabel, rec);
 
-           mjcr->end_time = jr.EndTime;
-           mjcr->JobStatus = JS_Terminated;
+        mjcr->end_time = jr.EndTime;
+        mjcr->JobStatus = JS_Terminated;
 
-           /* Create JobMedia record */
-           create_jobmedia_record(db, mjcr);
-           detach_jcr_from_device(dev, mjcr);
-           free_jcr(mjcr);
+        /* Create JobMedia record */
+        create_jobmedia_record(db, mjcr);
+        detach_jcr_from_device(dev, mjcr);
+        free_jcr(mjcr);
 
-           break;
-        case EOM_LABEL:
-           break;
-        case EOT_LABEL:              /* end of all tapes */
-           /* 
-            * Wiffle through all jobs still open and close
-            *   them.
-            */
-           if (update_db) {
-              for (mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
-                 jr.JobId = mjcr->JobId;
-                 jr.JobStatus = JS_ErrorTerminated;
-                 jr.JobFiles = mjcr->JobFiles;
-                 jr.JobBytes = mjcr->JobBytes;
-                 jr.VolSessionId = mjcr->VolSessionId;
-                 jr.VolSessionTime = mjcr->VolSessionTime;
-                 jr.JobTDate = (utime_t)mjcr->start_time;
-                 jr.ClientId = mjcr->ClientId;
-                 free_jcr(mjcr);
-                 if (!db_update_job_end_record(bjcr, db, &jr)) {
-                     Pmsg1(0, _("Could not update job record. ERR=%s\n"), db_strerror(db));
-                 }
+        break;
+
+      case EOM_LABEL:
+        break;
+
+      case EOT_LABEL:             /* end of all tapes */
+        /* 
+         * Wiffle through all jobs still open and close
+         *   them.
+         */
+        if (update_db) {
+           for (mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
+              jr.JobId = mjcr->JobId;
+              jr.JobStatus = JS_ErrorTerminated;
+              jr.JobFiles = mjcr->JobFiles;
+              jr.JobBytes = mjcr->JobBytes;
+              jr.VolSessionId = mjcr->VolSessionId;
+              jr.VolSessionTime = mjcr->VolSessionTime;
+              jr.JobTDate = (utime_t)mjcr->start_time;
+              jr.ClientId = mjcr->ClientId;
+              free_jcr(mjcr);
+              if (!db_update_job_end_record(bjcr, db, &jr)) {
+                  Pmsg1(0, _("Could not update job record. ERR=%s\n"), db_strerror(db));
               }
            }
-           mr.VolFiles = rec->File;
-           mr.VolBlocks = rec->Block;
-           mr.VolBytes += mr.VolBlocks * WRITE_BLKHDR_LENGTH; /* approx. */
-           mr.VolMounts++;
-           update_media_record(db, &mr);
-            Pmsg3(0, _("End of Volume. VolFiles=%u VolBlocks=%u VolBytes=%s\n"), mr.VolFiles,
-                      mr.VolBlocks, edit_uint64_with_commas(mr.VolBytes, ec1));
-           break;
-        default:
-           break;
-      }
-      return;
+        }
+        mr.VolFiles = rec->File;
+        mr.VolBlocks = rec->Block;
+        mr.VolBytes += mr.VolBlocks * WRITE_BLKHDR_LENGTH; /* approx. */
+        mr.VolMounts++;
+        update_media_record(db, &mr);
+         Pmsg3(0, _("End of all Volumes. VolFiles=%u VolBlocks=%u VolBytes=%s\n"), mr.VolFiles,
+                   mr.VolBlocks, edit_uint64_with_commas(mr.VolBytes, ec1));
+        break;
+      default:
+        break;
+      } /* end switch */
+      return 1;
    }
 
+   mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
+   if (!mjcr) {
+      if (mr.VolJobs > 0) {
+         Pmsg2(000, _("Could not find Job for SessId=%d SessTime=%d record.\n"),
+                     rec->VolSessionId, rec->VolSessionTime);
+      } else {
+        ignored_msgs++;
+      }
+      return 1;
+   }
+   if (mjcr->VolFirstIndex == 0) {
+      mjcr->VolFirstIndex = block->FirstIndex;
+   }
 
    /* File Attributes stream */
-   if (rec->Stream == STREAM_UNIX_ATTRIBUTES || rec->Stream == STREAM_WIN32_ATTRIBUTES) {
-      char *ap, *lp, *fp;
+   switch (rec->Stream) {
+   case STREAM_UNIX_ATTRIBUTES:   
+   case STREAM_UNIX_ATTRIBUTES_EX:  
 
-      if (sizeof_pool_memory(fname) < rec->data_len) {
-        fname = realloc_pool_memory(fname, rec->data_len + 1);
-      }
-      if (sizeof_pool_memory(lname) < rec->data_len) {
-        lname = realloc_pool_memory(lname, rec->data_len + 1);
+      if (!unpack_attributes_record(bjcr, rec->Stream, rec->data, attr)) {
+         Emsg0(M_ERROR_TERM, 0, _("Cannot continue.\n"));
       }
-      *fname = 0;
-      *lname = 0;
-
-      /*             
-       * An Attributes record consists of:
-       *    File_index
-       *    Type   (FT_types)
-       *    Filename
-       *    Attributes
-       *    Link name (if file linked i.e. FT_LNK)
-       *
-       */
-      sscanf(rec->data, "%ld %d", &record_file_index, &type);
-      if (record_file_index != rec->FileIndex)
-         Emsg2(M_ERROR_TERM, 0, "Record header file index %ld not equal record index %ld\n",
-           rec->FileIndex, record_file_index);
-      ap = rec->data;
-      while (*ap++ != ' ')         /* skip record file index */
-        ;
-      while (*ap++ != ' ')         /* skip type */
-        ;
-      /* Save filename and position to attributes */
-      fp = fname;
-      while (*ap != 0) {
-        *fp++  = *ap++;
-      }
-      *fp = *ap++;                /* terminate filename & point to attribs */
 
-      /* Skip through attributes to link name */
-      lp = ap;
-      while (*lp++ != 0) {
-        ;
+      if (attr->file_index != rec->FileIndex) {
+         Emsg2(M_ERROR_TERM, 0, _("Record header file index %ld not equal record index %ld\n"),
+           rec->FileIndex, attr->file_index);
       }
-      strcat(lname, lp);        /* "save" link name */
+       
       if (verbose > 1) {
-        uint32_t LinkFI;
-        decode_stat(ap, &statp, &LinkFI);
-        print_ls_output(fname, lname, type, &statp);   
-      }
-      mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
-      if (!mjcr) {
-        if (mr.VolJobs > 0) {
-            Pmsg2(000, _("Could not find Job SessId=%d SessTime=%d for Attributes record.\n"),
-                        rec->VolSessionId, rec->VolSessionTime);
-        } else {
-           ignored_msgs++;
-        }
-        return;
+        decode_stat(attr->attr, &attr->statp, &attr->LinkFI);
+        build_attr_output_fnames(bjcr, attr);
+        print_ls_output(bjcr, attr);
       }
       fr.JobId = mjcr->JobId;
       fr.FileId = 0;
-      if (db_get_file_attributes_record(bjcr, db, fname, &fr)) {
+      if (db_get_file_attributes_record(bjcr, db, attr->fname, NULL, &fr)) {
         if (verbose > 1) {
-            Pmsg1(000, _("File record already exists for: %s\n"), fname);
+            Pmsg1(000, _("File record already exists for: %s\n"), attr->fname);
         }
       } else {
-        create_file_attributes_record(db, mjcr, fname, lname, type, ap, rec);
+        create_file_attributes_record(db, mjcr, attr->fname, attr->lname, 
+           attr->type, attr->attr, rec);
       }
       free_jcr(mjcr);
+      break;
 
    /* Data stream */
-   } else if (rec->Stream == STREAM_FILE_DATA) {
-      mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
-      if (!mjcr) {
-        if (mr.VolJobs > 0) {
-            Pmsg2(000, _("Could not find Job SessId=%d SessTime=%d for File Data record.\n"),
-                        rec->VolSessionId, rec->VolSessionTime);
-        } else {
-           ignored_msgs++;
-        }
-        return;
-      }
+   case STREAM_WIN32_DATA:
+   case STREAM_FILE_DATA:
+   case STREAM_SPARSE_DATA:
       mjcr->JobBytes += rec->data_len;
-      free_jcr(mjcr);                /* done using JCR */
-
-   } else if (rec->Stream == STREAM_SPARSE_DATA) {
-      mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
-      if (!mjcr) {
-        if (mr.VolJobs > 0) {
-            Pmsg2(000, _("Could not find Job SessId=%d SessTime=%d for Sparse Data record.\n"),
-                        rec->VolSessionId, rec->VolSessionTime);
-        } else {
-           ignored_msgs++;
-        }
-        return;
+      if (rec->Stream == STREAM_SPARSE_DATA) {
+        mjcr->JobBytes -= sizeof(uint64_t);
       }
-      mjcr->JobBytes += rec->data_len - sizeof(uint64_t);
+        
       free_jcr(mjcr);                /* done using JCR */
+      break;
 
-   } else if (rec->Stream == STREAM_GZIP_DATA) {
-      mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
-      if (!mjcr) {
-        if (mr.VolJobs > 0) {
-            Pmsg2(000, _("Could not find Job SessId=%d SessTime=%d for GZIP Data record.\n"),
-                        rec->VolSessionId, rec->VolSessionTime);
-        } else {
-           ignored_msgs++;
-        }
-        return;
-      }
+   case STREAM_GZIP_DATA:
       mjcr->JobBytes += rec->data_len; /* No correct, we should expand it */
       free_jcr(mjcr);                /* done using JCR */
+      break;
 
-   } else if (rec->Stream == STREAM_SPARSE_GZIP_DATA) {
-      mjcr = get_jcr_by_session(rec->VolSessionId, rec->VolSessionTime);
-      if (!mjcr) {
-        if (mr.VolJobs > 0) {
-            Pmsg2(000, _("Could not find Job SessId=%d SessTime=%d for Sparse GZIP Data record.\n"),
-                        rec->VolSessionId, rec->VolSessionTime);
-        } else {
-           ignored_msgs++;
-        }
-        return;
-      }
+   case STREAM_SPARSE_GZIP_DATA:
       mjcr->JobBytes += rec->data_len - sizeof(uint64_t); /* No correct, we should expand it */
       free_jcr(mjcr);                /* done using JCR */
+      break;
 
+   /* Win32 GZIP stream */
+   case STREAM_WIN32_GZIP_DATA:
+      mjcr->JobBytes += rec->data_len;
+      free_jcr(mjcr);                /* done using JCR */
+      break;
 
-   } else if (rec->Stream == STREAM_MD5_SIGNATURE) {
+   case STREAM_MD5_SIGNATURE:
       char MD5buf[50];
       bin_to_base64(MD5buf, (char *)rec->data, 16); /* encode 16 bytes */
       if (verbose > 1) {
          Pmsg1(000, _("Got MD5 record: %s\n"), MD5buf);
       }
       update_SIG_record(db, MD5buf, rec, MD5_SIG);
+      break;
 
-   } else if (rec->Stream == STREAM_SHA1_SIGNATURE) {
+   case STREAM_SHA1_SIGNATURE:
       char SIGbuf[50];
       bin_to_base64(SIGbuf, (char *)rec->data, 20); /* encode 20 bytes */
       if (verbose > 1) {
          Pmsg1(000, _("Got SHA1 record: %s\n"), SIGbuf);
       }
       update_SIG_record(db, SIGbuf, rec, SHA1_SIG);
+      break;
 
 
-   } else if (rec->Stream == STREAM_PROGRAM_NAMES) {
+   case STREAM_PROGRAM_NAMES:
       if (verbose) {
          Pmsg1(000, _("Got Prog Names Stream: %s\n"), rec->data);
       }
-   } else if (rec->Stream == STREAM_PROGRAM_DATA) {
+      break;
+
+   case STREAM_PROGRAM_DATA:
       if (verbose > 1) {
          Pmsg0(000, _("Got Prog Data Stream record.\n"));
       }
-   } else {
+      break;
+   default:
       Pmsg2(0, _("Unknown stream type!!! stream=%d data=%s\n"), rec->Stream, rec->data);
+      break;
    }
-   return;
+   return 1;
 }
 
 /*
@@ -727,7 +720,8 @@ static int create_media_record(B_DB *db, MEDIA_DBR *mr, VOLUME_LABEL *vl)
    struct date_time dt;
    struct tm tm;
 
-   strcpy(mr->VolStatus, "Full");
+   /* We mark Vols as Archive to keep them from being re-written */
+   bstrncpy(mr->VolStatus, "Archive", sizeof(mr->VolStatus));
    mr->VolRetention = 365 * 3600 * 24; /* 1 year */
    if (vl->VerNum >= 11) {
       mr->FirstWritten = btime_to_utime(vl->write_btime);
@@ -868,8 +862,8 @@ static JCR *create_job_record(B_DB *db, JOB_DBR *jr, SESSION_LABEL *label,
    jr->Type = label->JobType;
    jr->Level = label->JobLevel;
    jr->JobStatus = JS_Created;
-   strcpy(jr->Name, label->JobName);
-   strcpy(jr->Job, label->Job);
+   bstrncpy(jr->Name, label->JobName, sizeof(jr->Name));
+   bstrncpy(jr->Job, label->Job, sizeof(jr->Job));
    if (label->VerNum >= 11) {
       jr->SchedTime = btime_to_unix(label->write_btime);
    } else {
@@ -1104,7 +1098,7 @@ static JCR *create_jcr(JOB_DBR *jr, DEV_RECORD *rec, uint32_t JobId)
    jobjcr->JobType = jr->Type;
    jobjcr->JobLevel = jr->Level;
    jobjcr->JobStatus = jr->JobStatus;
-   strcpy(jobjcr->Job, jr->Job);
+   bstrncpy(jobjcr->Job, jr->Job, sizeof(jobjcr->Job));
    jobjcr->JobId = JobId;      /* this is JobId on tape */
    jobjcr->sched_time = jr->SchedTime;
    jobjcr->start_time = jr->StartTime;
@@ -1116,9 +1110,9 @@ static JCR *create_jcr(JOB_DBR *jr, DEV_RECORD *rec, uint32_t JobId)
 }
 
 /* Dummies to replace askdir.c */
-int    dir_get_volume_info(JCR *jcr, int writing) { return 1;}
+int    dir_get_volume_info(JCR *jcr, enum get_vol_info_rw  writing) { return 1;}
 int    dir_find_next_appendable_volume(JCR *jcr) { return 1;}
-int    dir_update_volume_info(JCR *jcr, VOLUME_CAT_INFO *vol, int relabel) { return 1; }
+int    dir_update_volume_info(JCR *jcr, DEVICE *dev, int relabel) { return 1; }
 int    dir_create_jobmedia_record(JCR *jcr) { return 1; }
 int    dir_ask_sysop_to_mount_next_volume(JCR *jcr, DEVICE *dev) { return 1; }
 int    dir_update_file_attributes(JCR *jcr, DEV_RECORD *rec) { return 1;}
@@ -1127,29 +1121,6 @@ int      dir_send_job_status(JCR *jcr) {return 1;}
 
 int dir_ask_sysop_to_mount_volume(JCR *jcr, DEVICE *dev)
 {
-   /*  
-    * We are at the end of reading a tape. Now, we simulate handling
-    *  the end of writing a tape by wiffling through the attached
-    *  jcrs creating jobmedia records.
-    */
-   Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
-   for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
-      if (verbose) {
-         Pmsg1(000, _("Create JobMedia for Job %s\n"), mjcr->Job);
-      }
-      if (dev->state & ST_TAPE) {
-        mjcr->EndBlock = dev->EndBlock;
-        mjcr->EndFile = dev->EndFile;
-      } else {
-        mjcr->EndBlock = (uint32_t)dev->file_addr;
-        mjcr->StartBlock = (uint32_t)(dev->file_addr >> 32);
-      }
-      if (!create_jobmedia_record(db, mjcr)) {
-         Pmsg2(000, _("Could not create JobMedia record for Volume=%s Job=%s\n"),
-           dev->VolCatInfo.VolCatName, mjcr->Job);
-      }
-   }
-
    fprintf(stderr, _("Mount Volume %s on device %s and press return when ready: "),
       jcr->VolumeName, dev_name(dev));
    getchar();