]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
Correct usage of MTIOCLRERR ioctl for clearing persistant errors
[bacula/bacula] / bacula / src / stored / dev.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation plus additions
11    that are listed in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *
30  *   dev.c  -- low level operations on device (storage device)
31  *
32  *              Kern Sibbald, MM
33  *
34  *     NOTE!!!! None of these routines are reentrant. You must
35  *        use dev->r_dlock() and dev->unlock() at a higher level,
36  *        or use the xxx_device() equivalents.  By moving the
37  *        thread synchronization to a higher level, we permit
38  *        the higher level routines to "seize" the device and
39  *        to carry out operations without worrying about who
40  *        set what lock (i.e. race conditions).
41  *
42  *     Note, this is the device dependent code, and may have
43  *           to be modified for each system, but is meant to
44  *           be as "generic" as possible.
45  *
46  *     The purpose of this code is to develop a SIMPLE Storage
47  *     daemon. More complicated coding (double buffering, writer
48  *     thread, ...) is left for a later version.
49  *
50  *     Unfortunately, I have had to add more and more complication
51  *     to this code. This was not foreseen as noted above, and as
52  *     a consequence has lead to something more contorted than is
53  *     really necessary -- KES.  Note, this contortion has been
54  *     corrected to a large extent by a rewrite (Apr MMI).
55  *
56  *   Version $Id$
57  */
58
59 /*
60  * Handling I/O errors and end of tape conditions are a bit tricky.
61  * This is how it is currently done when writting.
62  * On either an I/O error or end of tape,
63  * we will stop writing on the physical device (no I/O recovery is
64  * attempted at least in this daemon). The state flag will be sent
65  * to include ST_EOT, which is ephemeral, and ST_WEOT, which is
66  * persistent. Lots of routines clear ST_EOT, but ST_WEOT is
67  * cleared only when the problem goes away.  Now when ST_WEOT
68  * is set all calls to write_block_to_device() call the fix_up
69  * routine. In addition, all threads are blocked
70  * from writing on the tape by calling lock_dev(), and thread other
71  * than the first thread to hit the EOT will block on a condition
72  * variable. The first thread to hit the EOT will continue to
73  * be able to read and write the tape (he sort of tunnels through
74  * the locking mechanism -- see lock_dev() for details).
75  *
76  * Now presumably somewhere higher in the chain of command
77  * (device.c), someone will notice the EOT condition and
78  * get a new tape up, get the tape label read, and mark
79  * the label for rewriting. Then this higher level routine
80  * will write the unwritten buffer to the new volume.
81  * Finally, he will release
82  * any blocked threads by doing a broadcast on the condition
83  * variable.  At that point, we should be totally back in
84  * business with no lost data.
85  */
86
87
88 #include "bacula.h"
89 #include "stored.h"
90
91 #ifndef O_NONBLOCK 
92 #define O_NONBLOCK 0
93 #endif
94
95 /* Forward referenced functions */
96 void set_os_device_parameters(DCR *dcr);   
97 static bool dev_get_os_pos(DEVICE *dev, struct mtget *mt_stat);
98 static char *mode_to_str(int mode);
99
100 /*
101  * Allocate and initialize the DEVICE structure
102  * Note, if dev is non-NULL, it is already allocated,
103  * thus we neither allocate it nor free it. This allows
104  * the caller to put the packet in shared memory.
105  *
106  *  Note, for a tape, the device->device_name is the device name
107  *     (e.g. /dev/nst0), and for a file, the device name
108  *     is the directory in which the file will be placed.
109  *
110  */
111 DEVICE *
112 init_dev(JCR *jcr, DEVRES *device)
113 {
114    struct stat statp;
115    int errstat;
116    DCR *dcr = NULL;
117    DEVICE *dev;
118
119
120    /* If no device type specified, try to guess */
121    if (!device->dev_type) {
122       /* Check that device is available */
123       if (stat(device->device_name, &statp) < 0) {
124          berrno be;
125          Jmsg2(jcr, M_ERROR, 0, _("Unable to stat device %s: ERR=%s\n"), 
126             device->device_name, be.strerror());
127          return NULL;
128       }
129       if (S_ISDIR(statp.st_mode)) {
130          device->dev_type = B_FILE_DEV;
131       } else if (S_ISCHR(statp.st_mode)) {
132          device->dev_type = B_TAPE_DEV;
133       } else if (S_ISFIFO(statp.st_mode)) {
134          device->dev_type = B_FIFO_DEV;
135       } else if (!(device->cap_bits & CAP_REQMOUNT)) {
136          Jmsg2(jcr, M_ERROR, 0, _("%s is an unknown device type. Must be tape or directory\n"
137                " or have RequiresMount=yes for DVD. st_mode=%x\n"),
138             device->device_name, statp.st_mode);
139          return NULL;
140       } else {
141          device->dev_type = B_DVD_DEV;
142       }
143    }
144
145    dev = (DEVICE *)malloc(sizeof(DEVICE));
146    memset(dev, 0, sizeof(DEVICE));
147    dev->Slot = -1;       /* unknown */
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    Dmsg1(400, "Allocate dev=%s\n", dev->print_name());
156    dev->capabilities = device->cap_bits;
157    dev->min_block_size = device->min_block_size;
158    dev->max_block_size = device->max_block_size;
159    dev->max_volume_size = device->max_volume_size;
160    dev->max_file_size = device->max_file_size;
161    dev->volume_capacity = device->volume_capacity;
162    dev->max_rewind_wait = device->max_rewind_wait;
163    dev->max_open_wait = device->max_open_wait;
164    dev->max_open_vols = device->max_open_vols;
165    dev->vol_poll_interval = device->vol_poll_interval;
166    dev->max_spool_size = device->max_spool_size;
167    dev->drive_index = device->drive_index;
168    dev->autoselect = device->autoselect;
169    dev->dev_type = device->dev_type;
170    if (dev->is_tape()) { /* No parts on tapes */
171       dev->max_part_size = 0;
172    } else {
173       dev->max_part_size = device->max_part_size;
174    }
175    /* Sanity check */
176    if (dev->vol_poll_interval && dev->vol_poll_interval < 60) {
177       dev->vol_poll_interval = 60;
178    }
179    /* Link the dev and device structures together */
180    dev->device = device;
181    device->dev = dev;
182
183    if (dev->is_fifo()) {
184       dev->capabilities |= CAP_STREAM; /* set stream device */
185    }
186
187    /* If the device requires mount :
188     * - Check that the mount point is available 
189     * - Check that (un)mount commands are defined
190     */
191    if ((dev->is_file() || dev->is_dvd()) && dev->requires_mount()) {
192       if (!device->mount_point || stat(device->mount_point, &statp) < 0) {
193          berrno be;
194          dev->dev_errno = errno;
195          Jmsg2(jcr, M_ERROR_TERM, 0, _("Unable to stat mount point %s: ERR=%s\n"), 
196             device->mount_point, be.strerror());
197       }
198    }
199    if (dev->is_dvd()) {
200       if (!device->mount_command || !device->unmount_command) {
201          Jmsg0(jcr, M_ERROR_TERM, 0, _("Mount and unmount commands must defined for a device which requires mount.\n"));
202       }
203       if (!device->write_part_command) {
204          Jmsg0(jcr, M_ERROR_TERM, 0, _("Write part command must be defined for a device which requires mount.\n"));
205       }
206    }
207
208    if (dev->max_block_size > 1000000) {
209       Jmsg3(jcr, M_ERROR, 0, _("Block size %u on device %s is too large, using default %u\n"),
210          dev->max_block_size, dev->print_name(), DEFAULT_BLOCK_SIZE);
211       dev->max_block_size = 0;
212    }
213    if (dev->max_block_size % TAPE_BSIZE != 0) {
214       Jmsg2(jcr, M_WARNING, 0, _("Max block size %u not multiple of device %s block size.\n"),
215          dev->max_block_size, dev->print_name());
216    }
217
218    dev->errmsg = get_pool_memory(PM_EMSG);
219    *dev->errmsg = 0;
220
221    if ((errstat = pthread_mutex_init(&dev->m_mutex, NULL)) != 0) {
222       berrno be;
223       dev->dev_errno = errstat;
224       Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.strerror(errstat));
225       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
226    }
227    if ((errstat = pthread_cond_init(&dev->wait, NULL)) != 0) {
228       berrno be;
229       dev->dev_errno = errstat;
230       Mmsg1(dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), be.strerror(errstat));
231       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
232    }
233    if ((errstat = pthread_cond_init(&dev->wait_next_vol, NULL)) != 0) {
234       berrno be;
235       dev->dev_errno = errstat;
236       Mmsg1(dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), be.strerror(errstat));
237       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
238    }
239    if ((errstat = pthread_mutex_init(&dev->spool_mutex, NULL)) != 0) {
240       berrno be;
241       dev->dev_errno = errstat;
242       Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.strerror(errstat));
243       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
244    }
245 #ifdef xxx
246    if ((errstat = rwl_init(&dev->lock)) != 0) {
247       berrno be;
248       dev->dev_errno = errstat;
249       Mmsg1(dev->errmsg, _("Unable to init mutex: ERR=%s\n"), be.strerror(errstat));
250       Jmsg0(jcr, M_ERROR_TERM, 0, dev->errmsg);
251    }
252 #endif
253
254    dev->clear_opened();
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_name);
257    dev->initiated = true;
258    
259    return dev;
260 }
261
262 /*
263  * Open the device with the operating system and
264  * initialize buffer pointers.
265  *
266  * Returns:  -1  on error
267  *           fd  on success
268  *
269  * Note, for a tape, the VolName is the name we give to the
270  *    volume (not really used here), but for a file, the
271  *    VolName represents the name of the file to be created/opened.
272  *    In the case of a file, the full name is the device name
273  *    (archive_name) with the VolName concatenated.
274  */
275 int
276 DEVICE::open(DCR *dcr, int omode)
277 {
278    int preserve = 0;
279    if (is_open()) {
280       if (openmode == omode) {
281          return m_fd;
282       } else {
283          if (is_tape()) {
284             tape_close(m_fd);
285          } else {
286             ::close(m_fd);
287          }
288          clear_opened();
289          Dmsg0(100, "Close fd for mode change.\n");
290          preserve = state & (ST_LABEL|ST_APPEND|ST_READ);
291       }
292    }
293    if (dcr) {
294       bstrncpy(VolCatInfo.VolCatName, dcr->VolumeName, sizeof(VolCatInfo.VolCatName));
295    }
296
297    Dmsg4(29, "open dev: type=%d dev_name=%s vol=%s mode=%s\n", dev_type,
298          print_name(), VolCatInfo.VolCatName, mode_to_str(omode));
299    state &= ~(ST_LABEL|ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
300    Slot = -1;          /* unknown slot */
301    label_type = B_BACULA_LABEL;
302    if (is_tape() || is_fifo()) {
303       open_tape_device(dcr, omode);
304    } else if (is_dvd()) {
305       Dmsg1(100, "call open_dvd_device mode=%s\n", mode_to_str(omode));
306       open_dvd_device(dcr, omode);
307    } else {
308       Dmsg1(100, "call open_file_device mode=%s\n", mode_to_str(omode));
309       open_file_device(dcr, omode);
310    }
311    state |= preserve;                 /* reset any important state info */
312    Dmsg2(100, "preserve=0x%x fd=%d\n", preserve, m_fd);
313    return m_fd;
314 }
315
316 void DEVICE::set_mode(int new_mode) 
317 {
318    switch (new_mode) {
319    case CREATE_READ_WRITE:
320       mode = O_CREAT | O_RDWR | O_BINARY;
321       break;
322    case OPEN_READ_WRITE:
323       mode = O_RDWR | O_BINARY;
324       break;
325    case OPEN_READ_ONLY:
326       mode = O_RDONLY | O_BINARY;
327       break;
328    case OPEN_WRITE_ONLY:
329       mode = O_WRONLY | O_BINARY;
330       break;
331    default:
332       Emsg0(M_ABORT, 0, _("Illegal mode given to open dev.\n"));
333    }
334 }
335
336 /*
337  */
338 void DEVICE::open_tape_device(DCR *dcr, int omode) 
339 {
340    file_size = 0;
341    int timeout = max_open_wait;
342 #if !defined(HAVE_WIN32)
343    struct mtop mt_com;
344    utime_t start_time = time(NULL);
345 #endif
346
347
348    Dmsg0(29, "Open dev: device is tape\n");
349
350    get_autochanger_loaded_slot(dcr);
351
352    openmode = omode;
353    set_mode(omode);
354
355    if (timeout < 1) {
356       timeout = 1;
357    }
358    errno = 0;
359    if (is_fifo() && timeout) {
360       /* Set open timer */
361       tid = start_thread_timer(pthread_self(), timeout);
362    }
363    Dmsg2(100, "Try open %s mode=%s\n", print_name(), mode_to_str(omode));
364 #if defined(HAVE_WIN32)
365
366    /*   Windows Code */
367    if ((m_fd = tape_open(dev_name, mode)) < 0) {
368       dev_errno = errno;
369    }
370
371 #else
372
373    /*  UNIX  Code */
374    /* If busy retry each second for max_open_wait seconds */
375    for ( ;; ) {
376       /* Try non-blocking open */
377       m_fd = ::open(dev_name, mode+O_NONBLOCK);
378       if (m_fd < 0) {
379          berrno be;
380          dev_errno = errno;
381          Dmsg5(050, "Open error on %s omode=%d mode=%x errno=%d: ERR=%s\n", 
382               print_name(), omode, mode, errno, be.strerror());
383       } else {
384          /* Tape open, now rewind it */
385          Dmsg0(050, "Rewind after open\n");
386          mt_com.mt_op = MTREW;
387          mt_com.mt_count = 1;
388          /* rewind only if dev is a tape */
389          if (is_tape() && (ioctl(m_fd, MTIOCTOP, (char *)&mt_com) < 0)) {
390             berrno be;
391             dev_errno = errno;           /* set error status from rewind */
392             ::close(m_fd);
393             clear_opened();
394             Dmsg2(100, "Rewind error on %s close: ERR=%s\n", print_name(),
395                   be.strerror(dev_errno));
396             /* If we get busy, device is probably rewinding, try again */
397             if (dev_errno != EBUSY) {
398                break;                    /* error -- no medium */
399             }
400          } else {
401             /* Got fd and rewind worked, so we must have medium in drive */
402             ::close(m_fd);
403             m_fd = ::open(dev_name, mode);  /* open normally */
404             if (m_fd < 0) {
405                berrno be;
406                dev_errno = errno;
407                Dmsg5(050, "Open error on %s omode=%d mode=%x errno=%d: ERR=%s\n", 
408                      print_name(), omode, mode, errno, be.strerror());
409                break;
410             }
411             dev_errno = 0;
412             lock_door();
413             set_os_device_parameters(dcr);       /* do system dependent stuff */
414             break;                               /* Successfully opened and rewound */
415          }
416       }
417       bmicrosleep(5, 0);
418       /* Exceed wait time ? */
419       if (time(NULL) - start_time >= max_open_wait) {
420          break;                       /* yes, get out */
421       }
422    }
423 #endif
424
425    if (!is_open()) {
426       berrno be;
427       Mmsg2(errmsg, _("Unable to open device %s: ERR=%s\n"),
428             print_name(), be.strerror(dev_errno));
429       Dmsg1(100, "%s", errmsg);
430    }
431
432    /* Stop any open() timer we started */
433    if (tid) {
434       stop_thread_timer(tid);
435       tid = 0;
436    }
437    Dmsg1(29, "open dev: tape %d opened\n", m_fd);
438 }
439
440
441 /*
442  * Open a file device
443  */
444 void DEVICE::open_file_device(DCR *dcr, int omode) 
445 {
446    POOL_MEM archive_name(PM_FNAME);
447
448    get_autochanger_loaded_slot(dcr);
449
450    /*
451     * Handle opening of File Archive (not a tape)
452     */     
453
454    pm_strcpy(archive_name, dev_name);
455    /*  
456     * If this is a virtual autochanger (i.e. changer_res != NULL)
457     *  we simply use the device name, assuming it has been
458     *  appropriately setup by the "autochanger".
459     */
460    if (!device->changer_res || device->changer_command[0] == 0) {
461       if (VolCatInfo.VolCatName[0] == 0) {
462          Mmsg(errmsg, _("Could not open file device %s. No Volume name given.\n"),
463             print_name());
464          clear_opened();
465          return;
466       }
467
468       if (!IsPathSeparator(archive_name.c_str()[strlen(archive_name.c_str())-1])) {
469          pm_strcat(archive_name, "/");
470       }
471       pm_strcat(archive_name, VolCatInfo.VolCatName);
472    }
473
474    mount(1);                          /* do mount if required */
475          
476    openmode = omode;
477    set_mode(omode);
478    /* If creating file, give 0640 permissions */
479    Dmsg3(29, "open disk: mode=%s open(%s, 0x%x, 0640)\n", mode_to_str(omode), 
480          archive_name.c_str(), mode);
481    /* Use system open() */
482    if ((m_fd = ::open(archive_name.c_str(), mode, 0640)) < 0) {
483       berrno be;
484       dev_errno = errno;
485       Mmsg2(errmsg, _("Could not open: %s, ERR=%s\n"), archive_name.c_str(), 
486             be.strerror());
487       Dmsg1(29, "open failed: %s", errmsg);
488       Emsg0(M_FATAL, 0, errmsg);
489    } else {
490       dev_errno = 0;
491       file = 0;
492       file_addr = 0;
493    }
494    Dmsg4(29, "open dev: disk fd=%d opened, part=%d/%d, part_size=%u\n", 
495       m_fd, part, num_dvd_parts, part_size);
496 }
497
498 /*
499  * Open a DVD device. N.B. at this point, dcr->VolCatInfo.VolCatName 
500  *  (NB:??? I think it's VolCatInfo.VolCatName that is right)
501  *  has the desired Volume name, but there is NO assurance that
502  *  any other field of VolCatInfo is correct.
503  */
504 void DEVICE::open_dvd_device(DCR *dcr, int omode) 
505 {
506    POOL_MEM archive_name(PM_FNAME);
507    struct stat filestat;
508
509    /*
510     * Handle opening of DVD Volume
511     */     
512    Dmsg2(29, "Enter: open_dvd_dev: DVD vol=%s mode=%s\n", 
513          &dcr->VolCatInfo, mode_to_str(omode));
514
515    /*
516     * For a DVD we must always pull the state info from dcr->VolCatInfo
517     *  This is a bit ugly, but is necessary because we need to open/close/re-open
518     *  the dvd file in order to properly mount/unmount and access the
519     *  DVD. So we store the state of the DVD as far as is known in the 
520     *  catalog in dcr->VolCatInfo, and thus we refresh the dev->VolCatInfo
521     *  copy here, when opening.
522     */
523    VolCatInfo = dcr->VolCatInfo;         /* structure assignment */
524    Dmsg1(100, "Volume=%s\n", VolCatInfo.VolCatName);
525
526    if (VolCatInfo.VolCatName[0] == 0) {
527       Dmsg1(10,  "Could not open DVD device %s. No Volume name given.\n",
528          print_name());
529       Mmsg(errmsg, _("Could not open DVD device %s. No Volume name given.\n"),
530          print_name());
531       clear_opened();
532       return;
533    }
534
535    if (part == 0) {
536       Dmsg0(100, "Set part=1\n");
537       part = 1;                       /* count from 1 */
538       file_size = 0;
539    }
540    part_size = 0;
541    if (num_dvd_parts != VolCatInfo.VolCatParts) {
542       num_dvd_parts = VolCatInfo.VolCatParts;
543    }
544
545    /*
546     * If we are not trying to access the last part, set mode to 
547     *   OPEN_READ_ONLY as writing would be an error.
548     */
549    Dmsg2(29, "open DVD part=%d num_dvd_parts=%d\n", part, num_dvd_parts);
550    /* Now find the name of the part that we want to access */
551    if (part <= num_dvd_parts) {
552       omode = OPEN_READ_ONLY;
553       make_mounted_dvd_filename(this, archive_name);
554       set_part_spooled(false);
555    } else {
556       omode = OPEN_READ_WRITE;
557       make_spooled_dvd_filename(this, archive_name);
558       set_part_spooled(true);
559    }
560    set_mode(omode);
561
562    // Clear any previous blank_dvd status - we will recalculate it here
563    blank_dvd = false;
564
565    Dmsg3(99, "open_dvd_device: part=%d num_dvd_parts=%d, VolCatInfo.VolCatParts=%d\n",
566       part, num_dvd_parts, dcr->VolCatInfo.VolCatParts);
567      
568    if (mount(1)) {
569       Dmsg0(99, "DVD device mounted.\n");
570       if (num_dvd_parts == 0 && !truncating) {
571          /*
572           * If we can mount the device, and we are not truncating the DVD, 
573           * we usually want to abort. There is one exception, if there is 
574           * only one 0-sized file on the DVD, with the right volume name,
575           * we continue (it's the method used by truncate_dvd to truncate a volume).   
576           */
577          if (!check_can_write_on_non_blank_dvd(dcr)) {
578             Mmsg(errmsg, _("The DVD in device %s contains data, please blank it before writing.\n"), print_name());
579             Emsg0(M_FATAL, 0, errmsg);
580             unmount(1); /* Unmount the device, so the operator can change it. */
581             clear_opened();
582             return;
583          }
584          blank_dvd = true;
585       } else {
586          /*
587           * Ensure that we have the correct DVD loaded by looking for part1.
588           * We only succeed the open if it exists. Failure to do this could
589           * leave us trying to add a part to a different DVD!
590           */
591          uint32_t oldpart = part;
592          struct stat statp;
593          POOL_MEM part1_name(PM_FNAME);
594          part = 1;
595          make_mounted_dvd_filename(this, part1_name);
596          part = oldpart;
597          if (stat(part1_name.c_str(), &statp) < 0) {
598             berrno be;
599             Mmsg(errmsg, _("Unable to stat DVD part 1 file %s: ERR=%s\n"),
600                part1_name.c_str(), be.strerror());
601             Emsg0(M_FATAL, 0, errmsg);
602             clear_opened();
603             return;
604          }
605          if (!S_ISREG(statp.st_mode)) {
606             /* It is not a regular file */
607             Mmsg(errmsg, _("DVD part 1 is not a regular file %s.\n"),
608                part1_name.c_str());
609             Emsg0(M_FATAL, 0, errmsg);
610             clear_opened();
611             return;
612          }
613       }
614    } else {
615       Dmsg0(99, "DVD device mount failed.\n");
616       /* We cannot mount the device */
617       if (num_dvd_parts == 0) {
618          /* Run free space, check there is a media. */
619          if (!update_freespace()) {
620             Emsg0(M_FATAL, 0, errmsg);
621             clear_opened();
622             return;
623          }
624          if (have_media()) {
625             Dmsg1(29, "Could not mount device %s, this is not a problem (num_dvd_parts == 0), and have media.\n", print_name());
626          } else {
627             Mmsg(errmsg, _("There is no valid DVD in device %s.\n"), print_name());
628             Emsg0(M_FATAL, 0, errmsg);
629             clear_opened();
630             return;
631          }
632       }  else {
633          Mmsg(errmsg, _("Could not mount DVD device %s.\n"), print_name());
634          Emsg0(M_FATAL, 0, errmsg);
635          clear_opened();
636          return;
637       }
638    }
639    
640    Dmsg5(29, "open dev: DVD dev=%s mode=%s part=%d npart=%d volcatnparts=%d\n", 
641       archive_name.c_str(), mode_to_str(omode),
642       part, num_dvd_parts, dcr->VolCatInfo.VolCatParts);
643    openmode = omode;
644    Dmsg2(100, "openmode=%d %s\n", openmode, mode_to_str(openmode));
645    
646
647    /* If creating file, give 0640 permissions */
648    Dmsg3(29, "mode=%s open(%s, 0x%x, 0640)\n", mode_to_str(omode), 
649          archive_name.c_str(), mode);
650    /* Use system open() */
651    if ((m_fd = ::open(archive_name.c_str(), mode, 0640)) < 0) {
652       berrno be;
653       Mmsg2(errmsg, _("Could not open: %s, ERR=%s\n"), archive_name.c_str(), 
654             be.strerror());
655       // Should this be set if we try the create/open below
656       dev_errno = EIO; /* Interpreted as no device present by acquire.c:acquire_device_for_read(). */
657       Dmsg1(29, "open failed: %s", errmsg);
658       
659       /* Previous open failed. See if we can recover */
660       if ((omode == OPEN_READ_ONLY || omode == OPEN_READ_WRITE) &&
661           (part > num_dvd_parts)) {
662          /* If the last part (on spool), doesn't exist when accessing,
663           * create it. In read/write mode a write will be allowed (higher
664           * level software thinks that we are extending a pre-existing
665           * media. Reads for READ_ONLY will report immediately an EOF 
666           * Sometimes it is better to finish with an EOF than with an error. */
667          Dmsg1(29, "Creating last part on spool: %s\n", archive_name.c_str());
668          omode = CREATE_READ_WRITE;
669          set_mode(CREATE_READ_WRITE);
670          m_fd = ::open(archive_name.c_str(), mode, 0640);
671          set_mode(omode);
672       }
673    }
674    Dmsg1(100, "after open fd=%d\n", m_fd);
675    if (is_open()) {
676       if (omode == OPEN_READ_WRITE || omode == CREATE_READ_WRITE) {
677          set_append();
678       }
679       /* Get size of file */
680       if (fstat(m_fd, &filestat) < 0) {
681          berrno be;
682          dev_errno = errno;
683          Mmsg2(errmsg, _("Could not fstat: %s, ERR=%s\n"), archive_name.c_str(), 
684                be.strerror());
685          Dmsg1(29, "open failed: %s", errmsg);
686          /* Use system close() */
687          ::close(m_fd);
688          clear_opened();
689       } else {
690          part_size = filestat.st_size;
691          dev_errno = 0;
692          update_pos(dcr);                    /* update position */
693       }
694    }
695 }
696
697
698 /*
699  * Rewind the device.
700  *  Returns: true  on success
701  *           false on failure
702  */
703 bool DEVICE::rewind(DCR *dcr)
704 {
705    struct mtop mt_com;
706    unsigned int i;
707    bool first = true;
708
709    Dmsg3(400, "rewind res=%d fd=%d %s\n", reserved_device, m_fd, print_name());
710    state &= ~(ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
711    block_num = file = 0;
712    file_size = 0;
713    file_addr = 0;
714    if (m_fd < 0) {
715       if (!is_dvd()) { /* In case of major error, the fd is not open on DVD, so we don't want to abort. */
716          dev_errno = EBADF;
717          Mmsg1(errmsg, _("Bad call to rewind. Device %s not open\n"),
718             print_name());
719          Emsg0(M_ABORT, 0, errmsg);
720       }
721       return false;
722    }
723    if (is_tape()) {
724       mt_com.mt_op = MTREW;
725       mt_com.mt_count = 1;
726       /* If we get an I/O error on rewind, it is probably because
727        * the drive is actually busy. We loop for (about 5 minutes)
728        * retrying every 5 seconds.
729        */
730       for (i=max_rewind_wait; ; i -= 5) {
731          if (tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com) < 0) {
732             berrno be;
733             clrerror(MTREW);
734             if (i == max_rewind_wait) {
735                Dmsg1(200, "Rewind error, %s. retrying ...\n", be.strerror());
736             }
737             /*
738              * This is a gross hack, because if the user has the
739              *   device mounted (i.e. open), then uses mtx to load
740              *   a tape, the current open file descriptor is invalid.
741              *   So, we close the drive and re-open it.
742              */
743             if (first && dcr) {
744                int open_mode = openmode;
745                tape_close(m_fd);
746                clear_opened();
747                open(dcr, open_mode);
748                if (m_fd < 0) {
749                   return false;
750                }
751                first = false;
752                continue;
753             }
754 #ifdef HAVE_SUN_OS
755             if (dev_errno == EIO) {         
756                Mmsg1(errmsg, _("No tape loaded or drive offline on %s.\n"), print_name());
757                return false;
758             }
759 #else
760             if (dev_errno == EIO && i > 0) {
761                Dmsg0(200, "Sleeping 5 seconds.\n");
762                bmicrosleep(5, 0);
763                continue;
764             }
765 #endif
766             Mmsg2(errmsg, _("Rewind error on %s. ERR=%s.\n"),
767                print_name(), be.strerror());
768             return false;
769          }
770          break;
771       }
772    } else if (is_file() || is_dvd()) {
773       if (lseek(dcr, (boffset_t)0, SEEK_SET) < 0) {
774          berrno be;
775          dev_errno = errno;
776          Mmsg2(errmsg, _("lseek error on %s. ERR=%s.\n"),
777             print_name(), be.strerror());
778          return false;
779       }
780    }
781    return true;
782 }
783
784 void DEVICE::block(int why)
785 {
786    r_dlock();              /* need recursive lock to block */
787    block_device(this, why);
788    r_dunlock();
789 }
790
791 void DEVICE::unblock(bool locked)
792 {
793    if (!locked) {
794       dlock();
795    }
796    unblock_device(this);
797    dunlock();
798 }
799
800
801 const char *DEVICE::print_blocked() const 
802 {
803    switch (m_blocked) {
804    case BST_NOT_BLOCKED:
805       return "BST_NOT_BLOCKED";
806    case BST_UNMOUNTED:
807       return "BST_UNMOUNTED";
808    case BST_WAITING_FOR_SYSOP:
809       return "BST_WAITING_FOR_SYSOP";
810    case BST_DOING_ACQUIRE:
811       return "BST_DOING_ACQUIRE";
812    case BST_WRITING_LABEL:
813       return "BST_WRITING_LABEL";
814    case BST_UNMOUNTED_WAITING_FOR_SYSOP:
815       return "BST_UNMOUNTED_WAITING_FOR_SYSOP";
816    case BST_MOUNT:
817       return "BST_MOUNT";
818    default:
819       return _("unknown blocked code");
820    }
821 }
822
823 /*
824  * Called to indicate that we have just read an
825  *  EOF from the device.
826  */
827 void DEVICE::set_ateof() 
828
829    set_eof();
830    if (is_tape()) {
831       file++;
832    }
833    file_addr = 0;
834    file_size = 0;
835    block_num = 0;
836 }
837
838 /*
839  * Called to indicate we are now at the end of the tape, and
840  *   writing is not possible.
841  */
842 void DEVICE::set_ateot() 
843 {
844    /* Make tape effectively read-only */
845    state |= (ST_EOF|ST_EOT|ST_WEOT);
846    clear_append();
847 }
848
849 /*
850  * Position device to end of medium (end of data)
851  *  Returns: true  on succes
852  *           false on error
853  */
854 bool DEVICE::eod(DCR *dcr)
855 {
856    struct mtop mt_com;
857    bool ok = true;
858    boffset_t pos;
859    int32_t os_file;
860
861    if (m_fd < 0) {
862       dev_errno = EBADF;
863       Mmsg1(errmsg, _("Bad call to eod. Device %s not open\n"), print_name());
864       return false;
865    }
866
867 #if defined (__digital__) && defined (__unix__)
868    return fsf(VolCatInfo.VolCatFiles);
869 #endif
870
871    Dmsg0(29, "eod\n");
872    if (at_eot()) {
873       return true;
874    }
875    clear_eof();         /* remove EOF flag */
876    block_num = file = 0;
877    file_size = 0;
878    file_addr = 0;
879    if (is_fifo() || is_prog()) {
880       return true;
881    }
882    if (!is_tape()) {
883       pos = lseek(dcr, (boffset_t)0, SEEK_END);
884 //    Dmsg1(100, "====== Seek to %lld\n", pos);
885       if (pos >= 0) {
886          update_pos(dcr);
887          set_eot();
888          return true;
889       }
890       dev_errno = errno;
891       berrno be;
892       Mmsg2(errmsg, _("lseek error on %s. ERR=%s.\n"),
893              print_name(), be.strerror());
894       return false;
895    }
896 #ifdef MTEOM
897    if (has_cap(CAP_FASTFSF) && !has_cap(CAP_EOM)) {
898       Dmsg0(100,"Using FAST FSF for EOM\n");
899       /* If unknown position, rewind */
900       if (get_os_tape_file() < 0) {
901         if (!rewind(NULL)) {
902           return false;
903         }
904       }
905       mt_com.mt_op = MTFSF;
906       /*
907        * ***FIXME*** fix code to handle case that INT16_MAX is
908        *   not large enough.
909        */
910       mt_com.mt_count = INT16_MAX;    /* use big positive number */
911       if (mt_com.mt_count < 0) {
912          mt_com.mt_count = INT16_MAX; /* brain damaged system */
913       }
914    }
915
916    if (has_cap(CAP_MTIOCGET) && (has_cap(CAP_FASTFSF) || has_cap(CAP_EOM))) {
917       if (has_cap(CAP_EOM)) {
918          Dmsg0(100,"Using EOM for EOM\n");
919          mt_com.mt_op = MTEOM;
920          mt_com.mt_count = 1;
921       }
922
923       if (tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com) < 0) {
924          berrno be;
925          clrerror(mt_com.mt_op);
926          Dmsg1(50, "ioctl error: %s\n", be.strerror());
927          update_pos(dcr);
928          Mmsg2(errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
929             print_name(), be.strerror());
930          return false;
931       }
932
933       os_file = get_os_tape_file();
934       if (os_file < 0) {
935          berrno be;
936          clrerror(-1);
937          Mmsg2(errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
938             print_name(), be.strerror());
939          return false;
940       }
941       Dmsg1(100, "EOD file=%d\n", os_file);
942       set_ateof();
943       file = os_file;
944    } else {
945 #else
946    {
947 #endif
948       /*
949        * Rewind then use FSF until EOT reached
950        */
951       if (!rewind(NULL)) {
952          return false;
953       }
954       /*
955        * Move file by file to the end of the tape
956        */
957       int file_num;
958       for (file_num=file; !at_eot(); file_num++) {
959          Dmsg0(200, "eod: doing fsf 1\n");
960          if (!fsf(1)) {
961             Dmsg0(200, "fsf error.\n");
962             return false;
963          }
964          /*
965           * Avoid infinite loop by ensuring we advance.
966           */
967          if (!at_eot() && file_num == (int)file) {
968             Dmsg1(100, "fsf did not advance from file %d\n", file_num);
969             set_ateof();
970             os_file = get_os_tape_file();
971             if (os_file >= 0) {
972                Dmsg2(100, "Adjust file from %d to %d\n", file_num, os_file);
973                file = os_file;
974             }       
975             break;
976          }
977       }
978    }
979    /*
980     * Some drivers leave us after second EOF when doing
981     * MTEOM, so we must backup so that appending overwrites
982     * the second EOF.
983     */
984    if (has_cap(CAP_BSFATEOM)) {
985       /* Backup over EOF */
986       ok = bsf(1);
987       /* If BSF worked and fileno is known (not -1), set file */
988       os_file = get_os_tape_file();
989       if (os_file >= 0) {
990          Dmsg2(100, "BSFATEOF adjust file from %d to %d\n", file , os_file);
991          file = os_file;
992       } else {
993          file++;                       /* wing it -- not correct on all OSes */
994       }
995    } else {
996       update_pos(dcr);                 /* update position */
997    }
998    Dmsg1(200, "EOD dev->file=%d\n", file);
999    return ok;
1000 }
1001
1002 /*
1003  * Set the position of the device -- only for files and DVD
1004  *   For other devices, there is no generic way to do it.
1005  *  Returns: true  on succes
1006  *           false on error
1007  */
1008 bool DEVICE::update_pos(DCR *dcr)
1009 {
1010    boffset_t pos;
1011    bool ok = true;
1012
1013    if (!is_open()) {
1014       dev_errno = EBADF;
1015       Mmsg0(errmsg, _("Bad device call. Device not open\n"));
1016       Emsg1(M_FATAL, 0, "%s", errmsg);
1017       return false;
1018    }
1019
1020    /* Find out where we are */
1021    if (is_file() || is_dvd()) {
1022       file = 0;
1023       file_addr = 0;
1024       pos = lseek(dcr, (boffset_t)0, SEEK_CUR);
1025       if (pos < 0) {
1026          berrno be;
1027          dev_errno = errno;
1028          Pmsg1(000, _("Seek error: ERR=%s\n"), be.strerror());
1029          Mmsg2(errmsg, _("lseek error on %s. ERR=%s.\n"),
1030             print_name(), be.strerror());
1031          ok = false;
1032       } else {
1033          file_addr = pos;
1034          block_num = (uint32_t)pos;
1035          file = (uint32_t)(pos >> 32);
1036       }
1037    }
1038    return ok;
1039 }
1040
1041 /*
1042  * Return the status of the device.  This was meant
1043  * to be a generic routine. Unfortunately, it doesn't
1044  * seem possible (at least I do not know how to do it
1045  * currently), which means that for the moment, this
1046  * routine has very little value.
1047  *
1048  *   Returns: status
1049  */
1050 uint32_t status_dev(DEVICE *dev)
1051 {
1052    struct mtget mt_stat;
1053    uint32_t stat = 0;
1054
1055    if (dev->state & (ST_EOT | ST_WEOT)) {
1056       stat |= BMT_EOD;
1057       Pmsg0(-20, " EOD");
1058    }
1059    if (dev->state & ST_EOF) {
1060       stat |= BMT_EOF;
1061       Pmsg0(-20, " EOF");
1062    }
1063    if (dev->is_tape()) {
1064       stat |= BMT_TAPE;
1065       Pmsg0(-20,_(" Bacula status:"));
1066       Pmsg2(-20,_(" file=%d block=%d\n"), dev->file, dev->block_num);
1067       if (tape_ioctl(dev->fd(), MTIOCGET, (char *)&mt_stat) < 0) {
1068          berrno be;
1069          dev->dev_errno = errno;
1070          Mmsg2(dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
1071             dev->print_name(), be.strerror());
1072          return 0;
1073       }
1074       Pmsg0(-20, _(" Device status:"));
1075
1076 #if defined(HAVE_LINUX_OS)
1077       if (GMT_EOF(mt_stat.mt_gstat)) {
1078          stat |= BMT_EOF;
1079          Pmsg0(-20, " EOF");
1080       }
1081       if (GMT_BOT(mt_stat.mt_gstat)) {
1082          stat |= BMT_BOT;
1083          Pmsg0(-20, " BOT");
1084       }
1085       if (GMT_EOT(mt_stat.mt_gstat)) {
1086          stat |= BMT_EOT;
1087          Pmsg0(-20, " EOT");
1088       }
1089       if (GMT_SM(mt_stat.mt_gstat)) {
1090          stat |= BMT_SM;
1091          Pmsg0(-20, " SM");
1092       }
1093       if (GMT_EOD(mt_stat.mt_gstat)) {
1094          stat |= BMT_EOD;
1095          Pmsg0(-20, " EOD");
1096       }
1097       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
1098          stat |= BMT_WR_PROT;
1099          Pmsg0(-20, " WR_PROT");
1100       }
1101       if (GMT_ONLINE(mt_stat.mt_gstat)) {
1102          stat |= BMT_ONLINE;
1103          Pmsg0(-20, " ONLINE");
1104       }
1105       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
1106          stat |= BMT_DR_OPEN;
1107          Pmsg0(-20, " DR_OPEN");
1108       }
1109       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
1110          stat |= BMT_IM_REP_EN;
1111          Pmsg0(-20, " IM_REP_EN");
1112       }
1113 #elif defined(HAVE_WIN32)
1114       if (GMT_EOF(mt_stat.mt_gstat)) {
1115          stat |= BMT_EOF;
1116          Pmsg0(-20, " EOF");
1117       }
1118       if (GMT_BOT(mt_stat.mt_gstat)) {
1119          stat |= BMT_BOT;
1120          Pmsg0(-20, " BOT");
1121       }
1122       if (GMT_EOT(mt_stat.mt_gstat)) {
1123          stat |= BMT_EOT;
1124          Pmsg0(-20, " EOT");
1125       }
1126       if (GMT_EOD(mt_stat.mt_gstat)) {
1127          stat |= BMT_EOD;
1128          Pmsg0(-20, " EOD");
1129       }
1130       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
1131          stat |= BMT_WR_PROT;
1132          Pmsg0(-20, " WR_PROT");
1133       }
1134       if (GMT_ONLINE(mt_stat.mt_gstat)) {
1135          stat |= BMT_ONLINE;
1136          Pmsg0(-20, " ONLINE");
1137       }
1138       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
1139          stat |= BMT_DR_OPEN;
1140          Pmsg0(-20, " DR_OPEN");
1141       }
1142       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
1143          stat |= BMT_IM_REP_EN;
1144          Pmsg0(-20, " IM_REP_EN");
1145       }
1146
1147 #endif /* !SunOS && !OSF */
1148       if (dev->has_cap(CAP_MTIOCGET)) {
1149          Pmsg2(-20, _(" file=%d block=%d\n"), mt_stat.mt_fileno, mt_stat.mt_blkno);
1150       } else {
1151          Pmsg2(-20, _(" file=%d block=%d\n"), -1, -1);
1152       }
1153    } else {
1154       stat |= BMT_ONLINE | BMT_BOT;
1155    }
1156    return stat;
1157 }
1158
1159
1160 /*
1161  * Load medium in device
1162  *  Returns: true  on success
1163  *           false on failure
1164  */
1165 bool load_dev(DEVICE *dev)
1166 {
1167 #ifdef MTLOAD
1168    struct mtop mt_com;
1169 #endif
1170
1171    if (dev->fd() < 0) {
1172       dev->dev_errno = EBADF;
1173       Mmsg0(dev->errmsg, _("Bad call to load_dev. Device not open\n"));
1174       Emsg0(M_FATAL, 0, dev->errmsg);
1175       return false;
1176    }
1177    if (!(dev->is_tape())) {
1178       return true;
1179    }
1180 #ifndef MTLOAD
1181    Dmsg0(200, "stored: MTLOAD command not available\n");
1182    berrno be;
1183    dev->dev_errno = ENOTTY;           /* function not available */
1184    Mmsg2(dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
1185          dev->print_name(), be.strerror());
1186    return false;
1187 #else
1188
1189    dev->block_num = dev->file = 0;
1190    dev->file_size = 0;
1191    dev->file_addr = 0;
1192    mt_com.mt_op = MTLOAD;
1193    mt_com.mt_count = 1;
1194    if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
1195       berrno be;
1196       dev->dev_errno = errno;
1197       Mmsg2(dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
1198          dev->print_name(), be.strerror());
1199       return false;
1200    }
1201    return true;
1202 #endif
1203 }
1204
1205 /*
1206  * Rewind device and put it offline
1207  *  Returns: true  on success
1208  *           false on failure
1209  */
1210 bool DEVICE::offline()
1211 {
1212    struct mtop mt_com;
1213
1214    if (!is_tape()) {
1215       return true;                    /* device not open */
1216    }
1217
1218    state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_EOF|ST_WEOT);  /* remove EOF/EOT flags */
1219    block_num = file = 0;
1220    file_size = 0;
1221    file_addr = 0;
1222    unlock_door();
1223    mt_com.mt_op = MTOFFL;
1224    mt_com.mt_count = 1;
1225    if (tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com) < 0) {
1226       berrno be;
1227       dev_errno = errno;
1228       Mmsg2(errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
1229          print_name(), be.strerror());
1230       return false;
1231    }
1232    Dmsg1(100, "Offlined device %s\n", print_name());
1233    return true;
1234 }
1235
1236 bool DEVICE::offline_or_rewind()
1237 {
1238    if (m_fd < 0) {
1239       return false;
1240    }
1241    if (has_cap(CAP_OFFLINEUNMOUNT)) {
1242       return offline();
1243    } else {
1244    /*
1245     * Note, this rewind probably should not be here (it wasn't
1246     *  in prior versions of Bacula), but on FreeBSD, this is
1247     *  needed in the case the tape was "frozen" due to an error
1248     *  such as backspacing after writing and EOF. If it is not
1249     *  done, all future references to the drive get and I/O error.
1250     */
1251       clrerror(MTREW);
1252       return rewind(NULL);
1253    }
1254 }
1255
1256 /*
1257  * Foward space a file
1258  *   Returns: true  on success
1259  *            false on failure
1260  */
1261 bool DEVICE::fsf(int num)
1262 {
1263    int32_t os_file;
1264    struct mtop mt_com;
1265    int stat = 0;
1266
1267    if (!is_open()) {
1268       dev_errno = EBADF;
1269       Mmsg0(errmsg, _("Bad call to fsf. Device not open\n"));
1270       Emsg0(M_FATAL, 0, errmsg);
1271       return false;
1272    }
1273
1274    if (!is_tape()) {
1275       return true;
1276    }
1277
1278    if (at_eot()) {
1279       dev_errno = 0;
1280       Mmsg1(errmsg, _("Device %s at End of Tape.\n"), print_name());
1281       return false;
1282    }
1283    if (at_eof()) {
1284       Dmsg0(200, "ST_EOF set on entry to FSF\n");
1285    }
1286
1287    Dmsg0(100, "fsf\n");
1288    block_num = 0;
1289    /*
1290     * If Fast forward space file is set, then we
1291     *  use MTFSF to forward space and MTIOCGET
1292     *  to get the file position. We assume that
1293     *  the SCSI driver will ensure that we do not
1294     *  forward space past the end of the medium.
1295     */
1296    if (has_cap(CAP_FSF) && has_cap(CAP_MTIOCGET) && has_cap(CAP_FASTFSF)) {
1297       mt_com.mt_op = MTFSF;
1298       mt_com.mt_count = num;
1299       stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1300       if (stat < 0 || (os_file=get_os_tape_file()) < 0) {
1301          berrno be;
1302          set_eot();
1303          Dmsg0(200, "Set ST_EOT\n");
1304          clrerror(MTFSF);
1305          Mmsg2(errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
1306             print_name(), be.strerror());
1307          Dmsg1(200, "%s", errmsg);
1308          return false;
1309       }
1310       Dmsg1(200, "fsf file=%d\n", os_file);
1311       set_ateof();
1312       file = os_file;
1313       return true;
1314
1315    /*
1316     * Here if CAP_FSF is set, and virtually all drives
1317     *  these days support it, we read a record, then forward
1318     *  space one file. Using this procedure, which is slow,
1319     *  is the only way we can be sure that we don't read
1320     *  two consecutive EOF marks, which means End of Data.
1321     */
1322    } else if (has_cap(CAP_FSF)) {
1323       POOLMEM *rbuf;
1324       int rbuf_len;
1325       Dmsg0(200, "FSF has cap_fsf\n");
1326       if (max_block_size == 0) {
1327          rbuf_len = DEFAULT_BLOCK_SIZE;
1328       } else {
1329          rbuf_len = max_block_size;
1330       }
1331       rbuf = get_memory(rbuf_len);
1332       mt_com.mt_op = MTFSF;
1333       mt_com.mt_count = 1;
1334       while (num-- && !at_eot()) {
1335          Dmsg0(100, "Doing read before fsf\n");
1336          if ((stat = this->read((char *)rbuf, rbuf_len)) < 0) {
1337             if (errno == ENOMEM) {     /* tape record exceeds buf len */
1338                stat = rbuf_len;        /* This is OK */
1339             /*
1340              * On IBM drives, they return ENOSPC at EOM
1341              *  instead of EOF status
1342              */
1343             } else if (at_eof() && errno == ENOSPC) {
1344                stat = 0;
1345             } else {
1346                berrno be;
1347                set_eot();
1348                clrerror(-1);
1349                Dmsg2(100, "Set ST_EOT read errno=%d. ERR=%s\n", dev_errno,
1350                   be.strerror());
1351                Mmsg2(errmsg, _("read error on %s. ERR=%s.\n"),
1352                   print_name(), be.strerror());
1353                Dmsg1(100, "%s", errmsg);
1354                break;
1355             }
1356          }
1357          if (stat == 0) {                /* EOF */
1358             Dmsg1(100, "End of File mark from read. File=%d\n", file+1);
1359             /* Two reads of zero means end of tape */
1360             if (at_eof()) {
1361                set_eot();
1362                Dmsg0(100, "Set ST_EOT\n");
1363                break;
1364             } else {
1365                set_ateof();
1366                continue;
1367             }
1368          } else {                        /* Got data */
1369             clear_eot();
1370             clear_eof();
1371          }
1372
1373          Dmsg0(100, "Doing MTFSF\n");
1374          stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1375          if (stat < 0) {                 /* error => EOT */
1376             berrno be;
1377             set_eot();
1378             Dmsg0(100, "Set ST_EOT\n");
1379             clrerror(MTFSF);
1380             Mmsg2(errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
1381                print_name(), be.strerror());
1382             Dmsg0(100, "Got < 0 for MTFSF\n");
1383             Dmsg1(100, "%s", errmsg);
1384          } else {
1385             set_ateof();
1386          }
1387       }
1388       free_memory(rbuf);
1389
1390    /*
1391     * No FSF, so use FSR to simulate it
1392     */
1393    } else {
1394       Dmsg0(200, "Doing FSR for FSF\n");
1395       while (num-- && !at_eot()) {
1396          fsr(INT32_MAX);    /* returns -1 on EOF or EOT */
1397       }
1398       if (at_eot()) {
1399          dev_errno = 0;
1400          Mmsg1(errmsg, _("Device %s at End of Tape.\n"), print_name());
1401          stat = -1;
1402       } else {
1403          stat = 0;
1404       }
1405    }
1406    Dmsg1(200, "Return %d from FSF\n", stat);
1407    if (at_eof()) {
1408       Dmsg0(200, "ST_EOF set on exit FSF\n");
1409    }
1410    if (at_eot()) {
1411       Dmsg0(200, "ST_EOT set on exit FSF\n");
1412    }
1413    Dmsg1(200, "Return from FSF file=%d\n", file);
1414    return stat == 0;
1415 }
1416
1417 /*
1418  * Backward space a file
1419  *  Returns: false on failure
1420  *           true  on success
1421  */
1422 bool DEVICE::bsf(int num)
1423 {
1424    struct mtop mt_com;
1425    int stat;
1426
1427    if (!is_open()) {
1428       dev_errno = EBADF;
1429       Mmsg0(errmsg, _("Bad call to bsf. Device not open\n"));
1430       Emsg0(M_FATAL, 0, errmsg);
1431       return false;
1432    }
1433
1434    if (!is_tape()) {
1435       Mmsg1(errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
1436          print_name());
1437       return false;
1438    }
1439
1440    Dmsg0(29, "bsf\n");
1441    clear_eot();
1442    clear_eof();
1443    file -= num;
1444    file_addr = 0;
1445    file_size = 0;
1446    mt_com.mt_op = MTBSF;
1447    mt_com.mt_count = num;
1448    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1449    if (stat < 0) {
1450       berrno be;
1451       clrerror(MTBSF);
1452       Mmsg2(errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
1453          print_name(), be.strerror());
1454    }
1455    return stat == 0;
1456 }
1457
1458
1459 /*
1460  * Foward space num records
1461  *  Returns: false on failure
1462  *           true  on success
1463  */
1464 bool DEVICE::fsr(int num)
1465 {
1466    struct mtop mt_com;
1467    int stat;
1468
1469    if (!is_open()) {
1470       dev_errno = EBADF;
1471       Mmsg0(errmsg, _("Bad call to fsr. Device not open\n"));
1472       Emsg0(M_FATAL, 0, errmsg);
1473       return false;
1474    }
1475
1476    if (!is_tape()) {
1477       return false;
1478    }
1479
1480    if (!has_cap(CAP_FSR)) {
1481       Mmsg1(errmsg, _("ioctl MTFSR not permitted on %s.\n"), print_name());
1482       return false;
1483    }
1484
1485    Dmsg1(29, "fsr %d\n", num);
1486    mt_com.mt_op = MTFSR;
1487    mt_com.mt_count = num;
1488    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1489    if (stat == 0) {
1490       clear_eof();
1491       block_num += num;
1492    } else {
1493       berrno be;
1494       struct mtget mt_stat;
1495       clrerror(MTFSR);
1496       Dmsg1(100, "FSF fail: ERR=%s\n", be.strerror());
1497       if (dev_get_os_pos(this, &mt_stat)) {
1498          Dmsg4(100, "Adjust from %d:%d to %d:%d\n", file,
1499             block_num, mt_stat.mt_fileno, mt_stat.mt_blkno);
1500          file = mt_stat.mt_fileno;
1501          block_num = mt_stat.mt_blkno;
1502       } else {
1503          if (at_eof()) {
1504             set_eot();
1505          } else {
1506             set_ateof();
1507          }
1508       }
1509       Mmsg3(errmsg, _("ioctl MTFSR %d error on %s. ERR=%s.\n"),
1510          num, print_name(), be.strerror());
1511    }
1512    return stat == 0;
1513 }
1514
1515 /*
1516  * Backward space a record
1517  *   Returns:  false on failure
1518  *             true  on success
1519  */
1520 bool DEVICE::bsr(int num)
1521 {
1522    struct mtop mt_com;
1523    int stat;
1524
1525    if (!is_open()) {
1526       dev_errno = EBADF;
1527       Mmsg0(errmsg, _("Bad call to bsr_dev. Device not open\n"));
1528       Emsg0(M_FATAL, 0, errmsg);
1529       return false;
1530    }
1531
1532    if (!is_tape()) {
1533       return false;
1534    }
1535
1536    if (!has_cap(CAP_BSR)) {
1537       Mmsg1(errmsg, _("ioctl MTBSR not permitted on %s.\n"), print_name());
1538       return false;
1539    }
1540
1541    Dmsg0(29, "bsr_dev\n");
1542    block_num -= num;
1543    clear_eof();
1544    clear_eot();
1545    mt_com.mt_op = MTBSR;
1546    mt_com.mt_count = num;
1547    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1548    if (stat < 0) {
1549       berrno be;
1550       clrerror(MTBSR);
1551       Mmsg2(errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
1552          print_name(), be.strerror());
1553    }
1554    return stat == 0;
1555 }
1556
1557 void DEVICE::lock_door()
1558 {
1559 #ifdef MTLOCK
1560    struct mtop mt_com;
1561    mt_com.mt_op = MTLOCK;
1562    mt_com.mt_count = 1;
1563    tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1564 #endif
1565 }
1566
1567 void DEVICE::unlock_door()
1568 {
1569 #ifdef MTUNLOCK
1570    struct mtop mt_com;
1571    mt_com.mt_op = MTUNLOCK;
1572    mt_com.mt_count = 1;
1573    tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1574 #endif
1575 }
1576  
1577
1578 /*
1579  * Reposition the device to file, block
1580  * Returns: false on failure
1581  *          true  on success
1582  */
1583 bool DEVICE::reposition(DCR *dcr, uint32_t rfile, uint32_t rblock)
1584 {
1585    if (!is_open()) {
1586       dev_errno = EBADF;
1587       Mmsg0(errmsg, _("Bad call to reposition. Device not open\n"));
1588       Emsg0(M_FATAL, 0, errmsg);
1589       return false;
1590    }
1591
1592    if (!is_tape()) {
1593       boffset_t pos = (((boffset_t)rfile)<<32) | rblock;
1594       Dmsg1(100, "===== lseek to %d\n", (int)pos);
1595       if (lseek(dcr, pos, SEEK_SET) == (boffset_t)-1) {
1596          berrno be;
1597          dev_errno = errno;
1598          Mmsg2(errmsg, _("lseek error on %s. ERR=%s.\n"),
1599             print_name(), be.strerror());
1600          return false;
1601       }
1602       file = rfile;
1603       block_num = rblock;
1604       file_addr = pos;
1605       return true;
1606    }
1607
1608    /* After this point, we are tape only */
1609    Dmsg4(100, "reposition from %u:%u to %u:%u\n", file, block_num, rfile, rblock);
1610    if (rfile < file) {
1611       Dmsg0(100, "Rewind\n");
1612       if (!rewind(NULL)) {
1613          return false;
1614       }
1615    }
1616    if (rfile > file) {
1617       Dmsg1(100, "fsf %d\n", rfile-file);
1618       if (!fsf(rfile-file)) {
1619          Dmsg1(100, "fsf failed! ERR=%s\n", bstrerror());
1620          return false;
1621       }
1622       Dmsg2(100, "wanted_file=%d at_file=%d\n", rfile, file);
1623    }
1624    if (rblock < block_num) {
1625       Dmsg2(100, "wanted_blk=%d at_blk=%d\n", rblock, block_num);
1626       Dmsg0(100, "bsf 1\n");
1627       bsf(1);
1628       Dmsg0(100, "fsf 1\n");
1629       fsf(1);
1630       Dmsg2(100, "wanted_blk=%d at_blk=%d\n", rblock, block_num);
1631    }
1632    if (has_cap(CAP_POSITIONBLOCKS) && rblock > block_num) {
1633       /* Ignore errors as Bacula can read to the correct block */
1634       Dmsg1(100, "fsr %d\n", rblock-block_num);
1635       return fsr(rblock-block_num);
1636    } else {
1637       while (rblock > block_num) {
1638          if (!read_block_from_dev(dcr, NO_BLOCK_NUMBER_CHECK)) {
1639             berrno be;
1640             dev_errno = errno;
1641             Dmsg2(30, "Failed to find requested block on %s: ERR=%s",
1642                print_name(), be.strerror());
1643             return false;
1644          }
1645          Dmsg2(300, "moving forward wanted_blk=%d at_blk=%d\n", rblock, block_num);
1646       }
1647    }
1648    return true;
1649 }
1650
1651
1652
1653 /*
1654  * Write an end of file on the device
1655  *   Returns: true on success
1656  *            false on failure
1657  */
1658 bool DEVICE::weof(int num)
1659 {
1660    struct mtop mt_com;
1661    int stat;
1662    Dmsg0(129, "weof_dev\n");
1663    
1664    if (!is_open()) {
1665       dev_errno = EBADF;
1666       Mmsg0(errmsg, _("Bad call to weof_dev. Device not open\n"));
1667       Emsg0(M_FATAL, 0, errmsg);
1668       return false;
1669    }
1670    file_size = 0;
1671
1672    if (!is_tape()) {
1673       return true;
1674    }
1675    if (!can_append()) {
1676       Mmsg0(errmsg, _("Attempt to WEOF on non-appendable Volume\n"));
1677       Emsg0(M_FATAL, 0, errmsg);
1678       return false;
1679    }
1680       
1681    clear_eof();
1682    clear_eot();
1683    mt_com.mt_op = MTWEOF;
1684    mt_com.mt_count = num;
1685    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1686    if (stat == 0) {
1687       block_num = 0;
1688       file += num;
1689       file_addr = 0;
1690    } else {
1691       berrno be;
1692       clrerror(MTWEOF);
1693       if (stat == -1) {
1694          Mmsg2(errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
1695             print_name(), be.strerror());
1696        }
1697    }
1698    return stat == 0;
1699 }
1700
1701
1702 /*
1703  * If implemented in system, clear the tape
1704  * error status.
1705  */
1706 void DEVICE::clrerror(int func)
1707 {
1708    const char *msg = NULL;
1709    char buf[100];
1710
1711    dev_errno = errno;         /* save errno */
1712    if (errno == EIO) {
1713       VolCatInfo.VolCatErrors++;
1714    }
1715
1716    if (!is_tape()) {
1717       return;
1718    }
1719
1720    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
1721       switch (func) {
1722       case -1:
1723          break;                  /* ignore message printed later */
1724       case MTWEOF:
1725          msg = "WTWEOF";
1726          clear_cap(CAP_EOF);     /* turn off feature */
1727          break;
1728 #ifdef MTEOM
1729       case MTEOM:
1730          msg = "WTEOM";
1731          clear_cap(CAP_EOM);     /* turn off feature */
1732          break;
1733 #endif
1734       case MTFSF:
1735          msg = "MTFSF";
1736          clear_cap(CAP_FSF);     /* turn off feature */
1737          break;
1738       case MTBSF:
1739          msg = "MTBSF";
1740          clear_cap(CAP_BSF);     /* turn off feature */
1741          break;
1742       case MTFSR:
1743          msg = "MTFSR";
1744          clear_cap(CAP_FSR);     /* turn off feature */
1745          break;
1746       case MTBSR:
1747          msg = "MTBSR";
1748          clear_cap(CAP_BSR);     /* turn off feature */
1749          break;
1750       case MTREW:
1751          msg = "MTREW";
1752          break;
1753 #ifdef MTSETBLK
1754       case MTSETBLK:
1755          msg = "MTSETBLK";
1756          break;
1757 #endif
1758 #ifdef MTSETDRVBUFFER
1759       case MTSETDRVBUFFER:
1760          msg = "MTSETDRVBUFFER";
1761          break;
1762 #endif
1763 #ifdef MTRESET
1764       case MTRESET:
1765          msg = "MTRESET";
1766          break;
1767 #endif
1768
1769 #ifdef MTSETBSIZ 
1770       case MTSETBSIZ:
1771          msg = "MTSETBSIZ";
1772          break;
1773 #endif
1774 #ifdef MTSRSZ
1775       case MTSRSZ:
1776          msg = "MTSRSZ";
1777          break;
1778 #endif
1779 #ifdef MTLOAD
1780       case MTLOAD:
1781          msg = "MTLOAD";
1782          break;
1783 #endif
1784 #ifdef MTUNLOCK
1785       case MTUNLOCK:
1786          msg = "MTUNLOCK";
1787          break;
1788 #endif
1789       case MTOFFL:
1790          msg = "MTOFFL";
1791          break;
1792       default:
1793          bsnprintf(buf, sizeof(buf), _("unknown func code %d"), func);
1794          msg = buf;
1795          break;
1796       }
1797       if (msg != NULL) {
1798          dev_errno = ENOSYS;
1799          Mmsg1(errmsg, _("I/O function \"%s\" not supported on this device.\n"), msg);
1800          Emsg0(M_ERROR, 0, errmsg);
1801       }
1802    }
1803
1804    /*
1805     * Now we try different methods of clearing the error
1806     *  status on the drive so that it is not locked for
1807     *  further operations.
1808     */
1809
1810    /* On some systems such as NetBSD, this clears all errors */
1811    get_os_tape_file();
1812
1813 /* Found on Solaris */
1814 #ifdef MTIOCLRERR
1815 {
1816    tape_ioctl(m_fd, MTIOCLRERR);
1817    Dmsg0(200, "Did MTIOCLRERR\n");
1818 }
1819 #endif
1820
1821 /* Typically on FreeBSD */
1822 #ifdef MTIOCERRSTAT
1823 {
1824   berrno be;
1825    /* Read and clear SCSI error status */
1826    union mterrstat mt_errstat;
1827    Dmsg2(200, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev_errno,
1828       be.strerror(dev_errno));
1829    tape_ioctl(m_fd, MTIOCERRSTAT, (char *)&mt_errstat);
1830 }
1831 #endif
1832
1833 /* Clear Subsystem Exception OSF1 */
1834 #ifdef MTCSE
1835 {
1836    struct mtop mt_com;
1837    mt_com.mt_op = MTCSE;
1838    mt_com.mt_count = 1;
1839    /* Clear any error condition on the tape */
1840    tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1841    Dmsg0(200, "Did MTCSE\n");
1842 }
1843 #endif
1844 }
1845
1846
1847 /*
1848  * Clear volume header
1849  */
1850 void DEVICE::clear_volhdr()
1851 {
1852    free_volume(this);
1853    Dmsg1(100, "Clear volhdr vol=%s\n", VolHdr.VolumeName);
1854    memset(&VolHdr, 0, sizeof(VolHdr));
1855 }
1856
1857
1858 /*
1859  * Close the device
1860  */
1861 void DEVICE::close()
1862 {
1863    Dmsg1(100, "close_dev %s\n", print_name());
1864    if (has_cap(CAP_OFFLINEUNMOUNT)) {
1865       offline();
1866    }
1867
1868    if (!is_open()) {
1869       Dmsg2(100, "device %s already closed vol=%s\n", print_name(),
1870          VolHdr.VolumeName);
1871       return;                         /* already closed */
1872    }
1873
1874    switch (dev_type) {
1875    case B_TAPE_DEV:
1876       unlock_door(); 
1877       tape_close(m_fd);
1878       break;
1879    default:
1880       ::close(m_fd);
1881    }
1882
1883    /* Clean up device packet so it can be reused */
1884    clear_opened();
1885    state &= ~(ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1886    label_type = B_BACULA_LABEL;
1887    file = block_num = 0;
1888    file_size = 0;
1889    file_addr = 0;
1890    EndFile = EndBlock = 0;
1891    openmode = 0;
1892    Slot = -1;             /* unknown slot */
1893    clear_volhdr();
1894    memset(&VolCatInfo, 0, sizeof(VolCatInfo));
1895    if (tid) {
1896       stop_thread_timer(tid);
1897       tid = 0;
1898    }
1899 }
1900
1901 /*
1902  * This call closes the device, but it is used in DVD handling
1903  *  where we close one part and then open the next part. The
1904  *  difference between close_part() and close() is that close_part()
1905  *  saves the state information of the device (e.g. the Volume lable,
1906  *  the Volume Catalog record, ...  This permits opening and closing
1907  *  the Volume parts multiple times without losing track of what the    
1908  *  main Volume parameters are.
1909  */
1910 void DEVICE::close_part(DCR *dcr)
1911 {
1912    VOLUME_LABEL saveVolHdr;
1913    VOLUME_CAT_INFO saveVolCatInfo;     /* Volume Catalog Information */
1914
1915
1916    saveVolHdr = VolHdr;               /* structure assignment */
1917    saveVolCatInfo = VolCatInfo;       /* structure assignment */
1918    close();                           /* close current part */
1919    VolHdr = saveVolHdr;               /* structure assignment */
1920    VolCatInfo = saveVolCatInfo;       /* structure assignment */
1921    dcr->VolCatInfo = saveVolCatInfo;  /* structure assignment */
1922 }
1923
1924 boffset_t DEVICE::lseek(DCR *dcr, boffset_t offset, int whence)
1925 {
1926    switch (dev_type) {
1927    case B_DVD_DEV:
1928       return lseek_dvd(dcr, offset, whence);
1929    case B_FILE_DEV:
1930 #if defined(HAVE_WIN32)
1931       return ::_lseeki64(m_fd, (__int64)offset, whence);
1932 #else
1933       return ::lseek(m_fd, (off_t)offset, whence);
1934 #endif
1935    }
1936    return -1;
1937 }
1938
1939
1940 bool DEVICE::truncate(DCR *dcr) /* We need the DCR for DVD-writing */
1941 {
1942    Dmsg1(100, "truncate %s\n", print_name());
1943    switch (dev_type) {
1944    case B_TAPE_DEV:
1945       /* maybe we should rewind and write and eof ???? */
1946       return true;                    /* we don't really truncate tapes */
1947    case B_DVD_DEV:
1948       return truncate_dvd(dcr);
1949    case B_FILE_DEV:
1950       /* ***FIXME*** we really need to unlink() the file so that
1951        *  its name can be changed for a relabel.
1952        */
1953       if (ftruncate(m_fd, 0) != 0) {
1954          berrno be;
1955          Mmsg2(errmsg, _("Unable to truncate device %s. ERR=%s\n"), 
1956                print_name(), be.strerror());
1957          return false;
1958       }
1959       return true;
1960    }
1961    return false;
1962 }
1963
1964 /* Mount the device.
1965  * If timeout, wait until the mount command returns 0.
1966  * If !timeout, try to mount the device only once.
1967  */
1968 bool DEVICE::mount(int timeout) 
1969 {
1970    Dmsg0(190, "Enter mount\n");
1971    if (is_mounted()) {
1972       return true;
1973    } else if (requires_mount()) {
1974       return do_mount(1, timeout);
1975    }       
1976    return true;
1977 }
1978
1979 /* Unmount the device
1980  * If timeout, wait until the unmount command returns 0.
1981  * If !timeout, try to unmount the device only once.
1982  */
1983 bool DEVICE::unmount(int timeout) 
1984 {
1985    Dmsg0(90, "Enter unmount\n");
1986    if (is_mounted()) {
1987       return do_mount(0, timeout);
1988    }
1989    return true;
1990 }
1991
1992 /* (Un)mount the device */
1993 bool DEVICE::do_mount(int mount, int dotimeout) 
1994 {
1995    POOL_MEM ocmd(PM_FNAME);
1996    POOLMEM *results;
1997    char *icmd;
1998    int status, timeout;
1999    
2000    sm_check(__FILE__, __LINE__, false);
2001    if (mount) {
2002       if (is_mounted()) {
2003          Dmsg0(200, "======= mount=1\n");
2004          return true;
2005       }
2006       icmd = device->mount_command;
2007    } else {
2008       if (!is_mounted()) {
2009          Dmsg0(200, "======= mount=0\n");
2010          return true;
2011       }
2012       icmd = device->unmount_command;
2013    }
2014    
2015    clear_freespace_ok();
2016    edit_mount_codes(ocmd, icmd);
2017    
2018    Dmsg2(100, "do_mount: cmd=%s mounted=%d\n", ocmd.c_str(), !!is_mounted());
2019
2020    if (dotimeout) {
2021       /* Try at most 1 time to (un)mount the device. This should perhaps be configurable. */
2022       timeout = 1;
2023    } else {
2024       timeout = 0;
2025    }
2026    results = get_memory(4000);
2027    results[0] = 0;
2028
2029    /* If busy retry each second */
2030    Dmsg1(20, "do_mount run_prog=%s\n", ocmd.c_str());
2031    while ((status = run_program_full_output(ocmd.c_str(), 
2032                        max_open_wait/2, results)) != 0) {
2033       /* Doesn't work with internationalization (This is not a problem) */
2034       if (mount && fnmatch("*is already mounted on*", results, 0) == 0) {
2035          break;
2036       }
2037       if (!mount && fnmatch("* not mounted*", results, 0) == 0) {
2038          break;
2039       }
2040       if (timeout-- > 0) {
2041          /* Sometimes the device cannot be mounted because it is already mounted.
2042           * Try to unmount it, then remount it */
2043          if (mount) {
2044             Dmsg1(400, "Trying to unmount the device %s...\n", print_name());
2045             do_mount(0, 0);
2046          }
2047          bmicrosleep(1, 0);
2048          continue;
2049       }
2050       if (status != 0) {
2051          berrno be;
2052          Dmsg5(40, "Device %s cannot be %smounted. stat=%d result=%s ERR=%s\n", print_name(),
2053               (mount ? "" : "un"), status, results, be.strerror(status));
2054          Mmsg(errmsg, _("Device %s cannot be %smounted. ERR=%s\n"), 
2055               print_name(), (mount ? "" : "un"), be.strerror(status));
2056       } else {
2057          Dmsg4(40, "Device %s cannot be %smounted. stat=%d ERR=%s\n", print_name(),
2058               (mount ? "" : "un"), status, results);
2059          Mmsg(errmsg, _("Device %s cannot be %smounted. ERR=%s\n"), 
2060               print_name(), (mount ? "" : "un"), results);
2061       }
2062       /*
2063        * Now, just to be sure it is not mounted, try to read the
2064        *  filesystem.
2065        */
2066       DIR* dp;
2067       struct dirent *entry, *result;
2068       int name_max;
2069       int count;
2070       
2071       name_max = pathconf(".", _PC_NAME_MAX);
2072       if (name_max < 1024) {
2073          name_max = 1024;
2074       }
2075          
2076       if (!(dp = opendir(device->mount_point))) {
2077          berrno be;
2078          dev_errno = errno;
2079          Dmsg3(29, "do_mount: failed to open dir %s (dev=%s), ERR=%s\n", 
2080                device->mount_point, print_name(), be.strerror());
2081          goto get_out;
2082       }
2083       
2084       entry = (struct dirent *)malloc(sizeof(struct dirent) + name_max + 1000);
2085       count = 0;
2086       while (1) {
2087          if ((readdir_r(dp, entry, &result) != 0) || (result == NULL)) {
2088             dev_errno = EIO;
2089             Dmsg2(129, "do_mount: failed to find suitable file in dir %s (dev=%s)\n", 
2090                   device->mount_point, print_name());
2091             break;
2092          }
2093          if ((strcmp(result->d_name, ".")) && (strcmp(result->d_name, "..")) && (strcmp(result->d_name, ".keep"))) {
2094             count++; /* result->d_name != ., .. or .keep (Gentoo-specific) */
2095             break;
2096          } else {
2097             Dmsg2(129, "do_mount: ignoring %s in %s\n", result->d_name, device->mount_point);
2098          }
2099       }
2100       free(entry);
2101       closedir(dp);
2102       
2103       Dmsg1(29, "do_mount: got %d files in the mount point (not counting ., .. and .keep)\n", count);
2104       
2105       if (count > 0) {
2106          /* If we got more than ., .. and .keep */
2107          /*   there must be something mounted */
2108          if (mount) {
2109             Dmsg1(100, "Did Mount by count=%d\n", count);
2110             break;
2111          } else {
2112             /* An unmount request. We failed to unmount - report an error */
2113             set_mounted(true);
2114             free_pool_memory(results);
2115             Dmsg0(200, "== error mount=1 wanted unmount\n");
2116             return false;
2117          }
2118       }
2119 get_out:
2120       set_mounted(false);
2121       sm_check(__FILE__, __LINE__, false);
2122       free_pool_memory(results);
2123       Dmsg0(200, "============ mount=0\n");
2124       return false;
2125    }
2126    
2127    set_mounted(mount);              /* set/clear mounted flag */
2128    free_pool_memory(results);
2129    /* Do not check free space when unmounting */
2130    if (mount && !update_freespace()) {
2131       return false;
2132    }
2133    Dmsg1(200, "============ mount=%d\n", mount);
2134    return true;
2135 }
2136
2137 /*
2138  * Edit codes into (Un)MountCommand, Write(First)PartCommand
2139  *  %% = %
2140  *  %a = archive device name
2141  *  %e = erase (set if cannot mount and first part)
2142  *  %n = part number
2143  *  %m = mount point
2144  *  %v = last part name
2145  *
2146  *  omsg = edited output message
2147  *  imsg = input string containing edit codes (%x)
2148  *
2149  */
2150 void DEVICE::edit_mount_codes(POOL_MEM &omsg, const char *imsg)
2151 {
2152    const char *p;
2153    const char *str;
2154    char add[20];
2155    
2156    POOL_MEM archive_name(PM_FNAME);
2157
2158    omsg.c_str()[0] = 0;
2159    Dmsg1(800, "edit_mount_codes: %s\n", imsg);
2160    for (p=imsg; *p; p++) {
2161       if (*p == '%') {
2162          switch (*++p) {
2163          case '%':
2164             str = "%";
2165             break;
2166          case 'a':
2167             str = dev_name;
2168             break;
2169          case 'e':
2170             if (num_dvd_parts == 0) {
2171                if (truncating || blank_dvd) {
2172                   str = "2";
2173                } else {
2174                   str = "1";
2175                }
2176             } else {
2177                str = "0";
2178             }
2179             break;
2180          case 'n':
2181             bsnprintf(add, sizeof(add), "%d", part);
2182             str = add;
2183             break;
2184          case 'm':
2185             str = device->mount_point;
2186             break;
2187          case 'v':
2188             make_spooled_dvd_filename(this, archive_name);
2189             str = archive_name.c_str();
2190             break;
2191          default:
2192             add[0] = '%';
2193             add[1] = *p;
2194             add[2] = 0;
2195             str = add;
2196             break;
2197          }
2198       } else {
2199          add[0] = *p;
2200          add[1] = 0;
2201          str = add;
2202       }
2203       Dmsg1(1900, "add_str %s\n", str);
2204       pm_strcat(omsg, (char *)str);
2205       Dmsg1(1800, "omsg=%s\n", omsg.c_str());
2206    }
2207 }
2208
2209 /* return the last timer interval (ms) */
2210 btime_t DEVICE::get_timer_count()
2211 {
2212    btime_t old = last_timer;
2213    last_timer = get_current_btime();
2214    return last_timer - old;
2215 }
2216
2217 /* read from fd */
2218 ssize_t DEVICE::read(void *buf, size_t len)
2219 {
2220    ssize_t read_len ;
2221
2222    get_timer_count();
2223
2224    if (this->is_tape()) {
2225       read_len = tape_read(m_fd, buf, len);
2226    } else {
2227       read_len = ::read(m_fd, buf, len);
2228    }
2229
2230    last_tick = get_timer_count();
2231
2232    DevReadTime += last_tick;
2233    VolCatInfo.VolReadTime += last_tick;
2234
2235    if (read_len > 0) {          /* skip error */
2236       DevReadBytes += read_len;
2237    }
2238
2239    return read_len;   
2240 }
2241
2242 /* write to fd */
2243 ssize_t DEVICE::write(const void *buf, size_t len)
2244 {
2245    ssize_t write_len ;
2246
2247    get_timer_count();
2248
2249    if (this->is_tape()) {
2250       write_len = tape_write(m_fd, buf, len);
2251    } else {
2252       write_len = ::write(m_fd, buf, len);
2253    }
2254
2255    last_tick = get_timer_count();
2256
2257    DevWriteTime += last_tick;
2258    VolCatInfo.VolWriteTime += last_tick;
2259
2260    if (write_len > 0) {         /* skip error */
2261       DevWriteBytes += write_len;
2262    }
2263
2264    return write_len;   
2265 }
2266
2267 /* Return the resource name for the device */
2268 const char *DEVICE::name() const
2269 {
2270    return device->hdr.name;
2271 }
2272
2273 /* Returns file position on tape or -1 */
2274 int32_t DEVICE::get_os_tape_file()
2275 {
2276    struct mtget mt_stat;
2277
2278    if (has_cap(CAP_MTIOCGET) &&
2279        tape_ioctl(m_fd, MTIOCGET, (char *)&mt_stat) == 0) {
2280       return mt_stat.mt_fileno;
2281    }
2282    return -1;
2283 }
2284
2285 char *
2286 dev_vol_name(DEVICE *dev)
2287 {
2288    return dev->VolCatInfo.VolCatName;
2289 }
2290
2291
2292 /*
2293  * Free memory allocated for the device
2294  */
2295 void DEVICE::term(void)
2296 {
2297    Dmsg1(900, "term dev: %s\n", print_name());
2298    close();
2299    if (dev_name) {
2300       free_memory(dev_name);
2301       dev_name = NULL;
2302    }
2303    if (prt_name) {
2304       free_memory(prt_name);
2305       prt_name = NULL;
2306    }
2307    if (errmsg) {
2308       free_pool_memory(errmsg);
2309       errmsg = NULL;
2310    }
2311    pthread_mutex_destroy(&m_mutex);
2312    pthread_cond_destroy(&wait);
2313    pthread_cond_destroy(&wait_next_vol);
2314    pthread_mutex_destroy(&spool_mutex);
2315 // rwl_destroy(&lock);
2316    if (attached_dcrs) {
2317       delete attached_dcrs;
2318       attached_dcrs = NULL;
2319    }
2320    if (device) {
2321       device->dev = NULL;
2322    }
2323    free((char *)this);
2324 }
2325
2326 /*
2327  * This routine initializes the device wait timers
2328  */
2329 void init_device_wait_timers(DCR *dcr)
2330 {
2331    DEVICE *dev = dcr->dev;
2332    JCR *jcr = dcr->jcr;
2333
2334    /* ******FIXME******* put these on config variables */
2335    dev->min_wait = 60 * 60;
2336    dev->max_wait = 24 * 60 * 60;
2337    dev->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
2338    dev->wait_sec = dev->min_wait;
2339    dev->rem_wait_sec = dev->wait_sec;
2340    dev->num_wait = 0;
2341    dev->poll = false;
2342    dev->BadVolName[0] = 0;
2343
2344    jcr->min_wait = 60 * 60;
2345    jcr->max_wait = 24 * 60 * 60;
2346    jcr->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
2347    jcr->wait_sec = jcr->min_wait;
2348    jcr->rem_wait_sec = jcr->wait_sec;
2349    jcr->num_wait = 0;
2350
2351 }
2352
2353 void init_jcr_device_wait_timers(JCR *jcr)
2354 {
2355    /* ******FIXME******* put these on config variables */
2356    jcr->min_wait = 60 * 60;
2357    jcr->max_wait = 24 * 60 * 60;
2358    jcr->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
2359    jcr->wait_sec = jcr->min_wait;
2360    jcr->rem_wait_sec = jcr->wait_sec;
2361    jcr->num_wait = 0;
2362 }
2363
2364
2365 /*
2366  * The dev timers are used for waiting on a particular device 
2367  *
2368  * Returns: true if time doubled
2369  *          false if max time expired
2370  */
2371 bool double_dev_wait_time(DEVICE *dev)
2372 {
2373    dev->wait_sec *= 2;               /* double wait time */
2374    if (dev->wait_sec > dev->max_wait) {   /* but not longer than maxtime */
2375       dev->wait_sec = dev->max_wait;
2376    }
2377    dev->num_wait++;
2378    dev->rem_wait_sec = dev->wait_sec;
2379    if (dev->num_wait >= dev->max_num_wait) {
2380       return false;
2381    }
2382    return true;
2383 }
2384
2385
2386 void set_os_device_parameters(DCR *dcr)
2387 {
2388    DEVICE *dev = dcr->dev;
2389
2390 #if defined(HAVE_LINUX_OS) || defined(HAVE_WIN32)
2391    struct mtop mt_com;
2392
2393    Dmsg0(050, "In set_os_device_parameters\n");
2394 #if defined(MTSETBLK) 
2395    if (dev->min_block_size == dev->max_block_size &&
2396        dev->min_block_size == 0) {    /* variable block mode */
2397       mt_com.mt_op = MTSETBLK;
2398       mt_com.mt_count = 0;
2399       Dmsg0(050, "Set block size to zero\n");
2400       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2401          dev->clrerror(MTSETBLK);
2402       }
2403    }
2404 #endif
2405 #if defined(MTSETDRVBUFFER)
2406    if (getpid() == 0) {          /* Only root can do this */
2407       mt_com.mt_op = MTSETDRVBUFFER;
2408       mt_com.mt_count = MT_ST_CLEARBOOLEANS;
2409       if (!dev->has_cap(CAP_TWOEOF)) {
2410          mt_com.mt_count |= MT_ST_TWO_FM;
2411       }
2412       if (dev->has_cap(CAP_EOM)) {
2413          mt_com.mt_count |= MT_ST_FAST_MTEOM;
2414       }
2415       Dmsg0(050, "MTSETDRVBUFFER\n");
2416       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2417          dev->clrerror(MTSETDRVBUFFER);
2418       }
2419    }
2420 #endif
2421    return;
2422 #endif
2423
2424 #ifdef HAVE_NETBSD_OS
2425    struct mtop mt_com;
2426    if (dev->min_block_size == dev->max_block_size &&
2427        dev->min_block_size == 0) {    /* variable block mode */
2428       mt_com.mt_op = MTSETBSIZ;
2429       mt_com.mt_count = 0;
2430       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2431          dev->clrerror(MTSETBSIZ);
2432       }
2433       /* Get notified at logical end of tape */
2434       mt_com.mt_op = MTEWARN;
2435       mt_com.mt_count = 1;
2436       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2437          dev->clrerror(MTEWARN);
2438       }
2439    }
2440    return;
2441 #endif
2442
2443 #if HAVE_FREEBSD_OS || HAVE_OPENBSD_OS
2444    struct mtop mt_com;
2445    if (dev->min_block_size == dev->max_block_size &&
2446        dev->min_block_size == 0) {    /* variable block mode */
2447       mt_com.mt_op = MTSETBSIZ;
2448       mt_com.mt_count = 0;
2449       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2450          dev->clrerror(MTSETBSIZ);
2451       }
2452    }
2453 #if defined(MTIOCSETEOTMODEL) 
2454    uint32_t neof;
2455    if (dev->has_cap(CAP_TWOEOF)) {
2456       neof = 2;
2457    } else {
2458       neof = 1;
2459    }
2460    if (ioctl(dev->fd(), MTIOCSETEOTMODEL, (caddr_t)&neof) < 0) {
2461       berrno be;
2462       dev->dev_errno = errno;         /* save errno */
2463       Mmsg2(dev->errmsg, _("Unable to set eotmodel on device %s: ERR=%s\n"),
2464             dev->print_name(), be.strerror(dev->dev_errno));
2465       Jmsg(dcr->jcr, M_FATAL, 0, dev->errmsg);
2466    }
2467 #endif
2468    return;
2469 #endif
2470
2471 #ifdef HAVE_SUN_OS
2472    struct mtop mt_com;
2473    if (dev->min_block_size == dev->max_block_size &&
2474        dev->min_block_size == 0) {    /* variable block mode */
2475       mt_com.mt_op = MTSRSZ;
2476       mt_com.mt_count = 0;
2477       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2478          dev->clrerror(MTSRSZ);
2479       }
2480    }
2481    return;
2482 #endif
2483 }
2484
2485 static bool dev_get_os_pos(DEVICE *dev, struct mtget *mt_stat)
2486 {
2487    Dmsg0(050, "dev_get_os_pos\n");
2488    return dev->has_cap(CAP_MTIOCGET) && 
2489           tape_ioctl(dev->fd(), MTIOCGET, (char *)mt_stat) == 0 &&
2490           mt_stat->mt_fileno >= 0;
2491 }
2492
2493 static char *modes[] = {
2494    "CREATE_READ_WRITE",
2495    "OPEN_READ_WRITE",
2496    "OPEN_READ_ONLY",
2497    "OPEN_WRITE_ONLY"
2498 };
2499
2500
2501 static char *mode_to_str(int mode)  
2502 {
2503    static char buf[100];
2504    if (mode < 1 || mode > 4) {
2505       bsnprintf(buf, sizeof(buf), "BAD mode=%d", mode);
2506       return buf;
2507     }
2508    return modes[mode-1];
2509 }