]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
Make mark run *MUCH* faster in restore tree + update copyright on changed files
[bacula/bacula] / bacula / src / stored / dev.c
1 /*
2  *
3  *   dev.c  -- low level operations on device (storage device)
4  *
5  *              Kern Sibbald
6  *
7  *     NOTE!!!! None of these routines are reentrant. You must
8  *        use lock_device() and unlock_device() at a higher level,
9  *        or use the xxx_device() equivalents.  By moving the
10  *        thread synchronization to a higher level, we permit
11  *        the higher level routines to "seize" the device and 
12  *        to carry out operations without worrying about who
13  *        set what lock (i.e. race conditions).
14  *
15  *     Note, this is the device dependent code, and my have
16  *           to be modified for each system, but is meant to
17  *           be as "generic" as possible.
18  * 
19  *     The purpose of this code is to develop a SIMPLE Storage
20  *     daemon. More complicated coding (double buffering, writer
21  *     thread, ...) is left for a later version.
22  *
23  *     Unfortunately, I have had to add more and more complication
24  *     to this code. This was not foreseen as noted above, and as
25  *     a consequence has lead to something more contorted than is
26  *     really necessary -- KES.  Note, this contortion has been
27  *     corrected to a large extent by a rewrite (Apr MMI).
28  *
29  *   Version $Id$
30  */
31 /*
32    Copyright (C) 2000-2004 Kern Sibbald and John Walker
33
34    This program is free software; you can redistribute it and/or
35    modify it under the terms of the GNU General Public License as
36    published by the Free Software Foundation; either version 2 of
37    the License, or (at your option) any later version.
38
39    This program is distributed in the hope that it will be useful,
40    but WITHOUT ANY WARRANTY; without even the implied warranty of
41    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
42    General Public License for more details.
43
44    You should have received a copy of the GNU General Public
45    License along with this program; if not, write to the Free
46    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
47    MA 02111-1307, USA.
48
49  */
50
51 /*
52  * Handling I/O errors and end of tape conditions are a bit tricky.
53  * This is how it is currently done when writting.
54  * On either an I/O error or end of tape,
55  * we will stop writing on the physical device (no I/O recovery is
56  * attempted at least in this daemon). The state flag will be sent
57  * to include ST_EOT, which is ephimeral, and ST_WEOT, which is
58  * persistent. Lots of routines clear ST_EOT, but ST_WEOT is
59  * cleared only when the problem goes away.  Now when ST_WEOT
60  * is set all calls to write_dev() are handled as usual. However,
61  * in write_block() instead of attempting to write the block to
62  * the physical device, it is chained into a list of blocks written
63  * after the EOT condition.  In addition, all threads are blocked
64  * from writing on the tape by calling lock(), and thread other
65  * than the first thread to hit the EOT will block on a condition
66  * variable. The first thread to hit the EOT will continue to
67  * be able to read and write the tape (he sort of tunnels through
68  * the locking mechanism -- see lock() for details).
69  *
70  * Now presumably somewhere higher in the chain of command 
71  * (device.c), someone will notice the EOT condition and 
72  * get a new tape up, get the tape label read, and mark 
73  * the label for rewriting. Then this higher level routine 
74  * will write the unwritten buffer to the new volume.
75  * Finally, he will release
76  * any blocked threads by doing a broadcast on the condition
77  * variable.  At that point, we should be totally back in 
78  * business with no lost data.
79  */
80
81
82 #include "bacula.h"
83 #include "stored.h"
84
85 /* Forward referenced functions */
86
87 /* 
88  * Allocate and initialize the DEVICE structure
89  * Note, if dev is non-NULL, it is already allocated,
90  * thus we neither allocate it nor free it. This allows
91  * the caller to put the packet in shared memory.
92  *
93  *  Note, for a tape, the device->device_name is the device name
94  *     (e.g. /dev/nst0), and for a file, the device name
95  *     is the directory in which the file will be placed.
96  *
97  */
98 DEVICE *
99 init_dev(DEVICE *dev, DEVRES *device)
100 {
101    struct stat statp;
102    int tape, fifo;
103    int errstat;
104
105    /* Check that device is available */
106    if (stat(device->device_name, &statp) < 0) {
107       if (dev) {
108          dev->dev_errno = errno;
109       } 
110       Emsg2(M_FATAL, 0, "Unable to stat device %s : %s\n", device->device_name, 
111             strerror(errno));
112       return NULL;
113    }
114    tape = FALSE;
115    fifo = FALSE;
116    if (S_ISDIR(statp.st_mode)) {
117       tape = FALSE;
118    } else if (S_ISCHR(statp.st_mode)) {
119       tape = TRUE;
120    } else if (S_ISFIFO(statp.st_mode)) {
121       fifo = TRUE;
122    } else {
123       if (dev) {
124          dev->dev_errno = ENODEV;
125       }
126       Emsg2(M_FATAL, 0, _("%s is an unknown device type. Must be tape or directory. st_mode=%x\n"),
127          dev_name, statp.st_mode);
128       return NULL;
129    }
130    if (!dev) {
131       dev = (DEVICE *)get_memory(sizeof(DEVICE));
132       memset(dev, 0, sizeof(DEVICE));
133       dev->state = ST_MALLOC;
134    } else {
135       memset(dev, 0, sizeof(DEVICE));
136    }
137
138    /* Copy user supplied device parameters from Resource */
139    dev->dev_name = get_memory(strlen(device->device_name)+1);
140    strcpy(dev->dev_name, device->device_name);
141    dev->capabilities = device->cap_bits;
142    dev->min_block_size = device->min_block_size;
143    dev->max_block_size = device->max_block_size;
144    dev->max_volume_size = device->max_volume_size;
145    dev->max_file_size = device->max_file_size;
146    dev->volume_capacity = device->volume_capacity;
147    dev->max_rewind_wait = device->max_rewind_wait;
148    dev->max_open_wait = device->max_open_wait;
149    dev->max_open_vols = device->max_open_vols;
150    dev->vol_poll_interval = device->vol_poll_interval;
151    /* Sanity check */
152    if (dev->vol_poll_interval && dev->vol_poll_interval < 60) {
153       dev->vol_poll_interval = 60;
154    }
155    dev->device = device;
156
157    if (tape) {
158       dev->state |= ST_TAPE;
159    } else if (fifo) {
160       dev->state |= ST_FIFO;
161       dev->capabilities |= CAP_STREAM; /* set stream device */
162    } else {
163       dev->state |= ST_FILE;
164    }
165
166    if (dev->max_block_size > 1000000) {
167       Emsg3(M_ERROR, 0, _("Block size %u on device %s is too large, using default %u\n"), 
168          dev->max_block_size, dev->dev_name, DEFAULT_BLOCK_SIZE);
169       dev->max_block_size = 0;
170    }
171    if (dev->max_block_size % TAPE_BSIZE != 0) {
172       Emsg2(M_WARNING, 0, _("Max block size %u not multiple of device %s block size.\n"),
173          dev->max_block_size, dev->dev_name);
174    }   
175          
176    dev->errmsg = get_pool_memory(PM_EMSG);
177    *dev->errmsg = 0;
178
179    if ((errstat = pthread_mutex_init(&dev->mutex, NULL)) != 0) {
180       dev->dev_errno = errstat;
181       Mmsg1(&dev->errmsg, _("Unable to init mutex: ERR=%s\n"), strerror(errstat));
182       Emsg0(M_FATAL, 0, dev->errmsg);
183    }
184    if ((errstat = pthread_cond_init(&dev->wait, NULL)) != 0) {
185       dev->dev_errno = errstat;
186       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
187       Emsg0(M_FATAL, 0, dev->errmsg);
188    }
189    if ((errstat = pthread_cond_init(&dev->wait_next_vol, NULL)) != 0) {
190       dev->dev_errno = errstat;
191       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
192       Emsg0(M_FATAL, 0, dev->errmsg);
193    }
194    dev->fd = -1;
195    Dmsg2(29, "init_dev: tape=%d dev_name=%s\n", dev_is_tape(dev), dev->dev_name);
196    return dev;
197 }
198
199 /* Open the device with the operating system and
200  * initialize buffer pointers.
201  *
202  * Note, for a tape, the VolName is the name we give to the
203  *    volume (not really used here), but for a file, the
204  *    VolName represents the name of the file to be created/opened.
205  *    In the case of a file, the full name is the device name
206  *    (archive_name) with the VolName concatenated.
207  */
208 int
209 open_dev(DEVICE *dev, char *VolName, int mode)
210 {
211    POOLMEM *archive_name;
212
213    if (dev->state & ST_OPENED) {
214       /*
215        *  *****FIXME***** how to handle two threads wanting
216        *  different volumes mounted???? E.g. one is waiting
217        *  for the next volume to be mounted, and a new job
218        *  starts and snatches up the device.
219        */
220       if (VolName && strcmp(dev->VolCatInfo.VolCatName, VolName) != 0) {
221          return -1;
222       }
223       dev->use_count++;
224       Mmsg2(&dev->errmsg, _("WARNING!!!! device %s opened %d times!!!\n"), 
225             dev->dev_name, dev->use_count);
226       Emsg1(M_WARNING, 0, "%s", dev->errmsg);
227       return dev->fd;
228    }
229    if (VolName) {
230       bstrncpy(dev->VolCatInfo.VolCatName, VolName, sizeof(dev->VolCatInfo.VolCatName));
231    }
232
233    Dmsg3(29, "open_dev: tape=%d dev_name=%s vol=%s\n", dev_is_tape(dev), 
234          dev->dev_name, dev->VolCatInfo.VolCatName);
235    dev->state &= ~(ST_LABEL|ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
236    if (dev->state & (ST_TAPE|ST_FIFO)) {
237       int timeout;
238       Dmsg0(29, "open_dev: device is tape\n");
239       if (mode == OPEN_READ_WRITE) {
240          dev->mode = O_RDWR | O_BINARY;
241       } else if (mode == OPEN_READ_ONLY) {
242          dev->mode = O_RDONLY | O_BINARY;
243       } else if (mode == OPEN_WRITE_ONLY) {
244          dev->mode = O_WRONLY | O_BINARY;
245       } else {
246          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
247       }
248       timeout = dev->max_open_wait;
249       errno = 0;
250       if (dev->state & ST_FIFO && timeout) {
251          /* Set open timer */
252          dev->tid = start_thread_timer(pthread_self(), timeout);
253       }
254       /* If busy retry each second for max_open_wait seconds */
255       while ((dev->fd = open(dev->dev_name, dev->mode, MODE_RW)) < 0) {
256          if (errno == EAGAIN) {
257             continue;
258          }
259          if (errno == EBUSY && timeout-- > 0) {
260             Dmsg2(100, "Device %s busy. ERR=%s\n", dev->dev_name, strerror(errno));
261             bmicrosleep(1, 0);
262             continue;
263          }
264          dev->dev_errno = errno;
265          Mmsg2(&dev->errmsg, _("stored: unable to open device %s: ERR=%s\n"), 
266                dev->dev_name, strerror(dev->dev_errno));
267          /* Stop any open timer we set */
268          if (dev->tid) {
269             stop_thread_timer(dev->tid);
270             dev->tid = 0;
271          }
272          Emsg0(M_FATAL, 0, dev->errmsg);
273          break;
274       }
275       if (dev->fd >= 0) {
276          dev->dev_errno = 0;
277          dev->state |= ST_OPENED;
278          dev->use_count = 1;
279          update_pos_dev(dev);             /* update position */
280       }
281       /* Stop any open() timer we started */
282       if (dev->tid) {
283          stop_thread_timer(dev->tid);
284          dev->tid = 0;
285       }
286       Dmsg1(29, "open_dev: tape %d opened\n", dev->fd);
287    } else {
288       /*
289        * Handle opening of File Archive (not a tape)
290        */
291       if (VolName == NULL || *VolName == 0) {
292          Mmsg(&dev->errmsg, _("Could not open file device %s. No Volume name given.\n"),
293             dev->dev_name);
294          return -1;
295       }
296       archive_name = get_pool_memory(PM_FNAME);
297       pm_strcpy(&archive_name, dev->dev_name);
298       if (archive_name[strlen(archive_name)] != '/') {
299          pm_strcat(&archive_name, "/");
300       }
301       pm_strcat(&archive_name, VolName);
302       Dmsg1(29, "open_dev: device is disk %s\n", archive_name);
303       if (mode == OPEN_READ_WRITE) {
304          dev->mode = O_CREAT | O_RDWR | O_BINARY;
305       } else if (mode == OPEN_READ_ONLY) {
306          dev->mode = O_RDONLY | O_BINARY;
307       } else if (mode == OPEN_WRITE_ONLY) {
308          dev->mode = O_WRONLY | O_BINARY;
309       } else {
310          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
311       }
312       /* If creating file, give 0640 permissions */
313       if ((dev->fd = open(archive_name, dev->mode, 0640)) < 0) {
314          dev->dev_errno = errno;
315          Mmsg2(&dev->errmsg, _("Could not open: %s, ERR=%s\n"), archive_name, strerror(dev->dev_errno));
316          Emsg0(M_FATAL, 0, dev->errmsg);
317       } else {
318          dev->dev_errno = 0;
319          dev->state |= ST_OPENED;
320          dev->use_count = 1;
321          update_pos_dev(dev);                /* update position */
322       }
323       Dmsg1(29, "open_dev: disk fd=%d opened\n", dev->fd);
324       free_pool_memory(archive_name);
325    }
326    return dev->fd;
327 }
328
329 #ifdef debug_tracing
330 #undef rewind_dev
331 int _rewind_dev(char *file, int line, DEVICE *dev)
332 {
333    Dmsg2(100, "rewind_dev called from %s:%d\n", file, line);
334    return rewind_dev(dev);
335 }
336 #endif
337
338
339 /*
340  * Rewind the device.
341  *  Returns: 1 on success
342  *           0 on failure
343  */
344 int rewind_dev(DEVICE *dev)
345 {
346    struct mtop mt_com;
347    unsigned int i;
348
349    Dmsg1(29, "rewind_dev %s\n", dev->dev_name);
350    if (dev->fd < 0) {
351       dev->dev_errno = EBADF;
352       Mmsg1(&dev->errmsg, _("Bad call to rewind_dev. Device %s not open\n"),
353             dev->dev_name);
354       Emsg0(M_FATAL, 0, dev->errmsg);
355       return 0;
356    }
357    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
358    dev->block_num = dev->file = 0;
359    dev->file_addr = 0;
360    if (dev->state & ST_TAPE) {
361       mt_com.mt_op = MTREW;
362       mt_com.mt_count = 1;
363       /* If we get an I/O error on rewind, it is probably because
364        * the drive is actually busy. We loop for (about 5 minutes)
365        * retrying every 5 seconds.
366        */
367       for (i=dev->max_rewind_wait; ; i -= 5) {
368          if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
369             if (i == dev->max_rewind_wait) {
370                Dmsg1(200, "Rewind error, %s. retrying ...\n", strerror(errno));
371             }
372             clrerror_dev(dev, MTREW);
373             if (dev->dev_errno == EIO && i > 0) {
374                Dmsg0(200, "Sleeping 5 seconds.\n");
375                bmicrosleep(5, 0);
376                continue;
377             }
378             Mmsg2(&dev->errmsg, _("Rewind error on %s. ERR=%s.\n"),
379                dev->dev_name, strerror(dev->dev_errno));
380             return 0;
381          }
382          break;
383       }
384    } else if (dev->state & ST_FILE) {
385       if (lseek(dev->fd, (off_t)0, SEEK_SET) < 0) {
386          dev->dev_errno = errno;
387          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
388             dev->dev_name, strerror(dev->dev_errno));
389          return 0;
390       }
391    }
392    return 1;
393 }
394
395 /* 
396  * Position device to end of medium (end of data)
397  *  Returns: 1 on succes
398  *           0 on error
399  */
400 int 
401 eod_dev(DEVICE *dev)
402 {
403    struct mtop mt_com;
404    struct mtget mt_stat;
405    int stat = 0;
406    off_t pos;
407
408    Dmsg0(29, "eod_dev\n");
409    if (dev->state & ST_EOT) {
410       return 1;
411    }
412    dev->state &= ~(ST_EOF);  /* remove EOF flags */
413    dev->block_num = dev->file = 0;
414    dev->file_addr = 0;
415    if (dev->state & (ST_FIFO | ST_PROG)) {
416       return 1;
417    }
418    if (!(dev->state & ST_TAPE)) {
419       pos = lseek(dev->fd, (off_t)0, SEEK_END);
420 //    Dmsg1(100, "====== Seek to %lld\n", pos);
421       if (pos >= 0) {
422          update_pos_dev(dev);
423          dev->state |= ST_EOT;
424          return 1;
425       }
426       dev->dev_errno = errno;
427       Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
428              dev->dev_name, strerror(dev->dev_errno));
429       return 0;
430    }
431 #ifdef MTEOM
432    if (dev_cap(dev, CAP_EOM)) {
433       mt_com.mt_op = MTEOM;
434       mt_com.mt_count = 1;
435       if ((stat=ioctl(dev->fd, MTIOCTOP, (char *)&mt_com)) < 0) {
436          Dmsg1(50, "ioctl error: %s\n", strerror(dev->dev_errno));
437          clrerror_dev(dev, mt_com.mt_op);
438          update_pos_dev(dev);
439          Mmsg2(&dev->errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
440             dev->dev_name, strerror(dev->dev_errno));
441          return 0;
442       }
443       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
444          dev->dev_errno = errno;
445          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
446             dev->dev_name, strerror(dev->dev_errno));
447          return 0;
448       }
449       Dmsg2(200, "EOD file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
450       dev->file = mt_stat.mt_fileno;
451
452    /*
453     * Rewind then use FSF until EOT reached
454     */
455    } else {
456 #else
457    {
458 #endif
459       if (!rewind_dev(dev)) {
460          return 0;
461       }
462       /* 
463        * Move file by file to the end of the tape
464        */
465       int file_num;
466       for (file_num=dev->file; !(dev->state & ST_EOT); file_num++) {
467          Dmsg0(200, "eod_dev: doing fsf 1\n");
468          if (!fsf_dev(dev, 1)) {
469             Dmsg0(200, "fsf_dev error.\n");
470             return 0;
471          }
472          /*
473           * Avoid infinite loop. ***FIXME*** possibly add code
474           *   to set EOD or to turn off CAP_FASTFSF if on.
475           */
476          if (file_num == (int)dev->file) {
477             struct mtget mt_stat;
478             Dmsg1(000, "fsf_dev did not advance from file %d\n", file_num);
479             if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) == 0 && 
480                       mt_stat.mt_fileno >= 0) {
481                Dmsg2(000, "Adjust file from %d to %d\n", dev->file , mt_stat.mt_fileno);
482                dev->file = mt_stat.mt_fileno;
483             }
484             stat = 0;
485             break;                    /* we are not progressing, bail out */
486          }
487       }
488    }
489    /*
490     * Some drivers leave us after second EOF when doing
491     * MTEOM, so we must backup so that appending overwrites
492     * the second EOF.
493     */
494    if (dev_cap(dev, CAP_BSFATEOM)) {
495       struct mtget mt_stat;
496       /* Backup over EOF */
497       stat = bsf_dev(dev, 1);
498       /* If BSF worked and fileno is known (not -1), set file */
499       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) == 0 && mt_stat.mt_fileno >= 0) {
500          Dmsg2(000, "Adjust file from %d to %d\n", dev->file , mt_stat.mt_fileno);
501          dev->file = mt_stat.mt_fileno;
502       } else {
503          dev->file++;                 /* wing it -- not correct on all OSes */
504       }
505    } else {
506       update_pos_dev(dev);                   /* update position */
507       stat = 1;
508    }
509    Dmsg1(200, "EOD dev->file=%d\n", dev->file);
510    return stat;
511 }
512
513 /*
514  * Set the position of the device -- only for files
515  *   For other devices, there is no generic way to do it.
516  *  Returns: 1 on succes
517  *           0 on error
518  */
519 int update_pos_dev(DEVICE *dev)
520 {
521    off_t pos;
522    int stat = 0;
523
524    if (dev->fd < 0) {
525       dev->dev_errno = EBADF;
526       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
527       Emsg0(M_FATAL, 0, dev->errmsg);
528       return 0;
529    }
530
531    /* Find out where we are */
532    if (dev->state & ST_FILE) {
533       dev->file = 0;
534       dev->file_addr = 0;
535       pos = lseek(dev->fd, (off_t)0, SEEK_CUR);
536       if (pos < 0) {
537          Pmsg1(000, "Seek error: ERR=%s\n", strerror(dev->dev_errno));
538          dev->dev_errno = errno;
539          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
540             dev->dev_name, strerror(dev->dev_errno));
541       } else {
542          stat = 1;
543          dev->file_addr = pos;
544       }
545       return stat;
546    }
547    return 1;
548 }
549
550
551 /* 
552  * Return the status of the device.  This was meant
553  * to be a generic routine. Unfortunately, it doesn't
554  * seem possible (at least I do not know how to do it
555  * currently), which means that for the moment, this
556  * routine has very little value.
557  *
558  *   Returns: 1 on success
559  *            0 on error
560  */
561 int
562 status_dev(DEVICE *dev, uint32_t *status)
563 {
564    struct mtget mt_stat;
565    uint32_t stat = 0;
566
567    if (dev->state & (ST_EOT | ST_WEOT)) {
568       stat |= BMT_EOD;
569       Dmsg0(-20, " EOD");
570    }
571    if (dev->state & ST_EOF) {
572       stat |= BMT_EOF;
573       Dmsg0(-20, " EOF");
574    }
575    if (dev->state & ST_TAPE) {
576       stat |= BMT_TAPE;
577       Dmsg0(-20," Bacula status:");
578       Dmsg2(-20," file=%d block=%d\n", dev->file, dev->block_num);
579       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
580          dev->dev_errno = errno;
581          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
582             dev->dev_name, strerror(dev->dev_errno));
583          return 0;
584       }
585       Dmsg0(-20, " Device status:");
586
587 #if defined(HAVE_LINUX_OS)
588       if (GMT_EOF(mt_stat.mt_gstat)) {
589          stat |= BMT_EOF;
590          Dmsg0(-20, " EOF");
591       }
592       if (GMT_BOT(mt_stat.mt_gstat)) {
593          stat |= BMT_BOT;
594          Dmsg0(-20, " BOT");
595       }
596       if (GMT_EOT(mt_stat.mt_gstat)) {
597          stat |= BMT_EOT;
598          Dmsg0(-20, " EOT");
599       }
600       if (GMT_SM(mt_stat.mt_gstat)) {
601          stat |= BMT_SM;
602          Dmsg0(-20, " SM");
603       }
604       if (GMT_EOD(mt_stat.mt_gstat)) {
605          stat |= BMT_EOD;
606          Dmsg0(-20, " EOD");
607       }
608       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
609          stat |= BMT_WR_PROT;
610          Dmsg0(-20, " WR_PROT");
611       }
612       if (GMT_ONLINE(mt_stat.mt_gstat)) {
613          stat |= BMT_ONLINE;
614          Dmsg0(-20, " ONLINE");
615       }
616       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
617          stat |= BMT_DR_OPEN;
618          Dmsg0(-20, " DR_OPEN");       
619       }
620       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
621          stat |= BMT_IM_REP_EN;
622          Dmsg0(-20, " IM_REP_EN");
623       }
624 #endif /* !SunOS && !OSF */
625       Dmsg2(-20, " file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
626    } else {
627       stat |= BMT_ONLINE | BMT_BOT;
628    }
629    *status = stat; 
630    return 1;
631 }
632
633
634 /*
635  * Load medium in device
636  *  Returns: 1 on success
637  *           0 on failure
638  */
639 int load_dev(DEVICE *dev)
640 {
641 #ifdef MTLOAD
642    struct mtop mt_com;
643 #endif
644
645    if (dev->fd < 0) {
646       dev->dev_errno = EBADF;
647       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
648       Emsg0(M_FATAL, 0, dev->errmsg);
649       return 0;
650    }
651    if (!(dev->state & ST_TAPE)) {
652       return 1;
653    }
654 #ifndef MTLOAD
655    Dmsg0(200, "stored: MTLOAD command not available\n");
656    dev->dev_errno = ENOTTY;           /* function not available */
657    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
658          dev->dev_name, strerror(dev->dev_errno));      return 0;
659    return 0;
660 #else
661
662    dev->block_num = dev->file = 0;
663    dev->file_addr = 0;
664    mt_com.mt_op = MTLOAD;
665    mt_com.mt_count = 1;
666    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
667       dev->dev_errno = errno;
668       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
669          dev->dev_name, strerror(dev->dev_errno));      return 0;
670    }
671    return 1;
672 #endif
673 }
674
675 /*
676  * Rewind device and put it offline
677  *  Returns: 1 on success
678  *           0 on failure
679  */
680 int offline_dev(DEVICE *dev)
681 {
682    struct mtop mt_com;
683
684    if (dev->fd < 0) {
685       dev->dev_errno = EBADF;
686       Mmsg0(&dev->errmsg, _("Bad call to offline_dev. Archive not open\n"));
687       Emsg0(M_FATAL, 0, dev->errmsg);
688       return 0;
689    }
690    if (!(dev->state & ST_TAPE)) {
691       return 1;
692    }
693
694    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
695    dev->block_num = dev->file = 0;
696    dev->file_addr = 0;
697 #ifdef MTUNLOCK
698    mt_com.mt_op = MTUNLOCK;
699    mt_com.mt_count = 1;
700    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
701 #endif
702    mt_com.mt_op = MTOFFL;
703    mt_com.mt_count = 1;
704    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
705       dev->dev_errno = errno;
706       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
707          dev->dev_name, strerror(dev->dev_errno));
708       return 0;
709    }
710    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
711    return 1;
712 }
713
714 int offline_or_rewind_dev(DEVICE *dev)
715 {
716    if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
717       return offline_dev(dev);
718    } else {
719    /*            
720     * Note, this rewind probably should not be here (it wasn't
721     *  in prior versions of Bacula), but on FreeBSD, this is
722     *  needed in the case the tape was "frozen" due to an error
723     *  such as backspacing after writing and EOF. If it is not
724     *  done, all future references to the drive get and I/O error.
725     */
726       return rewind_dev(dev);
727    }
728 }
729
730 /* 
731  * Foward space a file  
732  *   Returns: 1 on success
733  *            0 on failure
734  */
735 int
736 fsf_dev(DEVICE *dev, int num)
737
738    struct mtget mt_stat;
739    struct mtop mt_com;
740    int stat = 0;
741
742    if (dev->fd < 0) {
743       dev->dev_errno = EBADF;
744       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
745       Emsg0(M_FATAL, 0, dev->errmsg);
746       return 0;
747    }
748
749    if (!(dev->state & ST_TAPE)) {
750       return 1;
751    }
752    if (dev->state & ST_EOT) {
753       dev->dev_errno = 0;
754       Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
755       return 0;
756    }
757    if (dev->state & ST_EOF) {
758       Dmsg0(200, "ST_EOF set on entry to FSF\n");
759    }
760       
761    Dmsg0(29, "fsf_dev\n");
762    dev->block_num = 0;
763    /*
764     * If Fast forward space file is set, then we
765     *  use MTFSF to forward space and MTIOCGET
766     *  to get the file position. We assume that 
767     *  the SCSI driver will ensure that we do not
768     *  forward space over the end of data mark.
769     */
770    if (dev_cap(dev, CAP_FSF) && dev_cap(dev, CAP_FASTFSF)) {
771       mt_com.mt_op = MTFSF;
772       mt_com.mt_count = num;
773       stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
774       if (stat < 0 || ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
775          dev->state |= ST_EOT;
776          Dmsg0(200, "Set ST_EOT\n");
777          clrerror_dev(dev, MTFSF);
778          Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
779             dev->dev_name, strerror(dev->dev_errno));
780          Dmsg1(200, "%s", dev->errmsg);
781          return 0;
782       }
783       Dmsg2(200, "fsf file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
784       dev->file = mt_stat.mt_fileno;
785       dev->state |= ST_EOF;     /* just read EOF */
786       dev->file_addr = 0;
787       return 1;
788
789    /* 
790     * Here if CAP_FSF is set, and virtually all drives
791     *  these days support it, we read a record, then forward
792     *  space one file. Using this procedure, which is slow,
793     *  is the only way we can be sure that we don't read
794     *  two consecutive EOF marks, which means End of Data.
795     */
796    } else if (dev_cap(dev, CAP_FSF)) {
797       POOLMEM *rbuf;
798       int rbuf_len;
799       Dmsg0(200, "FSF has cap_fsf\n");
800       if (dev->max_block_size == 0) {
801          rbuf_len = DEFAULT_BLOCK_SIZE;
802       } else {
803          rbuf_len = dev->max_block_size;
804       }
805       rbuf = get_memory(rbuf_len);
806       mt_com.mt_op = MTFSF;
807       mt_com.mt_count = 1;
808       while (num-- && !(dev->state & ST_EOT)) {
809          Dmsg0(200, "Doing read before fsf\n");
810          if ((stat = read(dev->fd, (char *)rbuf, rbuf_len)) < 0) {
811             if (errno == ENOMEM) {     /* tape record exceeds buf len */
812                stat = rbuf_len;        /* This is OK */
813             } else {
814                dev->state |= ST_EOT;
815                clrerror_dev(dev, -1);
816                Dmsg2(200, "Set ST_EOT read errno=%d. ERR=%s\n", dev->dev_errno,
817                   strerror(dev->dev_errno));
818                Mmsg2(&dev->errmsg, _("read error on %s. ERR=%s.\n"),
819                   dev->dev_name, strerror(dev->dev_errno));
820                Dmsg1(200, "%s", dev->errmsg);
821                break;
822             }
823          }
824          if (stat == 0) {                /* EOF */
825             update_pos_dev(dev);
826             Dmsg1(200, "End of File mark from read. File=%d\n", dev->file+1);
827             /* Two reads of zero means end of tape */
828             if (dev->state & ST_EOF) {
829                dev->state |= ST_EOT;
830                Dmsg0(200, "Set ST_EOT\n");
831                break;
832             } else {
833                dev->state |= ST_EOF;
834                dev->file++;
835                dev->file_addr = 0;
836                continue;
837             }
838          } else {                        /* Got data */
839             dev->state &= ~(ST_EOF|ST_EOT);
840          }
841
842          Dmsg0(200, "Doing MTFSF\n");
843          stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
844          if (stat < 0) {                 /* error => EOT */
845             dev->state |= ST_EOT;
846             Dmsg0(200, "Set ST_EOT\n");
847             clrerror_dev(dev, MTFSF);
848             Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
849                dev->dev_name, strerror(dev->dev_errno));
850             Dmsg0(200, "Got < 0 for MTFSF\n");
851             Dmsg1(200, "%s", dev->errmsg);
852          } else {
853             dev->state |= ST_EOF;     /* just read EOF */
854             dev->file++;
855             dev->file_addr = 0;
856          }   
857       }
858       free_memory(rbuf);
859    
860    /*
861     * No FSF, so use FSR to simulate it
862     */
863    } else {
864       Dmsg0(200, "Doing FSR for FSF\n");
865       while (num-- && !(dev->state & ST_EOT)) {
866          fsr_dev(dev, INT32_MAX);    /* returns -1 on EOF or EOT */
867       }
868       if (dev->state & ST_EOT) {
869          dev->dev_errno = 0;
870          Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
871          stat = -1;
872       } else {
873          stat = 0;
874       }
875    }
876    update_pos_dev(dev);
877    Dmsg1(200, "Return %d from FSF\n", stat);
878    if (dev->state & ST_EOF)
879       Dmsg0(200, "ST_EOF set on exit FSF\n");
880    if (dev->state & ST_EOT)
881       Dmsg0(200, "ST_EOT set on exit FSF\n");
882    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
883    return stat == 0 ? 1 : 0;
884 }
885
886 /* 
887  * Backward space a file  
888  *  Returns: 0 on failure
889  *           1 on success
890  */
891 int
892 bsf_dev(DEVICE *dev, int num)
893
894    struct mtop mt_com;
895    int stat;
896
897    if (dev->fd < 0) {
898       dev->dev_errno = EBADF;
899       Mmsg0(&dev->errmsg, _("Bad call to bsf_dev. Archive device not open\n"));
900       Emsg0(M_FATAL, 0, dev->errmsg);
901       return 0;
902    }
903
904    if (!(dev_state(dev, ST_TAPE))) {
905       Mmsg1(&dev->errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
906          dev->dev_name);
907       return 0;
908    }
909    Dmsg0(29, "bsf_dev\n");
910    dev->state &= ~(ST_EOT|ST_EOF);
911    dev->file -= num;
912    dev->file_addr = 0;
913    mt_com.mt_op = MTBSF;
914    mt_com.mt_count = num;
915    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
916    if (stat < 0) {
917       clrerror_dev(dev, MTBSF);
918       Mmsg2(&dev->errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
919          dev->dev_name, strerror(dev->dev_errno));
920    }
921    update_pos_dev(dev);
922    return stat == 0 ? 1 : 0;
923 }
924
925
926 /* 
927  * Foward space a record
928  *  Returns: 0 on failure
929  *           1 on success
930  */
931 int
932 fsr_dev(DEVICE *dev, int num)
933
934    struct mtop mt_com;
935    int stat;
936
937    if (dev->fd < 0) {
938       dev->dev_errno = EBADF;
939       Mmsg0(&dev->errmsg, _("Bad call to fsr_dev. Archive not open\n"));
940       Emsg0(M_FATAL, 0, dev->errmsg);
941       return 0;
942    }
943
944    if (!(dev_state(dev, ST_TAPE))) {
945       return 0;
946    }
947    Dmsg0(29, "fsr_dev\n");
948    dev->block_num += num;
949    mt_com.mt_op = MTFSR;
950    mt_com.mt_count = num;
951    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
952    if (stat == 0) {
953       dev->state &= ~ST_EOF;
954    } else {
955       if (dev->state & ST_EOF) {
956          dev->state |= ST_EOT;
957       } else {
958          dev->state |= ST_EOF;           /* assume EOF */
959          dev->file++;
960          dev->file_addr = 0;
961       }
962       clrerror_dev(dev, MTFSR);
963       Mmsg2(&dev->errmsg, _("ioctl MTFSR error on %s. ERR=%s.\n"),
964          dev->dev_name, strerror(dev->dev_errno));
965    }
966    update_pos_dev(dev);
967    return stat == 0 ? 1 : 0;
968 }
969
970 /* 
971  * Backward space a record
972  *   Returns:  0 on failure
973  *             1 on success
974  */
975 int
976 bsr_dev(DEVICE *dev, int num)
977
978    struct mtop mt_com;
979    int stat;
980
981    if (dev->fd < 0) {
982       dev->dev_errno = EBADF;
983       Mmsg0(&dev->errmsg, _("Bad call to bsr_dev. Archive not open\n"));
984       Emsg0(M_FATAL, 0, dev->errmsg);
985       return 0;
986    }
987
988    if (!(dev->state & ST_TAPE)) {
989       return 0;
990    }
991
992    if (!dev_cap(dev, CAP_BSR)) {
993       Mmsg1(&dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"),
994          dev->dev_name);
995       return 0;
996    }
997
998    Dmsg0(29, "bsr_dev\n");
999    dev->block_num -= num;
1000    dev->state &= ~(ST_EOF|ST_EOT|ST_EOF);
1001    mt_com.mt_op = MTBSR;
1002    mt_com.mt_count = num;
1003    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1004    if (stat < 0) {
1005       clrerror_dev(dev, MTBSR);
1006       Mmsg2(&dev->errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
1007          dev->dev_name, strerror(dev->dev_errno));
1008    }
1009    update_pos_dev(dev);
1010    return stat == 0 ? 1 : 0;
1011 }
1012
1013 /* 
1014  * Reposition the device to file, block
1015  *   Currently only works for tapes.
1016  * Returns: 0 on failure
1017  *          1 on success
1018  */
1019 int
1020 reposition_dev(DEVICE *dev, uint32_t file, uint32_t block)
1021
1022    if (dev->fd < 0) {
1023       dev->dev_errno = EBADF;
1024       Mmsg0(&dev->errmsg, _("Bad call to reposition_dev. Archive not open\n"));
1025       Emsg0(M_FATAL, 0, dev->errmsg);
1026       return 0;
1027    }
1028
1029    if (!(dev_state(dev, ST_TAPE))) {
1030       return 0;
1031    }
1032    Dmsg4(100, "reposition_dev from %u:%u to %u:%u\n", 
1033       dev->file, dev->block_num, file, block);
1034    if (file < dev->file) {
1035       Dmsg0(100, "Rewind_dev\n");
1036       if (!rewind_dev(dev)) {
1037          return 0;
1038       }
1039    }
1040    if (file > dev->file) {
1041       Dmsg1(100, "fsf %d\n", file-dev->file);
1042       if (!fsf_dev(dev, file-dev->file)) {
1043          return 0;
1044       }
1045    }
1046    if (block < dev->block_num) {
1047       bsf_dev(dev, 1);
1048       fsf_dev(dev, 1);
1049    }
1050    if (block > dev->block_num) {
1051       /* Ignore errors as Bacula can read to the correct block */
1052       Dmsg1(100, "fsr %d\n", block-dev->block_num);
1053       fsr_dev(dev, block-dev->block_num);
1054    }
1055    return 1;
1056 }
1057
1058
1059
1060 /*
1061  * Write an end of file on the device
1062  *   Returns: 0 on success
1063  *            non-zero on failure
1064  */
1065 int 
1066 weof_dev(DEVICE *dev, int num)
1067
1068    struct mtop mt_com;
1069    int stat;
1070
1071    if (dev->fd < 0) {
1072       dev->dev_errno = EBADF;
1073       Mmsg0(&dev->errmsg, _("Bad call to weof_dev. Archive drive not open\n"));
1074       Emsg0(M_FATAL, 0, dev->errmsg);
1075       return -1;
1076    }
1077
1078    if (!(dev_state(dev, ST_TAPE))) {
1079       return 0;
1080    }
1081    dev->state &= ~(ST_EOT | ST_EOF);  /* remove EOF/EOT flags */
1082    dev->block_num = 0;
1083    Dmsg0(29, "weof_dev\n");
1084    mt_com.mt_op = MTWEOF;
1085    mt_com.mt_count = num;
1086    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1087    if (stat == 0) {
1088       dev->file += num;
1089       dev->file_addr = 0;
1090    } else {
1091       clrerror_dev(dev, MTWEOF);
1092       if (stat == -1) {
1093          Mmsg2(&dev->errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
1094             dev->dev_name, strerror(dev->dev_errno));
1095        }
1096    }
1097    return stat;
1098 }
1099
1100 /*
1101  * Return string message with last error in English
1102  *  Be careful not to call this routine from within dev.c
1103  *  while editing an Mmsg(&) or you will end up in a recursive
1104  *  loop creating a Segmentation Violation.
1105  */
1106 char *
1107 strerror_dev(DEVICE *dev)
1108 {
1109    return dev->errmsg;
1110 }
1111
1112
1113 /*
1114  * If implemented in system, clear the tape
1115  * error status.
1116  */
1117 void
1118 clrerror_dev(DEVICE *dev, int func)
1119 {
1120    char *msg = NULL;
1121
1122    dev->dev_errno = errno;         /* save errno */
1123    if (errno == EIO) {
1124       dev->VolCatInfo.VolCatErrors++;
1125    }
1126
1127    if (!(dev->state & ST_TAPE)) {
1128       return;
1129    }
1130    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
1131       switch (func) {
1132       case -1:
1133          Emsg0(M_ABORT, 0, "Got ENOTTY on read/write!\n");
1134          break;
1135       case MTWEOF:
1136          msg = "WTWEOF";
1137          dev->capabilities &= ~CAP_EOF; /* turn off feature */
1138          break;
1139 #ifdef MTEOM
1140       case MTEOM:
1141          msg = "WTEOM";
1142          dev->capabilities &= ~CAP_EOM; /* turn off feature */
1143          break;
1144 #endif 
1145       case MTFSF:
1146          msg = "MTFSF";
1147          dev->capabilities &= ~CAP_FSF; /* turn off feature */
1148          break;
1149       case MTBSF:
1150          msg = "MTBSF";
1151          dev->capabilities &= ~CAP_BSF; /* turn off feature */
1152          break;
1153       case MTFSR:
1154          msg = "MTFSR";
1155          dev->capabilities &= ~CAP_FSR; /* turn off feature */
1156          break;
1157       case MTBSR:
1158          msg = "MTBSR";
1159          dev->capabilities &= ~CAP_BSR; /* turn off feature */
1160          break;
1161       default:
1162          msg = "Unknown";
1163          break;
1164       }
1165       if (msg != NULL) {
1166          dev->dev_errno = ENOSYS;
1167          Mmsg1(&dev->errmsg, _("This device does not support %s.\n"), msg);
1168          Emsg0(M_ERROR, 0, dev->errmsg);
1169       }
1170    }
1171 /* Found on Linux */
1172 #ifdef MTIOCLRERR
1173 {
1174    struct mtop mt_com;
1175    mt_com.mt_op = MTIOCLRERR;
1176    mt_com.mt_count = 1;
1177    /* Clear any error condition on the tape */
1178    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1179    Dmsg0(200, "Did MTIOCLRERR\n");
1180 }
1181 #endif
1182
1183 /* Typically on FreeBSD */
1184 #ifdef MTIOCERRSTAT
1185 {
1186    /* Read and clear SCSI error status */
1187    union mterrstat mt_errstat;
1188    Dmsg2(200, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev->dev_errno,
1189       strerror(dev->dev_errno));
1190    ioctl(dev->fd, MTIOCERRSTAT, (char *)&mt_errstat);
1191 }
1192 #endif
1193 }
1194
1195 /*
1196  * Flush buffer contents
1197  *  No longer used.
1198  */
1199 int flush_dev(DEVICE *dev)
1200 {
1201    return 1;
1202 }
1203
1204 static void do_close(DEVICE *dev)
1205 {
1206
1207    Dmsg1(29, "really close_dev %s\n", dev->dev_name);
1208    if (dev->fd >= 0) {
1209       close(dev->fd);
1210    }
1211    /* Clean up device packet so it can be reused */
1212    dev->fd = -1;
1213    dev->state &= ~(ST_OPENED|ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1214    dev->file = dev->block_num = 0;
1215    dev->file_addr = 0;
1216    dev->EndFile = dev->EndBlock = 0;
1217    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
1218    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
1219    if (dev->tid) {
1220       stop_thread_timer(dev->tid);
1221       dev->tid = 0;
1222    }
1223    dev->use_count = 0;
1224 }
1225
1226 /* 
1227  * Close the device
1228  */
1229 void
1230 close_dev(DEVICE *dev)
1231 {
1232    if (!dev) {
1233       Mmsg0(&dev->errmsg, _("Bad call to close_dev. Archive not open\n"));
1234       Emsg0(M_FATAL, 0, dev->errmsg);
1235       return;
1236    }
1237    if (dev->fd >= 0 && dev->use_count == 1) {
1238       do_close(dev);
1239    } else if (dev->use_count > 0) {
1240       dev->use_count--;
1241    }
1242            
1243 #ifdef FULL_DEBUG
1244    ASSERT(dev->use_count >= 0);
1245 #endif
1246 }
1247
1248 /*
1249  * Used when unmounting the device, ignore use_count
1250  */
1251 void force_close_dev(DEVICE *dev)
1252 {
1253    if (!dev) {
1254       Mmsg0(&dev->errmsg, _("Bad call to force_close_dev. Archive not open\n"));
1255       Emsg0(M_FATAL, 0, dev->errmsg);
1256       return;
1257    }
1258    Dmsg1(29, "Force close_dev %s\n", dev->dev_name);
1259    do_close(dev);
1260
1261 #ifdef FULL_DEBUG
1262    ASSERT(dev->use_count >= 0);
1263 #endif
1264 }
1265
1266 int truncate_dev(DEVICE *dev)
1267 {
1268    if (dev->state & ST_TAPE) {
1269       return 1;
1270    }
1271    if (ftruncate(dev->fd, 0) != 0) {
1272       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), strerror(errno));
1273       return 0;
1274    }
1275    return 1;
1276 }
1277
1278 int 
1279 dev_is_tape(DEVICE *dev)
1280 {  
1281    return (dev->state & ST_TAPE) ? 1 : 0;
1282 }
1283
1284
1285 /*
1286  * return 1 if the device is read for write, and 0 otherwise
1287  *   This is meant for checking at the end of a job to see
1288  *   if we still have a tape (perhaps not if at end of tape
1289  *   and the job is canceled).
1290  */
1291 int
1292 dev_can_write(DEVICE *dev)
1293 {
1294    if ((dev->state & ST_OPENED) &&  (dev->state & ST_APPEND) &&
1295        (dev->state & ST_LABEL)  && !(dev->state & ST_WEOT)) {
1296       return 1;
1297    } else {
1298       return 0;
1299    }
1300 }
1301
1302 char *
1303 dev_name(DEVICE *dev)
1304 {
1305    return dev->dev_name;
1306 }
1307
1308 char *
1309 dev_vol_name(DEVICE *dev)
1310 {
1311    return dev->VolCatInfo.VolCatName;
1312 }
1313
1314 uint32_t dev_block(DEVICE *dev)
1315 {
1316    update_pos_dev(dev);
1317    return dev->block_num;
1318 }
1319
1320 uint32_t dev_file(DEVICE *dev)
1321 {
1322    update_pos_dev(dev);
1323    return dev->file;
1324 }
1325
1326 /* 
1327  * Free memory allocated for the device
1328  */
1329 void
1330 term_dev(DEVICE *dev)
1331 {
1332    if (!dev) {
1333       dev->dev_errno = EBADF;
1334       Mmsg0(&dev->errmsg, _("Bad call to term_dev. Archive not open\n"));
1335       Emsg0(M_FATAL, 0, dev->errmsg);
1336       return;
1337    }
1338    do_close(dev);
1339    Dmsg0(29, "term_dev\n");
1340    if (dev->dev_name) {
1341       free_memory(dev->dev_name);
1342       dev->dev_name = NULL;
1343    }
1344    if (dev->errmsg) {
1345       free_pool_memory(dev->errmsg);
1346       dev->errmsg = NULL;
1347    }
1348    pthread_mutex_destroy(&dev->mutex);
1349    pthread_cond_destroy(&dev->wait);
1350    pthread_cond_destroy(&dev->wait_next_vol);
1351    if (dev->state & ST_MALLOC) {
1352       free_pool_memory((POOLMEM *)dev);
1353    }
1354 }
1355
1356 /*
1357  * We attach a jcr to the device so that when
1358  *   the Volume is full during writing, a  
1359  *   JobMedia record will be created for this 
1360  *   Job.
1361  */
1362 void attach_jcr_to_device(DEVICE *dev, JCR *jcr)
1363 {
1364    jcr->prev_dev = (JCR *)NULL;
1365    jcr->next_dev = dev->attached_jcrs;
1366    if (dev->attached_jcrs) {
1367       dev->attached_jcrs->prev_dev = jcr;
1368    }
1369    dev->attached_jcrs = jcr;
1370    Dmsg1(100, "Attached Job %s\n", jcr->Job);
1371 }
1372
1373 void detach_jcr_from_device(DEVICE *dev, JCR *jcr)
1374 {
1375    if (!jcr->prev_dev) {
1376       dev->attached_jcrs = jcr->next_dev;
1377    } else {
1378       jcr->prev_dev->next_dev = jcr->next_dev;
1379    }
1380    if (jcr->next_dev) {
1381       jcr->next_dev->prev_dev = jcr->prev_dev; 
1382    }
1383    jcr->next_dev = jcr->prev_dev = NULL;
1384    Dmsg1(100, "Detached Job %s\n", jcr->Job);
1385 }
1386
1387 JCR *next_attached_jcr(DEVICE *dev, JCR *jcr)
1388 {
1389    if (jcr == (JCR *)NULL) {
1390       return dev->attached_jcrs;
1391    }
1392    return jcr->next_dev;
1393 }
1394
1395 /*
1396  * This routine initializes the device wait timers
1397  */
1398 void init_dev_wait_timers(DEVICE *dev)
1399 {
1400    /* ******FIXME******* put these on config variables */
1401    dev->min_wait = 60 * 60;
1402    dev->max_wait = 24 * 60 * 60;
1403    dev->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
1404    dev->wait_sec = dev->min_wait;
1405    dev->rem_wait_sec = dev->wait_sec;
1406    dev->num_wait = 0;
1407    dev->poll = false;
1408    dev->BadVolName[0] = 0;
1409 }
1410
1411 /*
1412  * Returns: true if time doubled
1413  *          false if max time expired
1414  */
1415 bool double_dev_wait_time(DEVICE *dev)
1416 {
1417    dev->wait_sec *= 2;               /* double wait time */
1418    if (dev->wait_sec > dev->max_wait) {   /* but not longer than maxtime */
1419       dev->wait_sec = dev->max_wait;
1420    }
1421    dev->num_wait++;
1422    dev->rem_wait_sec = dev->wait_sec;
1423    if (dev->num_wait >= dev->max_num_wait) {
1424       return false;
1425    }
1426    return true;
1427 }