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