]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/acquire.c
Simplify two messages in acquire.c
[bacula/bacula] / bacula / src / stored / acquire.c
index 6cf7940624a5e6494ef981ee4173f1491e68f8d1..8599e0b35921ac22793fe1aa7eaf96291e3c9e3c 100644 (file)
@@ -6,7 +6,7 @@
  *   Version $Id$
  */
 /*
-   Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
+   Copyright (C) 2002-2003 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
@@ -28,6 +28,7 @@
 #include "bacula.h"                   /* pull in global headers */
 #include "stored.h"                   /* pull in Storage Deamon headers */
 
+static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
 
 /********************************************************************* 
  * Acquire device for reading. We permit (for the moment)
@@ -41,6 +42,8 @@ int acquire_device_for_read(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
 {
    int stat = 0;
    int tape_previously_mounted;
+   VOL_LIST *vol;
+   int autochanger = 0;
 
    lock_device(dev);
    block_device(dev, BST_DOING_ACQUIRE);
@@ -49,13 +52,25 @@ int acquire_device_for_read(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
    tape_previously_mounted = (dev->state & ST_READ) || (dev->state & ST_APPEND);
 
    if (dev->state & ST_READ || dev->num_writers > 0) {
-      Jmsg1(jcr, M_FATAL, 0, _("Device %s is busy. Job cancelled.\n"), dev_name(dev));
+      Jmsg1(jcr, M_FATAL, 0, _("Device %s is busy. Job canceled.\n"), dev_name(dev));
       goto get_out;
    }
 
-   for (;;) {
-      if (job_cancelled(jcr)) {
-         Mmsg0(&dev->errmsg, _("Job cancelled.\n"));
+   /* Find next Volume, if any */
+   vol = jcr->VolList;
+   if (!vol) {
+      Jmsg(jcr, M_FATAL, 0, _("No volumes specified. Job canceled.\n"));
+      goto get_out;
+   }
+   jcr->CurVolume++;
+   for (int i=1; i<jcr->CurVolume; i++) {
+      vol = vol->next;
+   }
+   pm_strcpy(&jcr->VolumeName, vol->VolumeName);
+
+   for (int i=0; i<5; i++) {
+      if (job_canceled(jcr)) {
+         Mmsg0(&dev->errmsg, _("Job canceled.\n"));
         goto get_out;                /* error return */
       }
       /*
@@ -72,46 +87,64 @@ int acquire_device_for_read(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
          }
           Dmsg1(129, "open_dev %s OK\n", dev_name(dev));
       }
-      /* ***FIXME*** this is probably not necessary */
       dev->state &= ~ST_LABEL;          /* force reread of label */
       Dmsg0(200, "calling read-vol-label\n");
       switch (read_dev_volume_label(jcr, dev, block)) {
-        case VOL_OK:
-           break;                    /* got it */
-        case VOL_IO_ERROR:
-           /*
-            * Send error message generated by read_dev_volume_label()
-            *  only we really had a tape mounted. This supresses superfluous
-            *  error messages when nothing is mounted.
-            */
-           if (tape_previously_mounted) {
-               Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
-           }
-           goto default_path;
-        default:
-            Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
+      case VOL_OK:
+        stat = 1;
+        break;                    /* got it */
+      case VOL_IO_ERROR:
+        /*
+         * Send error message generated by read_dev_volume_label()
+         *  only we really had a tape mounted. This supresses superfluous
+         *  error messages when nothing is mounted.
+         */
+        if (tape_previously_mounted) {
+            Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
+        }
+        goto default_path;
+      default:
+         Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);
 default_path:
-           tape_previously_mounted = 0;
-            Dmsg0(200, "dir_get_volume_info\n");
-           dir_get_volume_info(jcr, 0);         /* Get info for reading */
+        tape_previously_mounted = 1;
+        if (autochanger) {
+           invalidate_slot_in_catalog(jcr);
+        }
+         Dmsg0(200, "dir_get_volume_info\n");
+        if (!dir_get_volume_info(jcr, 0)) { 
+            Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
+        }
+        /* Call autochanger only once unless ask_sysop called */
+        if (!autochanger) {
             Dmsg2(200, "calling autoload Vol=%s Slot=%d\n",
               jcr->VolumeName, jcr->VolCatInfo.Slot);                         
-           if (autoload_device(jcr, dev, 0, NULL)) {
+           if ((autochanger=autoload_device(jcr, dev, 0, NULL))) {
               continue;
            }
-           /* Mount a specific volume and no other */
-            Dmsg0(200, "calling dir_ask_sysop\n");
-           if (!dir_ask_sysop_to_mount_volume(jcr, dev)) {
-              goto get_out;          /* error return */
-           }
-           continue;                 /* try reading again */
-      }
+        }
+        /* Mount a specific volume and no other */
+         Dmsg0(200, "calling dir_ask_sysop\n");
+        if (!dir_ask_sysop_to_mount_volume(jcr, dev)) {
+           goto get_out;             /* error return */
+        }
+        autochanger = 0;             /* permit using autochanger again */
+        continue;                    /* try reading again */
+      } /* end switch */
       break;
+   } /* end for loop */
+   if (stat == 0) {
+      Jmsg1(jcr, M_FATAL, 0, _("Too many errors trying to mount device \"%s\".\n"),
+           dev_name(dev));
+      goto get_out;
    }
 
    dev->state |= ST_READ;
    attach_jcr_to_device(dev, jcr);    /* attach jcr to device */
-   stat = 1;                         /* good return */
+   if ((dev->state & ST_TAPE) && vol->start_file > 0) {
+      Dmsg1(200, "====== Got start_file = %d\n", vol->start_file);
+      Jmsg(jcr, M_INFO, 0, _("Forward spacing to file %d.\n"), vol->start_file);
+      fsf_dev(dev, vol->start_file);
+   }
 
 get_out:
    P(dev->mutex); 
@@ -124,20 +157,24 @@ get_out:
  * Acquire device for writing. We permit multiple writers.
  *  If this is the first one, we read the label.
  *
- *  Returns: 0 if failed for any reason
- *          1 if successful
+ *  Returns: NULL if failed for any reason
+ *          dev if successful (may change if new dev opened)
+ *  This routine must be single threaded because we may create
+ *   multiple devices (for files), thus we have our own mutex 
+ *   on top of the device mutex.
  */
-int acquire_device_for_append(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
+DEVICE * acquire_device_for_append(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
 {
    int release = 0;
    int do_mount = 0;
-   int stat = 0;
+   DEVICE *rtn_dev = NULL;
 
    lock_device(dev);
    block_device(dev, BST_DOING_ACQUIRE);
    unlock_device(dev);
+   P(mutex);                        /* lock all devices */
    Dmsg1(190, "acquire_append device is %s\n", dev_is_tape(dev)?"tape":"disk");
-
+            
 
    if (dev->state & ST_APPEND) {
       /* 
@@ -150,12 +187,33 @@ int acquire_device_for_append(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
        *    dir_find_next_appendable_volume
        */
       strcpy(jcr->VolumeName, dev->VolHdr.VolName);
-      if (!dir_get_volume_info(jcr, 1) ||
+      if (!dir_get_volume_info(jcr, 1) &&
          !(dir_find_next_appendable_volume(jcr) &&
            strcmp(dev->VolHdr.VolName, jcr->VolumeName) == 0)) { /* wrong tape mounted */
         if (dev->num_writers != 0) {
-            Jmsg(jcr, M_FATAL, 0, _("Device %s is busy writing with another Volume.\n"), dev_name(dev));
-           goto get_out;
+           DEVICE *d = ((DEVRES *)dev->device)->dev;
+           uint32_t open_vols = 0;
+           for ( ; d; d=d->next) {
+              open_vols++;
+           }
+           if (dev->state & ST_FILE && dev->max_open_vols > open_vols) {
+              d = init_dev(NULL, (DEVRES *)dev->device); /* init new device */
+              d->prev = dev;                   /* chain in new device */
+              d->next = dev->next;
+              dev->next = d;
+              /* Release old device */
+              P(dev->mutex); 
+              unblock_device(dev);
+              V(dev->mutex);
+              /* Make new device current device and lock it */
+              dev = d;
+              lock_device(dev);
+              block_device(dev, BST_DOING_ACQUIRE);
+              unlock_device(dev);
+           } else {
+               Jmsg(jcr, M_FATAL, 0, _("Device %s is busy writing on another Volume.\n"), dev_name(dev));
+              goto get_out;
+           }
         }
         /* Wrong tape mounted, release it, then fall through to get correct one */
         release = 1;
@@ -188,13 +246,14 @@ int acquire_device_for_append(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
       jcr->NumVolumes = 1;
    }
    attach_jcr_to_device(dev, jcr);    /* attach jcr to device */
-   stat = 1;                         /* good return */
+   rtn_dev = dev;                    /* return device */
 
 get_out:
    P(dev->mutex); 
    unblock_device(dev);
    V(dev->mutex);
-   return stat;
+   V(mutex);                         /* unlock other threads */
+   return rtn_dev;
 }
 
 /*
@@ -208,8 +267,8 @@ int release_device(JCR *jcr, DEVICE *dev)
    Dmsg1(100, "release_device device is %s\n", dev_is_tape(dev)?"tape":"disk");
    if (dev->state & ST_READ) {
       dev->state &= ~ST_READ;        /* clear read bit */
-      if (!dev_is_tape(dev) || !(dev->capabilities & CAP_ALWAYSOPEN)) {
-        if (dev->capabilities & CAP_OFFLINEUNMOUNT) {
+      if (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN)) {
+        if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
            offline_dev(dev);
         }
         close_dev(dev);
@@ -218,18 +277,27 @@ int release_device(JCR *jcr, DEVICE *dev)
 
    } else if (dev->num_writers > 0) {
       dev->num_writers--;
+      if (dev->state & ST_TAPE) {
+        jcr->EndBlock = dev->EndBlock;
+        jcr->EndFile  = dev->EndFile;
+         Dmsg2(200, "Release device: EndFile=%u EndBlock=%u\n", jcr->EndFile, jcr->EndBlock);
+      } else {
+        jcr->EndBlock = (uint32_t)dev->file_addr;
+        jcr->EndFile = (uint32_t)(dev->file_addr >> 32);
+      }
       Dmsg1(100, "There are %d writers in release_device\n", dev->num_writers);
       if (dev->num_writers == 0) {
-        weof_dev(dev, 1);
          Dmsg0(100, "dir_create_jobmedia_record. Release\n");
         dir_create_jobmedia_record(jcr);
-        dev->VolCatInfo.VolCatFiles++;             /* increment number of files */
+        weof_dev(dev, 1);
+        dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
+        dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
         /* Note! do volume update before close, which zaps VolCatInfo */
-         Dmsg0(100, "dir_update_vol_info. Release\n");
+         Dmsg0(200, "dir_update_vol_info. Release0\n");
         dir_update_volume_info(jcr, &dev->VolCatInfo, 0); /* send Volume info to Director */
 
-        if (!dev_is_tape(dev) || !(dev->capabilities & CAP_ALWAYSOPEN)) {
-           if (dev->capabilities & CAP_OFFLINEUNMOUNT) {
+        if (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN)) {
+           if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
               offline_dev(dev);
            }
            close_dev(dev);
@@ -237,7 +305,9 @@ int release_device(JCR *jcr, DEVICE *dev)
       } else {
          Dmsg0(100, "dir_create_jobmedia_record. Release\n");
         dir_create_jobmedia_record(jcr);
-         Dmsg0(100, "dir_update_vol_info. Release\n");
+         Dmsg0(200, "dir_update_vol_info. Release1\n");
+        dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
+        dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
         dir_update_volume_info(jcr, &dev->VolCatInfo, 0); /* send Volume info to Director */
       }
    } else {
@@ -245,6 +315,14 @@ int release_device(JCR *jcr, DEVICE *dev)
            dev_name(dev), NPRT(jcr->VolumeName));
    }
    detach_jcr_from_device(dev, jcr);
-   unlock_device(dev);
+   if (dev->prev && !(dev->state & ST_READ) && dev->num_writers == 0) {
+      P(mutex);
+      unlock_device(dev);
+      dev->prev->next = dev->next;    /* dechain */
+      term_dev(dev);
+      V(mutex);
+   } else {
+      unlock_device(dev);
+   }
    return 1;
 }