]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/mount.c
3b419860dd9d7889104c0d95c63e4b6ae2bd0dd0
[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  */
48 int mount_next_write_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block, int release)
49 {
50    int retry = 0, autochanger;
51    bool ask, recycle;
52
53    Dmsg0(100, "Enter mount_next_volume()\n");
54
55 mount_next_vol:
56    if (retry++ > 5) {
57       Jmsg(jcr, M_FATAL, 0, _("Too many errors trying to mount device %s.\n"), 
58            dev_name(dev));
59       return 0;
60    }
61    if (job_canceled(jcr)) {
62       Jmsg(jcr, M_FATAL, 0, _("Job canceled.\n"));
63       return 0;
64    }
65    autochanger = 0;
66    recycle = ask = false;
67    if (release) {
68       Dmsg0(100, "mount_next_volume release=1\n");
69       release_volume(jcr, dev);
70       ask = true;                     /* ask operator to mount tape */
71    }
72
73    /* 
74     * Get Director's idea of what tape we should have mounted. 
75     */
76    if (!dir_find_next_appendable_volume(jcr) &&
77        !dir_ask_sysop_to_mount_next_volume(jcr, dev)) {
78       return 0;
79    }
80    Dmsg2(100, "After find_next_append. Vol=%s Slot=%d\n",
81          jcr->VolCatInfo.VolCatName, jcr->VolCatInfo.Slot);
82
83    /* 
84     * Get next volume and ready it for append
85     * This code ensures that the device is ready for
86     * writing. We start from the assumption that there
87     * may not be a tape mounted. 
88     *
89     * If the device is a file, we create the output
90     * file. If it is a tape, we check the volume name
91     * and move the tape to the end of data.
92     *
93     * It assumes that the device is not already in use!
94     *
95     */
96
97    Dmsg0(100, "Enter ready_dev_for_append\n");
98
99    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
100
101    for ( ;; ) {
102       int vol_label_status;
103       autochanger = autoload_device(jcr, dev, 1, NULL);
104       Dmsg1(100, "autoload_dev returns %d\n", autochanger);
105
106       /*
107        * If we autochanged to correct Volume or (we have not just
108        *   released the Volume AND we can automount) we go ahead 
109        *   and read the label. If there is no tape in the drive,
110        *   we will err, recurse and ask the operator the next time.
111        */
112       if (autochanger || (!release && dev_is_tape(dev) && dev_cap(dev, CAP_AUTOMOUNT))) {
113          ask = false;                 /* don't ask SYSOP this time */
114       }
115
116       release = 1;                    /* release next time if we "recurse" */
117
118 // ask_again:
119       if (ask && !dir_ask_sysop_to_mount_next_volume(jcr, dev)) {
120          Dmsg0(100, "Error return ask_sysop ...\n");
121          return 0;              /* error return */
122       }
123       Dmsg1(100, "want vol=%s\n", jcr->VolumeName);
124
125       /* Open device */
126       if  (!(dev->state & ST_OPENED)) {
127           int mode;
128           if (dev_cap(dev, CAP_STREAM)) {
129              mode = OPEN_WRITE_ONLY;
130           } else {
131              mode = OPEN_READ_WRITE;
132           }
133           if (open_dev(dev, jcr->VolCatInfo.VolCatName, mode) < 0) {
134              Jmsg2(jcr, M_FATAL, 0, _("Unable to open device %s. ERR=%s\n"), 
135                 dev_name(dev), strerror_dev(dev));
136              return 0;
137           }
138       }
139
140       /*
141        * Now make sure we have the right tape mounted
142        */
143 read_volume:
144       /* 
145        * If we are writing to a stream device, ASSUME the volume label
146        *  is correct.
147        */
148       if (dev_cap(dev, CAP_STREAM)) {
149          vol_label_status = VOL_OK;
150          create_volume_label(dev, jcr->VolumeName, "Default");
151          dev->VolHdr.LabelType = PRE_LABEL;
152       } else {
153          vol_label_status = read_dev_volume_label(jcr, dev, block);
154       }
155       Dmsg2(100, "dirVol=%s dirStat=%s\n", jcr->VolumeName,
156          jcr->VolCatInfo.VolCatStatus);
157       /*
158        * At this point, dev->VolCatInfo has what is in the drive, if anything,
159        *          and   jcr->VolCatInfo has what the Director wants.
160        */
161       switch (vol_label_status) {
162       case VOL_OK:
163          Dmsg1(100, "Vol OK name=%s\n", jcr->VolumeName);
164          memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(jcr->VolCatInfo));
165          recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
166          break;                    /* got a Volume */
167       case VOL_NAME_ERROR:
168          VOLUME_CAT_INFO VolCatInfo;
169
170          Dmsg1(100, "Vol NAME Error Name=%s\n", jcr->VolumeName);
171          /* 
172           * OK, we got a different volume mounted. First save the
173           *  requested Volume info (jcr) structure, then query if
174           *  this volume is really OK. If not, put back the desired
175           *  volume name and continue.
176           */
177          memcpy(&VolCatInfo, &jcr->VolCatInfo, sizeof(VolCatInfo));
178          /* Check if this is a valid Volume in the pool */
179          pm_strcpy(&jcr->VolumeName, dev->VolHdr.VolName);                         
180          if (!dir_get_volume_info(jcr, GET_VOL_INFO_FOR_WRITE)) {
181             Mmsg(&jcr->errmsg, _("Director wanted Volume \"%s\".\n"
182                  "    Current Volume \"%s\" not acceptable because:\n"
183                  "    %s"),
184                 VolCatInfo.VolCatName, dev->VolHdr.VolName,
185                 jcr->dir_bsock->msg);
186             /* Restore desired volume name, note device info out of sync */
187             memcpy(&jcr->VolCatInfo, &VolCatInfo, sizeof(jcr->VolCatInfo));
188             goto mount_error;
189          }
190          Dmsg1(100, "want new name=%s\n", jcr->VolumeName);
191          memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(dev->VolCatInfo));
192          recycle = strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0;
193          break;                /* got a Volume */
194       /*
195        * At this point, we assume we have a blank tape mounted.
196        */
197       case VOL_NO_LABEL:
198       case VOL_IO_ERROR:
199          /* 
200           * If permitted, we label the device, make sure we can do
201           *   it by checking that the VolCatBytes is zero => not labeled. 
202           * As noted above, at this point jcr->VolCatInfo has what
203           *   the Director wants and dev->VolCatInfo has info on the
204           *   previous tape (or nothing).
205           */
206          if (dev_cap(dev, CAP_LABEL) && jcr->VolCatInfo.VolCatBytes == 0) {
207             Dmsg0(100, "Create volume label\n");
208             if (!write_volume_label_to_dev(jcr, (DEVRES *)dev->device, jcr->VolumeName,
209                    jcr->pool_name)) {
210                Dmsg0(100, "!write_vol_label\n");
211                goto mount_next_vol;
212             }
213             Dmsg0(200, "dir_update_vol_info. Set Append\n");
214             /* Copy Director's info into the device info */
215             memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(dev->VolCatInfo));
216             dir_update_volume_info(jcr, &dev->VolCatInfo, 1);  /* indicate tape labeled */
217             Jmsg(jcr, M_INFO, 0, _("Labeled new Volume \"%s\" on device %s.\n"),
218                jcr->VolumeName, dev_name(dev));
219             goto read_volume;      /* read label we just wrote */
220          } 
221          /* NOTE! Fall-through wanted. */
222       case VOL_NO_MEDIA:
223       default:
224 mount_error:
225          /* Send error message */
226          Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
227          Dmsg0(100, "Default\n");
228          ask = true;
229          /* was - goto ask_again; */         
230          goto mount_next_vol;
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     *  a 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 }