]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/acquire.c
- Remove \a and -e from error echos in most Makefiles.
[bacula/bacula] / bacula / src / stored / acquire.c
1 /*
2  *  Routines to acquire and release a device for read/write
3  *
4  *   Kern Sibbald, August MMII
5  *
6  *   Version $Id$
7  */
8 /*
9    Copyright (C) 2002-2005 Kern Sibbald
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28 #include "bacula.h"                   /* pull in global headers */
29 #include "stored.h"                   /* pull in Storage Deamon headers */
30
31 static int can_reserve_drive(DCR *dcr);
32
33 /*
34  * Create a new Device Control Record and attach
35  *   it to the device (if this is a real job).
36  */
37 DCR *new_dcr(JCR *jcr, DEVICE *dev)
38 {
39    if (jcr && jcr->dcr) {
40       return jcr->dcr;
41    }
42    DCR *dcr = (DCR *)malloc(sizeof(DCR));
43    memset(dcr, 0, sizeof(DCR));
44    if (jcr) {
45       jcr->dcr = dcr;
46    }
47    dcr->jcr = jcr;
48    dcr->dev = dev;
49    if (dev) {
50       dcr->device = dev->device;
51    }
52    dcr->block = new_block(dev);
53    dcr->rec = new_record();
54    dcr->spool_fd = -1;
55    dcr->max_spool_size = dev->device->max_spool_size;
56    /* Attach this dcr only if dev is initialized */
57    if (dev->fd != 0 && jcr && jcr->JobType != JT_SYSTEM) {
58       dev->attached_dcrs->append(dcr);  /* attach dcr to device */
59 //    jcr->dcrs->append(dcr);         /* put dcr in list for Job */
60    }
61    return dcr;
62 }
63
64 /*
65  * Search the dcrs list for the given dcr. If it is found,
66  *  as it should be, then remove it. Also zap the jcr pointer
67  *  to the dcr if it is the same one.
68  */
69 #ifdef needed
70 static void remove_dcr_from_dcrs(DCR *dcr)
71 {
72    JCR *jcr = dcr->jcr;
73    if (jcr->dcrs) {
74       int i = 0;
75       DCR *ldcr;
76       int num = jcr->dcrs->size();
77       for (i=0; i < num; i++) {
78          ldcr = (DCR *)jcr->dcrs->get(i);
79          if (ldcr == dcr) {
80             jcr->dcrs->remove(i);
81             if (jcr->dcr == dcr) {
82                jcr->dcr = NULL;
83             }
84          }
85       }
86    }
87 }
88 #endif
89
90 /*
91  * Free up all aspects of the given dcr -- i.e. dechain it,
92  *  release allocated memory, zap pointers, ...
93  */
94 void free_dcr(DCR *dcr)
95 {
96    JCR *jcr = dcr->jcr;
97    DEVICE *dev = dcr->dev;
98
99    /*
100     * If we reserved the device, we must decrement the
101     *  number of writers.
102     */
103    if (dcr->reserved_device) {
104       lock_device(dev);
105       dev->num_writers--;
106       if (dev->num_writers < 0) {
107          Jmsg1(dcr->jcr, M_ERROR, 0, _("Hey! num_writers=%d!!!!\n"), dev->num_writers);
108          dev->num_writers = 0;
109          dcr->reserved_device = false;
110       }
111       unlock_device(dev);
112    }
113
114    /* Detach this dcr only if the dev is initialized */
115    if (dev->fd != 0 && jcr && jcr->JobType != JT_SYSTEM) {
116       dev->attached_dcrs->remove(dcr);  /* detach dcr from device */
117 //    remove_dcr_from_dcrs(dcr);      /* remove dcr from jcr list */
118    }
119    if (dcr->block) {
120       free_block(dcr->block);
121    }
122    if (dcr->rec) {
123       free_record(dcr->rec);
124    }
125    if (dcr->jcr) {
126       dcr->jcr->dcr = NULL;
127    }
128    free(dcr);
129 }
130
131
132 /*
133  * We "reserve" the drive by setting the ST_READ bit. No one else
134  *  should touch the drive until that is cleared.
135  *  This allows the DIR to "reserve" the device before actually
136  *  starting the job. If the device is not available, the DIR
137  *  can wait (to be implemented 1/05).
138  */
139 bool reserve_device_for_read(DCR *dcr)
140 {
141    DEVICE *dev = dcr->dev;
142    JCR *jcr = dcr->jcr;
143    bool first;
144
145    ASSERT(dcr);
146
147    dev->block(BST_DOING_ACQUIRE);
148
149    Mmsg(jcr->errmsg, _("Device %s is BLOCKED due to user unmount.\n"),
150         dev->print_name());
151    for (first=true; device_is_unmounted(dev); first=false) {
152       dev->unblock();
153       if (!wait_for_device(dcr, jcr->errmsg, first))  {
154          return false;
155       }
156      dev->block(BST_DOING_ACQUIRE);
157    }
158
159    Mmsg2(jcr->errmsg, _("Device %s is busy. Job %d canceled.\n"),
160          dev->print_name(), jcr->JobId);
161    for (first=true; dev->is_busy(); first=false) {
162       dev->unblock();
163       if (!wait_for_device(dcr, jcr->errmsg, first)) {
164          return false;
165       }
166       dev->block(BST_DOING_ACQUIRE);
167    }
168
169    dev->clear_append();
170    dev->set_read();
171    dev->unblock();
172    return true;
173 }
174
175
176 /*********************************************************************
177  * Acquire device for reading. 
178  *  The drive should have previously been reserved by calling 
179  *  reserve_device_for_read(). We read the Volume label from the block and
180  *  leave the block pointers just after the label.
181  *
182  *  Returns: NULL if failed for any reason
183  *           dcr  if successful
184  */
185 DCR *acquire_device_for_read(DCR *dcr)
186 {
187    DEVICE *dev = dcr->dev;
188    JCR *jcr = dcr->jcr;
189    bool vol_ok = false;
190    bool tape_previously_mounted;
191    bool tape_initially_mounted;
192    VOL_LIST *vol;
193    bool try_autochanger = true;
194    int i;
195    int vol_label_status;
196    
197    dev->block(BST_DOING_ACQUIRE);
198
199    if (dev->num_writers > 0) {
200       Jmsg2(jcr, M_FATAL, 0, _("Num_writers=%d not zero. Job %d canceled.\n"), 
201          dev->num_writers, jcr->JobId);
202       goto get_out;
203    }
204
205    /* Find next Volume, if any */
206    vol = jcr->VolList;
207    if (!vol) {
208       Jmsg(jcr, M_FATAL, 0, _("No volumes specified. Job %d canceled.\n"), jcr->JobId);
209       goto get_out;
210    }
211    jcr->CurVolume++;
212    for (i=1; i<jcr->CurVolume; i++) {
213       vol = vol->next;
214    }
215    if (!vol) {
216       goto get_out;                   /* should not happen */   
217    }
218    bstrncpy(dcr->VolumeName, vol->VolumeName, sizeof(dcr->VolumeName));
219
220    init_device_wait_timers(dcr);
221
222    tape_previously_mounted = dev->can_read() ||
223                              dev->can_append() ||
224                              dev->is_labeled();
225    tape_initially_mounted = tape_previously_mounted;
226
227
228    /* Volume info is always needed because of VolParts */
229    Dmsg0(200, "dir_get_volume_info\n");
230    if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_READ)) {
231       Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
232    }
233    
234    dev->num_parts = dcr->VolCatInfo.VolCatParts;
235    
236    for (i=0; i<5; i++) {
237       dev->clear_labeled();              /* force reread of label */
238       if (job_canceled(jcr)) {
239          Mmsg1(dev->errmsg, _("Job %d canceled.\n"), jcr->JobId);
240          goto get_out;                /* error return */
241       }
242       /*
243        * This code ensures that the device is ready for
244        * reading. If it is a file, it opens it.
245        * If it is a tape, it checks the volume name
246        */
247       for ( ; !dev->is_open(); ) {
248          Dmsg1(120, "bstored: open vol=%s\n", dcr->VolumeName);
249          if (open_dev(dev, dcr->VolumeName, OPEN_READ_ONLY) < 0) {
250             if (dev->dev_errno == EIO) {   /* no tape loaded */
251               Jmsg3(jcr, M_WARNING, 0, _("Open device %s Volume \"%s\" failed: ERR=%s\n"),
252                     dev->print_name(), dcr->VolumeName, strerror_dev(dev));
253                goto default_path;
254             }
255             
256             /* If we have a dvd that requires mount, 
257              * we need to try to open the label, so the info can be reported
258              * if a wrong volume has been mounted. */
259             if (dev->is_dvd() && (dcr->VolCatInfo.VolCatParts > 0)) {
260                break;
261             }
262             
263             Jmsg3(jcr, M_FATAL, 0, _("Open device %s Volume \"%s\" failed: ERR=%s\n"),
264                 dev->print_name(), dcr->VolumeName, strerror_dev(dev));
265             goto get_out;
266          }
267          Dmsg1(129, "open_dev %s OK\n", dev->print_name());
268       }
269       
270       if (dev->is_dvd()) {
271          vol_label_status = read_dev_volume_label_guess(dcr, 0);
272       } else {
273          vol_label_status = read_dev_volume_label(dcr);
274       }
275       
276       Dmsg0(200, "calling read-vol-label\n");
277       switch (vol_label_status) {
278       case VOL_OK:
279          vol_ok = true;
280          memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
281          break;                    /* got it */
282       case VOL_IO_ERROR:
283          /*
284           * Send error message generated by read_dev_volume_label()
285           *  only we really had a tape mounted. This supresses superfluous
286           *  error messages when nothing is mounted.
287           */
288          if (tape_previously_mounted) {
289             Jmsg(jcr, M_WARNING, 0, "%s", jcr->errmsg);
290          }
291          goto default_path;
292       case VOL_NAME_ERROR:
293          if (tape_initially_mounted) {
294             tape_initially_mounted = false;
295             goto default_path;
296          }
297          /* Fall through */
298       default:
299          Jmsg1(jcr, M_WARNING, 0, "%s", jcr->errmsg);
300 default_path:
301          tape_previously_mounted = true;
302          
303          /* If the device requires mount, close it, so the device can be ejected.
304           * FIXME: This should perhaps be done for all devices. */
305          if (dev_cap(dev, CAP_REQMOUNT)) {
306             force_close_dev(dev);
307          }
308          
309          /* Call autochanger only once unless ask_sysop called */
310          if (try_autochanger) {
311             int stat;
312             Dmsg2(200, "calling autoload Vol=%s Slot=%d\n",
313                dcr->VolumeName, dcr->VolCatInfo.Slot);
314             stat = autoload_device(dcr, 0, NULL);
315             if (stat > 0) {
316                try_autochanger = false;
317                continue;              /* try reading volume mounted */
318             }
319          }
320          
321          /* Mount a specific volume and no other */
322          Dmsg0(200, "calling dir_ask_sysop\n");
323          if (!dir_ask_sysop_to_mount_volume(dcr)) {
324             goto get_out;             /* error return */
325          }
326          try_autochanger = true;      /* permit using autochanger again */
327          continue;                    /* try reading again */
328       } /* end switch */
329       break;
330    } /* end for loop */
331    if (!vol_ok) {
332       Jmsg1(jcr, M_FATAL, 0, _("Too many errors trying to mount device %s.\n"),
333             dev->print_name());
334       goto get_out;
335    }
336
337    dev->clear_append();
338    dev->set_read();
339    set_jcr_job_status(jcr, JS_Running);
340    dir_send_job_status(jcr);
341    Jmsg(jcr, M_INFO, 0, _("Ready to read from volume \"%s\" on device %s.\n"),
342       dcr->VolumeName, dev->print_name());
343
344 get_out:
345    dev->unblock();
346    if (!vol_ok) {
347       free_dcr(dcr);
348       dcr = NULL;
349    }
350    return dcr;
351 }
352
353 /*
354  * We reserve the device for appending by incrementing the 
355  *  reserved_device. We do virtually all the same work that
356  *  is done in acquire_device_for_append(), but we do
357  *  not attempt to mount the device. This routine allows
358  *  the DIR to reserve multiple devices before *really* 
359  *  starting the job. It also permits the SD to refuse 
360  *  certain devices (not up, ...).
361  *
362  * Note, in reserving a device, if the device is for the
363  *  same pool and the same pool type, then it is acceptable.
364  *  The Media Type has already been checked. If we are
365  *  the first tor reserve the device, we put the pool
366  *  name and pool type in the device record.
367  */
368 bool reserve_device_for_append(DCR *dcr)
369 {
370    JCR *jcr = dcr->jcr;
371    DEVICE *dev = dcr->dev;
372    bool ok = false;
373    bool first;
374
375    ASSERT(dcr);
376    dev->block(BST_DOING_ACQUIRE);
377
378    Mmsg2(jcr->errmsg, _("Device %s is busy reading. Job %d canceled.\n"),
379          dev->print_name(), jcr->JobId);
380    for (first=true; dev->can_read(); first=false) {
381       dev->unblock();
382       if (!wait_for_device(dcr, jcr->errmsg, first)) {
383          return false;
384       }
385       dev->block(BST_DOING_ACQUIRE);
386    }
387
388
389    Mmsg(jcr->errmsg, _("Device %s is BLOCKED due to user unmount.\n"),
390         dev->print_name());
391    for (first=true; device_is_unmounted(dev); first=false) {
392       dev->unblock();
393       if (!wait_for_device(dcr, jcr->errmsg, first))  {
394          return false;
395       }
396      dev->block(BST_DOING_ACQUIRE);
397    }
398
399    Dmsg1(190, "reserve_append device is %s\n", dev_is_tape(dev)?"tape":"disk");
400
401    for ( ;; ) {
402       switch (can_reserve_drive(dcr)) {
403       case 0:
404          /* ****FIXME**** Make wait */
405          goto bail_out;
406       case -1:
407          goto bail_out;               /* error */
408       default:
409          break;                       /* OK, reserve drive */
410       }
411       break;
412    }
413
414
415    dev->reserved_device++;
416    dcr->reserved_device = true;
417    ok = true;
418
419 bail_out:
420    dev->unblock();
421    return ok;
422 }
423
424 /*
425  * Returns: 1 if drive can be reserved
426  *          0 if we should wait
427  *         -1 on error
428  */
429 static int can_reserve_drive(DCR *dcr) 
430 {
431    DEVICE *dev = dcr->dev;
432    JCR *jcr = dcr->jcr;
433    /*
434     * First handle the case that the drive is not yet in append mode
435     */
436    if (!dev->can_append() && dev->num_writers == 0) {
437       /* Now check if there are any reservations on the drive */
438       if (dev->reserved_device) {           
439          /* Yes, now check if we want the same Pool and pool type */
440          if (strcmp(dev->pool_name, dcr->pool_name) == 0 &&
441              strcmp(dev->pool_type, dcr->pool_type) == 0) {
442             /* OK, compatible device */
443          } else {
444             /* Drive not suitable for us */
445             Jmsg(jcr, M_WARNING, 0, _("Device %s is busy writing on another Volume.\n"), dev->print_name());
446             return 0;                 /* wait */
447          }
448       } else {
449          /* Device is available but not yet reserved, reserve it for us */
450          bstrncpy(dev->pool_name, dcr->pool_name, sizeof(dev->pool_name));
451          bstrncpy(dev->pool_type, dcr->pool_type, sizeof(dev->pool_type));
452          dev->PoolId = dcr->PoolId;
453       }
454       return 1;                       /* reserve drive */
455    }
456
457    /*
458     * Now check if the device is in append mode 
459     */
460    if (dev->can_append() || dev->num_writers > 0) {
461       Dmsg0(190, "device already in append.\n");
462       /* Yes, now check if we want the same Pool and pool type */
463       if (strcmp(dev->pool_name, dcr->pool_name) == 0 &&
464           strcmp(dev->pool_type, dcr->pool_type) == 0) {
465          /* OK, compatible device */
466       } else {
467          /* Drive not suitable for us */
468          Jmsg(jcr, M_WARNING, 0, _("Device %s is busy writing on another Volume.\n"), dev->print_name());
469          return 0;                    /* wait */
470       }
471    } else {
472       Pmsg0(000, "Logic error!!!! Should not get here.\n");
473       Jmsg0(jcr, M_FATAL, 0, _("Logic error!!!! Should not get here.\n"));
474       return -1;                      /* error, should not get here */
475    }
476    return 1;                          /* reserve drive */
477 }
478
479 /*
480  * Acquire device for writing. We permit multiple writers.
481  *  If this is the first one, we read the label.
482  *
483  *  Returns: NULL if failed for any reason
484  *           dcr if successful.
485  *   Note, normally reserve_device_for_append() is called
486  *   before this routine.
487  */
488 DCR *acquire_device_for_append(DCR *dcr)
489 {
490    bool release = false;
491    bool recycle = false;
492    bool do_mount = false;
493    DEVICE *dev = dcr->dev;
494    JCR *jcr = dcr->jcr;
495
496    dev->block(BST_DOING_ACQUIRE);
497    Dmsg1(190, "acquire_append device is %s\n", dev_is_tape(dev)?"tape":"disk");
498
499    if (dcr->reserved_device) {
500       dev->reserved_device--;
501       dcr->reserved_device = false;
502    }
503
504    /*
505     * With the reservation system, this should not happen
506     */
507    if (dev->can_read()) {
508       Jmsg(jcr, M_FATAL, 0, _("Device %s is busy reading.\n"), dev->print_name());
509       goto get_out;
510    }
511
512    if (dev->can_append()) {
513       Dmsg0(190, "device already in append.\n");
514       /*
515        * Device already in append mode
516        *
517        * Check if we have the right Volume mounted
518        *   OK if current volume info OK
519        *   OK if next volume matches current volume
520        *   otherwise mount desired volume obtained from
521        *    dir_find_next_appendable_volume
522        */
523       bstrncpy(dcr->VolumeName, dev->VolHdr.VolName, sizeof(dcr->VolumeName));
524       if (!dir_get_volume_info(dcr, GET_VOL_INFO_FOR_WRITE) &&
525           !(dir_find_next_appendable_volume(dcr) &&
526             strcmp(dev->VolHdr.VolName, dcr->VolumeName) == 0)) { /* wrong tape mounted */
527          Dmsg0(190, "Wrong tape mounted.\n");
528          if (dev->num_writers != 0 || dev->reserved_device) {
529             Jmsg(jcr, M_FATAL, 0, _("Device %s is busy writing on another Volume.\n"), dev->print_name());
530             goto get_out;
531          }
532          /* Wrong tape mounted, release it, then fall through to get correct one */
533          Dmsg0(190, "Wrong tape mounted, release and try mount.\n");
534          release = true;
535          do_mount = true;
536       } else {
537          /*
538           * At this point, the correct tape is already mounted, so
539           *   we do not need to do mount_next_write_volume(), unless
540           *   we need to recycle the tape.
541           */
542           recycle = strcmp(dcr->VolCatInfo.VolCatStatus, "Recycle") == 0;
543           Dmsg1(190, "Correct tape mounted. recycle=%d\n", recycle);
544           if (recycle && dev->num_writers != 0) {
545              Jmsg(jcr, M_FATAL, 0, _("Cannot recycle volume \"%s\""
546                   " because it is in use by another job.\n"));
547              goto get_out;
548           }
549           if (dev->num_writers == 0) {
550              memcpy(&dev->VolCatInfo, &dcr->VolCatInfo, sizeof(dev->VolCatInfo));
551           }
552        }
553    } else {
554       /* Not already in append mode, so mount the device */
555       Dmsg0(190, "Not in append mode, try mount.\n");
556       ASSERT(dev->num_writers == 0);
557       do_mount = true;
558    }
559
560    if (do_mount || recycle) {
561       Dmsg0(190, "Do mount_next_write_vol\n");
562       bool mounted = mount_next_write_volume(dcr, release);
563       if (!mounted) {
564          if (!job_canceled(jcr)) {
565             /* Reduce "noise" -- don't print if job canceled */
566             Jmsg(jcr, M_FATAL, 0, _("Could not ready device %s for append.\n"),
567                dev->print_name());
568          }
569          goto get_out;
570       }
571    }
572
573    dev->num_writers++;                /* we are now a writer */
574    if (jcr->NumVolumes == 0) {
575       jcr->NumVolumes = 1;
576    }
577    goto ok_out;
578
579 /*
580  * If we jump here, it is an error return because
581  *  rtn_dev will still be NULL
582  */
583 get_out:
584    free_dcr(dcr);
585    dcr = NULL;
586 ok_out:
587    dev->unblock();
588    return dcr;
589 }
590
591 /*
592  * This job is done, so release the device. From a Unix standpoint,
593  *  the device remains open.
594  *
595  */
596 bool release_device(DCR *dcr)
597 {
598    bool ok = true;
599    JCR *jcr = dcr->jcr;
600    DEVICE *dev = dcr->dev;
601
602    lock_device(dev);
603    Dmsg1(100, "release_device device is %s\n", dev_is_tape(dev)?"tape":"disk");
604
605    /* if device is reserved, job never started, so release the reserve here */
606    if (dcr->reserved_device) {
607       dev->reserved_device--;
608       dcr->reserved_device = false;
609    }
610
611    if (dev->can_read()) {
612       dev->clear_read();              /* clear read bit */
613
614       /******FIXME**** send read volume usage statistics to director */
615
616    } else if (dev->num_writers > 0) {
617       dev->num_writers--;
618       Dmsg1(100, "There are %d writers in release_device\n", dev->num_writers);
619       if (dev->is_labeled()) {
620          Dmsg0(100, "dir_create_jobmedia_record. Release\n");
621          if (!dir_create_jobmedia_record(dcr)) {
622             Jmsg(jcr, M_FATAL, 0, _("Could not create JobMedia record for Volume=\"%s\" Job=%s\n"),
623                dcr->VolCatInfo.VolCatName, jcr->Job);
624             ok = false;
625          }
626          /* If no more writers, write an EOF */
627          if (!dev->num_writers && dev_can_write(dev)) {
628             weof_dev(dev, 1);
629             write_ansi_ibm_labels(dcr, ANSI_EOF_LABEL, dev->VolHdr.VolName);
630          }
631          dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
632          dev->VolCatInfo.VolCatJobs++;              /* increment number of jobs */
633          /* Note! do volume update before close, which zaps VolCatInfo */
634          Dmsg0(100, "dir_update_vol_info. Release0\n");
635          dir_update_volume_info(dcr, false); /* send Volume info to Director */
636          Dmsg0(100, "==== write ansi eof label \n");
637       }
638
639    } else {
640       /*                
641        * If we reach here, it is most likely because the
642        *   has failed, since the device is not in read mode and
643        *   there are no writers.
644        */
645    }
646
647    /* If no writers, close if file or !CAP_ALWAYS_OPEN */
648    if (dev->num_writers == 0 && (!dev->is_tape() || !dev_cap(dev, CAP_ALWAYSOPEN))) {
649       offline_or_rewind_dev(dev);
650       close_dev(dev);
651    }
652
653    /* Fire off Alert command and include any output */
654    if (!job_canceled(jcr) && dcr->device->alert_command) {
655       POOLMEM *alert;
656       int status = 1;
657       BPIPE *bpipe;
658       char line[MAXSTRING];
659       alert = get_pool_memory(PM_FNAME);
660       alert = edit_device_codes(dcr, alert, "");
661       bpipe = open_bpipe(alert, 0, "r");
662       if (bpipe) {
663          while (fgets(line, sizeof(line), bpipe->rfd)) {
664             Jmsg(jcr, M_ALERT, 0, _("Alert: %s"), line);
665          }
666          status = close_bpipe(bpipe);
667       } else {
668          status = errno;
669       }
670       if (status != 0) {
671          berrno be;
672          Jmsg(jcr, M_ALERT, 0, _("3997 Bad alert command: %s: ERR=%s.\n"),
673               alert, be.strerror(status));
674       }
675
676       Dmsg1(400, "alert status=%d\n", status);
677       free_pool_memory(alert);
678    }
679    unlock_device(dev);
680    free_dcr(dcr);
681    jcr->dcr = NULL;
682    pthread_cond_broadcast(&wait_device_release);
683    return ok;
684 }