]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/catreq.c
New var.c file + implement multiple simultaneous jobs
[bacula/bacula] / bacula / src / dird / catreq.c
index 621d23d45de2f0984ddbea3fefa87ddc444f82cd..e36bc681a448bb2b4c7c9e02a2724b727a75a180 100644 (file)
 
 /* Requests from the Storage daemon */
 static char Find_media[] = "CatReq Job=%127s FindMedia=%d\n";
-static char Get_Vol_Info[] = "CatReq Job=%127s GetVolInfo VolName=%127s\n";
+static char Get_Vol_Info[] = "CatReq Job=%127s GetVolInfo VolName=%127s write=%d\n";
 
 static char Update_media[] = "CatReq Job=%127s UpdateMedia VolName=%s\
- VolJobs=%d VolFiles=%d VolBlocks=%d VolBytes=%" lld " VolMounts=%d\
- VolErrors=%d VolWrites=%d VolMaxBytes=%" lld " EndTime=%d VolStatus=%10s\
+ VolJobs=%u VolFiles=%u VolBlocks=%u VolBytes=%" lld " VolMounts=%u\
+ VolErrors=%u VolWrites=%u MaxVolBytes=%" lld " EndTime=%d VolStatus=%10s\
  Slot=%d relabel=%d\n";
 
 static char Create_job_media[] = "CatReq Job=%127s CreateJobMedia \
- FirstIndex=%d LastIndex=%d StartFile=%d EndFile=%d \
- StartBlock=%d EndBlock=%d\n";
+ FirstIndex=%u LastIndex=%u StartFile=%u EndFile=%u \
+ StartBlock=%u EndBlock=%u\n";
 
 
 /* Responses  sent to Storage daemon */
-static char OK_media[] = "1000 OK VolName=%s VolJobs=%d VolFiles=%d\
- VolBlocks=%d VolBytes=%" lld " VolMounts=%d VolErrors=%d VolWrites=%d\
- VolMaxBytes=%" lld " VolCapacityBytes=%" lld " VolStatus=%s Slot=%d\n";
+static char OK_media[] = "1000 OK VolName=%s VolJobs=%u VolFiles=%u\
+ VolBlocks=%u VolBytes=%s VolMounts=%u VolErrors=%u VolWrites=%u\
+ MaxVolBytes=%s VolCapacityBytes=%s VolStatus=%s Slot=%d\
+ MaxVolJobs=%u MaxVolFiles=%u\n";
 
 static char OK_update[] = "1000 OK UpdateMedia\n";
 
@@ -66,96 +67,170 @@ static char OK_update[] = "1000 OK UpdateMedia\n";
 
 void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
 {
-   MEDIA_DBR mr; 
+   MEDIA_DBR mr, sdmr
    JOBMEDIA_DBR jm;
    char Job[MAX_NAME_LENGTH];
-   int index, ok, relabel;
-   char *omsg;
+   int index, ok, relabel, writing, retry = 0;
+   POOLMEM *omsg;
 
    memset(&mr, 0, sizeof(mr));
+   memset(&sdmr, 0, sizeof(sdmr));
    memset(&jm, 0, sizeof(jm));
 
    /*
     * Request to find next appendable Volume for this Job
     */
-   Dmsg1(20, "catreq %s", bs->msg);
+   Dmsg1(200, "catreq %s", bs->msg);
    if (sscanf(bs->msg, Find_media, &Job, &index) == 2) {
       mr.PoolId = jcr->PoolId;
       strcpy(mr.MediaType, jcr->store->media_type);
-      strcpy(mr.VolStatus, "Append");
-      Dmsg3(120, "CatReq FindMedia: Id=%d, MediaType=%s, Status=%s\n",
-        mr.PoolId, mr.MediaType, mr.VolStatus);
+      Dmsg2(120, "CatReq FindMedia: Id=%d, MediaType=%s\n",
+        mr.PoolId, mr.MediaType);
       /*
-       * Find the Volume
+       * Find the Next Volume for Append
        */
-      ok = db_find_next_volume(jcr->db, index, &mr);  
+next_volume:
+      strcpy(mr.VolStatus, "Append");  /* want only appendable volumes */
+      ok = db_find_next_volume(jcr, jcr->db, index, &mr);  
+      Dmsg2(100, "catreq after find_next_vol ok=%d FW=%d\n", ok, mr.FirstWritten);
       if (!ok) {
-        /* Well, try finding recycled tapes */
-        ok = find_recycled_volume(jcr, &mr);
-         Dmsg1(100, "find_recycled_volume1 %d\n", ok);
+         Dmsg1(200, "No next volume found. RecycleOldest=%d\n",
+            jcr->pool->recycle_oldest_volume);
+        if (jcr->pool->recycle_oldest_volume) {
+            Dmsg0(200, "Request to find oldest volume.\n");
+           /* Find oldest volume to recycle */
+           ok = db_find_next_volume(jcr, jcr->db, -1, &mr);
+            Dmsg1(400, "Find oldest=%d\n", ok);
+           if (ok) {
+              UAContext ua;
+               Dmsg0(400, "Try purge.\n");
+              /* Try to purge oldest volume */
+              create_ua_context(jcr, &ua);
+              ok = purge_jobs_from_volume(&ua, &mr);
+              free_ua_context(&ua);
+              if (ok) {
+                 ok = recycle_oldest_purged_volume(jcr, &mr);
+                  Dmsg1(400, "Recycle after recycle oldest=%d\n", ok);
+              }
+           }
+        }
         if (!ok) {
-           prune_volumes(jcr);  
-           ok = recycle_a_volume(jcr, &mr);
-            Dmsg1(100, "find_recycled_volume2 %d\n", ok);
+           /* Well, try finding recycled tapes */
+           ok = find_recycled_volume(jcr, &mr);
+            Dmsg2(100, "find_recycled_volume1 %d FW=%d\n", ok, mr.FirstWritten);
            if (!ok) {
-              /* See if we can create a new Volume */
-              ok = newVolume(jcr, &mr);
+              prune_volumes(jcr);  
+              ok = recycle_oldest_purged_volume(jcr, &mr);
+               Dmsg2(200, "find_recycled_volume2 %d FW=%d\n", ok, mr.FirstWritten);
+              if (!ok) {
+                 /* See if we can create a new Volume */
+                 ok = newVolume(jcr, &mr);
+              }
+           }
+        }
+      }
+      /* Check if use duration has expired */
+      Dmsg2(100, "VolJobs=%d FirstWritten=%d\n", mr.VolJobs, mr.FirstWritten);
+      if (ok && mr.VolJobs > 0 && mr.VolUseDuration > 0 && 
+           strcmp(mr.VolStatus, "Append") == 0) {
+        utime_t now = time(NULL);
+        if (mr.VolUseDuration <= (now - mr.FirstWritten)) {
+            Dmsg4(100, "Duration=%d now=%d start=%d now-start=%d\n",
+              (int)mr.VolUseDuration, (int)now, (int)mr.FirstWritten, 
+              (int)(now-mr.FirstWritten));
+            Jmsg(jcr, M_INFO, 0, _("Max configured use duration exceeded. "       
+               "Marking Volume \"%s\" as Used.\n"), mr.VolumeName);
+            strcpy(mr.VolStatus, "Used");  /* yes, mark as used */
+           if (!db_update_media_record(jcr, jcr->db, &mr)) {
+               Jmsg(jcr, M_ERROR, 0, _("Catalog error updating Media record. %s"),
+                   db_strerror(jcr->db));
+           } else if (retry++ < 200) {     /* sanity check */
+              goto next_volume;
+           } else {
+              Jmsg(jcr, M_ERROR, 0, _(
+"We seem to be looping trying to find the next volume. I give up. Ask operator.\n"));
            }
+           ok = FALSE;               /* give up */
         }
       }
+
       /*
        * Send Find Media response to Storage daemon 
        */
       if (ok) {
+        char ed1[50], ed2[50], ed3[50];
         jcr->MediaId = mr.MediaId;
-        strcpy(jcr->VolumeName, mr.VolumeName);
+        pm_strcpy(&jcr->VolumeName, mr.VolumeName);
         bash_spaces(mr.VolumeName);
         bnet_fsend(bs, OK_media, mr.VolumeName, mr.VolJobs,
-           mr.VolFiles, mr.VolBlocks, mr.VolBytes, mr.VolMounts, mr.VolErrors,
-           mr.VolWrites, mr.VolMaxBytes, mr.VolCapacityBytes,
-           mr.VolStatus, mr.Slot);
+           mr.VolFiles, mr.VolBlocks, edit_uint64(mr.VolBytes, ed1),
+           mr.VolMounts, mr.VolErrors, mr.VolWrites, 
+           edit_uint64(mr.MaxVolBytes, ed2), 
+           edit_uint64(mr.VolCapacityBytes, ed3),
+           mr.VolStatus, mr.Slot, mr.MaxVolJobs, mr.MaxVolFiles);
+         Dmsg2(100, "Find media for %s: %s", jcr->Job, bs->msg);
       } else {
-         bnet_fsend(bs, "1999 No Media\n");
+         bnet_fsend(bs, "1901 No Media.\n");
       }
 
    /* 
     * Request to find specific Volume information
     */
-   } else if (sscanf(bs->msg, Get_Vol_Info, &Job, &mr.VolumeName) == 2) {
-      Dmsg1(120, "CatReq GetVolInfo Vol=%s\n", mr.VolumeName);
+   } else if (sscanf(bs->msg, Get_Vol_Info, &Job, &mr.VolumeName, &writing) == 3) {
+      Dmsg1(400, "CatReq GetVolInfo Vol=%s\n", mr.VolumeName);
       /*
        * Find the Volume
        */
       unbash_spaces(mr.VolumeName);
-      if (db_get_media_record(jcr->db, &mr)) {
+      if (db_get_media_record(jcr, jcr->db, &mr)) {
+        int VolSuitable = 0;
+         char *reason = "";           /* detailed reason for rejection */
         jcr->MediaId = mr.MediaId;
-         Dmsg1(20, "VolumeInfo MediaId=%d\n", jcr->MediaId);
-        strcpy(jcr->VolumeName, mr.VolumeName);
-        /* 
-         * Make sure this volume is suitable for this job, i.e.
-         *  it is either Append or Recycle and Media Type matches.
-         */
-        if (mr.PoolId == jcr->PoolId && 
-             (strcmp(mr.VolStatus, "Append") == 0 ||
-              strcmp(mr.VolStatus, "Recycle") == 0) &&
-            strcmp(mr.MediaType, jcr->store->media_type) == 0) {
+         Dmsg1(120, "VolumeInfo MediaId=%d\n", jcr->MediaId);
+        pm_strcpy(&jcr->VolumeName, mr.VolumeName);
+        if (!writing) {
+           VolSuitable = 1;          /* accept anything for read */
+        } else {
+           /* 
+            * SD wants to write this Volume, so make
+            *   sure it is suitable for this job, i.e.
+            *   Pool matches, and it is either Append or Recycle 
+            *   and Media Type matches and Pool allows any volume.
+            */
+           if (mr.PoolId != jcr->PoolId) {
+               reason = "not in Pool";
+            } else if (strcmp(mr.VolStatus, "Append") != 0 &&
+                       strcmp(mr.VolStatus, "Recycle") != 0) {
+               reason = "not Append or Recycle";
+           } else if (strcmp(mr.MediaType, jcr->store->media_type) != 0) {
+               reason = "not correct MediaType";
+           } else if (!jcr->pool->accept_any_volume) {
+               reason = "Volume not in sequence";
+           } else {
+              VolSuitable = 1;
+           }
+        }
+        if (VolSuitable) {
+           char ed1[50], ed2[50], ed3[50];
            /*
             * Send Find Media response to Storage daemon 
             */
            bash_spaces(mr.VolumeName);
            bnet_fsend(bs, OK_media, mr.VolumeName, mr.VolJobs,
-              mr.VolFiles, mr.VolBlocks, mr.VolBytes, mr.VolMounts, mr.VolErrors,
-              mr.VolWrites, mr.VolMaxBytes, mr.VolCapacityBytes,
-              mr.VolStatus, mr.Slot);
-            Dmsg4(100, "get_media_record PoolId=%d wanted %d, Status=%s, \
-MediaType=%s\n", mr.PoolId, jcr->PoolId, mr.VolStatus, mr.MediaType);
+              mr.VolFiles, mr.VolBlocks, edit_uint64(mr.VolBytes, ed1),
+              mr.VolMounts, mr.VolErrors, mr.VolWrites, 
+              edit_uint64(mr.MaxVolBytes, ed2), 
+              edit_uint64(mr.VolCapacityBytes, ed3),
+              mr.VolStatus, mr.Slot, mr.MaxVolJobs, mr.MaxVolFiles);
+            Dmsg2(100, "Vol Info for %s: %s", jcr->Job, bs->msg);
         } else { 
            /* Not suitable volume */
-            bnet_fsend(bs, "1998 Volume not appropriate.\n");
+            bnet_fsend(bs, "1998 Volume \"%s\" %s.\n",
+              mr.VolumeName, reason);
         }
 
       } else {
-         bnet_fsend(bs, "1999 Volume Not Found.\n");
+         bnet_fsend(bs, "1997 Volume \"%s\" not in catalog.\n", mr.VolumeName);
       }
 
    
@@ -163,28 +238,88 @@ MediaType=%s\n", mr.PoolId, jcr->PoolId, mr.VolStatus, mr.MediaType);
     * Request to update Media record. Comes typically at the end
     *  of a Storage daemon Job Session
     */
-   } else if (sscanf(bs->msg, Update_media, &Job, &mr.VolumeName, &mr.VolJobs,
-      &mr.VolFiles, &mr.VolBlocks, &mr.VolBytes, &mr.VolMounts, &mr.VolErrors,
-      &mr.VolWrites, &mr.VolMaxBytes, &mr.LastWritten, &mr.VolStatus, 
-      &mr.Slot, &relabel) == 14) {
+   } else if (sscanf(bs->msg, Update_media, &Job, &sdmr.VolumeName, &sdmr.VolJobs,
+      &sdmr.VolFiles, &sdmr.VolBlocks, &sdmr.VolBytes, &sdmr.VolMounts, &sdmr.VolErrors,
+      &sdmr.VolWrites, &sdmr.MaxVolBytes, &sdmr.LastWritten, &sdmr.VolStatus, 
+      &sdmr.Slot, &relabel) == 14) {
+
+      Dmsg3(400, "Update media %s oldStat=%s newStat=%s\n", sdmr.VolumeName,
+        mr.VolStatus, sdmr.VolStatus);
+      bstrncpy(mr.VolumeName, sdmr.VolumeName, sizeof(mr.VolumeName)); /* copy Volume name */
+      unbash_spaces(mr.VolumeName);
+      if (!db_get_media_record(jcr, jcr->db, &mr)) {
+         Jmsg(jcr, M_ERROR, 0, _("Unable to get Media record for Volume %s: ERR=%s\n"),
+             mr.VolumeName, db_strerror(jcr->db));
+         bnet_fsend(bs, "1991 Catalog Request failed: %s", db_strerror(jcr->db));
+        return;
+      }
+      /* Set first written time if this is first job */
+      if (mr.VolJobs == 0 || sdmr.VolJobs == 1) {
+        mr.FirstWritten = jcr->start_time;   /* use Job start time as first write */
+      }
+      Dmsg2(200, "Update media: BefVolJobs=%u After=%u\n", mr.VolJobs, sdmr.VolJobs);
+      /* Copy updated values to original media record */
+      mr.VolJobs     = sdmr.VolJobs;
+      mr.VolFiles    = sdmr.VolFiles;
+      mr.VolBlocks   = sdmr.VolBlocks;
+      mr.VolBytes    = sdmr.VolBytes;
+      mr.VolMounts   = sdmr.VolMounts;
+      mr.VolErrors   = sdmr.VolErrors;
+      mr.VolWrites   = sdmr.VolWrites;
+      mr.LastWritten = sdmr.LastWritten;
+      bstrncpy(mr.VolStatus, sdmr.VolStatus, sizeof(mr.VolStatus));
+      mr.Slot = sdmr.Slot;
+
       /*     
        * Update Media Record
        */
-      if ((mr.VolMaxBytes > 0 && mr.VolBytes >= mr.VolMaxBytes) ||
-         (mr.VolBytes > 0 && jcr->pool->use_volume_once)) {
-         strcpy(mr.VolStatus, "Full");
-      }
 
-      Dmsg2(100, "db_update_media_record. Stat=%s Vol=%s\n",
-        mr.VolStatus, mr.VolumeName);
-      if (db_update_media_record(jcr->db, &mr)) {
+      /* Check limits and expirations if "Append" and not a relable request */
+      if (strcmp(mr.VolStatus, "Append") == 0 && !relabel) {
+        /* First handle Max Volume Bytes */
+        if ((mr.MaxVolBytes > 0 && mr.VolBytes >= mr.MaxVolBytes)) {
+            Jmsg(jcr, M_INFO, 0, _("Max Volume bytes exceeded. "             
+                "Marking Volume \"%s\" as Full.\n"), mr.VolumeName);
+            strcpy(mr.VolStatus, "Full");
+
+        /* Now see if Volume should only be used once */
+        } else if (mr.VolBytes > 0 && jcr->pool->use_volume_once) {
+            Jmsg(jcr, M_INFO, 0, _("Volume used once. "             
+                "Marking Volume \"%s\" as Used.\n"), mr.VolumeName);
+            strcpy(mr.VolStatus, "Used");
+
+        /* Now see if Max Jobs written to volume */
+        } else if (mr.MaxVolJobs > 0 && mr.MaxVolJobs <= mr.VolJobs) {
+            Jmsg(jcr, M_INFO, 0, _("Max Volume jobs exceeded. "       
+                "Marking Volume \"%s\" as Used.\n"), mr.VolumeName);
+            strcpy(mr.VolStatus, "Used");
+
+        /* Now see if Max Files written to volume */
+        } else if (mr.MaxVolFiles > 0 && mr.MaxVolFiles <= mr.VolFiles) {
+            Jmsg(jcr, M_INFO, 0, _("Max Volume files exceeded. "       
+                "Marking Volume \"%s\" as Used.\n"), mr.VolumeName);
+            strcpy(mr.VolStatus, "Used");
+
+        /* Finally, check Use duration expiration */
+        } else if (mr.VolUseDuration > 0) {
+           utime_t now = time(NULL);
+           /* See if Vol Use has expired */
+           if (mr.VolUseDuration <= (now - mr.FirstWritten)) {
+               Jmsg(jcr, M_INFO, 0, _("Max configured use duration exceeded. "       
+                  "Marking Volume \"%s\"as Used.\n"), mr.VolumeName);
+               strcpy(mr.VolStatus, "Used");  /* yes, mark as used */
+           }
+        }
+      }
+      Dmsg2(200, "db_update_media_record. Stat=%s Vol=%s\n", mr.VolStatus, mr.VolumeName);
+      if (db_update_media_record(jcr, jcr->db, &mr)) {
         bnet_fsend(bs, OK_update);
-         Dmsg0(90, "send OK\n");
+         Dmsg0(190, "send OK\n");
       } else {
          Jmsg(jcr, M_ERROR, 0, _("Catalog error updating Media record. %s"),
            db_strerror(jcr->db));
          bnet_fsend(bs, "1992 Update Media error\n");
-         Dmsg0(90, "send error\n");
+         Dmsg0(190, "send error\n");
       }
 
    /*
@@ -198,7 +333,7 @@ MediaType=%s\n", mr.PoolId, jcr->PoolId, mr.VolStatus, mr.MediaType);
       jm.MediaId = jcr->MediaId;
       Dmsg6(100, "create_jobmedia JobId=%d MediaId=%d SF=%d EF=%d FI=%d LI=%d\n",
         jm.JobId, jm.MediaId, jm.StartFile, jm.EndFile, jm.FirstIndex, jm.LastIndex);
-      if(!db_create_jobmedia_record(jcr->db, &jm)) {
+      if (!db_create_jobmedia_record(jcr, jcr->db, &jm)) {
          Jmsg(jcr, M_ERROR, 0, _("Catalog error creating JobMedia record. %s"),
            db_strerror(jcr->db));
          bnet_fsend(bs, "1991 Update JobMedia error\n");
@@ -208,18 +343,23 @@ MediaType=%s\n", mr.PoolId, jcr->PoolId, mr.VolStatus, mr.MediaType);
       }
 
    } else {
-      omsg = (char *) get_memory(bs->msglen+1);
-      strcpy(omsg, bs->msg);
+      omsg = get_memory(bs->msglen+1);
+      pm_strcpy(&omsg, bs->msg);
       bnet_fsend(bs, "1990 Invalid Catalog Request: %s", omsg);    
+      Jmsg1(jcr, M_ERROR, 0, _("Invalid Catalog request: %s"), omsg);
       free_memory(omsg);
    }
-   Dmsg1(20, ">CatReq response: %s", bs->msg);
+   Dmsg1(120, ">CatReq response: %s", bs->msg);
+   Dmsg1(200, "Leave catreq jcr 0x%x\n", jcr);
    return;
 }
 
 /*
  * Update File Attributes in the catalog with data
- *  sent by the Storage daemon.
+ *  sent by the Storage daemon.  Note, we receive the whole
+ *  attribute record, but we select out only the stat packet,
+ *  VolSessionId, VolSessionTime, FileIndex, and file name 
+ *  to store in the catalog.
  */
 void catalog_update(JCR *jcr, BSOCK *bs, char *msg)
 {
@@ -236,7 +376,7 @@ void catalog_update(JCR *jcr, BSOCK *bs, char *msg)
    if (!jcr->pool->catalog_files) {
       return;
    }
-   db_start_transaction(jcr->db);     /* start transaction if not already open */
+   db_start_transaction(jcr, jcr->db);    /* start transaction if not already open */
    skip_nonspaces(&p);               /* UpdCat */
    skip_spaces(&p);
    skip_nonspaces(&p);               /* Job=nnn */
@@ -255,7 +395,7 @@ void catalog_update(JCR *jcr, BSOCK *bs, char *msg)
    Dmsg5(99, "UpdCat VolSessId=%d VolSessT=%d FI=%d Strm=%d data_len=%d\n",
       VolSessionId, VolSessionTime, FileIndex, Stream, data_len);
 
-   if (Stream == STREAM_UNIX_ATTRIBUTES) {
+   if (Stream == STREAM_UNIX_ATTRIBUTES || Stream == STREAM_UNIX_ATTRIBUTES_EX) {
       skip_nonspaces(&p);            /* skip FileIndex */
       skip_spaces(&p);
       skip_nonspaces(&p);            /* skip FileType */
@@ -264,8 +404,8 @@ void catalog_update(JCR *jcr, BSOCK *bs, char *msg)
       len = strlen(fname);       /* length before attributes */
       attr = &fname[len+1];
 
-      Dmsg2(99, "dird<stored: stream=%d %s\n", Stream, fname);
-      Dmsg1(99, "dird<stored: attr=%s\n", attr);
+      Dmsg2(109, "dird<stored: stream=%d %s\n", Stream, fname);
+      Dmsg1(109, "dird<stored: attr=%s\n", attr);
       ar.attr = attr; 
       ar.fname = fname;
       ar.FileIndex = FileIndex;
@@ -273,27 +413,34 @@ void catalog_update(JCR *jcr, BSOCK *bs, char *msg)
       ar.link = NULL;
       ar.JobId = jcr->JobId;
 
-      Dmsg2(11, "dird<filed: stream=%d %s\n", Stream, fname);
-      Dmsg1(20, "dird<filed: attr=%s\n", attr);
+      Dmsg2(111, "dird<filed: stream=%d %s\n", Stream, fname);
+      Dmsg1(120, "dird<filed: attr=%s\n", attr);
 
-      /* ***FIXME*** fix link field */
-      if (!db_create_file_attributes_record(jcr->db, &ar)) {
+      if (!db_create_file_attributes_record(jcr, jcr->db, &ar)) {
          Jmsg1(jcr, M_FATAL, 0, _("Attribute create error. %s"), db_strerror(jcr->db));
       }
-      /* Save values for MD5 update */
+      /* Save values for SIG update */
       jcr->FileId = ar.FileId;
       jcr->FileIndex = FileIndex;
-   } else if (Stream == STREAM_MD5_SIGNATURE) {
+   } else if (Stream == STREAM_MD5_SIGNATURE || Stream == STREAM_SHA1_SIGNATURE) {
       fname = p;
       if (jcr->FileIndex != FileIndex) {    
-         Jmsg(jcr, M_WARNING, 0, "Got MD5 but not same block as attributes\n");
+         Jmsg(jcr, M_WARNING, 0, "Got MD5/SHA1 but not same File as attributes\n");
       } else {
-        /* Update MD5 signature in catalog */
-        char MD5buf[50];           /* 24 bytes should be enough */
-        bin_to_base64(MD5buf, fname, 16);
-         Dmsg2(90, "MD5len=%d MD5=%s\n", strlen(MD5buf), MD5buf);
-        if (!db_add_MD5_to_file_record(jcr->db, jcr->FileId, MD5buf)) {
-            Jmsg(jcr, M_ERROR, 0, _("Catalog error updating MD5. %s"), 
+        /* Update signature in catalog */
+        char SIGbuf[50];           /* 24 bytes should be enough */
+        int len, type;
+        if (Stream == STREAM_MD5_SIGNATURE) {
+           len = 16;
+           type = MD5_SIG;
+        } else {
+           len = 20;
+           type = SHA1_SIG;
+        }
+        bin_to_base64(SIGbuf, fname, len);
+         Dmsg3(190, "SIGlen=%d SIG=%s type=%d\n", strlen(SIGbuf), SIGbuf, Stream);
+        if (!db_add_SIG_to_file_record(jcr, jcr->db, jcr->FileId, SIGbuf, type)) {
+            Jmsg(jcr, M_ERROR, 0, _("Catalog error updating MD5/SHA1. %s"), 
               db_strerror(jcr->db));
         }
       }