]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
- Edit Resource-name (physical-name) for the device name
[bacula/bacula] / bacula / src / stored / dev.c
1 /*
2  *
3  *   dev.c  -- low level operations on device (storage device)
4  *
5  *              Kern Sibbald, MM
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-2005 Kern Sibbald
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_block_to_device() call the fix_up
61  * routine. In addition, all threads are blocked
62  * from writing on the tape by calling lock_dev(), and thread other
63  * than the first thread to hit the EOT will block on a condition
64  * variable. The first thread to hit the EOT will continue to
65  * be able to read and write the tape (he sort of tunnels through
66  * the locking mechanism -- see lock_dev() for details).
67  *
68  * Now presumably somewhere higher in the chain of command
69  * (device.c), someone will notice the EOT condition and
70  * get a new tape up, get the tape label read, and mark
71  * the label for rewriting. Then this higher level routine
72  * will write the unwritten buffer to the new volume.
73  * Finally, he will release
74  * any blocked threads by doing a broadcast on the condition
75  * variable.  At that point, we should be totally back in
76  * business with no lost data.
77  */
78
79
80 #include "bacula.h"
81 #include "stored.h"
82
83 /* Functions in dvd.c */ 
84 void get_filename(DEVICE *dev, char *VolName, POOL_MEM& archive_name);
85 int mount_dev(DEVICE* dev, int timeout);
86 int unmount_dev(DEVICE *dev, int timeout);
87 void update_free_space_dev(DEVICE* dev);
88
89
90 /* Forward referenced functions */
91 void set_os_device_parameters(DEVICE *dev);
92 static bool dev_get_os_pos(DEVICE *dev, struct mtget *mt_stat);
93
94 /*
95  * Allocate and initialize the DEVICE structure
96  * Note, if dev is non-NULL, it is already allocated,
97  * thus we neither allocate it nor free it. This allows
98  * the caller to put the packet in shared memory.
99  *
100  *  Note, for a tape, the device->device_name is the device name
101  *     (e.g. /dev/nst0), and for a file, the device name
102  *     is the directory in which the file will be placed.
103  *
104  */
105 DEVICE *
106 init_dev(JCR *jcr, DEVICE *dev, DEVRES *device)
107 {
108    struct stat statp;
109    bool tape, fifo;
110    int errstat;
111    DCR *dcr = NULL;
112
113    /* Check that device is available */
114    if (stat(device->device_name, &statp) < 0) {
115       berrno be;
116       if (dev) {
117          dev->dev_errno = errno;
118       }
119       Jmsg2(jcr, M_ERROR, 0, _("Unable to stat device %s: ERR=%s\n"), 
120          device->device_name, be.strerror());
121       return NULL;
122    }
123    
124    
125    tape = false;
126    fifo = false;
127    if (S_ISDIR(statp.st_mode)) {
128       tape = false;
129    } else if (S_ISCHR(statp.st_mode)) {
130       tape = true;
131    } else if (S_ISFIFO(statp.st_mode)) {
132       fifo = true;
133    } else {
134       if (dev) {
135          dev->dev_errno = ENODEV;
136       }
137       Jmsg2(jcr, M_ERROR, 0, _("%s is an unknown device type. Must be tape or directory. st_mode=%x\n"),
138          device->device_name, statp.st_mode);
139       return NULL;
140    }
141    if (!dev) {
142       dev = (DEVICE *)get_memory(sizeof(DEVICE));
143       memset(dev, 0, sizeof(DEVICE));
144       dev->state = ST_MALLOC;
145    } else {
146       memset(dev, 0, sizeof(DEVICE));
147    }
148
149    /* Copy user supplied device parameters from Resource */
150    dev->dev_name = get_memory(strlen(device->device_name)+1);
151    pm_strcpy(dev->dev_name, device->device_name);
152    dev->prt_name = get_memory(strlen(device->device_name) + strlen(device->hdr.name) + 20);
153    /* We edit "Resource-name" (physical-name) */
154    Mmsg(dev->prt_name, "\"%s\" (%s)", device->hdr.name, device->device_name);
155    dev->capabilities = device->cap_bits;
156    dev->min_block_size = device->min_block_size;
157    dev->max_block_size = device->max_block_size;
158    dev->max_volume_size = device->max_volume_size;
159    dev->max_file_size = device->max_file_size;
160    dev->volume_capacity = device->volume_capacity;
161    dev->max_rewind_wait = device->max_rewind_wait;
162    dev->max_open_wait = device->max_open_wait;
163    dev->max_open_vols = device->max_open_vols;
164    dev->vol_poll_interval = device->vol_poll_interval;
165    dev->max_spool_size = device->max_spool_size;
166    dev->drive_index = device->drive_index;
167    dev->autoselect = device->autoselect;
168    if (tape) { /* No parts on tapes */
169       dev->max_part_size = 0;
170    }
171    else {
172       dev->max_part_size = device->max_part_size;
173    }
174    /* Sanity check */
175    if (dev->vol_poll_interval && dev->vol_poll_interval < 60) {
176       dev->vol_poll_interval = 60;
177    }
178    dev->device = device;
179
180    if (tape) {
181       dev->state |= ST_TAPE;
182    } else if (fifo) {
183       dev->state |= ST_FIFO;
184       dev->capabilities |= CAP_STREAM; /* set stream device */
185    } else {
186       dev->state |= ST_FILE;
187    }
188
189    /* If the device requires mount :
190     * - Check that the mount point is available 
191     * - Check that (un)mount commands are defined
192     */
193    if (dev->is_file() && device->cap_bits & CAP_REQMOUNT) {
194       if (stat(device->mount_point, &statp) < 0) {
195          berrno be;
196          dev->dev_errno = errno;
197          Jmsg2(jcr, M_ERROR, 0, _("Unable to stat mount point %s: ERR=%s\n"), 
198             device->mount_point, be.strerror());
199          return NULL;
200       }
201       if (!device->mount_command || !device->unmount_command) {
202          Jmsg0(jcr, M_ERROR_TERM, 0, _("Mount and unmount commands must defined for a device which requires mount.\n"));
203       }
204       if (!device->write_part_command) {
205          Jmsg0(jcr, M_ERROR_TERM, 0, _("Write part command must be defined for a device which requires mount.\n"));
206       }
207       dev->state |= ST_DVD;
208    }
209
210    if (dev->max_block_size > 1000000) {
211       Jmsg3(jcr, M_ERROR, 0, _("Block size %u on device %s is too large, using default %u\n"),
212          dev->max_block_size, dev->dev_name, DEFAULT_BLOCK_SIZE);
213       dev->max_block_size = 0;
214    }
215    if (dev->max_block_size % TAPE_BSIZE != 0) {
216       Jmsg2(jcr, M_WARNING, 0, _("Max block size %u not multiple of device %s block size.\n"),
217          dev->max_block_size, dev->dev_name);
218    }
219
220    dev->errmsg = get_pool_memory(PM_EMSG);
221    *dev->errmsg = 0;
222
223    if ((errstat = pthread_mutex_init(&dev->mutex, NULL)) != 0) {
224       berrno be;
225       dev->dev_errno = errstat;
226       Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.strerror(errstat));
227       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
228    }
229    if ((errstat = pthread_cond_init(&dev->wait, NULL)) != 0) {
230       berrno be;
231       dev->dev_errno = errstat;
232       Mmsg1(dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), be.strerror(errstat));
233       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
234    }
235    if ((errstat = pthread_cond_init(&dev->wait_next_vol, NULL)) != 0) {
236       berrno be;
237       dev->dev_errno = errstat;
238       Mmsg1(dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), be.strerror(errstat));
239       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
240    }
241    if ((errstat = pthread_mutex_init(&dev->spool_mutex, NULL)) != 0) {
242       berrno be;
243       dev->dev_errno = errstat;
244       Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.strerror(errstat));
245       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
246    }
247    if ((errstat = rwl_init(&dev->lock)) != 0) {
248       berrno be;
249       dev->dev_errno = errstat;
250       Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.strerror(errstat));
251       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
252    }
253
254    dev->fd = -1;
255    dev->attached_dcrs = New(dlist(dcr, &dcr->dev_link));
256    Dmsg2(29, "init_dev: tape=%d dev_name=%s\n", dev_is_tape(dev), dev->dev_name);
257    
258    return dev;
259 }
260
261 /*
262  * Open the device with the operating system and
263  * initialize buffer pointers.
264  *
265  * Returns:  -1  on error
266  *           fd  on success
267  *
268  * Note, for a tape, the VolName is the name we give to the
269  *    volume (not really used here), but for a file, the
270  *    VolName represents the name of the file to be created/opened.
271  *    In the case of a file, the full name is the device name
272  *    (archive_name) with the VolName concatenated.
273  */
274 int
275 open_dev(DEVICE *dev, char *VolName, int mode)
276 {
277    if (dev->is_open()) {
278       /*
279        *  *****FIXME***** how to handle two threads wanting
280        *  different volumes mounted???? E.g. one is waiting
281        *  for the next volume to be mounted, and a new job
282        *  starts and snatches up the device.
283        */
284       if (VolName && strcmp(dev->VolCatInfo.VolCatName, VolName) != 0) {
285          return -1;
286       }
287       dev->use_count++;
288       Mmsg2(&dev->errmsg, _("WARNING!!!! device %s opened %d times!!!\n"),
289             dev->dev_name, dev->use_count);
290       Emsg1(M_WARNING, 0, "%s", dev->errmsg);
291       return dev->fd;
292    }
293    if (VolName) {
294       bstrncpy(dev->VolCatInfo.VolCatName, VolName, sizeof(dev->VolCatInfo.VolCatName));
295    }
296
297    Dmsg3(29, "open_dev: tape=%d dev_name=%s vol=%s\n", dev_is_tape(dev),
298          dev->dev_name, dev->VolCatInfo.VolCatName);
299    dev->state &= ~(ST_LABEL|ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
300    dev->label_type = B_BACULA_LABEL;
301    if (dev->is_tape() || dev->is_fifo()) {
302       dev->file_size = 0;
303       int timeout;
304       Dmsg0(29, "open_dev: device is tape\n");
305       if (mode == OPEN_READ_WRITE) {
306          dev->mode = O_RDWR | O_BINARY;
307       } else if (mode == OPEN_READ_ONLY) {
308          dev->mode = O_RDONLY | O_BINARY;
309       } else if (mode == OPEN_WRITE_ONLY) {
310          dev->mode = O_WRONLY | O_BINARY;
311       } else {
312          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n"));
313       }
314       timeout = dev->max_open_wait;
315       errno = 0;
316       if (dev->is_fifo() && timeout) {
317          /* Set open timer */
318          dev->tid = start_thread_timer(pthread_self(), timeout);
319       }
320       /* If busy retry each second for max_open_wait seconds */
321       while ((dev->fd = open(dev->dev_name, dev->mode, MODE_RW)) < 0) {
322          berrno be;
323          if (errno == EINTR || errno == EAGAIN) {
324             continue;
325          }
326          if (errno == EBUSY && timeout-- > 0) {
327             Dmsg2(100, "Device %s busy. ERR=%s\n", dev->dev_name, be.strerror());
328             bmicrosleep(1, 0);
329             continue;
330          }
331          dev->dev_errno = errno;
332          Mmsg2(&dev->errmsg, _("stored: unable to open device %s: ERR=%s\n"),
333                dev->dev_name, be.strerror());
334          /* Stop any open timer we set */
335          if (dev->tid) {
336             stop_thread_timer(dev->tid);
337             dev->tid = 0;
338          }
339          Emsg0(M_FATAL, 0, dev->errmsg);
340          break;
341       }
342       if (dev->fd >= 0) {
343          dev->dev_errno = 0;
344          dev->state |= ST_OPENED;
345          dev->use_count = 1;
346          update_pos_dev(dev);             /* update position */
347          set_os_device_parameters(dev);      /* do system dependent stuff */
348       }
349       /* Stop any open() timer we started */
350       if (dev->tid) {
351          stop_thread_timer(dev->tid);
352          dev->tid = 0;
353       }
354       Dmsg1(29, "open_dev: tape %d opened\n", dev->fd);
355    } else {
356       POOL_MEM archive_name(PM_FNAME);
357       struct stat filestat;
358       /*
359        * Handle opening of File Archive (not a tape)
360        */     
361       if (dev->part == 0) {
362          dev->file_size = 0;
363       }
364       dev->part_size = 0;
365       
366       /* if num_parts has not been set, but VolCatInfo is available, copy
367        * it from the VolCatInfo.VolCatParts */
368       if (dev->num_parts < dev->VolCatInfo.VolCatParts) {
369          dev->num_parts = dev->VolCatInfo.VolCatParts;
370       }
371       
372       if (VolName == NULL || *VolName == 0) {
373          Mmsg(dev->errmsg, _("Could not open file device %s. No Volume name given.\n"),
374             dev->dev_name);
375          return -1;
376       }
377       get_filename(dev, VolName, archive_name);
378
379       if (mount_dev(dev, 1) < 0) {
380          Mmsg(dev->errmsg, _("Could not mount archive device %s.\n"),
381               dev->dev_name);
382          Emsg0(M_FATAL, 0, dev->errmsg);
383          dev->fd = -1;
384          return dev->fd;
385       }
386             
387       Dmsg2(29, "open_dev: device is disk %s (mode:%d)\n", archive_name.c_str(), mode);
388       dev->openmode = mode;
389       
390       /*
391        * If we are not trying to access the last part, set mode to 
392        *   OPEN_READ_ONLY as writing would be an error.
393        */
394       if (dev->part < dev->num_parts) {
395          mode = OPEN_READ_ONLY;
396       }
397       
398       if (mode == OPEN_READ_WRITE) {
399          dev->mode = O_CREAT | O_RDWR | O_BINARY;
400       } else if (mode == OPEN_READ_ONLY) {
401          dev->mode = O_RDONLY | O_BINARY;
402       } else if (mode == OPEN_WRITE_ONLY) {
403          dev->mode = O_WRONLY | O_BINARY;
404       } else {
405          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n"));
406       }
407       /* If creating file, give 0640 permissions */
408       if ((dev->fd = open(archive_name.c_str(), dev->mode, 0640)) < 0) {
409          berrno be;
410          dev->dev_errno = errno;
411          Mmsg2(&dev->errmsg, _("Could not open: %s, ERR=%s\n"), archive_name.c_str(), be.strerror());
412          Emsg0(M_FATAL, 0, dev->errmsg);
413       } else {
414          dev->dev_errno = 0;
415          dev->state |= ST_OPENED;
416          dev->use_count = 1;
417          update_pos_dev(dev);                /* update position */
418          if (fstat(dev->fd, &filestat) < 0) {
419             berrno be;
420             dev->dev_errno = errno;
421             Mmsg2(&dev->errmsg, _("Could not fstat: %s, ERR=%s\n"), archive_name.c_str(), be.strerror());
422             Emsg0(M_FATAL, 0, dev->errmsg);
423          } else {
424             dev->part_size = filestat.st_size;
425          }
426       }
427       Dmsg4(29, "open_dev: disk fd=%d opened, part=%d/%d, part_size=%u\n", dev->fd, dev->part, dev->num_parts, dev->part_size);
428       if (dev->is_dvd() && (dev->mode != OPEN_READ_ONLY) && 
429           (dev->free_space_errno == 0 || dev->num_parts == dev->part)) {
430          update_free_space_dev(dev);
431       }
432    }
433    return dev->fd;
434 }
435
436 #ifdef debug_tracing
437 #undef rewind_dev
438 bool _rewind_dev(char *file, int line, DEVICE *dev)
439 {
440    Dmsg2(100, "rewind_dev called from %s:%d\n", file, line);
441    return rewind_dev(dev);
442 }
443 #endif
444
445 /*
446  * Rewind the device.
447  *  Returns: true  on success
448  *           false on failure
449  */
450 bool rewind_dev(DEVICE *dev)
451 {
452    struct mtop mt_com;
453    unsigned int i;
454
455    Dmsg1(29, "rewind_dev %s\n", dev->dev_name);
456    if (dev->fd < 0) {
457       dev->dev_errno = EBADF;
458       Mmsg1(&dev->errmsg, _("Bad call to rewind_dev. Device %s not open\n"),
459             dev->dev_name);
460       Emsg0(M_ABORT, 0, dev->errmsg);
461       return false;
462    }
463    dev->state &= ~(ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
464    dev->block_num = dev->file = 0;
465    dev->file_size = 0;
466    dev->file_addr = 0;
467    if (dev->is_tape()) {
468       mt_com.mt_op = MTREW;
469       mt_com.mt_count = 1;
470       /* If we get an I/O error on rewind, it is probably because
471        * the drive is actually busy. We loop for (about 5 minutes)
472        * retrying every 5 seconds.
473        */
474       for (i=dev->max_rewind_wait; ; i -= 5) {
475          if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
476             berrno be;
477             clrerror_dev(dev, MTREW);
478             if (i == dev->max_rewind_wait) {
479                Dmsg1(200, "Rewind error, %s. retrying ...\n", be.strerror());
480             }
481             if (dev->dev_errno == EIO && i > 0) {
482                Dmsg0(200, "Sleeping 5 seconds.\n");
483                bmicrosleep(5, 0);
484                continue;
485             }
486             Mmsg2(&dev->errmsg, _("Rewind error on %s. ERR=%s.\n"),
487                dev->dev_name, be.strerror());
488             return false;
489          }
490          break;
491       }
492    } else if (dev->is_file()) {      
493       if (lseek_dev(dev, (off_t)0, SEEK_SET) < 0) {
494          berrno be;
495          dev->dev_errno = errno;
496          Mmsg2(&dev->errmsg, _("lseek_dev error on %s. ERR=%s.\n"),
497             dev->dev_name, be.strerror());
498          return false;
499       }
500    }
501    return true;
502 }
503
504 /*
505  * Called to indicate that we have just read an
506  *  EOF from the device.
507  */
508 void DEVICE::set_eof() 
509
510    state |= ST_EOF;
511    file++;
512    file_addr = 0;
513    file_size = 0;
514    block_num = 0;
515 }
516
517 /*
518  * Called to indicate we are now at the end of the tape, and
519  *   writing is not possible.
520  */
521 void DEVICE::set_eot() 
522 {
523    state |= (ST_EOF|ST_EOT|ST_WEOT);
524    state &= ~ST_APPEND;          /* make tape read-only */
525 }
526
527 /*
528  * Position device to end of medium (end of data)
529  *  Returns: 1 on succes
530  *           0 on error
531  */
532 int
533 eod_dev(DEVICE *dev)
534 {
535    struct mtop mt_com;
536    struct mtget mt_stat;
537    int stat = 0;
538    off_t pos;
539
540    Dmsg0(29, "eod_dev\n");
541    if (dev->at_eot()) {
542       return 1;
543    }
544    dev->state &= ~(ST_EOF);  /* remove EOF flags */
545    dev->block_num = dev->file = 0;
546    dev->file_size = 0;
547    dev->file_addr = 0;
548    if (dev->state & (ST_FIFO | ST_PROG)) {
549       return 1;
550    }
551    if (!dev->is_tape()) {
552       pos = lseek_dev(dev, (off_t)0, SEEK_END);
553 //    Dmsg1(100, "====== Seek to %lld\n", pos);
554       if (pos >= 0) {
555          update_pos_dev(dev);
556          dev->state |= ST_EOT;
557          return 1;
558       }
559       dev->dev_errno = errno;
560       berrno be;
561       Mmsg2(&dev->errmsg, _("lseek_dev error on %s. ERR=%s.\n"),
562              dev->dev_name, be.strerror());
563       return 0;
564    }
565 #ifdef MTEOM
566    if (dev_cap(dev, CAP_FASTFSF) && !dev_cap(dev, CAP_EOM)) {
567       Dmsg0(100,"Using FAST FSF for EOM\n");
568       /* If unknown position, rewind */
569       if (!dev_get_os_pos(dev, &mt_stat)) {
570         if (!rewind_dev(dev)) {
571           return 0;
572         }
573       }
574       mt_com.mt_op = MTFSF;
575       /*
576        * ***FIXME*** fix code to handle case that INT16_MAX is
577        *   not large enough.
578        */
579       mt_com.mt_count = INT16_MAX;    /* use big positive number */
580       if (mt_com.mt_count < 0) {
581          mt_com.mt_count = INT16_MAX; /* brain damaged system */
582       }
583    }
584
585    if (dev_cap(dev, CAP_MTIOCGET) && (dev_cap(dev, CAP_FASTFSF) || dev_cap(dev, CAP_EOM))) {
586       if (dev_cap(dev, CAP_EOM)) {
587          Dmsg0(100,"Using EOM for EOM\n");
588          mt_com.mt_op = MTEOM;
589          mt_com.mt_count = 1;
590       }
591
592       if ((stat=ioctl(dev->fd, MTIOCTOP, (char *)&mt_com)) < 0) {
593          berrno be;
594          clrerror_dev(dev, mt_com.mt_op);
595          Dmsg1(50, "ioctl error: %s\n", be.strerror());
596          update_pos_dev(dev);
597          Mmsg2(&dev->errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
598             dev->dev_name, be.strerror());
599          return 0;
600       }
601
602       if (!dev_get_os_pos(dev, &mt_stat)) {
603          berrno be;
604          clrerror_dev(dev, -1);
605          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
606             dev->dev_name, be.strerror());
607          return 0;
608       }
609       Dmsg2(100, "EOD file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
610       dev->set_eof();
611       dev->file = mt_stat.mt_fileno;
612
613    } else {
614 #else
615    {
616 #endif
617       /*
618        * Rewind then use FSF until EOT reached
619        */
620       if (!rewind_dev(dev)) {
621          return 0;
622       }
623       /*
624        * Move file by file to the end of the tape
625        */
626       int file_num;
627       for (file_num=dev->file; !dev->at_eot(); file_num++) {
628          Dmsg0(200, "eod_dev: doing fsf 1\n");
629          if (!fsf_dev(dev, 1)) {
630             Dmsg0(200, "fsf_dev error.\n");
631             return 0;
632          }
633          /*
634           * Avoid infinite loop. ***FIXME*** possibly add code
635           *   to set EOD or to turn off CAP_FASTFSF if on.
636           */
637          if (file_num == (int)dev->file) {
638             struct mtget mt_stat;
639             Dmsg1(100, "fsf_dev did not advance from file %d\n", file_num);
640             if (dev_get_os_pos(dev, &mt_stat)) {
641                Dmsg2(100, "Adjust file from %d to %d\n", dev->file , mt_stat.mt_fileno);
642                dev->set_eof();
643                dev->file = mt_stat.mt_fileno;
644             }
645             stat = 0;
646             break;                    /* we are not progressing, bail out */
647          }
648       }
649    }
650    /*
651     * Some drivers leave us after second EOF when doing
652     * MTEOM, so we must backup so that appending overwrites
653     * the second EOF.
654     */
655    if (dev_cap(dev, CAP_BSFATEOM)) {
656       struct mtget mt_stat;
657       /* Backup over EOF */
658       stat = bsf_dev(dev, 1);
659       /* If BSF worked and fileno is known (not -1), set file */
660       if (dev_get_os_pos(dev, &mt_stat)) {
661          Dmsg2(100, "BSFATEOF adjust file from %d to %d\n", dev->file , mt_stat.mt_fileno);
662          dev->file = mt_stat.mt_fileno;
663       } else {
664          dev->file++;                 /* wing it -- not correct on all OSes */
665       }
666    } else {
667       update_pos_dev(dev);                   /* update position */
668       stat = 1;
669    }
670    Dmsg1(200, "EOD dev->file=%d\n", dev->file);
671    return stat;
672 }
673
674 /*
675  * Set the position of the device -- only for files
676  *   For other devices, there is no generic way to do it.
677  *  Returns: true  on succes
678  *           false on error
679  */
680 bool update_pos_dev(DEVICE *dev)
681 {
682    off_t pos;
683    bool ok = true;
684
685    if (dev->fd < 0) {
686       dev->dev_errno = EBADF;
687       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
688       Emsg0(M_FATAL, 0, dev->errmsg);
689       return false;
690    }
691
692    /* Find out where we are */
693    if (dev->is_file()) {
694       dev->file = 0;
695       dev->file_addr = 0;
696       pos = lseek_dev(dev, (off_t)0, SEEK_CUR);
697       if (pos < 0) {
698          berrno be;
699          dev->dev_errno = errno;
700          Pmsg1(000, "Seek error: ERR=%s\n", be.strerror());
701          Mmsg2(&dev->errmsg, _("lseek_dev error on %s. ERR=%s.\n"),
702             dev->dev_name, be.strerror());
703          ok = false;
704       } else {
705          dev->file_addr = pos;
706       }
707    }
708    return ok;
709 }
710
711
712 /*
713  * Return the status of the device.  This was meant
714  * to be a generic routine. Unfortunately, it doesn't
715  * seem possible (at least I do not know how to do it
716  * currently), which means that for the moment, this
717  * routine has very little value.
718  *
719  *   Returns: status
720  */
721 uint32_t status_dev(DEVICE *dev)
722 {
723    struct mtget mt_stat;
724    uint32_t stat = 0;
725
726    if (dev->state & (ST_EOT | ST_WEOT)) {
727       stat |= BMT_EOD;
728       Dmsg0(-20, " EOD");
729    }
730    if (dev->state & ST_EOF) {
731       stat |= BMT_EOF;
732       Dmsg0(-20, " EOF");
733    }
734    if (dev->is_tape()) {
735       stat |= BMT_TAPE;
736       Dmsg0(-20," Bacula status:");
737       Dmsg2(-20," file=%d block=%d\n", dev->file, dev->block_num);
738       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
739          berrno be;
740          dev->dev_errno = errno;
741          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
742             dev->dev_name, be.strerror());
743          return 0;
744       }
745       Dmsg0(-20, " Device status:");
746
747 #if defined(HAVE_LINUX_OS)
748       if (GMT_EOF(mt_stat.mt_gstat)) {
749          stat |= BMT_EOF;
750          Dmsg0(-20, " EOF");
751       }
752       if (GMT_BOT(mt_stat.mt_gstat)) {
753          stat |= BMT_BOT;
754          Dmsg0(-20, " BOT");
755       }
756       if (GMT_EOT(mt_stat.mt_gstat)) {
757          stat |= BMT_EOT;
758          Dmsg0(-20, " EOT");
759       }
760       if (GMT_SM(mt_stat.mt_gstat)) {
761          stat |= BMT_SM;
762          Dmsg0(-20, " SM");
763       }
764       if (GMT_EOD(mt_stat.mt_gstat)) {
765          stat |= BMT_EOD;
766          Dmsg0(-20, " EOD");
767       }
768       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
769          stat |= BMT_WR_PROT;
770          Dmsg0(-20, " WR_PROT");
771       }
772       if (GMT_ONLINE(mt_stat.mt_gstat)) {
773          stat |= BMT_ONLINE;
774          Dmsg0(-20, " ONLINE");
775       }
776       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
777          stat |= BMT_DR_OPEN;
778          Dmsg0(-20, " DR_OPEN");
779       }
780       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
781          stat |= BMT_IM_REP_EN;
782          Dmsg0(-20, " IM_REP_EN");
783       }
784 #endif /* !SunOS && !OSF */
785       if (dev_cap(dev, CAP_MTIOCGET)) {
786          Dmsg2(-20, " file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
787       } else {
788          Dmsg2(-20, " file=%d block=%d\n", -1, -1);
789       }
790    } else {
791       stat |= BMT_ONLINE | BMT_BOT;
792    }
793    return stat;
794 }
795
796
797 /*
798  * Load medium in device
799  *  Returns: true  on success
800  *           false on failure
801  */
802 bool load_dev(DEVICE *dev)
803 {
804 #ifdef MTLOAD
805    struct mtop mt_com;
806 #endif
807
808    if (dev->fd < 0) {
809       dev->dev_errno = EBADF;
810       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
811       Emsg0(M_FATAL, 0, dev->errmsg);
812       return false;
813    }
814    if (!(dev->is_tape())) {
815       return true;
816    }
817 #ifndef MTLOAD
818    Dmsg0(200, "stored: MTLOAD command not available\n");
819    berrno be;
820    dev->dev_errno = ENOTTY;           /* function not available */
821    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
822          dev->dev_name, be.strerror());
823    return false;
824 #else
825
826    dev->block_num = dev->file = 0;
827    dev->file_size = 0;
828    dev->file_addr = 0;
829    mt_com.mt_op = MTLOAD;
830    mt_com.mt_count = 1;
831    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
832       berrno be;
833       dev->dev_errno = errno;
834       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
835          dev->dev_name, be.strerror());
836       return false;
837    }
838    return true;
839 #endif
840 }
841
842 /*
843  * Rewind device and put it offline
844  *  Returns: true  on success
845  *           false on failure
846  */
847 bool offline_dev(DEVICE *dev)
848 {
849    struct mtop mt_com;
850
851    if (dev->fd < 0) {
852       dev->dev_errno = EBADF;
853       Mmsg0(&dev->errmsg, _("Bad call to offline_dev. Archive not open\n"));
854       Emsg0(M_FATAL, 0, dev->errmsg);
855       return false;
856    }
857    if (!(dev->is_tape())) {
858       return true;
859    }
860
861    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
862    dev->block_num = dev->file = 0;
863    dev->file_size = 0;
864    dev->file_addr = 0;
865    dev->part = 0;
866 #ifdef MTUNLOCK
867    mt_com.mt_op = MTUNLOCK;
868    mt_com.mt_count = 1;
869    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
870 #endif
871    mt_com.mt_op = MTOFFL;
872    mt_com.mt_count = 1;
873    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
874       berrno be;
875       dev->dev_errno = errno;
876       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
877          dev->dev_name, be.strerror());
878       return false;
879    }
880    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
881    return true;
882 }
883
884 bool offline_or_rewind_dev(DEVICE *dev)
885 {
886    if (dev->fd < 0) {
887       return false;
888    }
889    if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
890       return offline_dev(dev);
891    } else {
892    /*
893     * Note, this rewind probably should not be here (it wasn't
894     *  in prior versions of Bacula), but on FreeBSD, this is
895     *  needed in the case the tape was "frozen" due to an error
896     *  such as backspacing after writing and EOF. If it is not
897     *  done, all future references to the drive get and I/O error.
898     */
899       clrerror_dev(dev, MTREW);
900       return rewind_dev(dev);
901    }
902 }
903
904 /*
905  * Foward space a file
906  *   Returns: true  on success
907  *            false on failure
908  */
909 bool
910 fsf_dev(DEVICE *dev, int num)
911 {
912    struct mtget mt_stat;
913    struct mtop mt_com;
914    int stat = 0;
915
916    if (dev->fd < 0) {
917       dev->dev_errno = EBADF;
918       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
919       Emsg0(M_FATAL, 0, dev->errmsg);
920       return false;
921    }
922
923    if (!dev->is_tape()) {
924       return true;
925    }
926    if (dev->state & ST_EOT) {
927       dev->dev_errno = 0;
928       Mmsg1(dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
929       return false;
930    }
931    if (dev->state & ST_EOF) {
932       Dmsg0(200, "ST_EOF set on entry to FSF\n");
933    }
934
935    Dmsg0(100, "fsf_dev\n");
936    dev->block_num = 0;
937    /*
938     * If Fast forward space file is set, then we
939     *  use MTFSF to forward space and MTIOCGET
940     *  to get the file position. We assume that
941     *  the SCSI driver will ensure that we do not
942     *  forward space past the end of the medium.
943     */
944    if (dev_cap(dev, CAP_FSF) && dev_cap(dev, CAP_MTIOCGET) && dev_cap(dev, CAP_FASTFSF)) {
945       mt_com.mt_op = MTFSF;
946       mt_com.mt_count = num;
947       stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
948       if (stat < 0 || !dev_get_os_pos(dev, &mt_stat)) {
949          berrno be;
950          dev->state |= ST_EOT;
951          Dmsg0(200, "Set ST_EOT\n");
952          clrerror_dev(dev, MTFSF);
953          Mmsg2(dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
954             dev->dev_name, be.strerror());
955          Dmsg1(200, "%s", dev->errmsg);
956          return false;
957       }
958       Dmsg2(200, "fsf file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
959       dev->set_eof();
960       dev->file = mt_stat.mt_fileno;
961       return true;
962
963    /*
964     * Here if CAP_FSF is set, and virtually all drives
965     *  these days support it, we read a record, then forward
966     *  space one file. Using this procedure, which is slow,
967     *  is the only way we can be sure that we don't read
968     *  two consecutive EOF marks, which means End of Data.
969     */
970    } else if (dev_cap(dev, CAP_FSF)) {
971       POOLMEM *rbuf;
972       int rbuf_len;
973       Dmsg0(200, "FSF has cap_fsf\n");
974       if (dev->max_block_size == 0) {
975          rbuf_len = DEFAULT_BLOCK_SIZE;
976       } else {
977          rbuf_len = dev->max_block_size;
978       }
979       rbuf = get_memory(rbuf_len);
980       mt_com.mt_op = MTFSF;
981       mt_com.mt_count = 1;
982       while (num-- && !(dev->state & ST_EOT)) {
983          Dmsg0(100, "Doing read before fsf\n");
984          if ((stat = read(dev->fd, (char *)rbuf, rbuf_len)) < 0) {
985             if (errno == ENOMEM) {     /* tape record exceeds buf len */
986                stat = rbuf_len;        /* This is OK */
987             } else {
988                berrno be;
989                dev->state |= ST_EOT;
990                clrerror_dev(dev, -1);
991                Dmsg2(100, "Set ST_EOT read errno=%d. ERR=%s\n", dev->dev_errno,
992                   be.strerror());
993                Mmsg2(dev->errmsg, _("read error on %s. ERR=%s.\n"),
994                   dev->dev_name, be.strerror());
995                Dmsg1(100, "%s", dev->errmsg);
996                break;
997             }
998          }
999          if (stat == 0) {                /* EOF */
1000             update_pos_dev(dev);
1001             Dmsg1(100, "End of File mark from read. File=%d\n", dev->file+1);
1002             /* Two reads of zero means end of tape */
1003             if (dev->state & ST_EOF) {
1004                dev->state |= ST_EOT;
1005                Dmsg0(100, "Set ST_EOT\n");
1006                break;
1007             } else {
1008                dev->set_eof();
1009                continue;
1010             }
1011          } else {                        /* Got data */
1012             dev->state &= ~(ST_EOF|ST_EOT);
1013          }
1014
1015          Dmsg0(100, "Doing MTFSF\n");
1016          stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1017          if (stat < 0) {                 /* error => EOT */
1018             berrno be;
1019             dev->state |= ST_EOT;
1020             Dmsg0(100, "Set ST_EOT\n");
1021             clrerror_dev(dev, MTFSF);
1022             Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
1023                dev->dev_name, be.strerror());
1024             Dmsg0(100, "Got < 0 for MTFSF\n");
1025             Dmsg1(100, "%s", dev->errmsg);
1026          } else {
1027             dev->set_eof();
1028          }
1029       }
1030       free_memory(rbuf);
1031
1032    /*
1033     * No FSF, so use FSR to simulate it
1034     */
1035    } else {
1036       Dmsg0(200, "Doing FSR for FSF\n");
1037       while (num-- && !(dev->state & ST_EOT)) {
1038          fsr_dev(dev, INT32_MAX);    /* returns -1 on EOF or EOT */
1039       }
1040       if (dev->state & ST_EOT) {
1041          dev->dev_errno = 0;
1042          Mmsg1(dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
1043          stat = -1;
1044       } else {
1045          stat = 0;
1046       }
1047    }
1048    update_pos_dev(dev);
1049    Dmsg1(200, "Return %d from FSF\n", stat);
1050    if (dev->state & ST_EOF)
1051       Dmsg0(200, "ST_EOF set on exit FSF\n");
1052    if (dev->state & ST_EOT)
1053       Dmsg0(200, "ST_EOT set on exit FSF\n");
1054    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
1055    return stat == 0;
1056 }
1057
1058 /*
1059  * Backward space a file
1060  *  Returns: false on failure
1061  *           true  on success
1062  */
1063 bool
1064 bsf_dev(DEVICE *dev, int num)
1065 {
1066    struct mtop mt_com;
1067    int stat;
1068
1069    if (dev->fd < 0) {
1070       dev->dev_errno = EBADF;
1071       Mmsg0(dev->errmsg, _("Bad call to bsf_dev. Archive device not open\n"));
1072       Emsg0(M_FATAL, 0, dev->errmsg);
1073       return false;
1074    }
1075
1076    if (!dev->is_tape()) {
1077       Mmsg1(dev->errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
1078          dev->dev_name);
1079       return false;
1080    }
1081    Dmsg0(29, "bsf_dev\n");
1082    dev->state &= ~(ST_EOT|ST_EOF);
1083    dev->file -= num;
1084    dev->file_addr = 0;
1085    dev->file_size = 0;
1086    mt_com.mt_op = MTBSF;
1087    mt_com.mt_count = num;
1088    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1089    if (stat < 0) {
1090       berrno be;
1091       clrerror_dev(dev, MTBSF);
1092       Mmsg2(dev->errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
1093          dev->dev_name, be.strerror());
1094    }
1095    update_pos_dev(dev);
1096    return stat == 0;
1097 }
1098
1099
1100 /*
1101  * Foward space a record
1102  *  Returns: false on failure
1103  *           true  on success
1104  */
1105 bool
1106 fsr_dev(DEVICE *dev, int num)
1107 {
1108    struct mtop mt_com;
1109    int stat;
1110
1111    if (dev->fd < 0) {
1112       dev->dev_errno = EBADF;
1113       Mmsg0(dev->errmsg, _("Bad call to fsr_dev. Archive not open\n"));
1114       Emsg0(M_FATAL, 0, dev->errmsg);
1115       return false;
1116    }
1117
1118    if (!dev->is_tape()) {
1119       return false;
1120    }
1121    if (!dev_cap(dev, CAP_FSR)) {
1122       Mmsg1(dev->errmsg, _("ioctl MTFSR not permitted on %s.\n"), dev->dev_name);
1123       return false;
1124    }
1125
1126    Dmsg1(29, "fsr_dev %d\n", num);
1127    mt_com.mt_op = MTFSR;
1128    mt_com.mt_count = num;
1129    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1130    if (stat == 0) {
1131       dev->state &= ~ST_EOF;
1132       dev->block_num += num;
1133    } else {
1134       berrno be;
1135       struct mtget mt_stat;
1136       clrerror_dev(dev, MTFSR);
1137       Dmsg1(100, "FSF fail: ERR=%s\n", be.strerror());
1138       if (dev_get_os_pos(dev, &mt_stat)) {
1139          Dmsg4(100, "Adjust from %d:%d to %d:%d\n", dev->file,
1140             dev->block_num, mt_stat.mt_fileno, mt_stat.mt_blkno);
1141          dev->file = mt_stat.mt_fileno;
1142          dev->block_num = mt_stat.mt_blkno;
1143       } else {
1144          if (dev->state & ST_EOF) {
1145             dev->state |= ST_EOT;
1146          } else {
1147             dev->set_eof();
1148          }
1149       }
1150       Mmsg2(dev->errmsg, _("ioctl MTFSR error on %s. ERR=%s.\n"),
1151          dev->dev_name, be.strerror());
1152    }
1153    update_pos_dev(dev);
1154    return stat == 0;
1155 }
1156
1157 /*
1158  * Backward space a record
1159  *   Returns:  false on failure
1160  *             true  on success
1161  */
1162 bool
1163 bsr_dev(DEVICE *dev, int num)
1164 {
1165    struct mtop mt_com;
1166    int stat;
1167
1168    if (dev->fd < 0) {
1169       dev->dev_errno = EBADF;
1170       Mmsg0(dev->errmsg, _("Bad call to bsr_dev. Archive not open\n"));
1171       Emsg0(M_FATAL, 0, dev->errmsg);
1172       return false;
1173    }
1174
1175    if (!dev->is_tape()) {
1176       return false;
1177    }
1178
1179    if (!dev_cap(dev, CAP_BSR)) {
1180       Mmsg1(dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"), dev->dev_name);
1181       return false;
1182    }
1183
1184    Dmsg0(29, "bsr_dev\n");
1185    dev->block_num -= num;
1186    dev->state &= ~(ST_EOF|ST_EOT|ST_EOF);
1187    mt_com.mt_op = MTBSR;
1188    mt_com.mt_count = num;
1189    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1190    if (stat < 0) {
1191       berrno be;
1192       clrerror_dev(dev, MTBSR);
1193       Mmsg2(dev->errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
1194          dev->dev_name, be.strerror());
1195    }
1196    update_pos_dev(dev);
1197    return stat == 0;
1198 }
1199
1200 /*
1201  * Reposition the device to file, block
1202  * Returns: false on failure
1203  *          true  on success
1204  */
1205 bool
1206 reposition_dev(DEVICE *dev, uint32_t file, uint32_t block)
1207 {
1208    if (dev->fd < 0) {
1209       dev->dev_errno = EBADF;
1210       Mmsg0(dev->errmsg, _("Bad call to reposition_dev. Archive not open\n"));
1211       Emsg0(M_FATAL, 0, dev->errmsg);
1212       return false;
1213    }
1214
1215    if (!dev->is_tape()) {
1216       off_t pos = (((off_t)file)<<32) + block;
1217       Dmsg1(100, "===== lseek_dev to %d\n", (int)pos);
1218       if (lseek_dev(dev, pos, SEEK_SET) == (off_t)-1) {
1219          berrno be;
1220          dev->dev_errno = errno;
1221          Mmsg2(dev->errmsg, _("lseek_dev error on %s. ERR=%s.\n"),
1222             dev->dev_name, be.strerror());
1223          return false;
1224       }
1225       dev->file = file;
1226       dev->block_num = block;
1227       dev->file_addr = pos;
1228       return true;
1229    }
1230    Dmsg4(100, "reposition_dev from %u:%u to %u:%u\n",
1231       dev->file, dev->block_num, file, block);
1232    if (file < dev->file) {
1233       Dmsg0(100, "Rewind_dev\n");
1234       if (!rewind_dev(dev)) {
1235          return false;
1236       }
1237    }
1238    if (file > dev->file) {
1239       Dmsg1(100, "fsf %d\n", file-dev->file);
1240       if (!fsf_dev(dev, file-dev->file)) {
1241          Dmsg1(100, "fsf failed! ERR=%s\n", strerror_dev(dev));
1242          return false;
1243       }
1244       Dmsg2(100, "wanted_file=%d at_file=%d\n", file, dev->file);
1245    }
1246    if (block < dev->block_num) {
1247       Dmsg2(100, "wanted_blk=%d at_blk=%d\n", block, dev->block_num);
1248       Dmsg0(100, "bsf_dev 1\n");
1249       bsf_dev(dev, 1);
1250       Dmsg0(100, "fsf_dev 1\n");
1251       fsf_dev(dev, 1);
1252       Dmsg2(100, "wanted_blk=%d at_blk=%d\n", block, dev->block_num);
1253    }
1254    if (dev_cap(dev, CAP_POSITIONBLOCKS) && block > dev->block_num) {
1255       /* Ignore errors as Bacula can read to the correct block */
1256       Dmsg1(100, "fsr %d\n", block-dev->block_num);
1257       return fsr_dev(dev, block-dev->block_num);
1258    }
1259    return true;
1260 }
1261
1262
1263
1264 /*
1265  * Write an end of file on the device
1266  *   Returns: 0 on success
1267  *            non-zero on failure
1268  */
1269 int
1270 weof_dev(DEVICE *dev, int num)
1271 {
1272    struct mtop mt_com;
1273    int stat;
1274    Dmsg0(29, "weof_dev\n");
1275    
1276    if (dev->fd < 0) {
1277       dev->dev_errno = EBADF;
1278       Mmsg0(dev->errmsg, _("Bad call to weof_dev. Archive drive not open\n"));
1279       Emsg0(M_FATAL, 0, dev->errmsg);
1280       return -1;
1281    }
1282    dev->file_size = 0;
1283
1284    if (!dev->is_tape()) {
1285       return 0;
1286    }
1287    if (!dev->can_append()) {
1288       Mmsg0(dev->errmsg, _("Attempt to WEOF on non-appendable Volume\n"));
1289       Emsg0(M_FATAL, 0, dev->errmsg);
1290       return -1;
1291    }
1292       
1293    dev->state &= ~(ST_EOT | ST_EOF);  /* remove EOF/EOT flags */
1294    mt_com.mt_op = MTWEOF;
1295    mt_com.mt_count = num;
1296    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1297    if (stat == 0) {
1298       dev->block_num = 0;
1299       dev->file += num;
1300       dev->file_addr = 0;
1301    } else {
1302       berrno be;
1303       clrerror_dev(dev, MTWEOF);
1304       if (stat == -1) {
1305          Mmsg2(dev->errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
1306             dev->dev_name, be.strerror());
1307        }
1308    }
1309    return stat;
1310 }
1311
1312 /*
1313  * Return string message with last error in English
1314  *  Be careful not to call this routine from within dev.c
1315  *  while editing an Mmsg() or you will end up in a recursive
1316  *  loop creating a Segmentation Violation.
1317  */
1318 char *
1319 strerror_dev(DEVICE *dev)
1320 {
1321    return dev->errmsg;
1322 }
1323
1324
1325 /*
1326  * If implemented in system, clear the tape
1327  * error status.
1328  */
1329 void
1330 clrerror_dev(DEVICE *dev, int func)
1331 {
1332    const char *msg = NULL;
1333    struct mtget mt_stat;
1334    char buf[100];
1335
1336    dev->dev_errno = errno;         /* save errno */
1337    if (errno == EIO) {
1338       dev->VolCatInfo.VolCatErrors++;
1339    }
1340
1341    if (!dev->is_tape()) {
1342       return;
1343    }
1344    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
1345       switch (func) {
1346       case -1:
1347          Emsg0(M_ABORT, 0, "Got ENOTTY on read/write!\n");
1348          break;
1349       case MTWEOF:
1350          msg = "WTWEOF";
1351          dev->capabilities &= ~CAP_EOF; /* turn off feature */
1352          break;
1353 #ifdef MTEOM
1354       case MTEOM:
1355          msg = "WTEOM";
1356          dev->capabilities &= ~CAP_EOM; /* turn off feature */
1357          break;
1358 #endif
1359       case MTFSF:
1360          msg = "MTFSF";
1361          dev->capabilities &= ~CAP_FSF; /* turn off feature */
1362          break;
1363       case MTBSF:
1364          msg = "MTBSF";
1365          dev->capabilities &= ~CAP_BSF; /* turn off feature */
1366          break;
1367       case MTFSR:
1368          msg = "MTFSR";
1369          dev->capabilities &= ~CAP_FSR; /* turn off feature */
1370          break;
1371       case MTBSR:
1372          msg = "MTBSR";
1373          dev->capabilities &= ~CAP_BSR; /* turn off feature */
1374          break;
1375       case MTREW:
1376          msg = "MTREW";
1377          break;
1378 #ifdef MTSETBLK
1379       case MTSETBLK:
1380          msg = "MTSETBLK";
1381          break;
1382 #endif
1383 #ifdef MTSETBSIZ 
1384       case MTSETBSIZ:
1385          msg = "MTSETBSIZ";
1386          break;
1387 #endif
1388 #ifdef MTSRSZ
1389       case MTSRSZ:
1390          msg = "MTSRSZ";
1391          break;
1392 #endif
1393       default:
1394          bsnprintf(buf, sizeof(buf), "unknown func code %d", func);
1395          msg = buf;
1396          break;
1397       }
1398       if (msg != NULL) {
1399          dev->dev_errno = ENOSYS;
1400          Mmsg1(dev->errmsg, _("I/O function \"%s\" not supported on this device.\n"), msg);
1401          Emsg0(M_ERROR, 0, dev->errmsg);
1402       }
1403    }
1404    /* On some systems such as NetBSD, this clears all errors */
1405    ioctl(dev->fd, MTIOCGET, (char *)&mt_stat);
1406
1407 /* Found on Linux */
1408 #ifdef MTIOCLRERR
1409 {
1410    struct mtop mt_com;
1411    mt_com.mt_op = MTIOCLRERR;
1412    mt_com.mt_count = 1;
1413    /* Clear any error condition on the tape */
1414    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1415    Dmsg0(200, "Did MTIOCLRERR\n");
1416 }
1417 #endif
1418
1419 /* Typically on FreeBSD */
1420 #ifdef MTIOCERRSTAT
1421 {
1422    /* Read and clear SCSI error status */
1423    union mterrstat mt_errstat;
1424    Dmsg2(200, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev->dev_errno,
1425       strerror(dev->dev_errno));
1426    ioctl(dev->fd, MTIOCERRSTAT, (char *)&mt_errstat);
1427 }
1428 #endif
1429
1430 /* Clear Subsystem Exception OSF1 */
1431 #ifdef MTCSE
1432 {
1433    struct mtop mt_com;
1434    mt_com.mt_op = MTCSE;
1435    mt_com.mt_count = 1;
1436    /* Clear any error condition on the tape */
1437    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1438    Dmsg0(200, "Did MTCSE\n");
1439 }
1440 #endif
1441 }
1442
1443 /*
1444  * Flush buffer contents
1445  *  No longer used.
1446  */
1447 int flush_dev(DEVICE *dev)
1448 {
1449    return 1;
1450 }
1451
1452 static void do_close(DEVICE *dev)
1453 {
1454
1455    Dmsg1(29, "really close_dev %s\n", dev->dev_name);
1456    if (dev->fd >= 0) {
1457       close(dev->fd);
1458    }
1459
1460    if (unmount_dev(dev, 1) < 0) {
1461       Dmsg1(0, "Cannot unmount device %s.\n", dev->dev_name);
1462    }
1463    
1464    /* Remove the last part file if it is empty */
1465    if (dev->can_append() && (dev->num_parts > 0)) {
1466       struct stat statp;
1467       POOL_MEM archive_name(PM_FNAME);
1468       dev->part = dev->num_parts;
1469       get_filename(dev, dev->VolCatInfo.VolCatName, archive_name);
1470       /* Check that the part file is empty */
1471       if ((stat(archive_name.c_str(), &statp) == 0) && (statp.st_size == 0)) {
1472          unlink(archive_name.c_str());
1473       }
1474    }
1475    
1476    /* Clean up device packet so it can be reused */
1477    dev->fd = -1;
1478    dev->state &= ~(ST_OPENED|ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1479    dev->label_type = B_BACULA_LABEL;
1480    dev->file = dev->block_num = 0;
1481    dev->file_size = 0;
1482    dev->file_addr = 0;
1483    dev->part = 0;
1484    dev->part_size = 0;
1485    dev->part_start = 0;
1486    dev->EndFile = dev->EndBlock = 0;
1487    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
1488    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
1489    if (dev->tid) {
1490       stop_thread_timer(dev->tid);
1491       dev->tid = 0;
1492    }
1493    dev->use_count = 0;
1494 }
1495
1496 /*
1497  * Close the device
1498  */
1499 void
1500 close_dev(DEVICE *dev)
1501 {
1502    if (!dev) {
1503       Mmsg0(&dev->errmsg, _("Bad call to close_dev. Archive not open\n"));
1504       Emsg0(M_FATAL, 0, dev->errmsg);
1505       return;
1506    }
1507    /*if (dev->fd >= 0 && dev->use_count == 1) {*/
1508    /* No need to check if dev->fd >= 0: it is checked again
1509     * in do_close, and do_close MUST be called for volumes
1510     * splitted in parts, even if dev->fd == -1. */
1511    if (dev->use_count == 1) {
1512       do_close(dev);
1513    } else if (dev->use_count > 0) {
1514       dev->use_count--;
1515    }
1516
1517 #ifdef FULL_DEBUG
1518    ASSERT(dev->use_count >= 0);
1519 #endif
1520 }
1521
1522 /*
1523  * Used when unmounting the device, ignore use_count
1524  */
1525 void force_close_dev(DEVICE *dev)
1526 {
1527    if (!dev) {
1528       Mmsg0(&dev->errmsg, _("Bad call to force_close_dev. Archive not open\n"));
1529       Emsg0(M_FATAL, 0, dev->errmsg);
1530       return;
1531    }
1532    Dmsg1(29, "Force close_dev %s\n", dev->dev_name);
1533    do_close(dev);
1534
1535 #ifdef FULL_DEBUG
1536    ASSERT(dev->use_count >= 0);
1537 #endif
1538 }
1539
1540 bool truncate_dev(DEVICE *dev)
1541 {
1542    Dmsg1(100, "truncate_dev %s\n", dev->dev_name);
1543    if (dev->is_tape()) {
1544       return true;                    /* we don't really truncate tapes */
1545       /* maybe we should rewind and write and eof ???? */
1546    }
1547    
1548    /* If there is more than one part, open the first one, and then truncate it. */
1549    if (dev->num_parts > 0) {
1550       dev->num_parts = 0;
1551       dev->VolCatInfo.VolCatParts = 0;
1552       if (open_first_part(dev) < 0) {
1553          berrno be;
1554          Mmsg1(&dev->errmsg, "Unable to truncate device, because I'm unable to open the first part. ERR=%s\n", be.strerror());
1555       }
1556    }
1557    
1558    if (ftruncate(dev->fd, 0) != 0) {
1559       berrno be;
1560       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), be.strerror());
1561       return false;
1562    }
1563    return true;
1564 }
1565
1566 bool
1567 dev_is_tape(DEVICE *dev)
1568 {
1569    return dev->is_tape() ? true : false;
1570 }
1571
1572
1573 /*
1574  * return 1 if the device is read for write, and 0 otherwise
1575  *   This is meant for checking at the end of a job to see
1576  *   if we still have a tape (perhaps not if at end of tape
1577  *   and the job is canceled).
1578  */
1579 bool
1580 dev_can_write(DEVICE *dev)
1581 {
1582    if (dev->is_open() &&  dev->can_append() &&
1583        dev->is_labeled()  && !(dev->state & ST_WEOT)) {
1584       return true;
1585    } else {
1586       return false;
1587    }
1588 }
1589
1590 /* Return the resource name for the device */
1591 const char *DEVICE::name() const
1592 {
1593    return device->hdr.name;
1594 }
1595
1596 char *
1597 dev_vol_name(DEVICE *dev)
1598 {
1599    return dev->VolCatInfo.VolCatName;
1600 }
1601
1602 uint32_t dev_block(DEVICE *dev)
1603 {
1604    update_pos_dev(dev);
1605    return dev->block_num;
1606 }
1607
1608 uint32_t dev_file(DEVICE *dev)
1609 {
1610    update_pos_dev(dev);
1611    return dev->file;
1612 }
1613
1614 /*
1615  * Free memory allocated for the device
1616  */
1617 void
1618 term_dev(DEVICE *dev)
1619 {
1620    if (!dev) {
1621       dev->dev_errno = EBADF;
1622       Mmsg0(&dev->errmsg, _("Bad call to term_dev. Archive not open\n"));
1623       Emsg0(M_FATAL, 0, dev->errmsg);
1624       return;
1625    }
1626    do_close(dev);
1627    Dmsg0(29, "term_dev\n");
1628    if (dev->dev_name) {
1629       free_memory(dev->dev_name);
1630       dev->dev_name = NULL;
1631    }
1632    if (dev->prt_name) {
1633       free_memory(dev->prt_name);
1634       dev->prt_name = NULL;
1635    }
1636    if (dev->errmsg) {
1637       free_pool_memory(dev->errmsg);
1638       dev->errmsg = NULL;
1639    }
1640    pthread_mutex_destroy(&dev->mutex);
1641    pthread_cond_destroy(&dev->wait);
1642    pthread_cond_destroy(&dev->wait_next_vol);
1643    pthread_mutex_destroy(&dev->spool_mutex);
1644    rwl_destroy(&dev->lock);
1645    if (dev->attached_dcrs) {
1646       delete dev->attached_dcrs;
1647       dev->attached_dcrs = NULL;
1648    }
1649    if (dev->state & ST_MALLOC) {
1650       free_pool_memory((POOLMEM *)dev);
1651    }
1652 }
1653
1654 /*
1655  * This routine initializes the device wait timers
1656  */
1657 void init_dev_wait_timers(DEVICE *dev)
1658 {
1659    /* ******FIXME******* put these on config variables */
1660    dev->min_wait = 60 * 60;
1661    dev->max_wait = 24 * 60 * 60;
1662    dev->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
1663    dev->wait_sec = dev->min_wait;
1664    dev->rem_wait_sec = dev->wait_sec;
1665    dev->num_wait = 0;
1666    dev->poll = false;
1667    dev->BadVolName[0] = 0;
1668 }
1669
1670 /*
1671  * Returns: true if time doubled
1672  *          false if max time expired
1673  */
1674 bool double_dev_wait_time(DEVICE *dev)
1675 {
1676    dev->wait_sec *= 2;               /* double wait time */
1677    if (dev->wait_sec > dev->max_wait) {   /* but not longer than maxtime */
1678       dev->wait_sec = dev->max_wait;
1679    }
1680    dev->num_wait++;
1681    dev->rem_wait_sec = dev->wait_sec;
1682    if (dev->num_wait >= dev->max_num_wait) {
1683       return false;
1684    }
1685    return true;
1686 }
1687
1688 void set_os_device_parameters(DEVICE *dev)
1689 {
1690 #ifdef HAVE_LINUX_OS
1691    struct mtop mt_com;
1692    if (dev->min_block_size == dev->max_block_size &&
1693        dev->min_block_size == 0) {    /* variable block mode */
1694       mt_com.mt_op = MTSETBLK;
1695       mt_com.mt_count = 0;
1696       if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
1697          clrerror_dev(dev, MTSETBLK);
1698       }
1699       mt_com.mt_op = MTSETDRVBUFFER;
1700       mt_com.mt_count = MT_ST_CLEARBOOLEANS;
1701       if (!dev_cap(dev, CAP_TWOEOF)) {
1702          mt_com.mt_count |= MT_ST_TWO_FM;
1703       }
1704       if (dev_cap(dev, CAP_EOM)) {
1705          mt_com.mt_count |= MT_ST_FAST_MTEOM;
1706       }
1707       if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
1708          clrerror_dev(dev, MTSETBLK);
1709       }
1710    }
1711    return;
1712 #endif
1713
1714 #ifdef HAVE_NETBSD_OS
1715    struct mtop mt_com;
1716    if (dev->min_block_size == dev->max_block_size &&
1717        dev->min_block_size == 0) {    /* variable block mode */
1718       mt_com.mt_op = MTSETBSIZ;
1719       mt_com.mt_count = 0;
1720       if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
1721          clrerror_dev(dev, MTSETBSIZ);
1722       }
1723       /* Get notified at logical end of tape */
1724       mt_com.mt_op = MTEWARN;
1725       mt_com.mt_count = 1;
1726       if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
1727          clrerror_dev(dev, MTEWARN);
1728       }
1729    }
1730    return;
1731 #endif
1732
1733 #if HAVE_FREEBSD_OS || HAVE_OPENBSD_OS
1734    struct mtop mt_com;
1735    if (dev->min_block_size == dev->max_block_size &&
1736        dev->min_block_size == 0) {    /* variable block mode */
1737       mt_com.mt_op = MTSETBSIZ;
1738       mt_com.mt_count = 0;
1739       if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
1740          clrerror_dev(dev, MTSETBSIZ);
1741       }
1742    }
1743    return;
1744 #endif
1745
1746 #ifdef HAVE_SUN_OS
1747    struct mtop mt_com;
1748    if (dev->min_block_size == dev->max_block_size &&
1749        dev->min_block_size == 0) {    /* variable block mode */
1750       mt_com.mt_op = MTSRSZ;
1751       mt_com.mt_count = 0;
1752       if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
1753          clrerror_dev(dev, MTSRSZ);
1754       }
1755    }
1756    return;
1757 #endif
1758 }
1759
1760 static bool dev_get_os_pos(DEVICE *dev, struct mtget *mt_stat)
1761 {
1762    return dev_cap(dev, CAP_MTIOCGET) && 
1763           ioctl(dev->fd, MTIOCGET, (char *)mt_stat) == 0 &&
1764           mt_stat->mt_fileno >= 0;
1765 }