]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/mount.c
c089b1268a6db9cc1646acac6ed0cdfc878c566e
[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-2005 Kern Sibbald
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 void mark_volume_not_inchanger(DCR *dcr);
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_device_wait_timers(dcr);
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->print_name());
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    Dmsg3(100, "After find_next_append. Vol=%s Slot=%d Parts=%d\n",
104          dcr->VolCatInfo.VolCatName, dcr->VolCatInfo.Slot, dcr->VolCatInfo.VolCatParts);
105    
106    dev->num_parts = dcr->VolCatInfo.VolCatParts;
107
108    /*
109     * Get next volume and ready it for append
110     * This code ensures that the device is ready for
111     * writing. We start from the assumption that there
112     * may not be a tape mounted.
113     *
114     * If the device is a file, we create the output
115     * file. If it is a tape, we check the volume name
116     * and move the tape to the end of data.
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_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 we have a dvd that requires mount, we first want to guess
158     * which Volume is loaded, so we continue (if the wrong device is
159     * loaded, open_device just below would fail. 
160     */
161    if (!dev->is_dvd()) {
162       if (!open_device(dcr)) {
163          if (dev->poll) {
164             goto mount_next_vol;
165          } else {
166             return false;
167          }
168       }
169    } else {
170       /*
171        * Just copy the VolCatName in the device resource 
172        *   (usually done by open_dev).
173        * It is necessary so we can open the real files later.   
174        */
175       bstrncpy(dev->VolCatInfo.VolCatName, dcr->VolCatInfo.VolCatName, sizeof(dev->VolCatInfo.VolCatName));
176    }
177
178    /*
179     * Now make sure we have the right tape mounted
180     */
181 read_volume:
182    /*
183     * If we are writing to a stream device, ASSUME the volume label
184     *  is correct.
185     */
186    if (dev_cap(dev, CAP_STREAM)) {
187       vol_label_status = VOL_OK;
188       create_volume_label(dev, dcr->VolumeName, "Default");
189       dev->VolHdr.LabelType = PRE_LABEL;
190    } else if (dev->is_dvd()) {
191       vol_label_status = read_dev_volume_label_guess(dcr, 1);
192    } else {
193       vol_label_status = read_dev_volume_label(dcr);
194    }
195    if (job_canceled(jcr)) {
196       return false;
197    }
198
199    Dmsg2(100, "dirVol=%s dirStat=%s\n", dcr->VolumeName,
200       dcr->VolCatInfo.VolCatStatus);
201    /*
202     * At this point, dev->VolCatInfo has what is in the drive, if anything,
203     *          and   dcr->VolCatInfo has what the Director wants.
204     */
205    switch (vol_label_status) {
206    case VOL_OK:
207       Dmsg1(100, "Vol OK name=%s\n", dcr->VolumeName);
208       memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
209       recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
210       break;                    /* got a Volume */
211    case VOL_NAME_ERROR:
212       VOLUME_CAT_INFO VolCatInfo, devVolCatInfo;
213
214       /* If not removable, Volume is broken */
215       if (!dev_cap(dev, CAP_REM)) {
216          Jmsg(jcr, M_WARNING, 0, _("Volume \"%s\" not on device %s.\n"),
217             dcr->VolumeName, dev->print_name());
218          mark_volume_in_error(dcr);
219          goto mount_next_vol;
220       }
221
222       Dmsg1(100, "Vol NAME Error Name=%s\n", dcr->VolumeName);
223       /* If polling and got a previous bad name, ignore it */
224       if (dev->poll && strcmp(dev->BadVolName, dev->VolHdr.VolName) == 0) {
225          ask = true;
226          Dmsg1(200, "Vol Name error supress due to poll. Name=%s\n",
227             dcr->VolumeName);
228          goto mount_next_vol;
229       }
230       /*
231        * OK, we got a different volume mounted. First save the
232        *  requested Volume info (dcr) structure, then query if
233        *  this volume is really OK. If not, put back the desired
234        *  volume name, mark it not in changer and continue.
235        */
236       memcpy(&VolCatInfo, &dcr->VolCatInfo, sizeof(VolCatInfo));
237       memcpy(&devVolCatInfo, &dev->VolCatInfo, sizeof(devVolCatInfo));
238       /* Check if this is a valid Volume in the pool */
239       bstrncpy(dcr->VolumeName, dev->VolHdr.VolName, sizeof(dcr->VolumeName));
240       if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_WRITE)) {
241          /* Restore desired volume name, note device info out of sync */
242          /* This gets the info regardless of the Pool */
243          if (autochanger && dir_get_volume_info(dcr, GET_VOL_INFO_FOR_READ)) {
244             mark_volume_not_inchanger(dcr);
245          }
246          memcpy(&dev->VolCatInfo, &devVolCatInfo, sizeof(dev->VolCatInfo));
247          bstrncpy(dev->BadVolName, dev->VolHdr.VolName, sizeof(dev->BadVolName));
248          Jmsg(jcr, M_WARNING, 0, _("Director wanted Volume \"%s\".\n"
249               "    Current Volume \"%s\" not acceptable because:\n"
250               "    %s"),
251              VolCatInfo.VolCatName, dev->VolHdr.VolName,
252              jcr->dir_bsock->msg);
253          ask = true;
254          goto mount_next_vol;
255       }
256       /* This was not the volume we expected, but it is OK with
257        * the Director, so use it.
258        */
259       Dmsg1(100, "want new name=%s\n", dcr->VolumeName);
260       memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
261       recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
262       break;                /* got a Volume */
263    /*
264     * At this point, we assume we have a blank tape mounted.
265     */
266    case VOL_NO_LABEL:
267    case VOL_IO_ERROR:
268       /*
269        * If permitted, we label the device, make sure we can do
270        *   it by checking that the VolCatBytes is zero => not labeled,
271        *   once the Volume is labeled we don't want to label another
272        *   blank tape with the same name.  For disk, we go ahead and
273        *   label it anyway, because the OS insures that there is only
274        *   one Volume with that name.
275        * As noted above, at this point dcr->VolCatInfo has what
276        *   the Director wants and dev->VolCatInfo has info on the
277        *   previous tape (or nothing).
278        */
279       if (dev_cap(dev, CAP_LABEL) && (dcr->VolCatInfo.VolCatBytes == 0 ||
280             (!dev->is_tape() && strcmp(dcr->VolCatInfo.VolCatStatus,
281                                    "Recycle") == 0))) {
282          Dmsg0(100, "Create volume label\n");
283          /* Create a new Volume label and write it to the device */
284          if (!write_new_volume_label_to_dev(dcr, dcr->VolumeName,
285                 dcr->pool_name)) {
286             Dmsg0(100, "!write_vol_label\n");
287             mark_volume_in_error(dcr);
288             goto mount_next_vol;
289          }
290          Dmsg0(100, "dir_update_vol_info. Set Append\n");
291          /* Copy Director's info into the device info */
292          memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
293          if (!dir_update_volume_info(dcr, true)) {  /* indicate tape labeled */
294             return false;
295          }
296          Jmsg(jcr, M_INFO, 0, _("Labeled new Volume \"%s\" on device %s.\n"),
297             dcr->VolumeName, dev->print_name());
298          goto read_volume;      /* read label we just wrote */
299       }
300       /* If not removable, Volume is broken */
301       if (!dev_cap(dev, CAP_REM)) {
302          Jmsg(jcr, M_WARNING, 0, _("Volume \"%s\" not on device %s.\n"),
303             dcr->VolumeName, dev->print_name());
304          mark_volume_in_error(dcr);
305          goto mount_next_vol;
306       }
307       /* NOTE! Fall-through wanted. */
308    case VOL_NO_MEDIA:
309    default:
310       /* Send error message */
311       if (!dev->poll) {
312          Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);
313       } else {
314          Dmsg1(200, "Msg suppressed by poll: %s\n", jcr->errmsg);
315       }
316       ask = true;
317       /* Needed, so the medium can be changed */
318       if (dev_cap(dev, CAP_REQMOUNT)) {
319          close_dev(dev);  
320       }
321       goto mount_next_vol;
322    }
323
324    /*
325     * See if we have a fresh tape or a tape with data.
326     *
327     * Note, if the LabelType is PRE_LABEL, it was labeled
328     *  but never written. If so, rewrite the label but set as
329     *  VOL_LABEL.  We rewind and return the label (reconstructed)
330     *  in the block so that in the case of a new tape, data can
331     *  be appended just after the block label.  If we are writing
332     *  a second volume, the calling routine will write the label
333     *  before writing the overflow block.
334     *
335     *  If the tape is marked as Recycle, we rewrite the label.
336     */
337    if (dev->VolHdr.LabelType == PRE_LABEL || recycle) {
338       if (!rewrite_volume_label(dcr, recycle)) {
339          mark_volume_in_error(dcr);
340          goto mount_next_vol;
341       }
342    } else {
343       /*
344        * OK, at this point, we have a valid Bacula label, but
345        * we need to position to the end of the volume, since we are
346        * just now putting it into append mode.
347        */
348       Dmsg0(200, "Device previously written, moving to end of data\n");
349       Jmsg(jcr, M_INFO, 0, _("Volume \"%s\" previously written, moving to end of data.\n"),
350          dcr->VolumeName);
351 #if defined (__digital__) && defined (__unix__)
352       if (!fsf_dev(dev,dev->VolCatInfo.VolCatFiles)) {
353 #else
354       if (!eod_dev(dev)) {
355 #endif
356          Jmsg(jcr, M_ERROR, 0, _("Unable to position to end of data on device %s: ERR=%s\n"),
357             dev->print_name(), strerror_dev(dev));
358          mark_volume_in_error(dcr);
359          goto mount_next_vol;
360       }
361       /* *****FIXME**** we should do some checking for files too */
362       if (dev->is_tape()) {
363          /*
364           * Check if we are positioned on the tape at the same place
365           * that the database says we should be.
366           */
367          if (dev->VolCatInfo.VolCatFiles == dev_file(dev)) {
368             Jmsg(jcr, M_INFO, 0, _("Ready to append to end of Volume \"%s\" at file=%d.\n"),
369                  dcr->VolumeName, dev_file(dev));
370          } else {
371             Jmsg(jcr, M_ERROR, 0, _("I cannot write on Volume \"%s\" because:\n"
372 "The number of files mismatch! Volume=%u Catalog=%u\n"),
373                  dcr->VolumeName, dev_file(dev), dev->VolCatInfo.VolCatFiles);
374             mark_volume_in_error(dcr);
375             goto mount_next_vol;
376          }
377       }
378       dev->VolCatInfo.VolCatMounts++;      /* Update mounts */
379       Dmsg1(100, "update volinfo mounts=%d\n", dev->VolCatInfo.VolCatMounts);
380       if (!dir_update_volume_info(dcr, false)) {
381          return false;
382       }
383       /* Return an empty block */
384       empty_block(block);             /* we used it for reading so set for write */
385    }
386    dev->set_append();
387    Dmsg0(100, "set APPEND, normal return from read_dev_for_append\n");
388    return true;
389 }
390
391
392
393 /*
394  * Mark volume in error in catalog
395  */
396 void mark_volume_in_error(DCR *dcr)
397 {
398    DEVICE *dev = dcr->dev;
399    Jmsg(dcr->jcr, M_INFO, 0, _("Marking Volume \"%s\" in Error in Catalog.\n"),
400         dcr->VolumeName);
401    memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
402    bstrncpy(dev->VolCatInfo.VolCatStatus, "Error", sizeof(dev->VolCatInfo.VolCatStatus));
403    Dmsg0(100, "dir_update_vol_info. Set Error.\n");
404    dir_update_volume_info(dcr, false);
405 }
406
407 /*
408  * The Volume is not in the correct slot, so mark this
409  *   Volume as not being in the Changer.
410  */
411 static void mark_volume_not_inchanger(DCR *dcr)
412 {
413    JCR *jcr = dcr->jcr;
414    DEVICE *dev = dcr->dev;
415    Jmsg(jcr, M_ERROR, 0, _("Autochanger Volume \"%s\" not found in slot %d.\n"
416 "    Setting InChanger to zero in catalog.\n"),
417         dcr->VolCatInfo.VolCatName, dcr->VolCatInfo.Slot);
418    memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
419    dcr->VolCatInfo.InChanger = false;
420    dev->VolCatInfo.InChanger = false;
421    Dmsg0(400, "update vol info in mount\n");
422    dir_update_volume_info(dcr, true);  /* set new status */
423 }
424
425
426 /*
427  * If we are reading, we come here at the end of the tape
428  *  and see if there are more volumes to be mounted.
429  */
430 bool mount_next_read_volume(DCR *dcr)
431 {
432    DEVICE *dev = dcr->dev;
433    JCR *jcr = dcr->jcr;
434    Dmsg2(90, "NumVolumes=%d CurVolume=%d\n", jcr->NumVolumes, jcr->CurVolume);
435    /*
436     * End Of Tape -- mount next Volume (if another specified)
437     */
438    if (jcr->NumVolumes > 1 && jcr->CurVolume < jcr->NumVolumes) {
439       close_dev(dev);
440       dev->clear_read();
441       if (!acquire_device_for_read(dcr)) {
442          Jmsg2(jcr, M_FATAL, 0, "Cannot open Dev=%s, Vol=%s\n", dev->print_name(),
443                dcr->VolumeName);
444          return false;
445       }
446       return true;                    /* next volume mounted */
447    }
448    Dmsg0(90, "End of Device reached.\n");
449    return false;
450 }
451
452 /*
453  * Either because we are going to hang a new volume, or because
454  *  of explicit user request, we release the current volume.
455  */
456 void release_volume(DCR *dcr)
457 {
458    JCR *jcr = dcr->jcr;
459    DEVICE *dev = dcr->dev;
460    if (dcr->WroteVol) {
461       Jmsg0(jcr, M_ERROR, 0, "Hey!!!!! WroteVol non-zero !!!!!\n");
462       Dmsg0(190, "Hey!!!!! WroteVol non-zero !!!!!\n");
463    }
464    /*
465     * First erase all memory of the current volume
466     */
467    dev->block_num = dev->file = 0;
468    dev->EndBlock = dev->EndFile = 0;
469    memset(&dev->VolCatInfo, 0, sizeof(dev->VolCatInfo));
470    memset(&dcr->VolCatInfo, 0, sizeof(dcr->VolCatInfo));
471    memset(&dev->VolHdr, 0, sizeof(dev->VolHdr));
472    /* Force re-read of label */
473    dev->state &= ~(ST_LABEL|ST_READ|ST_APPEND);
474    dev->label_type = B_BACULA_LABEL;
475    dcr->VolumeName[0] = 0;
476
477    if (dev->is_open() && (!dev->is_tape() || !dev_cap(dev, CAP_ALWAYSOPEN))) {
478       offline_or_rewind_dev(dev);
479       close_dev(dev);
480    }
481
482    /* If we have not closed the device, then at least rewind the tape */
483    if (dev->is_open()) {
484       offline_or_rewind_dev(dev);
485    }
486    Dmsg0(190, "===== release_volume ---");
487 }