]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/mac.c
- Corrected some typos in the make_xxx_tables.in files.
[bacula/bacula] / bacula / src / dird / mac.c
1 /*
2  *
3  *   Bacula Director -- mac.c -- responsible for doing
4  *     migration, archive, and copy jobs.
5  *
6  *     Kern Sibbald, September MMIV
7  *
8  *  Basic tasks done here:
9  *     Open DB and create records for this job.
10  *     Open Message Channel with Storage daemon to tell him a job will be starting.
11  *     Open connection with File daemon and pass him commands
12  *       to do the backup.
13  *     When the File daemon finishes the job, update the DB.
14  *
15  *   Version $Id$
16  */
17
18 /*
19    Copyright (C) 2004-2005 Kern Sibbald
20
21    This program is free software; you can redistribute it and/or
22    modify it under the terms of the GNU General Public License as
23    published by the Free Software Foundation; either version 2 of
24    the License, or (at your option) any later version.
25
26    This program is distributed in the hope that it will be useful,
27    but WITHOUT ANY WARRANTY; without even the implied warranty of
28    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
29    General Public License for more details.
30
31    You should have received a copy of the GNU General Public
32    License along with this program; if not, write to the Free
33    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
34    MA 02111-1307, USA.
35
36  */
37
38 #include "bacula.h"
39 #include "dird.h"
40 #include "ua.h"
41
42 /* 
43  * Called here before the job is run to do the job
44  *   specific setup.
45  */
46 bool do_mac_init(JCR *jcr)
47 {
48    FILESET_DBR fsr;
49    POOL_DBR pr;
50    JOB_DBR jr;
51    JobId_t input_jobid;
52    char *Name;
53
54    if (!get_or_create_fileset_record(jcr, &fsr)) {
55       return false;
56    }
57    bstrncpy(jcr->FSCreateTime, fsr.cCreateTime, sizeof(jcr->FSCreateTime));
58
59    /*
60     * Find JobId of last job that ran.
61     */
62    memcpy(&jr, &jcr->jr, sizeof(jr));
63    Name = jcr->job->hdr.name;
64    Dmsg1(100, "find last jobid for: %s\n", NPRT(Name));
65    if (!db_find_last_jobid(jcr, jcr->db, Name, &jr)) {
66       Jmsg(jcr, M_FATAL, 0, _(
67            "Unable to find JobId of previous Job for this client.\n"));
68       return false;
69    }
70    input_jobid = jr.JobId;
71    jcr->JobLevel = jr.JobLevel;
72    Dmsg1(100, "Last jobid=%d\n", input_jobid);
73
74    /*
75     * Get the Pool record -- first apply any level defined pools
76     */
77    switch (jcr->JobLevel) {
78    case L_FULL:
79       if (jcr->full_pool) {
80          jcr->pool = jcr->full_pool;
81       }
82       break;
83    case L_INCREMENTAL:
84       if (jcr->inc_pool) {
85          jcr->pool = jcr->inc_pool;
86       }
87       break;
88    case L_DIFFERENTIAL:
89       if (jcr->dif_pool) {
90          jcr->pool = jcr->dif_pool;
91       }
92       break;
93    }
94    memset(&pr, 0, sizeof(pr));
95    bstrncpy(pr.Name, jcr->pool->hdr.name, sizeof(pr.Name));
96
97    while (!db_get_pool_record(jcr, jcr->db, &pr)) { /* get by Name */
98       /* Try to create the pool */
99       if (create_pool(jcr, jcr->db, jcr->pool, POOL_OP_CREATE) < 0) {
100          Jmsg(jcr, M_FATAL, 0, _("Pool %s not in database. %s"), pr.Name,
101             db_strerror(jcr->db));
102          return false;
103       } else {
104          Jmsg(jcr, M_INFO, 0, _("Pool %s created in database.\n"), pr.Name);
105       }
106    }
107    jcr->PoolId = pr.PoolId;               /****FIXME**** this can go away */
108    jcr->jr.PoolId = pr.PoolId;
109    jcr->needs_sd = true;
110    return true;
111 }
112
113 /*
114  * Do a Migration, Archive, or Copy of a previous job
115  *
116  *  Returns:  false on failure
117  *            true  on success
118  */
119 bool do_mac(JCR *jcr)
120 {
121    int stat;
122    const char *Type;
123
124    switch(jcr->JobType) {
125    case JT_MIGRATION:
126       Type = "Migration";
127       break;
128    case JT_ARCHIVE:
129       Type = "Archive";
130       break;
131    case JT_COPY:
132       Type = "Copy";
133       break;
134    default:
135       Type = "Unknown";
136       break;
137    }
138
139
140    /* Print Job Start message */
141    Jmsg(jcr, M_INFO, 0, _("Start %s JobId %u, Job=%s\n"),
142         Type, jcr->JobId, jcr->Job);
143
144    set_jcr_job_status(jcr, JS_Running);
145    Dmsg2(100, "JobId=%d JobLevel=%c\n", jcr->jr.JobId, jcr->jr.JobLevel);
146    if (!db_update_job_start_record(jcr, jcr->db, &jcr->jr)) {
147       Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db));
148       return false;
149    }
150
151    /*
152     * Open a message channel connection with the Storage
153     * daemon. This is to let him know that our client
154     * will be contacting him for a backup  session.
155     *
156     */
157    Dmsg0(110, "Open connection with storage daemon\n");
158    set_jcr_job_status(jcr, JS_WaitSD);
159    /*
160     * Start conversation with Storage daemon
161     */
162    if (!connect_to_storage_daemon(jcr, 10, SDConnectTimeout, 1)) {
163       return false;
164    }
165    /*
166     * Now start a job with the Storage daemon
167     */
168    if (!start_storage_daemon_job(jcr, jcr->storage, SD_APPEND)) {
169       return false;
170    }
171    /*
172     * Now start a Storage daemon message thread
173     */
174    if (!start_storage_daemon_message_thread(jcr)) {
175       return false;
176    }
177    Dmsg0(150, "Storage daemon connection OK\n");
178
179    /* Pickup Job termination data */
180    set_jcr_job_status(jcr, JS_Running);
181
182    /* Note, the SD stores in jcr->JobFiles/ReadBytes/JobBytes/Errors */
183    wait_for_storage_daemon_termination(jcr);
184
185    if (jcr->JobStatus != JS_Terminated) {
186       stat = jcr->JobStatus;
187    } else {
188       stat = jcr->SDJobStatus;
189    }
190    mac_cleanup(jcr, stat);
191    return jcr->JobStatus == JS_Terminated;
192 }
193
194
195 /*
196  * Release resources allocated during backup.
197  */
198 void mac_cleanup(JCR *jcr, int TermCode)
199 {
200    char sdt[50], edt[50];
201    char ec1[30], ec2[30], ec3[30], ec4[30], ec5[30], compress[50];
202    char term_code[100], fd_term_msg[100], sd_term_msg[100];
203    const char *term_msg;
204    int msg_type;
205    MEDIA_DBR mr;
206    double kbps, compression;
207    utime_t RunTime;
208    const char *Type;
209
210    switch(jcr->JobType) {
211    case JT_MIGRATION:
212       Type = "Migration";
213       break;
214    case JT_ARCHIVE:
215       Type = "Archive";
216       break;
217    case JT_COPY:
218       Type = "Copy";
219       break;
220    default:
221       Type = "Unknown";
222       break;
223    }
224
225    Dmsg2(100, "Enter mac_cleanup %d %c\n", TermCode, TermCode);
226    dequeue_messages(jcr);             /* display any queued messages */
227    memset(&mr, 0, sizeof(mr));
228    set_jcr_job_status(jcr, TermCode);
229
230    update_job_end_record(jcr);        /* update database */
231
232    if (!db_get_job_record(jcr, jcr->db, &jcr->jr)) {
233       Jmsg(jcr, M_WARNING, 0, _("Error getting job record for stats: %s"),
234          db_strerror(jcr->db));
235       set_jcr_job_status(jcr, JS_ErrorTerminated);
236    }
237
238    bstrncpy(mr.VolumeName, jcr->VolumeName, sizeof(mr.VolumeName));
239    if (!db_get_media_record(jcr, jcr->db, &mr)) {
240       Jmsg(jcr, M_WARNING, 0, _("Error getting Media record for Volume \"%s\": ERR=%s"),
241          mr.VolumeName, db_strerror(jcr->db));
242       set_jcr_job_status(jcr, JS_ErrorTerminated);
243    }
244
245    /* Now update the bootstrap file if any */
246    if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes &&
247        jcr->job->WriteBootstrap) {
248       FILE *fd;
249       BPIPE *bpipe = NULL;
250       int got_pipe = 0;
251       char *fname = jcr->job->WriteBootstrap;
252       VOL_PARAMS *VolParams = NULL;
253       int VolCount;
254
255       if (*fname == '|') {
256          fname++;
257          got_pipe = 1;
258          bpipe = open_bpipe(fname, 0, "w");
259          fd = bpipe ? bpipe->wfd : NULL;
260       } else {
261          /* ***FIXME*** handle BASE */
262          fd = fopen(fname, jcr->JobLevel==L_FULL?"w+":"a+");
263       }
264       if (fd) {
265          VolCount = db_get_job_volume_parameters(jcr, jcr->db, jcr->JobId,
266                     &VolParams);
267          if (VolCount == 0) {
268             Jmsg(jcr, M_ERROR, 0, _("Could not get Job Volume Parameters to "
269                  "update Bootstrap file. ERR=%s\n"), db_strerror(jcr->db));
270              if (jcr->SDJobFiles != 0) {
271                 set_jcr_job_status(jcr, JS_ErrorTerminated);
272              }
273
274          }
275          for (int i=0; i < VolCount; i++) {
276             /* Write the record */
277             fprintf(fd, "Volume=\"%s\"\n", VolParams[i].VolumeName);
278             fprintf(fd, "MediaType=\"%s\"\n", VolParams[i].MediaType);
279             fprintf(fd, "VolSessionId=%u\n", jcr->VolSessionId);
280             fprintf(fd, "VolSessionTime=%u\n", jcr->VolSessionTime);
281             fprintf(fd, "VolFile=%u-%u\n", VolParams[i].StartFile,
282                          VolParams[i].EndFile);
283             fprintf(fd, "VolBlock=%u-%u\n", VolParams[i].StartBlock,
284                          VolParams[i].EndBlock);
285             fprintf(fd, "FileIndex=%d-%d\n", VolParams[i].FirstIndex,
286                          VolParams[i].LastIndex);
287          }
288          if (VolParams) {
289             free(VolParams);
290          }
291          if (got_pipe) {
292             close_bpipe(bpipe);
293          } else {
294             fclose(fd);
295          }
296       } else {
297          berrno be;
298          Jmsg(jcr, M_ERROR, 0, _("Could not open WriteBootstrap file:\n"
299               "%s: ERR=%s\n"), fname, be.strerror());
300          set_jcr_job_status(jcr, JS_ErrorTerminated);
301       }
302    }
303
304    msg_type = M_INFO;                 /* by default INFO message */
305    switch (jcr->JobStatus) {
306       case JS_Terminated:
307          if (jcr->Errors || jcr->SDErrors) {
308             term_msg = _("Backup OK -- with warnings");
309          } else {
310             term_msg = _("Backup OK");
311          }
312          break;
313       case JS_FatalError:
314       case JS_ErrorTerminated:
315          term_msg = _("*** Backup Error ***");
316          msg_type = M_ERROR;          /* Generate error message */
317          if (jcr->store_bsock) {
318             bnet_sig(jcr->store_bsock, BNET_TERMINATE);
319             if (jcr->SD_msg_chan) {
320                pthread_cancel(jcr->SD_msg_chan);
321             }
322          }
323          break;
324       case JS_Canceled:
325          term_msg = _("Backup Canceled");
326          if (jcr->store_bsock) {
327             bnet_sig(jcr->store_bsock, BNET_TERMINATE);
328             if (jcr->SD_msg_chan) {
329                pthread_cancel(jcr->SD_msg_chan);
330             }
331          }
332          break;
333       default:
334          term_msg = term_code;
335          sprintf(term_code, _("Inappropriate term code: %c\n"), jcr->JobStatus);
336          break;
337    }
338    bstrftimes(sdt, sizeof(sdt), jcr->jr.StartTime);
339    bstrftimes(edt, sizeof(edt), jcr->jr.EndTime);
340    RunTime = jcr->jr.EndTime - jcr->jr.StartTime;
341    if (RunTime <= 0) {
342       kbps = 0;
343    } else {
344       kbps = (double)jcr->jr.JobBytes / (1000 * RunTime);
345    }
346    if (!db_get_job_volume_names(jcr, jcr->db, jcr->jr.JobId, &jcr->VolumeName)) {
347       /*
348        * Note, if the job has erred, most likely it did not write any
349        *  tape, so suppress this "error" message since in that case
350        *  it is normal.  Or look at it the other way, only for a
351        *  normal exit should we complain about this error.
352        */
353       if (jcr->JobStatus == JS_Terminated && jcr->jr.JobBytes) {
354          Jmsg(jcr, M_ERROR, 0, "%s", db_strerror(jcr->db));
355       }
356       jcr->VolumeName[0] = 0;         /* none */
357    }
358
359    if (jcr->ReadBytes == 0) {
360       bstrncpy(compress, "None", sizeof(compress));
361    } else {
362       compression = (double)100 - 100.0 * ((double)jcr->JobBytes / (double)jcr->ReadBytes);
363       if (compression < 0.5) {
364          bstrncpy(compress, "None", sizeof(compress));
365       } else {
366          bsnprintf(compress, sizeof(compress), "%.1f %%", (float)compression);
367       }
368    }
369    jobstatus_to_ascii(jcr->FDJobStatus, fd_term_msg, sizeof(fd_term_msg));
370    jobstatus_to_ascii(jcr->SDJobStatus, sd_term_msg, sizeof(sd_term_msg));
371
372 // bmicrosleep(15, 0);                /* for debugging SIGHUP */
373
374    Jmsg(jcr, msg_type, 0, _("Bacula " VERSION " (" LSMDATE "): %s\n"
375 "  JobId:                  %d\n"
376 "  Job:                    %s\n"
377 "  Backup Level:           %s%s\n"
378 "  Client:                 %s\n"
379 "  FileSet:                \"%s\" %s\n"
380 "  Pool:                   \"%s\"\n"
381 "  Start time:             %s\n"
382 "  End time:               %s\n"
383 "  FD Files Written:       %s\n"
384 "  SD Files Written:       %s\n"
385 "  FD Bytes Written:       %s\n"
386 "  SD Bytes Written:       %s\n"
387 "  Rate:                   %.1f KB/s\n"
388 "  Software Compression:   %s\n"
389 "  Volume name(s):         %s\n"
390 "  Volume Session Id:      %d\n"
391 "  Volume Session Time:    %d\n"
392 "  Last Volume Bytes:      %s\n"
393 "  Non-fatal FD errors:    %d\n"
394 "  SD Errors:              %d\n"
395 "  FD termination status:  %s\n"
396 "  SD termination status:  %s\n"
397 "  Termination:            %s\n\n"),
398         edt,
399         jcr->jr.JobId,
400         jcr->jr.Job,
401         level_to_str(jcr->JobLevel), jcr->since,
402         jcr->client->hdr.name,
403         jcr->fileset->hdr.name, jcr->FSCreateTime,
404         jcr->pool->hdr.name,
405         sdt,
406         edt,
407         edit_uint64_with_commas(jcr->jr.JobFiles, ec1),
408         edit_uint64_with_commas(jcr->SDJobFiles, ec4),
409         edit_uint64_with_commas(jcr->jr.JobBytes, ec2),
410         edit_uint64_with_commas(jcr->SDJobBytes, ec5),
411         (float)kbps,
412         compress,
413         jcr->VolumeName,
414         jcr->VolSessionId,
415         jcr->VolSessionTime,
416         edit_uint64_with_commas(mr.VolBytes, ec3),
417         jcr->Errors,
418         jcr->SDErrors,
419         fd_term_msg,
420         sd_term_msg,
421         term_msg);
422
423    Dmsg0(100, "Leave mac_cleanup()\n");
424 }