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