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