]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/mount.c
66a040329237edc0e0852b4da45a4785049521aa
[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-2004 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 static bool rewrite_volume_label(DCR *dcr, bool recycle);
34
35
36 /*
37  * If release is set, we rewind the current volume, 
38  * which we no longer want, and ask the user (console) 
39  * to mount the next volume.
40  *
41  *  Continue trying until we get it, and then ensure
42  *  that we can write on it.
43  *
44  * This routine returns a 0 only if it is REALLY
45  *  impossible to get the requested Volume.
46  *
47  */
48 bool mount_next_write_volume(DCR *dcr, bool release)
49 {
50    int retry = 0;
51    bool ask = false, recycle, autochanger;
52    int vol_label_status;
53    DEVICE *dev = dcr->dev;
54    JCR *jcr = dcr->jcr;
55    DEV_BLOCK *block = dcr->block;
56
57    Dmsg0(100, "Enter mount_next_volume()\n");
58
59    init_dev_wait_timers(dev);
60
61    /* 
62     * Attempt to mount the next volume. If something non-fatal goes
63     *  wrong, we come back here to re-try (new op messages, re-read
64     *  Volume, ...)
65     */
66 mount_next_vol:
67    /* Ignore retry if this is poll request */
68    if (!dev->poll && retry++ > 4) {
69       /* Last ditch effort before giving up, force operator to respond */
70       dcr->VolCatInfo.Slot = 0;
71       if (!dir_ask_sysop_to_mount_volume(dcr)) {
72          Jmsg(jcr, M_FATAL, 0, _("Too many errors trying to mount device %s.\n"), 
73               dev_name(dev));
74          return false;
75       }
76    }
77    if (job_canceled(jcr)) {
78       Jmsg(jcr, M_FATAL, 0, _("Job %d canceled.\n"), jcr->JobId);
79       return false;
80    }
81    recycle = false;
82    if (release) {
83       Dmsg0(100, "mount_next_volume release=1\n");
84       release_volume(dcr);
85       ask = true;                     /* ask operator to mount tape */
86    }
87
88    /* 
89     * Get Director's idea of what tape we should have mounted. 
90     *    in dcr->VolCatInfo
91     */
92    Dmsg0(200, "Before dir_find_next_appendable_volume.\n");
93    while (!dir_find_next_appendable_volume(dcr)) {
94        Dmsg0(200, "not dir_find_next\n");
95        if (!dir_ask_sysop_to_create_appendable_volume(dcr)) {
96          return false;
97        }
98        Dmsg0(200, "Again dir_find_next_append...\n");
99    }
100    if (job_canceled(jcr)) {
101       return false;
102    }
103    Dmsg2(100, "After find_next_append. Vol=%s Slot=%d\n",
104          dcr->VolCatInfo.VolCatName, dcr->VolCatInfo.Slot);
105
106    /* 
107     * Get next volume and ready it for append
108     * This code ensures that the device is ready for
109     * writing. We start from the assumption that there
110     * may not be a tape mounted. 
111     *
112     * If the device is a file, we create the output
113     * file. If it is a tape, we check the volume name
114     * and move the tape to the end of data.
115     *
116     * It assumes that the device is not already in use!
117     *
118     */
119    if (autoload_device(dcr, 1, NULL) > 0) {
120       autochanger = true;
121       ask = false;
122    } else {
123       autochanger = false;
124       dcr->VolCatInfo.Slot = 0;
125    }
126    Dmsg1(100, "autoload_dev returns %d\n", autochanger);
127    /*
128     * If we autochanged to correct Volume or (we have not just
129     *   released the Volume AND we can automount) we go ahead 
130     *   and read the label. If there is no tape in the drive,
131     *   we will err, recurse and ask the operator the next time.
132     */
133    if (!release && dev_is_tape(dev) && dev_cap(dev, CAP_AUTOMOUNT)) {
134       ask = false;                 /* don't ask SYSOP this time */
135    }
136    /* Don't ask if not removable */
137    if (!dev_cap(dev, CAP_REM)) {
138       ask = false;
139    }
140    Dmsg2(100, "Ask=%d autochanger=%d\n", ask, autochanger);
141    release = true;                /* release next time if we "recurse" */
142
143    if (ask && !dir_ask_sysop_to_mount_volume(dcr)) {
144       Dmsg0(100, "Error return ask_sysop ...\n");
145       return false;          /* error return */
146    }
147    if (job_canceled(jcr)) {
148       return false;
149    }
150    Dmsg1(100, "want vol=%s\n", dcr->VolumeName);
151
152    if (dev->poll && dev_cap(dev, CAP_CLOSEONPOLL)) {
153       force_close_dev(dev);
154    }
155
156    /* Ensure the device is open */
157    if (!open_device(dcr)) {
158       if (dev->poll) {
159          goto mount_next_vol;
160       } else {
161          return false;
162       }
163    }
164
165    /*
166     * Now make sure we have the right tape mounted
167     */
168 read_volume:
169    /* 
170     * If we are writing to a stream device, ASSUME the volume label
171     *  is correct.
172     */
173    if (dev_cap(dev, CAP_STREAM)) {
174       vol_label_status = VOL_OK;
175       create_volume_label(dev, dcr->VolumeName, "Default");
176       dev->VolHdr.LabelType = PRE_LABEL;
177    } else {
178       vol_label_status = read_dev_volume_label(dcr);
179    }
180    if (job_canceled(jcr)) {
181       return false;
182    }
183
184    Dmsg2(100, "dirVol=%s dirStat=%s\n", dcr->VolumeName,
185       dcr->VolCatInfo.VolCatStatus);
186    /*
187     * At this point, dev->VolCatInfo has what is in the drive, if anything,
188     *          and   dcr->VolCatInfo has what the Director wants.
189     */
190    switch (vol_label_status) {
191    case VOL_OK:
192       Dmsg1(100, "Vol OK name=%s\n", dcr->VolumeName);
193       memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
194       recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
195       break;                    /* got a Volume */
196    case VOL_NAME_ERROR:
197       VOLUME_CAT_INFO VolCatInfo;
198
199       /* If not removable, Volume is broken */
200       if (!dev_cap(dev, CAP_REM)) {
201          Jmsg(jcr, M_WARNING, 0, _("Volume \"%s\" not on device %s.\n"),
202             dcr->VolumeName, dev_name(dev));
203          mark_volume_in_error(dcr);
204          goto mount_next_vol;
205       }
206          
207       Dmsg1(100, "Vol NAME Error Name=%s\n", dcr->VolumeName);
208       /* If polling and got a previous bad name, ignore it */
209       if (dev->poll && strcmp(dev->BadVolName, dev->VolHdr.VolName) == 0) {
210          ask = true;
211          Dmsg1(200, "Vol Name error supress due to poll. Name=%s\n", 
212             dcr->VolumeName);
213          goto mount_next_vol;
214       }
215       /* 
216        * OK, we got a different volume mounted. First save the
217        *  requested Volume info (jcr) structure, then query if
218        *  this volume is really OK. If not, put back the desired
219        *  volume name and continue.
220        */
221       memcpy(&VolCatInfo, &dcr->VolCatInfo, sizeof(VolCatInfo));
222       /* Check if this is a valid Volume in the pool */
223       bstrncpy(dcr->VolumeName, dev->VolHdr.VolName, sizeof(dcr->VolumeName));
224       if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_WRITE)) {
225          bstrncpy(dev->BadVolName, dev->VolHdr.VolName, sizeof(dev->BadVolName));
226          Jmsg(jcr, M_WARNING, 0, _("Director wanted Volume \"%s\".\n"
227               "    Current Volume \"%s\" not acceptable because:\n"
228               "    %s"),
229              VolCatInfo.VolCatName, dev->VolHdr.VolName,
230              jcr->dir_bsock->msg);
231          /* Restore desired volume name, note device info out of sync */
232          memcpy(&dcr->VolCatInfo, &VolCatInfo, sizeof(dcr->VolCatInfo));
233          ask = true;
234          goto mount_next_vol;
235       }
236       Dmsg1(100, "want new name=%s\n", dcr->VolumeName);
237       memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
238       recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
239       break;                /* got a Volume */
240    /*
241     * At this point, we assume we have a blank tape mounted.
242     */
243    case VOL_NO_LABEL:
244    case VOL_IO_ERROR:
245       /* 
246        * If permitted, we label the device, make sure we can do
247        *   it by checking that the VolCatBytes is zero => not labeled, 
248        *   once the Volume is labeled we don't want to label another
249        *   blank tape with the same name.  For disk, we go ahead and
250        *   label it anyway, because the OS insures that there is only
251        *   one Volume with that name.
252        * As noted above, at this point dcr->VolCatInfo has what
253        *   the Director wants and dev->VolCatInfo has info on the
254        *   previous tape (or nothing).
255        */
256       if (dev_cap(dev, CAP_LABEL) && (dcr->VolCatInfo.VolCatBytes == 0 ||
257             (!dev_is_tape(dev) && strcmp(dcr->VolCatInfo.VolCatStatus, 
258                                    "Recycle") == 0))) {
259          Dmsg0(100, "Create volume label\n");
260          /* Create a new Volume label and write it to the device */
261          if (!write_new_volume_label_to_dev(dcr, dcr->VolumeName,
262                 dcr->pool_name)) {
263             Dmsg0(100, "!write_vol_label\n");
264             goto mount_next_vol;
265          }
266          Dmsg0(100, "dir_update_vol_info. Set Append\n");
267          /* Copy Director's info into the device info */
268          memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
269          if (!dir_update_volume_info(dcr, true)) {  /* indicate tape labeled */
270             return false;
271          }
272          Jmsg(jcr, M_INFO, 0, _("Labeled new Volume \"%s\" on device %s.\n"),
273             dcr->VolumeName, dev_name(dev));
274          goto read_volume;      /* read label we just wrote */
275       } 
276       /* If not removable, Volume is broken */
277       if (!dev_cap(dev, CAP_REM)) {
278          Jmsg(jcr, M_WARNING, 0, _("Volume \"%s\" not on device %s.\n"),
279             dcr->VolumeName, dev_name(dev));
280          mark_volume_in_error(dcr);
281          goto mount_next_vol;
282       }
283       /* NOTE! Fall-through wanted. */
284    case VOL_NO_MEDIA:
285    default:
286       /* Send error message */
287       if (!dev->poll) {
288          Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
289       } else {
290          Dmsg1(200, "Msg suppressed by poll: %s\n", jcr->errmsg);
291       }
292       ask = true;
293       goto mount_next_vol;
294    }
295
296    /* 
297     * See if we have a fresh tape or a tape with data.
298     *
299     * Note, if the LabelType is PRE_LABEL, it was labeled
300     *  but never written. If so, rewrite the label but set as
301     *  VOL_LABEL.  We rewind and return the label (reconstructed)
302     *  in the block so that in the case of a new tape, data can
303     *  be appended just after the block label.  If we are writing
304     *  a second volume, the calling routine will write the label
305     *  before writing the overflow block.
306     *
307     *  If the tape is marked as Recycle, we rewrite the label.
308     */
309    if (dev->VolHdr.LabelType == PRE_LABEL || recycle) {
310       if (!rewrite_volume_label(dcr, recycle)) {
311          goto mount_next_vol;
312       }
313    } else {
314       /*
315        * OK, at this point, we have a valid Bacula label, but
316        * we need to position to the end of the volume, since we are
317        * just now putting it into append mode.
318        */
319       Dmsg0(200, "Device previously written, moving to end of data\n");
320       Jmsg(jcr, M_INFO, 0, _("Volume \"%s\" previously written, moving to end of data.\n"),
321          dcr->VolumeName);
322       if (!eod_dev(dev)) {
323          Jmsg(jcr, M_ERROR, 0, _("Unable to position to end of data on device \"%s\". ERR=%s\n"),
324             dev_name(dev), strerror_dev(dev));
325          mark_volume_in_error(dcr);
326          goto mount_next_vol;
327       }
328       /* *****FIXME**** we should do some checking for files too */
329       if (dev_is_tape(dev)) {
330          /*
331           * Check if we are positioned on the tape at the same place
332           * that the database says we should be.
333           */
334          if (dev->VolCatInfo.VolCatFiles == dev_file(dev)) {
335             Jmsg(jcr, M_INFO, 0, _("Ready to append to end of Volume \"%s\" at file=%d.\n"), 
336                  dcr->VolumeName, dev_file(dev));
337          } else {
338             Jmsg(jcr, M_ERROR, 0, _("I canot write on Volume \"%s\" because:\n\
339 The number of files mismatch! Volume=%u Catalog=%u\n"), 
340                  dcr->VolumeName, dev_file(dev), dev->VolCatInfo.VolCatFiles);
341             mark_volume_in_error(dcr);
342             goto mount_next_vol;
343          }
344       }
345       dev->VolCatInfo.VolCatMounts++;      /* Update mounts */
346       Dmsg1(100, "update volinfo mounts=%d\n", dev->VolCatInfo.VolCatMounts);
347       if (!dir_update_volume_info(dcr, false)) {
348          return false;
349       }
350       /* Return an empty block */
351       empty_block(block);             /* we used it for reading so set for write */
352    }
353    dev->state |= ST_APPEND;
354    Dmsg0(100, "set APPEND, normal return from read_dev_for_append\n");
355    return true;
356 }
357
358 /*
359  * Write a volume label. 
360  *  Returns: true if OK
361  *           false if unable to write it
362  */
363 static bool rewrite_volume_label(DCR *dcr, bool recycle)
364 {
365    DEVICE *dev = dcr->dev;
366    JCR *jcr = dcr->jcr;
367
368    Dmsg1(190, "set append found freshly labeled volume. dev=%x\n", dev);
369    dev->VolHdr.LabelType = VOL_LABEL; /* set Volume label */
370    dev->state |= ST_APPEND;
371    if (!write_volume_label_to_block(dcr)) {
372       Dmsg0(200, "Error from write volume label.\n");
373       return false;
374    }
375    /*
376     * If we are not dealing with a streaming device,
377     *  write the block now to ensure we have write permission.
378     *  It is better to find out now rather than later.
379     */
380    if (!dev_cap(dev, CAP_STREAM)) {
381       if (!rewind_dev(dev)) {
382          Jmsg2(jcr, M_WARNING, 0, _("Rewind error on device \"%s\". ERR=%s\n"), 
383                dev_name(dev), strerror_dev(dev));
384       }
385       if (recycle) {
386          if (!truncate_dev(dev)) {
387             Jmsg2(jcr, M_WARNING, 0, _("Truncate error on device \"%s\". ERR=%s\n"), 
388                   dev_name(dev), strerror_dev(dev));
389          }
390       }
391       /* Attempt write to check write permission */
392       Dmsg0(200, "Attempt to write to device.\n");
393       if (!write_block_to_dev(dcr)) {
394          Jmsg2(jcr, M_ERROR, 0, _("Unable to write device \"%s\". ERR=%s\n"),
395             dev_name(dev), strerror_dev(dev));
396          Dmsg0(200, "===ERROR write block to dev\n");
397          return false;
398       }
399    }
400    /* Set or reset Volume statistics */
401    dev->VolCatInfo.VolCatJobs = 0;
402    dev->VolCatInfo.VolCatFiles = 0;
403    dev->VolCatInfo.VolCatBytes = 1;
404    dev->VolCatInfo.VolCatErrors = 0;
405    dev->VolCatInfo.VolCatBlocks = 0;
406    dev->VolCatInfo.VolCatRBytes = 0;
407    if (recycle) {
408       dev->VolCatInfo.VolCatMounts++;  
409       dev->VolCatInfo.VolCatRecycles++;
410    } else {
411       dev->VolCatInfo.VolCatMounts = 1;
412       dev->VolCatInfo.VolCatRecycles = 0;
413       dev->VolCatInfo.VolCatWrites = 1;
414       dev->VolCatInfo.VolCatReads = 1;
415    }
416    Dmsg0(100, "dir_update_vol_info. Set Append\n");
417    bstrncpy(dev->VolCatInfo.VolCatStatus, "Append", sizeof(dev->VolCatInfo.VolCatStatus));
418    if (!dir_update_volume_info(dcr, true)) {  /* indicate doing relabel */
419       return false;
420    }
421    if (recycle) {
422       Jmsg(jcr, M_INFO, 0, _("Recycled volume \"%s\" on device \"%s\", all previous data lost.\n"),
423          dcr->VolumeName, dev_name(dev));
424    } else {
425       Jmsg(jcr, M_INFO, 0, _("Wrote label to prelabeled Volume \"%s\" on device \"%s\"\n"),
426          dcr->VolumeName, dev_name(dev));
427    }
428    /*
429     * End writing real Volume label (from pre-labeled tape), or recycling
430     *  the volume.
431     */
432    Dmsg0(200, "OK from rewite vol label.\n");
433    return true;
434 }
435
436
437 /*
438  * Mark volume in error in catalog 
439  */
440 void mark_volume_in_error(DCR *dcr)
441 {
442    DEVICE *dev = dcr->dev;
443    Jmsg(dcr->jcr, M_INFO, 0, _("Marking Volume \"%s\" in Error in Catalog.\n"),
444         dcr->VolumeName);
445    bstrncpy(dev->VolCatInfo.VolCatStatus, "Error", sizeof(dev->VolCatInfo.VolCatStatus));
446    Dmsg0(100, "dir_update_vol_info. Set Error.\n");
447    dir_update_volume_info(dcr, false);
448 }
449
450 /* 
451  * If we are reading, we come here at the end of the tape
452  *  and see if there are more volumes to be mounted.
453  */
454 bool mount_next_read_volume(DCR *dcr)
455 {
456    DEVICE *dev = dcr->dev;
457    JCR *jcr = dcr->jcr;
458    Dmsg2(90, "NumVolumes=%d CurVolume=%d\n", jcr->NumVolumes, jcr->CurVolume);
459    /*
460     * End Of Tape -- mount next Volume (if another specified)
461     */
462    if (jcr->NumVolumes > 1 && jcr->CurVolume < jcr->NumVolumes) {
463       close_dev(dev);
464       dev->state &= ~ST_READ; 
465       if (!acquire_device_for_read(jcr)) {
466          Jmsg2(jcr, M_FATAL, 0, "Cannot open Dev=%s, Vol=%s\n", dev_name(dev),
467                dcr->VolumeName);
468          return false;
469       }
470       return true;                    /* next volume mounted */
471    }
472    Dmsg0(90, "End of Device reached.\n");
473    return false;
474 }
475
476 /*
477  * Either because we are going to hang a new volume, or because
478  *  of explicit user request, we release the current volume.
479  */
480 void release_volume(DCR *dcr)
481 {
482    JCR *jcr = dcr->jcr;
483    DEVICE *dev = dcr->dev;
484    if (dcr->WroteVol) {
485       Jmsg0(jcr, M_ERROR, 0, "Hey!!!!! WroteVol non-zero !!!!!\n");
486       Dmsg0(190, "Hey!!!!! WroteVol non-zero !!!!!\n");
487    }
488    /* 
489     * First erase all memory of the current volume   
490     */
491    dev->block_num = dev->file = 0;
492    dev->EndBlock = dev->EndFile = 0;
493    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
494    memset(&dcr->VolCatInfo, 0, sizeof(dcr->VolCatInfo));
495    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
496    /* Force re-read of label */
497    dev->state &= ~(ST_LABEL|ST_READ|ST_APPEND);
498    dcr->VolumeName[0] = 0;
499
500    if ((dev->state & ST_OPENED) && 
501        (!dev_is_tape(dev) || !dev_cap(dev, CAP_ALWAYSOPEN))) {
502       offline_or_rewind_dev(dev);
503       close_dev(dev);
504    }
505
506    /* If we have not closed the device, then at least rewind the tape */
507    if (dev->state & ST_OPENED) {
508       offline_or_rewind_dev(dev);
509    }
510    Dmsg0(190, "===== release_volume ---");
511 }