]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/backup.c
b6db59e2b31e1418e0c14b3e354f7a2c9b1b2f6b
[bacula/bacula] / bacula / src / dird / backup.c
1 /*
2  *
3  *   Bacula Director -- backup.c -- responsible for doing backup jobs
4  *
5  *     Kern Sibbald, March MM
6  *
7  *  Basic tasks done here:
8  *     Open DB and create records for this job.
9  *     Open Message Channel with Storage daemon to tell him a job will be starting.
10  *     Open connection with File daemon and pass him commands
11  *       to do the backup.
12  *     When the File daemon finishes the job, update the DB.
13  *
14  *   Version $Id$
15  */
16
17 /*
18    Copyright (C) 2000-2005 Kern Sibbald
19
20    This program is free software; you can redistribute it and/or
21    modify it under the terms of the GNU General Public License as
22    published by the Free Software Foundation; either version 2 of
23    the License, or (at your option) any later version.
24
25    This program is distributed in the hope that it will be useful,
26    but WITHOUT ANY WARRANTY; without even the implied warranty of
27    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28    General Public License for more details.
29
30    You should have received a copy of the GNU General Public
31    License along with this program; if not, write to the Free
32    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
33    MA 02111-1307, USA.
34
35  */
36
37 #include "bacula.h"
38 #include "dird.h"
39 #include "ua.h"
40
41 /* Commands sent to File daemon */
42 static char backupcmd[] = "backup\n";
43 static char storaddr[]  = "storage address=%s port=%d ssl=%d\n";
44
45 /* Responses received from File daemon */
46 static char OKbackup[]   = "2000 OK backup\n";
47 static char OKstore[]    = "2000 OK storage\n";
48 static char EndJob[]     = "2800 End Job TermCode=%d JobFiles=%u "
49                            "ReadBytes=%lld JobBytes=%lld Errors=%u\n";
50
51 /* 
52  * Called here before the job is run to do the job
53  *   specific setup.
54  */
55 bool do_backup_init(JCR *jcr)
56 {
57    FILESET_DBR fsr;
58    POOL_DBR pr;
59    /*
60     * Get the Pool record -- first apply any level defined pools
61     */
62    switch (jcr->JobLevel) {
63    case L_FULL:
64       if (jcr->full_pool) {
65          jcr->pool = jcr->full_pool;
66       }
67       break;
68    case L_INCREMENTAL:
69       if (jcr->inc_pool) {
70          jcr->pool = jcr->inc_pool;
71       }
72       break;
73    case L_DIFFERENTIAL:
74       if (jcr->dif_pool) {
75          jcr->pool = jcr->dif_pool;
76       }
77       break;
78    }
79    memset(&pr, 0, sizeof(pr));
80    bstrncpy(pr.Name, jcr->pool->hdr.name, sizeof(pr.Name));
81
82    if (!db_get_pool_record(jcr, jcr->db, &pr)) { /* get by Name */
83       /* Try to create the pool */
84       if (create_pool(jcr, jcr->db, jcr->pool, POOL_OP_CREATE) < 0) {
85          Jmsg(jcr, M_FATAL, 0, _("Pool %s not in database. %s"), pr.Name,
86             db_strerror(jcr->db));
87          return false;
88       } else {
89          Jmsg(jcr, M_INFO, 0, _("Pool %s created in database.\n"), pr.Name);
90          if (!db_get_pool_record(jcr, jcr->db, &pr)) { /* get by Name */
91             Jmsg(jcr, M_FATAL, 0, _("Pool %s not in database. %s"), pr.Name,
92                db_strerror(jcr->db));
93             return false;
94          }
95       }
96    }
97    jcr->PoolId = pr.PoolId;               /****FIXME**** this can go away */
98    jcr->jr.PoolId = pr.PoolId;
99
100    if (!get_or_create_fileset_record(jcr, &fsr)) {
101       return false;
102    }
103    bstrncpy(jcr->FSCreateTime, fsr.cCreateTime, sizeof(jcr->FSCreateTime));
104
105    get_level_since_time(jcr, jcr->since, sizeof(jcr->since));
106
107    Dmsg2(900, "cloned=%d run_cmds=%p\n", jcr->cloned, jcr->job->run_cmds);
108    if (!jcr->cloned && jcr->job->run_cmds) {
109       char *runcmd;
110       JOB *job = jcr->job;
111       POOLMEM *cmd = get_pool_memory(PM_FNAME);
112       UAContext *ua = new_ua_context(jcr);
113       ua->batch = true;
114       foreach_alist(runcmd, job->run_cmds) {
115          cmd = edit_job_codes(jcr, cmd, runcmd, "");              
116          Mmsg(ua->cmd, "run %s cloned=yes", cmd);
117          Dmsg1(900, "=============== Clone cmd=%s\n", ua->cmd);
118          parse_ua_args(ua);                 /* parse command */
119          int stat = run_cmd(ua, ua->cmd);
120          if (stat == 0) {
121             Jmsg(jcr, M_ERROR, 0, _("Could not start clone job.\n"));
122          } else {
123             Jmsg(jcr, M_INFO, 0, _("Clone JobId %d started.\n"), stat);
124          }
125       }
126       free_ua_context(ua);
127       free_pool_memory(cmd);
128    }
129
130    return true;
131 }
132
133 /*
134  * Do a backup of the specified FileSet
135  *
136  *  Returns:  false on failure
137  *            true  on success
138  */
139 bool do_backup(JCR *jcr)
140 {
141    int stat;
142    BSOCK   *fd;
143    STORE *store;
144
145
146    /* Print Job Start message */
147    Jmsg(jcr, M_INFO, 0, _("Start Backup JobId %u, Job=%s\n"),
148         jcr->JobId, jcr->Job);
149
150    set_jcr_job_status(jcr, JS_Running);
151    Dmsg2(100, "JobId=%d JobLevel=%c\n", jcr->jr.JobId, jcr->jr.JobLevel);
152    if (!db_update_job_start_record(jcr, jcr->db, &jcr->jr)) {
153       Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db));
154       return false;
155    }
156
157    /*
158     * Open a message channel connection with the Storage
159     * daemon. This is to let him know that our client
160     * will be contacting him for a backup  session.
161     *
162     */
163    Dmsg0(110, "Open connection with storage daemon\n");
164    set_jcr_job_status(jcr, JS_WaitSD);
165    /*
166     * Start conversation with Storage daemon
167     */
168    if (!connect_to_storage_daemon(jcr, 10, SDConnectTimeout, 1)) {
169       return false;
170    }
171    /*
172     * Now start a job with the Storage daemon
173     */
174    if (!start_storage_daemon_job(jcr, jcr->storage, SD_APPEND)) {
175       return false;
176    }
177    /*
178     * Now start a Storage daemon message thread
179     */
180    if (!start_storage_daemon_message_thread(jcr)) {
181       return false;
182    }
183    Dmsg0(150, "Storage daemon connection OK\n");
184
185    set_jcr_job_status(jcr, JS_WaitFD);
186    if (!connect_to_file_daemon(jcr, 10, FDConnectTimeout, 1)) {
187       return false;
188    }
189
190    set_jcr_job_status(jcr, JS_Running);
191    fd = jcr->file_bsock;
192
193    if (!send_include_list(jcr)) {
194       return false;
195    }
196
197    if (!send_exclude_list(jcr)) {
198       return false;
199    }
200
201    if (!send_level_command(jcr)) {
202       return false;
203    }
204
205    /*
206     * send Storage daemon address to the File daemon
207     */
208    store = jcr->store;
209    if (store->SDDport == 0) {
210       store->SDDport = store->SDport;
211    }
212    bnet_fsend(fd, storaddr, store->address, store->SDDport,
213               store->enable_ssl);
214    if (!response(jcr, fd, OKstore, "Storage", DISPLAY_ERROR)) {
215       return false;
216    }
217
218
219    if (!send_run_before_and_after_commands(jcr)) {
220       return false;
221    }
222
223    /* Send backup command */
224    bnet_fsend(fd, backupcmd);
225    if (!response(jcr, fd, OKbackup, "backup", DISPLAY_ERROR)) {
226       return false;
227    }
228
229    /* Pickup Job termination data */
230    stat = wait_for_job_termination(jcr);
231    if (stat == JS_Terminated) {
232       backup_cleanup(jcr, stat);
233       return true;
234    }     
235    return false;
236 }
237
238
239 /*
240  * Here we wait for the File daemon to signal termination,
241  *   then we wait for the Storage daemon.  When both
242  *   are done, we return the job status.
243  * Also used by restore.c
244  */
245 int wait_for_job_termination(JCR *jcr)
246 {
247    int32_t n = 0;
248    BSOCK *fd = jcr->file_bsock;
249    bool fd_ok = false;
250    uint32_t JobFiles, Errors;
251    uint64_t ReadBytes, JobBytes;
252
253    set_jcr_job_status(jcr, JS_Running);
254    /* Wait for Client to terminate */
255    while ((n = bget_dirmsg(fd)) >= 0) {
256       if (!fd_ok && sscanf(fd->msg, EndJob, &jcr->FDJobStatus, &JobFiles,
257           &ReadBytes, &JobBytes, &Errors) == 5) {
258          fd_ok = true;
259          set_jcr_job_status(jcr, jcr->FDJobStatus);
260          Dmsg1(100, "FDStatus=%c\n", (char)jcr->JobStatus);
261       } else {
262          Jmsg(jcr, M_WARNING, 0, _("Unexpected Client Job message: %s\n"),
263             fd->msg);
264       }
265       if (job_canceled(jcr)) {
266          break;
267       }
268    }
269    if (is_bnet_error(fd)) {
270       Jmsg(jcr, M_FATAL, 0, _("Network error with FD during %s: ERR=%s\n"),
271           job_type_to_str(jcr->JobType), bnet_strerror(fd));
272    }
273    bnet_sig(fd, BNET_TERMINATE);   /* tell Client we are terminating */
274
275    /* Note, the SD stores in jcr->JobFiles/ReadBytes/JobBytes/Errors */
276    wait_for_storage_daemon_termination(jcr);
277
278
279    /* Return values from FD */
280    if (fd_ok) {
281       jcr->JobFiles = JobFiles;
282       jcr->Errors = Errors;
283       jcr->ReadBytes = ReadBytes;
284       jcr->JobBytes = JobBytes;
285    } else {
286       Jmsg(jcr, M_FATAL, 0, _("No Job status returned from FD.\n"));
287    }
288
289 // Dmsg4(100, "fd_ok=%d FDJS=%d JS=%d SDJS=%d\n", fd_ok, jcr->FDJobStatus,
290 //   jcr->JobStatus, jcr->SDJobStatus);
291
292    /* Return the first error status we find Dir, FD, or SD */
293    if (!fd_ok || is_bnet_error(fd)) {
294       jcr->FDJobStatus = JS_ErrorTerminated;
295    }
296    if (jcr->JobStatus != JS_Terminated) {
297       return jcr->JobStatus;
298    }
299    if (jcr->FDJobStatus != JS_Terminated) {
300       return jcr->FDJobStatus;
301    }
302    return jcr->SDJobStatus;
303 }
304
305 /*
306  * Release resources allocated during backup.
307  */
308 void backup_cleanup(JCR *jcr, int TermCode)
309 {
310    char sdt[50], edt[50];
311    char ec1[30], ec2[30], ec3[30], ec4[30], ec5[30], compress[50];
312    char term_code[100], fd_term_msg[100], sd_term_msg[100];
313    const char *term_msg;
314    int msg_type;
315    MEDIA_DBR mr;
316    double kbps, compression;
317    utime_t RunTime;
318
319    Dmsg2(100, "Enter backup_cleanup %d %c\n", TermCode, TermCode);
320    dequeue_messages(jcr);             /* display any queued messages */
321    memset(&mr, 0, sizeof(mr));
322    set_jcr_job_status(jcr, TermCode);
323
324    update_job_end_record(jcr);        /* update database */
325
326    if (!db_get_job_record(jcr, jcr->db, &jcr->jr)) {
327       Jmsg(jcr, M_WARNING, 0, _("Error getting job record for stats: %s"),
328          db_strerror(jcr->db));
329       set_jcr_job_status(jcr, JS_ErrorTerminated);
330    }
331
332    bstrncpy(mr.VolumeName, jcr->VolumeName, sizeof(mr.VolumeName));
333    if (!db_get_media_record(jcr, jcr->db, &mr)) {
334       Jmsg(jcr, M_WARNING, 0, _("Error getting Media record for Volume \"%s\": ERR=%s"),
335          mr.VolumeName, db_strerror(jcr->db));
336       set_jcr_job_status(jcr, JS_ErrorTerminated);
337    }
338
339    /* Now update the bootstrap file if any */
340    if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes &&
341        jcr->job->WriteBootstrap) {
342       FILE *fd;
343       BPIPE *bpipe = NULL;
344       int got_pipe = 0;
345       char *fname = jcr->job->WriteBootstrap;
346       VOL_PARAMS *VolParams = NULL;
347       int VolCount;
348
349       if (*fname == '|') {
350          fname++;
351          got_pipe = 1;
352          bpipe = open_bpipe(fname, 0, "w");
353          fd = bpipe ? bpipe->wfd : NULL;
354       } else {
355          /* ***FIXME*** handle BASE */
356          fd = fopen(fname, jcr->JobLevel==L_FULL?"w+":"a+");
357       }
358       if (fd) {
359          VolCount = db_get_job_volume_parameters(jcr, jcr->db, jcr->JobId,
360                     &VolParams);
361          if (VolCount == 0) {
362             Jmsg(jcr, M_ERROR, 0, _("Could not get Job Volume Parameters to "
363                  "update Bootstrap file. ERR=%s\n"), db_strerror(jcr->db));
364              if (jcr->SDJobFiles != 0) {
365                 set_jcr_job_status(jcr, JS_ErrorTerminated);
366              }
367
368          }
369          for (int i=0; i < VolCount; i++) {
370             /* Write the record */
371             fprintf(fd, "Volume=\"%s\"\n", VolParams[i].VolumeName);
372             fprintf(fd, "MediaType=\"%s\"\n", VolParams[i].MediaType);
373             fprintf(fd, "VolSessionId=%u\n", jcr->VolSessionId);
374             fprintf(fd, "VolSessionTime=%u\n", jcr->VolSessionTime);
375             fprintf(fd, "VolFile=%u-%u\n", VolParams[i].StartFile,
376                          VolParams[i].EndFile);
377             fprintf(fd, "VolBlock=%u-%u\n", VolParams[i].StartBlock,
378                          VolParams[i].EndBlock);
379             fprintf(fd, "FileIndex=%d-%d\n", VolParams[i].FirstIndex,
380                          VolParams[i].LastIndex);
381          }
382          if (VolParams) {
383             free(VolParams);
384          }
385          if (got_pipe) {
386             close_bpipe(bpipe);
387          } else {
388             fclose(fd);
389          }
390       } else {
391          berrno be;
392          Jmsg(jcr, M_ERROR, 0, _("Could not open WriteBootstrap file:\n"
393               "%s: ERR=%s\n"), fname, be.strerror());
394          set_jcr_job_status(jcr, JS_ErrorTerminated);
395       }
396    }
397
398    msg_type = M_INFO;                 /* by default INFO message */
399    switch (jcr->JobStatus) {
400       case JS_Terminated:
401          if (jcr->Errors || jcr->SDErrors) {
402             term_msg = _("Backup OK -- with warnings");
403          } else {
404             term_msg = _("Backup OK");
405          }
406          break;
407       case JS_FatalError:
408       case JS_ErrorTerminated:
409          term_msg = _("*** Backup Error ***");
410          msg_type = M_ERROR;          /* Generate error message */
411          if (jcr->store_bsock) {
412             bnet_sig(jcr->store_bsock, BNET_TERMINATE);
413             if (jcr->SD_msg_chan) {
414                pthread_cancel(jcr->SD_msg_chan);
415             }
416          }
417          break;
418       case JS_Canceled:
419          term_msg = _("Backup Canceled");
420          if (jcr->store_bsock) {
421             bnet_sig(jcr->store_bsock, BNET_TERMINATE);
422             if (jcr->SD_msg_chan) {
423                pthread_cancel(jcr->SD_msg_chan);
424             }
425          }
426          break;
427       default:
428          term_msg = term_code;
429          sprintf(term_code, _("Inappropriate term code: %c\n"), jcr->JobStatus);
430          break;
431    }
432    bstrftimes(sdt, sizeof(sdt), jcr->jr.StartTime);
433    bstrftimes(edt, sizeof(edt), jcr->jr.EndTime);
434    RunTime = jcr->jr.EndTime - jcr->jr.StartTime;
435    if (RunTime <= 0) {
436       kbps = 0;
437    } else {
438       kbps = (double)jcr->jr.JobBytes / (1000 * RunTime);
439    }
440    if (!db_get_job_volume_names(jcr, jcr->db, jcr->jr.JobId, &jcr->VolumeName)) {
441       /*
442        * Note, if the job has erred, most likely it did not write any
443        *  tape, so suppress this "error" message since in that case
444        *  it is normal.  Or look at it the other way, only for a
445        *  normal exit should we complain about this error.
446        */
447       if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes) {
448          Jmsg(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
449       }
450       jcr->VolumeName[0] = 0;         /* none */
451    }
452
453    if (jcr->ReadBytes == 0) {
454       bstrncpy(compress, "None", sizeof(compress));
455    } else {
456       compression = (double)100 - 100.0 * ((double)jcr->JobBytes / (double)jcr->ReadBytes);
457       if (compression < 0.5) {
458          bstrncpy(compress, "None", sizeof(compress));
459       } else {
460          bsnprintf(compress, sizeof(compress), "%.1f %%", (float)compression);
461       }
462    }
463    jobstatus_to_ascii(jcr->FDJobStatus, fd_term_msg, sizeof(fd_term_msg));
464    jobstatus_to_ascii(jcr->SDJobStatus, sd_term_msg, sizeof(sd_term_msg));
465
466 // bmicrosleep(15, 0);                /* for debugging SIGHUP */
467
468    Jmsg(jcr, msg_type, 0, _("Bacula " VERSION " (" LSMDATE "): %s\n"
469 "  JobId:                  %d\n"
470 "  Job:                    %s\n"
471 "  Backup Level:           %s%s\n"
472 "  Client:                 %s\n"
473 "  FileSet:                \"%s\" %s\n"
474 "  Pool:                   \"%s\"\n"
475 "  Storage:                \"%s\"\n"
476 "  Start time:             %s\n"
477 "  End time:               %s\n"
478 "  FD Files Written:       %s\n"
479 "  SD Files Written:       %s\n"
480 "  FD Bytes Written:       %s\n"
481 "  SD Bytes Written:       %s\n"
482 "  Rate:                   %.1f KB/s\n"
483 "  Software Compression:   %s\n"
484 "  Volume name(s):         %s\n"
485 "  Volume Session Id:      %d\n"
486 "  Volume Session Time:    %d\n"
487 "  Last Volume Bytes:      %s\n"
488 "  Non-fatal FD errors:    %d\n"
489 "  SD Errors:              %d\n"
490 "  FD termination status:  %s\n"
491 "  SD termination status:  %s\n"
492 "  Termination:            %s\n\n"),
493         edt,
494         jcr->jr.JobId,
495         jcr->jr.Job,
496         level_to_str(jcr->JobLevel), jcr->since,
497         jcr->client->hdr.name,
498         jcr->fileset->hdr.name, jcr->FSCreateTime,
499         jcr->pool->hdr.name,
500         jcr->store->hdr.name,
501         sdt,
502         edt,
503         edit_uint64_with_commas(jcr->jr.JobFiles, ec1),
504         edit_uint64_with_commas(jcr->SDJobFiles, ec4),
505         edit_uint64_with_commas(jcr->jr.JobBytes, ec2),
506         edit_uint64_with_commas(jcr->SDJobBytes, ec5),
507         (float)kbps,
508         compress,
509         jcr->VolumeName,
510         jcr->VolSessionId,
511         jcr->VolSessionTime,
512         edit_uint64_with_commas(mr.VolBytes, ec3),
513         jcr->Errors,
514         jcr->SDErrors,
515         fd_term_msg,
516         sd_term_msg,
517         term_msg);
518
519    Dmsg0(100, "Leave backup_cleanup()\n");
520 }