]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/mount.c
This commit was manufactured by cvs2svn to create tag
[bacula/bacula] / bacula / src / stored / mount.c
1 /*
2  *
3  *  Routines for handling mounting tapes for reading and for
4  *    writing.
5  *
6  *   Kern Sibbald, August MMII
7  *                            
8  *   Version $Id$
9  */
10 /*
11    Copyright (C) 2000-2003 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"                   /* pull in global headers */
31 #include "stored.h"                   /* pull in Storage Deamon headers */
32
33 /* Forward referenced routines */
34 static void mark_volume_in_error(JCR *jcr, DEVICE *dev);
35
36
37 /*
38  * If release is set, we rewind the current volume, 
39  * which we no longer want, and ask the user (console) 
40  * to mount the next volume.
41  *
42  *  Continue trying until we get it, and then ensure
43  *  that we can write on it.
44  *
45  * This routine returns a 0 only if it is REALLY
46  *  impossible to get the requested Volume.
47  *
48  */
49 int mount_next_write_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, int release)
50 {
51    int retry = 0;
52    bool ask = false, recycle, autochanger;
53    int vol_label_status;
54
55    Dmsg0(100, "Enter mount_next_volume()\n");
56
57    /* 
58     * Attempt to mount the next volume. If something non-fatal goes
59     *  wrong, we come back here to re-try (new op messages, re-read
60     *  Volume, ...)
61     */
62 mount_next_vol:
63    if (retry++ > 5) {
64       Jmsg(jcr, M_FATAL, 0, _("Too many errors trying to mount device %s.\n"), 
65            dev_name(dev));
66       return 0;
67    }
68    if (job_canceled(jcr)) {
69       Jmsg(jcr, M_FATAL, 0, _("Job %d canceled.\n"), jcr->JobId);
70       return 0;
71    }
72    autochanger = false;                /* Assume no autochanger */
73    recycle = false;
74    if (release) {
75       Dmsg0(100, "mount_next_volume release=1\n");
76       release_volume(jcr, dev);
77       ask = true;                     /* ask operator to mount tape */
78    }
79
80    /* 
81     * Get Director's idea of what tape we should have mounted. 
82     *    in jcr->VolCatInfo
83     */
84    Dmsg0(100, "Before dir_find_next\n");
85    if (!dir_find_next_appendable_volume(jcr)) {
86        Dmsg0(100, "not dir_find_next\n");
87        if (!dir_ask_sysop_to_mount_next_volume(jcr, dev)) {
88          return 0;
89        }
90    }
91    Dmsg2(100, "After find_next_append. Vol=%s Slot=%d\n",
92          jcr->VolCatInfo.VolCatName, jcr->VolCatInfo.Slot);
93
94    /* 
95     * Get next volume and ready it for append
96     * This code ensures that the device is ready for
97     * writing. We start from the assumption that there
98     * may not be a tape mounted. 
99     *
100     * If the device is a file, we create the output
101     * file. If it is a tape, we check the volume name
102     * and move the tape to the end of data.
103     *
104     * It assumes that the device is not already in use!
105     *
106     */
107    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
108
109    autochanger = autoload_device(jcr, dev, 1, NULL);
110    Dmsg1(100, "autoload_dev returns %d\n", autochanger);
111    /*
112     * If we autochanged to correct Volume or (we have not just
113     *   released the Volume AND we can automount) we go ahead 
114     *   and read the label. If there is no tape in the drive,
115     *   we will err, recurse and ask the operator the next time.
116     */
117    if (autochanger || (!release && dev_is_tape(dev) && dev_cap(dev, CAP_AUTOMOUNT))) {
118       ask = false;                 /* don't ask SYSOP this time */
119    }
120    Dmsg2(100, "Ask=%d autochanger=%d\n", ask, autochanger);
121    release = true;                /* release next time if we "recurse" */
122
123    if (ask && !dir_ask_sysop_to_mount_next_volume(jcr, dev)) {
124       Dmsg0(100, "Error return ask_sysop ...\n");
125       return 0;              /* error return */
126    }
127    Dmsg1(100, "want vol=%s\n", jcr->VolumeName);
128
129    /* Open device */
130    if  (!(dev_state(dev, ST_OPENED))) {
131        int mode;
132        if (dev_cap(dev, CAP_STREAM)) {
133           mode = OPEN_WRITE_ONLY;
134        } else {
135           mode = OPEN_READ_WRITE;
136        }
137        if (open_dev(dev, jcr->VolCatInfo.VolCatName, mode) < 0) {
138           Jmsg2(jcr, M_FATAL, 0, _("Unable to open device %s. ERR=%s\n"), 
139              dev_name(dev), strerror_dev(dev));
140           return 0;
141        }
142    }
143
144    /*
145     * Now make sure we have the right tape mounted
146     */
147 read_volume:
148    /* 
149     * If we are writing to a stream device, ASSUME the volume label
150     *  is correct.
151     */
152    if (dev_cap(dev, CAP_STREAM)) {
153       vol_label_status = VOL_OK;
154       create_volume_label(dev, jcr->VolumeName, "Default");
155       dev->VolHdr.LabelType = PRE_LABEL;
156    } else {
157       vol_label_status = read_dev_volume_label(jcr, dev, block);
158    }
159
160    Dmsg2(100, "dirVol=%s dirStat=%s\n", jcr->VolumeName,
161       jcr->VolCatInfo.VolCatStatus);
162    /*
163     * At this point, dev->VolCatInfo has what is in the drive, if anything,
164     *          and   jcr->VolCatInfo has what the Director wants.
165     */
166    switch (vol_label_status) {
167    case VOL_OK:
168       Dmsg1(100, "Vol OK name=%s\n", jcr->VolumeName);
169       memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(jcr->VolCatInfo));
170       recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
171       break;                    /* got a Volume */
172    case VOL_NAME_ERROR:
173       VOLUME_CAT_INFO VolCatInfo;
174
175       Dmsg1(100, "Vol NAME Error Name=%s\n", jcr->VolumeName);
176       /* 
177        * OK, we got a different volume mounted. First save the
178        *  requested Volume info (jcr) structure, then query if
179        *  this volume is really OK. If not, put back the desired
180        *  volume name and continue.
181        */
182       memcpy(&VolCatInfo, &jcr->VolCatInfo, sizeof(VolCatInfo));
183       /* Check if this is a valid Volume in the pool */
184       pm_strcpy(&jcr->VolumeName, dev->VolHdr.VolName);                         
185       if (!dir_get_volume_info(jcr, GET_VOL_INFO_FOR_WRITE)) {
186          Jmsg(jcr, M_WARNING, 0, _("Director wanted Volume \"%s\".\n"
187               "    Current Volume \"%s\" not acceptable because:\n"
188               "    %s"),
189              VolCatInfo.VolCatName, dev->VolHdr.VolName,
190              jcr->dir_bsock->msg);
191          /* Restore desired volume name, note device info out of sync */
192          memcpy(&jcr->VolCatInfo, &VolCatInfo, sizeof(jcr->VolCatInfo));
193          ask = true;
194          goto mount_next_vol;
195       }
196       Dmsg1(100, "want new name=%s\n", jcr->VolumeName);
197       memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(dev->VolCatInfo));
198       recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
199       break;                /* got a Volume */
200    /*
201     * At this point, we assume we have a blank tape mounted.
202     */
203    case VOL_NO_LABEL:
204    case VOL_IO_ERROR:
205       /* 
206        * If permitted, we label the device, make sure we can do
207        *   it by checking that the VolCatBytes is zero => not labeled, 
208        *   once the Volume is labeled we don't want to label another
209        *   blank tape with the same name.  For disk, we go ahead and
210        *   label it anyway, because the OS insures that there is only
211        *   one Volume with that name.
212        * As noted above, at this point jcr->VolCatInfo has what
213        *   the Director wants and dev->VolCatInfo has info on the
214        *   previous tape (or nothing).
215        */
216       if (dev_cap(dev, CAP_LABEL) && (jcr->VolCatInfo.VolCatBytes == 0 ||
217             (!dev_is_tape(dev) && strcmp(jcr->VolCatInfo.VolCatStatus, 
218                                    "Recycle") == 0))) {
219          Dmsg0(100, "Create volume label\n");
220          if (!write_volume_label_to_dev(jcr, (DEVRES *)dev->device, jcr->VolumeName,
221                 jcr->pool_name)) {
222             Dmsg0(100, "!write_vol_label\n");
223             goto mount_next_vol;
224          }
225          Dmsg0(100, "dir_update_vol_info. Set Append\n");
226          /* Copy Director's info into the device info */
227          memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(dev->VolCatInfo));
228          dir_update_volume_info(jcr, dev, 1);  /* indicate tape labeled */
229          Jmsg(jcr, M_INFO, 0, _("Labeled new Volume \"%s\" on device %s.\n"),
230             jcr->VolumeName, dev_name(dev));
231          goto read_volume;      /* read label we just wrote */
232       } 
233       /* NOTE! Fall-through wanted. */
234    case VOL_NO_MEDIA:
235    default:
236       /* Send error message */
237       Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
238       ask = true;
239       goto mount_next_vol;
240    }
241
242    /* 
243     * See if we have a fresh tape or a tape with data.
244     *
245     * Note, if the LabelType is PRE_LABEL, it was labeled
246     *  but never written. If so, rewrite the label but set as
247     *  VOL_LABEL.  We rewind and return the label (reconstructed)
248     *  in the block so that in the case of a new tape, data can
249     *  be appended just after the block label.  If we are writing
250     *  a second volume, the calling routine will write the label
251     *  before writing the overflow block.
252     *
253     *  If the tape is marked as Recycle, we rewrite the label.
254     */
255    if (dev->VolHdr.LabelType == PRE_LABEL || recycle) {
256       Dmsg1(190, "ready_for_append found freshly labeled volume. dev=%x\n", dev);
257       dev->VolHdr.LabelType = VOL_LABEL; /* set Volume label */
258       write_volume_label_to_block(jcr, dev, block);
259       /*
260        * If we are not dealing with a streaming device,
261        *  write the block now to ensure we have write permission.
262        *  It is better to find out now rather than later.
263        */
264       if (!dev_cap(dev, CAP_STREAM)) {
265          if (!rewind_dev(dev)) {
266             Jmsg2(jcr, M_WARNING, 0, _("Rewind error on device %s. ERR=%s\n"), 
267                   dev_name(dev), strerror_dev(dev));
268          }
269          if (recycle) {
270             if (!truncate_dev(dev)) {
271                Jmsg2(jcr, M_WARNING, 0, _("Truncate error on device %s. ERR=%s\n"), 
272                      dev_name(dev), strerror_dev(dev));
273             }
274          }
275          /* Attempt write to check write permission */
276          if (!write_block_to_dev(jcr, dev, block)) {
277             Jmsg2(jcr, M_ERROR, 0, _("Unable to write device %s. ERR=%s\n"),
278                dev_name(dev), strerror_dev(dev));
279             goto mount_next_vol;
280          }
281          /* 
282           * We do not return the label in the block, because if we are
283           *  running multiple simultaneous jobs, once we release the lock
284           *  some other thread may write his block over the label. So, 
285           *  we simply write it definitively now.
286           */
287 #ifdef needed
288          if (!rewind_dev(dev)) {
289             Jmsg2(jcr, M_ERROR, 0, _("Unable to rewind device %s. ERR=%s\n"),
290                dev_name(dev), strerror_dev(dev));
291             goto mount_next_vol;
292          }
293
294          /* Recreate a correct volume label and return it in the block */
295          write_volume_label_to_block(jcr, dev, block);
296 #endif
297       }
298       /* Set or reset Volume statistics */
299       dev->VolCatInfo.VolCatJobs = 0;
300       dev->VolCatInfo.VolCatFiles = 0;
301       dev->VolCatInfo.VolCatBytes = 1;
302       dev->VolCatInfo.VolCatErrors = 0;
303       dev->VolCatInfo.VolCatBlocks = 0;
304       dev->VolCatInfo.VolCatRBytes = 0;
305       if (recycle) {
306          dev->VolCatInfo.VolCatMounts++;  
307          dev->VolCatInfo.VolCatRecycles++;
308       } else {
309          dev->VolCatInfo.VolCatMounts = 1;
310          dev->VolCatInfo.VolCatRecycles = 0;
311          dev->VolCatInfo.VolCatWrites = 1;
312          dev->VolCatInfo.VolCatReads = 1;
313       }
314       Dmsg0(100, "dir_update_vol_info. Set Append\n");
315       bstrncpy(dev->VolCatInfo.VolCatStatus, "Append", sizeof(dev->VolCatInfo.VolCatStatus));
316       dir_update_volume_info(jcr, dev, 1);  /* indicate doing relabel */
317       if (recycle) {
318          Jmsg(jcr, M_INFO, 0, _("Recycled volume \"%s\" on device %s, all previous data lost.\n"),
319             jcr->VolumeName, dev_name(dev));
320       } else {
321          Jmsg(jcr, M_INFO, 0, _("Wrote label to prelabeled Volume \"%s\" on device %s\n"),
322             jcr->VolumeName, dev_name(dev));
323       }
324       /*
325        * End writing real Volume label (from pre-labeled tape), or recycling
326        *  the volume.
327        */
328
329    } else {
330       /*
331        * OK, at this point, we have a valid Bacula label, but
332        * we need to position to the end of the volume, since we are
333        * just now putting it into append mode.
334        */
335       Dmsg0(200, "Device previously written, moving to end of data\n");
336       Jmsg(jcr, M_INFO, 0, _("Volume \"%s\" previously written, moving to end of data.\n"),
337          jcr->VolumeName);
338       if (!eod_dev(dev)) {
339          Jmsg(jcr, M_ERROR, 0, _("Unable to position to end of data %s. ERR=%s\n"),
340             dev_name(dev), strerror_dev(dev));
341          mark_volume_in_error(jcr, dev);
342          goto mount_next_vol;
343       }
344       /* *****FIXME**** we should do some checking for files too */
345       if (dev_is_tape(dev)) {
346          /*
347           * Check if we are positioned on the tape at the same place
348           * that the database says we should be.
349           */
350          if (dev->VolCatInfo.VolCatFiles == dev_file(dev)) {
351             Jmsg(jcr, M_INFO, 0, _("Ready to append to end of Volume at file=%d.\n"), 
352                  dev_file(dev));
353          } else {
354             Jmsg(jcr, M_ERROR, 0, _("I canot write on this volume because:\n\
355 The number of files mismatch! Volume=%u Catalog=%u\n"), 
356                  dev_file(dev), dev->VolCatInfo.VolCatFiles);
357             mark_volume_in_error(jcr, dev);
358             goto mount_next_vol;
359          }
360       }
361       dev->VolCatInfo.VolCatMounts++;      /* Update mounts */
362       Dmsg1(100, "update volinfo mounts=%d\n", dev->VolCatInfo.VolCatMounts);
363       dir_update_volume_info(jcr, dev, 0);
364       /* Return an empty block */
365       empty_block(block);             /* we used it for reading so set for write */
366    }
367    dev->state |= ST_APPEND;
368    Dmsg0(100, "Normal return from read_dev_for_append\n");
369    return 1; 
370 }
371
372 static void mark_volume_in_error(JCR *jcr, DEVICE *dev)
373 {
374    Jmsg(jcr, M_INFO, 0, _("Marking Volume \"%s\" in Error in Catalog.\n"),
375         jcr->VolumeName);
376    bstrncpy(dev->VolCatInfo.VolCatStatus, "Error", sizeof(dev->VolCatInfo.VolCatStatus));
377    Dmsg0(100, "dir_update_vol_info. Set Error.\n");
378    dir_update_volume_info(jcr, dev, 0);
379 }
380
381 /* 
382  * If we are reading, we come here at the end of the tape
383  *  and see if there are more volumes to be mounted.
384  */
385 int mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
386 {
387    Dmsg2(90, "NumVolumes=%d CurVolume=%d\n", jcr->NumVolumes, jcr->CurVolume);
388    /*
389     * End Of Tape -- mount next Volume (if another specified)
390     */
391    if (jcr->NumVolumes > 1 && jcr->CurVolume < jcr->NumVolumes) {
392       close_dev(dev);
393       dev->state &= ~ST_READ; 
394       if (!acquire_device_for_read(jcr, dev, block)) {
395          Jmsg2(jcr, M_FATAL, 0, "Cannot open Dev=%s, Vol=%s\n", dev_name(dev),
396                jcr->VolumeName);
397          return 0;
398       }
399       return 1;                       /* next volume mounted */
400    }
401    Dmsg0(90, "End of Device reached.\n");
402    return 0;
403 }
404
405 /*
406  * Either because we are going to hang a new volume, or because
407  *  of explicit user request, we release the current volume.
408  */
409 void release_volume(JCR *jcr, DEVICE *dev)
410 {
411    if (jcr->WroteVol) {
412       Jmsg0(jcr, M_ERROR, 0, "Hey!!!!! WroteVol non-zero !!!!!\n");
413    }
414    /* 
415     * First erase all memory of the current volume   
416     */
417    dev->block_num = dev->file = 0;
418    dev->EndBlock = dev->EndFile = 0;
419    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
420    memset(&jcr->VolCatInfo, 0, sizeof(jcr->VolCatInfo));
421    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
422    /* Force re-read of label */
423    dev->state &= ~(ST_LABEL|ST_READ|ST_APPEND);
424    jcr->VolumeName[0] = 0;
425
426    if ((dev->state & ST_OPENED) && 
427        (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN))) {
428       offline_or_rewind_dev(dev);
429       close_dev(dev);
430    }
431
432    /* If we have not closed the device, then at least rewind the tape */
433    if (dev->state & ST_OPENED) {
434       offline_or_rewind_dev(dev);
435    }
436 }