]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/dev.h
kes Make DEVICE fd private. Its new name is m_fd, and can be
[bacula/bacula] / bacula / src / stored / dev.h
1 /*
2  * Definitions for using the Device functions in Bacula
3  *  Tape and File storage access
4  *
5  * Kern Sibbald, MM
6  *
7  *   Version $Id$
8  *
9  */
10 /*
11    Bacula® - The Network Backup Solution
12
13    Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
14
15    The main author of Bacula is Kern Sibbald, with contributions from
16    many others, a complete list can be found in the file AUTHORS.
17    This program is Free Software; you can redistribute it and/or
18    modify it under the terms of version two of the GNU General Public
19    License as published by the Free Software Foundation plus additions
20    that are listed in the file LICENSE.
21
22    This program is distributed in the hope that it will be useful, but
23    WITHOUT ANY WARRANTY; without even the implied warranty of
24    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25    General Public License for more details.
26
27    You should have received a copy of the GNU General Public License
28    along with this program; if not, write to the Free Software
29    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
30    02110-1301, USA.
31
32    Bacula® is a registered trademark of John Walker.
33    The licensor of Bacula is the Free Software Foundation Europe
34    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
35    Switzerland, email:ftf@fsfeurope.org.
36 */
37
38
39 #ifndef __DEV_H
40 #define __DEV_H 1
41
42 #undef DCR                            /* used by Bacula */
43
44 /* #define NEW_LOCK 1 */
45
46 #define new_lock_device(dev)             _new_lock_device(__FILE__, __LINE__, (dev))
47 #define new_lock_device_state(dev,state) _new_lock_device(__FILE__, __LINE__, (dev), (state))
48 #define new_unlock_device(dev)           _new_unlock_device(__FILE__, __LINE__, (dev))
49
50 #define lock_device(d) _lock_device(__FILE__, __LINE__, (d))
51 #define unlock_device(d) _unlock_device(__FILE__, __LINE__, (d))
52 #define block_device(d, s) _block_device(__FILE__, __LINE__, (d), s)
53 #define unblock_device(d) _unblock_device(__FILE__, __LINE__, (d))
54 #define steal_device_lock(d, p, s) _steal_device_lock(__FILE__, __LINE__, (d), (p), s)
55 #define give_back_device_lock(d, p) _give_back_device_lock(__FILE__, __LINE__, (d), (p))
56
57 /* Return values from wait_for_sysop() */
58 enum {
59    W_ERROR = 1,
60    W_TIMEOUT,
61    W_POLL,
62    W_MOUNT,
63    W_WAKE
64 };
65
66 /* Arguments to open_dev() */
67 enum {
68    CREATE_READ_WRITE = 1,
69    OPEN_READ_WRITE,
70    OPEN_READ_ONLY,
71    OPEN_WRITE_ONLY
72 };
73
74 /* Device types */
75 enum {
76    B_FILE_DEV = 1,
77    B_TAPE_DEV,
78    B_DVD_DEV,
79    B_FIFO_DEV,
80    B_PROG_DEV
81 };
82
83 /* Generic status bits returned from status_dev() */
84 #define BMT_TAPE           (1<<0)     /* is tape device */
85 #define BMT_EOF            (1<<1)     /* just read EOF */
86 #define BMT_BOT            (1<<2)     /* at beginning of tape */
87 #define BMT_EOT            (1<<3)     /* end of tape reached */
88 #define BMT_SM             (1<<4)     /* DDS setmark */
89 #define BMT_EOD            (1<<5)     /* DDS at end of data */
90 #define BMT_WR_PROT        (1<<6)     /* tape write protected */
91 #define BMT_ONLINE         (1<<7)     /* tape online */
92 #define BMT_DR_OPEN        (1<<8)     /* tape door open */
93 #define BMT_IM_REP_EN      (1<<9)     /* immediate report enabled */
94
95
96 /* Bits for device capabilities */
97 #define CAP_EOF            (1<<0)     /* has MTWEOF */
98 #define CAP_BSR            (1<<1)     /* has MTBSR */
99 #define CAP_BSF            (1<<2)     /* has MTBSF */
100 #define CAP_FSR            (1<<3)     /* has MTFSR */
101 #define CAP_FSF            (1<<4)     /* has MTFSF */
102 #define CAP_EOM            (1<<5)     /* has MTEOM */
103 #define CAP_REM            (1<<6)     /* is removable media */
104 #define CAP_RACCESS        (1<<7)     /* is random access device */
105 #define CAP_AUTOMOUNT      (1<<8)     /* Read device at start to see what is there */
106 #define CAP_LABEL          (1<<9)     /* Label blank tapes */
107 #define CAP_ANONVOLS       (1<<10)    /* Mount without knowing volume name */
108 #define CAP_ALWAYSOPEN     (1<<11)    /* always keep device open */
109 #define CAP_AUTOCHANGER    (1<<12)    /* AutoChanger */
110 #define CAP_OFFLINEUNMOUNT (1<<13)    /* Offline before unmount */
111 #define CAP_STREAM         (1<<14)    /* Stream device */
112 #define CAP_BSFATEOM       (1<<15)    /* Backspace file at EOM */
113 #define CAP_FASTFSF        (1<<16)    /* Fast forward space file */
114 #define CAP_TWOEOF         (1<<17)    /* Write two eofs for EOM */
115 #define CAP_CLOSEONPOLL    (1<<18)    /* Close device on polling */
116 #define CAP_POSITIONBLOCKS (1<<19)    /* Use block positioning */
117 #define CAP_MTIOCGET       (1<<20)    /* Basic support for fileno and blkno */
118 #define CAP_REQMOUNT       (1<<21)    /* Require mount to read files back (typically: DVD) */
119 #define CAP_CHECKLABELS    (1<<22)    /* Check for ANSI/IBM labels */
120
121 /* Test state */
122 #define dev_state(dev, st_state) ((dev)->state & (st_state))
123
124 /* Device state bits */
125 #define ST_XXXXXX          (1<<0)     /* was ST_OPENED */
126 #define ST_XXXXX           (1<<1)     /* was ST_TAPE */
127 #define ST_XXXX            (1<<2)     /* was ST_FILE */
128 #define ST_XXX             (1<<3)     /* was ST_FIFO */
129 #define ST_XX              (1<<4)     /* was ST_DVD */
130 #define ST_X               (1<<5)     /* was ST_PROG */
131
132 #define ST_LABEL           (1<<6)     /* label found */
133 #define ST_MALLOC          (1<<7)     /* dev packet malloc'ed in init_dev() */
134 #define ST_APPEND          (1<<8)     /* ready for Bacula append */
135 #define ST_READ            (1<<9)     /* ready for Bacula read */
136 #define ST_EOT             (1<<10)    /* at end of tape */
137 #define ST_WEOT            (1<<11)    /* Got EOT on write */
138 #define ST_EOF             (1<<12)    /* Read EOF i.e. zero bytes */
139 #define ST_NEXTVOL         (1<<13)    /* Start writing on next volume */
140 #define ST_SHORT           (1<<14)    /* Short block read */
141 #define ST_MOUNTED         (1<<15)    /* the device is mounted to the mount point */
142 #define ST_MEDIA           (1<<16)    /* Media found in mounted device */
143 #define ST_OFFLINE         (1<<17)    /* set offline by operator */
144 #define ST_PART_SPOOLED    (1<<18)    /* spooling part */
145 #define ST_FREESPACE_OK    (1<<19)    /* Have valid freespace for DVD */
146
147 /* dev_blocked states (mutually exclusive) */
148 enum {
149    BST_NOT_BLOCKED = 0,               /* not blocked */
150    BST_UNMOUNTED,                     /* User unmounted device */
151    BST_WAITING_FOR_SYSOP,             /* Waiting for operator to mount tape */
152    BST_DOING_ACQUIRE,                 /* Opening/validating/moving tape */
153    BST_WRITING_LABEL,                 /* Labeling a tape */
154    BST_UNMOUNTED_WAITING_FOR_SYSOP,   /* User unmounted during wait for op */
155    BST_MOUNT                          /* Mount request */
156 };
157
158 /* Volume Catalog Information structure definition */
159 struct VOLUME_CAT_INFO {
160    /* Media info for the current Volume */
161    uint32_t VolCatJobs;               /* number of jobs on this Volume */
162    uint32_t VolCatFiles;              /* Number of files */
163    uint32_t VolCatBlocks;             /* Number of blocks */
164    uint64_t VolCatBytes;              /* Number of bytes written */
165    uint32_t VolCatParts;              /* Number of parts written */
166    uint32_t VolCatMounts;             /* Number of mounts this volume */
167    uint32_t VolCatErrors;             /* Number of errors this volume */
168    uint32_t VolCatWrites;             /* Number of writes this volume */
169    uint32_t VolCatReads;              /* Number of reads this volume */
170    uint64_t VolCatRBytes;             /* Number of bytes read */
171    uint32_t VolCatRecycles;           /* Number of recycles this volume */
172    uint32_t EndFile;                  /* Last file number */
173    uint32_t EndBlock;                 /* Last block number */
174    int32_t  LabelType;                /* Bacula/ANSI/IBM */
175    int32_t  Slot;                     /* >0=Slot loaded, 0=nothing, -1=unknown */
176    uint32_t VolCatMaxJobs;            /* Maximum Jobs to write to volume */
177    uint32_t VolCatMaxFiles;           /* Maximum files to write to volume */
178    uint64_t VolCatMaxBytes;           /* Max bytes to write to volume */
179    uint64_t VolCatCapacityBytes;      /* capacity estimate */
180    btime_t  VolReadTime;              /* time spent reading */
181    btime_t  VolWriteTime;             /* time spent writing this Volume */
182    int64_t  VolMediaId;               /* MediaId */
183    utime_t  VolFirstWritten;          /* Time of first write */
184    bool     InChanger;                /* Set if vol in current magazine */
185    char VolCatStatus[20];             /* Volume status */
186    char VolCatName[MAX_NAME_LENGTH];  /* Desired volume to mount */
187 };
188
189
190 typedef struct s_steal_lock {
191    pthread_t  no_wait_id;             /* id of no wait thread */
192    int        dev_blocked;            /* state */
193    int        dev_prev_blocked;       /* previous blocked state */
194 } bsteal_lock_t;
195
196 class DEVRES;                        /* Device resource defined in stored_conf.h */
197
198 class DCR; /* forward reference */
199 /*
200  * Device structure definition. There is one of these for
201  *  each physical device. Everything here is "global" to
202  *  that device and effects all jobs using the device.
203  */
204 class DEVICE {
205 private:
206    int m_fd;                          /* file descriptor */
207 public:
208    dlist *attached_dcrs;              /* attached DCR list */
209    pthread_mutex_t mutex;             /* access control */
210    pthread_mutex_t spool_mutex;       /* mutex for updating spool_size */
211    pthread_cond_t wait;               /* thread wait variable */
212    pthread_cond_t wait_next_vol;      /* wait for tape to be mounted */
213    pthread_t no_wait_id;              /* this thread must not wait */
214    int dev_blocked;                   /* set if we must wait (i.e. change tape) */
215    int dev_prev_blocked;              /* previous blocked state */
216    int num_waiting;                   /* number of threads waiting */
217    int num_writers;                   /* number of writing threads */
218    int reserved_device;               /* number of device reservations */
219
220    /* New access control in process of being implemented */
221    brwlock_t lock;                    /* New mutual exclusion lock */
222
223    int capabilities;                  /* capabilities mask */
224    int state;                         /* state mask */
225    int dev_errno;                     /* Our own errno */
226    int mode;                          /* read/write modes */
227    int openmode;                      /* parameter passed to open_dev (useful to reopen the device) */
228    int dev_type;                      /* device type */
229    bool autoselect;                   /* Autoselect in autochanger */
230    int label_type;                    /* Bacula/ANSI/IBM label types */
231    uint32_t drive_index;              /* Autochanger drive index (base 0) */
232    int32_t  Slot;                     /* Slot currently in drive (base 1) */
233    POOLMEM *dev_name;                 /* Physical device name */
234    POOLMEM *prt_name;                 /* Name used for display purposes */
235    char *errmsg;                      /* nicely edited error message */
236    uint32_t block_num;                /* current block number base 0 */
237    uint32_t file;                     /* current file number base 0 */
238    uint64_t file_addr;                /* Current file read/write address */
239    uint64_t file_size;                /* Current file size */
240    uint32_t EndBlock;                 /* last block written */
241    uint32_t EndFile;                  /* last file written */
242    uint32_t min_block_size;           /* min block size */
243    uint32_t max_block_size;           /* max block size */
244    uint64_t max_volume_size;          /* max bytes to put on one volume */
245    uint64_t max_file_size;            /* max file size to put in one file on volume */
246    uint64_t volume_capacity;          /* advisory capacity */
247    uint64_t max_spool_size;           /* maximum spool file size */
248    uint64_t spool_size;               /* current spool size for this device */
249    uint32_t max_rewind_wait;          /* max secs to allow for rewind */
250    uint32_t max_open_wait;            /* max secs to allow for open */
251    uint32_t max_open_vols;            /* max simultaneous open volumes */
252    
253    uint64_t max_part_size;            /* max part size */
254    uint64_t part_size;                /* current part size */
255    uint32_t part;                     /* current part number (starts at 0) */
256    uint64_t part_start;               /* current part start address (relative to the whole volume) */
257    uint32_t num_dvd_parts;            /* number of parts WRITTEN on the DVD */
258    /* state ST_FREESPACE_OK is set if free_space is valid */
259    uint64_t free_space;               /* current free space on medium (without the current part) */
260    int free_space_errno;              /* indicates errno getting freespace */
261    bool truncating;                   /* if set, we are currently truncating the DVD */
262    bool blank_dvd;                    /* if set, we have a blank DVD in the drive */
263    
264    
265    utime_t  vol_poll_interval;        /* interval between polling Vol mount */
266    DEVRES *device;                    /* pointer to Device Resource */
267    btimer_t *tid;                     /* timer id */
268
269    VOLUME_CAT_INFO VolCatInfo;        /* Volume Catalog Information */
270    VOLUME_LABEL VolHdr;               /* Actual volume label */
271    char pool_name[MAX_NAME_LENGTH];   /* pool name */
272    char pool_type[MAX_NAME_LENGTH];   /* pool type */
273
274    /* Device wait times ***FIXME*** look at durations */
275    char BadVolName[MAX_NAME_LENGTH];  /* Last wrong Volume mounted */
276    bool poll;                         /* set to poll Volume */
277    int min_wait;
278    int max_wait;
279    int max_num_wait;
280    int wait_sec;
281    int rem_wait_sec;
282    int num_wait;
283
284    btime_t last_timer;        /* used by read/write/seek to get stats (usec) */
285    btime_t last_tick;         /* contains last read/write time (usec) */
286
287    btime_t  DevReadTime;
288    btime_t  DevWriteTime;
289    uint64_t DevWriteBytes;
290    uint64_t DevReadBytes;
291
292    /* Methods */
293    btime_t get_timer_count();         /* return the last timer interval (ms) */
294
295    int has_cap(int cap) const { return capabilities & cap; }
296    void clear_cap(int cap) { capabilities &= ~cap; }
297    void set_cap(int cap) { capabilities |= cap; }
298    int is_autochanger() const { return capabilities & CAP_AUTOCHANGER; }
299    int requires_mount() const { return capabilities & CAP_REQMOUNT; }
300    int is_removable() const { return capabilities & CAP_REM; }
301    int is_tape() const { return dev_type == B_TAPE_DEV; }
302    int is_file() const { return dev_type == B_FILE_DEV; }
303    int is_fifo() const { return dev_type == B_FIFO_DEV; }
304    int is_dvd() const  { return dev_type == B_DVD_DEV; }
305    int is_prog() const  { return dev_type == B_PROG_DEV; }
306    int is_open() const { return m_fd >= 0; }
307    int is_offline() const { return state & ST_OFFLINE; }
308    int is_labeled() const { return state & ST_LABEL; }
309    int is_mounted() const { return state & ST_MOUNTED; }
310    int is_part_spooled() const { return state & ST_PART_SPOOLED; }
311    int have_media() const { return state & ST_MEDIA; }
312    int is_short_block() const { return state & ST_SHORT; }
313    int is_busy() const { return (state & ST_READ) || num_writers || reserved_device; }
314    int at_eof() const { return state & ST_EOF; }
315    int at_eot() const { return state & ST_EOT; }
316    int at_weot() const { return state & ST_WEOT; }
317    int can_append() const { return state & ST_APPEND; }
318    int is_freespace_ok() const { return state & ST_FREESPACE_OK; }
319    /*
320     * can_write() is meant for checking at the end of a job to see
321     * if we still have a tape (perhaps not if at end of tape
322     * and the job is canceled).
323     */
324    int can_write() const { return is_open() && can_append() &&
325                             is_labeled() && !at_weot(); }
326    int can_read() const   { return state & ST_READ; }
327    bool can_steal_lock() const { return dev_blocked &&
328                     (dev_blocked == BST_UNMOUNTED ||
329                      dev_blocked == BST_WAITING_FOR_SYSOP ||
330                      dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP); };
331    bool waiting_for_mount() const { return 
332                     (dev_blocked == BST_UNMOUNTED ||
333                      dev_blocked == BST_WAITING_FOR_SYSOP ||
334                      dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP); };
335    const char *strerror() const;
336    const char *archive_name() const;
337    const char *name() const;
338    const char *print_name() const;    /* Name for display purposes */
339    void set_ateof(); /* in dev.c */
340    void set_ateot(); /* in dev.c */
341    void set_eot() { state |= ST_EOT; };
342    void set_eof() { state |= ST_EOF; };
343    void set_append() { state |= ST_APPEND; };
344    void set_labeled() { state |= ST_LABEL; };
345    inline void set_read() { state |= ST_READ; };
346    void set_offline() { state |= ST_OFFLINE; };
347    void set_mounted() { state |= ST_MOUNTED; };
348    void set_media() { state |= ST_MEDIA; };
349    void set_short_block() { state |= ST_SHORT; };
350    void set_freespace_ok() { state |= ST_FREESPACE_OK; }
351    void set_part_spooled(int val) { if (val) state |= ST_PART_SPOOLED; \
352           else state &= ~ST_PART_SPOOLED;
353    };
354    void set_mounted(int val) { if (val) state |= ST_MOUNTED; \
355           else state &= ~ST_MOUNTED; };
356    void clear_append() { state &= ~ST_APPEND; };
357    void clear_read() { state &= ~ST_READ; };
358    void clear_labeled() { state &= ~ST_LABEL; };
359    void clear_offline() { state &= ~ST_OFFLINE; };
360    void clear_eot() { state &= ~ST_EOT; };
361    void clear_eof() { state &= ~ST_EOF; };
362    void clear_opened() { m_fd = -1; };
363    void clear_mounted() { state &= ~ST_MOUNTED; };
364    void clear_media() { state &= ~ST_MEDIA; };
365    void clear_short_block() { state &= ~ST_SHORT; };
366    void clear_freespace_ok() { state &= ~ST_FREESPACE_OK; };
367    char *bstrerror(void) { return errmsg; };
368    char *print_errmsg() { return errmsg; };
369
370    void block(int why);          /* in dev.c */
371    void unblock();               /* in dev.c */
372    void close();                 /* in dev.c */
373    void close_part(DCR *dcr);    /* in dev.c */
374    bool truncate(DCR *dcr);      /* in dev.c */
375    int open(DCR *dcr, int mode); /* in dev.c */
376    void term(void);              /* in dev.c */
377    ssize_t read(void *buf, size_t len); /* in dev.c */
378    ssize_t write(const void *buf, size_t len);  /* in dev.c */
379    bool rewind(DCR *dcr);        /* in dev.c */
380    bool mount(int timeout);      /* in dev.c */
381    bool unmount(int timeout);    /* in dev.c */
382    void edit_mount_codes(POOL_MEM &omsg, const char *imsg); /* in dev.c */
383    bool offline_or_rewind();     /* in dev.c */
384    bool offline();               /* in dev.c */
385    bool bsf(int count);          /* in dev.c */
386    bool eod(DCR *dcr);           /* in dev.c */
387    bool fsr(int num);            /* in dev.c */
388    bool fsf(int num);            /* in dev.c */
389    bool bsr(int num);            /* in dev.c */
390    bool weof(int num);           /* in dev.c */
391    void lock_door();             /* in dev.c */
392    void unlock_door();           /* in dev.c */
393    bool scan_dir_for_volume(DCR *dcr); /* in scan.c */
394    bool reposition(DCR *dcr, uint32_t rfile, uint32_t rblock); /* in dev.c */
395    void clrerror(int func);      /* in dev.c */
396    boffset_t lseek(DCR *dcr, boffset_t offset, int whence); /* in dev.c */
397    bool update_pos(DCR *dcr);    /* in dev.c */
398    bool update_freespace();      /* in dvd.c */
399
400    void set_blocked(int block) { dev_blocked = block; };
401    int  get_blocked() const { return dev_blocked; };
402    uint32_t get_file() const { return file; };
403    uint32_t get_block() const { return block_num; };
404    const char *print_blocked() const; /* in dev.c */
405    bool is_blocked() const { return dev_blocked != BST_NOT_BLOCKED; };
406    int fd() const { return m_fd; };
407
408 private:
409    bool do_mount(int mount, int timeout);      /* in dev.c */
410    void set_mode(int omode);                   /* in dev.c */
411    void open_tape_device(DCR *dcr, int omode); /* in dev.c */
412    void open_file_device(DCR *dcr, int omode); /* in dev.c */
413    void open_dvd_device(DCR *dcr, int omode);  /* in dev.c */
414 };
415
416 /* Note, these return int not bool! */
417 inline const char *DEVICE::strerror() const { return errmsg; }
418 inline const char *DEVICE::archive_name() const { return dev_name; }
419 inline const char *DEVICE::print_name() const { return prt_name; }
420
421 /*
422  * Device Context (or Control) Record.
423  *  There is one of these records for each Job that is using
424  *  the device. Items in this record are "local" to the Job and
425  *  do not affect other Jobs. Note, a job can have multiple
426  *  DCRs open, each pointing to a different device. 
427  */
428 class DCR {
429 public:
430    dlink dev_link;                    /* link to attach to dev */
431    JCR *jcr;                          /* pointer to JCR */
432    DEVICE *dev;                       /* pointer to device */
433    DEVRES *device;                    /* pointer to device resource */
434    DEV_BLOCK *block;                  /* pointer to block */
435    DEV_RECORD *rec;                   /* pointer to record */
436    int spool_fd;                      /* fd if spooling */
437    bool spool_data;                   /* set to spool data */
438    bool spooling;                     /* set when actually spooling */
439    bool despooling;                   /* set when despooling */
440    bool despool_wait;                 /* waiting for despooling */
441    bool dev_locked;                   /* set if dev already locked */
442    bool NewVol;                       /* set if new Volume mounted */
443    bool WroteVol;                     /* set if Volume written */
444    bool NewFile;                      /* set when EOF written */
445    bool reserved_device;              /* set if reserve done */
446    bool any_volume;                   /* Any OK for dir_find_next... */
447    bool attached_to_dev;              /* set when attached to dev */
448    uint32_t VolFirstIndex;            /* First file index this Volume */
449    uint32_t VolLastIndex;             /* Last file index this Volume */
450    uint32_t FileIndex;                /* Current File Index */
451    uint32_t EndFile;                  /* End file written */
452    uint32_t StartFile;                /* Start write file */
453    uint32_t StartBlock;               /* Start write block */
454    uint32_t EndBlock;                 /* Ending block written */
455    int64_t job_spool_size;            /* Current job spool size */
456    int64_t max_job_spool_size;        /* Max job spool size */
457    char VolumeName[MAX_NAME_LENGTH];  /* Volume name */
458    char pool_name[MAX_NAME_LENGTH];   /* pool name */
459    char pool_type[MAX_NAME_LENGTH];   /* pool type */
460    char media_type[MAX_NAME_LENGTH];  /* media type */
461    char dev_name[MAX_NAME_LENGTH];    /* dev name */
462    int Copy;                          /* identical copy number */
463    int Stripe;                        /* RAIT stripe */
464    VOLUME_CAT_INFO VolCatInfo;        /* Catalog info for desired volume */
465 };
466
467 /*
468  * Volume reservation class -- see reserve.c
469  */
470 class VOLRES { 
471 public:
472    dlink link;
473    char *vol_name;
474    DEVICE *dev;
475    DCR *dcr;
476 };
477
478
479 /* Get some definition of function to position
480  *  to the end of the medium in MTEOM. System
481  *  dependent. Arrgggg!
482  */
483 #ifndef MTEOM
484 #ifdef  MTSEOD
485 #define MTEOM MTSEOD
486 #endif
487 #ifdef MTEOD
488 #undef MTEOM
489 #define MTEOM MTEOD
490 #endif
491 #endif
492
493 #endif