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