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