]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
695acd5541619008e42e8ae8d12425dbdd67ff74
[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 int dev_is_tape(DEVICE *dev);
87 void clrerror_dev(DEVICE *dev, int func);
88 int fsr_dev(DEVICE *dev, int num);
89
90 extern int debug_level;
91
92 /* 
93  * Allocate and initialize the DEVICE structure
94  * Note, if dev is non-NULL, it is already allocated,
95  * thus we neither allocate it nor free it. This allows
96  * the caller to put the packet in shared memory.
97  *
98  *  Note, for a tape, the device->device_name is the device name
99  *     (e.g. /dev/nst0), and for a file, the device name
100  *     is the directory in which the file will be placed.
101  *
102  */
103 DEVICE *
104 init_dev(DEVICE *dev, DEVRES *device)
105 {
106    struct stat statp;
107    int tape, fifo;
108    int errstat;
109
110    /* Check that device is available */
111    if (stat(device->device_name, &statp) < 0) {
112       if (dev) {
113          dev->dev_errno = errno;
114       } 
115       Emsg2(M_FATAL, 0, "Unable to stat device %s : %s\n", device->device_name, 
116             strerror(errno));
117       return NULL;
118    }
119    tape = FALSE;
120    fifo = FALSE;
121    if (S_ISDIR(statp.st_mode)) {
122       tape = FALSE;
123    } else if (S_ISCHR(statp.st_mode)) {
124       tape = TRUE;
125    } else if (S_ISFIFO(statp.st_mode)) {
126       fifo = TRUE;
127    } else {
128       if (dev) {
129          dev->dev_errno = ENODEV;
130       }
131       Emsg2(M_FATAL, 0, _("%s is an unknown device type. Must be tape or directory. st_mode=%x\n"),
132          dev_name, statp.st_mode);
133       return NULL;
134    }
135    if (!dev) {
136       dev = (DEVICE *)get_memory(sizeof(DEVICE));
137       memset(dev, 0, sizeof(DEVICE));
138       dev->state = ST_MALLOC;
139    } else {
140       memset(dev, 0, sizeof(DEVICE));
141    }
142
143    /* Copy user supplied device parameters from Resource */
144    dev->dev_name = get_memory(strlen(device->device_name)+1);
145    strcpy(dev->dev_name, device->device_name);
146    dev->capabilities = device->cap_bits;
147    dev->min_block_size = device->min_block_size;
148    dev->max_block_size = device->max_block_size;
149    dev->max_volume_jobs = device->max_volume_jobs;
150    dev->max_volume_files = device->max_volume_files;
151    dev->max_volume_size = device->max_volume_size;
152    dev->max_file_size = device->max_file_size;
153    dev->volume_capacity = device->volume_capacity;
154    dev->max_rewind_wait = device->max_rewind_wait;
155    dev->max_open_wait = device->max_open_wait;
156    dev->device = device;
157
158    if (tape) {
159       dev->state |= ST_TAPE;
160    } else if (fifo) {
161       dev->state |= ST_FIFO;
162       dev->capabilities |= CAP_STREAM; /* set stream device */
163    } else {
164       dev->state |= ST_FILE;
165    }
166
167    if (dev->max_block_size > 1000000) {
168       Emsg3(M_ERROR, 0, _("Block size %u on device %s is too large, using default %u\n"), 
169          dev->max_block_size, dev->dev_name, DEFAULT_BLOCK_SIZE);
170       dev->max_block_size = 0;
171    }
172    if (dev->max_block_size % TAPE_BSIZE != 0) {
173       Emsg2(M_WARNING, 0, _("Max block size %u not multiple of device %s block size.\n"),
174          dev->max_block_size, dev->dev_name);
175    }   
176          
177    dev->errmsg = get_pool_memory(PM_EMSG);
178    *dev->errmsg = 0;
179
180    if ((errstat = pthread_mutex_init(&dev->mutex, NULL)) != 0) {
181       dev->dev_errno = errstat;
182       Mmsg1(&dev->errmsg, _("Unable to init mutex: ERR=%s\n"), strerror(errstat));
183       Emsg0(M_FATAL, 0, dev->errmsg);
184    }
185    if ((errstat = pthread_cond_init(&dev->wait, NULL)) != 0) {
186       dev->dev_errno = errstat;
187       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
188       Emsg0(M_FATAL, 0, dev->errmsg);
189    }
190    if ((errstat = pthread_cond_init(&dev->wait_next_vol, NULL)) != 0) {
191       dev->dev_errno = errstat;
192       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
193       Emsg0(M_FATAL, 0, dev->errmsg);
194    }
195    dev->fd = -1;
196    Dmsg2(29, "init_dev: tape=%d dev_name=%s\n", dev_is_tape(dev), dev->dev_name);
197    return dev;
198 }
199
200 /* Open the device with the operating system and
201  * initialize buffer pointers.
202  *
203  * Note, for a tape, the VolName is the name we give to the
204  *    volume (not really used here), but for a file, the
205  *    VolName represents the name of the file to be created/opened.
206  *    In the case of a file, the full name is the device name
207  *    (archive_name) with the VolName concatenated.
208  */
209 int
210 open_dev(DEVICE *dev, char *VolName, int mode)
211 {
212    POOLMEM *archive_name;
213
214    if (dev->state & ST_OPENED) {
215       /*
216        *  *****FIXME***** how to handle two threads wanting
217        *  different volumes mounted???? E.g. one is waiting
218        *  for the next volume to be mounted, and a new job
219        *  starts and snatches up the device.
220        */
221       if (VolName && strcmp(dev->VolCatInfo.VolCatName, VolName) != 0) {
222          return -1;
223       }
224       dev->use_count++;
225       Mmsg2(&dev->errmsg, _("WARNING!!!! device %s opened %d times!!!\n"), 
226             dev->dev_name, dev->use_count);
227       Emsg1(M_WARNING, 0, "%s", dev->errmsg);
228       return dev->fd;
229    }
230    if (VolName) {
231       strcpy(dev->VolCatInfo.VolCatName, VolName);
232    }
233
234    Dmsg3(29, "open_dev: tape=%d dev_name=%s vol=%s\n", dev_is_tape(dev), 
235          dev->dev_name, dev->VolCatInfo.VolCatName);
236    dev->state &= ~(ST_LABEL|ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
237    if (dev->state & (ST_TAPE|ST_FIFO)) {
238       int timeout;
239       Dmsg0(29, "open_dev: device is tape\n");
240       if (mode == OPEN_READ_WRITE) {
241          dev->mode = O_RDWR | O_BINARY;
242       } else if (mode == OPEN_READ_ONLY) {
243          dev->mode = O_RDONLY | O_BINARY;
244       } else if (mode == OPEN_WRITE_ONLY) {
245          dev->mode = O_WRONLY | O_BINARY;
246       } else {
247          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
248       }
249       timeout = dev->max_open_wait;
250       errno = 0;
251       /* If busy retry each second for max_open_wait seconds */
252       while ((dev->fd = open(dev->dev_name, dev->mode, MODE_RW)) < 0) {
253          if (errno == EAGAIN) {
254             continue;
255          }
256          if (errno == EBUSY && timeout-- > 0) {
257             Dmsg2(100, "Device %s busy. ERR=%s\n", dev->dev_name, strerror(errno));
258             sleep(1);
259             continue;
260          }
261          dev->dev_errno = errno;
262          Mmsg2(&dev->errmsg, _("stored: unable to open device %s: ERR=%s\n"), 
263                dev->dev_name, strerror(dev->dev_errno));
264          Emsg0(M_FATAL, 0, dev->errmsg);
265          break;
266       }
267       if (dev->fd >= 0) {
268          dev->dev_errno = 0;
269          dev->state |= ST_OPENED;
270          dev->use_count++;
271          update_pos_dev(dev);             /* update position */
272       }
273       Dmsg1(29, "open_dev: tape %d opened\n", dev->fd);
274    } else {
275       /*
276        * Handle opening of file
277        */
278       archive_name = get_pool_memory(PM_FNAME);
279       pm_strcpy(&archive_name, dev->dev_name);
280       if (archive_name[strlen(archive_name)] != '/') {
281          pm_strcat(&archive_name, "/");
282       }
283       pm_strcat(&archive_name, VolName);
284       Dmsg1(29, "open_dev: device is disk %s\n", archive_name);
285       if (mode == OPEN_READ_WRITE) {
286          dev->mode = O_CREAT | O_RDWR | O_BINARY;
287       } else if (mode == OPEN_READ_ONLY) {
288          dev->mode = O_RDONLY | O_BINARY;
289       } else if (mode == OPEN_WRITE_ONLY) {
290          dev->mode = O_WRONLY | O_BINARY;
291       } else {
292          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
293       }
294       if ((dev->fd = open(archive_name, dev->mode, MODE_RW)) < 0) {
295          dev->dev_errno = errno;
296          Mmsg2(&dev->errmsg, _("Could not open: %s, ERR=%s\n"), archive_name, strerror(dev->dev_errno));
297          Emsg0(M_FATAL, 0, dev->errmsg);
298       } else {
299          dev->dev_errno = 0;
300          dev->state |= ST_OPENED;
301          dev->use_count++;
302          update_pos_dev(dev);                /* update position */
303       }
304       Dmsg1(29, "open_dev: disk fd=%d opened\n", dev->fd);
305       free_pool_memory(archive_name);
306    }
307    return dev->fd;
308 }
309
310 /*
311  * Rewind the device.
312  *  Returns: 1 on success
313  *           0 on failure
314  */
315 int rewind_dev(DEVICE *dev)
316 {
317    struct mtop mt_com;
318    unsigned int i;
319
320    Dmsg0(29, "rewind_dev\n");
321    if (dev->fd < 0) {
322       dev->dev_errno = EBADF;
323       Mmsg1(&dev->errmsg, _("Bad call to rewind_dev. Device %s not open\n"),
324             dev->dev_name);
325       Emsg0(M_FATAL, 0, dev->errmsg);
326       return 0;
327    }
328    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT | ST_EOF | ST_WEOT);  /* remove EOF/EOT flags */
329    dev->block_num = dev->file = 0;
330    dev->file_addr = 0;
331    if (dev->state & ST_TAPE) {
332       mt_com.mt_op = MTREW;
333       mt_com.mt_count = 1;
334       /* If we get an I/O error on rewind, it is probably because
335        * the drive is actually busy. We loop for (about 5 minutes)
336        * retrying every 5 seconds.
337        */
338       for (i=dev->max_rewind_wait; ; i -= 5) {
339          if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
340             if (i == dev->max_rewind_wait) {
341                Dmsg1(200, "Rewind error, %s. retrying ...\n", strerror(errno));
342             }
343             clrerror_dev(dev, MTREW);
344             if (dev->dev_errno == EIO && i > 0) {
345                Dmsg0(200, "Sleeping 5 seconds.\n");
346                sleep(5);
347                continue;
348             }
349             Mmsg2(&dev->errmsg, _("Rewind error on %s. ERR=%s.\n"),
350                dev->dev_name, strerror(dev->dev_errno));
351             return 0;
352          }
353          break;
354       }
355    } else if (dev->state & ST_FILE) {
356       if (lseek(dev->fd, (off_t)0, SEEK_SET) < 0) {
357          dev->dev_errno = errno;
358          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
359             dev->dev_name, strerror(dev->dev_errno));
360          return 0;
361       }
362    }
363    return 1;
364 }
365
366 /* 
367  * Position device to end of medium (end of data)
368  *  Returns: 1 on succes
369  *           0 on error
370  */
371 int 
372 eod_dev(DEVICE *dev)
373 {
374    struct mtop mt_com;
375    struct mtget mt_stat;
376    int stat = 0;
377    off_t pos;
378
379    Dmsg0(29, "eod_dev\n");
380    if (dev->state & ST_EOT) {
381       return 1;
382    }
383    dev->state &= ~(ST_EOF);  /* remove EOF flags */
384    dev->block_num = dev->file = 0;
385    dev->file_addr = 0;
386    if (dev->state & (ST_FIFO | ST_PROG)) {
387       return 1;
388    }
389    if (!(dev->state & ST_TAPE)) {
390       pos = lseek(dev->fd, (off_t)0, SEEK_END);
391 //    Dmsg1(000, "====== Seek to %lld\n", pos);
392       if (pos >= 0) {
393          update_pos_dev(dev);
394          dev->state |= ST_EOT;
395          return 1;
396       }
397       return 0;
398    }
399    if (dev->capabilities & CAP_EOM) {
400       mt_com.mt_op = MTEOM;
401       mt_com.mt_count = 1;
402       if ((stat=ioctl(dev->fd, MTIOCTOP, (char *)&mt_com)) < 0) {
403          Dmsg1(50, "ioctl error: %s\n", strerror(dev->dev_errno));
404          clrerror_dev(dev, mt_com.mt_op);
405          update_pos_dev(dev);
406          Mmsg2(&dev->errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
407             dev->dev_name, strerror(dev->dev_errno));
408          return 0;
409       }
410       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
411          dev->dev_errno = errno;
412          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
413             dev->dev_name, strerror(dev->dev_errno));
414          return 0;
415       }
416       Dmsg2(200, "EOD file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
417       dev->file = mt_stat.mt_fileno;
418
419    /*
420     * Rewind then use FSF until EOT reached
421     */
422    } else {
423       if (!rewind_dev(dev)) {
424          return 0;
425       }
426       while (!(dev->state & ST_EOT)) {
427          Dmsg0(200, "Do fsf 1\n");
428          if (!fsf_dev(dev, 1)) {
429             Dmsg0(200, "fsf_dev error.\n");
430             return 0;
431          }
432       }
433    }
434    update_pos_dev(dev);                      /* update position */
435    Dmsg1(200, "EOD dev->file=%d\n", dev->file);
436    return 1;
437 }
438
439 /*
440  * Set the position of the device -- only for files
441  *   For other devices, there is no generic way to do it.
442  *  Returns: 1 on succes
443  *           0 on error
444  */
445 int update_pos_dev(DEVICE *dev)
446 {
447    off_t pos;
448    int stat = 0;
449
450    if (dev->fd < 0) {
451       dev->dev_errno = EBADF;
452       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
453       Emsg0(M_FATAL, 0, dev->errmsg);
454       return 0;
455    }
456
457    /* Find out where we are */
458    if (dev->state & ST_FILE) {
459       dev->file = 0;
460       dev->file_addr = 0;
461       pos = lseek(dev->fd, (off_t)0, SEEK_CUR);
462       if (pos < 0) {
463          Dmsg1(000, "Seek error: ERR=%s\n", strerror(dev->dev_errno));
464          dev->dev_errno = errno;
465          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
466             dev->dev_name, strerror(dev->dev_errno));
467       } else {
468          stat = 1;
469          dev->file_addr = pos;
470       }
471       return stat;
472    }
473    return 1;
474 }
475
476
477 /* 
478  * Return the status of the device.  This was meant
479  * to be a generic routine. Unfortunately, it doesn't
480  * seem possible (at least I do not know how to do it
481  * currently), which means that for the moment, this
482  * routine has very little value.
483  *
484  *   Returns: 1 on success
485  *            0 on error
486  */
487 int
488 status_dev(DEVICE *dev, uint32_t *status)
489 {
490    struct mtget mt_stat;
491    uint32_t stat = 0;
492
493    if (dev->state & (ST_EOT | ST_WEOT)) {
494       stat |= MT_EOD;
495       Dmsg0(-20, " EOD");
496    }
497    if (dev->state & ST_EOF) {
498       stat |= MT_EOF;
499       Dmsg0(-20, " EOF");
500    }
501    if (dev->state & ST_TAPE) {
502       stat |= MT_TAPE;
503       Dmsg0(-20," Driver status:");
504       Dmsg2(-20," file=%d block=%d\n", dev->file, dev->block_num);
505       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
506          dev->dev_errno = errno;
507          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
508             dev->dev_name, strerror(dev->dev_errno));
509          return 0;
510       }
511       Dmsg0(-20, " Device status:");
512
513 #if defined(HAVE_LINUX_OS)
514       if (GMT_EOF(mt_stat.mt_gstat)) {
515          stat |= MT_EOF;
516          Dmsg0(-20, " EOF");
517       }
518       if (GMT_BOT(mt_stat.mt_gstat)) {
519          stat |= MT_BOT;
520          Dmsg0(-20, " BOT");
521       }
522       if (GMT_EOT(mt_stat.mt_gstat)) {
523          stat |= MT_EOT;
524          Dmsg0(-20, " EOT");
525       }
526       if (GMT_SM(mt_stat.mt_gstat)) {
527          stat |= MT_SM;
528          Dmsg0(-20, " SM");
529       }
530       if (GMT_EOD(mt_stat.mt_gstat)) {
531          stat |= MT_EOD;
532          Dmsg0(-20, " EOD");
533       }
534       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
535          stat |= MT_WR_PROT;
536          Dmsg0(-20, " WR_PROT");
537       }
538       if (GMT_ONLINE(mt_stat.mt_gstat)) {
539          stat |= MT_ONLINE;
540          Dmsg0(-20, " ONLINE");
541       }
542       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
543          stat |= MT_DR_OPEN;
544          Dmsg0(-20, " DR_OPEN");       
545       }
546       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
547          stat |= MT_IM_REP_EN;
548          Dmsg0(-20, " IM_REP_EN");
549       }
550 #endif /* !SunOS && !OSF */
551       Dmsg2(-20, " file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
552    } else {
553       stat |= MT_ONLINE | MT_BOT;
554    }
555    *status = stat; 
556    return 1;
557 }
558
559
560 /*
561  * Load medium in device
562  *  Returns: 1 on success
563  *           0 on failure
564  */
565 int load_dev(DEVICE *dev)
566 {
567 #ifdef MTLOAD
568    struct mtop mt_com;
569 #endif
570
571    if (dev->fd < 0) {
572       dev->dev_errno = EBADF;
573       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
574       Emsg0(M_FATAL, 0, dev->errmsg);
575       return 0;
576    }
577    if (!(dev->state & ST_TAPE)) {
578       return 1;
579    }
580 #ifndef MTLOAD
581    Dmsg0(200, "stored: MTLOAD command not available\n");
582    dev->dev_errno = ENOTTY;           /* function not available */
583    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
584          dev->dev_name, strerror(dev->dev_errno));      return 0;
585    return 0;
586 #else
587
588    dev->block_num = dev->file = 0;
589    dev->file_addr = 0;
590    mt_com.mt_op = MTLOAD;
591    mt_com.mt_count = 1;
592    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
593       dev->dev_errno = errno;
594       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
595          dev->dev_name, strerror(dev->dev_errno));      return 0;
596    }
597    return 1;
598 #endif
599 }
600
601 /*
602  * Rewind device and put it offline
603  *  Returns: 1 on success
604  *           0 on failure
605  */
606 int offline_dev(DEVICE *dev)
607 {
608    struct mtop mt_com;
609
610    if (dev->fd < 0) {
611       dev->dev_errno = EBADF;
612       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
613       Emsg0(M_FATAL, 0, dev->errmsg);
614       return 0;
615    }
616    if (!(dev->state & ST_TAPE)) {
617       return 1;
618    }
619
620    dev->block_num = dev->file = 0;
621    dev->file_addr = 0;
622 #ifdef MTUNLOCK
623    mt_com.mt_op = MTUNLOCK;
624    mt_com.mt_count = 1;
625    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
626 #endif
627    mt_com.mt_op = MTOFFL;
628    mt_com.mt_count = 1;
629    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
630       dev->dev_errno = errno;
631       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
632          dev->dev_name, strerror(dev->dev_errno));
633       return 0;
634    }
635    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
636    return 1;
637 }
638
639
640 /* 
641  * Foward space a file  
642  *   Returns: 1 on success
643  *            0 on failure
644  */
645 int
646 fsf_dev(DEVICE *dev, int num)
647
648    struct mtop mt_com;
649    int stat = 0;
650    char rbuf[1024];
651
652    if (dev->fd < 0) {
653       dev->dev_errno = EBADF;
654       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
655       Emsg0(M_FATAL, 0, dev->errmsg);
656       return 0;
657    }
658
659    if (!(dev->state & ST_TAPE)) {
660       return 1;
661    }
662    if (dev->state & ST_EOT) {
663       dev->dev_errno = 0;
664       Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
665       return 0;
666    }
667    if (dev->state & ST_EOF)
668       Dmsg0(200, "ST_EOF set on entry to FSF\n");
669    if (dev->state & ST_EOT)
670       Dmsg0(200, "ST_EOT set on entry to FSF\n");
671       
672    Dmsg0(29, "fsf_dev\n");
673    dev->block_num = 0;
674    if (dev->capabilities & CAP_FSF) {
675       Dmsg0(200, "FSF has cap_fsf\n");
676       mt_com.mt_op = MTFSF;
677       mt_com.mt_count = 1;
678       while (num-- && !(dev->state & ST_EOT)) {
679          Dmsg0(200, "Doing read for fsf\n");
680          if ((stat = read(dev->fd, rbuf, sizeof(rbuf))) < 0) {
681             if (errno == ENOMEM) {     /* tape record exceeds buf len */
682                stat = sizeof(rbuf);   /* This is OK */
683             } else {
684                dev->state |= ST_EOT;
685                clrerror_dev(dev, -1);
686                Dmsg1(200, "Set ST_EOT read error %d\n", dev->dev_errno);
687                Mmsg2(&dev->errmsg, _("read error on %s. ERR=%s.\n"),
688                   dev->dev_name, strerror(dev->dev_errno));
689                Dmsg1(200, "%s", dev->errmsg);
690                break;
691             }
692          }
693          if (stat == 0) {                /* EOF */
694             update_pos_dev(dev);
695             Dmsg1(200, "End of File mark from read. File=%d\n", dev->file+1);
696             /* Two reads of zero means end of tape */
697             if (dev->state & ST_EOF) {
698                dev->state |= ST_EOT;
699                Dmsg0(200, "Set ST_EOT\n");
700                break;
701             } else {
702                dev->state |= ST_EOF;
703                dev->file++;
704                dev->file_addr = 0;
705                continue;
706             }
707          } else {                        /* Got data */
708             dev->state &= ~(ST_EOF|ST_EOT);
709          }
710
711          Dmsg0(200, "Doing MT_FSF\n");
712          stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
713          if (stat < 0) {                 /* error => EOT */
714             dev->state |= ST_EOT;
715             Dmsg0(200, "Set ST_EOT\n");
716             clrerror_dev(dev, MTFSF);
717             Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
718                dev->dev_name, strerror(dev->dev_errno));
719             Dmsg0(200, "Got < 0 for MT_FSF\n");
720             Dmsg1(200, "%s", dev->errmsg);
721          } else {
722             dev->state |= ST_EOF;     /* just read EOF */
723             dev->file++;
724             dev->file_addr = 0;
725          }   
726       }
727    
728    /*
729     * No FSF, so use FSR to simulate it
730     */
731    } else {
732       Dmsg0(200, "Doing FSR for FSF\n");
733       while (num-- && !(dev->state & ST_EOT)) {
734          fsr_dev(dev, INT32_MAX);    /* returns -1 on EOF or EOT */
735       }
736       if (dev->state & ST_EOT) {
737          dev->dev_errno = 0;
738          Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
739          stat = -1;
740       } else {
741          stat = 0;
742       }
743    }
744    update_pos_dev(dev);
745    Dmsg1(200, "Return %d from FSF\n", stat);
746    if (dev->state & ST_EOF)
747       Dmsg0(200, "ST_EOF set on exit FSF\n");
748    if (dev->state & ST_EOT)
749       Dmsg0(200, "ST_EOT set on exit FSF\n");
750    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
751    return stat == 0 ? 1 : 0;
752 }
753
754 /* 
755  * Backward space a file  
756  */
757 int
758 bsf_dev(DEVICE *dev, int num)
759
760    struct mtop mt_com;
761    int stat;
762
763    if (dev->fd < 0) {
764       dev->dev_errno = EBADF;
765       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
766       Emsg0(M_FATAL, 0, dev->errmsg);
767       return -1;
768    }
769
770    if (!(dev->state & ST_TAPE)) {
771       return 0;
772    }
773    Dmsg0(29, "bsf_dev\n");
774    dev->state &= ~(ST_EOT|ST_EOF);
775    dev->file -= num;
776    dev->file_addr = 0;
777    mt_com.mt_op = MTBSF;
778    mt_com.mt_count = num;
779    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
780    if (stat < 0) {
781       clrerror_dev(dev, MTBSF);
782       Mmsg2(&dev->errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
783          dev->dev_name, strerror(dev->dev_errno));
784    }
785    update_pos_dev(dev);
786    return stat;
787 }
788
789
790 /* 
791  * Foward space a record
792  */
793 int
794 fsr_dev(DEVICE *dev, int num)
795
796    struct mtop mt_com;
797    int stat;
798
799    if (dev->fd < 0) {
800       dev->dev_errno = EBADF;
801       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
802       Emsg0(M_FATAL, 0, dev->errmsg);
803       return -1;
804    }
805
806    if (!(dev->state & ST_TAPE)) {
807       return 0;
808    }
809    Dmsg0(29, "fsr_dev\n");
810    dev->block_num += num;
811    mt_com.mt_op = MTFSR;
812    mt_com.mt_count = num;
813    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
814    if (stat == 0) {
815       dev->state &= ~ST_EOF;
816    } else {
817       if (dev->state & ST_EOF) {
818          dev->state |= ST_EOT;
819       } else {
820          dev->state |= ST_EOF;           /* assume EOF */
821          dev->file++;
822          dev->file_addr = 0;
823       }
824       clrerror_dev(dev, MTFSR);
825       Mmsg2(&dev->errmsg, _("ioctl MTFSR error on %s. ERR=%s.\n"),
826          dev->dev_name, strerror(dev->dev_errno));
827    }
828    update_pos_dev(dev);
829    return stat;
830 }
831
832 /* 
833  * Backward space a record
834  *   Returns:  0 on success
835  *            -1 on failure
836  */
837 int
838 bsr_dev(DEVICE *dev, int num)
839
840    struct mtop mt_com;
841    int stat;
842
843    if (dev->fd < 0) {
844       dev->dev_errno = EBADF;
845       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
846       Emsg0(M_FATAL, 0, dev->errmsg);
847       return -1;
848    }
849
850    if (!(dev->state & ST_TAPE)) {
851       return 0;
852    }
853    Dmsg0(29, "bsr_dev\n");
854    dev->block_num -= num;
855    dev->state &= ~(ST_EOF|ST_EOT|ST_EOF);
856    mt_com.mt_op = MTBSR;
857    mt_com.mt_count = num;
858    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
859    if (stat < 0) {
860       clrerror_dev(dev, MTBSR);
861       Mmsg2(&dev->errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
862          dev->dev_name, strerror(dev->dev_errno));
863    }
864    update_pos_dev(dev);
865    return stat;
866 }
867
868
869
870 /*
871  * Write an end of file on the device
872  */
873 int 
874 weof_dev(DEVICE *dev, int num)
875
876    struct mtop mt_com;
877    int stat;
878
879    if (dev->fd < 0) {
880       dev->dev_errno = EBADF;
881       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
882       Emsg0(M_FATAL, 0, dev->errmsg);
883       return -1;
884    }
885
886    if (!(dev->state & ST_TAPE)) {
887       return 0;
888    }
889    dev->state &= ~(ST_EOT | ST_EOF);  /* remove EOF/EOT flags */
890    dev->block_num = 0;
891    Dmsg0(29, "weof_dev\n");
892    mt_com.mt_op = MTWEOF;
893    mt_com.mt_count = num;
894    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
895    if (stat == 0) {
896       dev->file++;
897       dev->file_addr = 0;
898    } else {
899       clrerror_dev(dev, MTWEOF);
900       Mmsg2(&dev->errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
901          dev->dev_name, strerror(dev->dev_errno));
902    }
903    return stat;
904 }
905
906 /*
907  * Return string message with last error in English
908  *  Be careful not to call this routine from within dev.c
909  *  while editing an Mmsg(&) or you will end up in a recursive
910  *  loop creating a Segmentation Violation.
911  */
912 char *
913 strerror_dev(DEVICE *dev)
914 {
915    return dev->errmsg;
916 }
917
918
919 /*
920  * If implemented in system, clear the tape
921  * error status.
922  */
923 void
924 clrerror_dev(DEVICE *dev, int func)
925 {
926    char *msg = NULL;
927
928    dev->dev_errno = errno;         /* save errno */
929    if (errno == EIO) {
930       dev->VolCatInfo.VolCatErrors++;
931    }
932
933    if (!(dev->state & ST_TAPE)) {
934       return;
935    }
936    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
937       switch (func) {
938          case -1:
939             Emsg0(M_ABORT, 0, "Got ENOTTY on read/write!\n");
940             break;
941          case MTWEOF:
942             msg = "WTWEOF";
943             dev->capabilities &= ~CAP_EOF; /* turn off feature */
944             break;
945          case MTEOM:
946             msg = "WTEOM";
947             dev->capabilities &= ~CAP_EOM; /* turn off feature */
948             break;
949          case MTFSF:
950             msg = "MTFSF";
951             dev->capabilities &= ~CAP_FSF; /* turn off feature */
952             break;
953          case MTBSF:
954             msg = "MTBSF";
955             dev->capabilities &= ~CAP_BSF; /* turn off feature */
956             break;
957          case MTFSR:
958             msg = "MTFSR";
959             dev->capabilities &= ~CAP_FSR; /* turn off feature */
960             break;
961          case MTBSR:
962             msg = "MTBSR";
963             dev->capabilities &= ~CAP_BSR; /* turn off feature */
964             break;
965          default:
966             msg = "Unknown";
967             break;
968       }
969       if (msg != NULL) {
970          dev->dev_errno = ENOSYS;
971          Mmsg1(&dev->errmsg, _("This device does not support %s.\n"), msg);
972          Emsg0(M_ERROR, 0, dev->errmsg);
973       }
974    }
975 #ifdef MTIOCLRERR
976 {
977    struct mtop mt_com;
978    int stat;
979    mt_com.mt_op = MTIOCLRERR;
980    mt_com.mt_count = 1;
981    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
982    Dmsg0(200, "Did MTIOCLRERR\n");
983 }
984 #endif
985 }
986
987 /*
988  * Flush buffer contents
989  *  No longer used.
990  */
991 int flush_dev(DEVICE *dev)
992 {
993    return 1;
994 }
995
996 static void do_close(DEVICE *dev)
997 {
998
999    Dmsg0(29, "really close_dev\n");
1000    close(dev->fd);
1001    /* Clean up device packet so it can be reused */
1002    dev->fd = -1;
1003    dev->state &= ~(ST_OPENED|ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1004    dev->file = dev->block_num = 0;
1005    dev->file_addr = 0;
1006    dev->EndFile = dev->EndBlock = 0;
1007    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
1008    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
1009    dev->use_count--;
1010 }
1011
1012 /* 
1013  * Close the device
1014  */
1015 void
1016 close_dev(DEVICE *dev)
1017 {
1018    if (!dev) {
1019       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
1020       Emsg0(M_FATAL, 0, dev->errmsg);
1021       return;
1022    }
1023    if (dev->fd >= 0 && dev->use_count == 1) {
1024       do_close(dev);
1025    } else {    
1026       Dmsg0(29, "close_dev but in use so leave open.\n");
1027       dev->use_count--;
1028    }
1029 }
1030
1031 /*
1032  * Used when unmounting the device
1033  */
1034 void force_close_dev(DEVICE *dev)
1035 {
1036    if (!dev) {
1037       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
1038       Emsg0(M_FATAL, 0, dev->errmsg);
1039       return;
1040    }
1041    Dmsg0(29, "really close_dev\n");
1042    do_close(dev);
1043 }
1044
1045 int truncate_dev(DEVICE *dev)
1046 {
1047    if (dev->state & ST_TAPE) {
1048       return 1;
1049    }
1050    if (ftruncate(dev->fd, 0) != 0) {
1051       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), strerror(errno));
1052       return 0;
1053    }
1054    return 1;
1055 }
1056
1057 int 
1058 dev_is_tape(DEVICE *dev)
1059 {  
1060    return (dev->state & ST_TAPE) ? 1 : 0;
1061 }
1062
1063 char *
1064 dev_name(DEVICE *dev)
1065 {
1066    return dev->dev_name;
1067 }
1068
1069 char *
1070 dev_vol_name(DEVICE *dev)
1071 {
1072    return dev->VolCatInfo.VolCatName;
1073 }
1074
1075 uint32_t dev_block(DEVICE *dev)
1076 {
1077    update_pos_dev(dev);
1078    return dev->block_num;
1079 }
1080
1081 uint32_t dev_file(DEVICE *dev)
1082 {
1083    update_pos_dev(dev);
1084    return dev->file;
1085 }
1086
1087 /* 
1088  * Free memory allocated for the device
1089  */
1090 void
1091 term_dev(DEVICE *dev)
1092 {
1093    if (!dev) {
1094       dev->dev_errno = EBADF;
1095       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
1096       Emsg0(M_FATAL, 0, dev->errmsg);
1097       return;
1098    }
1099    close_dev(dev);
1100    Dmsg0(29, "term_dev\n");
1101    if (dev->dev_name) {
1102       free_memory(dev->dev_name);
1103       dev->dev_name = NULL;
1104    }
1105    if (dev->errmsg) {
1106       free_pool_memory(dev->errmsg);
1107       dev->errmsg = NULL;
1108    }
1109    pthread_mutex_destroy(&dev->mutex);
1110    pthread_cond_destroy(&dev->wait);
1111    pthread_cond_destroy(&dev->wait_next_vol);
1112    if (dev->state & ST_MALLOC) {
1113       free_pool_memory((POOLMEM *)dev);
1114    }
1115 }
1116
1117
1118 /* To make following two functions more readable */
1119
1120 #define attached_jcrs ((JCR *)(dev->attached_jcrs))
1121
1122 void attach_jcr_to_device(DEVICE *dev, JCR *jcr)
1123 {
1124    jcr->prev_dev = NULL;
1125    jcr->next_dev = attached_jcrs;
1126    if (attached_jcrs) {
1127       attached_jcrs->prev_dev = jcr;
1128    }
1129    attached_jcrs = jcr;
1130    Dmsg1(100, "Attached Job %s\n", jcr->Job);
1131 }
1132
1133 void detach_jcr_from_device(DEVICE *dev, JCR *jcr)
1134 {
1135    if (!jcr->prev_dev) {
1136       attached_jcrs = jcr->next_dev;
1137    } else {
1138       jcr->prev_dev->next_dev = jcr->next_dev;
1139    }
1140    if (jcr->next_dev) {
1141       jcr->next_dev->prev_dev = jcr->prev_dev; 
1142    }
1143    jcr->next_dev = jcr->prev_dev = NULL;
1144    Dmsg1(100, "Detached Job %s\n", jcr->Job);
1145 }
1146
1147 JCR *next_attached_jcr(DEVICE *dev, JCR *jcr)
1148 {
1149    if (jcr == NULL) {
1150       return attached_jcrs;
1151    }
1152    return jcr->next_dev;
1153 }