]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
Convert to pure GPL v2 license.
[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 and included
11    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.bstrerror());
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.bstrerror());
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.bstrerror(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.bstrerror(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.bstrerror(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.bstrerror(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.bstrerror(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(100, "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(100, "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(100, "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(100, "Open error on %s omode=%d mode=%x errno=%d: ERR=%s\n", 
382               print_name(), omode, mode, errno, be.bstrerror());
383       } else {
384          /* Tape open, now rewind it */
385          Dmsg0(100, "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.bstrerror(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(100, "Open error on %s omode=%d mode=%x errno=%d: ERR=%s\n", 
408                      print_name(), omode, mode, errno, be.bstrerror());
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.bstrerror(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(100, "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(100, "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.bstrerror());
487       Dmsg1(100, "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(100, "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(100, "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(100, "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.bstrerror());
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(100, "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(100, "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(100, "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.bstrerror());
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(100, "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(100, "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.bstrerror());
685          Dmsg1(100, "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.bstrerror());
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.bstrerror());
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.bstrerror());
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(100, "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.bstrerror());
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.bstrerror());
927          update_pos(dcr);
928          Mmsg2(errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
929             print_name(), be.bstrerror());
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.bstrerror());
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.bstrerror());
1029          Mmsg2(errmsg, _("lseek error on %s. ERR=%s.\n"),
1030             print_name(), be.bstrerror());
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.bstrerror());
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.bstrerror());
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.bstrerror());
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.bstrerror());
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 = 0;
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       int my_errno = 0;
1298       mt_com.mt_op = MTFSF;
1299       mt_com.mt_count = num;
1300       stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1301       if (stat < 0) {
1302          my_errno = errno;            /* save errno */
1303       } else if ((os_file=get_os_tape_file()) < 0) {
1304          my_errno = errno;            /* save errno */
1305       }
1306       if (my_errno != 0) {
1307          berrno be;
1308          set_eot();
1309          Dmsg0(200, "Set ST_EOT\n");
1310          clrerror(MTFSF);
1311          Mmsg2(errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
1312             print_name(), be.bstrerror(my_errno));
1313          Dmsg1(200, "%s", errmsg);
1314          return false;
1315       }
1316
1317       Dmsg1(200, "fsf file=%d\n", os_file);
1318       set_ateof();
1319       file = os_file;
1320       return true;
1321
1322    /*
1323     * Here if CAP_FSF is set, and virtually all drives
1324     *  these days support it, we read a record, then forward
1325     *  space one file. Using this procedure, which is slow,
1326     *  is the only way we can be sure that we don't read
1327     *  two consecutive EOF marks, which means End of Data.
1328     */
1329    } else if (has_cap(CAP_FSF)) {
1330       POOLMEM *rbuf;
1331       int rbuf_len;
1332       Dmsg0(200, "FSF has cap_fsf\n");
1333       if (max_block_size == 0) {
1334          rbuf_len = DEFAULT_BLOCK_SIZE;
1335       } else {
1336          rbuf_len = max_block_size;
1337       }
1338       rbuf = get_memory(rbuf_len);
1339       mt_com.mt_op = MTFSF;
1340       mt_com.mt_count = 1;
1341       while (num-- && !at_eot()) {
1342          Dmsg0(100, "Doing read before fsf\n");
1343          if ((stat = this->read((char *)rbuf, rbuf_len)) < 0) {
1344             if (errno == ENOMEM) {     /* tape record exceeds buf len */
1345                stat = rbuf_len;        /* This is OK */
1346             /*
1347              * On IBM drives, they return ENOSPC at EOM
1348              *  instead of EOF status
1349              */
1350             } else if (at_eof() && errno == ENOSPC) {
1351                stat = 0;
1352             } else {
1353                berrno be;
1354                set_eot();
1355                clrerror(-1);
1356                Dmsg2(100, "Set ST_EOT read errno=%d. ERR=%s\n", dev_errno,
1357                   be.bstrerror());
1358                Mmsg2(errmsg, _("read error on %s. ERR=%s.\n"),
1359                   print_name(), be.bstrerror());
1360                Dmsg1(100, "%s", errmsg);
1361                break;
1362             }
1363          }
1364          if (stat == 0) {                /* EOF */
1365             Dmsg1(100, "End of File mark from read. File=%d\n", file+1);
1366             /* Two reads of zero means end of tape */
1367             if (at_eof()) {
1368                set_eot();
1369                Dmsg0(100, "Set ST_EOT\n");
1370                break;
1371             } else {
1372                set_ateof();
1373                continue;
1374             }
1375          } else {                        /* Got data */
1376             clear_eot();
1377             clear_eof();
1378          }
1379
1380          Dmsg0(100, "Doing MTFSF\n");
1381          stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1382          if (stat < 0) {                 /* error => EOT */
1383             berrno be;
1384             set_eot();
1385             Dmsg0(100, "Set ST_EOT\n");
1386             clrerror(MTFSF);
1387             Mmsg2(errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
1388                print_name(), be.bstrerror());
1389             Dmsg0(100, "Got < 0 for MTFSF\n");
1390             Dmsg1(100, "%s", errmsg);
1391          } else {
1392             set_ateof();
1393          }
1394       }
1395       free_memory(rbuf);
1396
1397    /*
1398     * No FSF, so use FSR to simulate it
1399     */
1400    } else {
1401       Dmsg0(200, "Doing FSR for FSF\n");
1402       while (num-- && !at_eot()) {
1403          fsr(INT32_MAX);    /* returns -1 on EOF or EOT */
1404       }
1405       if (at_eot()) {
1406          dev_errno = 0;
1407          Mmsg1(errmsg, _("Device %s at End of Tape.\n"), print_name());
1408          stat = -1;
1409       } else {
1410          stat = 0;
1411       }
1412    }
1413    Dmsg1(200, "Return %d from FSF\n", stat);
1414    if (at_eof()) {
1415       Dmsg0(200, "ST_EOF set on exit FSF\n");
1416    }
1417    if (at_eot()) {
1418       Dmsg0(200, "ST_EOT set on exit FSF\n");
1419    }
1420    Dmsg1(200, "Return from FSF file=%d\n", file);
1421    return stat == 0;
1422 }
1423
1424 /*
1425  * Backward space a file
1426  *  Returns: false on failure
1427  *           true  on success
1428  */
1429 bool DEVICE::bsf(int num)
1430 {
1431    struct mtop mt_com;
1432    int stat;
1433
1434    if (!is_open()) {
1435       dev_errno = EBADF;
1436       Mmsg0(errmsg, _("Bad call to bsf. Device not open\n"));
1437       Emsg0(M_FATAL, 0, errmsg);
1438       return false;
1439    }
1440
1441    if (!is_tape()) {
1442       Mmsg1(errmsg, _("Device %s cannot BSF because it is not a tape.\n"),
1443          print_name());
1444       return false;
1445    }
1446
1447    Dmsg0(100, "bsf\n");
1448    clear_eot();
1449    clear_eof();
1450    file -= num;
1451    file_addr = 0;
1452    file_size = 0;
1453    mt_com.mt_op = MTBSF;
1454    mt_com.mt_count = num;
1455    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1456    if (stat < 0) {
1457       berrno be;
1458       clrerror(MTBSF);
1459       Mmsg2(errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
1460          print_name(), be.bstrerror());
1461    }
1462    return stat == 0;
1463 }
1464
1465
1466 /*
1467  * Foward space num records
1468  *  Returns: false on failure
1469  *           true  on success
1470  */
1471 bool DEVICE::fsr(int num)
1472 {
1473    struct mtop mt_com;
1474    int stat;
1475
1476    if (!is_open()) {
1477       dev_errno = EBADF;
1478       Mmsg0(errmsg, _("Bad call to fsr. Device not open\n"));
1479       Emsg0(M_FATAL, 0, errmsg);
1480       return false;
1481    }
1482
1483    if (!is_tape()) {
1484       return false;
1485    }
1486
1487    if (!has_cap(CAP_FSR)) {
1488       Mmsg1(errmsg, _("ioctl MTFSR not permitted on %s.\n"), print_name());
1489       return false;
1490    }
1491
1492    Dmsg1(100, "fsr %d\n", num);
1493    mt_com.mt_op = MTFSR;
1494    mt_com.mt_count = num;
1495    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1496    if (stat == 0) {
1497       clear_eof();
1498       block_num += num;
1499    } else {
1500       berrno be;
1501       struct mtget mt_stat;
1502       clrerror(MTFSR);
1503       Dmsg1(100, "FSF fail: ERR=%s\n", be.bstrerror());
1504       if (dev_get_os_pos(this, &mt_stat)) {
1505          Dmsg4(100, "Adjust from %d:%d to %d:%d\n", file,
1506             block_num, mt_stat.mt_fileno, mt_stat.mt_blkno);
1507          file = mt_stat.mt_fileno;
1508          block_num = mt_stat.mt_blkno;
1509       } else {
1510          if (at_eof()) {
1511             set_eot();
1512          } else {
1513             set_ateof();
1514          }
1515       }
1516       Mmsg3(errmsg, _("ioctl MTFSR %d error on %s. ERR=%s.\n"),
1517          num, print_name(), be.bstrerror());
1518    }
1519    return stat == 0;
1520 }
1521
1522 /*
1523  * Backward space a record
1524  *   Returns:  false on failure
1525  *             true  on success
1526  */
1527 bool DEVICE::bsr(int num)
1528 {
1529    struct mtop mt_com;
1530    int stat;
1531
1532    if (!is_open()) {
1533       dev_errno = EBADF;
1534       Mmsg0(errmsg, _("Bad call to bsr_dev. Device not open\n"));
1535       Emsg0(M_FATAL, 0, errmsg);
1536       return false;
1537    }
1538
1539    if (!is_tape()) {
1540       return false;
1541    }
1542
1543    if (!has_cap(CAP_BSR)) {
1544       Mmsg1(errmsg, _("ioctl MTBSR not permitted on %s.\n"), print_name());
1545       return false;
1546    }
1547
1548    Dmsg0(100, "bsr_dev\n");
1549    block_num -= num;
1550    clear_eof();
1551    clear_eot();
1552    mt_com.mt_op = MTBSR;
1553    mt_com.mt_count = num;
1554    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1555    if (stat < 0) {
1556       berrno be;
1557       clrerror(MTBSR);
1558       Mmsg2(errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
1559          print_name(), be.bstrerror());
1560    }
1561    return stat == 0;
1562 }
1563
1564 void DEVICE::lock_door()
1565 {
1566 #ifdef MTLOCK
1567    struct mtop mt_com;
1568    mt_com.mt_op = MTLOCK;
1569    mt_com.mt_count = 1;
1570    tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1571 #endif
1572 }
1573
1574 void DEVICE::unlock_door()
1575 {
1576 #ifdef MTUNLOCK
1577    struct mtop mt_com;
1578    mt_com.mt_op = MTUNLOCK;
1579    mt_com.mt_count = 1;
1580    tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1581 #endif
1582 }
1583  
1584
1585 /*
1586  * Reposition the device to file, block
1587  * Returns: false on failure
1588  *          true  on success
1589  */
1590 bool DEVICE::reposition(DCR *dcr, uint32_t rfile, uint32_t rblock)
1591 {
1592    if (!is_open()) {
1593       dev_errno = EBADF;
1594       Mmsg0(errmsg, _("Bad call to reposition. Device not open\n"));
1595       Emsg0(M_FATAL, 0, errmsg);
1596       return false;
1597    }
1598
1599    if (!is_tape()) {
1600       boffset_t pos = (((boffset_t)rfile)<<32) | rblock;
1601       Dmsg1(100, "===== lseek to %d\n", (int)pos);
1602       if (lseek(dcr, pos, SEEK_SET) == (boffset_t)-1) {
1603          berrno be;
1604          dev_errno = errno;
1605          Mmsg2(errmsg, _("lseek error on %s. ERR=%s.\n"),
1606             print_name(), be.bstrerror());
1607          return false;
1608       }
1609       file = rfile;
1610       block_num = rblock;
1611       file_addr = pos;
1612       return true;
1613    }
1614
1615    /* After this point, we are tape only */
1616    Dmsg4(100, "reposition from %u:%u to %u:%u\n", file, block_num, rfile, rblock);
1617    if (rfile < file) {
1618       Dmsg0(100, "Rewind\n");
1619       if (!rewind(NULL)) {
1620          return false;
1621       }
1622    }
1623    if (rfile > file) {
1624       Dmsg1(100, "fsf %d\n", rfile-file);
1625       if (!fsf(rfile-file)) {
1626          Dmsg1(100, "fsf failed! ERR=%s\n", bstrerror());
1627          return false;
1628       }
1629       Dmsg2(100, "wanted_file=%d at_file=%d\n", rfile, file);
1630    }
1631    if (rblock < block_num) {
1632       Dmsg2(100, "wanted_blk=%d at_blk=%d\n", rblock, block_num);
1633       Dmsg0(100, "bsf 1\n");
1634       bsf(1);
1635       Dmsg0(100, "fsf 1\n");
1636       fsf(1);
1637       Dmsg2(100, "wanted_blk=%d at_blk=%d\n", rblock, block_num);
1638    }
1639    if (has_cap(CAP_POSITIONBLOCKS) && rblock > block_num) {
1640       /* Ignore errors as Bacula can read to the correct block */
1641       Dmsg1(100, "fsr %d\n", rblock-block_num);
1642       return fsr(rblock-block_num);
1643    } else {
1644       while (rblock > block_num) {
1645          if (!read_block_from_dev(dcr, NO_BLOCK_NUMBER_CHECK)) {
1646             berrno be;
1647             dev_errno = errno;
1648             Dmsg2(30, "Failed to find requested block on %s: ERR=%s",
1649                print_name(), be.bstrerror());
1650             return false;
1651          }
1652          Dmsg2(300, "moving forward wanted_blk=%d at_blk=%d\n", rblock, block_num);
1653       }
1654    }
1655    return true;
1656 }
1657
1658
1659
1660 /*
1661  * Write an end of file on the device
1662  *   Returns: true on success
1663  *            false on failure
1664  */
1665 bool DEVICE::weof(int num)
1666 {
1667    struct mtop mt_com;
1668    int stat;
1669    Dmsg0(129, "weof_dev\n");
1670    
1671    if (!is_open()) {
1672       dev_errno = EBADF;
1673       Mmsg0(errmsg, _("Bad call to weof_dev. Device not open\n"));
1674       Emsg0(M_FATAL, 0, errmsg);
1675       return false;
1676    }
1677    file_size = 0;
1678
1679    if (!is_tape()) {
1680       return true;
1681    }
1682    if (!can_append()) {
1683       Mmsg0(errmsg, _("Attempt to WEOF on non-appendable Volume\n"));
1684       Emsg0(M_FATAL, 0, errmsg);
1685       return false;
1686    }
1687       
1688    clear_eof();
1689    clear_eot();
1690    mt_com.mt_op = MTWEOF;
1691    mt_com.mt_count = num;
1692    stat = tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1693    if (stat == 0) {
1694       block_num = 0;
1695       file += num;
1696       file_addr = 0;
1697    } else {
1698       berrno be;
1699       clrerror(MTWEOF);
1700       if (stat == -1) {
1701          Mmsg2(errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
1702             print_name(), be.bstrerror());
1703        }
1704    }
1705    return stat == 0;
1706 }
1707
1708
1709 /*
1710  * If implemented in system, clear the tape
1711  * error status.
1712  */
1713 void DEVICE::clrerror(int func)
1714 {
1715    const char *msg = NULL;
1716    char buf[100];
1717
1718    dev_errno = errno;         /* save errno */
1719    if (errno == EIO) {
1720       VolCatInfo.VolCatErrors++;
1721    }
1722
1723    if (!is_tape()) {
1724       return;
1725    }
1726
1727    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
1728       switch (func) {
1729       case -1:
1730          break;                  /* ignore message printed later */
1731       case MTWEOF:
1732          msg = "WTWEOF";
1733          clear_cap(CAP_EOF);     /* turn off feature */
1734          break;
1735 #ifdef MTEOM
1736       case MTEOM:
1737          msg = "WTEOM";
1738          clear_cap(CAP_EOM);     /* turn off feature */
1739          break;
1740 #endif
1741       case MTFSF:
1742          msg = "MTFSF";
1743          clear_cap(CAP_FSF);     /* turn off feature */
1744          break;
1745       case MTBSF:
1746          msg = "MTBSF";
1747          clear_cap(CAP_BSF);     /* turn off feature */
1748          break;
1749       case MTFSR:
1750          msg = "MTFSR";
1751          clear_cap(CAP_FSR);     /* turn off feature */
1752          break;
1753       case MTBSR:
1754          msg = "MTBSR";
1755          clear_cap(CAP_BSR);     /* turn off feature */
1756          break;
1757       case MTREW:
1758          msg = "MTREW";
1759          break;
1760 #ifdef MTSETBLK
1761       case MTSETBLK:
1762          msg = "MTSETBLK";
1763          break;
1764 #endif
1765 #ifdef MTSETDRVBUFFER
1766       case MTSETDRVBUFFER:
1767          msg = "MTSETDRVBUFFER";
1768          break;
1769 #endif
1770 #ifdef MTRESET
1771       case MTRESET:
1772          msg = "MTRESET";
1773          break;
1774 #endif
1775
1776 #ifdef MTSETBSIZ 
1777       case MTSETBSIZ:
1778          msg = "MTSETBSIZ";
1779          break;
1780 #endif
1781 #ifdef MTSRSZ
1782       case MTSRSZ:
1783          msg = "MTSRSZ";
1784          break;
1785 #endif
1786 #ifdef MTLOAD
1787       case MTLOAD:
1788          msg = "MTLOAD";
1789          break;
1790 #endif
1791 #ifdef MTUNLOCK
1792       case MTUNLOCK:
1793          msg = "MTUNLOCK";
1794          break;
1795 #endif
1796       case MTOFFL:
1797          msg = "MTOFFL";
1798          break;
1799       default:
1800          bsnprintf(buf, sizeof(buf), _("unknown func code %d"), func);
1801          msg = buf;
1802          break;
1803       }
1804       if (msg != NULL) {
1805          dev_errno = ENOSYS;
1806          Mmsg1(errmsg, _("I/O function \"%s\" not supported on this device.\n"), msg);
1807          Emsg0(M_ERROR, 0, errmsg);
1808       }
1809    }
1810
1811    /*
1812     * Now we try different methods of clearing the error
1813     *  status on the drive so that it is not locked for
1814     *  further operations.
1815     */
1816
1817    /* On some systems such as NetBSD, this clears all errors */
1818    get_os_tape_file();
1819
1820 /* Found on Solaris */
1821 #ifdef MTIOCLRERR
1822 {
1823    tape_ioctl(m_fd, MTIOCLRERR);
1824    Dmsg0(200, "Did MTIOCLRERR\n");
1825 }
1826 #endif
1827
1828 /* Typically on FreeBSD */
1829 #ifdef MTIOCERRSTAT
1830 {
1831   berrno be;
1832    /* Read and clear SCSI error status */
1833    union mterrstat mt_errstat;
1834    Dmsg2(200, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev_errno,
1835       be.bstrerror(dev_errno));
1836    tape_ioctl(m_fd, MTIOCERRSTAT, (char *)&mt_errstat);
1837 }
1838 #endif
1839
1840 /* Clear Subsystem Exception OSF1 */
1841 #ifdef MTCSE
1842 {
1843    struct mtop mt_com;
1844    mt_com.mt_op = MTCSE;
1845    mt_com.mt_count = 1;
1846    /* Clear any error condition on the tape */
1847    tape_ioctl(m_fd, MTIOCTOP, (char *)&mt_com);
1848    Dmsg0(200, "Did MTCSE\n");
1849 }
1850 #endif
1851 }
1852
1853
1854 /*
1855  * Clear volume header
1856  */
1857 void DEVICE::clear_volhdr()
1858 {
1859    /* If we have an unused volume associated with this drive, free it */
1860    if (vol && !is_busy()) {
1861       free_volume(this);
1862    }
1863    Dmsg1(100, "Clear volhdr vol=%s\n", VolHdr.VolumeName);
1864    memset(&VolHdr, 0, sizeof(VolHdr));
1865 }
1866
1867
1868 /*
1869  * Close the device
1870  */
1871 void DEVICE::close()
1872 {
1873    Dmsg1(100, "close_dev %s\n", print_name());
1874    if (has_cap(CAP_OFFLINEUNMOUNT)) {
1875       offline();
1876    }
1877
1878    if (!is_open()) {
1879       Dmsg2(100, "device %s already closed vol=%s\n", print_name(),
1880          VolHdr.VolumeName);
1881       return;                         /* already closed */
1882    }
1883
1884    switch (dev_type) {
1885    case B_TAPE_DEV:
1886       unlock_door(); 
1887       tape_close(m_fd);
1888       break;
1889    default:
1890       ::close(m_fd);
1891    }
1892
1893    /* Clean up device packet so it can be reused */
1894    clear_opened();
1895    state &= ~(ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1896    label_type = B_BACULA_LABEL;
1897    file = block_num = 0;
1898    file_size = 0;
1899    file_addr = 0;
1900    EndFile = EndBlock = 0;
1901    openmode = 0;
1902    Slot = -1;             /* unknown slot */
1903    clear_volhdr();
1904    memset(&VolCatInfo, 0, sizeof(VolCatInfo));
1905    if (tid) {
1906       stop_thread_timer(tid);
1907       tid = 0;
1908    }
1909 }
1910
1911 /*
1912  * This call closes the device, but it is used in DVD handling
1913  *  where we close one part and then open the next part. The
1914  *  difference between close_part() and close() is that close_part()
1915  *  saves the state information of the device (e.g. the Volume lable,
1916  *  the Volume Catalog record, ...  This permits opening and closing
1917  *  the Volume parts multiple times without losing track of what the    
1918  *  main Volume parameters are.
1919  */
1920 void DEVICE::close_part(DCR *dcr)
1921 {
1922    VOLUME_LABEL saveVolHdr;
1923    VOLUME_CAT_INFO saveVolCatInfo;     /* Volume Catalog Information */
1924
1925
1926    saveVolHdr = VolHdr;               /* structure assignment */
1927    saveVolCatInfo = VolCatInfo;       /* structure assignment */
1928    close();                           /* close current part */
1929    VolHdr = saveVolHdr;               /* structure assignment */
1930    VolCatInfo = saveVolCatInfo;       /* structure assignment */
1931    dcr->VolCatInfo = saveVolCatInfo;  /* structure assignment */
1932 }
1933
1934 boffset_t DEVICE::lseek(DCR *dcr, boffset_t offset, int whence)
1935 {
1936    switch (dev_type) {
1937    case B_DVD_DEV:
1938       return lseek_dvd(dcr, offset, whence);
1939    case B_FILE_DEV:
1940 #if defined(HAVE_WIN32)
1941       return ::_lseeki64(m_fd, (__int64)offset, whence);
1942 #else
1943       return ::lseek(m_fd, (off_t)offset, whence);
1944 #endif
1945    }
1946    return -1;
1947 }
1948
1949
1950 bool DEVICE::truncate(DCR *dcr) /* We need the DCR for DVD-writing */
1951 {
1952    Dmsg1(100, "truncate %s\n", print_name());
1953    switch (dev_type) {
1954    case B_TAPE_DEV:
1955       /* maybe we should rewind and write and eof ???? */
1956       return true;                    /* we don't really truncate tapes */
1957    case B_DVD_DEV:
1958       return truncate_dvd(dcr);
1959    case B_FILE_DEV:
1960       /* ***FIXME*** we really need to unlink() the file so that
1961        *  its name can be changed for a relabel.
1962        */
1963       if (ftruncate(m_fd, 0) != 0) {
1964          berrno be;
1965          Mmsg2(errmsg, _("Unable to truncate device %s. ERR=%s\n"), 
1966                print_name(), be.bstrerror());
1967          return false;
1968       }
1969       return true;
1970    }
1971    return false;
1972 }
1973
1974 /* Mount the device.
1975  * If timeout, wait until the mount command returns 0.
1976  * If !timeout, try to mount the device only once.
1977  */
1978 bool DEVICE::mount(int timeout) 
1979 {
1980    Dmsg0(190, "Enter mount\n");
1981    if (is_mounted()) {
1982       return true;
1983    } else if (requires_mount()) {
1984       return do_mount(1, timeout);
1985    }       
1986    return true;
1987 }
1988
1989 /* Unmount the device
1990  * If timeout, wait until the unmount command returns 0.
1991  * If !timeout, try to unmount the device only once.
1992  */
1993 bool DEVICE::unmount(int timeout) 
1994 {
1995    Dmsg0(100, "Enter unmount\n");
1996    if (is_mounted()) {
1997       return do_mount(0, timeout);
1998    }
1999    return true;
2000 }
2001
2002 /* (Un)mount the device */
2003 bool DEVICE::do_mount(int mount, int dotimeout) 
2004 {
2005    POOL_MEM ocmd(PM_FNAME);
2006    POOLMEM *results;
2007    char *icmd;
2008    int status, timeout;
2009    
2010    Dsm_check(1);
2011    if (mount) {
2012       if (is_mounted()) {
2013          Dmsg0(200, "======= mount=1\n");
2014          return true;
2015       }
2016       icmd = device->mount_command;
2017    } else {
2018       if (!is_mounted()) {
2019          Dmsg0(200, "======= mount=0\n");
2020          return true;
2021       }
2022       icmd = device->unmount_command;
2023    }
2024    
2025    clear_freespace_ok();
2026    edit_mount_codes(ocmd, icmd);
2027    
2028    Dmsg2(100, "do_mount: cmd=%s mounted=%d\n", ocmd.c_str(), !!is_mounted());
2029
2030    if (dotimeout) {
2031       /* Try at most 1 time to (un)mount the device. This should perhaps be configurable. */
2032       timeout = 1;
2033    } else {
2034       timeout = 0;
2035    }
2036    results = get_memory(4000);
2037    results[0] = 0;
2038
2039    /* If busy retry each second */
2040    Dmsg1(100, "do_mount run_prog=%s\n", ocmd.c_str());
2041    while ((status = run_program_full_output(ocmd.c_str(), 
2042                        max_open_wait/2, results)) != 0) {
2043       /* Doesn't work with internationalization (This is not a problem) */
2044       if (mount && fnmatch("*is already mounted on*", results, 0) == 0) {
2045          break;
2046       }
2047       if (!mount && fnmatch("* not mounted*", results, 0) == 0) {
2048          break;
2049       }
2050       if (timeout-- > 0) {
2051          /* Sometimes the device cannot be mounted because it is already mounted.
2052           * Try to unmount it, then remount it */
2053          if (mount) {
2054             Dmsg1(400, "Trying to unmount the device %s...\n", print_name());
2055             do_mount(0, 0);
2056          }
2057          bmicrosleep(1, 0);
2058          continue;
2059       }
2060       if (status != 0) {
2061          berrno be;
2062          Dmsg5(100, "Device %s cannot be %smounted. stat=%d result=%s ERR=%s\n", print_name(),
2063               (mount ? "" : "un"), status, results, be.bstrerror(status));
2064          Mmsg(errmsg, _("Device %s cannot be %smounted. ERR=%s\n"), 
2065               print_name(), (mount ? "" : "un"), be.bstrerror(status));
2066       } else {
2067          Dmsg4(100, "Device %s cannot be %smounted. stat=%d ERR=%s\n", print_name(),
2068               (mount ? "" : "un"), status, results);
2069          Mmsg(errmsg, _("Device %s cannot be %smounted. ERR=%s\n"), 
2070               print_name(), (mount ? "" : "un"), results);
2071       }
2072       /*
2073        * Now, just to be sure it is not mounted, try to read the
2074        *  filesystem.
2075        */
2076       DIR* dp;
2077       struct dirent *entry, *result;
2078       int name_max;
2079       int count;
2080       
2081       name_max = pathconf(".", _PC_NAME_MAX);
2082       if (name_max < 1024) {
2083          name_max = 1024;
2084       }
2085          
2086       if (!(dp = opendir(device->mount_point))) {
2087          berrno be;
2088          dev_errno = errno;
2089          Dmsg3(100, "do_mount: failed to open dir %s (dev=%s), ERR=%s\n", 
2090                device->mount_point, print_name(), be.bstrerror());
2091          goto get_out;
2092       }
2093       
2094       entry = (struct dirent *)malloc(sizeof(struct dirent) + name_max + 1000);
2095       count = 0;
2096       while (1) {
2097          if ((readdir_r(dp, entry, &result) != 0) || (result == NULL)) {
2098             dev_errno = EIO;
2099             Dmsg2(129, "do_mount: failed to find suitable file in dir %s (dev=%s)\n", 
2100                   device->mount_point, print_name());
2101             break;
2102          }
2103          if ((strcmp(result->d_name, ".")) && (strcmp(result->d_name, "..")) && (strcmp(result->d_name, ".keep"))) {
2104             count++; /* result->d_name != ., .. or .keep (Gentoo-specific) */
2105             break;
2106          } else {
2107             Dmsg2(129, "do_mount: ignoring %s in %s\n", result->d_name, device->mount_point);
2108          }
2109       }
2110       free(entry);
2111       closedir(dp);
2112       
2113       Dmsg1(100, "do_mount: got %d files in the mount point (not counting ., .. and .keep)\n", count);
2114       
2115       if (count > 0) {
2116          /* If we got more than ., .. and .keep */
2117          /*   there must be something mounted */
2118          if (mount) {
2119             Dmsg1(100, "Did Mount by count=%d\n", count);
2120             break;
2121          } else {
2122             /* An unmount request. We failed to unmount - report an error */
2123             set_mounted(true);
2124             free_pool_memory(results);
2125             Dmsg0(200, "== error mount=1 wanted unmount\n");
2126             return false;
2127          }
2128       }
2129 get_out:
2130       set_mounted(false);
2131       free_pool_memory(results);
2132       Dmsg0(200, "============ mount=0\n");
2133       Dsm_check(1);
2134       return false;
2135    }
2136    
2137    set_mounted(mount);              /* set/clear mounted flag */
2138    free_pool_memory(results);
2139    /* Do not check free space when unmounting */
2140    if (mount && !update_freespace()) {
2141       return false;
2142    }
2143    Dmsg1(200, "============ mount=%d\n", mount);
2144    return true;
2145 }
2146
2147 /*
2148  * Edit codes into (Un)MountCommand, Write(First)PartCommand
2149  *  %% = %
2150  *  %a = archive device name
2151  *  %e = erase (set if cannot mount and first part)
2152  *  %n = part number
2153  *  %m = mount point
2154  *  %v = last part name
2155  *
2156  *  omsg = edited output message
2157  *  imsg = input string containing edit codes (%x)
2158  *
2159  */
2160 void DEVICE::edit_mount_codes(POOL_MEM &omsg, const char *imsg)
2161 {
2162    const char *p;
2163    const char *str;
2164    char add[20];
2165    
2166    POOL_MEM archive_name(PM_FNAME);
2167
2168    omsg.c_str()[0] = 0;
2169    Dmsg1(800, "edit_mount_codes: %s\n", imsg);
2170    for (p=imsg; *p; p++) {
2171       if (*p == '%') {
2172          switch (*++p) {
2173          case '%':
2174             str = "%";
2175             break;
2176          case 'a':
2177             str = dev_name;
2178             break;
2179          case 'e':
2180             if (num_dvd_parts == 0) {
2181                if (truncating || blank_dvd) {
2182                   str = "2";
2183                } else {
2184                   str = "1";
2185                }
2186             } else {
2187                str = "0";
2188             }
2189             break;
2190          case 'n':
2191             bsnprintf(add, sizeof(add), "%d", part);
2192             str = add;
2193             break;
2194          case 'm':
2195             str = device->mount_point;
2196             break;
2197          case 'v':
2198             make_spooled_dvd_filename(this, archive_name);
2199             str = archive_name.c_str();
2200             break;
2201          default:
2202             add[0] = '%';
2203             add[1] = *p;
2204             add[2] = 0;
2205             str = add;
2206             break;
2207          }
2208       } else {
2209          add[0] = *p;
2210          add[1] = 0;
2211          str = add;
2212       }
2213       Dmsg1(1900, "add_str %s\n", str);
2214       pm_strcat(omsg, (char *)str);
2215       Dmsg1(1800, "omsg=%s\n", omsg.c_str());
2216    }
2217 }
2218
2219 /* return the last timer interval (ms) */
2220 btime_t DEVICE::get_timer_count()
2221 {
2222    btime_t old = last_timer;
2223    last_timer = get_current_btime();
2224    return last_timer - old;
2225 }
2226
2227 /* read from fd */
2228 ssize_t DEVICE::read(void *buf, size_t len)
2229 {
2230    ssize_t read_len ;
2231
2232    get_timer_count();
2233
2234    if (this->is_tape()) {
2235       read_len = tape_read(m_fd, buf, len);
2236    } else {
2237       read_len = ::read(m_fd, buf, len);
2238    }
2239
2240    last_tick = get_timer_count();
2241
2242    DevReadTime += last_tick;
2243    VolCatInfo.VolReadTime += last_tick;
2244
2245    if (read_len > 0) {          /* skip error */
2246       DevReadBytes += read_len;
2247    }
2248
2249    return read_len;   
2250 }
2251
2252 /* write to fd */
2253 ssize_t DEVICE::write(const void *buf, size_t len)
2254 {
2255    ssize_t write_len ;
2256
2257    get_timer_count();
2258
2259    if (this->is_tape()) {
2260       write_len = tape_write(m_fd, buf, len);
2261    } else {
2262       write_len = ::write(m_fd, buf, len);
2263    }
2264
2265    last_tick = get_timer_count();
2266
2267    DevWriteTime += last_tick;
2268    VolCatInfo.VolWriteTime += last_tick;
2269
2270    if (write_len > 0) {         /* skip error */
2271       DevWriteBytes += write_len;
2272    }
2273
2274    return write_len;   
2275 }
2276
2277 /* Return the resource name for the device */
2278 const char *DEVICE::name() const
2279 {
2280    return device->hdr.name;
2281 }
2282
2283 /* Returns file position on tape or -1 */
2284 int32_t DEVICE::get_os_tape_file()
2285 {
2286    struct mtget mt_stat;
2287
2288    if (has_cap(CAP_MTIOCGET) &&
2289        tape_ioctl(m_fd, MTIOCGET, (char *)&mt_stat) == 0) {
2290       return mt_stat.mt_fileno;
2291    }
2292    return -1;
2293 }
2294
2295 char *
2296 dev_vol_name(DEVICE *dev)
2297 {
2298    return dev->VolCatInfo.VolCatName;
2299 }
2300
2301
2302 /*
2303  * Free memory allocated for the device
2304  */
2305 void DEVICE::term(void)
2306 {
2307    Dmsg1(900, "term dev: %s\n", print_name());
2308    close();
2309    if (dev_name) {
2310       free_memory(dev_name);
2311       dev_name = NULL;
2312    }
2313    if (prt_name) {
2314       free_memory(prt_name);
2315       prt_name = NULL;
2316    }
2317    if (errmsg) {
2318       free_pool_memory(errmsg);
2319       errmsg = NULL;
2320    }
2321    pthread_mutex_destroy(&m_mutex);
2322    pthread_cond_destroy(&wait);
2323    pthread_cond_destroy(&wait_next_vol);
2324    pthread_mutex_destroy(&spool_mutex);
2325 // rwl_destroy(&lock);
2326    if (attached_dcrs) {
2327       delete attached_dcrs;
2328       attached_dcrs = NULL;
2329    }
2330    if (device) {
2331       device->dev = NULL;
2332    }
2333    free((char *)this);
2334 }
2335
2336 /*
2337  * This routine initializes the device wait timers
2338  */
2339 void init_device_wait_timers(DCR *dcr)
2340 {
2341    DEVICE *dev = dcr->dev;
2342    JCR *jcr = dcr->jcr;
2343
2344    /* ******FIXME******* put these on config variables */
2345    dev->min_wait = 60 * 60;
2346    dev->max_wait = 24 * 60 * 60;
2347    dev->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
2348    dev->wait_sec = dev->min_wait;
2349    dev->rem_wait_sec = dev->wait_sec;
2350    dev->num_wait = 0;
2351    dev->poll = false;
2352    dev->BadVolName[0] = 0;
2353
2354    jcr->min_wait = 60 * 60;
2355    jcr->max_wait = 24 * 60 * 60;
2356    jcr->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
2357    jcr->wait_sec = jcr->min_wait;
2358    jcr->rem_wait_sec = jcr->wait_sec;
2359    jcr->num_wait = 0;
2360
2361 }
2362
2363 void init_jcr_device_wait_timers(JCR *jcr)
2364 {
2365    /* ******FIXME******* put these on config variables */
2366    jcr->min_wait = 60 * 60;
2367    jcr->max_wait = 24 * 60 * 60;
2368    jcr->max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
2369    jcr->wait_sec = jcr->min_wait;
2370    jcr->rem_wait_sec = jcr->wait_sec;
2371    jcr->num_wait = 0;
2372 }
2373
2374
2375 /*
2376  * The dev timers are used for waiting on a particular device 
2377  *
2378  * Returns: true if time doubled
2379  *          false if max time expired
2380  */
2381 bool double_dev_wait_time(DEVICE *dev)
2382 {
2383    dev->wait_sec *= 2;               /* double wait time */
2384    if (dev->wait_sec > dev->max_wait) {   /* but not longer than maxtime */
2385       dev->wait_sec = dev->max_wait;
2386    }
2387    dev->num_wait++;
2388    dev->rem_wait_sec = dev->wait_sec;
2389    if (dev->num_wait >= dev->max_num_wait) {
2390       return false;
2391    }
2392    return true;
2393 }
2394
2395
2396 void set_os_device_parameters(DCR *dcr)
2397 {
2398    DEVICE *dev = dcr->dev;
2399
2400    if (strcmp(dev->dev_name, "/dev/null") == 0) {
2401       return;                            /* no use trying to set /dev/null */
2402    }
2403
2404 #if defined(HAVE_LINUX_OS) || defined(HAVE_WIN32)
2405    struct mtop mt_com;
2406
2407    Dmsg0(100, "In set_os_device_parameters\n");
2408 #if defined(MTSETBLK) 
2409    if (dev->min_block_size == dev->max_block_size &&
2410        dev->min_block_size == 0) {    /* variable block mode */
2411       mt_com.mt_op = MTSETBLK;
2412       mt_com.mt_count = 0;
2413       Dmsg0(100, "Set block size to zero\n");
2414       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2415          dev->clrerror(MTSETBLK);
2416       }
2417    }
2418 #endif
2419 #if defined(MTSETDRVBUFFER)
2420    if (getpid() == 0) {          /* Only root can do this */
2421       mt_com.mt_op = MTSETDRVBUFFER;
2422       mt_com.mt_count = MT_ST_CLEARBOOLEANS;
2423       if (!dev->has_cap(CAP_TWOEOF)) {
2424          mt_com.mt_count |= MT_ST_TWO_FM;
2425       }
2426       if (dev->has_cap(CAP_EOM)) {
2427          mt_com.mt_count |= MT_ST_FAST_MTEOM;
2428       }
2429       Dmsg0(100, "MTSETDRVBUFFER\n");
2430       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2431          dev->clrerror(MTSETDRVBUFFER);
2432       }
2433    }
2434 #endif
2435    return;
2436 #endif
2437
2438 #ifdef HAVE_NETBSD_OS
2439    struct mtop mt_com;
2440    if (dev->min_block_size == dev->max_block_size &&
2441        dev->min_block_size == 0) {    /* variable block mode */
2442       mt_com.mt_op = MTSETBSIZ;
2443       mt_com.mt_count = 0;
2444       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2445          dev->clrerror(MTSETBSIZ);
2446       }
2447       /* Get notified at logical end of tape */
2448       mt_com.mt_op = MTEWARN;
2449       mt_com.mt_count = 1;
2450       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2451          dev->clrerror(MTEWARN);
2452       }
2453    }
2454    return;
2455 #endif
2456
2457 #if HAVE_FREEBSD_OS || HAVE_OPENBSD_OS
2458    struct mtop mt_com;
2459    if (dev->min_block_size == dev->max_block_size &&
2460        dev->min_block_size == 0) {    /* variable block mode */
2461       mt_com.mt_op = MTSETBSIZ;
2462       mt_com.mt_count = 0;
2463       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2464          dev->clrerror(MTSETBSIZ);
2465       }
2466    }
2467 #if defined(MTIOCSETEOTMODEL) 
2468    uint32_t neof;
2469    if (dev->has_cap(CAP_TWOEOF)) {
2470       neof = 2;
2471    } else {
2472       neof = 1;
2473    }
2474    if (ioctl(dev->fd(), MTIOCSETEOTMODEL, (caddr_t)&neof) < 0) {
2475       berrno be;
2476       dev->dev_errno = errno;         /* save errno */
2477       Mmsg2(dev->errmsg, _("Unable to set eotmodel on device %s: ERR=%s\n"),
2478             dev->print_name(), be.bstrerror(dev->dev_errno));
2479       Jmsg(dcr->jcr, M_FATAL, 0, dev->errmsg);
2480    }
2481 #endif
2482    return;
2483 #endif
2484
2485 #ifdef HAVE_SUN_OS
2486    struct mtop mt_com;
2487    if (dev->min_block_size == dev->max_block_size &&
2488        dev->min_block_size == 0) {    /* variable block mode */
2489       mt_com.mt_op = MTSRSZ;
2490       mt_com.mt_count = 0;
2491       if (tape_ioctl(dev->fd(), MTIOCTOP, (char *)&mt_com) < 0) {
2492          dev->clrerror(MTSRSZ);
2493       }
2494    }
2495    return;
2496 #endif
2497 }
2498
2499 static bool dev_get_os_pos(DEVICE *dev, struct mtget *mt_stat)
2500 {
2501    Dmsg0(100, "dev_get_os_pos\n");
2502    return dev->has_cap(CAP_MTIOCGET) && 
2503           tape_ioctl(dev->fd(), MTIOCGET, (char *)mt_stat) == 0 &&
2504           mt_stat->mt_fileno >= 0;
2505 }
2506
2507 static char *modes[] = {
2508    "CREATE_READ_WRITE",
2509    "OPEN_READ_WRITE",
2510    "OPEN_READ_ONLY",
2511    "OPEN_WRITE_ONLY"
2512 };
2513
2514
2515 static char *mode_to_str(int mode)  
2516 {
2517    static char buf[100];
2518    if (mode < 1 || mode > 4) {
2519       bsnprintf(buf, sizeof(buf), "BAD mode=%d", mode);
2520       return buf;
2521     }
2522    return modes[mode-1];
2523 }