]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/acquire.c
4af83a3343b45eaa1ae6cd16881380bc531f8b42
[bacula/bacula] / bacula / src / stored / acquire.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2002-2008 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *  Routines to acquire and release a device for read/write
30  *
31  *   Kern Sibbald, August MMII
32  *
33  *   Version $Id$
34  */
35
36 #include "bacula.h"                   /* pull in global headers */
37 #include "stored.h"                   /* pull in Storage Deamon headers */
38
39 /* Forward referenced functions */
40 static void attach_dcr_to_dev(DCR *dcr);
41
42
43 /*********************************************************************
44  * Acquire device for reading. 
45  *  The drive should have previously been reserved by calling 
46  *  reserve_device_for_read(). We read the Volume label from the block and
47  *  leave the block pointers just after the label.
48  *
49  *  Returns: NULL if failed for any reason
50  *           dcr  if successful
51  */
52 bool acquire_device_for_read(DCR *dcr)
53 {
54    DEVICE *dev = dcr->dev;
55    JCR *jcr = dcr->jcr;
56    bool ok = false;
57    bool tape_previously_mounted;
58    bool tape_initially_mounted;
59    VOL_LIST *vol;
60    bool try_autochanger = true;
61    int i;
62    int vol_label_status;
63    int retry = 0;
64    
65    Dmsg1(950, "jcr->dcr=%p\n", jcr->dcr);
66    dev->dblock(BST_DOING_ACQUIRE);
67
68    if (dev->num_writers > 0) {
69       Jmsg2(jcr, M_FATAL, 0, _("Acquire read: num_writers=%d not zero. Job %d canceled.\n"), 
70          dev->num_writers, jcr->JobId);
71       goto get_out;
72    }
73
74    /* Find next Volume, if any */
75    vol = jcr->VolList;
76    if (!vol) {
77       char ed1[50];
78       Jmsg(jcr, M_FATAL, 0, _("No volumes specified for reading. Job %s canceled.\n"), 
79          edit_int64(jcr->JobId, ed1));
80       goto get_out;
81    }
82    jcr->CurReadVolume++;
83    for (i=1; i<jcr->CurReadVolume; i++) {
84       vol = vol->next;
85    }
86    if (!vol) {
87       Jmsg(jcr, M_FATAL, 0, _("Logic error: no next volume to read. Numvol=%d Curvol=%d\n"),
88          jcr->NumReadVolumes, jcr->CurReadVolume);
89       goto get_out;                   /* should not happen */   
90    }
91    /*    
92     * Note, if we want to be able to work from a .bsr file only          
93     *  for disaster recovery, we must "simulate" reading the catalog
94     */
95    bstrncpy(dcr->VolumeName, vol->VolumeName, sizeof(dcr->VolumeName));
96    bstrncpy(dcr->VolCatInfo.VolCatName, vol->VolumeName, sizeof(dcr->VolCatInfo.VolCatName));
97    bstrncpy(dcr->media_type, vol->MediaType, sizeof(dcr->media_type));
98    dcr->VolCatInfo.Slot = vol->Slot;
99    dcr->VolCatInfo.InChanger = vol->Slot > 0; 
100     
101    /*
102     * If the MediaType requested for this volume is not the
103     *  same as the current drive, we attempt to find the same
104     *  device that was used to write the orginal volume.  If
105     *  found, we switch to using that device.
106     *
107     *  N.B. A lot of routines rely on the dcr pointer not changing
108     *    read_records.c even has multiple dcrs cached, so we take care
109     *    here to release all important parts of the dcr and re-acquire
110     *    them such as the block pointer (size may change), but we do
111     *    not release the dcr.
112     */
113    Dmsg2(50, "MediaType dcr=%s dev=%s\n", dcr->media_type, dev->device->media_type);
114    if (dcr->media_type[0] && strcmp(dcr->media_type, dev->device->media_type) != 0) {
115       RCTX rctx;
116       DIRSTORE *store;
117       int stat;
118
119       Jmsg3(jcr, M_INFO, 0, _("Changing device. Want Media Type=\"%s\" have=\"%s\"\n"
120                               "  device=%s\n"), 
121             dcr->media_type, dev->device->media_type, dev->print_name());
122       Dmsg3(50, "Changing device. Want Media Type=\"%s\" have=\"%s\"\n"
123                               "  device=%s\n", 
124             dcr->media_type, dev->device->media_type, dev->print_name());
125
126       dev->dunblock(DEV_UNLOCKED);
127
128       lock_reservations();
129       memset(&rctx, 0, sizeof(RCTX));
130       rctx.jcr = jcr;
131       jcr->reserve_msgs = New(alist(10, not_owned_by_alist));
132       rctx.any_drive = true;
133       rctx.device_name = vol->device;
134       store = new DIRSTORE;
135       memset(store, 0, sizeof(DIRSTORE));
136       store->name[0] = 0; /* No dir name */
137       bstrncpy(store->media_type, vol->MediaType, sizeof(store->media_type));
138       bstrncpy(store->pool_name, dcr->pool_name, sizeof(store->pool_name));
139       bstrncpy(store->pool_type, dcr->pool_type, sizeof(store->pool_type));
140       store->append = false;
141       rctx.store = store;
142       clean_device(dcr);                     /* clean up the dcr */
143       
144       /*
145        * Search for a new device
146        */
147       stat = search_res_for_device(rctx);
148       release_reserve_messages(jcr);         /* release queued messages */
149       unlock_reservations();
150
151       if (stat == 1) {
152          dev = dcr->dev;                     /* get new device pointer */
153          dev->dblock(BST_DOING_ACQUIRE); 
154          dcr->VolumeName[0] = 0;
155          Jmsg(jcr, M_INFO, 0, _("Media Type change.  New device %s chosen.\n"),
156             dev->print_name());
157          Dmsg1(50, "Media Type change.  New device %s chosen.\n", dev->print_name());
158
159          bstrncpy(dcr->VolumeName, vol->VolumeName, sizeof(dcr->VolumeName));
160          bstrncpy(dcr->VolCatInfo.VolCatName, vol->VolumeName, sizeof(dcr->VolCatInfo.VolCatName));
161          bstrncpy(dcr->media_type, vol->MediaType, sizeof(dcr->media_type));
162          dcr->VolCatInfo.Slot = vol->Slot;
163          dcr->VolCatInfo.InChanger = vol->Slot > 0; 
164          bstrncpy(dcr->pool_name, store->pool_name, sizeof(dcr->pool_name));
165          bstrncpy(dcr->pool_type, store->pool_type, sizeof(dcr->pool_type));
166       } else {
167          /* error */
168          Jmsg1(jcr, M_FATAL, 0, _("No suitable device found to read Volume \"%s\"\n"),
169             vol->VolumeName);
170          Dmsg1(50, "No suitable device found to read Volume \"%s\"\n", vol->VolumeName);
171          goto get_out;
172       }
173    }
174
175    dev->clear_unload();
176
177    if (reserve_volume(dcr, dcr->VolumeName) == NULL) {
178       Dmsg2(100, "Could not reserve volume %s on %s\n", dcr->VolumeName,
179             dcr->dev->print_name());
180       Jmsg2(jcr, M_FATAL, 0, _("Could not reserve volume %s on %s\n"), dcr->VolumeName,
181             dcr->dev->print_name());
182       goto get_out;
183    }
184    if (dev->vol && dev->vol->is_swapping()) {
185       dev->vol->set_slot(vol->Slot);
186       Dmsg3(100, "swapping: slot=%d Vol=%s dev=%s\n", dev->vol->get_slot(),
187          dev->vol->vol_name, dev->print_name());
188    }
189
190
191    init_device_wait_timers(dcr);
192
193    tape_previously_mounted = dev->can_read() || dev->can_append() ||
194                              dev->is_labeled();
195    tape_initially_mounted = tape_previously_mounted;
196
197
198    /* Volume info is always needed because of VolParts */
199    Dmsg1(150, "dir_get_volume_info vol=%s\n", dcr->VolumeName);
200    if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_READ)) {
201       Dmsg2(150, "dir_get_vol_info failed for vol=%s: %s\n", 
202          dcr->VolumeName, jcr->errmsg);
203       Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
204    }
205    dev->set_load();                /* set to load volume */
206    
207    for ( ;; ) {
208       /* If not polling limit retries */
209       if (!dev->poll && retry++ > 10) {
210          break;
211       }
212       dev->clear_labeled();              /* force reread of label */
213       if (job_canceled(jcr)) {
214          char ed1[50];
215          Mmsg1(dev->errmsg, _("Job %s canceled.\n"), edit_int64(jcr->JobId, ed1));
216          Jmsg(jcr, M_INFO, 0, dev->errmsg);
217          goto get_out;                /* error return */
218       }
219
220       dcr->do_swapping(false/*is_writing*/);
221
222       /*
223        * This code ensures that the device is ready for
224        * reading. If it is a file, it opens it.
225        * If it is a tape, it checks the volume name
226        */
227       Dmsg1(100, "bstored: open vol=%s\n", dcr->VolumeName);
228       if (dev->open(dcr, OPEN_READ_ONLY) < 0) {
229          if (!dev->poll) {
230             Jmsg3(jcr, M_WARNING, 0, _("Read open device %s Volume \"%s\" failed: ERR=%s\n"),
231                   dev->print_name(), dcr->VolumeName, dev->bstrerror());
232          }
233          goto default_path;
234       }
235       Dmsg1(50, "opened dev %s OK\n", dev->print_name());
236       
237       /* Read Volume Label */
238       Dmsg0(50, "calling read-vol-label\n");
239       vol_label_status = read_dev_volume_label(dcr);
240       switch (vol_label_status) {
241       case VOL_OK:
242          ok = true;
243          dev->VolCatInfo = dcr->VolCatInfo;     /* structure assignment */
244          break;                    /* got it */
245       case VOL_IO_ERROR:
246          /*
247           * Send error message generated by read_dev_volume_label()
248           *  only we really had a tape mounted. This supresses superfluous
249           *  error messages when nothing is mounted.
250           */
251          if (tape_previously_mounted) {
252             Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);
253          }
254          goto default_path;
255       case VOL_NAME_ERROR:
256          if (dev->is_volume_to_unload()) {
257             goto default_path;
258          }
259 //       if (tape_initially_mounted) {
260             tape_initially_mounted = false;
261 //          goto default_path;
262 //       }
263          dev->set_unload();              /* force unload of unwanted tape */
264          if (!unload_autochanger(dcr, -1)) {
265             /* at least free the device so we can re-open with correct volume */
266             dev->close();                                                          
267          }
268          dev->set_load();
269          ASSERT(0);
270          /* Fall through */
271       default:
272          Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
273 default_path:
274          tape_previously_mounted = true;
275          
276          /*
277           * If the device requires mount, close it, so the device can be ejected.
278           */
279          if (dev->requires_mount()) {
280             dev->close();
281          }
282          
283          /* Call autochanger only once unless ask_sysop called */
284          if (try_autochanger) {
285             int stat;
286             Dmsg2(200, "calling autoload Vol=%s Slot=%d\n",
287                dcr->VolumeName, dcr->VolCatInfo.Slot);
288             stat = autoload_device(dcr, 0, NULL);
289             if (stat > 0) {
290                try_autochanger = false;
291                continue;              /* try reading volume mounted */
292             }
293             /* Try closing and re-opening */
294             dev->close();
295             if (dev->open(dcr, OPEN_READ_ONLY) >= 0) {
296                continue;
297             }
298             if (!dev->poll) {
299                Jmsg3(jcr, M_WARNING, 0, _("Read open device %s Volume \"%s\" failed: ERR=%s\n"),
300                      dev->print_name(), dcr->VolumeName, dev->bstrerror());
301             }
302          }
303          
304          /* Mount a specific volume and no other */
305          Dmsg0(200, "calling dir_ask_sysop\n");
306          if (!dir_ask_sysop_to_mount_volume(dcr, ST_READ)) {
307             goto get_out;             /* error return */
308          }
309          try_autochanger = true;      /* permit using autochanger again */
310          continue;                    /* try reading again */
311       } /* end switch */
312       break;
313    } /* end for loop */
314
315    if (!ok) {
316       Jmsg1(jcr, M_FATAL, 0, _("Too many errors trying to mount device %s for reading.\n"),
317             dev->print_name());
318       goto get_out;
319    }
320
321    dev->clear_append();
322    dev->set_read();
323    set_jcr_job_status(jcr, JS_Running);
324    dir_send_job_status(jcr);
325    Jmsg(jcr, M_INFO, 0, _("Ready to read from volume \"%s\" on device %s.\n"),
326       dcr->VolumeName, dev->print_name());
327
328 get_out:
329    dev->dlock();
330    dcr->clear_reserved();
331    /* 
332     * Normally we are blocked, but in at least one error case above 
333     *   we are not blocked because we unsuccessfully tried changing
334     *   devices.  
335     */
336    if (dev->is_blocked()) {
337       dev->dunblock(DEV_LOCKED);
338    } else {
339       dev->dunlock();               /* dunblock() unlock the device too */
340    }
341    Dmsg1(950, "jcr->dcr=%p\n", jcr->dcr);
342    return ok;
343 }
344
345
346 /*
347  * Acquire device for writing. We permit multiple writers.
348  *  If this is the first one, we read the label.
349  *
350  *  Returns: NULL if failed for any reason
351  *           dcr if successful.
352  *   Note, normally reserve_device_for_append() is called
353  *   before this routine.
354  */
355 DCR *acquire_device_for_append(DCR *dcr)
356 {
357    DEVICE *dev = dcr->dev;
358    JCR *jcr = dcr->jcr;
359    bool ok = false;
360    bool have_vol = false;
361
362    init_device_wait_timers(dcr);
363
364    dev->dblock(BST_DOING_ACQUIRE);
365    Dmsg1(100, "acquire_append device is %s\n", dev->is_tape()?"tape":
366         (dev->is_dvd()?"DVD":"disk"));
367
368    /*
369     * With the reservation system, this should not happen
370     */
371    if (dev->can_read()) {
372       Jmsg1(jcr, M_FATAL, 0, _("Want to append, but device %s is busy reading.\n"), dev->print_name());
373       Dmsg1(200, "Want to append but device %s is busy reading.\n", dev->print_name());
374       goto get_out;
375    }
376
377    dev->clear_unload();
378
379    /*
380     * have_vol defines whether or not mount_next_write_volume should
381     *   ask the Director again about what Volume to use.
382     */
383    if (dev->can_append() && dcr->is_suitable_volume_mounted() &&
384        strcmp(dcr->VolCatInfo.VolCatStatus, "Recycle") != 0) {
385       Dmsg0(190, "device already in append.\n");
386       /*
387        * At this point, the correct tape is already mounted, so
388        *   we do not need to do mount_next_write_volume(), unless
389        *   we need to recycle the tape.
390        */
391        if (dev->num_writers == 0) {
392           memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
393        }
394        have_vol = dcr->is_tape_position_ok();
395    }
396
397    if (!have_vol) {
398       Dmsg1(190, "jid=%u Do mount_next_write_vol\n", (uint32_t)jcr->JobId);
399       if (!dcr->mount_next_write_volume()) {
400          if (!job_canceled(jcr)) {
401             /* Reduce "noise" -- don't print if job canceled */
402             Jmsg(jcr, M_FATAL, 0, _("Could not ready device %s for append.\n"),
403                dev->print_name());
404             Dmsg1(200, "Could not ready device %s for append.\n", 
405                dev->print_name());
406          }
407          goto get_out;
408       }
409       Dmsg2(190, "Output pos=%u:%u\n", dcr->dev->file, dcr->dev->block_num);
410    }
411
412    dev->num_writers++;                /* we are now a writer */
413    if (jcr->NumWriteVolumes == 0) {
414       jcr->NumWriteVolumes = 1;
415    }
416    dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs on vol */
417    dir_update_volume_info(dcr, false, false); /* send Volume info to Director */
418    ok = true;
419
420 get_out:
421    dev->dlock();
422    dcr->clear_reserved();
423    dev->dunblock(DEV_LOCKED);
424    return ok ? dcr : NULL;
425 }
426
427 /*
428  * This job is done, so release the device. From a Unix standpoint,
429  *  the device remains open.
430  *
431  * Note, if we are spooling, we may enter with the device locked.
432  * However, in all cases, unlock the device when leaving.
433  *
434  */
435 bool release_device(DCR *dcr)
436 {
437    JCR *jcr = dcr->jcr;
438    DEVICE *dev = dcr->dev;
439    bool ok = true;
440    char tbuf[100];
441
442    /* lock only if not already locked by this thread */
443    if (!dcr->is_dev_locked()) {
444       dev->r_dlock();
445    }
446    lock_volumes();
447    Dmsg2(100, "release_device device %s is %s\n", dev->print_name(), dev->is_tape()?"tape":"disk");
448
449    /* if device is reserved, job never started, so release the reserve here */
450    dcr->clear_reserved();
451
452    if (dev->can_read()) {
453       dev->clear_read();              /* clear read bit */
454       Dmsg0(100, "dir_update_vol_info. Release0\n");
455       dir_update_volume_info(dcr, false, false); /* send Volume info to Director */
456       volume_unused(dcr);
457
458    } else if (dev->num_writers > 0) {
459       /* 
460        * Note if WEOT is set, we are at the end of the tape
461        *   and may not be positioned correctly, so the
462        *   job_media_record and update_vol_info have already been
463        *   done, which means we skip them here.
464        */
465       dev->num_writers--;
466       Dmsg1(100, "There are %d writers in release_device\n", dev->num_writers);
467       if (dev->is_labeled()) {
468          Dmsg2(200, "dir_create_jobmedia. Release vol=%s dev=%s\n", 
469                dev->VolCatInfo.VolCatName, dev->print_name());
470          if (!dev->at_weot() && !dir_create_jobmedia_record(dcr)) {
471             Jmsg(jcr, M_FATAL, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
472                dcr->VolCatInfo.VolCatName, jcr->Job);
473          }
474          /* If no more writers, and no errors, and wrote something, write an EOF */
475          if (!dev->num_writers && dev->can_write() && dev->block_num > 0) {
476             dev->weof(1);
477             write_ansi_ibm_labels(dcr, ANSI_EOF_LABEL, dev->VolHdr.VolumeName);
478          }
479          if (!dev->at_weot()) {
480             dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
481             /* Note! do volume update before close, which zaps VolCatInfo */
482             dir_update_volume_info(dcr, false, false); /* send Volume info to Director */
483             Dmsg2(200, "dir_update_vol_info. Release vol=%s dev=%s\n", 
484                   dev->VolCatInfo.VolCatName, dev->print_name());
485          }
486          if (dev->num_writers == 0) {         /* if not being used */
487             volume_unused(dcr);               /*  we obviously are not using the volume */
488          }
489       }
490
491    } else {
492       /*                
493        * If we reach here, it is most likely because the job
494        *   has failed, since the device is not in read mode and
495        *   there are no writers. It was probably reserved.
496        */
497       volume_unused(dcr);
498    }
499    unlock_volumes();
500    Dmsg3(100, "%d writers, %d reserve, dev=%s\n", dev->num_writers, dev->num_reserved(),
501          dev->print_name());
502    debug_list_volumes("acquire:release_device()");
503
504
505    /* If no writers, close if file or !CAP_ALWAYS_OPEN */
506    if (dev->num_writers == 0 && (!dev->is_tape() || !dev->has_cap(CAP_ALWAYSOPEN))) {
507       dvd_remove_empty_part(dcr);        /* get rid of any empty spool part */
508       dev->close();
509    }
510
511    /* Fire off Alert command and include any output */
512    if (!job_canceled(jcr) && dcr->device->alert_command) {
513       POOLMEM *alert;
514       int status = 1;
515       BPIPE *bpipe;
516       char line[MAXSTRING];
517       alert = get_pool_memory(PM_FNAME);
518       alert = edit_device_codes(dcr, alert, dcr->device->alert_command, "");
519       bpipe = open_bpipe(alert, 0, "r");
520       if (bpipe) {
521          while (fgets(line, sizeof(line), bpipe->rfd)) {
522             Jmsg(jcr, M_ALERT, 0, _("Alert: %s"), line);
523          }
524          status = close_bpipe(bpipe);
525       } else {
526          status = errno;
527       }
528       if (status != 0) {
529          berrno be;
530          Jmsg(jcr, M_ALERT, 0, _("3997 Bad alert command: %s: ERR=%s.\n"),
531               alert, be.bstrerror(status));
532       }
533
534       Dmsg1(400, "alert status=%d\n", status);
535       free_pool_memory(alert);
536    }
537    pthread_cond_broadcast(&dev->wait_next_vol);
538    Dmsg2(100, "JobId=%u broadcast wait_device_release at %s\n", 
539          (uint32_t)jcr->JobId, bstrftimes(tbuf, sizeof(tbuf), (utime_t)time(NULL)));
540    pthread_cond_broadcast(&wait_device_release);
541    dev->dunlock();
542    if (dcr->keep_dcr) {
543       detach_dcr_from_dev(dcr);
544    } else {
545       if (jcr->read_dcr == dcr) {
546          jcr->read_dcr = NULL;
547       }
548       if (jcr->dcr == dcr) {
549          jcr->dcr = NULL;
550       }
551       free_dcr(dcr);
552    }
553    Dmsg2(100, "===== Device %s released by JobId=%u\n", dev->print_name(),
554          (uint32_t)jcr->JobId);
555    return ok;
556 }
557
558 /*
559  * Clean up the device for reuse without freeing the memory
560  */
561 bool clean_device(DCR *dcr)
562 {
563    bool ok;
564    dcr->keep_dcr = true;                  /* do not free the dcr */
565    ok = release_device(dcr);
566    dcr->keep_dcr = false;
567    return ok;
568 }
569
570 /*
571  * Create a new Device Control Record and attach
572  *   it to the device (if this is a real job).
573  * Note, this has been updated so that it can be called first 
574  *   without a DEVICE, then a second or third time with a DEVICE,
575  *   and each time, it should cleanup and point to the new device.
576  *   This should facilitate switching devices.
577  * Note, each dcr must point to the controlling job (jcr).  However,
578  *   a job can have multiple dcrs, so we must not store in the jcr's
579  *   structure as previously. The higher level routine must store
580  *   this dcr in the right place
581  *
582  */
583 DCR *new_dcr(JCR *jcr, DCR *dcr, DEVICE *dev)
584 {
585    if (!dcr) {
586       dcr = (DCR *)malloc(sizeof(DCR));
587       memset(dcr, 0, sizeof(DCR));
588       dcr->tid = pthread_self();
589       dcr->spool_fd = -1;
590    }
591    dcr->jcr = jcr;                 /* point back to jcr */
592    /* Set device information, possibly change device */
593    if (dev) {
594       if (dcr->block) {
595          free_block(dcr->block);
596       }
597       dcr->block = new_block(dev);
598       if (dcr->rec) {
599          free_record(dcr->rec);
600       }
601       dcr->rec = new_record();
602       if (dcr->attached_to_dev) {
603          detach_dcr_from_dev(dcr);
604       }
605       /* Use job spoolsize prior to device spoolsize */
606       if (jcr->spool_size) {
607          dcr->max_job_spool_size = jcr->spool_size;
608       } else {
609          dcr->max_job_spool_size = dev->device->max_job_spool_size;
610       }
611       dcr->device = dev->device;
612       dcr->dev = dev;
613       attach_dcr_to_dev(dcr);
614    }
615    return dcr;
616 }
617
618 /*
619  * Search the dcrs list for the given dcr. If it is found,
620  *  as it should be, then remove it. Also zap the jcr pointer
621  *  to the dcr if it is the same one.
622  *
623  * Note, this code will be turned on when we can write to multiple
624  *  dcrs at the same time.
625  */
626 #ifdef needed
627 static void remove_dcr_from_dcrs(DCR *dcr)
628 {
629    JCR *jcr = dcr->jcr;
630    if (jcr->dcrs) {
631       int i = 0;
632       DCR *ldcr;
633       int num = jcr->dcrs->size();
634       for (i=0; i < num; i++) {
635          ldcr = (DCR *)jcr->dcrs->get(i);
636          if (ldcr == dcr) {
637             jcr->dcrs->remove(i);
638             if (jcr->dcr == dcr) {
639                jcr->dcr = NULL;
640             }
641          }
642       }
643    }
644 }
645 #endif
646
647 static void attach_dcr_to_dev(DCR *dcr)
648 {
649    DEVICE *dev = dcr->dev;
650    JCR *jcr = dcr->jcr;
651
652    if (jcr) Dmsg1(500, "JobId=%u enter attach_dcr_to_dev\n", (uint32_t)jcr->JobId);
653    if (!dcr->attached_to_dev && dev->initiated && jcr && jcr->JobType != JT_SYSTEM) {
654       dev->attached_dcrs->append(dcr);  /* attach dcr to device */
655       dcr->attached_to_dev = true;
656       Dmsg1(500, "JobId=%u attach_dcr_to_dev\n", (uint32_t)jcr->JobId);
657    }
658 }
659
660 void detach_dcr_from_dev(DCR *dcr)
661 {
662    DEVICE *dev = dcr->dev;
663    Dmsg0(500, "Enter detach_dcr_from_dev\n"); /* jcr is NULL in some cases */
664
665    /* Detach this dcr only if attached */
666    if (dcr->attached_to_dev && dev) {
667       dev->dlock();
668       dcr->unreserve_device();
669       dcr->dev->attached_dcrs->remove(dcr);  /* detach dcr from device */
670       dcr->attached_to_dev = false;
671 //    remove_dcr_from_dcrs(dcr);      /* remove dcr from jcr list */
672       dev->dunlock();
673    }
674 }
675
676 /*
677  * Free up all aspects of the given dcr -- i.e. dechain it,
678  *  release allocated memory, zap pointers, ...
679  */
680 void free_dcr(DCR *dcr)
681 {
682    JCR *jcr = dcr->jcr;
683
684    detach_dcr_from_dev(dcr);
685
686    if (dcr->block) {
687       free_block(dcr->block);
688    }
689    if (dcr->rec) {
690       free_record(dcr->rec);
691    }
692    if (jcr && jcr->dcr == dcr) {
693       jcr->dcr = NULL;
694    }
695    free(dcr);
696 }