]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
121b989468a990247ac64d34bb1cf4a3acf29443
[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       while (!(dev->state & ST_EOT)) {
458          Dmsg0(200, "Do fsf 1\n");
459          if (!fsf_dev(dev, 1)) {
460             Dmsg0(200, "fsf_dev error.\n");
461             return 0;
462          }
463       }
464    }
465    /*
466     * Some drivers leave us after second EOF when doing
467     * MTEOM, so we must backup so that appending overwrites
468     * the second EOF.
469     */
470    if (dev_cap(dev, CAP_BSFATEOM)) {
471       stat =  bsf_dev(dev, 1);
472       dev->file++;                    /* keep same file */
473    } else {
474       update_pos_dev(dev);                   /* update position */
475       stat = 1;
476    }
477    Dmsg1(200, "EOD dev->file=%d\n", dev->file);
478    return stat;
479 }
480
481 /*
482  * Set the position of the device -- only for files
483  *   For other devices, there is no generic way to do it.
484  *  Returns: 1 on succes
485  *           0 on error
486  */
487 int update_pos_dev(DEVICE *dev)
488 {
489    off_t pos;
490    int stat = 0;
491
492    if (dev->fd < 0) {
493       dev->dev_errno = EBADF;
494       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
495       Emsg0(M_FATAL, 0, dev->errmsg);
496       return 0;
497    }
498
499    /* Find out where we are */
500    if (dev->state & ST_FILE) {
501       dev->file = 0;
502       dev->file_addr = 0;
503       pos = lseek(dev->fd, (off_t)0, SEEK_CUR);
504       if (pos < 0) {
505          Pmsg1(000, "Seek error: ERR=%s\n", strerror(dev->dev_errno));
506          dev->dev_errno = errno;
507          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
508             dev->dev_name, strerror(dev->dev_errno));
509       } else {
510          stat = 1;
511          dev->file_addr = pos;
512       }
513       return stat;
514    }
515    return 1;
516 }
517
518
519 /* 
520  * Return the status of the device.  This was meant
521  * to be a generic routine. Unfortunately, it doesn't
522  * seem possible (at least I do not know how to do it
523  * currently), which means that for the moment, this
524  * routine has very little value.
525  *
526  *   Returns: 1 on success
527  *            0 on error
528  */
529 int
530 status_dev(DEVICE *dev, uint32_t *status)
531 {
532    struct mtget mt_stat;
533    uint32_t stat = 0;
534
535    if (dev->state & (ST_EOT | ST_WEOT)) {
536       stat |= BMT_EOD;
537       Dmsg0(-20, " EOD");
538    }
539    if (dev->state & ST_EOF) {
540       stat |= BMT_EOF;
541       Dmsg0(-20, " EOF");
542    }
543    if (dev->state & ST_TAPE) {
544       stat |= BMT_TAPE;
545       Dmsg0(-20," Driver status:");
546       Dmsg2(-20," file=%d block=%d\n", dev->file, dev->block_num);
547       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
548          dev->dev_errno = errno;
549          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
550             dev->dev_name, strerror(dev->dev_errno));
551          return 0;
552       }
553       Dmsg0(-20, " Device status:");
554
555 #if defined(HAVE_LINUX_OS)
556       if (GMT_EOF(mt_stat.mt_gstat)) {
557          stat |= BMT_EOF;
558          Dmsg0(-20, " EOF");
559       }
560       if (GMT_BOT(mt_stat.mt_gstat)) {
561          stat |= BMT_BOT;
562          Dmsg0(-20, " BOT");
563       }
564       if (GMT_EOT(mt_stat.mt_gstat)) {
565          stat |= BMT_EOT;
566          Dmsg0(-20, " EOT");
567       }
568       if (GMT_SM(mt_stat.mt_gstat)) {
569          stat |= BMT_SM;
570          Dmsg0(-20, " SM");
571       }
572       if (GMT_EOD(mt_stat.mt_gstat)) {
573          stat |= BMT_EOD;
574          Dmsg0(-20, " EOD");
575       }
576       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
577          stat |= BMT_WR_PROT;
578          Dmsg0(-20, " WR_PROT");
579       }
580       if (GMT_ONLINE(mt_stat.mt_gstat)) {
581          stat |= BMT_ONLINE;
582          Dmsg0(-20, " ONLINE");
583       }
584       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
585          stat |= BMT_DR_OPEN;
586          Dmsg0(-20, " DR_OPEN");       
587       }
588       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
589          stat |= BMT_IM_REP_EN;
590          Dmsg0(-20, " IM_REP_EN");
591       }
592 #endif /* !SunOS && !OSF */
593       Dmsg2(-20, " file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
594    } else {
595       stat |= BMT_ONLINE | BMT_BOT;
596    }
597    *status = stat; 
598    return 1;
599 }
600
601
602 /*
603  * Load medium in device
604  *  Returns: 1 on success
605  *           0 on failure
606  */
607 int load_dev(DEVICE *dev)
608 {
609 #ifdef MTLOAD
610    struct mtop mt_com;
611 #endif
612
613    if (dev->fd < 0) {
614       dev->dev_errno = EBADF;
615       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
616       Emsg0(M_FATAL, 0, dev->errmsg);
617       return 0;
618    }
619    if (!(dev->state & ST_TAPE)) {
620       return 1;
621    }
622 #ifndef MTLOAD
623    Dmsg0(200, "stored: MTLOAD command not available\n");
624    dev->dev_errno = ENOTTY;           /* function not available */
625    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
626          dev->dev_name, strerror(dev->dev_errno));      return 0;
627    return 0;
628 #else
629
630    dev->block_num = dev->file = 0;
631    dev->file_addr = 0;
632    mt_com.mt_op = MTLOAD;
633    mt_com.mt_count = 1;
634    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
635       dev->dev_errno = errno;
636       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
637          dev->dev_name, strerror(dev->dev_errno));      return 0;
638    }
639    return 1;
640 #endif
641 }
642
643 /*
644  * Rewind device and put it offline
645  *  Returns: 1 on success
646  *           0 on failure
647  */
648 int offline_dev(DEVICE *dev)
649 {
650    struct mtop mt_com;
651
652    if (dev->fd < 0) {
653       dev->dev_errno = EBADF;
654       Mmsg0(&dev->errmsg, _("Bad call to offline_dev. Archive not open\n"));
655       Emsg0(M_FATAL, 0, dev->errmsg);
656       return 0;
657    }
658    if (!(dev->state & ST_TAPE)) {
659       return 1;
660    }
661
662    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
663    dev->block_num = dev->file = 0;
664    dev->file_addr = 0;
665 #ifdef MTUNLOCK
666    mt_com.mt_op = MTUNLOCK;
667    mt_com.mt_count = 1;
668    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
669 #endif
670    mt_com.mt_op = MTOFFL;
671    mt_com.mt_count = 1;
672    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
673       dev->dev_errno = errno;
674       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
675          dev->dev_name, strerror(dev->dev_errno));
676       return 0;
677    }
678    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
679    return 1;
680 }
681
682 int offline_or_rewind_dev(DEVICE *dev)
683 {
684    if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
685       return offline_dev(dev);
686    } else {
687    /*            
688     * Note, this rewind probably should not be here (it wasn't
689     *  in prior versions of Bacula), but on FreeBSD, this is
690     *  needed in the case the tape was "frozen" due to an error
691     *  such as backspacing after writing and EOF. If it is not
692     *  done, all future references to the drive get and I/O error.
693     */
694       return rewind_dev(dev);
695    }
696 }
697
698 /* 
699  * Foward space a file  
700  *   Returns: 1 on success
701  *            0 on failure
702  */
703 int
704 fsf_dev(DEVICE *dev, int num)
705
706    struct mtget mt_stat;
707    struct mtop mt_com;
708    int stat = 0;
709
710    if (dev->fd < 0) {
711       dev->dev_errno = EBADF;
712       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
713       Emsg0(M_FATAL, 0, dev->errmsg);
714       return 0;
715    }
716
717    if (!(dev->state & ST_TAPE)) {
718       return 1;
719    }
720    if (dev->state & ST_EOT) {
721       dev->dev_errno = 0;
722       Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
723       return 0;
724    }
725    if (dev->state & ST_EOF) {
726       Dmsg0(200, "ST_EOF set on entry to FSF\n");
727    }
728       
729    Dmsg0(29, "fsf_dev\n");
730    dev->block_num = 0;
731    /*
732     * If Fast forward space file is set, then we
733     *  use MTFSF to forward space and MTIOCGET
734     *  to get the file position. We assume that 
735     *  the SCSI driver will ensure that we do not
736     *  forward space over the end of data mark.
737     */
738    if (dev_cap(dev, CAP_FSF) && dev_cap(dev, CAP_FASTFSF)) {
739       mt_com.mt_op = MTFSF;
740       mt_com.mt_count = num;
741       stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
742       if (stat < 0) {                 /* error => EOT */
743          dev->state |= ST_EOT;
744          Dmsg0(200, "Set ST_EOT\n");
745          clrerror_dev(dev, MTFSF);
746          Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
747             dev->dev_name, strerror(dev->dev_errno));
748          Dmsg1(200, "%s", dev->errmsg);
749          return 0;
750       } else if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
751             dev->state |= ST_EOT;
752             clrerror_dev(dev, MTFSF);
753             dev->dev_errno = errno;
754             Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
755                dev->dev_name, strerror(dev->dev_errno));
756             Dmsg1(200, "%s", dev->errmsg);
757             return 0;
758       }
759       Dmsg2(200, "fsf file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
760       dev->file = mt_stat.mt_fileno;
761       dev->state |= ST_EOF;     /* just read EOF */
762       dev->file_addr = 0;
763       return 1;
764
765    /* 
766     * Here if CAP_FSF is set, and virtually all drives
767     *  these days support it, we read a record, then forward
768     *  space one file. Using this procedure, which is slow,
769     *  is the only way we can be sure that we don't read
770     *  two consecutive EOF marks, which means End of Data.
771     */
772    } else if (dev_cap(dev, CAP_FSF)) {
773       POOLMEM *rbuf;
774       int rbuf_len;
775       Dmsg0(200, "FSF has cap_fsf\n");
776       if (dev->max_block_size == 0) {
777          rbuf_len = DEFAULT_BLOCK_SIZE;
778       } else {
779          rbuf_len = dev->max_block_size;
780       }
781       rbuf = get_memory(rbuf_len);
782       mt_com.mt_op = MTFSF;
783       mt_com.mt_count = 1;
784       while (num-- && !(dev->state & ST_EOT)) {
785          Dmsg0(200, "Doing read before fsf\n");
786          if ((stat = read(dev->fd, (char *)rbuf, rbuf_len)) < 0) {
787             if (errno == ENOMEM) {     /* tape record exceeds buf len */
788                stat = rbuf_len;        /* This is OK */
789             } else {
790                dev->state |= ST_EOT;
791                clrerror_dev(dev, -1);
792                Dmsg2(200, "Set ST_EOT read errno=%d. ERR=%s\n", dev->dev_errno,
793                   strerror(dev->dev_errno));
794                Mmsg2(&dev->errmsg, _("read error on %s. ERR=%s.\n"),
795                   dev->dev_name, strerror(dev->dev_errno));
796                Dmsg1(200, "%s", dev->errmsg);
797                break;
798             }
799          }
800          if (stat == 0) {                /* EOF */
801             update_pos_dev(dev);
802             Dmsg1(200, "End of File mark from read. File=%d\n", dev->file+1);
803             /* Two reads of zero means end of tape */
804             if (dev->state & ST_EOF) {
805                dev->state |= ST_EOT;
806                Dmsg0(200, "Set ST_EOT\n");
807                break;
808             } else {
809                dev->state |= ST_EOF;
810                dev->file++;
811                dev->file_addr = 0;
812                continue;
813             }
814          } else {                        /* Got data */
815             dev->state &= ~(ST_EOF|ST_EOT);
816          }
817
818          Dmsg0(200, "Doing MTFSF\n");
819          stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
820          if (stat < 0) {                 /* error => EOT */
821             dev->state |= ST_EOT;
822             Dmsg0(200, "Set ST_EOT\n");
823             clrerror_dev(dev, MTFSF);
824             Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
825                dev->dev_name, strerror(dev->dev_errno));
826             Dmsg0(200, "Got < 0 for MTFSF\n");
827             Dmsg1(200, "%s", dev->errmsg);
828          } else {
829             dev->state |= ST_EOF;     /* just read EOF */
830             dev->file++;
831             dev->file_addr = 0;
832          }   
833       }
834       free_memory(rbuf);
835    
836    /*
837     * No FSF, so use FSR to simulate it
838     */
839    } else {
840       Dmsg0(200, "Doing FSR for FSF\n");
841       while (num-- && !(dev->state & ST_EOT)) {
842          fsr_dev(dev, INT32_MAX);    /* returns -1 on EOF or EOT */
843       }
844       if (dev->state & ST_EOT) {
845          dev->dev_errno = 0;
846          Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
847          stat = -1;
848       } else {
849          stat = 0;
850       }
851    }
852    update_pos_dev(dev);
853    Dmsg1(200, "Return %d from FSF\n", stat);
854    if (dev->state & ST_EOF)
855       Dmsg0(200, "ST_EOF set on exit FSF\n");
856    if (dev->state & ST_EOT)
857       Dmsg0(200, "ST_EOT set on exit FSF\n");
858    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
859    return stat == 0 ? 1 : 0;
860 }
861
862 /* 
863  * Backward space a file  
864  *  Returns: 0 on failure
865  *           1 on success
866  */
867 int
868 bsf_dev(DEVICE *dev, int num)
869
870    struct mtop mt_com;
871    int stat;
872
873    if (dev->fd < 0) {
874       dev->dev_errno = EBADF;
875       Mmsg0(&dev->errmsg, _("Bad call to bsf_dev. Archive device not open\n"));
876       Emsg0(M_FATAL, 0, dev->errmsg);
877       return 0;
878    }
879
880    if (!(dev_state(dev, ST_TAPE))) {
881       Mmsg1(&dev->errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
882          dev->dev_name);
883       return 0;
884    }
885    Dmsg0(29, "bsf_dev\n");
886    dev->state &= ~(ST_EOT|ST_EOF);
887    dev->file -= num;
888    dev->file_addr = 0;
889    mt_com.mt_op = MTBSF;
890    mt_com.mt_count = num;
891    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
892    if (stat < 0) {
893       clrerror_dev(dev, MTBSF);
894       Mmsg2(&dev->errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
895          dev->dev_name, strerror(dev->dev_errno));
896    }
897    update_pos_dev(dev);
898    return stat == 0 ? 1 : 0;
899 }
900
901
902 /* 
903  * Foward space a record
904  *  Returns: 0 on failure
905  *           1 on success
906  */
907 int
908 fsr_dev(DEVICE *dev, int num)
909
910    struct mtop mt_com;
911    int stat;
912
913    if (dev->fd < 0) {
914       dev->dev_errno = EBADF;
915       Mmsg0(&dev->errmsg, _("Bad call to fsr_dev. Archive not open\n"));
916       Emsg0(M_FATAL, 0, dev->errmsg);
917       return 0;
918    }
919
920    if (!(dev_state(dev, ST_TAPE))) {
921       return 0;
922    }
923    Dmsg0(29, "fsr_dev\n");
924    dev->block_num += num;
925    mt_com.mt_op = MTFSR;
926    mt_com.mt_count = num;
927    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
928    if (stat == 0) {
929       dev->state &= ~ST_EOF;
930    } else {
931       if (dev->state & ST_EOF) {
932          dev->state |= ST_EOT;
933       } else {
934          dev->state |= ST_EOF;           /* assume EOF */
935          dev->file++;
936          dev->file_addr = 0;
937       }
938       clrerror_dev(dev, MTFSR);
939       Mmsg2(&dev->errmsg, _("ioctl MTFSR error on %s. ERR=%s.\n"),
940          dev->dev_name, strerror(dev->dev_errno));
941    }
942    update_pos_dev(dev);
943    return stat == 0 ? 1 : 0;
944 }
945
946 /* 
947  * Backward space a record
948  *   Returns:  0 on failure
949  *             1 on success
950  */
951 int
952 bsr_dev(DEVICE *dev, int num)
953
954    struct mtop mt_com;
955    int stat;
956
957    if (dev->fd < 0) {
958       dev->dev_errno = EBADF;
959       Mmsg0(&dev->errmsg, _("Bad call to bsr_dev. Archive not open\n"));
960       Emsg0(M_FATAL, 0, dev->errmsg);
961       return 0;
962    }
963
964    if (!(dev->state & ST_TAPE)) {
965       return 0;
966    }
967
968    if (!dev_cap(dev, CAP_BSR)) {
969       Mmsg1(&dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"),
970          dev->dev_name);
971       return 0;
972    }
973
974    Dmsg0(29, "bsr_dev\n");
975    dev->block_num -= num;
976    dev->state &= ~(ST_EOF|ST_EOT|ST_EOF);
977    mt_com.mt_op = MTBSR;
978    mt_com.mt_count = num;
979    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
980    if (stat < 0) {
981       clrerror_dev(dev, MTBSR);
982       Mmsg2(&dev->errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
983          dev->dev_name, strerror(dev->dev_errno));
984    }
985    update_pos_dev(dev);
986    return stat == 0 ? 1 : 0;
987 }
988
989 /* 
990  * Reposition the device to file, block
991  *   Currently only works for tapes.
992  * Returns: 0 on failure
993  *          1 on success
994  */
995 int
996 reposition_dev(DEVICE *dev, uint32_t file, uint32_t block)
997
998    if (dev->fd < 0) {
999       dev->dev_errno = EBADF;
1000       Mmsg0(&dev->errmsg, _("Bad call to reposition_dev. Archive not open\n"));
1001       Emsg0(M_FATAL, 0, dev->errmsg);
1002       return 0;
1003    }
1004
1005    if (!(dev_state(dev, ST_TAPE))) {
1006       return 0;
1007    }
1008    Dmsg4(100, "reposition_dev from %u:%u to %u:%u\n", 
1009       dev->file, dev->block_num, file, block);
1010    if (file < dev->file) {
1011       Dmsg0(100, "Rewind_dev\n");
1012       if (!rewind_dev(dev)) {
1013          return 0;
1014       }
1015    }
1016    if (file > dev->file) {
1017       Dmsg1(100, "fsf %d\n", file-dev->file);
1018       if (!fsf_dev(dev, file-dev->file)) {
1019          return 0;
1020       }
1021    }
1022    if (block < dev->block_num) {
1023       bsf_dev(dev, 1);
1024       fsf_dev(dev, 1);
1025    }
1026    if (block > dev->block_num) {
1027       /* Ignore errors as Bacula can read to the correct block */
1028       Dmsg1(100, "fsr %d\n", block-dev->block_num);
1029       fsr_dev(dev, block-dev->block_num);
1030    }
1031    return 1;
1032 }
1033
1034
1035
1036 /*
1037  * Write an end of file on the device
1038  *   Returns: 0 on success
1039  *            non-zero on failure
1040  */
1041 int 
1042 weof_dev(DEVICE *dev, int num)
1043
1044    struct mtop mt_com;
1045    int stat;
1046
1047    if (dev->fd < 0) {
1048       dev->dev_errno = EBADF;
1049       Mmsg0(&dev->errmsg, _("Bad call to weof_dev. Archive drive not open\n"));
1050       Emsg0(M_FATAL, 0, dev->errmsg);
1051       return -1;
1052    }
1053
1054    if (!(dev_state(dev, ST_TAPE))) {
1055       return 0;
1056    }
1057    dev->state &= ~(ST_EOT | ST_EOF);  /* remove EOF/EOT flags */
1058    dev->block_num = 0;
1059    Dmsg0(29, "weof_dev\n");
1060    mt_com.mt_op = MTWEOF;
1061    mt_com.mt_count = num;
1062    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1063    if (stat == 0) {
1064       dev->file += num;
1065       dev->file_addr = 0;
1066    } else {
1067       clrerror_dev(dev, MTWEOF);
1068       if (stat == -1) {
1069          Mmsg2(&dev->errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
1070             dev->dev_name, strerror(dev->dev_errno));
1071        }
1072    }
1073    return stat;
1074 }
1075
1076 /*
1077  * Return string message with last error in English
1078  *  Be careful not to call this routine from within dev.c
1079  *  while editing an Mmsg(&) or you will end up in a recursive
1080  *  loop creating a Segmentation Violation.
1081  */
1082 char *
1083 strerror_dev(DEVICE *dev)
1084 {
1085    return dev->errmsg;
1086 }
1087
1088
1089 /*
1090  * If implemented in system, clear the tape
1091  * error status.
1092  */
1093 void
1094 clrerror_dev(DEVICE *dev, int func)
1095 {
1096    char *msg = NULL;
1097
1098    dev->dev_errno = errno;         /* save errno */
1099    if (errno == EIO) {
1100       dev->VolCatInfo.VolCatErrors++;
1101    }
1102
1103    if (!(dev->state & ST_TAPE)) {
1104       return;
1105    }
1106    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
1107       switch (func) {
1108       case -1:
1109          Emsg0(M_ABORT, 0, "Got ENOTTY on read/write!\n");
1110          break;
1111       case MTWEOF:
1112          msg = "WTWEOF";
1113          dev->capabilities &= ~CAP_EOF; /* turn off feature */
1114          break;
1115 #ifdef MTEOM
1116       case MTEOM:
1117          msg = "WTEOM";
1118          dev->capabilities &= ~CAP_EOM; /* turn off feature */
1119          break;
1120 #endif 
1121       case MTFSF:
1122          msg = "MTFSF";
1123          dev->capabilities &= ~CAP_FSF; /* turn off feature */
1124          break;
1125       case MTBSF:
1126          msg = "MTBSF";
1127          dev->capabilities &= ~CAP_BSF; /* turn off feature */
1128          break;
1129       case MTFSR:
1130          msg = "MTFSR";
1131          dev->capabilities &= ~CAP_FSR; /* turn off feature */
1132          break;
1133       case MTBSR:
1134          msg = "MTBSR";
1135          dev->capabilities &= ~CAP_BSR; /* turn off feature */
1136          break;
1137       default:
1138          msg = "Unknown";
1139          break;
1140       }
1141       if (msg != NULL) {
1142          dev->dev_errno = ENOSYS;
1143          Mmsg1(&dev->errmsg, _("This device does not support %s.\n"), msg);
1144          Emsg0(M_ERROR, 0, dev->errmsg);
1145       }
1146    }
1147 /* Found on Linux */
1148 #ifdef MTIOCLRERR
1149 {
1150    struct mtop mt_com;
1151    mt_com.mt_op = MTIOCLRERR;
1152    mt_com.mt_count = 1;
1153    /* Clear any error condition on the tape */
1154    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1155    Dmsg0(200, "Did MTIOCLRERR\n");
1156 }
1157 #endif
1158
1159 /* Typically on FreeBSD */
1160 #ifdef MTIOCERRSTAT
1161 {
1162    /* Read and clear SCSI error status */
1163    union mterrstat mt_errstat;
1164    Dmsg2(200, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev->dev_errno,
1165       strerror(dev->dev_errno));
1166    ioctl(dev->fd, MTIOCERRSTAT, (char *)&mt_errstat);
1167 }
1168 #endif
1169 }
1170
1171 /*
1172  * Flush buffer contents
1173  *  No longer used.
1174  */
1175 int flush_dev(DEVICE *dev)
1176 {
1177    return 1;
1178 }
1179
1180 static void do_close(DEVICE *dev)
1181 {
1182
1183    Dmsg1(29, "really close_dev %s\n", dev->dev_name);
1184    if (dev->fd >= 0) {
1185       close(dev->fd);
1186    }
1187    /* Clean up device packet so it can be reused */
1188    dev->fd = -1;
1189    dev->state &= ~(ST_OPENED|ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1190    dev->file = dev->block_num = 0;
1191    dev->file_addr = 0;
1192    dev->EndFile = dev->EndBlock = 0;
1193    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
1194    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
1195    if (dev->tid) {
1196       stop_thread_timer(dev->tid);
1197       dev->tid = 0;
1198    }
1199    dev->use_count = 0;
1200 }
1201
1202 /* 
1203  * Close the device
1204  */
1205 void
1206 close_dev(DEVICE *dev)
1207 {
1208    if (!dev) {
1209       Mmsg0(&dev->errmsg, _("Bad call to close_dev. Archive not open\n"));
1210       Emsg0(M_FATAL, 0, dev->errmsg);
1211       return;
1212    }
1213    if (dev->fd >= 0 && dev->use_count == 1) {
1214       do_close(dev);
1215    } else if (dev->use_count > 0) {
1216       dev->use_count--;
1217    }
1218            
1219 #ifdef FULL_DEBUG
1220    ASSERT(dev->use_count >= 0);
1221 #endif
1222 }
1223
1224 /*
1225  * Used when unmounting the device, ignore use_count
1226  */
1227 void force_close_dev(DEVICE *dev)
1228 {
1229    if (!dev) {
1230       Mmsg0(&dev->errmsg, _("Bad call to force_close_dev. Archive not open\n"));
1231       Emsg0(M_FATAL, 0, dev->errmsg);
1232       return;
1233    }
1234    Dmsg1(29, "Force close_dev %s\n", dev->dev_name);
1235    do_close(dev);
1236
1237 #ifdef FULL_DEBUG
1238    ASSERT(dev->use_count >= 0);
1239 #endif
1240 }
1241
1242 int truncate_dev(DEVICE *dev)
1243 {
1244    if (dev->state & ST_TAPE) {
1245       return 1;
1246    }
1247    if (ftruncate(dev->fd, 0) != 0) {
1248       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), strerror(errno));
1249       return 0;
1250    }
1251    return 1;
1252 }
1253
1254 int 
1255 dev_is_tape(DEVICE *dev)
1256 {  
1257    return (dev->state & ST_TAPE) ? 1 : 0;
1258 }
1259
1260
1261 /*
1262  * return 1 if the device is read for write, and 0 otherwise
1263  *   This is meant for checking at the end of a job to see
1264  *   if we still have a tape (perhaps not if at end of tape
1265  *   and the job is canceled).
1266  */
1267 int
1268 dev_can_write(DEVICE *dev)
1269 {
1270    if ((dev->state & ST_OPENED) &&  (dev->state & ST_APPEND) &&
1271        (dev->state & ST_LABEL)  && !(dev->state & ST_WEOT)) {
1272       return 1;
1273    } else {
1274       return 0;
1275    }
1276 }
1277
1278 char *
1279 dev_name(DEVICE *dev)
1280 {
1281    return dev->dev_name;
1282 }
1283
1284 char *
1285 dev_vol_name(DEVICE *dev)
1286 {
1287    return dev->VolCatInfo.VolCatName;
1288 }
1289
1290 uint32_t dev_block(DEVICE *dev)
1291 {
1292    update_pos_dev(dev);
1293    return dev->block_num;
1294 }
1295
1296 uint32_t dev_file(DEVICE *dev)
1297 {
1298    update_pos_dev(dev);
1299    return dev->file;
1300 }
1301
1302 /* 
1303  * Free memory allocated for the device
1304  */
1305 void
1306 term_dev(DEVICE *dev)
1307 {
1308    if (!dev) {
1309       dev->dev_errno = EBADF;
1310       Mmsg0(&dev->errmsg, _("Bad call to term_dev. Archive not open\n"));
1311       Emsg0(M_FATAL, 0, dev->errmsg);
1312       return;
1313    }
1314    do_close(dev);
1315    Dmsg0(29, "term_dev\n");
1316    if (dev->dev_name) {
1317       free_memory(dev->dev_name);
1318       dev->dev_name = NULL;
1319    }
1320    if (dev->errmsg) {
1321       free_pool_memory(dev->errmsg);
1322       dev->errmsg = NULL;
1323    }
1324    pthread_mutex_destroy(&dev->mutex);
1325    pthread_cond_destroy(&dev->wait);
1326    pthread_cond_destroy(&dev->wait_next_vol);
1327    if (dev->state & ST_MALLOC) {
1328       free_pool_memory((POOLMEM *)dev);
1329    }
1330 }
1331
1332 /*
1333  * We attach a jcr to the device so that when
1334  *   the Volume is full during writing, a  
1335  *   JobMedia record will be created for this 
1336  *   Job.
1337  */
1338 void attach_jcr_to_device(DEVICE *dev, JCR *jcr)
1339 {
1340    jcr->prev_dev = (JCR *)NULL;
1341    jcr->next_dev = dev->attached_jcrs;
1342    if (dev->attached_jcrs) {
1343       dev->attached_jcrs->prev_dev = jcr;
1344    }
1345    dev->attached_jcrs = jcr;
1346    Dmsg1(100, "Attached Job %s\n", jcr->Job);
1347 }
1348
1349 void detach_jcr_from_device(DEVICE *dev, JCR *jcr)
1350 {
1351    if (!jcr->prev_dev) {
1352       dev->attached_jcrs = jcr->next_dev;
1353    } else {
1354       jcr->prev_dev->next_dev = jcr->next_dev;
1355    }
1356    if (jcr->next_dev) {
1357       jcr->next_dev->prev_dev = jcr->prev_dev; 
1358    }
1359    jcr->next_dev = jcr->prev_dev = NULL;
1360    Dmsg1(100, "Detached Job %s\n", jcr->Job);
1361 }
1362
1363 JCR *next_attached_jcr(DEVICE *dev, JCR *jcr)
1364 {
1365    if (jcr == (JCR *)NULL) {
1366       return dev->attached_jcrs;
1367    }
1368    return jcr->next_dev;
1369 }