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