]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/device.c
This commit was manufactured by cvs2svn to create tag
[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-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 #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: 1 on success
77  *           0 on failure
78  */
79 int fixup_device_block_write_error(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
80 {
81    uint32_t stat = 0;                   
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
88    wait_time = time(NULL);
89    status_dev(dev, &stat);
90    if (!(stat & BMT_EOD)) {
91       return 0;                       /* this really shouldn't happen */
92    }
93
94    Dmsg0(100, "======= Got EOD ========\n");
95
96    block_device(dev, BST_DOING_ACQUIRE);
97    /* Unlock, but leave BLOCKED */
98    unlock_device(dev);
99
100    /* Create a jobmedia record for this job */
101    if (!dir_create_jobmedia_record(jcr)) {
102        Jmsg(jcr, M_ERROR, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
103             jcr->VolCatInfo.VolCatName, jcr->Job);
104        P(dev->mutex);
105        unblock_device(dev);
106        return 0;
107    }
108
109    bstrncpy(dev->VolCatInfo.VolCatStatus, "Full", sizeof(dev->VolCatInfo.VolCatStatus));
110    Dmsg2(100, "Call update_vol_info Stat=%s Vol=%s\n", 
111       dev->VolCatInfo.VolCatStatus, dev->VolCatInfo.VolCatName);
112    dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
113    dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
114    if (!dir_update_volume_info(jcr, dev, 0)) {    /* send Volume info to Director */
115       P(dev->mutex);
116       unblock_device(dev);
117       return 0;                    /* device locked */
118    }
119    Dmsg0(100, "Back from update_vol_info\n");
120
121    bstrncpy(PrevVolName, dev->VolCatInfo.VolCatName, sizeof(PrevVolName));
122    bstrncpy(dev->VolHdr.PrevVolName, PrevVolName, sizeof(dev->VolHdr.PrevVolName));
123
124    label_blk = new_block(dev);
125
126    /* Inform User about end of medium */
127    Jmsg(jcr, M_INFO, 0, _("End of medium on Volume \"%s\" Bytes=%s Blocks=%s at %s.\n"), 
128         PrevVolName, edit_uint64_with_commas(dev->VolCatInfo.VolCatBytes, b1),
129         edit_uint64_with_commas(dev->VolCatInfo.VolCatBlocks, b2),
130         bstrftime(dt, sizeof(dt), time(NULL)));
131
132    if (!mount_next_write_volume(jcr, dev, label_blk, 1)) {
133       free_block(label_blk);
134       P(dev->mutex);
135       unblock_device(dev);
136       return 0;                    /* device locked */
137    }
138    P(dev->mutex);                  /* lock again */
139
140    Jmsg(jcr, M_INFO, 0, _("New volume \"%s\" mounted on device %s at %s.\n"),
141       jcr->VolumeName, dev_name(dev), bstrftime(dt, sizeof(dt), time(NULL)));
142
143    /* 
144     * If this is a new tape, the label_blk will contain the
145     *  label, so write it now. If this is a previously
146     *  used tape, mount_next_write_volume() will return an
147     *  empty label_blk, and nothing will be written.
148     */
149    Dmsg0(190, "write label block to dev\n");
150    if (!write_block_to_dev(jcr, dev, label_blk)) {
151       Pmsg1(0, "write_block_to_device Volume label failed. ERR=%s",
152         strerror_dev(dev));
153       free_block(label_blk);
154       unblock_device(dev);
155       return 0;                    /* device locked */
156    }
157    free_block(label_blk);
158
159    /* 
160     * Walk through all attached jcrs indicating the volume has changed   
161     */
162    Dmsg1(100, "Walk attached jcrs. Volume=%s\n", dev->VolCatInfo.VolCatName);
163    for (JCR *mjcr=NULL; (mjcr=next_attached_jcr(dev, mjcr)); ) {
164       if (mjcr->JobId == 0) {
165          continue;                 /* ignore console */
166       }
167       mjcr->NewVol = true;
168       if (jcr != mjcr) {
169          pm_strcpy(&mjcr->VolumeName, jcr->VolumeName);  /* get a copy of the new volume */
170       }
171    }
172
173    /* Clear NewVol now because dir_get_volume_info() already done */
174    jcr->NewVol = false;
175    set_new_volume_parameters(jcr, dev);
176
177    jcr->run_time += time(NULL) - wait_time; /* correct run time for mount wait */
178
179    /* Write overflow block to device */
180    Dmsg0(190, "Write overflow block to dev\n");
181    if (!write_block_to_dev(jcr, dev, block)) {
182       Pmsg1(0, "write_block_to_device overflow block failed. ERR=%s",
183         strerror_dev(dev));
184       unblock_device(dev);
185       return 0;                    /* device locked */
186    }
187
188    unblock_device(dev);
189    return 1;                                /* device locked */
190 }
191
192 /*
193  * We have a new Volume mounted, so reset the Volume parameters
194  *  concerning this job.  The global changes were made earlier
195  *  in the dev structure.
196  */
197 void set_new_volume_parameters(JCR *jcr, DEVICE *dev) 
198 {
199    if (jcr->NewVol && !dir_get_volume_info(jcr, GET_VOL_INFO_FOR_WRITE)) {
200       Jmsg1(jcr, M_ERROR, 0, "%s", jcr->errmsg);
201    }
202    /* Set new start/end positions */
203    if (dev_state(dev, ST_TAPE)) {
204       jcr->StartBlock = dev->block_num;
205       jcr->StartFile = dev->file;
206    } else {
207       jcr->StartBlock = (uint32_t)dev->file_addr;
208       jcr->StartFile  = (uint32_t)(dev->file_addr >> 32);
209    }
210    /* Reset indicies */
211    jcr->VolFirstIndex = 0;
212    jcr->VolLastIndex = 0;
213    jcr->NumVolumes++;
214    jcr->NewVol = false;
215    jcr->WroteVol = false;
216 }
217
218 /*
219  * We are now in a new Volume file, so reset the Volume parameters
220  *  concerning this job.  The global changes were made earlier
221  *  in the dev structure.
222  */
223 void set_new_file_parameters(JCR *jcr, DEVICE *dev) 
224 {
225    /* Set new start/end positions */
226    if (dev_state(dev, ST_TAPE)) {
227       jcr->StartBlock = dev->block_num;
228       jcr->StartFile = dev->file;
229    } else {
230       jcr->StartBlock = (uint32_t)dev->file_addr;
231       jcr->StartFile  = (uint32_t)(dev->file_addr >> 32);
232    }
233    /* Reset indicies */
234    jcr->VolFirstIndex = 0;
235    jcr->VolLastIndex = 0;
236    jcr->NewFile = false;
237    jcr->WroteVol = false;
238 }
239
240
241
242 /*
243  *   Open the device. Expect dev to already be initialized.  
244  *
245  *   This routine is used only when the Storage daemon starts 
246  *   and always_open is set, and in the stand-alone utility
247  *   routines such as bextract.
248  *
249  *   Note, opening of a normal file is deferred to later so
250  *    that we can get the filename; the device_name for
251  *    a file is the directory only. 
252  *
253  *   Retuns: 0 on failure
254  *           1 on success
255  */
256 int open_device(DEVICE *dev)
257 {
258    Dmsg0(120, "start open_output_device()\n");
259    if (!dev) {
260       return 0;
261    }
262
263    lock_device(dev);
264
265    /* Defer opening files */
266    if (!dev_is_tape(dev)) {
267       Dmsg0(129, "Device is file, deferring open.\n");
268       unlock_device(dev);
269       return 1;
270    }
271
272    if (!(dev->state & ST_OPENED)) {
273       Dmsg0(129, "Opening device.\n");
274       if (open_dev(dev, NULL, READ_WRITE) < 0) {
275          Emsg1(M_FATAL, 0, _("dev open failed: %s\n"), dev->errmsg);
276          unlock_device(dev);
277          return 0;
278       }
279    }
280    Dmsg1(129, "open_dev %s OK\n", dev_name(dev));
281
282    unlock_device(dev);
283    return 1;
284 }
285
286 /* 
287  * When dev_blocked is set, all threads EXCEPT thread with id no_wait_id
288  * must wait. The no_wait_id thread is out obtaining a new volume
289  * and preparing the label.
290  */
291 void _lock_device(char *file, int line, DEVICE *dev)
292 {
293    int stat;
294    Dmsg3(100, "lock %d from %s:%d\n", dev->dev_blocked, file, line);
295    P(dev->mutex);
296    if (dev->dev_blocked && !pthread_equal(dev->no_wait_id, pthread_self())) {
297       dev->num_waiting++;             /* indicate that I am waiting */
298       while (dev->dev_blocked) {
299          if ((stat = pthread_cond_wait(&dev->wait, &dev->mutex)) != 0) {
300             V(dev->mutex);
301             Emsg1(M_ABORT, 0, _("pthread_cond_wait failure. ERR=%s\n"),
302                strerror(stat));
303          }
304       }
305       dev->num_waiting--;             /* no longer waiting */
306    }
307 }
308
309 /*
310  * Check if the device is blocked or not
311  */
312 int device_is_unmounted(DEVICE *dev)
313 {
314    int stat;
315    P(dev->mutex);
316    stat = (dev->dev_blocked == BST_UNMOUNTED) ||
317           (dev->dev_blocked == BST_UNMOUNTED_WAITING_FOR_SYSOP);
318    V(dev->mutex);
319    return stat;
320 }
321
322 void _unlock_device(char *file, int line, DEVICE *dev) 
323 {
324    Dmsg2(100, "unlock from %s:%d\n", file, line);
325    V(dev->mutex);
326 }
327
328 /* 
329  * Block all other threads from using the device
330  *  Device must already be locked.  After this call,
331  *  the device is blocked to any thread calling lock_device(),
332  *  but the device is not locked (i.e. no P on device).  Also,
333  *  the current thread can do slip through the lock_device()
334  *  calls without blocking.
335  */
336 void _block_device(char *file, int line, DEVICE *dev, int state)
337 {
338    Dmsg3(100, "block set %d from %s:%d\n", state, file, line);
339    ASSERT(dev->dev_blocked == BST_NOT_BLOCKED);
340    dev->dev_blocked = state;          /* make other threads wait */
341    dev->no_wait_id = pthread_self();  /* allow us to continue */
342 }
343
344
345
346 /*
347  * Unblock the device, and wake up anyone who went to sleep.
348  */
349 void _unblock_device(char *file, int line, DEVICE *dev)
350 {
351    Dmsg3(100, "unblock %d from %s:%d\n", dev->dev_blocked, file, line);
352    ASSERT(dev->dev_blocked);
353    dev->dev_blocked = BST_NOT_BLOCKED;
354    dev->no_wait_id = 0;
355    if (dev->num_waiting > 0) {
356       pthread_cond_broadcast(&dev->wait); /* wake them up */
357    }
358 }
359
360 /*
361  * Enter with device locked and blocked
362  * Exit with device unlocked and blocked by us.
363  */
364 void _steal_device_lock(char *file, int line, DEVICE *dev, bsteal_lock_t *hold, int state)
365 {
366    Dmsg4(100, "steal lock. old=%d new=%d from %s:%d\n", dev->dev_blocked, state,
367       file, line);
368    hold->dev_blocked = dev->dev_blocked;
369    hold->no_wait_id = dev->no_wait_id;
370    dev->dev_blocked = state;
371    dev->no_wait_id = pthread_self();
372    V(dev->mutex);
373 }
374
375 /*
376  * Enter with device blocked by us but not locked
377  * Exit with device locked, and blocked by previous owner 
378  */
379 void _give_back_device_lock(char *file, int line, DEVICE *dev, bsteal_lock_t *hold)           
380 {
381    Dmsg4(100, "return lock. old=%d new=%d from %s:%d\n", 
382       dev->dev_blocked, hold->dev_blocked, file, line);
383    P(dev->mutex);
384    dev->dev_blocked = hold->dev_blocked;
385    dev->no_wait_id = hold->no_wait_id;
386 }