]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
Fix watchdog crash in btape+detect more Device config problems in btape test + fix...
[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-2003 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->device = device;
151
152    if (tape) {
153       dev->state |= ST_TAPE;
154    } else if (fifo) {
155       dev->state |= ST_FIFO;
156       dev->capabilities |= CAP_STREAM; /* set stream device */
157    } else {
158       dev->state |= ST_FILE;
159    }
160
161    if (dev->max_block_size > 1000000) {
162       Emsg3(M_ERROR, 0, _("Block size %u on device %s is too large, using default %u\n"), 
163          dev->max_block_size, dev->dev_name, DEFAULT_BLOCK_SIZE);
164       dev->max_block_size = 0;
165    }
166    if (dev->max_block_size % TAPE_BSIZE != 0) {
167       Emsg2(M_WARNING, 0, _("Max block size %u not multiple of device %s block size.\n"),
168          dev->max_block_size, dev->dev_name);
169    }   
170          
171    dev->errmsg = get_pool_memory(PM_EMSG);
172    *dev->errmsg = 0;
173
174    if ((errstat = pthread_mutex_init(&dev->mutex, NULL)) != 0) {
175       dev->dev_errno = errstat;
176       Mmsg1(&dev->errmsg, _("Unable to init mutex: ERR=%s\n"), strerror(errstat));
177       Emsg0(M_FATAL, 0, dev->errmsg);
178    }
179    if ((errstat = pthread_cond_init(&dev->wait, NULL)) != 0) {
180       dev->dev_errno = errstat;
181       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
182       Emsg0(M_FATAL, 0, dev->errmsg);
183    }
184    if ((errstat = pthread_cond_init(&dev->wait_next_vol, 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    dev->fd = -1;
190    Dmsg2(29, "init_dev: tape=%d dev_name=%s\n", dev_is_tape(dev), dev->dev_name);
191    return dev;
192 }
193
194 /* Open the device with the operating system and
195  * initialize buffer pointers.
196  *
197  * Note, for a tape, the VolName is the name we give to the
198  *    volume (not really used here), but for a file, the
199  *    VolName represents the name of the file to be created/opened.
200  *    In the case of a file, the full name is the device name
201  *    (archive_name) with the VolName concatenated.
202  */
203 int
204 open_dev(DEVICE *dev, char *VolName, int mode)
205 {
206    POOLMEM *archive_name;
207
208    if (dev->state & ST_OPENED) {
209       /*
210        *  *****FIXME***** how to handle two threads wanting
211        *  different volumes mounted???? E.g. one is waiting
212        *  for the next volume to be mounted, and a new job
213        *  starts and snatches up the device.
214        */
215       if (VolName && strcmp(dev->VolCatInfo.VolCatName, VolName) != 0) {
216          return -1;
217       }
218       dev->use_count++;
219       Mmsg2(&dev->errmsg, _("WARNING!!!! device %s opened %d times!!!\n"), 
220             dev->dev_name, dev->use_count);
221       Emsg1(M_WARNING, 0, "%s", dev->errmsg);
222       return dev->fd;
223    }
224    if (VolName) {
225       bstrncpy(dev->VolCatInfo.VolCatName, VolName, sizeof(dev->VolCatInfo.VolCatName));
226    }
227
228    Dmsg3(29, "open_dev: tape=%d dev_name=%s vol=%s\n", dev_is_tape(dev), 
229          dev->dev_name, dev->VolCatInfo.VolCatName);
230    dev->state &= ~(ST_LABEL|ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
231    if (dev->state & (ST_TAPE|ST_FIFO)) {
232       int timeout;
233       Dmsg0(29, "open_dev: device is tape\n");
234       if (mode == OPEN_READ_WRITE) {
235          dev->mode = O_RDWR | O_BINARY;
236       } else if (mode == OPEN_READ_ONLY) {
237          dev->mode = O_RDONLY | O_BINARY;
238       } else if (mode == OPEN_WRITE_ONLY) {
239          dev->mode = O_WRONLY | O_BINARY;
240       } else {
241          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
242       }
243       timeout = dev->max_open_wait;
244       errno = 0;
245       if (dev->state & ST_FIFO && timeout) {
246          /* Set open timer */
247          dev->tid = start_thread_timer(pthread_self(), timeout);
248       }
249       /* If busy retry each second for max_open_wait seconds */
250       while ((dev->fd = open(dev->dev_name, dev->mode, MODE_RW)) < 0) {
251          if (errno == EAGAIN) {
252             continue;
253          }
254          if (errno == EBUSY && timeout-- > 0) {
255             Dmsg2(100, "Device %s busy. ERR=%s\n", dev->dev_name, strerror(errno));
256             bmicrosleep(1, 0);
257             continue;
258          }
259          dev->dev_errno = errno;
260          Mmsg2(&dev->errmsg, _("stored: unable to open device %s: ERR=%s\n"), 
261                dev->dev_name, strerror(dev->dev_errno));
262          /* Stop any open timer we set */
263          if (dev->tid) {
264             stop_thread_timer(dev->tid);
265             dev->tid = 0;
266          }
267          Emsg0(M_FATAL, 0, dev->errmsg);
268          break;
269       }
270       if (dev->fd >= 0) {
271          dev->dev_errno = 0;
272          dev->state |= ST_OPENED;
273          dev->use_count = 1;
274          update_pos_dev(dev);             /* update position */
275       }
276       /* Stop any open() timer we started */
277       if (dev->tid) {
278          stop_thread_timer(dev->tid);
279          dev->tid = 0;
280       }
281       Dmsg1(29, "open_dev: tape %d opened\n", dev->fd);
282    } else {
283       /*
284        * Handle opening of File Archive (not a tape)
285        */
286       if (VolName == NULL || *VolName == 0) {
287          Mmsg(&dev->errmsg, _("Could not open file device %s. No Volume name given.\n"),
288             dev->dev_name);
289          return -1;
290       }
291       archive_name = get_pool_memory(PM_FNAME);
292       pm_strcpy(&archive_name, dev->dev_name);
293       if (archive_name[strlen(archive_name)] != '/') {
294          pm_strcat(&archive_name, "/");
295       }
296       pm_strcat(&archive_name, VolName);
297       Dmsg1(29, "open_dev: device is disk %s\n", archive_name);
298       if (mode == OPEN_READ_WRITE) {
299          dev->mode = O_CREAT | O_RDWR | O_BINARY;
300       } else if (mode == OPEN_READ_ONLY) {
301          dev->mode = O_RDONLY | O_BINARY;
302       } else if (mode == OPEN_WRITE_ONLY) {
303          dev->mode = O_WRONLY | O_BINARY;
304       } else {
305          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
306       }
307       /* If creating file, give 0640 permissions */
308       if ((dev->fd = open(archive_name, dev->mode, 0640)) < 0) {
309          dev->dev_errno = errno;
310          Mmsg2(&dev->errmsg, _("Could not open: %s, ERR=%s\n"), archive_name, strerror(dev->dev_errno));
311          Emsg0(M_FATAL, 0, dev->errmsg);
312       } else {
313          dev->dev_errno = 0;
314          dev->state |= ST_OPENED;
315          dev->use_count = 1;
316          update_pos_dev(dev);                /* update position */
317       }
318       Dmsg1(29, "open_dev: disk fd=%d opened\n", dev->fd);
319       free_pool_memory(archive_name);
320    }
321    return dev->fd;
322 }
323
324 #ifdef debug_tracing
325 #undef rewind_dev
326 int _rewind_dev(char *file, int line, DEVICE *dev)
327 {
328    Dmsg2(100, "rewind_dev called from %s:%d\n", file, line);
329    return rewind_dev(dev);
330 }
331 #endif
332
333
334 /*
335  * Rewind the device.
336  *  Returns: 1 on success
337  *           0 on failure
338  */
339 int rewind_dev(DEVICE *dev)
340 {
341    struct mtop mt_com;
342    unsigned int i;
343
344    Dmsg1(29, "rewind_dev %s\n", dev->dev_name);
345    if (dev->fd < 0) {
346       dev->dev_errno = EBADF;
347       Mmsg1(&dev->errmsg, _("Bad call to rewind_dev. Device %s not open\n"),
348             dev->dev_name);
349       Emsg0(M_FATAL, 0, dev->errmsg);
350       return 0;
351    }
352    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
353    dev->block_num = dev->file = 0;
354    dev->file_addr = 0;
355    if (dev->state & ST_TAPE) {
356       mt_com.mt_op = MTREW;
357       mt_com.mt_count = 1;
358       /* If we get an I/O error on rewind, it is probably because
359        * the drive is actually busy. We loop for (about 5 minutes)
360        * retrying every 5 seconds.
361        */
362       for (i=dev->max_rewind_wait; ; i -= 5) {
363          if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
364             if (i == dev->max_rewind_wait) {
365                Dmsg1(200, "Rewind error, %s. retrying ...\n", strerror(errno));
366             }
367             clrerror_dev(dev, MTREW);
368             if (dev->dev_errno == EIO && i > 0) {
369                Dmsg0(200, "Sleeping 5 seconds.\n");
370                bmicrosleep(5, 0);
371                continue;
372             }
373             Mmsg2(&dev->errmsg, _("Rewind error on %s. ERR=%s.\n"),
374                dev->dev_name, strerror(dev->dev_errno));
375             return 0;
376          }
377          break;
378       }
379    } else if (dev->state & ST_FILE) {
380       if (lseek(dev->fd, (off_t)0, SEEK_SET) < 0) {
381          dev->dev_errno = errno;
382          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
383             dev->dev_name, strerror(dev->dev_errno));
384          return 0;
385       }
386    }
387    return 1;
388 }
389
390 /* 
391  * Position device to end of medium (end of data)
392  *  Returns: 1 on succes
393  *           0 on error
394  */
395 int 
396 eod_dev(DEVICE *dev)
397 {
398    struct mtop mt_com;
399    struct mtget mt_stat;
400    int stat = 0;
401    off_t pos;
402
403    Dmsg0(29, "eod_dev\n");
404    if (dev->state & ST_EOT) {
405       return 1;
406    }
407    dev->state &= ~(ST_EOF);  /* remove EOF flags */
408    dev->block_num = dev->file = 0;
409    dev->file_addr = 0;
410    if (dev->state & (ST_FIFO | ST_PROG)) {
411       return 1;
412    }
413    if (!(dev->state & ST_TAPE)) {
414       pos = lseek(dev->fd, (off_t)0, SEEK_END);
415 //    Dmsg1(100, "====== Seek to %lld\n", pos);
416       if (pos >= 0) {
417          update_pos_dev(dev);
418          dev->state |= ST_EOT;
419          return 1;
420       }
421       dev->dev_errno = errno;
422       Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
423              dev->dev_name, strerror(dev->dev_errno));
424       return 0;
425    }
426 #ifdef MTEOM
427    if (dev_cap(dev, CAP_EOM)) {
428       mt_com.mt_op = MTEOM;
429       mt_com.mt_count = 1;
430       if ((stat=ioctl(dev->fd, MTIOCTOP, (char *)&mt_com)) < 0) {
431          Dmsg1(50, "ioctl error: %s\n", strerror(dev->dev_errno));
432          clrerror_dev(dev, mt_com.mt_op);
433          update_pos_dev(dev);
434          Mmsg2(&dev->errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
435             dev->dev_name, strerror(dev->dev_errno));
436          return 0;
437       }
438       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
439          dev->dev_errno = errno;
440          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
441             dev->dev_name, strerror(dev->dev_errno));
442          return 0;
443       }
444       Dmsg2(200, "EOD file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
445       dev->file = mt_stat.mt_fileno;
446
447    /*
448     * Rewind then use FSF until EOT reached
449     */
450    } else {
451 #else
452    {
453 #endif
454       if (!rewind_dev(dev)) {
455          return 0;
456       }
457       /* 
458        * Move file by file to the end of the tape
459        */
460       int file_num;
461       for (file_num=dev->file; !(dev->state & ST_EOT); file_num++) {
462          Dmsg0(200, "eod_dev: doing fsf 1\n");
463          if (!fsf_dev(dev, 1)) {
464             Dmsg0(200, "fsf_dev error.\n");
465             return 0;
466          }
467          /*
468           * Avoid infinite loop. ***FIXME*** possibly add code
469           *   to set EOD or to turn off CAP_FASTFSF if on.
470           */
471          if (file_num == (int)dev->file) {
472             Dmsg1(000, "fsf_dev did not advance from file %d\n", file_num);
473             return 0;                 /* we are not progressing, bail out */
474          }
475       }
476    }
477    /*
478     * Some drivers leave us after second EOF when doing
479     * MTEOM, so we must backup so that appending overwrites
480     * the second EOF.
481     */
482    if (dev_cap(dev, CAP_BSFATEOM)) {
483       struct mtget mt_stat;
484       /* Backup over EOF */
485       stat = bsf_dev(dev, 1);
486       /* If BSF worked and fileno is known (not -1), set file */
487       if (stat == 0 && ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) == 0 &&
488           mt_stat.mt_fileno >= 0) {
489          dev->file = mt_stat.mt_fileno;
490       }
491    } else {
492       update_pos_dev(dev);                   /* update position */
493       stat = 1;
494    }
495    Dmsg1(200, "EOD dev->file=%d\n", dev->file);
496    return stat;
497 }
498
499 /*
500  * Set the position of the device -- only for files
501  *   For other devices, there is no generic way to do it.
502  *  Returns: 1 on succes
503  *           0 on error
504  */
505 int update_pos_dev(DEVICE *dev)
506 {
507    off_t pos;
508    int stat = 0;
509
510    if (dev->fd < 0) {
511       dev->dev_errno = EBADF;
512       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
513       Emsg0(M_FATAL, 0, dev->errmsg);
514       return 0;
515    }
516
517    /* Find out where we are */
518    if (dev->state & ST_FILE) {
519       dev->file = 0;
520       dev->file_addr = 0;
521       pos = lseek(dev->fd, (off_t)0, SEEK_CUR);
522       if (pos < 0) {
523          Pmsg1(000, "Seek error: ERR=%s\n", strerror(dev->dev_errno));
524          dev->dev_errno = errno;
525          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
526             dev->dev_name, strerror(dev->dev_errno));
527       } else {
528          stat = 1;
529          dev->file_addr = pos;
530       }
531       return stat;
532    }
533    return 1;
534 }
535
536
537 /* 
538  * Return the status of the device.  This was meant
539  * to be a generic routine. Unfortunately, it doesn't
540  * seem possible (at least I do not know how to do it
541  * currently), which means that for the moment, this
542  * routine has very little value.
543  *
544  *   Returns: 1 on success
545  *            0 on error
546  */
547 int
548 status_dev(DEVICE *dev, uint32_t *status)
549 {
550    struct mtget mt_stat;
551    uint32_t stat = 0;
552
553    if (dev->state & (ST_EOT | ST_WEOT)) {
554       stat |= BMT_EOD;
555       Dmsg0(-20, " EOD");
556    }
557    if (dev->state & ST_EOF) {
558       stat |= BMT_EOF;
559       Dmsg0(-20, " EOF");
560    }
561    if (dev->state & ST_TAPE) {
562       stat |= BMT_TAPE;
563       Dmsg0(-20," Driver status:");
564       Dmsg2(-20," file=%d block=%d\n", dev->file, dev->block_num);
565       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
566          dev->dev_errno = errno;
567          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
568             dev->dev_name, strerror(dev->dev_errno));
569          return 0;
570       }
571       Dmsg0(-20, " Device status:");
572
573 #if defined(HAVE_LINUX_OS)
574       if (GMT_EOF(mt_stat.mt_gstat)) {
575          stat |= BMT_EOF;
576          Dmsg0(-20, " EOF");
577       }
578       if (GMT_BOT(mt_stat.mt_gstat)) {
579          stat |= BMT_BOT;
580          Dmsg0(-20, " BOT");
581       }
582       if (GMT_EOT(mt_stat.mt_gstat)) {
583          stat |= BMT_EOT;
584          Dmsg0(-20, " EOT");
585       }
586       if (GMT_SM(mt_stat.mt_gstat)) {
587          stat |= BMT_SM;
588          Dmsg0(-20, " SM");
589       }
590       if (GMT_EOD(mt_stat.mt_gstat)) {
591          stat |= BMT_EOD;
592          Dmsg0(-20, " EOD");
593       }
594       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
595          stat |= BMT_WR_PROT;
596          Dmsg0(-20, " WR_PROT");
597       }
598       if (GMT_ONLINE(mt_stat.mt_gstat)) {
599          stat |= BMT_ONLINE;
600          Dmsg0(-20, " ONLINE");
601       }
602       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
603          stat |= BMT_DR_OPEN;
604          Dmsg0(-20, " DR_OPEN");       
605       }
606       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
607          stat |= BMT_IM_REP_EN;
608          Dmsg0(-20, " IM_REP_EN");
609       }
610 #endif /* !SunOS && !OSF */
611       Dmsg2(-20, " file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
612    } else {
613       stat |= BMT_ONLINE | BMT_BOT;
614    }
615    *status = stat; 
616    return 1;
617 }
618
619
620 /*
621  * Load medium in device
622  *  Returns: 1 on success
623  *           0 on failure
624  */
625 int load_dev(DEVICE *dev)
626 {
627 #ifdef MTLOAD
628    struct mtop mt_com;
629 #endif
630
631    if (dev->fd < 0) {
632       dev->dev_errno = EBADF;
633       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
634       Emsg0(M_FATAL, 0, dev->errmsg);
635       return 0;
636    }
637    if (!(dev->state & ST_TAPE)) {
638       return 1;
639    }
640 #ifndef MTLOAD
641    Dmsg0(200, "stored: MTLOAD command not available\n");
642    dev->dev_errno = ENOTTY;           /* function not available */
643    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
644          dev->dev_name, strerror(dev->dev_errno));      return 0;
645    return 0;
646 #else
647
648    dev->block_num = dev->file = 0;
649    dev->file_addr = 0;
650    mt_com.mt_op = MTLOAD;
651    mt_com.mt_count = 1;
652    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
653       dev->dev_errno = errno;
654       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
655          dev->dev_name, strerror(dev->dev_errno));      return 0;
656    }
657    return 1;
658 #endif
659 }
660
661 /*
662  * Rewind device and put it offline
663  *  Returns: 1 on success
664  *           0 on failure
665  */
666 int offline_dev(DEVICE *dev)
667 {
668    struct mtop mt_com;
669
670    if (dev->fd < 0) {
671       dev->dev_errno = EBADF;
672       Mmsg0(&dev->errmsg, _("Bad call to offline_dev. Archive not open\n"));
673       Emsg0(M_FATAL, 0, dev->errmsg);
674       return 0;
675    }
676    if (!(dev->state & ST_TAPE)) {
677       return 1;
678    }
679
680    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
681    dev->block_num = dev->file = 0;
682    dev->file_addr = 0;
683 #ifdef MTUNLOCK
684    mt_com.mt_op = MTUNLOCK;
685    mt_com.mt_count = 1;
686    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
687 #endif
688    mt_com.mt_op = MTOFFL;
689    mt_com.mt_count = 1;
690    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
691       dev->dev_errno = errno;
692       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
693          dev->dev_name, strerror(dev->dev_errno));
694       return 0;
695    }
696    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
697    return 1;
698 }
699
700 int offline_or_rewind_dev(DEVICE *dev)
701 {
702    if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
703       return offline_dev(dev);
704    } else {
705    /*            
706     * Note, this rewind probably should not be here (it wasn't
707     *  in prior versions of Bacula), but on FreeBSD, this is
708     *  needed in the case the tape was "frozen" due to an error
709     *  such as backspacing after writing and EOF. If it is not
710     *  done, all future references to the drive get and I/O error.
711     */
712       return rewind_dev(dev);
713    }
714 }
715
716 /* 
717  * Foward space a file  
718  *   Returns: 1 on success
719  *            0 on failure
720  */
721 int
722 fsf_dev(DEVICE *dev, int num)
723
724    struct mtget mt_stat;
725    struct mtop mt_com;
726    int stat = 0;
727
728    if (dev->fd < 0) {
729       dev->dev_errno = EBADF;
730       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
731       Emsg0(M_FATAL, 0, dev->errmsg);
732       return 0;
733    }
734
735    if (!(dev->state & ST_TAPE)) {
736       return 1;
737    }
738    if (dev->state & ST_EOT) {
739       dev->dev_errno = 0;
740       Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
741       return 0;
742    }
743    if (dev->state & ST_EOF) {
744       Dmsg0(200, "ST_EOF set on entry to FSF\n");
745    }
746       
747    Dmsg0(29, "fsf_dev\n");
748    dev->block_num = 0;
749    /*
750     * If Fast forward space file is set, then we
751     *  use MTFSF to forward space and MTIOCGET
752     *  to get the file position. We assume that 
753     *  the SCSI driver will ensure that we do not
754     *  forward space over the end of data mark.
755     */
756    if (dev_cap(dev, CAP_FSF) && dev_cap(dev, CAP_FASTFSF)) {
757       mt_com.mt_op = MTFSF;
758       mt_com.mt_count = num;
759       stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
760       if (stat < 0 || ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
761          dev->state |= ST_EOT;
762          Dmsg0(200, "Set ST_EOT\n");
763          clrerror_dev(dev, MTFSF);
764          Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
765             dev->dev_name, strerror(dev->dev_errno));
766          Dmsg1(200, "%s", dev->errmsg);
767          return 0;
768       }
769       Dmsg2(200, "fsf file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
770       dev->file = mt_stat.mt_fileno;
771       dev->state |= ST_EOF;     /* just read EOF */
772       dev->file_addr = 0;
773       return 1;
774
775    /* 
776     * Here if CAP_FSF is set, and virtually all drives
777     *  these days support it, we read a record, then forward
778     *  space one file. Using this procedure, which is slow,
779     *  is the only way we can be sure that we don't read
780     *  two consecutive EOF marks, which means End of Data.
781     */
782    } else if (dev_cap(dev, CAP_FSF)) {
783       POOLMEM *rbuf;
784       int rbuf_len;
785       Dmsg0(200, "FSF has cap_fsf\n");
786       if (dev->max_block_size == 0) {
787          rbuf_len = DEFAULT_BLOCK_SIZE;
788       } else {
789          rbuf_len = dev->max_block_size;
790       }
791       rbuf = get_memory(rbuf_len);
792       mt_com.mt_op = MTFSF;
793       mt_com.mt_count = 1;
794       while (num-- && !(dev->state & ST_EOT)) {
795          Dmsg0(200, "Doing read before fsf\n");
796          if ((stat = read(dev->fd, (char *)rbuf, rbuf_len)) < 0) {
797             if (errno == ENOMEM) {     /* tape record exceeds buf len */
798                stat = rbuf_len;        /* This is OK */
799             } else {
800                dev->state |= ST_EOT;
801                clrerror_dev(dev, -1);
802                Dmsg2(200, "Set ST_EOT read errno=%d. ERR=%s\n", dev->dev_errno,
803                   strerror(dev->dev_errno));
804                Mmsg2(&dev->errmsg, _("read error on %s. ERR=%s.\n"),
805                   dev->dev_name, strerror(dev->dev_errno));
806                Dmsg1(200, "%s", dev->errmsg);
807                break;
808             }
809          }
810          if (stat == 0) {                /* EOF */
811             update_pos_dev(dev);
812             Dmsg1(200, "End of File mark from read. File=%d\n", dev->file+1);
813             /* Two reads of zero means end of tape */
814             if (dev->state & ST_EOF) {
815                dev->state |= ST_EOT;
816                Dmsg0(200, "Set ST_EOT\n");
817                break;
818             } else {
819                dev->state |= ST_EOF;
820                dev->file++;
821                dev->file_addr = 0;
822                continue;
823             }
824          } else {                        /* Got data */
825             dev->state &= ~(ST_EOF|ST_EOT);
826          }
827
828          Dmsg0(200, "Doing MTFSF\n");
829          stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
830          if (stat < 0) {                 /* error => EOT */
831             dev->state |= ST_EOT;
832             Dmsg0(200, "Set ST_EOT\n");
833             clrerror_dev(dev, MTFSF);
834             Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
835                dev->dev_name, strerror(dev->dev_errno));
836             Dmsg0(200, "Got < 0 for MTFSF\n");
837             Dmsg1(200, "%s", dev->errmsg);
838          } else {
839             dev->state |= ST_EOF;     /* just read EOF */
840             dev->file++;
841             dev->file_addr = 0;
842          }   
843       }
844       free_memory(rbuf);
845    
846    /*
847     * No FSF, so use FSR to simulate it
848     */
849    } else {
850       Dmsg0(200, "Doing FSR for FSF\n");
851       while (num-- && !(dev->state & ST_EOT)) {
852          fsr_dev(dev, INT32_MAX);    /* returns -1 on EOF or EOT */
853       }
854       if (dev->state & ST_EOT) {
855          dev->dev_errno = 0;
856          Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
857          stat = -1;
858       } else {
859          stat = 0;
860       }
861    }
862    update_pos_dev(dev);
863    Dmsg1(200, "Return %d from FSF\n", stat);
864    if (dev->state & ST_EOF)
865       Dmsg0(200, "ST_EOF set on exit FSF\n");
866    if (dev->state & ST_EOT)
867       Dmsg0(200, "ST_EOT set on exit FSF\n");
868    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
869    return stat == 0 ? 1 : 0;
870 }
871
872 /* 
873  * Backward space a file  
874  *  Returns: 0 on failure
875  *           1 on success
876  */
877 int
878 bsf_dev(DEVICE *dev, int num)
879
880    struct mtop mt_com;
881    int stat;
882
883    if (dev->fd < 0) {
884       dev->dev_errno = EBADF;
885       Mmsg0(&dev->errmsg, _("Bad call to bsf_dev. Archive device not open\n"));
886       Emsg0(M_FATAL, 0, dev->errmsg);
887       return 0;
888    }
889
890    if (!(dev_state(dev, ST_TAPE))) {
891       Mmsg1(&dev->errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
892          dev->dev_name);
893       return 0;
894    }
895    Dmsg0(29, "bsf_dev\n");
896    dev->state &= ~(ST_EOT|ST_EOF);
897    dev->file -= num;
898    dev->file_addr = 0;
899    mt_com.mt_op = MTBSF;
900    mt_com.mt_count = num;
901    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
902    if (stat < 0) {
903       clrerror_dev(dev, MTBSF);
904       Mmsg2(&dev->errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
905          dev->dev_name, strerror(dev->dev_errno));
906    }
907    update_pos_dev(dev);
908    return stat == 0 ? 1 : 0;
909 }
910
911
912 /* 
913  * Foward space a record
914  *  Returns: 0 on failure
915  *           1 on success
916  */
917 int
918 fsr_dev(DEVICE *dev, int num)
919
920    struct mtop mt_com;
921    int stat;
922
923    if (dev->fd < 0) {
924       dev->dev_errno = EBADF;
925       Mmsg0(&dev->errmsg, _("Bad call to fsr_dev. Archive not open\n"));
926       Emsg0(M_FATAL, 0, dev->errmsg);
927       return 0;
928    }
929
930    if (!(dev_state(dev, ST_TAPE))) {
931       return 0;
932    }
933    Dmsg0(29, "fsr_dev\n");
934    dev->block_num += num;
935    mt_com.mt_op = MTFSR;
936    mt_com.mt_count = num;
937    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
938    if (stat == 0) {
939       dev->state &= ~ST_EOF;
940    } else {
941       if (dev->state & ST_EOF) {
942          dev->state |= ST_EOT;
943       } else {
944          dev->state |= ST_EOF;           /* assume EOF */
945          dev->file++;
946          dev->file_addr = 0;
947       }
948       clrerror_dev(dev, MTFSR);
949       Mmsg2(&dev->errmsg, _("ioctl MTFSR error on %s. ERR=%s.\n"),
950          dev->dev_name, strerror(dev->dev_errno));
951    }
952    update_pos_dev(dev);
953    return stat == 0 ? 1 : 0;
954 }
955
956 /* 
957  * Backward space a record
958  *   Returns:  0 on failure
959  *             1 on success
960  */
961 int
962 bsr_dev(DEVICE *dev, int num)
963
964    struct mtop mt_com;
965    int stat;
966
967    if (dev->fd < 0) {
968       dev->dev_errno = EBADF;
969       Mmsg0(&dev->errmsg, _("Bad call to bsr_dev. Archive not open\n"));
970       Emsg0(M_FATAL, 0, dev->errmsg);
971       return 0;
972    }
973
974    if (!(dev->state & ST_TAPE)) {
975       return 0;
976    }
977
978    if (!dev_cap(dev, CAP_BSR)) {
979       Mmsg1(&dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"),
980          dev->dev_name);
981       return 0;
982    }
983
984    Dmsg0(29, "bsr_dev\n");
985    dev->block_num -= num;
986    dev->state &= ~(ST_EOF|ST_EOT|ST_EOF);
987    mt_com.mt_op = MTBSR;
988    mt_com.mt_count = num;
989    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
990    if (stat < 0) {
991       clrerror_dev(dev, MTBSR);
992       Mmsg2(&dev->errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
993          dev->dev_name, strerror(dev->dev_errno));
994    }
995    update_pos_dev(dev);
996    return stat == 0 ? 1 : 0;
997 }
998
999 /* 
1000  * Reposition the device to file, block
1001  *   Currently only works for tapes.
1002  * Returns: 0 on failure
1003  *          1 on success
1004  */
1005 int
1006 reposition_dev(DEVICE *dev, uint32_t file, uint32_t block)
1007
1008    if (dev->fd < 0) {
1009       dev->dev_errno = EBADF;
1010       Mmsg0(&dev->errmsg, _("Bad call to reposition_dev. Archive not open\n"));
1011       Emsg0(M_FATAL, 0, dev->errmsg);
1012       return 0;
1013    }
1014
1015    if (!(dev_state(dev, ST_TAPE))) {
1016       return 0;
1017    }
1018    Dmsg4(100, "reposition_dev from %u:%u to %u:%u\n", 
1019       dev->file, dev->block_num, file, block);
1020    if (file < dev->file) {
1021       Dmsg0(100, "Rewind_dev\n");
1022       if (!rewind_dev(dev)) {
1023          return 0;
1024       }
1025    }
1026    if (file > dev->file) {
1027       Dmsg1(100, "fsf %d\n", file-dev->file);
1028       if (!fsf_dev(dev, file-dev->file)) {
1029          return 0;
1030       }
1031    }
1032    if (block < dev->block_num) {
1033       bsf_dev(dev, 1);
1034       fsf_dev(dev, 1);
1035    }
1036    if (block > dev->block_num) {
1037       /* Ignore errors as Bacula can read to the correct block */
1038       Dmsg1(100, "fsr %d\n", block-dev->block_num);
1039       fsr_dev(dev, block-dev->block_num);
1040    }
1041    return 1;
1042 }
1043
1044
1045
1046 /*
1047  * Write an end of file on the device
1048  *   Returns: 0 on success
1049  *            non-zero on failure
1050  */
1051 int 
1052 weof_dev(DEVICE *dev, int num)
1053
1054    struct mtop mt_com;
1055    int stat;
1056
1057    if (dev->fd < 0) {
1058       dev->dev_errno = EBADF;
1059       Mmsg0(&dev->errmsg, _("Bad call to weof_dev. Archive drive not open\n"));
1060       Emsg0(M_FATAL, 0, dev->errmsg);
1061       return -1;
1062    }
1063
1064    if (!(dev_state(dev, ST_TAPE))) {
1065       return 0;
1066    }
1067    dev->state &= ~(ST_EOT | ST_EOF);  /* remove EOF/EOT flags */
1068    dev->block_num = 0;
1069    Dmsg0(29, "weof_dev\n");
1070    mt_com.mt_op = MTWEOF;
1071    mt_com.mt_count = num;
1072    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1073    if (stat == 0) {
1074       dev->file += num;
1075       dev->file_addr = 0;
1076    } else {
1077       clrerror_dev(dev, MTWEOF);
1078       if (stat == -1) {
1079          Mmsg2(&dev->errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
1080             dev->dev_name, strerror(dev->dev_errno));
1081        }
1082    }
1083    return stat;
1084 }
1085
1086 /*
1087  * Return string message with last error in English
1088  *  Be careful not to call this routine from within dev.c
1089  *  while editing an Mmsg(&) or you will end up in a recursive
1090  *  loop creating a Segmentation Violation.
1091  */
1092 char *
1093 strerror_dev(DEVICE *dev)
1094 {
1095    return dev->errmsg;
1096 }
1097
1098
1099 /*
1100  * If implemented in system, clear the tape
1101  * error status.
1102  */
1103 void
1104 clrerror_dev(DEVICE *dev, int func)
1105 {
1106    char *msg = NULL;
1107
1108    dev->dev_errno = errno;         /* save errno */
1109    if (errno == EIO) {
1110       dev->VolCatInfo.VolCatErrors++;
1111    }
1112
1113    if (!(dev->state & ST_TAPE)) {
1114       return;
1115    }
1116    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
1117       switch (func) {
1118       case -1:
1119          Emsg0(M_ABORT, 0, "Got ENOTTY on read/write!\n");
1120          break;
1121       case MTWEOF:
1122          msg = "WTWEOF";
1123          dev->capabilities &= ~CAP_EOF; /* turn off feature */
1124          break;
1125 #ifdef MTEOM
1126       case MTEOM:
1127          msg = "WTEOM";
1128          dev->capabilities &= ~CAP_EOM; /* turn off feature */
1129          break;
1130 #endif 
1131       case MTFSF:
1132          msg = "MTFSF";
1133          dev->capabilities &= ~CAP_FSF; /* turn off feature */
1134          break;
1135       case MTBSF:
1136          msg = "MTBSF";
1137          dev->capabilities &= ~CAP_BSF; /* turn off feature */
1138          break;
1139       case MTFSR:
1140          msg = "MTFSR";
1141          dev->capabilities &= ~CAP_FSR; /* turn off feature */
1142          break;
1143       case MTBSR:
1144          msg = "MTBSR";
1145          dev->capabilities &= ~CAP_BSR; /* turn off feature */
1146          break;
1147       default:
1148          msg = "Unknown";
1149          break;
1150       }
1151       if (msg != NULL) {
1152          dev->dev_errno = ENOSYS;
1153          Mmsg1(&dev->errmsg, _("This device does not support %s.\n"), msg);
1154          Emsg0(M_ERROR, 0, dev->errmsg);
1155       }
1156    }
1157 /* Found on Linux */
1158 #ifdef MTIOCLRERR
1159 {
1160    struct mtop mt_com;
1161    mt_com.mt_op = MTIOCLRERR;
1162    mt_com.mt_count = 1;
1163    /* Clear any error condition on the tape */
1164    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1165    Dmsg0(200, "Did MTIOCLRERR\n");
1166 }
1167 #endif
1168
1169 /* Typically on FreeBSD */
1170 #ifdef MTIOCERRSTAT
1171 {
1172    /* Read and clear SCSI error status */
1173    union mterrstat mt_errstat;
1174    Dmsg2(200, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev->dev_errno,
1175       strerror(dev->dev_errno));
1176    ioctl(dev->fd, MTIOCERRSTAT, (char *)&mt_errstat);
1177 }
1178 #endif
1179 }
1180
1181 /*
1182  * Flush buffer contents
1183  *  No longer used.
1184  */
1185 int flush_dev(DEVICE *dev)
1186 {
1187    return 1;
1188 }
1189
1190 static void do_close(DEVICE *dev)
1191 {
1192
1193    Dmsg1(29, "really close_dev %s\n", dev->dev_name);
1194    if (dev->fd >= 0) {
1195       close(dev->fd);
1196    }
1197    /* Clean up device packet so it can be reused */
1198    dev->fd = -1;
1199    dev->state &= ~(ST_OPENED|ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1200    dev->file = dev->block_num = 0;
1201    dev->file_addr = 0;
1202    dev->EndFile = dev->EndBlock = 0;
1203    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
1204    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
1205    if (dev->tid) {
1206       stop_thread_timer(dev->tid);
1207       dev->tid = 0;
1208    }
1209    dev->use_count = 0;
1210 }
1211
1212 /* 
1213  * Close the device
1214  */
1215 void
1216 close_dev(DEVICE *dev)
1217 {
1218    if (!dev) {
1219       Mmsg0(&dev->errmsg, _("Bad call to close_dev. Archive not open\n"));
1220       Emsg0(M_FATAL, 0, dev->errmsg);
1221       return;
1222    }
1223    if (dev->fd >= 0 && dev->use_count == 1) {
1224       do_close(dev);
1225    } else if (dev->use_count > 0) {
1226       dev->use_count--;
1227    }
1228            
1229 #ifdef FULL_DEBUG
1230    ASSERT(dev->use_count >= 0);
1231 #endif
1232 }
1233
1234 /*
1235  * Used when unmounting the device, ignore use_count
1236  */
1237 void force_close_dev(DEVICE *dev)
1238 {
1239    if (!dev) {
1240       Mmsg0(&dev->errmsg, _("Bad call to force_close_dev. Archive not open\n"));
1241       Emsg0(M_FATAL, 0, dev->errmsg);
1242       return;
1243    }
1244    Dmsg1(29, "Force close_dev %s\n", dev->dev_name);
1245    do_close(dev);
1246
1247 #ifdef FULL_DEBUG
1248    ASSERT(dev->use_count >= 0);
1249 #endif
1250 }
1251
1252 int truncate_dev(DEVICE *dev)
1253 {
1254    if (dev->state & ST_TAPE) {
1255       return 1;
1256    }
1257    if (ftruncate(dev->fd, 0) != 0) {
1258       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), strerror(errno));
1259       return 0;
1260    }
1261    return 1;
1262 }
1263
1264 int 
1265 dev_is_tape(DEVICE *dev)
1266 {  
1267    return (dev->state & ST_TAPE) ? 1 : 0;
1268 }
1269
1270
1271 /*
1272  * return 1 if the device is read for write, and 0 otherwise
1273  *   This is meant for checking at the end of a job to see
1274  *   if we still have a tape (perhaps not if at end of tape
1275  *   and the job is canceled).
1276  */
1277 int
1278 dev_can_write(DEVICE *dev)
1279 {
1280    if ((dev->state & ST_OPENED) &&  (dev->state & ST_APPEND) &&
1281        (dev->state & ST_LABEL)  && !(dev->state & ST_WEOT)) {
1282       return 1;
1283    } else {
1284       return 0;
1285    }
1286 }
1287
1288 char *
1289 dev_name(DEVICE *dev)
1290 {
1291    return dev->dev_name;
1292 }
1293
1294 char *
1295 dev_vol_name(DEVICE *dev)
1296 {
1297    return dev->VolCatInfo.VolCatName;
1298 }
1299
1300 uint32_t dev_block(DEVICE *dev)
1301 {
1302    update_pos_dev(dev);
1303    return dev->block_num;
1304 }
1305
1306 uint32_t dev_file(DEVICE *dev)
1307 {
1308    update_pos_dev(dev);
1309    return dev->file;
1310 }
1311
1312 /* 
1313  * Free memory allocated for the device
1314  */
1315 void
1316 term_dev(DEVICE *dev)
1317 {
1318    if (!dev) {
1319       dev->dev_errno = EBADF;
1320       Mmsg0(&dev->errmsg, _("Bad call to term_dev. Archive not open\n"));
1321       Emsg0(M_FATAL, 0, dev->errmsg);
1322       return;
1323    }
1324    do_close(dev);
1325    Dmsg0(29, "term_dev\n");
1326    if (dev->dev_name) {
1327       free_memory(dev->dev_name);
1328       dev->dev_name = NULL;
1329    }
1330    if (dev->errmsg) {
1331       free_pool_memory(dev->errmsg);
1332       dev->errmsg = NULL;
1333    }
1334    pthread_mutex_destroy(&dev->mutex);
1335    pthread_cond_destroy(&dev->wait);
1336    pthread_cond_destroy(&dev->wait_next_vol);
1337    if (dev->state & ST_MALLOC) {
1338       free_pool_memory((POOLMEM *)dev);
1339    }
1340 }
1341
1342 /*
1343  * We attach a jcr to the device so that when
1344  *   the Volume is full during writing, a  
1345  *   JobMedia record will be created for this 
1346  *   Job.
1347  */
1348 void attach_jcr_to_device(DEVICE *dev, JCR *jcr)
1349 {
1350    jcr->prev_dev = (JCR *)NULL;
1351    jcr->next_dev = dev->attached_jcrs;
1352    if (dev->attached_jcrs) {
1353       dev->attached_jcrs->prev_dev = jcr;
1354    }
1355    dev->attached_jcrs = jcr;
1356    Dmsg1(100, "Attached Job %s\n", jcr->Job);
1357 }
1358
1359 void detach_jcr_from_device(DEVICE *dev, JCR *jcr)
1360 {
1361    if (!jcr->prev_dev) {
1362       dev->attached_jcrs = jcr->next_dev;
1363    } else {
1364       jcr->prev_dev->next_dev = jcr->next_dev;
1365    }
1366    if (jcr->next_dev) {
1367       jcr->next_dev->prev_dev = jcr->prev_dev; 
1368    }
1369    jcr->next_dev = jcr->prev_dev = NULL;
1370    Dmsg1(100, "Detached Job %s\n", jcr->Job);
1371 }
1372
1373 JCR *next_attached_jcr(DEVICE *dev, JCR *jcr)
1374 {
1375    if (jcr == (JCR *)NULL) {
1376       return dev->attached_jcrs;
1377    }
1378    return jcr->next_dev;
1379 }