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