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