3 * Bacula Director -- fd_cmds.c -- send commands to File daemon
5 * Kern Sibbald, October MM
7 * This routine is run as a separate thread. There may be more
8 * work to be done to make it totally reentrant!!!!
10 * Utility functions for sending info to File Daemon.
11 * These functions are used by both backup and verify.
16 Copyright (C) 2000-2004 Kern Sibbald and John Walker
18 This program is free software; you can redistribute it and/or
19 modify it under the terms of the GNU General Public License as
20 published by the Free Software Foundation; either version 2 of
21 the License, or (at your option) any later version.
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26 General Public License for more details.
28 You should have received a copy of the GNU General Public
29 License along with this program; if not, write to the Free
30 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
38 /* Commands sent to File daemon */
39 static char inc[] = "include\n";
40 static char exc[] = "exclude\n";
41 static char fileset[] = "fileset\n"; /* set full fileset */
42 static char jobcmd[] = "JobId=%d Job=%s SDid=%u SDtime=%u Authorization=%s\n";
43 /* Note, mtime_only is not used here -- implemented as file option */
44 static char levelcmd[] = "level = %s%s mtime_only=%d\n";
45 static char runbefore[] = "RunBeforeJob %s\n";
46 static char runafter[] = "RunAfterJob %s\n";
49 /* Responses received from File daemon */
50 static char OKinc[] = "2000 OK include\n";
51 static char OKexc[] = "2000 OK exclude\n";
52 static char OKjob[] = "2000 OK Job";
53 static char OKbootstrap[] = "2000 OK bootstrap\n";
54 static char OKlevel[] = "2000 OK level\n";
55 static char OKRunBefore[] = "2000 OK RunBefore\n";
56 static char OKRunAfter[] = "2000 OK RunAfter\n";
58 /* Forward referenced functions */
60 /* External functions */
61 extern int debug_level;
62 extern DIRRES *director;
63 extern int FDConnectTimeout;
69 * Open connection with File daemon.
70 * Try connecting every retry_interval (default 10 sec), and
71 * give up after max_retry_time (default 30 mins).
74 int connect_to_file_daemon(JCR *jcr, int retry_interval, int max_retry_time,
79 fd = bnet_connect(jcr, retry_interval, max_retry_time,
80 _("File daemon"), jcr->client->address,
81 NULL, jcr->client->FDport, verbose);
83 set_jcr_job_status(jcr, JS_ErrorTerminated);
86 Dmsg0(10, "Opened connection with File daemon\n");
87 fd->res = (RES *)jcr->client; /* save resource in BSOCK */
89 set_jcr_job_status(jcr, JS_Running);
91 if (!authenticate_file_daemon(jcr)) {
92 set_jcr_job_status(jcr, JS_ErrorTerminated);
97 * Now send JobId and authorization key
99 bnet_fsend(fd, jobcmd, jcr->JobId, jcr->Job, jcr->VolSessionId,
100 jcr->VolSessionTime, jcr->sd_auth_key);
101 if (strcmp(jcr->sd_auth_key, "dummy") != 0) {
102 memset(jcr->sd_auth_key, 0, strlen(jcr->sd_auth_key));
104 Dmsg1(100, ">filed: %s", fd->msg);
105 if (bget_dirmsg(fd) > 0) {
106 Dmsg1(110, "<filed: %s", fd->msg);
107 if (strncmp(fd->msg, OKjob, strlen(OKjob)) != 0) {
108 Jmsg(jcr, M_FATAL, 0, _("File daemon \"%s\" rejected Job command: %s\n"),
109 jcr->client->hdr.name, fd->msg);
110 set_jcr_job_status(jcr, JS_ErrorTerminated);
112 } else if (jcr->db) {
114 memset(&cr, 0, sizeof(cr));
115 bstrncpy(cr.Name, jcr->client->hdr.name, sizeof(cr.Name));
116 cr.AutoPrune = jcr->client->AutoPrune;
117 cr.FileRetention = jcr->client->FileRetention;
118 cr.JobRetention = jcr->client->JobRetention;
119 bstrncpy(cr.Uname, fd->msg+strlen(OKjob)+1, sizeof(cr.Uname));
120 if (!db_update_client_record(jcr, jcr->db, &cr)) {
121 Jmsg(jcr, M_WARNING, 0, _("Error updating Client record. ERR=%s\n"),
122 db_strerror(jcr->db));
126 Jmsg(jcr, M_FATAL, 0, _("FD gave bad response to JobId command: %s\n"),
128 set_jcr_job_status(jcr, JS_ErrorTerminated);
135 * This subroutine edits the last job start time into a
136 * "since=date/time" buffer that is returned in the
137 * variable since. This is used for display purposes in
138 * the job report. The time in jcr->stime is later
139 * passed to tell the File daemon what to do.
141 void get_level_since_time(JCR *jcr, char *since, int since_len)
144 * FULL backup job to get the time/date for a
145 * differential or incremental save.
148 jcr->stime = get_pool_memory(PM_MESSAGE);
152 switch (jcr->JobLevel) {
155 /* Look up start time of last job */
157 if (!db_find_job_start_time(jcr, jcr->db, &jcr->jr, &jcr->stime)) {
158 Jmsg(jcr, M_INFO, 0, "%s", db_strerror(jcr->db));
159 Jmsg(jcr, M_INFO, 0, _("No prior or suitable Full backup found. Doing FULL backup.\n"));
160 bsnprintf(since, since_len, " (upgraded from %s)",
161 level_to_str(jcr->JobLevel));
162 jcr->JobLevel = jcr->jr.Level = L_FULL;
164 bstrncpy(since, ", since=", since_len);
165 bstrncat(since, jcr->stime, since_len);
167 Dmsg1(100, "Last start time = %s\n", jcr->stime);
174 * Send level command to FD.
175 * Used for backup jobs and estimate command.
177 int send_level_command(JCR *jcr)
179 BSOCK *fd = jcr->file_bsock;
183 * Send Level command to File daemon
185 switch (jcr->JobLevel) {
187 bnet_fsend(fd, levelcmd, "base", " ", 0);
189 /* L_NONE is the console, sending something off to the FD */
192 bnet_fsend(fd, levelcmd, "full", " ", 0);
196 // bnet_fsend(fd, levelcmd, "since ", jcr->stime, 0); /* old code, deprecated */
197 stime = str_to_utime(jcr->stime);
198 bnet_fsend(fd, levelcmd, "since_utime ", edit_uint64(stime, ed1), 0);
199 while (bget_dirmsg(fd) >= 0) { /* allow him to poll us to sync clocks */
200 Jmsg(jcr, M_INFO, 0, "%s\n", fd->msg);
205 Jmsg2(jcr, M_FATAL, 0, _("Unimplemented backup level %d %c\n"),
206 jcr->JobLevel, jcr->JobLevel);
209 Dmsg1(120, ">filed: %s", fd->msg);
210 if (!response(jcr, fd, OKlevel, "Level", DISPLAY_ERROR)) {
218 * Send either an Included or an Excluded list to FD
220 static int send_list(JCR *jcr, int list)
226 fd = jcr->file_bsock;
227 fileset = jcr->fileset;
229 if (list == INC_LIST) {
230 num = fileset->num_includes;
232 num = fileset->num_excludes;
235 for (int i=0; i<num; i++) {
244 if (list == INC_LIST) {
245 ie = fileset->include_items[i];
247 ie = fileset->exclude_items[i];
249 for (int j=0; j<ie->name_list.size(); j++) {
250 p = (char *)ie->name_list.get(j);
253 p++; /* skip over the | */
254 fd->msg = edit_job_codes(jcr, fd->msg, p, "");
255 bpipe = open_bpipe(fd->msg, 0, "r");
257 Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
261 /* Copy File options */
263 bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf));
264 bstrncat(buf, " ", sizeof(buf));
266 bstrncpy(buf, "0 ", sizeof(buf));
268 Dmsg1(500, "Opts=%s\n", buf);
269 optlen = strlen(buf);
270 while (fgets(buf+optlen, sizeof(buf)-optlen, bpipe->rfd)) {
271 fd->msglen = Mmsg(&fd->msg, "%s", buf);
272 Dmsg2(500, "Inc/exc len=%d: %s", fd->msglen, fd->msg);
273 if (!bnet_send(fd)) {
274 Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
278 if ((stat=close_bpipe(bpipe)) != 0) {
279 Jmsg(jcr, M_FATAL, 0, _("Error running program: %s. RtnStat=%d ERR=%s\n"),
280 p, stat, strerror(errno));
285 p++; /* skip over < */
286 if ((ffd = fopen(p, "r")) == NULL) {
287 Jmsg(jcr, M_FATAL, 0, _("Cannot open %s file: %s. ERR=%s\n"),
288 list==INC_LIST?"included":"excluded", p, strerror(errno));
291 /* Copy File options */
293 bstrncpy(buf, ie->opts_list[0]->opts, sizeof(buf));
294 bstrncat(buf, " ", sizeof(buf));
296 bstrncpy(buf, "0 ", sizeof(buf));
298 Dmsg1(500, "Opts=%s\n", buf);
299 optlen = strlen(buf);
300 while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
301 fd->msglen = Mmsg(&fd->msg, "%s", buf);
302 if (!bnet_send(fd)) {
303 Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
310 p++; /* skip over \ */
311 /* Note, fall through wanted */
314 Dmsg2(500, "numopts=%d opts=%s\n", ie->num_opts, NPRT(ie->opts_list[0]->opts));
315 pm_strcpy(&fd->msg, ie->opts_list[0]->opts);
316 pm_strcat(&fd->msg, " ");
318 pm_strcpy(&fd->msg, "0 ");
320 fd->msglen = pm_strcat(&fd->msg, p);
321 Dmsg1(500, "Inc/Exc name=%s\n", fd->msg);
322 if (!bnet_send(fd)) {
323 Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
330 bnet_sig(fd, BNET_EOD); /* end of data */
331 if (list == INC_LIST) {
332 if (!response(jcr, fd, OKinc, "Include", DISPLAY_ERROR)) {
335 } else if (!response(jcr, fd, OKexc, "Exclude", DISPLAY_ERROR)) {
341 set_jcr_job_status(jcr, JS_ErrorTerminated);
348 * Send either an Included or an Excluded list to FD
350 static int send_fileset(JCR *jcr)
352 FILESET *fileset = jcr->fileset;
353 BSOCK *fd = jcr->file_bsock;
359 num = fileset->num_includes;
361 num = fileset->num_excludes;
363 for (int i=0; i<num; i++) {
373 ie = fileset->include_items[i];
374 bnet_fsend(fd, "I\n");
376 ie = fileset->exclude_items[i];
377 bnet_fsend(fd, "E\n");
379 for (j=0; j<ie->num_opts; j++) {
380 FOPTS *fo = ie->opts_list[j];
381 bnet_fsend(fd, "O %s\n", fo->opts);
382 for (k=0; k<fo->regex.size(); k++) {
383 bnet_fsend(fd, "R %s\n", fo->regex.get(k));
385 for (k=0; k<fo->wild.size(); k++) {
386 bnet_fsend(fd, "W %s\n", fo->wild.get(k));
388 for (k=0; k<fo->base.size(); k++) {
389 bnet_fsend(fd, "B %s\n", fo->base.get(k));
391 bnet_fsend(fd, "N\n");
394 for (j=0; j<ie->name_list.size(); j++) {
395 p = (char *)ie->name_list.get(j);
398 p++; /* skip over the | */
399 fd->msg = edit_job_codes(jcr, fd->msg, p, "");
400 bpipe = open_bpipe(fd->msg, 0, "r");
402 Jmsg(jcr, M_FATAL, 0, _("Cannot run program: %s. ERR=%s\n"),
406 bstrncpy(buf, "F ", sizeof(buf));
407 Dmsg1(500, "Opts=%s\n", buf);
408 optlen = strlen(buf);
409 while (fgets(buf+optlen, sizeof(buf)-optlen, bpipe->rfd)) {
410 fd->msglen = Mmsg(&fd->msg, "%s", buf);
411 Dmsg2(500, "Inc/exc len=%d: %s", fd->msglen, fd->msg);
412 if (!bnet_send(fd)) {
413 Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
417 if ((stat=close_bpipe(bpipe)) != 0) {
418 Jmsg(jcr, M_FATAL, 0, _("Error running program: %s. RtnStat=%d ERR=%s\n"),
419 p, stat, strerror(errno));
424 p++; /* skip over < */
425 if ((ffd = fopen(p, "r")) == NULL) {
426 Jmsg(jcr, M_FATAL, 0, _("Cannot open included file: %s. ERR=%s\n"),
430 bstrncpy(buf, "F ", sizeof(buf));
431 Dmsg1(500, "Opts=%s\n", buf);
432 optlen = strlen(buf);
433 while (fgets(buf+optlen, sizeof(buf)-optlen, ffd)) {
434 fd->msglen = Mmsg(&fd->msg, "%s", buf);
435 if (!bnet_send(fd)) {
436 Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
443 p++; /* skip over \ */
444 /* Note, fall through wanted */
446 pm_strcpy(&fd->msg, "F ");
447 fd->msglen = pm_strcat(&fd->msg, p);
448 Dmsg1(500, "Inc/Exc name=%s\n", fd->msg);
449 if (!bnet_send(fd)) {
450 Jmsg(jcr, M_FATAL, 0, _(">filed: write error on socket\n"));
456 bnet_fsend(fd, "N\n");
458 if (!include) { /* If we just did excludes */
459 break; /* all done */
461 include = false; /* Now do excludes */
464 bnet_sig(fd, BNET_EOD); /* end of data */
465 if (!response(jcr, fd, OKinc, "Include", DISPLAY_ERROR)) {
471 set_jcr_job_status(jcr, JS_ErrorTerminated);
478 * Send include list to File daemon
480 int send_include_list(JCR *jcr)
482 BSOCK *fd = jcr->file_bsock;
483 if (jcr->fileset->new_include) {
484 bnet_fsend(fd, fileset);
485 return send_fileset(jcr);
489 return send_list(jcr, INC_LIST);
494 * Send exclude list to File daemon
496 int send_exclude_list(JCR *jcr)
498 BSOCK *fd = jcr->file_bsock;
499 if (jcr->fileset->new_include) {
503 return send_list(jcr, EXC_LIST);
508 * Send bootstrap file if any to the File daemon.
509 * This is used for restore and verify VolumeToCatalog
511 int send_bootstrap_file(JCR *jcr)
515 BSOCK *fd = jcr->file_bsock;
516 const char *bootstrap = "bootstrap\n";
518 Dmsg1(400, "send_bootstrap_file: %s\n", jcr->RestoreBootstrap);
519 if (!jcr->RestoreBootstrap) {
522 bs = fopen(jcr->RestoreBootstrap, "r");
524 Jmsg(jcr, M_FATAL, 0, _("Could not open bootstrap file %s: ERR=%s\n"),
525 jcr->RestoreBootstrap, strerror(errno));
526 set_jcr_job_status(jcr, JS_ErrorTerminated);
529 bnet_fsend(fd, bootstrap);
530 while (fgets(buf, sizeof(buf), bs)) {
531 bnet_fsend(fd, "%s", buf);
533 bnet_sig(fd, BNET_EOD);
535 if (!response(jcr, fd, OKbootstrap, "Bootstrap", DISPLAY_ERROR)) {
536 set_jcr_job_status(jcr, JS_ErrorTerminated);
543 * Send ClientRunBeforeJob and ClientRunAfterJob to File daemon
545 int send_run_before_and_after_commands(JCR *jcr)
547 POOLMEM *msg = get_pool_memory(PM_FNAME);
548 BSOCK *fd = jcr->file_bsock;
549 if (jcr->job->ClientRunBeforeJob) {
550 pm_strcpy(&msg, jcr->job->ClientRunBeforeJob);
552 bnet_fsend(fd, runbefore, msg);
553 if (!response(jcr, fd, OKRunBefore, "ClientRunBeforeJob", DISPLAY_ERROR)) {
554 set_jcr_job_status(jcr, JS_ErrorTerminated);
555 free_pool_memory(msg);
559 if (jcr->job->ClientRunAfterJob) {
560 fd->msglen = pm_strcpy(&msg, jcr->job->ClientRunAfterJob);
562 bnet_fsend(fd, runafter, msg);
563 if (!response(jcr, fd, OKRunAfter, "ClientRunAfterJob", DISPLAY_ERROR)) {
564 set_jcr_job_status(jcr, JS_ErrorTerminated);
565 free_pool_memory(msg);
569 free_pool_memory(msg);
575 * Read the attributes from the File daemon for
576 * a Verify job and store them in the catalog.
578 int get_attributes_and_put_in_catalog(JCR *jcr)
584 fd = jcr->file_bsock;
585 jcr->jr.FirstIndex = 1;
586 memset(&ar, 0, sizeof(ar));
589 Dmsg0(120, "bdird: waiting to receive file attributes\n");
590 /* Pickup file attributes and signature */
591 while (!fd->errors && (n = bget_dirmsg(fd)) > 0) {
593 /*****FIXME****** improve error handling to stop only on
594 * really fatal problems, or the number of errors is too
600 char Opts_SIG[MAXSTRING]; /* either Verify opts or MD5/SHA1 signature */
603 jcr->fname = check_pool_memory_size(jcr->fname, fd->msglen);
604 if ((len = sscanf(fd->msg, "%ld %d %s", &file_index, &stream, Opts_SIG)) != 3) {
605 Jmsg(jcr, M_FATAL, 0, _("<filed: bad attributes, expected 3 fields got %d\n\
606 msglen=%d msg=%s\n"), len, fd->msglen, fd->msg);
607 set_jcr_job_status(jcr, JS_ErrorTerminated);
611 skip_nonspaces(&p); /* skip FileIndex */
613 skip_nonspaces(&p); /* skip Stream */
615 skip_nonspaces(&p); /* skip Opts_SHA1 */
616 p++; /* skip space */
619 *fn++ = *p++; /* copy filename */
621 *fn = *p++; /* term filename and point to attribs */
624 if (stream == STREAM_UNIX_ATTRIBUTES || stream == STREAM_UNIX_ATTRIBUTES_EX) {
626 jcr->FileIndex = file_index;
628 ar.fname = jcr->fname;
629 ar.FileIndex = file_index;
632 ar.JobId = jcr->JobId;
633 ar.ClientId = jcr->ClientId;
637 Dmsg2(111, "dird<filed: stream=%d %s\n", stream, jcr->fname);
638 Dmsg1(120, "dird<filed: attr=%s\n", attr);
640 if (!db_create_file_attributes_record(jcr, jcr->db, &ar)) {
641 Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
642 set_jcr_job_status(jcr, JS_Error);
645 jcr->FileId = ar.FileId;
646 } else if (stream == STREAM_MD5_SIGNATURE || stream == STREAM_SHA1_SIGNATURE) {
647 if (jcr->FileIndex != (uint32_t)file_index) {
648 Jmsg2(jcr, M_ERROR, 0, _("MD5/SHA1 index %d not same as attributes %d\n"),
649 file_index, jcr->FileIndex);
650 set_jcr_job_status(jcr, JS_Error);
653 db_escape_string(SIG, Opts_SIG, strlen(Opts_SIG));
654 Dmsg2(120, "SIGlen=%d SIG=%s\n", strlen(SIG), SIG);
655 if (!db_add_SIG_to_file_record(jcr, jcr->db, jcr->FileId, SIG,
656 stream==STREAM_MD5_SIGNATURE?MD5_SIG:SHA1_SIG)) {
657 Jmsg1(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
658 set_jcr_job_status(jcr, JS_Error);
661 jcr->jr.JobFiles = jcr->JobFiles = file_index;
662 jcr->jr.LastIndex = file_index;
664 if (is_bnet_error(fd)) {
665 Jmsg1(jcr, M_FATAL, 0, _("<filed: Network error getting attributes. ERR=%s\n"),
667 set_jcr_job_status(jcr, JS_ErrorTerminated);
671 set_jcr_job_status(jcr, JS_Terminated);