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