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