]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/acquire.c
- Correct buffer length passed to inet_ntop() in address_conf.c
[bacula/bacula] / bacula / src / stored / acquire.c
1 /*
2  *  Routines to acquire and release a device for read/write
3  *
4  *   Kern Sibbald, August MMII
5  *                            
6  *   Version $Id$
7  */
8 /*
9    Copyright (C) 2002-2004 Kern Sibbald and John Walker
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28 #include "bacula.h"                   /* pull in global headers */
29 #include "stored.h"                   /* pull in Storage Deamon headers */
30
31 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
32
33 DCR *new_dcr(JCR *jcr, DEVICE *dev)
34 {
35    if (jcr && jcr->dcr) {
36       return jcr->dcr;
37    }
38    DCR *dcr = (DCR *)malloc(sizeof(DCR));
39    memset(dcr, 0, sizeof(DCR));
40    if (jcr) {
41       jcr->dcr = dcr;
42    }
43    dcr->jcr = jcr;
44    dcr->dev = dev;
45    dcr->block = new_block(dev);
46    dcr->rec = new_record();
47    dcr->spool_fd = -1;
48    dcr->max_spool_size = dev->device->max_spool_size;
49    /* Attach this dcr only if dev is initialized */
50    if (dev->fd != 0 && jcr && jcr->JobType != JT_SYSTEM) {
51       dev->attached_dcrs->append(dcr);
52    }
53    return dcr;
54 }
55
56 void free_dcr(DCR *dcr)
57 {
58    JCR *jcr = dcr->jcr;
59    DEVICE *dev = dcr->dev;
60
61    /* Detach this dcr only if the dev is initialized */
62    if (dev->fd != 0 && jcr && jcr->JobType != JT_SYSTEM) {
63       dcr->dev->attached_dcrs->remove(dcr);
64    }
65    if (dcr->block) {
66       free_block(dcr->block);
67    }
68    if (dcr->rec) {
69       free_record(dcr->rec);
70    }
71    if (dcr->jcr) {
72       dcr->jcr->dcr = NULL;
73    }
74    free(dcr);
75 }
76
77
78 /********************************************************************* 
79  * Acquire device for reading.  We permit (for the moment)
80  *  only one reader.  We read the Volume label from the block and
81  *  leave the block pointers just after the label.
82  *
83  *  Returns: NULL if failed for any reason
84  *           dcr  if successful
85  */
86 DCR *acquire_device_for_read(JCR *jcr)
87 {
88    bool vol_ok = false;
89    bool tape_previously_mounted;
90    bool tape_initially_mounted;
91    VOL_LIST *vol;
92    bool try_autochanger = true;
93    int i;
94    DCR *dcr = jcr->dcr;
95    DEVICE *dev;
96    
97    /* Called for each volume */
98    if (!dcr) {
99       dcr = new_dcr(jcr, jcr->device->dev);
100    }
101    dev = dcr->dev;
102    if (device_is_unmounted(dev)) {
103       Jmsg(jcr, M_WARNING, 0, _("device %s is BLOCKED due to user unmount.\n"),
104          dev_name(dev));
105    }
106    lock_device(dev);
107    block_device(dev, BST_DOING_ACQUIRE);
108    unlock_device(dev);
109
110    init_dev_wait_timers(dev);
111    if (dev_state(dev, ST_READ) || dev->num_writers > 0) {
112       Jmsg2(jcr, M_FATAL, 0, _("Device %s is busy. Job %d canceled.\n"), 
113             dev_name(dev), jcr->JobId);
114       goto get_out;
115    }
116
117    tape_previously_mounted = dev_state(dev, ST_READ) || 
118                              dev_state(dev, ST_APPEND) ||
119                              dev_state(dev, ST_LABEL);
120    tape_initially_mounted = tape_previously_mounted;
121
122    /* Find next Volume, if any */
123    vol = jcr->VolList;
124    if (!vol) {
125       Jmsg(jcr, M_FATAL, 0, _("No volumes specified. Job %d canceled.\n"), jcr->JobId);
126       goto get_out;
127    }
128    jcr->CurVolume++;
129    for (i=1; i<jcr->CurVolume; i++) {
130       vol = vol->next;
131    }
132    bstrncpy(dcr->VolumeName, vol->VolumeName, sizeof(dcr->VolumeName));
133
134    for (i=0; i<5; i++) {
135       if (job_canceled(jcr)) {
136          Mmsg1(dev->errmsg, _("Job %d canceled.\n"), jcr->JobId);
137          goto get_out;                /* error return */
138       }
139       /*
140        * This code ensures that the device is ready for
141        * reading. If it is a file, it opens it.
142        * If it is a tape, it checks the volume name 
143        */
144       for ( ; !(dev->state & ST_OPENED); ) {
145          Dmsg1(120, "bstored: open vol=%s\n", dcr->VolumeName);
146          if (open_dev(dev, dcr->VolumeName, OPEN_READ_ONLY) < 0) {
147             Jmsg(jcr, M_FATAL, 0, _("Open device %s volume %s failed, ERR=%s\n"), 
148                 dev_name(dev), dcr->VolumeName, strerror_dev(dev));
149             goto get_out;
150          }
151          Dmsg1(129, "open_dev %s OK\n", dev_name(dev));
152       }
153       /****FIXME***** do not reread label if ioctl() says we are
154        *  correctly possitioned.  Possibly have way user can turn
155        *  this optimization (to be implemented) off.
156        */
157       dcr->dev->state &= ~ST_LABEL;           /* force reread of label */
158       Dmsg0(200, "calling read-vol-label\n");
159       switch (read_dev_volume_label(dcr)) {
160       case VOL_OK:
161          vol_ok = true;
162          memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
163          break;                    /* got it */
164       case VOL_IO_ERROR:
165          /*
166           * Send error message generated by read_dev_volume_label()
167           *  only we really had a tape mounted. This supresses superfluous
168           *  error messages when nothing is mounted.
169           */
170          if (tape_previously_mounted) {
171             Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
172          }
173          goto default_path;
174       case VOL_NAME_ERROR:
175          if (tape_initially_mounted) {
176             tape_initially_mounted = false;
177             goto default_path;
178          }
179          /* Fall through */
180       default:
181          Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);
182 default_path:
183          tape_previously_mounted = true;
184          Dmsg0(200, "dir_get_volume_info\n");
185          if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_READ)) { 
186             Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
187          }
188          /* Call autochanger only once unless ask_sysop called */
189          if (try_autochanger) {
190             int stat;
191             Dmsg2(200, "calling autoload Vol=%s Slot=%d\n",
192                dcr->VolumeName, dcr->VolCatInfo.Slot);                         
193             stat = autoload_device(dcr, 0, NULL);
194             if (stat > 0) {
195                try_autochanger = false;
196                continue;
197             }
198          }
199          /* Mount a specific volume and no other */
200          Dmsg0(200, "calling dir_ask_sysop\n");
201          if (!dir_ask_sysop_to_mount_volume(dcr)) {
202             goto get_out;             /* error return */
203          }
204          try_autochanger = true;      /* permit using autochanger again */
205          continue;                    /* try reading again */
206       } /* end switch */
207       break;
208    } /* end for loop */
209    if (!vol_ok) {
210       Jmsg1(jcr, M_FATAL, 0, _("Too many errors trying to mount device \"%s\".\n"),
211             dev_name(dev));
212       goto get_out;
213    }
214
215    dev->state &= ~ST_APPEND;          /* clear any previous append mode */
216    dev->state |= ST_READ;             /* set read mode */
217    set_jcr_job_status(jcr, JS_Running);
218    dir_send_job_status(jcr);
219    Jmsg(jcr, M_INFO, 0, _("Ready to read from volume \"%s\" on device %s.\n"),
220       dcr->VolumeName, dev_name(dev));
221
222 get_out:
223    P(dev->mutex); 
224    unblock_device(dev);
225    V(dev->mutex);
226    if (!vol_ok) {
227       free_dcr(dcr);
228       dcr = NULL;
229    }
230    return dcr;
231 }
232
233 /*
234  * Acquire device for writing. We permit multiple writers.
235  *  If this is the first one, we read the label.
236  *
237  *  Returns: NULL if failed for any reason
238  *           dev if successful (may change if new dev opened)
239  *  This routine must be single threaded because we may create
240  *   multiple devices (for files), thus we have our own mutex 
241  *   on top of the device mutex.
242  */
243 DCR *acquire_device_for_append(JCR *jcr)
244 {
245    bool release = false;
246    bool recycle = false;
247    bool do_mount = false;
248    DCR *dcr;
249    DEVICE *dev = jcr->device->dev;
250
251    dcr = new_dcr(jcr, dev);
252    if (device_is_unmounted(dev)) {
253       Jmsg(jcr, M_WARNING, 0, _("device %s is BLOCKED due to user unmount.\n"),
254          dev_name(dev));
255    }
256    lock_device(dev);
257    block_device(dev, BST_DOING_ACQUIRE);
258    unlock_device(dev);
259    P(mutex);                         /* lock all devices */
260    Dmsg1(190, "acquire_append device is %s\n", dev_is_tape(dev)?"tape":"disk");
261              
262    if (dev_state(dev, ST_APPEND)) {
263       Dmsg0(190, "device already in append.\n");
264       /* 
265        * Device already in append mode   
266        *
267        * Check if we have the right Volume mounted   
268        *   OK if current volume info OK
269        *   OK if next volume matches current volume
270        *   otherwise mount desired volume obtained from
271        *    dir_find_next_appendable_volume
272        */
273       bstrncpy(dcr->VolumeName, dev->VolHdr.VolName, sizeof(dcr->VolumeName));
274       if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_WRITE) &&
275           !(dir_find_next_appendable_volume(dcr) &&
276             strcmp(dev->VolHdr.VolName, dcr->VolumeName) == 0)) { /* wrong tape mounted */
277          Dmsg0(190, "Wrong tape mounted.\n");
278          if (dev->num_writers != 0) {
279             DEVICE *d = ((DEVRES *)dev->device)->dev;
280             uint32_t open_vols = 0;
281             for ( ; d; d=d->next) {
282                open_vols++;
283             }
284             if (dev_state(dev, ST_FILE) && dev->max_open_vols > open_vols) {
285                d = init_dev(NULL, (DEVRES *)dev->device); /* init new device */
286                d->prev = dev;                   /* chain in new device */
287                d->next = dev->next;
288                dev->next = d;
289                /* Release old device */
290                P(dev->mutex); 
291                unblock_device(dev);
292                V(dev->mutex);
293                free_dcr(dcr);         /* release dcr pointing to old dev */
294                /* Make new device current device and lock it */
295                dev = d;
296                dcr = new_dcr(jcr, dev); /* get new dcr for new device */
297                lock_device(dev);
298                block_device(dev, BST_DOING_ACQUIRE);
299                unlock_device(dev);
300             } else {
301                Jmsg(jcr, M_FATAL, 0, _("Device %s is busy writing on another Volume.\n"), dev_name(dev));
302                goto get_out;
303             }
304          }
305          /* Wrong tape mounted, release it, then fall through to get correct one */
306          Dmsg0(190, "Wrong tape mounted, release and try mount.\n");
307          release = true;
308          do_mount = true;
309       } else {
310          /*       
311           * At this point, the correct tape is already mounted, so 
312           *   we do not need to do mount_next_write_volume(), unless
313           *   we need to recycle the tape.
314           */
315           recycle = strcmp(dcr->VolCatInfo.VolCatStatus, "Recycle") == 0;
316           Dmsg1(190, "Correct tape mounted. recycle=%d\n", recycle);
317           if (recycle && dev->num_writers != 0) {
318              Jmsg(jcr, M_FATAL, 0, _("Cannot recycle volume \"%s\""
319                   " because it is in use by another job.\n"));
320              goto get_out;
321           }
322           if (dev->num_writers == 0) {
323              memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
324           }
325        }
326    } else { 
327       /* Not already in append mode, so mount the device */
328       Dmsg0(190, "Not in append mode, try mount.\n");
329       if (dev_state(dev, ST_READ)) {
330          Jmsg(jcr, M_FATAL, 0, _("Device %s is busy reading.\n"), dev_name(dev));
331          goto get_out;
332       } 
333       ASSERT(dev->num_writers == 0);
334       do_mount = true;
335    }
336
337    if (do_mount || recycle) {
338       Dmsg0(190, "Do mount_next_write_vol\n");
339       if (!mount_next_write_volume(dcr, release)) {
340          if (!job_canceled(jcr)) {
341             /* Reduce "noise" -- don't print if job canceled */
342             Jmsg(jcr, M_FATAL, 0, _("Could not ready device \"%s\" for append.\n"),
343                dev_name(dev));
344          }
345          goto get_out;
346       }
347    }
348
349    dev->num_writers++;
350    if (jcr->NumVolumes == 0) {
351       jcr->NumVolumes = 1;
352    }
353    set_jcr_job_status(jcr, JS_Running);
354    dir_send_job_status(jcr);
355    goto ok_out;
356
357 /*
358  * If we jump here, it is an error return because
359  *  rtn_dev will still be NULL
360  */
361 get_out:
362    free_dcr(dcr);
363    dcr = NULL;
364 ok_out:
365    P(dev->mutex); 
366    unblock_device(dev);
367    V(dev->mutex);
368    V(mutex);                          /* unlock other threads */
369    return dcr;
370 }
371
372 /*
373  * This job is done, so release the device. From a Unix standpoint,
374  *  the device remains open.
375  *
376  */
377 bool release_device(JCR *jcr)
378 {
379    DCR *dcr = jcr->dcr;
380    DEVICE *dev = dcr->dev;   
381    lock_device(dev);
382    Dmsg1(100, "release_device device is %s\n", dev_is_tape(dev)?"tape":"disk");
383    if (dev_state(dev, ST_READ)) {
384       dev->state &= ~ST_READ;         /* clear read bit */
385       if (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN)) {
386          offline_or_rewind_dev(dev);
387          close_dev(dev);
388       }
389       /******FIXME**** send read volume usage statistics to director */
390
391    } else if (dev->num_writers > 0) {
392       dev->num_writers--;
393       Dmsg1(100, "There are %d writers in release_device\n", dev->num_writers);
394       if (dev_state(dev, ST_LABEL)) {
395          Dmsg0(100, "dir_create_jobmedia_record. Release\n");
396          if (!dir_create_jobmedia_record(dcr)) {
397             Jmsg(jcr, M_FATAL, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
398                dcr->VolCatInfo.VolCatName, jcr->Job);
399          }
400          /* If no more writers, write an EOF */
401          if (!dev->num_writers && dev_can_write(dev)) {
402             weof_dev(dev, 1);
403          }
404          dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
405          dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
406          /* Note! do volume update before close, which zaps VolCatInfo */
407          Dmsg0(100, "dir_update_vol_info. Release0\n");
408          dir_update_volume_info(dcr, false); /* send Volume info to Director */
409       }
410
411       if (!dev->num_writers && (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN))) {
412          offline_or_rewind_dev(dev);
413          close_dev(dev);
414       }
415    } else {
416       Jmsg2(jcr, M_FATAL, 0, _("BAD ERROR: release_device %s, Volume \"%s\" not in use.\n"), 
417             dev_name(dev), NPRT(dcr->VolumeName));
418       Jmsg2(jcr, M_ERROR, 0, _("num_writers=%d state=%x\n"), dev->num_writers, dev->state);
419    }
420
421    /* Fire off Alert command and include any output */
422    if (!job_canceled(jcr) && jcr->device->alert_command) {
423       POOLMEM *alert;
424       int status = 1;
425       BPIPE *bpipe;
426       char line[MAXSTRING];
427       alert = get_pool_memory(PM_FNAME);
428       alert = edit_device_codes(jcr, alert, jcr->device->alert_command, "");
429       bpipe = open_bpipe(alert, 0, "r");
430       if (bpipe) {
431          while (fgets(line, sizeof(line), bpipe->rfd)) {
432             Jmsg(jcr, M_INFO, 0, _("Alert: %s"), line);
433          }
434          status = close_bpipe(bpipe);
435       } else {
436          status = errno;
437       }
438       if (status != 0) {
439          berrno be(status);
440          Jmsg(jcr, M_INFO, 0, _("3997 Bad alert command: %s: ERR=%s.\n"),
441               alert, be.strerror());
442       }
443
444       Dmsg1(400, "alert status=%d\n", status);
445       free_pool_memory(alert);
446    }
447    if (dev->prev && !dev_state(dev, ST_READ) && !dev->num_writers) {
448       P(mutex);
449       unlock_device(dev);
450       dev->prev->next = dev->next;    /* dechain */
451       term_dev(dev);
452       V(mutex);
453    } else {
454       unlock_device(dev);
455    }
456    free_dcr(jcr->dcr);
457    jcr->dcr = NULL;
458    return true;
459 }