]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/dird/catreq.c
This commit was manufactured by cvs2svn to create tag
[bacula/bacula] / bacula / src / dird / catreq.c
index b87346e148dde2005aab26c79da74aeddfea71d8..91feaff4bb0f000b8fd699249e9248bea55dab6f 100644 (file)
@@ -70,7 +70,7 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
    MEDIA_DBR mr, sdmr; 
    JOBMEDIA_DBR jm;
    char Job[MAX_NAME_LENGTH];
-   int index, ok, relabel, writing;
+   int index, ok, label, writing;
    POOLMEM *omsg;
 
    memset(&mr, 0, sizeof(mr));
@@ -82,7 +82,7 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
     */
    Dmsg1(200, "catreq %s", bs->msg);
    if (sscanf(bs->msg, Find_media, &Job, &index) == 2) {
-      ok = find_next_volume_for_append(jcr, &mr, TRUE /*create*/);
+      ok = find_next_volume_for_append(jcr, &mr, TRUE /*permit create new vol*/);
       /*
        * Send Find Media response to Storage daemon 
        */
@@ -112,14 +112,16 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
        */
       unbash_spaces(mr.VolumeName);
       if (db_get_media_record(jcr, jcr->db, &mr)) {
-        bool VolSuitable = false;
-         char *reason = "";           /* detailed reason for rejection */
+        char *reason = NULL;         /* detailed reason for rejection */
         jcr->MediaId = mr.MediaId;
          Dmsg1(120, "VolumeInfo MediaId=%d\n", jcr->MediaId);
         pm_strcpy(&jcr->VolumeName, mr.VolumeName);
-        if (!writing) {
-           VolSuitable = true;        /* accept anything for read */
-        } else {
+        /*                   
+         * If we are reading, accept any volume (reason == NULL)
+         * If we are writing, check if the Volume is valid 
+         *   for this job, and do a recycle if necessary
+         */ 
+        if (writing) {
            /* 
             * SD wants to write this Volume, so make
             *   sure it is suitable for this job, i.e.
@@ -128,53 +130,28 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
             */
            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";
-               /* What we're trying to do here is see if the current volume is
-                * "recycleable" - ie. if we prune all expired jobs off it, is
-               * it now possible to reuse it for the job that it is currently
-               * needed for?
-               */
-              if ((mr.LastWritten + mr.VolRetention) < (utime_t)time(NULL)
-                    && mr.Recycle && jcr->pool->recycle_current_volume   
-                     && (strcmp(mr.VolStatus, "Full") == 0 ||
-                        strcmp(mr.VolStatus, "Used") == 0)) {
-                 /*
-                  * Attempt prune of current volume to see if we can
-                  * recycle it for use.
-                  */
-                 UAContext *ua;
-
-                 ua = new_ua_context(jcr);
-                 ok = prune_volume(ua, &mr);
-                 free_ua_context(ua);
-
-                 if (ok) {
-                    /* If fully purged, recycle current volume */
-                    if (recycle_volume(jcr, &mr)) {
-                        Jmsg(jcr, M_INFO, 0, "Recycled current "
-                              "volume \"%s\"\n", mr.VolumeName);
-                       VolSuitable = true;
-                    } else {
-                        reason = "not Append or Recycle (recycling of the "
-                           "current volume failed)";
-                    }
-                 } else {
-                     reason = "not Append or Recycle (cannot automatically "
-                        "recycle current volume, as it still contains "
-                        "unpruned data)";
-                 }
-              }
            } 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 = true;
+             /* 
+              * ****FIXME*** 
+              *   This test (accept_any_volume) is turned off
+               *   because it doesn't properly check if the volume
+              *   really is out of sequence!
+              *
+              * } else if (!jcr->pool->accept_any_volume) {
+               *    reason = "Volume not in sequence";
+              */
+
+              /* 
+               * Now try recycling if necessary
+               *   reason set non-NULL if we cannot use it
+               *   We also check for Volume being expired.
+               */
+              check_if_volume_valid_or_recyclable(jcr, &mr, &reason);
            }
         }
-        if (VolSuitable) {
+        if (reason == NULL) {
            char ed1[50], ed2[50], ed3[50];
            /*
             * Send Find Media response to Storage daemon 
@@ -189,8 +166,8 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
             Dmsg2(100, "Vol Info for %s: %s", jcr->Job, bs->msg);
         } else { 
            /* Not suitable volume */
-            bnet_fsend(bs, "1998 Volume \"%s\" %s.\n",
-              mr.VolumeName, reason);
+            bnet_fsend(bs, "1998 Volume \"%s\" status is %s, %s.\n", mr.VolumeName, 
+              mr.VolStatus, reason);
         }
 
       } else {
@@ -200,12 +177,13 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
    
    /*
     * Request to update Media record. Comes typically at the end
-    *  of a Storage daemon Job Session
+    *  of a Storage daemon Job Session or when labeling/relabeling a
+    *  Volume.
     */
    } 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) {
+      &sdmr.Slot, &label) == 14) {
 
       db_lock(jcr->db);
       Dmsg3(400, "Update media %s oldStat=%s newStat=%s\n", sdmr.VolumeName,
@@ -223,6 +201,11 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
       if (mr.VolJobs == 0 || sdmr.VolJobs == 1) {
         mr.FirstWritten = jcr->start_time;   /* use Job start time as first write */
       }
+      /* If we just labeled the tape set time */
+      Dmsg2(400, "label=%d labeldate=%d\n", label, mr.LabelDate);
+      if (label || mr.LabelDate == 0) {
+        mr.LabelDate = time(NULL);
+      }
       Dmsg2(200, "Update media: BefVolJobs=%u After=%u\n", mr.VolJobs, sdmr.VolJobs);
       /* Copy updated values to original media record */
       mr.VolJobs     = sdmr.VolJobs;
@@ -236,48 +219,10 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
       bstrncpy(mr.VolStatus, sdmr.VolStatus, sizeof(mr.VolStatus));
       mr.Slot = sdmr.Slot;
 
-      /*     
-       * Update Media Record
-       */
-
-      /* 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);
+      /*
+       * Write the modified record to the DB
+       */
       if (db_update_media_record(jcr, jcr->db, &mr)) {
         bnet_fsend(bs, OK_update);
          Dmsg0(190, "send OK\n");
@@ -287,6 +232,7 @@ void catalog_request(JCR *jcr, BSOCK *bs, char *msg)
          bnet_fsend(bs, "1992 Update Media error\n");
          Dmsg0(190, "send error\n");
       }
+      has_volume_expired(jcr, &mr);   /* if expired, change Media record */
       db_unlock(jcr->db);
 
    /*