X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fdird%2Fbackup.c;h=979d35df15f063e9bd3cc8622f0293f680bdc529;hb=348443164908c223c56ed5b1e609ede38c24b9f9;hp=0fe51441a94e64faf09373ced7eb3c3460a8bcd2;hpb=40432ed8ae67601ac81fb74c7eb5a153cb2f8ad9;p=bacula%2Fbacula diff --git a/bacula/src/dird/backup.c b/bacula/src/dird/backup.c index 0fe51441a9..979d35df15 100644 --- a/bacula/src/dird/backup.c +++ b/bacula/src/dird/backup.c @@ -8,31 +8,38 @@ * Open DB and create records for this job. * Open Message Channel with Storage daemon to tell him a job will be starting. * Open connection with File daemon and pass him commands - * to do the backup. + * to do the backup. * When the File daemon finishes the job, update the DB. * * Version $Id$ */ - /* - Copyright (C) 2000-2003 Kern Sibbald and John Walker + Bacula® - The Network Backup Solution + + Copyright (C) 2000-2006 Free Software Foundation Europe e.V. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + The main author of Bacula is Kern Sibbald, with contributions from + many others, a complete list can be found in the file AUTHORS. + This program is Free Software; you can redistribute it and/or + modify it under the terms of version two of the GNU General Public + License as published by the Free Software Foundation plus additions + that are listed in the file LICENSE. - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free - Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. - */ + Bacula® is a registered trademark of John Walker. + The licensor of Bacula is the Free Software Foundation Europe + (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, + Switzerland, email:ftf@fsfeurope.org. +*/ #include "bacula.h" #include "dird.h" @@ -46,96 +53,74 @@ static char storaddr[] = "storage address=%s port=%d ssl=%d\n"; static char OKbackup[] = "2000 OK backup\n"; static char OKstore[] = "2000 OK storage\n"; static char EndJob[] = "2800 End Job TermCode=%d JobFiles=%u " - "ReadBytes=%" lld " JobBytes=%" lld " Errors=%u\n"; - - -/* Forward referenced functions */ -static void backup_cleanup(JCR *jcr, int TermCode, char *since, FILESET_DBR *fsr); - -/* External functions */ - + "ReadBytes=%llu JobBytes=%llu Errors=%u " + "VSS=%d Encrypt=%d\n"; +/* Pre 1.39.29 (04Dec06) EndJob */ +static char OldEndJob[] = "2800 End Job TermCode=%d JobFiles=%u " + "ReadBytes=%llu JobBytes=%llu Errors=%u\n"; /* - * Do a backup of the specified FileSet - * - * Returns: 0 on failure - * 1 on success + * Called here before the job is run to do the job + * specific setup. */ -int do_backup(JCR *jcr) +bool do_backup_init(JCR *jcr) { - char since[MAXSTRING]; - int stat; - BSOCK *fd; - POOL_DBR pr; - FILESET_DBR fsr; - since[0] = 0; + free_rstorage(jcr); /* we don't read so release */ - if (!get_or_create_client_record(jcr)) { - Jmsg(jcr, M_ERROR, 0, _("Could not get/create Client record. ERR=%s\n"), - db_strerror(jcr->db)); - goto bail_out; + if (!get_or_create_fileset_record(jcr)) { + return false; } - /* - * Get or Create FileSet record + /* + * Get definitive Job level and since time */ - memset(&fsr, 0, sizeof(fsr)); - bstrncpy(fsr.FileSet, jcr->fileset->hdr.name, sizeof(fsr.FileSet)); - if (jcr->fileset->have_MD5) { - struct MD5Context md5c; - unsigned char signature[16]; - memcpy(&md5c, &jcr->fileset->md5c, sizeof(md5c)); - MD5Final(signature, &md5c); - bin_to_base64(fsr.MD5, (char *)signature, 16); /* encode 16 bytes */ - bstrncpy(jcr->fileset->MD5, fsr.MD5, sizeof(jcr->fileset->MD5)); - } else { - Jmsg(jcr, M_WARNING, 0, _("FileSet MD5 signature not found.\n")); - } - if (!db_create_fileset_record(jcr, jcr->db, &fsr)) { - Jmsg(jcr, M_ERROR, 0, _("Could not create FileSet \"%s\" record. ERR=%s\n"), - fsr.FileSet, db_strerror(jcr->db)); - goto bail_out; - } - jcr->jr.FileSetId = fsr.FileSetId; - if (fsr.created) { - Jmsg(jcr, M_INFO, 0, _("Created new FileSet record \"%s\" %s\n"), - fsr.FileSet, fsr.cCreateTime); + get_level_since_time(jcr, jcr->since, sizeof(jcr->since)); + + apply_pool_overrides(jcr); + + jcr->jr.PoolId = get_or_create_pool_record(jcr, jcr->pool->hdr.name); + if (jcr->jr.PoolId == 0) { + return false; } - Dmsg2(119, "Created FileSet %s record %u\n", jcr->fileset->hdr.name, - jcr->jr.FileSetId); - get_level_since_time(jcr, since, sizeof(since)); + /* If pool storage specified, use it instead of job storage */ + copy_wstorage(jcr, jcr->pool->storage, _("Pool resource")); - jcr->jr.JobId = jcr->JobId; - jcr->jr.StartTime = jcr->start_time; - if (!db_update_job_start_record(jcr, jcr->db, &jcr->jr)) { - Jmsg(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db)); - goto bail_out; + if (!jcr->wstorage) { + Jmsg(jcr, M_FATAL, 0, _("No Storage specification found in Job or Pool.\n")); + return false; } - jcr->fname = (char *) get_pool_memory(PM_FNAME); + create_clones(jcr); /* run any clone jobs */ + + return true; +} + +/* + * Do a backup of the specified FileSet + * + * Returns: false on failure + * true on success + */ +bool do_backup(JCR *jcr) +{ + int stat; + int tls_need = BNET_TLS_NONE; + BSOCK *fd; + STORE *store; + char ed1[100]; + /* Print Job Start message */ - Jmsg(jcr, M_INFO, 0, _("Start Backup JobId %u, Job=%s\n"), - jcr->JobId, jcr->Job); + Jmsg(jcr, M_INFO, 0, _("Start Backup JobId %s, Job=%s\n"), + edit_uint64(jcr->JobId, ed1), jcr->Job); - /* - * Get the Pool record - */ - memset(&pr, 0, sizeof(pr)); - bstrncpy(pr.Name, jcr->pool->hdr.name, sizeof(pr.Name)); - while (!db_get_pool_record(jcr, jcr->db, &pr)) { /* get by Name */ - /* Try to create the pool */ - if (create_pool(jcr, jcr->db, jcr->pool, POOL_OP_CREATE) < 0) { - Jmsg(jcr, M_FATAL, 0, _("Pool %s not in database. %s"), pr.Name, - db_strerror(jcr->db)); - goto bail_out; - } else { - Jmsg(jcr, M_INFO, 0, _("Pool %s created in database.\n"), pr.Name); - } + set_jcr_job_status(jcr, JS_Running); + Dmsg2(100, "JobId=%d JobLevel=%c\n", jcr->jr.JobId, jcr->jr.JobLevel); + if (!db_update_job_start_record(jcr, jcr->db, &jcr->jr)) { + Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db)); + return false; } - jcr->PoolId = pr.PoolId; /****FIXME**** this can go away */ - jcr->jr.PoolId = pr.PoolId; /* * Open a message channel connection with the Storage @@ -146,22 +131,35 @@ int do_backup(JCR *jcr) Dmsg0(110, "Open connection with storage daemon\n"); set_jcr_job_status(jcr, JS_WaitSD); /* - * Start conversation with Storage daemon + * Start conversation with Storage daemon */ if (!connect_to_storage_daemon(jcr, 10, SDConnectTimeout, 1)) { - goto bail_out; + return false; } /* * Now start a job with the Storage daemon */ - if (!start_storage_daemon_job(jcr)) { - goto bail_out; + if (!start_storage_daemon_job(jcr, NULL, jcr->wstorage)) { + return false; } + + /* + * Start the job prior to starting the message thread below + * to avoid two threads from using the BSOCK structure at + * the same time. + */ + if (!bnet_fsend(jcr->store_bsock, "run")) { + return false; + } + /* - * Now start a Storage daemon message thread + * Now start a Storage daemon message thread. Note, + * this thread is used to provide the catalog services + * for the backup job, including inserting the attributes + * into the catalog. See catalog_update() in catreq.c */ if (!start_storage_daemon_message_thread(jcr)) { - goto bail_out; + return false; } Dmsg0(150, "Storage daemon connection OK\n"); @@ -181,25 +179,50 @@ int do_backup(JCR *jcr) goto bail_out; } - /* + if (!send_level_command(jcr)) { + goto bail_out; + } + + /* * send Storage daemon address to the File daemon */ - if (jcr->store->SDDport == 0) { - jcr->store->SDDport = jcr->store->SDport; + store = jcr->wstore; + if (store->SDDport == 0) { + store->SDDport = store->SDport; } - bnet_fsend(fd, storaddr, jcr->store->address, jcr->store->SDDport, - jcr->store->enable_ssl); + + /* TLS Requirement */ + if (store->tls_enable) { + if (store->tls_require) { + tls_need = BNET_TLS_REQUIRED; + } else { + tls_need = BNET_TLS_OK; + } + } + + bnet_fsend(fd, storaddr, store->address, store->SDDport, tls_need); if (!response(jcr, fd, OKstore, "Storage", DISPLAY_ERROR)) { goto bail_out; } - - if (!send_level_command(jcr)) { + if (!send_runscripts_commands(jcr)) { goto bail_out; } - if (!send_run_before_and_after_commands(jcr)) { - goto bail_out; + /* + * We re-update the job start record so that the start + * time is set after the run before job. This avoids + * that any files created by the run before job will + * be saved twice. They will be backed up in the current + * job, but not in the next one unless they are changed. + * Without this, they will be backed up in this job and + * in the next job run because in that case, their date + * is after the start of this run. + */ + jcr->start_time = time(NULL); + jcr->jr.StartTime = jcr->start_time; + if (!db_update_job_start_record(jcr, jcr->db, &jcr->jr)) { + Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db)); } /* Send backup command */ @@ -208,21 +231,29 @@ int do_backup(JCR *jcr) goto bail_out; } - /* Pickup Job termination data */ + /* Pickup Job termination data */ stat = wait_for_job_termination(jcr); - backup_cleanup(jcr, stat, since, &fsr); - return 1; + if (stat == JS_Terminated) { + backup_cleanup(jcr, stat); + return true; + } + return false; +/* Come here only after starting SD thread */ bail_out: - backup_cleanup(jcr, JS_ErrorTerminated, since, &fsr); - return 0; + set_jcr_job_status(jcr, JS_ErrorTerminated); + Dmsg1(400, "wait for sd. use=%d\n", jcr->use_count()); + wait_for_storage_daemon_termination(jcr); + Dmsg1(400, "after wait for sd. use=%d\n", jcr->use_count()); + return false; } + /* * Here we wait for the File daemon to signal termination, * then we wait for the Storage daemon. When both * are done, we return the job status. - * Also used by restore.c + * Also used by restore.c */ int wait_for_job_termination(JCR *jcr) { @@ -230,27 +261,34 @@ int wait_for_job_termination(JCR *jcr) BSOCK *fd = jcr->file_bsock; bool fd_ok = false; uint32_t JobFiles, Errors; - uint64_t ReadBytes, JobBytes; + uint64_t ReadBytes = 0; + uint64_t JobBytes = 0; + int VSS = 0; + int Encrypt = 0; set_jcr_job_status(jcr, JS_Running); /* Wait for Client to terminate */ while ((n = bget_dirmsg(fd)) >= 0) { - if (!fd_ok && sscanf(fd->msg, EndJob, &jcr->FDJobStatus, &JobFiles, - &ReadBytes, &JobBytes, &Errors) == 5) { - fd_ok = true; - set_jcr_job_status(jcr, jcr->FDJobStatus); + if (!fd_ok && + (sscanf(fd->msg, EndJob, &jcr->FDJobStatus, &JobFiles, + &ReadBytes, &JobBytes, &Errors, &VSS, &Encrypt) == 7 || + sscanf(fd->msg, OldEndJob, &jcr->FDJobStatus, &JobFiles, + &ReadBytes, &JobBytes, &Errors) == 5)) { + fd_ok = true; + set_jcr_job_status(jcr, jcr->FDJobStatus); Dmsg1(100, "FDStatus=%c\n", (char)jcr->JobStatus); } else { Jmsg(jcr, M_WARNING, 0, _("Unexpected Client Job message: %s\n"), - fd->msg); + fd->msg); } if (job_canceled(jcr)) { - break; + break; } } + if (is_bnet_error(fd)) { Jmsg(jcr, M_FATAL, 0, _("Network error with FD during %s: ERR=%s\n"), - job_type_to_str(jcr->JobType), bnet_strerror(fd)); + job_type_to_str(jcr->JobType), bnet_strerror(fd)); } bnet_sig(fd, BNET_TERMINATE); /* tell Client we are terminating */ @@ -264,6 +302,8 @@ int wait_for_job_termination(JCR *jcr) jcr->Errors = Errors; jcr->ReadBytes = ReadBytes; jcr->JobBytes = JobBytes; + jcr->VSS = VSS; + jcr->Encrypt = Encrypt; } else { Jmsg(jcr, M_FATAL, 0, _("No Job status returned from FD.\n")); } @@ -272,7 +312,7 @@ int wait_for_job_termination(JCR *jcr) // jcr->JobStatus, jcr->SDJobStatus); /* Return the first error status we find Dir, FD, or SD */ - if (!fd_ok || is_bnet_error(fd)) { + if (!fd_ok || is_bnet_error(fd)) { jcr->FDJobStatus = JS_ErrorTerminated; } if (jcr->JobStatus != JS_Terminated) { @@ -287,125 +327,84 @@ int wait_for_job_termination(JCR *jcr) /* * Release resources allocated during backup. */ -static void backup_cleanup(JCR *jcr, int TermCode, char *since, FILESET_DBR *fsr) +void backup_cleanup(JCR *jcr, int TermCode) { - char sdt[50], edt[50]; + char sdt[50], edt[50], schedt[50]; char ec1[30], ec2[30], ec3[30], ec4[30], ec5[30], compress[50]; + char ec6[30], ec7[30], ec8[30], elapsed[50]; char term_code[100], fd_term_msg[100], sd_term_msg[100]; - char *term_msg; - int msg_type; + const char *term_msg; + int msg_type = M_INFO; MEDIA_DBR mr; + CLIENT_DBR cr; double kbps, compression; utime_t RunTime; Dmsg2(100, "Enter backup_cleanup %d %c\n", TermCode, TermCode); + dequeue_messages(jcr); /* display any queued messages */ memset(&mr, 0, sizeof(mr)); + memset(&cr, 0, sizeof(cr)); set_jcr_job_status(jcr, TermCode); - update_job_end_record(jcr); /* update database */ - + update_job_end_record(jcr); /* update database */ + if (!db_get_job_record(jcr, jcr->db, &jcr->jr)) { - Jmsg(jcr, M_WARNING, 0, _("Error getting job record for stats: %s"), - db_strerror(jcr->db)); + Jmsg(jcr, M_WARNING, 0, _("Error getting job record for stats: %s"), + db_strerror(jcr->db)); set_jcr_job_status(jcr, JS_ErrorTerminated); } + bstrncpy(cr.Name, jcr->client->hdr.name, sizeof(cr.Name)); + if (!db_get_client_record(jcr, jcr->db, &cr)) { + Jmsg(jcr, M_WARNING, 0, _("Error getting client record for stats: %s"), + db_strerror(jcr->db)); + } + bstrncpy(mr.VolumeName, jcr->VolumeName, sizeof(mr.VolumeName)); if (!db_get_media_record(jcr, jcr->db, &mr)) { - Jmsg(jcr, M_WARNING, 0, _("Error getting Media record for Volume \"%s\": ERR=%s"), - mr.VolumeName, db_strerror(jcr->db)); + Jmsg(jcr, M_WARNING, 0, _("Error getting Media record for Volume \"%s\": ERR=%s"), + mr.VolumeName, db_strerror(jcr->db)); set_jcr_job_status(jcr, JS_ErrorTerminated); } - /* Now update the bootstrap file if any */ - if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes && - jcr->job->WriteBootstrap) { - FILE *fd; - BPIPE *bpipe = NULL; - int got_pipe = 0; - char *fname = jcr->job->WriteBootstrap; - VOL_PARAMS *VolParams = NULL; - int VolCount; - - if (*fname == '|') { - fname++; - got_pipe = 1; - bpipe = open_bpipe(fname, 0, "w"); - fd = bpipe ? bpipe->wfd : NULL; - } else { - /* ***FIXME*** handle BASE */ - fd = fopen(fname, jcr->JobLevel==L_FULL?"w+":"a+"); - } - if (fd) { - VolCount = db_get_job_volume_parameters(jcr, jcr->db, jcr->JobId, - &VolParams); - if (VolCount == 0) { - Jmsg(jcr, M_ERROR, 0, _("Could not get Job Volume Parameters to " - "update Bootstrap file. ERR=%s\n"), db_strerror(jcr->db)); - if (jcr->SDJobFiles != 0) { - set_jcr_job_status(jcr, JS_ErrorTerminated); - } - - } - for (int i=0; i < VolCount; i++) { - /* Write the record */ - fprintf(fd, "Volume=\"%s\"\n", VolParams[i].VolumeName); - fprintf(fd, "VolSessionId=%u\n", jcr->VolSessionId); - fprintf(fd, "VolSessionTime=%u\n", jcr->VolSessionTime); - fprintf(fd, "VolFile=%u-%u\n", VolParams[i].StartFile, - VolParams[i].EndFile); - fprintf(fd, "VolBlock=%u-%u\n", VolParams[i].StartBlock, - VolParams[i].EndBlock); - fprintf(fd, "FileIndex=%d-%d\n", VolParams[i].FirstIndex, - VolParams[i].LastIndex); - } - if (VolParams) { - free(VolParams); - } - if (got_pipe) { - close_bpipe(bpipe); - } else { - fclose(fd); - } - } else { - Jmsg(jcr, M_ERROR, 0, _("Could not open WriteBootstrap file:\n" - "%s: ERR=%s\n"), fname, strerror(errno)); - set_jcr_job_status(jcr, JS_ErrorTerminated); - } - } + update_bootstrap_file(jcr); - msg_type = M_INFO; /* by default INFO message */ switch (jcr->JobStatus) { case JS_Terminated: - term_msg = _("Backup OK"); - break; + if (jcr->Errors || jcr->SDErrors) { + term_msg = _("Backup OK -- with warnings"); + } else { + term_msg = _("Backup OK"); + } + break; case JS_FatalError: case JS_ErrorTerminated: - term_msg = _("*** Backup Error ***"); - msg_type = M_ERROR; /* Generate error message */ - if (jcr->store_bsock) { - bnet_sig(jcr->store_bsock, BNET_TERMINATE); - if (jcr->SD_msg_chan) { - pthread_cancel(jcr->SD_msg_chan); - } - } - break; + term_msg = _("*** Backup Error ***"); + msg_type = M_ERROR; /* Generate error message */ + if (jcr->store_bsock) { + bnet_sig(jcr->store_bsock, BNET_TERMINATE); + if (jcr->SD_msg_chan) { + pthread_cancel(jcr->SD_msg_chan); + } + } + break; case JS_Canceled: term_msg = _("Backup Canceled"); - if (jcr->store_bsock) { - bnet_sig(jcr->store_bsock, BNET_TERMINATE); - if (jcr->SD_msg_chan) { - pthread_cancel(jcr->SD_msg_chan); - } - } - break; + if (jcr->store_bsock) { + bnet_sig(jcr->store_bsock, BNET_TERMINATE); + if (jcr->SD_msg_chan) { + pthread_cancel(jcr->SD_msg_chan); + } + } + break; default: - term_msg = term_code; + term_msg = term_code; sprintf(term_code, _("Inappropriate term code: %c\n"), jcr->JobStatus); - break; + break; } - bstrftime(sdt, sizeof(sdt), jcr->jr.StartTime); - bstrftime(edt, sizeof(edt), jcr->jr.EndTime); + bstrftimes(schedt, sizeof(schedt), jcr->jr.SchedTime); + bstrftimes(sdt, sizeof(sdt), jcr->jr.StartTime); + bstrftimes(edt, sizeof(edt), jcr->jr.EndTime); RunTime = jcr->jr.EndTime - jcr->jr.StartTime; if (RunTime <= 0) { kbps = 0; @@ -419,10 +418,10 @@ static void backup_cleanup(JCR *jcr, int TermCode, char *since, FILESET_DBR *fsr * it is normal. Or look at it the other way, only for a * normal exit should we complain about this error. */ - if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes) { + if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes) { Jmsg(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db)); } - jcr->VolumeName[0] = 0; /* none */ + jcr->VolumeName[0] = 0; /* none */ } if (jcr->ReadBytes == 0) { @@ -438,52 +437,142 @@ static void backup_cleanup(JCR *jcr, int TermCode, char *since, FILESET_DBR *fsr jobstatus_to_ascii(jcr->FDJobStatus, fd_term_msg, sizeof(fd_term_msg)); jobstatus_to_ascii(jcr->SDJobStatus, sd_term_msg, sizeof(sd_term_msg)); - Jmsg(jcr, msg_type, 0, _("Bacula " VERSION " (" LSMDATE "): %s\n\ -JobId: %d\n\ -Job: %s\n\ -Backup Level: %s%s\n\ -Client: %s\n\ -FileSet: \"%s\" %s\n\ -Start time: %s\n\ -End time: %s\n\ -FD Files Written: %s\n\ -SD Files Written: %s\n\ -FD Bytes Written: %s\n\ -SD Bytes Written: %s\n\ -Rate: %.1f KB/s\n\ -Software Compression: %s\n\ -Volume name(s): %s\n\ -Volume Session Id: %d\n\ -Volume Session Time: %d\n\ -Last Volume Bytes: %s\n\ -Non-fatal FD errors: %d\n\ -SD Errors: %d\n\ -FD termination status: %s\n\ -SD termination status: %s\n\ -Termination: %s\n\n"), - edt, - jcr->jr.JobId, - jcr->jr.Job, - level_to_str(jcr->JobLevel), since, - jcr->client->hdr.name, - jcr->fileset->hdr.name, fsr->cCreateTime, - sdt, - edt, - edit_uint64_with_commas(jcr->jr.JobFiles, ec1), - edit_uint64_with_commas(jcr->SDJobFiles, ec4), - edit_uint64_with_commas(jcr->jr.JobBytes, ec2), - edit_uint64_with_commas(jcr->SDJobBytes, ec5), - (float)kbps, - compress, - jcr->VolumeName, - jcr->VolSessionId, - jcr->VolSessionTime, - edit_uint64_with_commas(mr.VolBytes, ec3), - jcr->Errors, - jcr->SDErrors, - fd_term_msg, - sd_term_msg, - term_msg); +// bmicrosleep(15, 0); /* for debugging SIGHUP */ + + Jmsg(jcr, msg_type, 0, _("Bacula %s (%s): %s\n" +" JobId: %d\n" +" Job: %s\n" +" Backup Level: %s%s\n" +" Client: \"%s\" %s\n" +" FileSet: \"%s\" %s\n" +" Pool: \"%s\" (From %s)\n" +" Storage: \"%s\" (From %s)\n" +" Scheduled time: %s\n" +" Start time: %s\n" +" End time: %s\n" +" Elapsed time: %s\n" +" Priority: %d\n" +" FD Files Written: %s\n" +" SD Files Written: %s\n" +" FD Bytes Written: %s (%sB)\n" +" SD Bytes Written: %s (%sB)\n" +" Rate: %.1f KB/s\n" +" Software Compression: %s\n" +" VSS: %s\n" +" Encryption: %s\n" +" Volume name(s): %s\n" +" Volume Session Id: %d\n" +" Volume Session Time: %d\n" +" Last Volume Bytes: %s (%sB)\n" +" Non-fatal FD errors: %d\n" +" SD Errors: %d\n" +" FD termination status: %s\n" +" SD termination status: %s\n" +" Termination: %s\n\n"), + VERSION, + LSMDATE, + edt, + jcr->jr.JobId, + jcr->jr.Job, + level_to_str(jcr->JobLevel), jcr->since, + jcr->client->name(), cr.Uname, + jcr->fileset->name(), jcr->FSCreateTime, + jcr->pool->name(), jcr->pool_source, + jcr->wstore->name(), jcr->wstore_source, + schedt, + sdt, + edt, + edit_utime(RunTime, elapsed, sizeof(elapsed)), + jcr->JobPriority, + edit_uint64_with_commas(jcr->jr.JobFiles, ec1), + edit_uint64_with_commas(jcr->SDJobFiles, ec2), + edit_uint64_with_commas(jcr->jr.JobBytes, ec3), + edit_uint64_with_suffix(jcr->jr.JobBytes, ec4), + edit_uint64_with_commas(jcr->SDJobBytes, ec5), + edit_uint64_with_suffix(jcr->SDJobBytes, ec6), + (float)kbps, + compress, + jcr->VSS?"yes":"no", + jcr->Encrypt?"yes":"no", + jcr->VolumeName, + jcr->VolSessionId, + jcr->VolSessionTime, + edit_uint64_with_commas(mr.VolBytes, ec7), + edit_uint64_with_suffix(mr.VolBytes, ec8), + jcr->Errors, + jcr->SDErrors, + fd_term_msg, + sd_term_msg, + term_msg); Dmsg0(100, "Leave backup_cleanup()\n"); } + +void update_bootstrap_file(JCR *jcr) +{ + /* Now update the bootstrap file if any */ + if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes && + jcr->job->WriteBootstrap) { + FILE *fd; + BPIPE *bpipe = NULL; + int got_pipe = 0; + POOLMEM *fname = get_pool_memory(PM_FNAME); + fname = edit_job_codes(jcr, fname, jcr->job->WriteBootstrap, ""); + + VOL_PARAMS *VolParams = NULL; + int VolCount; + char edt[50]; + + if (*fname == '|') { + got_pipe = 1; + bpipe = open_bpipe(fname+1, 0, "w"); /* skip first char "|" */ + fd = bpipe ? bpipe->wfd : NULL; + } else { + /* ***FIXME*** handle BASE */ + fd = fopen(fname, jcr->JobLevel==L_FULL?"w+b":"a+b"); + } + if (fd) { + VolCount = db_get_job_volume_parameters(jcr, jcr->db, jcr->JobId, + &VolParams); + if (VolCount == 0) { + Jmsg(jcr, M_ERROR, 0, _("Could not get Job Volume Parameters to " + "update Bootstrap file. ERR=%s\n"), db_strerror(jcr->db)); + if (jcr->SDJobFiles != 0) { + set_jcr_job_status(jcr, JS_ErrorTerminated); + } + + } + /* Start output with when and who wrote it */ + bstrftimes(edt, sizeof(edt), time(NULL)); + fprintf(fd, "# %s - %s - %s%s\n", edt, jcr->jr.Job, + level_to_str(jcr->JobLevel), jcr->since); + for (int i=0; i < VolCount; i++) { + /* Write the record */ + fprintf(fd, "Volume=\"%s\"\n", VolParams[i].VolumeName); + fprintf(fd, "MediaType=\"%s\"\n", VolParams[i].MediaType); + fprintf(fd, "VolSessionId=%u\n", jcr->VolSessionId); + fprintf(fd, "VolSessionTime=%u\n", jcr->VolSessionTime); + fprintf(fd, "VolFile=%u-%u\n", VolParams[i].StartFile, + VolParams[i].EndFile); + fprintf(fd, "VolBlock=%u-%u\n", VolParams[i].StartBlock, + VolParams[i].EndBlock); + fprintf(fd, "FileIndex=%d-%d\n", VolParams[i].FirstIndex, + VolParams[i].LastIndex); + } + if (VolParams) { + free(VolParams); + } + if (got_pipe) { + close_bpipe(bpipe); + } else { + fclose(fd); + } + } else { + berrno be; + Jmsg(jcr, M_ERROR, 0, _("Could not open WriteBootstrap file:\n" + "%s: ERR=%s\n"), fname, be.strerror()); + set_jcr_job_status(jcr, JS_ErrorTerminated); + } + free_pool_memory(fname); + } +}