]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/dev.c
Fix conio.h problem on Solaris
[bacula/bacula] / bacula / src / stored / dev.c
index 0bea32dcf7cfe802466b774db8b4aa6776336550..52320bd725c5d90c41b15f6d2b4f5f1a38950f08 100644 (file)
@@ -2,7 +2,7 @@
  *
  *   dev.c  -- low level operations on device (storage device)
  *
- *             Kern Sibbald
+ *             Kern Sibbald, MM 
  *
  *     NOTE!!!! None of these routines are reentrant. You must
  *       use lock_device() and unlock_device() at a higher level,
  * to include ST_EOT, which is ephimeral, and ST_WEOT, which is
  * persistent. Lots of routines clear ST_EOT, but ST_WEOT is
  * cleared only when the problem goes away.  Now when ST_WEOT
- * is set all calls to write_dev() are handled as usual. However,
- * in write_block() instead of attempting to write the block to
- * the physical device, it is chained into a list of blocks written
- * after the EOT condition.  In addition, all threads are blocked
- * from writing on the tape by calling lock(), and thread other
+ * is set all calls to write_block_to_device() call the fix_up
+ * routine. In addition, all threads are blocked
+ * from writing on the tape by calling lock_dev(), and thread other
  * than the first thread to hit the EOT will block on a condition
  * variable. The first thread to hit the EOT will continue to
  * be able to read and write the tape (he sort of tunnels through
- * the locking mechanism -- see lock() for details).
+ * the locking mechanism -- see lock_dev() for details).
  *
  * Now presumably somewhere higher in the chain of command 
  * (device.c), someone will notice the EOT condition and 
@@ -99,8 +97,9 @@ DEVICE *
 init_dev(DEVICE *dev, DEVRES *device)
 {
    struct stat statp;
-   int tape, fifo;
+   bool tape, fifo;
    int errstat;
+   DCR *dcr = NULL;
 
    /* Check that device is available */
    if (stat(device->device_name, &statp) < 0) {
@@ -111,20 +110,20 @@ init_dev(DEVICE *dev, DEVRES *device)
            strerror(errno));
       return NULL;
    }
-   tape = FALSE;
-   fifo = FALSE;
+   tape = false;
+   fifo = false;
    if (S_ISDIR(statp.st_mode)) {
-      tape = FALSE;
+      tape = false;
    } else if (S_ISCHR(statp.st_mode)) {
-      tape = TRUE;
+      tape = true;
    } else if (S_ISFIFO(statp.st_mode)) {
-      fifo = TRUE;
+      fifo = true;
    } else {
       if (dev) {
         dev->dev_errno = ENODEV;
       }
       Emsg2(M_FATAL, 0, _("%s is an unknown device type. Must be tape or directory. st_mode=%x\n"),
-        dev_name, statp.st_mode);
+        device->device_name, statp.st_mode);
       return NULL;
    }
    if (!dev) {
@@ -148,6 +147,8 @@ init_dev(DEVICE *dev, DEVRES *device)
    dev->max_open_wait = device->max_open_wait;
    dev->max_open_vols = device->max_open_vols;
    dev->vol_poll_interval = device->vol_poll_interval;
+   dev->max_spool_size = device->max_spool_size;
+   dev->drive_index = device->drive_index;
    /* Sanity check */
    if (dev->vol_poll_interval && dev->vol_poll_interval < 60) {
       dev->vol_poll_interval = 60;
@@ -191,8 +192,21 @@ init_dev(DEVICE *dev, DEVRES *device)
       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
       Emsg0(M_FATAL, 0, dev->errmsg);
    }
+   if ((errstat = pthread_mutex_init(&dev->spool_mutex, NULL)) != 0) {
+      dev->dev_errno = errstat;
+      Mmsg1(&dev->errmsg, _("Unable to init mutex: ERR=%s\n"), strerror(errstat));
+      Emsg0(M_FATAL, 0, dev->errmsg);
+   }
+   if ((errstat = rwl_init(&dev->lock)) != 0) {
+      dev->dev_errno = errstat;
+      Mmsg1(&dev->errmsg, _("Unable to init mutex: ERR=%s\n"), strerror(errstat));
+      Emsg0(M_FATAL, 0, dev->errmsg);
+   }
+
    dev->fd = -1;
+   dev->attached_dcrs = New(dlist(dcr, &dcr->dev_link));
    Dmsg2(29, "init_dev: tape=%d dev_name=%s\n", dev_is_tape(dev), dev->dev_name);
+
    return dev;
 }
 
@@ -289,7 +303,7 @@ open_dev(DEVICE *dev, char *VolName, int mode)
        * Handle opening of File Archive (not a tape)
        */
       if (VolName == NULL || *VolName == 0) {
-         Mmsg(&dev->errmsg, _("Could not open file device %s. No Volume name given.\n"),
+         Mmsg(dev->errmsg, _("Could not open file device %s. No Volume name given.\n"),
            dev->dev_name);
         return -1;
       }
@@ -537,19 +551,19 @@ eod_dev(DEVICE *dev)
 /*
  * Set the position of the device -- only for files
  *   For other devices, there is no generic way to do it.
- *  Returns: 1 on succes
- *          0 on error
+ *  Returns: true  on succes
+ *          false on error
  */
-int update_pos_dev(DEVICE *dev)
+bool update_pos_dev(DEVICE *dev)
 {
    off_t pos;
-   int stat = 0;
+   bool ok = true;
 
    if (dev->fd < 0) {
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
 
    /* Find out where we are */
@@ -562,13 +576,12 @@ int update_pos_dev(DEVICE *dev)
         dev->dev_errno = errno;
          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
            dev->dev_name, strerror(dev->dev_errno));
+        ok = false;
       } else {
-        stat = 1;
         dev->file_addr = pos;
       }
-      return stat;
    }
-   return 1;
+   return ok;
 }
 
 
@@ -654,10 +667,10 @@ uint32_t status_dev(DEVICE *dev)
 
 /*
  * Load medium in device
- *  Returns: 1 on success
- *          0 on failure
+ *  Returns: true  on success
+ *          false on failure
  */
-int load_dev(DEVICE *dev)
+bool load_dev(DEVICE *dev)
 {
 #ifdef MTLOAD
    struct mtop mt_com;
@@ -667,17 +680,17 @@ int load_dev(DEVICE *dev)
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
    if (!(dev->state & ST_TAPE)) {
-      return 1;
+      return true;
    }
 #ifndef MTLOAD
    Dmsg0(200, "stored: MTLOAD command not available\n");
    dev->dev_errno = ENOTTY;          /* function not available */
    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
         dev->dev_name, strerror(dev->dev_errno));      return 0;
-   return 0;
+   return false;
 #else
 
    dev->block_num = dev->file = 0;
@@ -688,17 +701,18 @@ int load_dev(DEVICE *dev)
       dev->dev_errno = errno;
       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
         dev->dev_name, strerror(dev->dev_errno));      return 0;
+      return false;
    }
-   return 1;
+   return true;
 #endif
 }
 
 /*
  * Rewind device and put it offline
- *  Returns: 1 on success
- *          0 on failure
+ *  Returns: true  on success
+ *          false on failure
  */
-int offline_dev(DEVICE *dev)
+bool offline_dev(DEVICE *dev)
 {
    struct mtop mt_com;
 
@@ -706,10 +720,10 @@ int offline_dev(DEVICE *dev)
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to offline_dev. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
    if (!(dev->state & ST_TAPE)) {
-      return 1;
+      return true;
    }
 
    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
@@ -726,10 +740,10 @@ int offline_dev(DEVICE *dev)
       dev->dev_errno = errno;
       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
         dev->dev_name, strerror(dev->dev_errno));
-      return 0;
+      return false;
    }
    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
-   return 1;
+   return true;
 }
 
 int offline_or_rewind_dev(DEVICE *dev)
@@ -750,10 +764,10 @@ int offline_or_rewind_dev(DEVICE *dev)
 
 /* 
  * Foward space a file 
- *   Returns: 1 on success
- *           0 on failure
+ *   Returns: true  on success
+ *           false on failure
  */
-int
+bool
 fsf_dev(DEVICE *dev, int num)
 { 
    struct mtget mt_stat;
@@ -764,16 +778,16 @@ fsf_dev(DEVICE *dev, int num)
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
 
    if (!(dev->state & ST_TAPE)) {
-      return 1;
+      return true;
    }
    if (dev->state & ST_EOT) {
       dev->dev_errno = 0;
       Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
-      return 0;
+      return false;
    }
    if (dev->state & ST_EOF) {
       Dmsg0(200, "ST_EOF set on entry to FSF\n");
@@ -799,13 +813,13 @@ fsf_dev(DEVICE *dev, int num)
          Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
            dev->dev_name, strerror(dev->dev_errno));
          Dmsg1(200, "%s", dev->errmsg);
-        return 0;
+        return false;
       }
       Dmsg2(200, "fsf file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
       dev->file = mt_stat.mt_fileno;
       dev->state |= ST_EOF;    /* just read EOF */
       dev->file_addr = 0;
-      return 1;
+      return true;
 
    /* 
     * Here if CAP_FSF is set, and virtually all drives
@@ -901,15 +915,15 @@ fsf_dev(DEVICE *dev, int num)
    if (dev->state & ST_EOT)
       Dmsg0(200, "ST_EOT set on exit FSF\n");
    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
-   return stat == 0 ? 1 : 0;
+   return stat == 0;
 }
 
 /* 
  * Backward space a file  
- *  Returns: 0 on failure
- *          1 on success
+ *  Returns: false on failure
+ *          true  on success
  */
-int
+bool
 bsf_dev(DEVICE *dev, int num)
 { 
    struct mtop mt_com;
@@ -919,13 +933,13 @@ bsf_dev(DEVICE *dev, int num)
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to bsf_dev. Archive device not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
 
    if (!(dev_state(dev, ST_TAPE))) {
       Mmsg1(&dev->errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
         dev->dev_name);
-      return 0;
+      return false;
    }
    Dmsg0(29, "bsf_dev\n");
    dev->state &= ~(ST_EOT|ST_EOF);
@@ -940,16 +954,16 @@ bsf_dev(DEVICE *dev, int num)
         dev->dev_name, strerror(dev->dev_errno));
    }
    update_pos_dev(dev);
-   return stat == 0 ? 1 : 0;
+   return stat == 0;
 }
 
 
 /* 
  * Foward space a record
- *  Returns: 0 on failure
- *          1 on success
+ *  Returns: false on failure
+ *          true  on success
  */
-int
+bool
 fsr_dev(DEVICE *dev, int num)
 { 
    struct mtop mt_com;
@@ -959,12 +973,17 @@ fsr_dev(DEVICE *dev, int num)
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to fsr_dev. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
 
    if (!(dev_state(dev, ST_TAPE))) {
-      return 0;
+      return false;
+   }
+   if (!dev_cap(dev, CAP_FSR)) {
+      Mmsg1(&dev->errmsg, _("ioctl MTFSR not permitted on %s.\n"), dev->dev_name);
+      return false;
    }
+
    Dmsg0(29, "fsr_dev\n");
    mt_com.mt_op = MTFSR;
    mt_com.mt_count = num;
@@ -994,15 +1013,15 @@ fsr_dev(DEVICE *dev, int num)
         dev->dev_name, strerror(dev->dev_errno));
    }
    update_pos_dev(dev);
-   return stat == 0 ? 1 : 0;
+   return stat == 0;
 }
 
 /* 
  * Backward space a record
- *   Returns:  0 on failure
- *            1 on success
+ *   Returns:  false on failure
+ *            true  on success
  */
-int
+bool
 bsr_dev(DEVICE *dev, int num)
 { 
    struct mtop mt_com;
@@ -1012,17 +1031,16 @@ bsr_dev(DEVICE *dev, int num)
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to bsr_dev. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
 
    if (!(dev->state & ST_TAPE)) {
-      return 0;
+      return false;
    }
 
    if (!dev_cap(dev, CAP_BSR)) {
-      Mmsg1(&dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"),
-        dev->dev_name);
-      return 0;
+      Mmsg1(&dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"), dev->dev_name);
+      return false;
    }
 
    Dmsg0(29, "bsr_dev\n");
@@ -1037,46 +1055,50 @@ bsr_dev(DEVICE *dev, int num)
         dev->dev_name, strerror(dev->dev_errno));
    }
    update_pos_dev(dev);
-   return stat == 0 ? 1 : 0;
+   return stat == 0;
 }
 
 /* 
  * Reposition the device to file, block
- * Returns: 0 on failure
- *         1 on success
+ * Returns: false on failure
+ *         true  on success
  */
-int
+bool
 reposition_dev(DEVICE *dev, uint32_t file, uint32_t block)
 { 
    if (dev->fd < 0) {
       dev->dev_errno = EBADF;
       Mmsg0(&dev->errmsg, _("Bad call to reposition_dev. Archive not open\n"));
       Emsg0(M_FATAL, 0, dev->errmsg);
-      return 0;
+      return false;
    }
 
    if (!(dev_state(dev, ST_TAPE))) {
       off_t pos = (((off_t)file)<<32) + block;
+      Dmsg1(100, "===== lseek to %d\n", (int)pos);
       if (lseek(dev->fd, pos, SEEK_SET) == (off_t)-1) {
         dev->dev_errno = errno;
          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
            dev->dev_name, strerror(dev->dev_errno));
-        return 0;
+        return false;
       }
-      return 1;
+      dev->file = file;
+      dev->block_num = block;
+      dev->file_addr = pos;
+      return true;
    }
    Dmsg4(100, "reposition_dev from %u:%u to %u:%u\n", 
       dev->file, dev->block_num, file, block);
    if (file < dev->file) {
       Dmsg0(100, "Rewind_dev\n");
       if (!rewind_dev(dev)) {
-        return 0;
+        return false;
       }
    }
    if (file > dev->file) {
       Dmsg1(100, "fsf %d\n", file-dev->file);
       if (!fsf_dev(dev, file-dev->file)) {
-        return 0;
+        return false;
       }
    }
    if (block < dev->block_num) {
@@ -1086,9 +1108,9 @@ reposition_dev(DEVICE *dev, uint32_t file, uint32_t block)
    if (block > dev->block_num) {
       /* Ignore errors as Bacula can read to the correct block */
       Dmsg1(100, "fsr %d\n", block-dev->block_num);
-      fsr_dev(dev, block-dev->block_num);
+      return fsr_dev(dev, block-dev->block_num);
    }
-   return 1;
+   return true;
 }
 
 
@@ -1136,7 +1158,7 @@ weof_dev(DEVICE *dev, int num)
 /*
  * Return string message with last error in English
  *  Be careful not to call this routine from within dev.c
- *  while editing an Mmsg(&) or you will end up in a recursive
+ *  while editing an Mmsg() or you will end up in a recursive
  *  loop creating a Segmentation Violation.
  */
 char *
@@ -1153,7 +1175,7 @@ strerror_dev(DEVICE *dev)
 void
 clrerror_dev(DEVICE *dev, int func)
 {
-   char *msg = NULL;
+   const char *msg = NULL;
 
    dev->dev_errno = errno;        /* save errno */
    if (errno == EIO) {
@@ -1299,22 +1321,23 @@ void force_close_dev(DEVICE *dev)
 #endif
 }
 
-int truncate_dev(DEVICE *dev)
+bool truncate_dev(DEVICE *dev)
 {
    if (dev->state & ST_TAPE) {
-      return 1;
+      return true;                    /* we don't really truncate tapes */
+      /* maybe we should rewind and write and eof ???? */
    }
    if (ftruncate(dev->fd, 0) != 0) {
       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), strerror(errno));
-      return 0;
+      return false;
    }
-   return 1;
+   return true;
 }
 
-int 
+bool
 dev_is_tape(DEVICE *dev)
 {  
-   return (dev->state & ST_TAPE) ? 1 : 0;
+   return (dev->state & ST_TAPE) ? true : false;
 }
 
 
@@ -1324,14 +1347,14 @@ dev_is_tape(DEVICE *dev)
  *   if we still have a tape (perhaps not if at end of tape
  *   and the job is canceled).
  */
-int
+bool
 dev_can_write(DEVICE *dev)
 {
    if ((dev->state & ST_OPENED) &&  (dev->state & ST_APPEND) &&
        (dev->state & ST_LABEL) && !(dev->state & ST_WEOT)) {
-      return 1;
+      return true;
    } else {
-      return 0;
+      return false;
    }
 }
 
@@ -1384,11 +1407,18 @@ term_dev(DEVICE *dev)
    pthread_mutex_destroy(&dev->mutex);
    pthread_cond_destroy(&dev->wait);
    pthread_cond_destroy(&dev->wait_next_vol);
+   pthread_mutex_destroy(&dev->spool_mutex);
+   rwl_destroy(&dev->lock);
+   if (dev->attached_dcrs) {
+      delete dev->attached_dcrs;
+      dev->attached_dcrs = NULL;
+   }
    if (dev->state & ST_MALLOC) {
       free_pool_memory((POOLMEM *)dev);
    }
 }
 
+#ifdef xxxx
 /*
  * We attach a jcr to the device so that when
  *   the Volume is full during writing, a  
@@ -1427,6 +1457,7 @@ JCR *next_attached_jcr(DEVICE *dev, JCR *jcr)
    }
    return jcr->next_dev;
 }
+#endif
 
 /*
  * This routine initializes the device wait timers