]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.c
eeb8a84dd0a71637aec20de29df9dc38e854db4f
[bacula/bacula] / bacula / src / stored / dev.c
1 /*
2  *
3  *   dev.c  -- low level operations on device (storage device)
4  *
5  *              Kern Sibbald
6  *
7  *     NOTE!!!! None of these routines are reentrant. You must
8  *        use lock_device() and unlock_device() at a higher level,
9  *        or use the xxx_device() equivalents.  By moving the
10  *        thread synchronization to a higher level, we permit
11  *        the higher level routines to "seize" the device and 
12  *        to carry out operations without worrying about who
13  *        set what lock (i.e. race conditions).
14  *
15  *     Note, this is the device dependent code, and my have
16  *           to be modified for each system, but is meant to
17  *           be as "generic" as possible.
18  * 
19  *     The purpose of this code is to develop a SIMPLE Storage
20  *     daemon. More complicated coding (double buffering, writer
21  *     thread, ...) is left for a later version.
22  *
23  *     Unfortunately, I have had to add more and more complication
24  *     to this code. This was not foreseen as noted above, and as
25  *     a consequence has lead to something more contorted than is
26  *     really necessary -- KES.  Note, this contortion has been
27  *     corrected to a large extent by a rewrite (Apr MMI).
28  *
29  *   Version $Id$
30  */
31 /*
32    Copyright (C) 2000-2003 Kern Sibbald and John Walker
33
34    This program is free software; you can redistribute it and/or
35    modify it under the terms of the GNU General Public License as
36    published by the Free Software Foundation; either version 2 of
37    the License, or (at your option) any later version.
38
39    This program is distributed in the hope that it will be useful,
40    but WITHOUT ANY WARRANTY; without even the implied warranty of
41    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
42    General Public License for more details.
43
44    You should have received a copy of the GNU General Public
45    License along with this program; if not, write to the Free
46    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
47    MA 02111-1307, USA.
48
49  */
50
51 /*
52  * Handling I/O errors and end of tape conditions are a bit tricky.
53  * This is how it is currently done when writting.
54  * On either an I/O error or end of tape,
55  * we will stop writing on the physical device (no I/O recovery is
56  * attempted at least in this daemon). The state flag will be sent
57  * to include ST_EOT, which is ephimeral, and ST_WEOT, which is
58  * persistent. Lots of routines clear ST_EOT, but ST_WEOT is
59  * cleared only when the problem goes away.  Now when ST_WEOT
60  * is set all calls to write_dev() are handled as usual. However,
61  * in write_block() instead of attempting to write the block to
62  * the physical device, it is chained into a list of blocks written
63  * after the EOT condition.  In addition, all threads are blocked
64  * from writing on the tape by calling lock(), and thread other
65  * than the first thread to hit the EOT will block on a condition
66  * variable. The first thread to hit the EOT will continue to
67  * be able to read and write the tape (he sort of tunnels through
68  * the locking mechanism -- see lock() for details).
69  *
70  * Now presumably somewhere higher in the chain of command 
71  * (device.c), someone will notice the EOT condition and 
72  * get a new tape up, get the tape label read, and mark 
73  * the label for rewriting. Then this higher level routine 
74  * will write the unwritten buffer to the new volume.
75  * Finally, he will release
76  * any blocked threads by doing a broadcast on the condition
77  * variable.  At that point, we should be totally back in 
78  * business with no lost data.
79  */
80
81
82 #include "bacula.h"
83 #include "stored.h"
84
85 /* Forward referenced functions */
86 int dev_is_tape(DEVICE *dev);
87 void clrerror_dev(DEVICE *dev, int func);
88 int fsr_dev(DEVICE *dev, int num);
89
90 extern int debug_level;
91
92 /* 
93  * Allocate and initialize the DEVICE structure
94  * Note, if dev is non-NULL, it is already allocated,
95  * thus we neither allocate it nor free it. This allows
96  * the caller to put the packet in shared memory.
97  *
98  *  Note, for a tape, the device->device_name is the device name
99  *     (e.g. /dev/nst0), and for a file, the device name
100  *     is the directory in which the file will be placed.
101  *
102  */
103 DEVICE *
104 init_dev(DEVICE *dev, DEVRES *device)
105 {
106    struct stat statp;
107    int tape, fifo;
108    int errstat;
109
110    /* Check that device is available */
111    if (stat(device->device_name, &statp) < 0) {
112       if (dev) {
113          dev->dev_errno = errno;
114       } 
115       Emsg2(M_FATAL, 0, "Unable to stat device %s : %s\n", device->device_name, 
116             strerror(errno));
117       return NULL;
118    }
119    tape = FALSE;
120    fifo = FALSE;
121    if (S_ISDIR(statp.st_mode)) {
122       tape = FALSE;
123    } else if (S_ISCHR(statp.st_mode)) {
124       tape = TRUE;
125    } else if (S_ISFIFO(statp.st_mode)) {
126       fifo = TRUE;
127    } else {
128       if (dev) {
129          dev->dev_errno = ENODEV;
130       }
131       Emsg2(M_FATAL, 0, _("%s is an unknown device type. Must be tape or directory. st_mode=%x\n"),
132          dev_name, statp.st_mode);
133       return NULL;
134    }
135    if (!dev) {
136       dev = (DEVICE *)get_memory(sizeof(DEVICE));
137       memset(dev, 0, sizeof(DEVICE));
138       dev->state = ST_MALLOC;
139    } else {
140       memset(dev, 0, sizeof(DEVICE));
141    }
142
143    /* Copy user supplied device parameters from Resource */
144    dev->dev_name = get_memory(strlen(device->device_name)+1);
145    strcpy(dev->dev_name, device->device_name);
146    dev->capabilities = device->cap_bits;
147    dev->min_block_size = device->min_block_size;
148    dev->max_block_size = device->max_block_size;
149    dev->max_volume_size = device->max_volume_size;
150    dev->max_file_size = device->max_file_size;
151    dev->volume_capacity = device->volume_capacity;
152    dev->max_rewind_wait = device->max_rewind_wait;
153    dev->max_open_wait = device->max_open_wait;
154    dev->max_open_vols = device->max_open_vols;
155    dev->device = device;
156
157    if (tape) {
158       dev->state |= ST_TAPE;
159    } else if (fifo) {
160       dev->state |= ST_FIFO;
161       dev->capabilities |= CAP_STREAM; /* set stream device */
162    } else {
163       dev->state |= ST_FILE;
164    }
165
166    if (dev->max_block_size > 1000000) {
167       Emsg3(M_ERROR, 0, _("Block size %u on device %s is too large, using default %u\n"), 
168          dev->max_block_size, dev->dev_name, DEFAULT_BLOCK_SIZE);
169       dev->max_block_size = 0;
170    }
171    if (dev->max_block_size % TAPE_BSIZE != 0) {
172       Emsg2(M_WARNING, 0, _("Max block size %u not multiple of device %s block size.\n"),
173          dev->max_block_size, dev->dev_name);
174    }   
175          
176    dev->errmsg = get_pool_memory(PM_EMSG);
177    *dev->errmsg = 0;
178
179    if ((errstat = pthread_mutex_init(&dev->mutex, NULL)) != 0) {
180       dev->dev_errno = errstat;
181       Mmsg1(&dev->errmsg, _("Unable to init mutex: ERR=%s\n"), strerror(errstat));
182       Emsg0(M_FATAL, 0, dev->errmsg);
183    }
184    if ((errstat = pthread_cond_init(&dev->wait, NULL)) != 0) {
185       dev->dev_errno = errstat;
186       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
187       Emsg0(M_FATAL, 0, dev->errmsg);
188    }
189    if ((errstat = pthread_cond_init(&dev->wait_next_vol, NULL)) != 0) {
190       dev->dev_errno = errstat;
191       Mmsg1(&dev->errmsg, _("Unable to init cond variable: ERR=%s\n"), strerror(errstat));
192       Emsg0(M_FATAL, 0, dev->errmsg);
193    }
194    dev->fd = -1;
195    Dmsg2(29, "init_dev: tape=%d dev_name=%s\n", dev_is_tape(dev), dev->dev_name);
196    return dev;
197 }
198
199 /* Open the device with the operating system and
200  * initialize buffer pointers.
201  *
202  * Note, for a tape, the VolName is the name we give to the
203  *    volume (not really used here), but for a file, the
204  *    VolName represents the name of the file to be created/opened.
205  *    In the case of a file, the full name is the device name
206  *    (archive_name) with the VolName concatenated.
207  */
208 int
209 open_dev(DEVICE *dev, char *VolName, int mode)
210 {
211    POOLMEM *archive_name;
212
213    if (dev->state & ST_OPENED) {
214       /*
215        *  *****FIXME***** how to handle two threads wanting
216        *  different volumes mounted???? E.g. one is waiting
217        *  for the next volume to be mounted, and a new job
218        *  starts and snatches up the device.
219        */
220       if (VolName && strcmp(dev->VolCatInfo.VolCatName, VolName) != 0) {
221          return -1;
222       }
223       dev->use_count++;
224       Mmsg2(&dev->errmsg, _("WARNING!!!! device %s opened %d times!!!\n"), 
225             dev->dev_name, dev->use_count);
226       Emsg1(M_WARNING, 0, "%s", dev->errmsg);
227       return dev->fd;
228    }
229    if (VolName) {
230       bstrncpy(dev->VolCatInfo.VolCatName, VolName, sizeof(dev->VolCatInfo.VolCatName));
231    }
232
233    Dmsg3(29, "open_dev: tape=%d dev_name=%s vol=%s\n", dev_is_tape(dev), 
234          dev->dev_name, dev->VolCatInfo.VolCatName);
235    dev->state &= ~(ST_LABEL|ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
236    if (dev->state & (ST_TAPE|ST_FIFO)) {
237       int timeout;
238       Dmsg0(29, "open_dev: device is tape\n");
239       if (mode == OPEN_READ_WRITE) {
240          dev->mode = O_RDWR | O_BINARY;
241       } else if (mode == OPEN_READ_ONLY) {
242          dev->mode = O_RDONLY | O_BINARY;
243       } else if (mode == OPEN_WRITE_ONLY) {
244          dev->mode = O_WRONLY | O_BINARY;
245       } else {
246          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
247       }
248       timeout = dev->max_open_wait;
249       errno = 0;
250       if (dev->state & ST_FIFO && timeout) {
251          /* Set open timer */
252          dev->tid = start_thread_timer(pthread_self(), timeout);
253       }
254       /* If busy retry each second for max_open_wait seconds */
255       while ((dev->fd = open(dev->dev_name, dev->mode, MODE_RW)) < 0) {
256          if (errno == EAGAIN) {
257             continue;
258          }
259          if (errno == EBUSY && timeout-- > 0) {
260             Dmsg2(100, "Device %s busy. ERR=%s\n", dev->dev_name, strerror(errno));
261             bmicrosleep(1, 0);
262             continue;
263          }
264          dev->dev_errno = errno;
265          Mmsg2(&dev->errmsg, _("stored: unable to open device %s: ERR=%s\n"), 
266                dev->dev_name, strerror(dev->dev_errno));
267          /* Stop any open timer we set */
268          if (dev->tid) {
269             stop_thread_timer(dev->tid);
270             dev->tid = 0;
271          }
272          Emsg0(M_FATAL, 0, dev->errmsg);
273          break;
274       }
275       if (dev->fd >= 0) {
276          dev->dev_errno = 0;
277          dev->state |= ST_OPENED;
278          dev->use_count++;
279          update_pos_dev(dev);             /* update position */
280       }
281       /* Stop any open() timer we started */
282       if (dev->tid) {
283          stop_thread_timer(dev->tid);
284          dev->tid = 0;
285       }
286       Dmsg1(29, "open_dev: tape %d opened\n", dev->fd);
287    } else {
288       /*
289        * Handle opening of File Archive (not a tape)
290        */
291       if (VolName == NULL || *VolName == 0) {
292          Mmsg(&dev->errmsg, _("Could not open file device %s. No Volume name given.\n"),
293             dev->dev_name);
294          return -1;
295       }
296       archive_name = get_pool_memory(PM_FNAME);
297       pm_strcpy(&archive_name, dev->dev_name);
298       if (archive_name[strlen(archive_name)] != '/') {
299          pm_strcat(&archive_name, "/");
300       }
301       pm_strcat(&archive_name, VolName);
302       Dmsg1(29, "open_dev: device is disk %s\n", archive_name);
303       if (mode == OPEN_READ_WRITE) {
304          dev->mode = O_CREAT | O_RDWR | O_BINARY;
305       } else if (mode == OPEN_READ_ONLY) {
306          dev->mode = O_RDONLY | O_BINARY;
307       } else if (mode == OPEN_WRITE_ONLY) {
308          dev->mode = O_WRONLY | O_BINARY;
309       } else {
310          Emsg0(M_ABORT, 0, _("Illegal mode given to open_dev.\n")); 
311       }
312       /* If creating file, give 0640 permissions */
313       if ((dev->fd = open(archive_name, dev->mode, 0640)) < 0) {
314          dev->dev_errno = errno;
315          Mmsg2(&dev->errmsg, _("Could not open: %s, ERR=%s\n"), archive_name, strerror(dev->dev_errno));
316          Emsg0(M_FATAL, 0, dev->errmsg);
317       } else {
318          dev->dev_errno = 0;
319          dev->state |= ST_OPENED;
320          dev->use_count++;
321          update_pos_dev(dev);                /* update position */
322       }
323       Dmsg1(29, "open_dev: disk fd=%d opened\n", dev->fd);
324       free_pool_memory(archive_name);
325    }
326    return dev->fd;
327 }
328
329 /*
330  * Rewind the device.
331  *  Returns: 1 on success
332  *           0 on failure
333  */
334 int rewind_dev(DEVICE *dev)
335 {
336    struct mtop mt_com;
337    unsigned int i;
338
339    Dmsg0(29, "rewind_dev\n");
340    if (dev->fd < 0) {
341       dev->dev_errno = EBADF;
342       Mmsg1(&dev->errmsg, _("Bad call to rewind_dev. Device %s not open\n"),
343             dev->dev_name);
344       Emsg0(M_FATAL, 0, dev->errmsg);
345       return 0;
346    }
347    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT | ST_EOF | ST_WEOT);  /* remove EOF/EOT flags */
348    dev->block_num = dev->file = 0;
349    dev->file_addr = 0;
350    if (dev->state & ST_TAPE) {
351       mt_com.mt_op = MTREW;
352       mt_com.mt_count = 1;
353       /* If we get an I/O error on rewind, it is probably because
354        * the drive is actually busy. We loop for (about 5 minutes)
355        * retrying every 5 seconds.
356        */
357       for (i=dev->max_rewind_wait; ; i -= 5) {
358          if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
359             if (i == dev->max_rewind_wait) {
360                Dmsg1(200, "Rewind error, %s. retrying ...\n", strerror(errno));
361             }
362             clrerror_dev(dev, MTREW);
363             if (dev->dev_errno == EIO && i > 0) {
364                Dmsg0(200, "Sleeping 5 seconds.\n");
365                bmicrosleep(5, 0);
366                continue;
367             }
368             Mmsg2(&dev->errmsg, _("Rewind error on %s. ERR=%s.\n"),
369                dev->dev_name, strerror(dev->dev_errno));
370             return 0;
371          }
372          break;
373       }
374    } else if (dev->state & ST_FILE) {
375       if (lseek(dev->fd, (off_t)0, SEEK_SET) < 0) {
376          dev->dev_errno = errno;
377          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
378             dev->dev_name, strerror(dev->dev_errno));
379          return 0;
380       }
381    }
382    return 1;
383 }
384
385 /* 
386  * Position device to end of medium (end of data)
387  *  Returns: 1 on succes
388  *           0 on error
389  */
390 int 
391 eod_dev(DEVICE *dev)
392 {
393    struct mtop mt_com;
394    struct mtget mt_stat;
395    int stat = 0;
396    off_t pos;
397
398    Dmsg0(29, "eod_dev\n");
399    if (dev->state & ST_EOT) {
400       return 1;
401    }
402    dev->state &= ~(ST_EOF);  /* remove EOF flags */
403    dev->block_num = dev->file = 0;
404    dev->file_addr = 0;
405    if (dev->state & (ST_FIFO | ST_PROG)) {
406       return 1;
407    }
408    if (!(dev->state & ST_TAPE)) {
409       pos = lseek(dev->fd, (off_t)0, SEEK_END);
410 //    Dmsg1(000, "====== Seek to %lld\n", pos);
411       if (pos >= 0) {
412          update_pos_dev(dev);
413          dev->state |= ST_EOT;
414          return 1;
415       }
416       return 0;
417    }
418 #ifdef MTEOM
419    if (dev_cap(dev, CAP_EOM)) {
420       mt_com.mt_op = MTEOM;
421       mt_com.mt_count = 1;
422       if ((stat=ioctl(dev->fd, MTIOCTOP, (char *)&mt_com)) < 0) {
423          Dmsg1(50, "ioctl error: %s\n", strerror(dev->dev_errno));
424          clrerror_dev(dev, mt_com.mt_op);
425          update_pos_dev(dev);
426          Mmsg2(&dev->errmsg, _("ioctl MTEOM error on %s. ERR=%s.\n"),
427             dev->dev_name, strerror(dev->dev_errno));
428          return 0;
429       }
430       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
431          dev->dev_errno = errno;
432          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
433             dev->dev_name, strerror(dev->dev_errno));
434          return 0;
435       }
436       Dmsg2(200, "EOD file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
437       dev->file = mt_stat.mt_fileno;
438
439    /*
440     * Rewind then use FSF until EOT reached
441     */
442    } else {
443 #else
444    {
445 #endif
446       if (!rewind_dev(dev)) {
447          return 0;
448       }
449       while (!(dev->state & ST_EOT)) {
450          Dmsg0(200, "Do fsf 1\n");
451          if (!fsf_dev(dev, 1)) {
452             Dmsg0(200, "fsf_dev error.\n");
453             return 0;
454          }
455       }
456    }
457    /*
458     * Some drivers leave us after second EOF when doing
459     * MTEOM, so we must backup so that appending overwrites
460     * the second EOF.
461     */
462    if (dev_cap(dev, CAP_BSFATEOM)) {
463       stat =  (bsf_dev(dev, 1) == 0);
464       dev->file++;                    /* keep same file */
465    } else {
466       update_pos_dev(dev);                   /* update position */
467       stat = 1;
468    }
469    Dmsg1(200, "EOD dev->file=%d\n", dev->file);
470    return stat;
471 }
472
473 /*
474  * Set the position of the device -- only for files
475  *   For other devices, there is no generic way to do it.
476  *  Returns: 1 on succes
477  *           0 on error
478  */
479 int update_pos_dev(DEVICE *dev)
480 {
481    off_t pos;
482    int stat = 0;
483
484    if (dev->fd < 0) {
485       dev->dev_errno = EBADF;
486       Mmsg0(&dev->errmsg, _("Bad device call. Archive not open\n"));
487       Emsg0(M_FATAL, 0, dev->errmsg);
488       return 0;
489    }
490
491    /* Find out where we are */
492    if (dev->state & ST_FILE) {
493       dev->file = 0;
494       dev->file_addr = 0;
495       pos = lseek(dev->fd, (off_t)0, SEEK_CUR);
496       if (pos < 0) {
497          Pmsg1(000, "Seek error: ERR=%s\n", strerror(dev->dev_errno));
498          dev->dev_errno = errno;
499          Mmsg2(&dev->errmsg, _("lseek error on %s. ERR=%s.\n"),
500             dev->dev_name, strerror(dev->dev_errno));
501       } else {
502          stat = 1;
503          dev->file_addr = pos;
504       }
505       return stat;
506    }
507    return 1;
508 }
509
510
511 /* 
512  * Return the status of the device.  This was meant
513  * to be a generic routine. Unfortunately, it doesn't
514  * seem possible (at least I do not know how to do it
515  * currently), which means that for the moment, this
516  * routine has very little value.
517  *
518  *   Returns: 1 on success
519  *            0 on error
520  */
521 int
522 status_dev(DEVICE *dev, uint32_t *status)
523 {
524    struct mtget mt_stat;
525    uint32_t stat = 0;
526
527    if (dev->state & (ST_EOT | ST_WEOT)) {
528       stat |= BMT_EOD;
529       Dmsg0(-20, " EOD");
530    }
531    if (dev->state & ST_EOF) {
532       stat |= BMT_EOF;
533       Dmsg0(-20, " EOF");
534    }
535    if (dev->state & ST_TAPE) {
536       stat |= BMT_TAPE;
537       Dmsg0(-20," Driver status:");
538       Dmsg2(-20," file=%d block=%d\n", dev->file, dev->block_num);
539       if (ioctl(dev->fd, MTIOCGET, (char *)&mt_stat) < 0) {
540          dev->dev_errno = errno;
541          Mmsg2(&dev->errmsg, _("ioctl MTIOCGET error on %s. ERR=%s.\n"),
542             dev->dev_name, strerror(dev->dev_errno));
543          return 0;
544       }
545       Dmsg0(-20, " Device status:");
546
547 #if defined(HAVE_LINUX_OS)
548       if (GMT_EOF(mt_stat.mt_gstat)) {
549          stat |= BMT_EOF;
550          Dmsg0(-20, " EOF");
551       }
552       if (GMT_BOT(mt_stat.mt_gstat)) {
553          stat |= BMT_BOT;
554          Dmsg0(-20, " BOT");
555       }
556       if (GMT_EOT(mt_stat.mt_gstat)) {
557          stat |= BMT_EOT;
558          Dmsg0(-20, " EOT");
559       }
560       if (GMT_SM(mt_stat.mt_gstat)) {
561          stat |= BMT_SM;
562          Dmsg0(-20, " SM");
563       }
564       if (GMT_EOD(mt_stat.mt_gstat)) {
565          stat |= BMT_EOD;
566          Dmsg0(-20, " EOD");
567       }
568       if (GMT_WR_PROT(mt_stat.mt_gstat)) {
569          stat |= BMT_WR_PROT;
570          Dmsg0(-20, " WR_PROT");
571       }
572       if (GMT_ONLINE(mt_stat.mt_gstat)) {
573          stat |= BMT_ONLINE;
574          Dmsg0(-20, " ONLINE");
575       }
576       if (GMT_DR_OPEN(mt_stat.mt_gstat)) {
577          stat |= BMT_DR_OPEN;
578          Dmsg0(-20, " DR_OPEN");       
579       }
580       if (GMT_IM_REP_EN(mt_stat.mt_gstat)) {
581          stat |= BMT_IM_REP_EN;
582          Dmsg0(-20, " IM_REP_EN");
583       }
584 #endif /* !SunOS && !OSF */
585       Dmsg2(-20, " file=%d block=%d\n", mt_stat.mt_fileno, mt_stat.mt_blkno);
586    } else {
587       stat |= BMT_ONLINE | BMT_BOT;
588    }
589    *status = stat; 
590    return 1;
591 }
592
593
594 /*
595  * Load medium in device
596  *  Returns: 1 on success
597  *           0 on failure
598  */
599 int load_dev(DEVICE *dev)
600 {
601 #ifdef MTLOAD
602    struct mtop mt_com;
603 #endif
604
605    if (dev->fd < 0) {
606       dev->dev_errno = EBADF;
607       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
608       Emsg0(M_FATAL, 0, dev->errmsg);
609       return 0;
610    }
611    if (!(dev->state & ST_TAPE)) {
612       return 1;
613    }
614 #ifndef MTLOAD
615    Dmsg0(200, "stored: MTLOAD command not available\n");
616    dev->dev_errno = ENOTTY;           /* function not available */
617    Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
618          dev->dev_name, strerror(dev->dev_errno));      return 0;
619    return 0;
620 #else
621
622    dev->block_num = dev->file = 0;
623    dev->file_addr = 0;
624    mt_com.mt_op = MTLOAD;
625    mt_com.mt_count = 1;
626    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
627       dev->dev_errno = errno;
628       Mmsg2(&dev->errmsg, _("ioctl MTLOAD error on %s. ERR=%s.\n"),
629          dev->dev_name, strerror(dev->dev_errno));      return 0;
630    }
631    return 1;
632 #endif
633 }
634
635 /*
636  * Rewind device and put it offline
637  *  Returns: 1 on success
638  *           0 on failure
639  */
640 int offline_dev(DEVICE *dev)
641 {
642    struct mtop mt_com;
643
644    if (dev->fd < 0) {
645       dev->dev_errno = EBADF;
646       Mmsg0(&dev->errmsg, _("Bad call to load_dev. Archive not open\n"));
647       Emsg0(M_FATAL, 0, dev->errmsg);
648       return 0;
649    }
650    if (!(dev->state & ST_TAPE)) {
651       return 1;
652    }
653
654    dev->block_num = dev->file = 0;
655    dev->file_addr = 0;
656 #ifdef MTUNLOCK
657    mt_com.mt_op = MTUNLOCK;
658    mt_com.mt_count = 1;
659    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
660 #endif
661    mt_com.mt_op = MTOFFL;
662    mt_com.mt_count = 1;
663    if (ioctl(dev->fd, MTIOCTOP, (char *)&mt_com) < 0) {
664       dev->dev_errno = errno;
665       Mmsg2(&dev->errmsg, _("ioctl MTOFFL error on %s. ERR=%s.\n"),
666          dev->dev_name, strerror(dev->dev_errno));
667       return 0;
668    }
669    Dmsg1(100, "Offlined device %s\n", dev->dev_name);
670    return 1;
671 }
672
673
674 /* 
675  * Foward space a file  
676  *   Returns: 1 on success
677  *            0 on failure
678  */
679 int
680 fsf_dev(DEVICE *dev, int num)
681
682    struct mtop mt_com;
683    int stat = 0;
684
685    if (dev->fd < 0) {
686       dev->dev_errno = EBADF;
687       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
688       Emsg0(M_FATAL, 0, dev->errmsg);
689       return 0;
690    }
691
692    if (!(dev->state & ST_TAPE)) {
693       return 1;
694    }
695    if (dev->state & ST_EOT) {
696       dev->dev_errno = 0;
697       Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
698       return 0;
699    }
700    if (dev->state & ST_EOF) {
701       Dmsg0(200, "ST_EOF set on entry to FSF\n");
702    }
703    if (dev->state & ST_EOT) {
704       Dmsg0(200, "ST_EOT set on entry to FSF\n");
705    }
706       
707    Dmsg0(29, "fsf_dev\n");
708    dev->block_num = 0;
709    if (dev_cap(dev, CAP_FSF)) {
710       POOLMEM *rbuf;
711       int rbuf_len;
712       Dmsg0(200, "FSF has cap_fsf\n");
713       if (dev->max_block_size == 0) {
714          rbuf_len = DEFAULT_BLOCK_SIZE;
715       } else {
716          rbuf_len = dev->max_block_size;
717       }
718       rbuf = get_memory(rbuf_len);
719       mt_com.mt_op = MTFSF;
720       mt_com.mt_count = 1;
721       while (num-- && !(dev->state & ST_EOT)) {
722          Dmsg0(200, "Doing read before fsf\n");
723          if ((stat = read(dev->fd, (char *)rbuf, rbuf_len)) < 0) {
724             if (errno == ENOMEM) {     /* tape record exceeds buf len */
725                stat = rbuf_len;        /* This is OK */
726             } else {
727                dev->state |= ST_EOT;
728                clrerror_dev(dev, -1);
729                Dmsg2(200, "Set ST_EOT read errno=%d. ERR=%s\n", dev->dev_errno,
730                   strerror(dev->dev_errno));
731                Mmsg2(&dev->errmsg, _("read error on %s. ERR=%s.\n"),
732                   dev->dev_name, strerror(dev->dev_errno));
733                Dmsg1(200, "%s", dev->errmsg);
734                break;
735             }
736          }
737          if (stat == 0) {                /* EOF */
738             update_pos_dev(dev);
739             Dmsg1(200, "End of File mark from read. File=%d\n", dev->file+1);
740             /* Two reads of zero means end of tape */
741             if (dev->state & ST_EOF) {
742                dev->state |= ST_EOT;
743                Dmsg0(200, "Set ST_EOT\n");
744                break;
745             } else {
746                dev->state |= ST_EOF;
747                dev->file++;
748                dev->file_addr = 0;
749                continue;
750             }
751          } else {                        /* Got data */
752             dev->state &= ~(ST_EOF|ST_EOT);
753          }
754
755          Dmsg0(200, "Doing MTFSF\n");
756          stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
757          if (stat < 0) {                 /* error => EOT */
758             dev->state |= ST_EOT;
759             Dmsg0(200, "Set ST_EOT\n");
760             clrerror_dev(dev, MTFSF);
761             Mmsg2(&dev->errmsg, _("ioctl MTFSF error on %s. ERR=%s.\n"),
762                dev->dev_name, strerror(dev->dev_errno));
763             Dmsg0(200, "Got < 0 for MTFSF\n");
764             Dmsg1(200, "%s", dev->errmsg);
765          } else {
766             dev->state |= ST_EOF;     /* just read EOF */
767             dev->file++;
768             dev->file_addr = 0;
769          }   
770       }
771       free_memory(rbuf);
772    
773    /*
774     * No FSF, so use FSR to simulate it
775     */
776    } else {
777       Dmsg0(200, "Doing FSR for FSF\n");
778       while (num-- && !(dev->state & ST_EOT)) {
779          fsr_dev(dev, INT32_MAX);    /* returns -1 on EOF or EOT */
780       }
781       if (dev->state & ST_EOT) {
782          dev->dev_errno = 0;
783          Mmsg1(&dev->errmsg, _("Device %s at End of Tape.\n"), dev->dev_name);
784          stat = -1;
785       } else {
786          stat = 0;
787       }
788    }
789    update_pos_dev(dev);
790    Dmsg1(200, "Return %d from FSF\n", stat);
791    if (dev->state & ST_EOF)
792       Dmsg0(200, "ST_EOF set on exit FSF\n");
793    if (dev->state & ST_EOT)
794       Dmsg0(200, "ST_EOT set on exit FSF\n");
795    Dmsg1(200, "Return from FSF file=%d\n", dev->file);
796    return stat == 0 ? 1 : 0;
797 }
798
799 /* 
800  * Backward space a file  
801  */
802 int
803 bsf_dev(DEVICE *dev, int num)
804
805    struct mtop mt_com;
806    int stat;
807
808    if (dev->fd < 0) {
809       dev->dev_errno = EBADF;
810       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
811       Emsg0(M_FATAL, 0, dev->errmsg);
812       return -1;
813    }
814
815    if (!(dev->state & ST_TAPE)) {
816       return 0;
817    }
818    Dmsg0(29, "bsf_dev\n");
819    dev->state &= ~(ST_EOT|ST_EOF);
820    dev->file -= num;
821    dev->file_addr = 0;
822    mt_com.mt_op = MTBSF;
823    mt_com.mt_count = num;
824    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
825    if (stat < 0) {
826       clrerror_dev(dev, MTBSF);
827       Mmsg2(&dev->errmsg, _("ioctl MTBSF error on %s. ERR=%s.\n"),
828          dev->dev_name, strerror(dev->dev_errno));
829    }
830    update_pos_dev(dev);
831    return stat;
832 }
833
834
835 /* 
836  * Foward space a record
837  */
838 int
839 fsr_dev(DEVICE *dev, int num)
840
841    struct mtop mt_com;
842    int stat;
843
844    if (dev->fd < 0) {
845       dev->dev_errno = EBADF;
846       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
847       Emsg0(M_FATAL, 0, dev->errmsg);
848       return -1;
849    }
850
851    if (!(dev->state & ST_TAPE)) {
852       return 0;
853    }
854    Dmsg0(29, "fsr_dev\n");
855    dev->block_num += num;
856    mt_com.mt_op = MTFSR;
857    mt_com.mt_count = num;
858    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
859    if (stat == 0) {
860       dev->state &= ~ST_EOF;
861    } else {
862       if (dev->state & ST_EOF) {
863          dev->state |= ST_EOT;
864       } else {
865          dev->state |= ST_EOF;           /* assume EOF */
866          dev->file++;
867          dev->file_addr = 0;
868       }
869       clrerror_dev(dev, MTFSR);
870       Mmsg2(&dev->errmsg, _("ioctl MTFSR error on %s. ERR=%s.\n"),
871          dev->dev_name, strerror(dev->dev_errno));
872    }
873    update_pos_dev(dev);
874    return stat;
875 }
876
877 /* 
878  * Backward space a record
879  *   Returns:  0 on success
880  *            -1 on failure
881  */
882 int
883 bsr_dev(DEVICE *dev, int num)
884
885    struct mtop mt_com;
886    int stat;
887
888    if (dev->fd < 0) {
889       dev->dev_errno = EBADF;
890       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
891       Emsg0(M_FATAL, 0, dev->errmsg);
892       return -1;
893    }
894
895    if (!(dev->state & ST_TAPE)) {
896       return 0;
897    }
898
899    if (!dev_cap(dev, CAP_BSR)) {
900       Mmsg1(&dev->errmsg, _("ioctl MTBSR not permitted on %s.\n"),
901          dev->dev_name);
902       return 0;
903    }
904
905    Dmsg0(29, "bsr_dev\n");
906    dev->block_num -= num;
907    dev->state &= ~(ST_EOF|ST_EOT|ST_EOF);
908    mt_com.mt_op = MTBSR;
909    mt_com.mt_count = num;
910    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
911    if (stat < 0) {
912       clrerror_dev(dev, MTBSR);
913       Mmsg2(&dev->errmsg, _("ioctl MTBSR error on %s. ERR=%s.\n"),
914          dev->dev_name, strerror(dev->dev_errno));
915    }
916    update_pos_dev(dev);
917    return stat;
918 }
919
920
921
922 /*
923  * Write an end of file on the device
924  *   Returns: 0 on success
925  *            non-zero on failure
926  */
927 int 
928 weof_dev(DEVICE *dev, int num)
929
930    struct mtop mt_com;
931    int stat;
932
933    if (dev->fd < 0) {
934       dev->dev_errno = EBADF;
935       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
936       Emsg0(M_FATAL, 0, dev->errmsg);
937       return -1;
938    }
939
940    if (!(dev->state & ST_TAPE)) {
941       return 0;
942    }
943    dev->state &= ~(ST_EOT | ST_EOF);  /* remove EOF/EOT flags */
944    dev->block_num = 0;
945    Dmsg0(29, "weof_dev\n");
946    mt_com.mt_op = MTWEOF;
947    mt_com.mt_count = num;
948    stat = ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
949    if (stat == 0) {
950       dev->file++;
951       dev->file_addr = 0;
952    } else {
953       clrerror_dev(dev, MTWEOF);
954       Mmsg2(&dev->errmsg, _("ioctl MTWEOF error on %s. ERR=%s.\n"),
955          dev->dev_name, strerror(dev->dev_errno));
956    }
957    return stat;
958 }
959
960 /*
961  * Return string message with last error in English
962  *  Be careful not to call this routine from within dev.c
963  *  while editing an Mmsg(&) or you will end up in a recursive
964  *  loop creating a Segmentation Violation.
965  */
966 char *
967 strerror_dev(DEVICE *dev)
968 {
969    return dev->errmsg;
970 }
971
972
973 /*
974  * If implemented in system, clear the tape
975  * error status.
976  */
977 void
978 clrerror_dev(DEVICE *dev, int func)
979 {
980    char *msg = NULL;
981
982    dev->dev_errno = errno;         /* save errno */
983    if (errno == EIO) {
984       dev->VolCatInfo.VolCatErrors++;
985    }
986
987    if (!(dev->state & ST_TAPE)) {
988       return;
989    }
990    if (errno == ENOTTY || errno == ENOSYS) { /* Function not implemented */
991       switch (func) {
992          case -1:
993             Emsg0(M_ABORT, 0, "Got ENOTTY on read/write!\n");
994             break;
995          case MTWEOF:
996             msg = "WTWEOF";
997             dev->capabilities &= ~CAP_EOF; /* turn off feature */
998             break;
999 #ifdef MTEOM
1000          case MTEOM:
1001             msg = "WTEOM";
1002             dev->capabilities &= ~CAP_EOM; /* turn off feature */
1003             break;
1004 #endif 
1005          case MTFSF:
1006             msg = "MTFSF";
1007             dev->capabilities &= ~CAP_FSF; /* turn off feature */
1008             break;
1009          case MTBSF:
1010             msg = "MTBSF";
1011             dev->capabilities &= ~CAP_BSF; /* turn off feature */
1012             break;
1013          case MTFSR:
1014             msg = "MTFSR";
1015             dev->capabilities &= ~CAP_FSR; /* turn off feature */
1016             break;
1017          case MTBSR:
1018             msg = "MTBSR";
1019             dev->capabilities &= ~CAP_BSR; /* turn off feature */
1020             break;
1021          default:
1022             msg = "Unknown";
1023             break;
1024       }
1025       if (msg != NULL) {
1026          dev->dev_errno = ENOSYS;
1027          Mmsg1(&dev->errmsg, _("This device does not support %s.\n"), msg);
1028          Emsg0(M_ERROR, 0, dev->errmsg);
1029       }
1030    }
1031 /* Found on Linux */
1032 #ifdef MTIOCLRERR
1033 {
1034    struct mtop mt_com;
1035    mt_com.mt_op = MTIOCLRERR;
1036    mt_com.mt_count = 1;
1037    /* Clear any error condition on the tape */
1038    ioctl(dev->fd, MTIOCTOP, (char *)&mt_com);
1039    Dmsg0(200, "Did MTIOCLRERR\n");
1040 }
1041 #endif
1042
1043 /* Typically on FreeBSD */
1044 #ifdef MTIOCERRSTAT
1045 {
1046    /* Read and clear SCSI error status */
1047    union mterrstat mt_errstat;
1048    Pmsg2(000, "Doing MTIOCERRSTAT errno=%d ERR=%s\n", dev->dev_errno,
1049       strerror(dev->dev_errno));
1050    ioctl(dev->fd, MTIOCERRSTAT, (char *)&mt_errstat);
1051 }
1052 #endif
1053 }
1054
1055 /*
1056  * Flush buffer contents
1057  *  No longer used.
1058  */
1059 int flush_dev(DEVICE *dev)
1060 {
1061    return 1;
1062 }
1063
1064 static void do_close(DEVICE *dev)
1065 {
1066
1067    Dmsg0(29, "really close_dev\n");
1068    close(dev->fd);
1069    /* Clean up device packet so it can be reused */
1070    dev->fd = -1;
1071    dev->state &= ~(ST_OPENED|ST_LABEL|ST_READ|ST_APPEND|ST_EOT|ST_WEOT|ST_EOF);
1072    dev->file = dev->block_num = 0;
1073    dev->file_addr = 0;
1074    dev->EndFile = dev->EndBlock = 0;
1075    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
1076    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
1077    dev->use_count--;
1078    if (dev->tid) {
1079       stop_thread_timer(dev->tid);
1080       dev->tid = 0;
1081    }
1082 }
1083
1084 /* 
1085  * Close the device
1086  */
1087 void
1088 close_dev(DEVICE *dev)
1089 {
1090    if (!dev) {
1091       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
1092       Emsg0(M_FATAL, 0, dev->errmsg);
1093       return;
1094    }
1095    if (dev->fd >= 0 && dev->use_count == 1) {
1096       do_close(dev);
1097    } else {    
1098       Dmsg0(29, "close_dev but in use so leave open.\n");
1099       dev->use_count--;
1100    }
1101 }
1102
1103 /*
1104  * Used when unmounting the device
1105  */
1106 void force_close_dev(DEVICE *dev)
1107 {
1108    if (!dev) {
1109       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
1110       Emsg0(M_FATAL, 0, dev->errmsg);
1111       return;
1112    }
1113    Dmsg0(29, "really close_dev\n");
1114    do_close(dev);
1115 }
1116
1117 int truncate_dev(DEVICE *dev)
1118 {
1119    if (dev->state & ST_TAPE) {
1120       return 1;
1121    }
1122    if (ftruncate(dev->fd, 0) != 0) {
1123       Mmsg1(&dev->errmsg, _("Unable to truncate device. ERR=%s\n"), strerror(errno));
1124       return 0;
1125    }
1126    return 1;
1127 }
1128
1129 int 
1130 dev_is_tape(DEVICE *dev)
1131 {  
1132    return (dev->state & ST_TAPE) ? 1 : 0;
1133 }
1134
1135
1136 /*
1137  * return 1 if the device is read for write, and 0 otherwise
1138  *   This is meant for checking at the end of a job to see
1139  *   if we still have a tape (perhaps not if at end of tape
1140  *   and the job is canceled).
1141  */
1142 int
1143 dev_can_write(DEVICE *dev)
1144 {
1145    if ((dev->state & ST_OPENED) &&  (dev->state & ST_APPEND) &&
1146        (dev->state & ST_LABEL)  && !(dev->state & ST_WEOT)) {
1147       return 1;
1148    } else {
1149       return 0;
1150    }
1151 }
1152
1153 char *
1154 dev_name(DEVICE *dev)
1155 {
1156    return dev->dev_name;
1157 }
1158
1159 char *
1160 dev_vol_name(DEVICE *dev)
1161 {
1162    return dev->VolCatInfo.VolCatName;
1163 }
1164
1165 uint32_t dev_block(DEVICE *dev)
1166 {
1167    update_pos_dev(dev);
1168    return dev->block_num;
1169 }
1170
1171 uint32_t dev_file(DEVICE *dev)
1172 {
1173    update_pos_dev(dev);
1174    return dev->file;
1175 }
1176
1177 /* 
1178  * Free memory allocated for the device
1179  */
1180 void
1181 term_dev(DEVICE *dev)
1182 {
1183    if (!dev) {
1184       dev->dev_errno = EBADF;
1185       Mmsg0(&dev->errmsg, _("Bad call to fsf_dev. Archive not open\n"));
1186       Emsg0(M_FATAL, 0, dev->errmsg);
1187       return;
1188    }
1189    do_close(dev);
1190    Dmsg0(29, "term_dev\n");
1191    if (dev->dev_name) {
1192       free_memory(dev->dev_name);
1193       dev->dev_name = NULL;
1194    }
1195    if (dev->errmsg) {
1196       free_pool_memory(dev->errmsg);
1197       dev->errmsg = NULL;
1198    }
1199    pthread_mutex_destroy(&dev->mutex);
1200    pthread_cond_destroy(&dev->wait);
1201    pthread_cond_destroy(&dev->wait_next_vol);
1202    if (dev->state & ST_MALLOC) {
1203       free_pool_memory((POOLMEM *)dev);
1204    }
1205 }
1206
1207 /*
1208  * We attach a jcr to the device so that when
1209  *   the Volume is full during writing, a  
1210  *   JobMedia record will be created for this 
1211  *   Job.
1212  */
1213 void attach_jcr_to_device(DEVICE *dev, JCR *jcr)
1214 {
1215    jcr->prev_dev = (JCR *)NULL;
1216    jcr->next_dev = dev->attached_jcrs;
1217    if (dev->attached_jcrs) {
1218       dev->attached_jcrs->prev_dev = jcr;
1219    }
1220    dev->attached_jcrs = jcr;
1221    Dmsg1(100, "Attached Job %s\n", jcr->Job);
1222 }
1223
1224 void detach_jcr_from_device(DEVICE *dev, JCR *jcr)
1225 {
1226    if (!jcr->prev_dev) {
1227       dev->attached_jcrs = jcr->next_dev;
1228    } else {
1229       jcr->prev_dev->next_dev = jcr->next_dev;
1230    }
1231    if (jcr->next_dev) {
1232       jcr->next_dev->prev_dev = jcr->prev_dev; 
1233    }
1234    jcr->next_dev = jcr->prev_dev = NULL;
1235    Dmsg1(100, "Detached Job %s\n", jcr->Job);
1236 }
1237
1238 JCR *next_attached_jcr(DEVICE *dev, JCR *jcr)
1239 {
1240    if (jcr == (JCR *)NULL) {
1241       return dev->attached_jcrs;
1242    }
1243    return jcr->next_dev;
1244 }