]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/acquire.c
e8672b5e081739fa8e119855ae4d2ba022747dd7
[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-2003 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 /********************************************************************* 
34  * Acquire device for reading.  We permit (for the moment)
35  *  only one reader.  We read the Volume label from the block and
36  *  leave the block pointers just after the label.
37  *
38  *  Returns: 0 if failed for any reason
39  *           1 if successful
40  */
41 int acquire_device_for_read(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
42 {
43    int stat = 0;
44    int tape_previously_mounted;
45    VOL_LIST *vol;
46
47    lock_device(dev);
48    block_device(dev, BST_DOING_ACQUIRE);
49    unlock_device(dev);
50
51    tape_previously_mounted = (dev->state & ST_READ) || (dev->state & ST_APPEND);
52
53    if (dev->state & ST_READ || dev->num_writers > 0) {
54       Jmsg1(jcr, M_FATAL, 0, _("Device %s is busy. Job cancelled.\n"), dev_name(dev));
55       goto get_out;
56    }
57
58    /* Find next Volume, if any */
59    vol = jcr->VolList;
60    if (!vol) {
61       Jmsg(jcr, M_FATAL, 0, _("No volumes specified. Job cancelled.\n"));
62       goto get_out;
63    }
64    jcr->CurVolume++;
65    for (int i=1; i<jcr->CurVolume; i++) {
66       vol = vol->next;
67    }
68    pm_strcpy(&jcr->VolumeName, vol->VolumeName);
69
70    for (;;) {
71       if (job_cancelled(jcr)) {
72          Mmsg0(&dev->errmsg, _("Job cancelled.\n"));
73          goto get_out;                /* error return */
74       }
75       /*
76        * This code ensures that the device is ready for
77        * reading. If it is a file, it opens it.
78        * If it is a tape, it checks the volume name 
79        */
80       for ( ; !(dev->state & ST_OPENED); ) {
81           Dmsg1(120, "bstored: open vol=%s\n", jcr->VolumeName);
82           if (open_dev(dev, jcr->VolumeName, READ_ONLY) < 0) {
83              Jmsg(jcr, M_FATAL, 0, _("Open device %s volume %s failed, ERR=%s\n"), 
84                  dev_name(dev), jcr->VolumeName, strerror_dev(dev));
85              goto get_out;
86           }
87           Dmsg1(129, "open_dev %s OK\n", dev_name(dev));
88       }
89       dev->state &= ~ST_LABEL;           /* force reread of label */
90       Dmsg0(200, "calling read-vol-label\n");
91       switch (read_dev_volume_label(jcr, dev, block)) {
92          case VOL_OK:
93             break;                    /* got it */
94          case VOL_IO_ERROR:
95             /*
96              * Send error message generated by read_dev_volume_label()
97              *  only we really had a tape mounted. This supresses superfluous
98              *  error messages when nothing is mounted.
99              */
100             if (tape_previously_mounted) {
101                Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
102             }
103             goto default_path;
104          default:
105             Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
106 default_path:
107             tape_previously_mounted = 0;
108             Dmsg0(200, "dir_get_volume_info\n");
109             if (!dir_get_volume_info(jcr, 0)) { 
110                Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
111             }
112             Dmsg2(200, "calling autoload Vol=%s Slot=%d\n",
113                jcr->VolumeName, jcr->VolCatInfo.Slot);                         
114             if (autoload_device(jcr, dev, 0, NULL)) {
115                continue;
116             }
117             /* Mount a specific volume and no other */
118             Dmsg0(200, "calling dir_ask_sysop\n");
119             if (!dir_ask_sysop_to_mount_volume(jcr, dev)) {
120                goto get_out;          /* error return */
121             }
122             continue;                 /* try reading again */
123       }
124       break;
125    }
126
127    dev->state |= ST_READ;
128    attach_jcr_to_device(dev, jcr);    /* attach jcr to device */
129    stat = 1;                          /* good return */
130    if ((dev->state & ST_TAPE) && vol->start_file > 0) {
131       Dmsg1(200, "====== Got start_file = %d\n", vol->start_file);
132       Jmsg(jcr, M_INFO, 0, _("Forward spacing to file %d.\n"), vol->start_file);
133       fsf_dev(dev, vol->start_file);
134    }
135
136 get_out:
137    P(dev->mutex); 
138    unblock_device(dev);
139    V(dev->mutex);
140    return stat;
141 }
142
143 /*
144  * Acquire device for writing. We permit multiple writers.
145  *  If this is the first one, we read the label.
146  *
147  *  Returns: NULL if failed for any reason
148  *           dev if successful (may change if new dev opened)
149  */
150 DEVICE * acquire_device_for_append(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
151 {
152    int release = 0;
153    int do_mount = 0;
154    DEVICE *rtn_dev = NULL;
155
156    lock_device(dev);
157    block_device(dev, BST_DOING_ACQUIRE);
158    unlock_device(dev);
159    Dmsg1(190, "acquire_append device is %s\n", dev_is_tape(dev)?"tape":"disk");
160              
161
162    if (dev->state & ST_APPEND) {
163       /* 
164        * Device already in append mode   
165        *
166        * Check if we have the right Volume mounted   
167        *   OK if current volume info OK
168        *   OK if next volume matches current volume
169        *   otherwise mount desired volume obtained from
170        *    dir_find_next_appendable_volume
171        */
172       strcpy(jcr->VolumeName, dev->VolHdr.VolName);
173       if (!dir_get_volume_info(jcr, 1) &&
174           !(dir_find_next_appendable_volume(jcr) &&
175             strcmp(dev->VolHdr.VolName, jcr->VolumeName) == 0)) { /* wrong tape mounted */
176          if (dev->num_writers != 0) {
177             DEVICE *d = ((DEVRES *)dev->device)->dev;
178             uint32_t open_vols = 0;
179             for ( ; d; d=d->next) {
180                open_vols++;
181             }
182             if (dev->state & ST_FILE && dev->max_open_vols > open_vols) {
183                P(mutex);              /* lock all devices */
184                d = init_dev(NULL, (DEVRES *)dev->device); /* init new device */
185                d->prev = dev;                   /* chain in new device */
186                d->next = dev->next;
187                dev->next = d;
188                /* Release old device */
189                P(dev->mutex); 
190                unblock_device(dev);
191                V(dev->mutex);
192                /* Make new device current device and lock it */
193                dev = d;
194                lock_device(dev);
195                block_device(dev, BST_DOING_ACQUIRE);
196                unlock_device(dev);
197                V(mutex);
198             } else {
199                Jmsg(jcr, M_FATAL, 0, _("Device %s is busy writing on another Volume.\n"), dev_name(dev));
200                goto get_out;
201             }
202          }
203          /* Wrong tape mounted, release it, then fall through to get correct one */
204          release = 1;
205          do_mount = 1;
206       }
207    } else { 
208       /* Not already in append mode, so mount the device */
209       if (dev->state & ST_READ) {
210          Jmsg(jcr, M_FATAL, 0, _("Device %s is busy reading.\n"), dev_name(dev));
211          goto get_out;
212       } 
213       ASSERT(dev->num_writers == 0);
214       do_mount = 1;
215    }
216
217    if (do_mount) {
218       if (!mount_next_write_volume(jcr, dev, block, release)) {
219          Jmsg(jcr, M_FATAL, 0, _("Could not ready device %s for append.\n"),
220             dev_name(dev));
221          goto get_out;
222       }
223    }
224
225    dev->num_writers++;
226    if (dev->num_writers > 1) {
227       Dmsg2(100, "Hey!!!! There are %d writers on device %s\n", dev->num_writers,
228          dev_name(dev));
229    }
230    if (jcr->NumVolumes == 0) {
231       jcr->NumVolumes = 1;
232    }
233    attach_jcr_to_device(dev, jcr);    /* attach jcr to device */
234    rtn_dev = dev;                     /* return device */
235
236 get_out:
237    P(dev->mutex); 
238    unblock_device(dev);
239    V(dev->mutex);
240    return rtn_dev;
241 }
242
243 /*
244  * This job is done, so release the device. From a Unix standpoint,
245  *  the device remains open.
246  *
247  */
248 int release_device(JCR *jcr, DEVICE *dev)
249 {
250    lock_device(dev);
251    Dmsg1(100, "release_device device is %s\n", dev_is_tape(dev)?"tape":"disk");
252    if (dev->state & ST_READ) {
253       dev->state &= ~ST_READ;         /* clear read bit */
254       if (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN)) {
255          if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
256             offline_dev(dev);
257          }
258          close_dev(dev);
259       }
260       /******FIXME**** send read volume usage statistics to director */
261
262    } else if (dev->num_writers > 0) {
263       dev->num_writers--;
264       if (dev->state & ST_TAPE) {
265          jcr->EndBlock = dev->EndBlock;
266          jcr->EndFile  = dev->EndFile;
267          Dmsg2(200, "Release device: EndFile=%u EndBlock=%u\n", jcr->EndFile, jcr->EndBlock);
268       } else {
269          jcr->EndBlock = (uint32_t)dev->file_addr;
270          jcr->EndFile = (uint32_t)(dev->file_addr >> 32);
271       }
272       Dmsg1(100, "There are %d writers in release_device\n", dev->num_writers);
273       if (dev->num_writers == 0) {
274          Dmsg0(100, "dir_create_jobmedia_record. Release\n");
275          dir_create_jobmedia_record(jcr);
276          weof_dev(dev, 1);
277          dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
278          dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
279          /* Note! do volume update before close, which zaps VolCatInfo */
280          Dmsg0(200, "dir_update_vol_info. Release0\n");
281          dir_update_volume_info(jcr, &dev->VolCatInfo, 0); /* send Volume info to Director */
282
283          if (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN)) {
284             if (dev_cap(dev, CAP_OFFLINEUNMOUNT)) {
285                offline_dev(dev);
286             }
287             close_dev(dev);
288          }
289       } else {
290          Dmsg0(100, "dir_create_jobmedia_record. Release\n");
291          dir_create_jobmedia_record(jcr);
292          Dmsg0(200, "dir_update_vol_info. Release1\n");
293          dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
294          dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
295          dir_update_volume_info(jcr, &dev->VolCatInfo, 0); /* send Volume info to Director */
296       }
297    } else {
298       Jmsg2(jcr, M_ERROR, 0, _("BAD ERROR: release_device %s, Volume %s not in use.\n"), 
299             dev_name(dev), NPRT(jcr->VolumeName));
300    }
301    detach_jcr_from_device(dev, jcr);
302    if (dev->prev && !(dev->state & ST_READ) && dev->num_writers == 0) {
303       P(mutex);
304       unlock_device(dev);
305       dev->prev->next = dev->next;    /* dechain */
306       term_dev(dev);
307       V(mutex);
308    } else {
309       unlock_device(dev);
310    }
311    return 1;
312 }