]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/device.c
Implement first cut DCR in SD
[bacula/bacula] / bacula / src / stored / device.c
index 01dc5036077f1760c242adb0a7086099148d02fd..3351c87ecbf718c12ba1ee00c72404749d126718 100644 (file)
@@ -29,7 +29,7 @@
  *   Version $Id$
  */
 /*
-   Copyright (C) 2000-2003 Kern Sibbald and John Walker
+   Copyright (C) 2000-2004 Kern Sibbald and John Walker
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -61,6 +61,13 @@ extern int debug_level;
  * medium condition or worse, and error condition.
  * Attempt to "recover" by obtaining a new Volume.
  *
+ * Here are a few things to know:
+ *  jcr->VolCatInfo contains the info on the "current" tape for this job.
+ *  dev->VolCatInfo contains the info on the tape in the drive.
+ *    The tape in the drive could have changed several times since 
+ *    the last time the job used it (jcr->VolCatInfo).
+ *  jcr->VolumeName is the name of the current/desired tape in the drive.
+ *
  * We enter with device locked, and 
  *     exit with device locked.
  *
@@ -71,14 +78,15 @@ extern int debug_level;
  */
 int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
 {
-   uint32_t stat = 0;                  
+   uint32_t stat;
    char PrevVolName[MAX_NAME_LENGTH];
    DEV_BLOCK *label_blk;
    char b1[30], b2[30];
    time_t wait_time;
+   char dt[MAX_TIME_LENGTH];
 
    wait_time = time(NULL);
-   status_dev(dev, &stat);
+   stat = status_dev(dev);
    if (!(stat & BMT_EOD)) {
       return 0;                       /* this really shouldn't happen */
    }
@@ -89,37 +97,21 @@ int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    /* Unlock, but leave BLOCKED */
    unlock_device(dev);
 
-   /* 
-    * Walk through all attached jcrs creating a jobmedia_record()
-    */
-   Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
-   for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
-      if (mjcr->JobId == 0) {
-        continue;                 /* ignore console */
-      }
-      Dmsg1(100, "create JobMedia for Job %s\n", mjcr->Job);
-      if (dev->state & ST_TAPE) {
-        mjcr->EndBlock = dev->EndBlock;
-        mjcr->EndFile  = dev->EndFile;
-         Dmsg2(200, "Fixup EndFile=%u EndBlock=%u\n", mjcr->EndFile, mjcr->EndBlock);
-      } else {
-        mjcr->EndBlock = (uint32_t)dev->file_addr;
-        mjcr->EndFile = (uint32_t)(dev->file_addr >> 32);
-      }
-      if (!dir_create_jobmedia_record(mjcr)) {
-         Jmsg(mjcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=%s Job=%s\n"),
-           dev->VolCatInfo.VolCatName, mjcr->Job);
-        P(dev->mutex);
-        unblock_device(dev);
-        return 0;
-      }
-      mjcr->VolFirstIndex = 0;     /* prevent writing jobmedia second time */
+   /* Create a jobmedia record for this job */
+   if (!dir_create_jobmedia_record(jcr)) {
+       Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
+           jcr->VolCatInfo.VolCatName, jcr->Job);
+       P(dev->mutex);
+       unblock_device(dev);
+       return 0;
    }
 
-   strcpy(dev->VolCatInfo.VolCatStatus, "Full");
-   Dmsg2(200, "Call update_vol_info Stat=%s Vol=%s\n", 
+   bstrncpy(dev->VolCatInfo.VolCatStatus, "Full", sizeof(dev->VolCatInfo.VolCatStatus));
+   Dmsg2(100, "Call update_vol_info Stat=%s Vol=%s\n", 
       dev->VolCatInfo.VolCatStatus, dev->VolCatInfo.VolCatName);
-   if (!dir_update_volume_info(jcr, &dev->VolCatInfo, 0)) {    /* send Volume info to Director */
+   dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
+   dev->VolCatInfo.VolCatJobs++;             /* increment number of jobs */
+   if (!dir_update_volume_info(jcr, dev, 0)) {   /* send Volume info to Director */
       P(dev->mutex);
       unblock_device(dev);
       return 0;                   /* device locked */
@@ -132,9 +124,10 @@ int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    label_blk = new_block(dev);
 
    /* Inform User about end of medium */
-   Jmsg(jcr, M_INFO, 0, _("End of medium on Volume \"%s\" Bytes=%s Blocks=%s.\n"), 
+   Jmsg(jcr, M_INFO, 0, _("End of medium on Volume \"%s\" Bytes=%s Blocks=%s at %s.\n"), 
        PrevVolName, edit_uint64_with_commas(dev->VolCatInfo.VolCatBytes, b1),
-       edit_uint64_with_commas(dev->VolCatInfo.VolCatBlocks, b2));
+       edit_uint64_with_commas(dev->VolCatInfo.VolCatBlocks, b2),
+       bstrftime(dt, sizeof(dt), time(NULL)));
 
    if (!mount_next_write_volume(jcr, dev, label_blk, 1)) {
       free_block(label_blk);
@@ -144,8 +137,8 @@ int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    }
    P(dev->mutex);                 /* lock again */
 
-   Jmsg(jcr, M_INFO, 0, _("New volume \"%s\" mounted on device %s\n"),
-      jcr->VolumeName, dev_name(dev));
+   Jmsg(jcr, M_INFO, 0, _("New volume \"%s\" mounted on device %s at %s.\n"),
+      jcr->VolumeName, dev_name(dev), bstrftime(dt, sizeof(dt), time(NULL)));
 
    /* 
     * If this is a new tape, the label_blk will contain the
@@ -163,24 +156,28 @@ int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    }
    free_block(label_blk);
 
-
-   /* Update start block/file for overflow block */
-   jcr->NumVolumes++;
+   /* 
+    * Walk through all attached jcrs indicating the volume has changed  
+    */
+   Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
    for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
-      /* Set new start/end positions */
-      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);
+      if (mjcr->JobId == 0) {
+        continue;                 /* ignore console */
+      }
+      mjcr->dcr->NewVol = true;
+      if (jcr != mjcr) {
+        pm_strcpy(&mjcr->VolumeName, jcr->VolumeName);  /* get a copy of the new volume */
+        bstrncpy(mjcr->dcr->VolumeName, jcr->VolumeName, sizeof(mjcr->dcr->VolumeName));
       }
-      /* Set first FirstIndex for new Volume */
-      mjcr->VolFirstIndex = mjcr->JobFiles;
-      mjcr->run_time += time(NULL) - wait_time; /* correct run time */
    }
 
-   /* Write overflow block to tape */
+   /* Clear NewVol now because dir_get_volume_info() already done */
+   jcr->dcr->NewVol = false;
+   set_new_volume_parameters(jcr, dev);
+
+   jcr->run_time += time(NULL) - wait_time; /* correct run time for mount wait */
+
+   /* Write overflow block to device */
    Dmsg0(190, "Write overflow block to dev\n");
    if (!write_block_to_dev(jcr, dev, block)) {
       Pmsg1(0, "write_block_to_device overflow block failed. ERR=%s",
@@ -193,9 +190,61 @@ int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    return 1;                               /* device locked */
 }
 
+/*
+ * We have a new Volume mounted, so reset the Volume parameters
+ *  concerning this job.  The global changes were made earlier
+ *  in the dev structure.
+ */
+void set_new_volume_parameters(JCR *jcr, DEVICE *dev) 
+{
+   DCR *dcr = jcr->dcr;
+   if (dcr->NewVol && !dir_get_volume_info(jcr, GET_VOL_INFO_FOR_WRITE)) {
+      Jmsg1(jcr, M_ERROR, 0, "%s", jcr->errmsg);
+   }
+   /* Set new start/end positions */
+   if (dev_state(dev, ST_TAPE)) {
+      dcr->StartBlock = dev->block_num;
+      dcr->StartFile = dev->file;
+   } else {
+      dcr->StartBlock = (uint32_t)dev->file_addr;
+      dcr->StartFile  = (uint32_t)(dev->file_addr >> 32);
+   }
+   /* Reset indicies */
+   dcr->VolFirstIndex = 0;
+   dcr->VolLastIndex = 0;
+   jcr->NumVolumes++;
+   dcr->NewVol = false;
+   dcr->WroteVol = false;
+}
 
 /*
- *   Open the device. Expect dev to already be initialized.  
+ * We are now in a new Volume file, so reset the Volume parameters
+ *  concerning this job.  The global changes were made earlier
+ *  in the dev structure.
+ */
+void set_new_file_parameters(JCR *jcr, DEVICE *dev) 
+{
+   DCR *dcr = jcr->dcr;
+    
+   /* Set new start/end positions */
+   if (dev_state(dev, ST_TAPE)) {
+      dcr->StartBlock = dev->block_num;
+      dcr->StartFile = dev->file;
+   } else {
+      dcr->StartBlock = (uint32_t)dev->file_addr;
+      dcr->StartFile  = (uint32_t)(dev->file_addr >> 32);
+   }
+   /* Reset indicies */
+   dcr->VolFirstIndex = 0;
+   dcr->VolLastIndex = 0;
+   dcr->NewFile = false;
+   dcr->WroteVol = false;
+}
+
+
+
+/*
+ *   First Open of the device. Expect dev to already be initialized.  
  *
  *   This routine is used only when the Storage daemon starts 
  *   and always_open is set, and in the stand-alone utility
@@ -208,7 +257,7 @@ int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
  *   Retuns: 0 on failure
  *          1 on success
  */
-int open_device(DEVICE *dev)
+int first_open_device(DEVICE *dev)
 {
    Dmsg0(120, "start open_output_device()\n");
    if (!dev) {
@@ -225,8 +274,14 @@ int open_device(DEVICE *dev)
    }
 
    if (!(dev->state & ST_OPENED)) {
+       int mode;
+       if (dev_cap(dev, CAP_STREAM)) {
+         mode = OPEN_WRITE_ONLY;
+       } else {
+         mode = OPEN_READ_WRITE;
+       }
       Dmsg0(129, "Opening device.\n");
-      if (open_dev(dev, NULL, READ_WRITE) < 0) {
+      if (open_dev(dev, NULL, mode) < 0) {
          Emsg1(M_FATAL, 0, _("dev open failed: %s\n"), dev->errmsg);
         unlock_device(dev);
         return 0;
@@ -238,6 +293,28 @@ int open_device(DEVICE *dev)
    return 1;
 }
 
+/* 
+ * Make sure device is open, if not do so 
+ */
+int open_device(JCR *jcr, DEVICE *dev)
+{
+   /* Open device */
+   if  (!(dev_state(dev, ST_OPENED))) {
+       int mode;
+       if (dev_cap(dev, CAP_STREAM)) {
+         mode = OPEN_WRITE_ONLY;
+       } else {
+         mode = OPEN_READ_WRITE;
+       }
+       if (open_dev(dev, jcr->VolCatInfo.VolCatName, mode) < 0) {
+          Jmsg2(jcr, M_FATAL, 0, _("Unable to open device %s. ERR=%s\n"), 
+            dev_name(dev), strerror_dev(dev));
+         return 0;
+       }
+   }
+   return 1;
+}
+
 /* 
  * When dev_blocked is set, all threads EXCEPT thread with id no_wait_id
  * must wait. The no_wait_id thread is out obtaining a new volume
@@ -261,6 +338,19 @@ void _lock_device(char *file, int line, DEVICE *dev)
    }
 }
 
+/*
+ * Check if the device is blocked or not
+ */
+int device_is_unmounted(DEVICE *dev)
+{
+   int stat;
+   P(dev->mutex);
+   stat = (dev->dev_blocked == BST_UNMOUNTED) ||
+         (dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP);
+   V(dev->mutex);
+   return stat;
+}
+
 void _unlock_device(char *file, int line, DEVICE *dev) 
 {
    Dmsg2(100, "unlock from %s:%d\n", file, line);
@@ -308,6 +398,7 @@ void _steal_device_lock(char *file, int line, DEVICE *dev, bsteal_lock_t *hold,
    Dmsg4(100, "steal lock. old=%d new=%d from %s:%d\n", dev->dev_blocked, state,
       file, line);
    hold->dev_blocked = dev->dev_blocked;
+   hold->dev_prev_blocked = dev->dev_prev_blocked;
    hold->no_wait_id = dev->no_wait_id;
    dev->dev_blocked = state;
    dev->no_wait_id = pthread_self();
@@ -324,5 +415,6 @@ void _give_back_device_lock(char *file, int line, DEVICE *dev, bsteal_lock_t *ho
       dev->dev_blocked, hold->dev_blocked, file, line);
    P(dev->mutex);
    dev->dev_blocked = hold->dev_blocked;
+   dev->dev_prev_blocked = hold->dev_prev_blocked;
    dev->no_wait_id = hold->no_wait_id;
 }