]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/mount.c
Fix for reused thread ids by FreeBSD + qfill command
[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          offline_or_rewind_dev(dev);
79          close_dev(dev);
80       }
81
82       /* If we have not closed the device, then at least rewind the tape */
83       if (dev->state & ST_OPENED) {
84          offline_or_rewind_dev(dev);
85       }
86       ask = 1;                        /* ask operator to mount tape */
87    }
88
89    /* 
90     * Get Director's idea of what tape we should have mounted. 
91     */
92    if (!dir_find_next_appendable_volume(jcr) &&
93        !dir_ask_sysop_to_mount_next_volume(jcr, dev)) {
94       return 0;
95    }
96    Dmsg2(100, "After find_next_append. Vol=%s Slot=%d\n",
97          jcr->VolCatInfo.VolCatName, jcr->VolCatInfo.Slot);
98
99    /* 
100     * Get next volume and ready it for append
101     * This code ensures that the device is ready for
102     * writing. We start from the assumption that there
103     * may not be a tape mounted. 
104     *
105     * If the device is a file, we create the output
106     * file. If it is a tape, we check the volume name
107     * and move the tape to the end of data.
108     *
109     * It assumes that the device is not already in use!
110     *
111     */
112
113    Dmsg0(100, "Enter ready_dev_for_append\n");
114
115    dev->state &= ~(ST_APPEND|ST_READ|ST_EOT|ST_WEOT|ST_EOF);
116
117    jcr->VolFirstIndex = jcr->JobFiles; /* first update of Vol FileIndex */
118    for ( ;; ) {
119       int vol_label_status;
120       autochanger = autoload_device(jcr, dev, 1, NULL);
121
122       /*
123        * If we autochanged to correct Volume or (we have not just
124        *   released the Volume AND we can automount) we go ahead 
125        *   and read the label. If there is no tape in the drive,
126        *   we will err, recurse and ask the operator the next time.
127        */
128       if (autochanger || (!release && dev_is_tape(dev) && dev_cap(dev, CAP_AUTOMOUNT))) {
129          ask = 0;                     /* don't ask SYSOP this time */
130       }
131
132       release = 1;                    /* release next time if we "recurse" */
133
134 ask_again:
135       if (ask && !dir_ask_sysop_to_mount_next_volume(jcr, dev)) {
136          Dmsg0(100, "Error return ask_sysop ...\n");
137          return 0;              /* error return */
138       }
139       Dmsg1(100, "want vol=%s\n", jcr->VolumeName);
140
141       /* Open device */
142       if  (!(dev->state & ST_OPENED)) {
143           int mode;
144           if (dev_cap(dev, CAP_STREAM)) {
145              mode = OPEN_WRITE_ONLY;
146           } else {
147              mode = OPEN_READ_WRITE;
148           }
149           if (open_dev(dev, jcr->VolCatInfo.VolCatName, mode) < 0) {
150              Jmsg2(jcr, M_FATAL, 0, _("Unable to open device %s. ERR=%s\n"), 
151                 dev_name(dev), strerror_dev(dev));
152              return 0;
153           }
154       }
155
156       /*
157        * Now make sure we have the right tape mounted
158        */
159 read_volume:
160       /* 
161        * If we are writing to a stream device, ASSUME the volume label
162        *  is correct.
163        */
164       if (dev_cap(dev, CAP_STREAM)) {
165          vol_label_status = VOL_OK;
166          create_volume_label(dev, jcr->VolumeName);
167          dev->VolHdr.LabelType = PRE_LABEL;
168       } else {
169          vol_label_status = read_dev_volume_label(jcr, dev, block);
170       }
171       /*
172        * At this point, dev->VolCatInfo has what is in the drive, if anything,
173        *          and   jcr->VolCatInfo has what the Director wants.
174        */
175       switch (vol_label_status) {
176       case VOL_OK:
177          Dmsg1(100, "Vol OK name=%s\n", jcr->VolumeName);
178          memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(jcr->VolCatInfo));
179          if (strcmp(dev->VolCatInfo.VolCatStatus, "Recycle") == 0) {
180             recycle = 1;
181          }
182          break;                    /* got a Volume */
183       case VOL_NAME_ERROR:
184          VOLUME_CAT_INFO VolCatInfo;
185
186          Dmsg1(100, "Vol NAME Error Name=%s\n", jcr->VolumeName);
187          /* 
188           * OK, we got a different volume mounted. First save the
189           *  requested Volume info (jcr) structure, then query if
190           *  this volume is really OK. If not, put back the desired
191           *  volume name and continue.
192           */
193          memcpy(&VolCatInfo, &jcr->VolCatInfo, sizeof(jcr->VolCatInfo));
194          /* Check if this is a valid Volume in the pool */
195          pm_strcpy(&jcr->VolumeName, dev->VolHdr.VolName);                         
196          if (!dir_get_volume_info(jcr, 1)) {
197             Mmsg(&jcr->errmsg, _("Director wanted Volume \"%s\".\n"
198                  "    Current Volume \"%s\" not acceptable because:\n"
199                  "    %s"),
200                 VolCatInfo.VolCatName, dev->VolHdr.VolName,
201                 jcr->dir_bsock->msg);
202             /* Restore desired volume name, note device info out of sync */
203             memcpy(&jcr->VolCatInfo, &VolCatInfo, sizeof(jcr->VolCatInfo));
204             goto mount_error;
205          }
206          Dmsg1(100, "want new name=%s\n", jcr->VolumeName);
207          memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(jcr->VolCatInfo));
208          break;                /* got a Volume */
209
210       case VOL_NO_LABEL:
211       case VOL_IO_ERROR:
212          Dmsg1(500, "Vol NO_LABEL or IO_ERROR name=%s\n", jcr->VolumeName);
213          /* If permitted, create a label */
214          if (dev_cap(dev, CAP_LABEL)) {
215             Dmsg0(100, "Create volume label\n");
216             if (!write_volume_label_to_dev(jcr, (DEVRES *)dev->device, jcr->VolumeName,
217                    jcr->pool_name)) {
218                Dmsg0(100, "!write_vol_label\n");
219                goto mount_next_vol;
220             }
221             Jmsg(jcr, M_INFO, 0, _("Labeled new Volume \"%s\" on device %s.\n"),
222                jcr->VolumeName, dev_name(dev));
223             goto read_volume;      /* read label we just wrote */
224          } 
225          /* NOTE! Fall-through wanted. */
226       default:
227 mount_error:
228          /* Send error message */
229          Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);                         
230          Dmsg0(100, "Default\n");
231          ask = 1;
232          goto ask_again;
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       dev->VolCatInfo.VolCatRBytes = 0;
292       if (recycle) {
293          dev->VolCatInfo.VolCatMounts++;  
294          dev->VolCatInfo.VolCatRecycles++;
295       } else {
296          dev->VolCatInfo.VolCatMounts = 1;
297          dev->VolCatInfo.VolCatRecycles = 0;
298          dev->VolCatInfo.VolCatWrites = 1;
299          dev->VolCatInfo.VolCatReads = 1;
300       }
301       strcpy(dev->VolCatInfo.VolCatStatus, "Append");
302       Dmsg0(200, "dir_update_vol_info. Set Append\n");
303       dir_update_volume_info(jcr, &dev->VolCatInfo, 1);  /* indicate doing relabel */
304       if (recycle) {
305          Jmsg(jcr, M_INFO, 0, _("Recycled volume \"%s\" on device %s, all previous data lost.\n"),
306             jcr->VolumeName, dev_name(dev));
307       } else {
308          Jmsg(jcr, M_INFO, 0, _("Wrote label to prelabeled Volume \"%s\" on device %s\n"),
309             jcr->VolumeName, dev_name(dev));
310       }
311
312    } else {
313       /*
314        * OK, at this point, we have a valid Bacula label, but
315        * we need to position to the end of the volume, since we are
316        * just now putting it into append mode.
317        */
318       Dmsg0(200, "Device previously written, moving to end of data\n");
319       Jmsg(jcr, M_INFO, 0, _("Volume \"%s\" previously written, moving to end of data.\n"),
320          jcr->VolumeName);
321       if (!eod_dev(dev)) {
322          Jmsg(jcr, M_ERROR, 0, _("Unable to position to end of data %s. ERR=%s\n"),
323             dev_name(dev), strerror_dev(dev));
324          Jmsg(jcr, M_INFO, 0, _("Marking Volume \"%s\" in Error in Catalog.\n"),
325             jcr->VolumeName);
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       /* *****FIXME**** we should do some checking for files too */
332       if (dev_is_tape(dev)) {
333          /*
334           * Check if we are positioned on the tape at the same place
335           * that the database says we should be.
336           */
337          if (dev->VolCatInfo.VolCatFiles == dev_file(dev)) {
338             Jmsg(jcr, M_INFO, 0, _("Ready to append to end of Volume at file=%d.\n"), 
339                  dev_file(dev));
340          } else {
341             Jmsg(jcr, M_ERROR, 0, _("I canot write on this volume because:\n\
342 The number of files mismatch! Volume=%u Catalog=%u\n"), 
343                  dev_file(dev), dev->VolCatInfo.VolCatFiles);
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       }
350       dev->VolCatInfo.VolCatMounts++;      /* Update mounts */
351       Dmsg1(200, "update volinfo mounts=%d\n", dev->VolCatInfo.VolCatMounts);
352       dir_update_volume_info(jcr, &dev->VolCatInfo, 0);
353       /* Return an empty block */
354       empty_block(block);             /* we used it for reading so set for write */
355    }
356    dev->state |= ST_APPEND;
357    Dmsg0(100, "Normal return from read_dev_for_append\n");
358    return 1; 
359 }
360
361
362 int mount_next_read_volume(JCR *jcr, DEVICE *dev, DEV_BLOCK *block)
363 {
364    Dmsg2(90, "NumVolumes=%d CurVolume=%d\n", jcr->NumVolumes, jcr->CurVolume);
365    /*
366     * End Of Tape -- mount next Volume (if another specified)
367     */
368    if (jcr->NumVolumes > 1 && jcr->CurVolume < jcr->NumVolumes) {
369       close_dev(dev);
370       dev->state &= ~ST_READ; 
371       if (!acquire_device_for_read(jcr, dev, block)) {
372          Jmsg2(jcr, M_FATAL, 0, "Cannot open Dev=%s, Vol=%s\n", dev_name(dev),
373                jcr->VolumeName);
374          return 0;
375       }
376       return 1;                       /* next volume mounted */
377    }
378    Dmsg0(90, "End of Device reached.\n");
379    return 0;
380 }