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