]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/askdir.c
Fix Vol info update + add Drive and InChanger to Media rec
[bacula/bacula] / bacula / src / stored / askdir.c
1 /*
2  *  Subroutines to handle Catalog reqests sent to the Director
3  *   Reqests/commands from the Director are handled in dircmd.c
4  *
5  *   Kern Sibbald, December 2000
6  *
7  *   Version $Id$
8  */
9 /*
10    Copyright (C) 2000-2003 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #include "bacula.h"                   /* pull in global headers */
30 #include "stored.h"                   /* pull in Storage Deamon headers */
31
32 /* Requests sent to the Director */
33 static char Find_media[]   = "CatReq Job=%s FindMedia=%d\n";
34 static char Get_Vol_Info[] = "CatReq Job=%s GetVolInfo VolName=%s write=%d\n";
35 static char Update_media[] = "CatReq Job=%s UpdateMedia VolName=%s"
36    " VolJobs=%u VolFiles=%u VolBlocks=%u VolBytes=%s VolMounts=%u"
37    " VolErrors=%u VolWrites=%u MaxVolBytes=%s EndTime=%d VolStatus=%s"
38    " Slot=%d relabel=%d Drive=%d InChanger=%d\n";
39 static char Create_job_media[] = "CatReq Job=%s CreateJobMedia" 
40    " FirstIndex=%u LastIndex=%u StartFile=%u EndFile=%u" 
41    " StartBlock=%u EndBlock=%u\n";
42 static char FileAttributes[] = "UpdCat Job=%s FileAttributes ";
43 static char Job_status[]     = "3012 Job %s jobstatus %d\n";
44
45
46 /* Responses received from the Director */
47 static char OK_media[] = "1000 OK VolName=%127s VolJobs=%u VolFiles=%u"
48    " VolBlocks=%u VolBytes=%" lld " VolMounts=%u VolErrors=%u VolWrites=%u"
49    " MaxVolBytes=%" lld " VolCapacityBytes=%" lld " VolStatus=%20s"
50    " Slot=%d MaxVolJobs=%u MaxVolFiles=%u Drive=%d InChanger=%d";
51
52 static char OK_create[] = "1000 OK CreateJobMedia\n";
53
54 /* Forward referenced functions */
55 static int wait_for_sysop(JCR *jcr, DEVICE *dev, int wait_sec);
56
57 /*
58  * Send current JobStatus to Director
59  */
60 int dir_send_job_status(JCR *jcr)
61 {
62    return bnet_fsend(jcr->dir_bsock, Job_status, jcr->Job, jcr->JobStatus);
63 }
64
65 /*
66  * Common routine for:
67  *   dir_get_volume_info()
68  * and
69  *   dir_find_next_appendable_volume()
70  * 
71  *  Returns: 1 on success and vol info in jcr->VolCatInfo
72  *           0 on failure
73  */
74 static int do_get_volume_info(JCR *jcr)
75 {
76     BSOCK *dir = jcr->dir_bsock;
77     VOLUME_CAT_INFO vol;
78
79     jcr->VolumeName[0] = 0;           /* No volume */
80     if (bnet_recv(dir) <= 0) {
81        Dmsg0(200, "getvolname error bnet_recv\n");
82        Mmsg(&jcr->errmsg, _("Network error on bnet_recv in req_vol_info.\n"));
83        return 0;
84     }
85     memset(&vol, 0, sizeof(vol));
86     if (sscanf(dir->msg, OK_media, vol.VolCatName, 
87                &vol.VolCatJobs, &vol.VolCatFiles,
88                &vol.VolCatBlocks, &vol.VolCatBytes,
89                &vol.VolCatMounts, &vol.VolCatErrors,
90                &vol.VolCatWrites, &vol.VolCatMaxBytes,
91                &vol.VolCatCapacityBytes, vol.VolCatStatus,
92                &vol.Slot, &vol.VolCatMaxJobs, &vol.VolCatMaxFiles,
93                &vol.Drive, &vol.InChanger) != 16) {
94
95        Dmsg1(200, "Bad response from Dir: %s\n", dir->msg);
96        Mmsg(&jcr->errmsg, _("Error getting Volume info: %s\n"), dir->msg);
97        return 0;
98     }
99     unbash_spaces(vol.VolCatName);
100     pm_strcpy(&jcr->VolumeName, vol.VolCatName); /* set desired VolumeName */
101     memcpy(&jcr->VolCatInfo, &vol, sizeof(jcr->VolCatInfo));
102     
103     Dmsg2(200, "do_reqest_vol_info got slot=%d Volume=%s\n", 
104           vol.Slot, vol.VolCatName);
105     return 1;
106 }
107
108
109 /*
110  * Get Volume info for a specific volume from the Director's Database
111  *
112  * Returns: 1 on success   (not Director guarantees that Pool and MediaType
113  *                          are correct and VolStatus==Append or
114  *                          VolStatus==Recycle)
115  *          0 on failure
116  *
117  *          Volume information returned in jcr
118  */
119 int dir_get_volume_info(JCR *jcr, enum get_vol_info_rw writing)
120 {
121     BSOCK *dir = jcr->dir_bsock;
122
123     bstrncpy(jcr->VolCatInfo.VolCatName, jcr->VolumeName, sizeof(jcr->VolCatInfo.VolCatName));
124     Dmsg1(200, "dir_get_volume_info=%s\n", jcr->VolCatInfo.VolCatName);
125     bash_spaces(jcr->VolCatInfo.VolCatName);
126     bnet_fsend(dir, Get_Vol_Info, jcr->Job, jcr->VolCatInfo.VolCatName, 
127        writing==GET_VOL_INFO_FOR_WRITE?1:0);
128     return do_get_volume_info(jcr);
129 }
130
131
132
133 /*
134  * Get info on the next appendable volume in the Director's database
135  * Returns: 1 on success
136  *          0 on failure
137  *
138  *          Volume information returned in jcr
139  *
140  */
141 int dir_find_next_appendable_volume(JCR *jcr)
142 {
143     BSOCK *dir = jcr->dir_bsock;
144
145     Dmsg0(200, "dir_find_next_appendable_volume\n");
146     bnet_fsend(dir, Find_media, jcr->Job, 1);
147     return do_get_volume_info(jcr);
148 }
149
150     
151 /*
152  * After writing a Volume, send the updated statistics
153  * back to the director.
154  */
155 int dir_update_volume_info(JCR *jcr, DEVICE *dev, int label)
156 {
157    BSOCK *dir = jcr->dir_bsock;
158    time_t EndTime = time(NULL);
159    char ed1[50], ed2[50];
160    VOLUME_CAT_INFO *vol = &dev->VolCatInfo;
161
162    if (vol->VolCatName[0] == 0) {
163       Jmsg0(jcr, M_ERROR, 0, _("NULL Volume name. This shouldn't happen!!!\n"));
164       return 0;
165    }
166    if (dev_state(dev, ST_READ)) {
167       Jmsg0(jcr, M_ERROR, 0, _("Attempt to update_volume_info in read mode!!!\n"));
168       return 0;
169    }
170    if (!dev_state(dev, ST_LABEL)) {
171       Jmsg0(jcr, M_ERROR, 0, _("Attempt to update_volume_info on non-labeled Volume!!!\n"));
172       return 0;
173    }
174
175    dev->VolCatInfo.VolCatFiles = dev->file;   /* set number of files */
176    Dmsg1(100, "Update cat VolFiles=%d\n", dev->file);
177    /* Just labeled or relabeled the tape */
178    if (label) {
179       bstrncpy(vol->VolCatStatus, "Append", sizeof(vol->VolCatStatus));
180       vol->VolCatBytes = 1;           /* indicates tape labeled */
181    }
182    bash_spaces(vol->VolCatName);
183    bnet_fsend(dir, Update_media, jcr->Job, 
184       vol->VolCatName, vol->VolCatJobs, vol->VolCatFiles,
185       vol->VolCatBlocks, edit_uint64(vol->VolCatBytes, ed1),
186       vol->VolCatMounts, vol->VolCatErrors,
187       vol->VolCatWrites, edit_uint64(vol->VolCatMaxBytes, ed2), 
188       EndTime, vol->VolCatStatus, vol->Slot, label, vol->Drive, 
189       vol->InChanger);
190    Dmsg1(120, "update_volume_data(): %s", dir->msg);
191    unbash_spaces(vol->VolCatName);
192
193    if (!do_get_volume_info(jcr)) {
194       Jmsg(jcr, M_ERROR, 0, "%s", jcr->errmsg);
195       return 0;
196    }
197    /* Update dev Volume info in case something changed (e.g. expired) */
198    memcpy(&dev->VolCatInfo, &jcr->VolCatInfo, sizeof(dev->VolCatInfo));
199    return 1;
200 }
201
202 /*
203  * After writing a Volume, create the JobMedia record.
204  */
205 int dir_create_jobmedia_record(JCR *jcr)
206 {
207    BSOCK *dir = jcr->dir_bsock;
208
209    if (!jcr->WroteVol) {
210       return 1;                       /* nothing written to tape */
211    }
212
213    jcr->WroteVol = false;
214    bnet_fsend(dir, Create_job_media, jcr->Job, 
215       jcr->VolFirstIndex, jcr->VolLastIndex,
216       jcr->StartFile, jcr->EndFile,
217       jcr->StartBlock, jcr->EndBlock);
218    Dmsg1(100, "create_jobmedia(): %s", dir->msg);
219    if (bnet_recv(dir) <= 0) {
220       Dmsg0(190, "create_jobmedia error bnet_recv\n");
221       Jmsg(jcr, M_ERROR, 0, _("Error creating JobMedia record: ERR=%s\n"), 
222            bnet_strerror(dir));
223       return 0;
224    }
225    Dmsg1(120, "Create_jobmedia: %s", dir->msg);
226    if (strcmp(dir->msg, OK_create) != 0) {
227       Dmsg1(130, "Bad response from Dir: %s\n", dir->msg);
228       Jmsg(jcr, M_ERROR, 0, _("Error creating JobMedia record: %s\n"), dir->msg);
229       return 0;
230    }
231    return 1;
232 }
233
234
235 /* 
236  * Update File Attribute data
237  */
238 int dir_update_file_attributes(JCR *jcr, DEV_RECORD *rec)
239 {
240    BSOCK *dir = jcr->dir_bsock;
241    ser_declare;
242
243    dir->msglen = sprintf(dir->msg, FileAttributes, jcr->Job);
244    dir->msg = check_pool_memory_size(dir->msg, dir->msglen + 
245                 sizeof(DEV_RECORD) + rec->data_len);
246    ser_begin(dir->msg + dir->msglen, 0);
247    ser_uint32(rec->VolSessionId);
248    ser_uint32(rec->VolSessionTime);
249    ser_int32(rec->FileIndex);
250    ser_int32(rec->Stream);
251    ser_uint32(rec->data_len);
252    ser_bytes(rec->data, rec->data_len);
253    dir->msglen = ser_length(dir->msg);
254    return bnet_send(dir);
255 }
256
257
258 /*
259  *   
260  *   Entered with device blocked.
261  *   Leaves with device blocked.
262  *
263  *   Returns: 1 on success (operator issues a mount command)
264  *            0 on failure
265  *              Note, must create dev->errmsg on error return.
266  *
267  *    On success, jcr->VolumeName and jcr->VolCatInfo contain
268  *      information on suggested volume, but this may not be the
269  *      same as what is actually mounted.
270  *
271  *    When we return with success, the correct tape may or may not
272  *      actually be mounted. The calling routine must read it and
273  *      verify the label.
274  */
275 int dir_ask_sysop_to_mount_next_volume(JCR *jcr, DEVICE *dev)
276 {
277    int stat = 0, jstat;
278    /* ******FIXME******* put these on config variable */
279    int min_wait = 60 * 60;
280    int max_wait = 24 * 60 * 60;
281    int max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
282
283    int wait_sec;
284    int num_wait = 0;
285
286    Dmsg0(130, "enter dir_ask_sysop_to_mount_next_volume\n");
287    ASSERT(dev->dev_blocked);
288    wait_sec = min_wait;
289    for ( ;; ) {
290       if (job_canceled(jcr)) {
291          Mmsg(&dev->errmsg, _("Job %s canceled while waiting for mount on Storage Device \"%s\".\n"), 
292               jcr->Job, jcr->dev_name);
293          Jmsg(jcr, M_INFO, 0, "%s", dev->errmsg);
294          return 0;
295       }
296       if (dir_find_next_appendable_volume(jcr)) {    /* get suggested volume */
297          jstat = JS_WaitMount;
298          /*
299           * If we have a valid volume name and we are not
300           *   removable media, return now, or if we have a
301           *   Slot for an autochanger, otherwise wait
302           *   for the operator to mount the media.
303           */
304          if ((jcr->VolumeName[0] && !dev_cap(dev, CAP_REM) && dev_cap(dev, CAP_LABEL)) ||
305              (jcr->VolumeName[0] && jcr->VolCatInfo.Slot)) {
306             Dmsg0(100, "Return 1 from mount without wait.\n");
307             return 1;
308          }
309          Jmsg(jcr, M_MOUNT, 0, _(
310 "Please mount Volume \"%s\" on Storage Device \"%s\" for Job %s\n"
311 "Use \"mount\" command to release Job.\n"),
312               jcr->VolumeName, jcr->dev_name, jcr->Job);
313          Dmsg3(190, "Mount %s on %s for Job %s\n",
314                 jcr->VolumeName, jcr->dev_name, jcr->Job);
315       } else {
316          jstat = JS_WaitMedia;
317          Jmsg(jcr, M_MOUNT, 0, _(
318 "Job %s waiting. Cannot find any appendable volumes.\n\
319 Please use the \"label\"  command to create a new Volume for:\n\
320     Storage:      %s\n\
321     Media type:   %s\n\
322     Pool:         %s\n"),
323               jcr->Job, 
324               jcr->dev_name, 
325               jcr->media_type,
326               jcr->pool_name);
327       }
328
329       jcr->JobStatus = jstat;
330       dir_send_job_status(jcr);
331
332       stat = wait_for_sysop(jcr, dev, wait_sec);
333
334       if (stat == ETIMEDOUT) {
335          wait_sec *= 2;               /* double wait time */
336          if (wait_sec > max_wait) {   /* but not longer than maxtime */
337             wait_sec = max_wait;
338          }
339          num_wait++;
340          if (num_wait >= max_num_wait) {
341             Mmsg(&dev->errmsg, _("Gave up waiting to mount Storage Device \"%s\" for Job %s\n"), 
342                  jcr->dev_name, jcr->Job);
343             Jmsg(jcr, M_FATAL, 0, "%s", dev->errmsg);
344             Dmsg1(190, "Gave up waiting on device %s\n", dev_name(dev));
345             return 0;                 /* exceeded maximum waits */
346          }
347          continue;
348       }
349       if (stat == EINVAL) {
350          Mmsg2(&dev->errmsg, _("pthread error in mount_next_volume stat=%d ERR=%s\n"),
351                stat, strerror(stat));
352          Jmsg(jcr, M_FATAL, 0, "%s", dev->errmsg);
353          return 0;
354       }
355       if (stat != 0) {
356          Jmsg(jcr, M_WARNING, 0, _("pthread error in mount_next_volume stat=%d ERR=%s\n"), stat,
357             strerror(stat));
358       }
359       Dmsg1(190, "Someone woke me for device %s\n", dev_name(dev));
360
361       /* Restart wait counters */
362       wait_sec = min_wait;
363       num_wait = 0;
364       /* If no VolumeName, and cannot get one, try again */
365       if (jcr->VolumeName[0] == 0 && 
366           !dir_find_next_appendable_volume(jcr) && !job_canceled(jcr)) {
367          Jmsg(jcr, M_MOUNT, 0, _(
368 "Someone woke me up, but I cannot find any appendable\n\
369 volumes for Job=%s.\n"), jcr->Job);
370          continue;
371       }       
372       break;
373    }
374    set_jcr_job_status(jcr, JS_Running);
375    dir_send_job_status(jcr);
376    Dmsg0(130, "leave dir_ask_sysop_to_mount_next_volume\n");
377    return 1;
378 }
379
380 /*
381  *   
382  *   Entered with device blocked and jcr->VolumeName is desired
383  *      volume.
384  *   Leaves with device blocked.
385  *
386  *   Returns: 1 on success (operator issues a mount command)
387  *            0 on failure
388  *              Note, must create dev->errmsg on error return.
389  *
390  */
391 int dir_ask_sysop_to_mount_volume(JCR *jcr, DEVICE *dev)
392 {
393    int stat = 0;
394    /* ******FIXME******* put these on config variable */
395    int min_wait = 60 * 60;
396    int max_wait = 24 * 60 * 60;
397    int max_num_wait = 9;              /* 5 waits =~ 1 day, then 1 day at a time */
398    int wait_sec;
399    int num_wait = 0;
400    char *msg;
401
402    Dmsg0(130, "enter dir_ask_sysop_to_mount_next_volume\n");
403    if (!jcr->VolumeName[0]) {
404       Mmsg0(&dev->errmsg, _("Cannot request another volume: no volume name given.\n"));
405       return 0;
406    }
407    ASSERT(dev->dev_blocked);
408    wait_sec = min_wait;
409    for ( ;; ) {
410       if (job_canceled(jcr)) {
411          Mmsg(&dev->errmsg, _("Job %s canceled while waiting for mount on Storage Device \"%s\".\n"), 
412               jcr->Job, jcr->dev_name);
413          return 0;
414       }
415       msg = _("Please mount");
416       Jmsg(jcr, M_MOUNT, 0, _("%s Volume \"%s\" on Storage Device \"%s\" for Job %s\n"),
417            msg, jcr->VolumeName, jcr->dev_name, jcr->Job);
418       Dmsg3(190, "Mount %s on %s for Job %s\n",
419             jcr->VolumeName, jcr->dev_name, jcr->Job);
420
421       jcr->JobStatus = JS_WaitMount;
422       dir_send_job_status(jcr);
423
424       stat = wait_for_sysop(jcr, dev, wait_sec); /* wait on device */
425
426       if (stat == ETIMEDOUT) {
427          wait_sec *= 2;               /* double wait time */
428          if (wait_sec > max_wait) {   /* but not longer than maxtime */
429             wait_sec = max_wait;
430          }
431          num_wait++;
432          if (num_wait >= max_num_wait) {
433             Mmsg(&dev->errmsg, _("Gave up waiting to mount Storage Device \"%s\" for Job %s\n"), 
434                  jcr->dev_name, jcr->Job);
435             Jmsg(jcr, M_FATAL, 0, "%s", dev->errmsg);
436             Dmsg1(190, "Gave up waiting on device %s\n", dev_name(dev));
437             return 0;                 /* exceeded maximum waits */
438          }
439          continue;
440       }
441       if (stat == EINVAL) {
442          Mmsg2(&dev->errmsg, _("pthread error in mount_volume stat=%d ERR=%s\n"),
443                stat, strerror(stat));
444          Jmsg(jcr, M_FATAL, 0, "%s", dev->errmsg);
445          return 0;
446       }
447       if (stat != 0) {
448          Jmsg(jcr, M_ERROR, 0, _("pthread error in mount_next_volume stat=%d ERR=%s\n"), stat,
449             strerror(stat));
450       }
451       Dmsg1(190, "Someone woke me for device %s\n", dev_name(dev));
452
453       /* Restart wait counters */
454       wait_sec = min_wait;
455       num_wait = 0;
456       break;
457    }
458    set_jcr_job_status(jcr, JS_Running);
459    dir_send_job_status(jcr);
460    Dmsg0(130, "leave dir_ask_sysop_to_mount_next_volume\n");
461    return 1;
462 }
463
464 /*
465  * Wait for SysOp to mount a tape
466  */
467 static int wait_for_sysop(JCR *jcr, DEVICE *dev, int wait_sec)
468 {
469    struct timeval tv;
470    struct timezone tz;
471    struct timespec timeout;
472    int dev_blocked;
473    time_t start = time(NULL);
474    time_t last_heartbeat = 0;
475    int stat = 0;
476    int add_wait;
477    
478    /*
479     * Wait requested time (wait_sec).  However, we also wake up every
480     *    HB_TIME seconds and send a heartbeat to the FD and the Director
481     *    to keep stateful firewalls from closing them down while waiting
482     *    for the operator.
483     */
484    add_wait = wait_sec;
485    if (me->heartbeat_interval && add_wait > me->heartbeat_interval) {
486       add_wait = me->heartbeat_interval;
487    }
488    gettimeofday(&tv, &tz);
489    timeout.tv_nsec = tv.tv_usec * 1000;
490    timeout.tv_sec = tv.tv_sec + add_wait;
491
492    P(dev->mutex);
493    dev_blocked = dev->dev_blocked;
494    dev->dev_blocked = BST_WAITING_FOR_SYSOP; /* indicate waiting for mount */
495
496    for ( ; !job_canceled(jcr); ) {
497       time_t now;
498
499       Dmsg3(100, "I'm going to sleep on device %s. HB=%d wait=%d\n", dev_name(dev),
500          (int)me->heartbeat_interval, wait_sec);
501       stat = pthread_cond_timedwait(&dev->wait_next_vol, &dev->mutex, &timeout);
502       Dmsg1(100, "Wokeup from sleep on device stat=%d\n", stat);
503
504       now = time(NULL);
505
506       /* Note, this always triggers the first time. We want that. */
507       if (me->heartbeat_interval) {
508          if (now - last_heartbeat >= me->heartbeat_interval) {
509             /* send heartbeats */
510             if (jcr->file_bsock) {
511                bnet_sig(jcr->file_bsock, BNET_HEARTBEAT);
512                Dmsg0(100, "Send heartbeat to FD.\n");
513             }
514             if (jcr->dir_bsock) {
515                bnet_sig(jcr->dir_bsock, BNET_HEARTBEAT);
516             }
517             last_heartbeat = now;
518          }
519       }
520
521       if (dev->dev_blocked == BST_MOUNT) {   /* mount request ? */
522          stat = 0;
523          break;
524       }
525
526       if (stat != ETIMEDOUT) {     /* we blocked the device */
527          break;                    /* on error return */
528       }
529       if (now - start >= wait_sec) {  /* on exceeding wait time return */
530          Dmsg0(100, "Exceed wait time.\n");
531          break;
532       }
533       add_wait = wait_sec - (now - start);
534       if (me->heartbeat_interval && add_wait > me->heartbeat_interval) {
535          add_wait = me->heartbeat_interval;
536       }
537       gettimeofday(&tv, &tz);
538       timeout.tv_nsec = tv.tv_usec * 1000;
539       timeout.tv_sec = tv.tv_sec + add_wait; /* additional wait */
540       Dmsg1(100, "Additional wait %d sec.\n", add_wait);
541    }
542
543    dev->dev_blocked = dev_blocked;
544    V(dev->mutex);
545    return stat;
546 }