]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/device.c
Fix new DCRs in bscan + 32/64 bit editing checks in btape
[bacula/bacula] / bacula / src / stored / device.c
1 /*
2  *
3  *  Higher Level Device routines. 
4  *  Knows about Bacula tape labels and such  
5  *
6  *  NOTE! In general, subroutines that have the word
7  *        "device" in the name do locking.  Subroutines
8  *        that have the word "dev" in the name do not
9  *        do locking.  Thus if xxx_device() calls
10  *        yyy_dev(), all is OK, but if xxx_device()
11  *        calls yyy_device(), everything will hang.
12  *        Obviously, no zzz_dev() is allowed to call
13  *        a www_device() or everything falls apart. 
14  *
15  * Concerning the routines lock_device() and block_device()
16  *  see the end of this module for details.  In general,
17  *  blocking a device leaves it in a state where all threads
18  *  other than the current thread block when they attempt to 
19  *  lock the device. They remain suspended (blocked) until the device
20  *  is unblocked. So, a device is blocked during an operation
21  *  that takes a long time (initialization, mounting a new
22  *  volume, ...) locking a device is done for an operation
23  *  that takes a short time such as writing data to the   
24  *  device.
25  *
26  *
27  *   Kern Sibbald, MM, MMI
28  *                            
29  *   Version $Id$
30  */
31 /*
32    Copyright (C) 2000-2004 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 #include "bacula.h"                   /* pull in global headers */
52 #include "stored.h"                   /* pull in Storage Deamon headers */
53
54 /* Forward referenced functions */
55
56 extern char my_name[];
57 extern int debug_level;
58
59 /*
60  * This is the dreaded moment. We either have an end of
61  * medium condition or worse, and error condition.
62  * Attempt to "recover" by obtaining a new Volume.
63  *
64  * Here are a few things to know:
65  *  jcr->VolCatInfo contains the info on the "current" tape for this job.
66  *  dev->VolCatInfo contains the info on the tape in the drive.
67  *    The tape in the drive could have changed several times since 
68  *    the last time the job used it (jcr->VolCatInfo).
69  *  jcr->VolumeName is the name of the current/desired tape in the drive.
70  *
71  * We enter with device locked, and 
72  *     exit with device locked.
73  *
74  * Note, we are called only from one place in block.c
75  *
76  *  Returns: true  on success
77  *           false on failure
78  */
79 bool fixup_device_block_write_error(DCR *dcr, DEV_BLOCK *block)
80 {
81    uint32_t stat;
82    char PrevVolName[MAX_NAME_LENGTH];
83    DEV_BLOCK *label_blk;
84    char b1[30], b2[30];
85    time_t wait_time;
86    char dt[MAX_TIME_LENGTH];
87    JCR *jcr = dcr->jcr;
88    DEVICE *dev = dcr->dev;
89
90    wait_time = time(NULL);
91    stat = status_dev(dev);
92    if (!(stat & BMT_EOD)) {
93       return false;                    /* this really shouldn't happen */
94    }
95
96    Dmsg0(100, "======= Got EOD ========\n");
97
98    block_device(dev, BST_DOING_ACQUIRE);
99    /* Unlock, but leave BLOCKED */
100    unlock_device(dev);
101
102    /* Create a jobmedia record for this job */
103    if (!dir_create_jobmedia_record(dcr)) {
104        Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
105             jcr->VolCatInfo.VolCatName, jcr->Job);
106        P(dev->mutex);
107        unblock_device(dev);
108        return false;
109    }
110
111    bstrncpy(dev->VolCatInfo.VolCatStatus, "Full", sizeof(dev->VolCatInfo.VolCatStatus));
112    Dmsg2(100, "Call update_vol_info Stat=%s Vol=%s\n", 
113       dev->VolCatInfo.VolCatStatus, dev->VolCatInfo.VolCatName);
114    dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
115    dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
116    if (!dir_update_volume_info(dcr, false)) {    /* send Volume info to Director */
117       P(dev->mutex);
118       unblock_device(dev);
119       return false;                /* device locked */
120    }
121    Dmsg0(100, "Back from update_vol_info\n");
122
123    bstrncpy(PrevVolName, dev->VolCatInfo.VolCatName, sizeof(PrevVolName));
124    bstrncpy(dev->VolHdr.PrevVolName, PrevVolName, sizeof(dev->VolHdr.PrevVolName));
125
126    label_blk = new_block(dev);
127
128    /* Inform User about end of medium */
129    Jmsg(jcr, M_INFO, 0, _("End of medium on Volume \"%s\" Bytes=%s Blocks=%s at %s.\n"), 
130         PrevVolName, edit_uint64_with_commas(dev->VolCatInfo.VolCatBytes, b1),
131         edit_uint64_with_commas(dev->VolCatInfo.VolCatBlocks, b2),
132         bstrftime(dt, sizeof(dt), time(NULL)));
133
134    if (!mount_next_write_volume(dcr, label_blk, 1)) {
135       free_block(label_blk);
136       P(dev->mutex);
137       unblock_device(dev);
138       return false;                /* device locked */
139    }
140    P(dev->mutex);                  /* lock again */
141
142    Jmsg(jcr, M_INFO, 0, _("New volume \"%s\" mounted on device %s at %s.\n"),
143       jcr->VolumeName, dev_name(dev), bstrftime(dt, sizeof(dt), time(NULL)));
144
145    /* 
146     * If this is a new tape, the label_blk will contain the
147     *  label, so write it now. If this is a previously
148     *  used tape, mount_next_write_volume() will return an
149     *  empty label_blk, and nothing will be written.
150     */
151    Dmsg0(190, "write label block to dev\n");
152    if (!write_block_to_dev(dcr, label_blk)) {
153       Pmsg1(0, "write_block_to_device Volume label failed. ERR=%s",
154         strerror_dev(dev));
155       free_block(label_blk);
156       unblock_device(dev);
157       return false;                /* device locked */
158    }
159    free_block(label_blk);
160
161    /* 
162     * Walk through all attached jcrs indicating the volume has changed   
163     */
164    Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
165 // for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
166    DCR *mdcr;
167    foreach_dlist(mdcr, dev->attached_dcrs) {
168       JCR *mjcr = mdcr->jcr;
169       if (mjcr->JobId == 0) {
170          continue;                 /* ignore console */
171       }
172       mdcr->NewVol = true;
173       if (jcr != mjcr) {
174          pm_strcpy(&mjcr->VolumeName, jcr->VolumeName);  /* get a copy of the new volume */
175          bstrncpy(mdcr->VolumeName, jcr->VolumeName, sizeof(mdcr->VolumeName));
176       }
177    }
178
179    /* Clear NewVol now because dir_get_volume_info() already done */
180    jcr->dcr->NewVol = false;
181    set_new_volume_parameters(dcr);
182
183    jcr->run_time += time(NULL) - wait_time; /* correct run time for mount wait */
184
185    /* Write overflow block to device */
186    Dmsg0(190, "Write overflow block to dev\n");
187    if (!write_block_to_dev(dcr, block)) {
188       Pmsg1(0, "write_block_to_device overflow block failed. ERR=%s",
189         strerror_dev(dev));
190       unblock_device(dev);
191       return false;                /* device locked */
192    }
193
194    unblock_device(dev);
195    return true;                             /* device locked */
196 }
197
198 /*
199  * We have a new Volume mounted, so reset the Volume parameters
200  *  concerning this job.  The global changes were made earlier
201  *  in the dev structure.
202  */
203 void set_new_volume_parameters(DCR *dcr)
204 {
205    JCR *jcr = dcr->jcr;
206    DEVICE *dev = dcr->dev;
207    if (dcr->NewVol && !dir_get_volume_info(dcr, GET_VOL_INFO_FOR_WRITE)) {
208       Jmsg1(jcr, M_ERROR, 0, "%s", jcr->errmsg);
209    }
210    /* Set new start/end positions */
211    if (dev_state(dev, ST_TAPE)) {
212       dcr->StartBlock = dev->block_num;
213       dcr->StartFile = dev->file;
214    } else {
215       dcr->StartBlock = (uint32_t)dev->file_addr;
216       dcr->StartFile  = (uint32_t)(dev->file_addr >> 32);
217    }
218    /* Reset indicies */
219    dcr->VolFirstIndex = 0;
220    dcr->VolLastIndex = 0;
221    jcr->NumVolumes++;
222    dcr->NewVol = false;
223    dcr->WroteVol = false;
224 }
225
226 /*
227  * We are now in a new Volume file, so reset the Volume parameters
228  *  concerning this job.  The global changes were made earlier
229  *  in the dev structure.
230  */
231 void set_new_file_parameters(DCR *dcr)
232 {
233    DEVICE *dev = dcr->dev;
234     
235    /* Set new start/end positions */
236    if (dev_state(dev, ST_TAPE)) {
237       dcr->StartBlock = dev->block_num;
238       dcr->StartFile = dev->file;
239    } else {
240       dcr->StartBlock = (uint32_t)dev->file_addr;
241       dcr->StartFile  = (uint32_t)(dev->file_addr >> 32);
242    }
243    /* Reset indicies */
244    dcr->VolFirstIndex = 0;
245    dcr->VolLastIndex = 0;
246    dcr->NewFile = false;
247    dcr->WroteVol = false;
248 }
249
250
251
252 /*
253  *   First Open of the device. Expect dev to already be initialized.  
254  *
255  *   This routine is used only when the Storage daemon starts 
256  *   and always_open is set, and in the stand-alone utility
257  *   routines such as bextract.
258  *
259  *   Note, opening of a normal file is deferred to later so
260  *    that we can get the filename; the device_name for
261  *    a file is the directory only. 
262  *
263  *   Retuns: 0 on failure
264  *           1 on success
265  */
266 int first_open_device(DEVICE *dev)
267 {
268    Dmsg0(120, "start open_output_device()\n");
269    if (!dev) {
270       return 0;
271    }
272
273    lock_device(dev);
274
275    /* Defer opening files */
276    if (!dev_is_tape(dev)) {
277       Dmsg0(129, "Device is file, deferring open.\n");
278       unlock_device(dev);
279       return 1;
280    }
281
282    if (!(dev->state & ST_OPENED)) {
283        int mode;
284        if (dev_cap(dev, CAP_STREAM)) {
285           mode = OPEN_WRITE_ONLY;
286        } else {
287           mode = OPEN_READ_WRITE;
288        }
289       Dmsg0(129, "Opening device.\n");
290       if (open_dev(dev, NULL, mode) < 0) {
291          Emsg1(M_FATAL, 0, _("dev open failed: %s\n"), dev->errmsg);
292          unlock_device(dev);
293          return 0;
294       }
295    }
296    Dmsg1(129, "open_dev %s OK\n", dev_name(dev));
297
298    unlock_device(dev);
299    return 1;
300 }
301
302 /* 
303  * Make sure device is open, if not do so 
304  */
305 int open_device(JCR *jcr, DEVICE *dev)
306 {
307    /* Open device */
308    if  (!(dev_state(dev, ST_OPENED))) {
309        int mode;
310        if (dev_cap(dev, CAP_STREAM)) {
311           mode = OPEN_WRITE_ONLY;
312        } else {
313           mode = OPEN_READ_WRITE;
314        }
315        if (open_dev(dev, jcr->VolCatInfo.VolCatName, mode) < 0) {
316           Jmsg2(jcr, M_FATAL, 0, _("Unable to open device %s. ERR=%s\n"), 
317              dev_name(dev), strerror_dev(dev));
318           return 0;
319        }
320    }
321    return 1;
322 }
323
324 void dev_lock(DEVICE *dev)
325 {
326    int errstat;
327    if ((errstat=rwl_writelock(&dev->lock))) {
328       Emsg1(M_ABORT, 0, "Device write lock failure. ERR=%s\n", strerror(errstat));
329    }
330 }
331
332 void dev_unlock(DEVICE *dev)
333 {
334    int errstat;
335    if ((errstat=rwl_writeunlock(&dev->lock))) {
336       Emsg1(M_ABORT, 0, "Device write unlock failure. ERR=%s\n", strerror(errstat));
337    }
338 }
339
340 /* 
341  * When dev_blocked is set, all threads EXCEPT thread with id no_wait_id
342  * must wait. The no_wait_id thread is out obtaining a new volume
343  * and preparing the label.
344  */
345 void _lock_device(const char *file, int line, DEVICE *dev)
346 {
347    int stat;
348    Dmsg3(500, "lock %d from %s:%d\n", dev->dev_blocked, file, line);
349    P(dev->mutex);
350    if (dev->dev_blocked && !pthread_equal(dev->no_wait_id, pthread_self())) {
351       dev->num_waiting++;             /* indicate that I am waiting */
352       while (dev->dev_blocked) {
353          if ((stat = pthread_cond_wait(&dev->wait, &dev->mutex)) != 0) {
354             V(dev->mutex);
355             Emsg1(M_ABORT, 0, _("pthread_cond_wait failure. ERR=%s\n"),
356                strerror(stat));
357          }
358       }
359       dev->num_waiting--;             /* no longer waiting */
360    }
361 }
362
363 /*
364  * Check if the device is blocked or not
365  */
366 int device_is_unmounted(DEVICE *dev)
367 {
368    int stat;
369    P(dev->mutex);
370    stat = (dev->dev_blocked == BST_UNMOUNTED) ||
371           (dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP);
372    V(dev->mutex);
373    return stat;
374 }
375
376 void _unlock_device(const char *file, int line, DEVICE *dev) 
377 {
378    Dmsg2(500, "unlock from %s:%d\n", file, line);
379    V(dev->mutex);
380 }
381
382 /* 
383  * Block all other threads from using the device
384  *  Device must already be locked.  After this call,
385  *  the device is blocked to any thread calling lock_device(),
386  *  but the device is not locked (i.e. no P on device).  Also,
387  *  the current thread can do slip through the lock_device()
388  *  calls without blocking.
389  */
390 void _block_device(const char *file, int line, DEVICE *dev, int state)
391 {
392    Dmsg3(500, "block set %d from %s:%d\n", state, file, line);
393    ASSERT(dev->dev_blocked == BST_NOT_BLOCKED);
394    dev->dev_blocked = state;          /* make other threads wait */
395    dev->no_wait_id = pthread_self();  /* allow us to continue */
396 }
397
398
399
400 /*
401  * Unblock the device, and wake up anyone who went to sleep.
402  */
403 void _unblock_device(const char *file, int line, DEVICE *dev)
404 {
405    Dmsg3(500, "unblock %d from %s:%d\n", dev->dev_blocked, file, line);
406    ASSERT(dev->dev_blocked);
407    dev->dev_blocked = BST_NOT_BLOCKED;
408    dev->no_wait_id = 0;
409    if (dev->num_waiting > 0) {
410       pthread_cond_broadcast(&dev->wait); /* wake them up */
411    }
412 }
413
414 /*
415  * Enter with device locked and blocked
416  * Exit with device unlocked and blocked by us.
417  */
418 void _steal_device_lock(const char *file, int line, DEVICE *dev, bsteal_lock_t *hold, int state)
419 {
420    Dmsg4(500, "steal lock. old=%d new=%d from %s:%d\n", dev->dev_blocked, state,
421       file, line);
422    hold->dev_blocked = dev->dev_blocked;
423    hold->dev_prev_blocked = dev->dev_prev_blocked;
424    hold->no_wait_id = dev->no_wait_id;
425    dev->dev_blocked = state;
426    dev->no_wait_id = pthread_self();
427    V(dev->mutex);
428 }
429
430 /*
431  * Enter with device blocked by us but not locked
432  * Exit with device locked, and blocked by previous owner 
433  */
434 void _give_back_device_lock(const char *file, int line, DEVICE *dev, bsteal_lock_t *hold)             
435 {
436    Dmsg4(500, "return lock. old=%d new=%d from %s:%d\n", 
437       dev->dev_blocked, hold->dev_blocked, file, line);
438    P(dev->mutex);
439    dev->dev_blocked = hold->dev_blocked;
440    dev->dev_prev_blocked = hold->dev_prev_blocked;
441    dev->no_wait_id = hold->no_wait_id;
442    if (dev->dev_blocked == BST_NOT_BLOCKED && dev->num_waiting > 0) {
443       pthread_cond_broadcast(&dev->wait); /* wake them up */
444    }
445 }