]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/job.c
Server address binding + bscan updates -- see kes25Sep02
[bacula/bacula] / bacula / src / dird / job.c
1 /*
2  *
3  *   Bacula Director Job processing routines
4  *
5  *     Kern Sibbald, October MM
6  *
7  *    Version $Id$
8  */
9 /*
10    Copyright (C) 2000, 2001, 2002 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"
30 #include "dird.h"
31
32 /* Forward referenced subroutines */
33 static void job_thread(void *arg);
34 static char *edit_run_codes(JCR *jcr, char *omsg, char *imsg);
35
36 /* Exported subroutines */
37 void run_job(JCR *jcr);
38 void init_job_server(int max_workers);
39
40
41 /* Imported subroutines */
42 extern void term_scheduler();
43 extern void term_ua_server();
44 extern int do_backup(JCR *jcr);
45 extern int do_restore(JCR *jcr);
46 extern int do_verify(JCR *jcr);
47 extern void backup_cleanup(void);
48
49 /* Queue of jobs to be run */
50 static workq_t job_wq;                /* our job work queue */
51
52
53 void init_job_server(int max_workers)
54 {
55    int stat;
56
57    if ((stat = workq_init(&job_wq, max_workers, job_thread)) != 0) {
58       Emsg1(M_ABORT, 0, _("Could not init job work queue: ERR=%s\n"), strerror(stat));
59    }
60    return;
61 }
62
63 /*
64  * Run a job -- typically called by the scheduler, but may also
65  *              be called by the UA (Console program).
66  *
67  */
68 void run_job(JCR *jcr)
69 {
70    int stat, errstat;
71
72    init_msg(jcr, jcr->messages);
73    create_unique_job_name(jcr, jcr->job->hdr.name);
74    jcr->jr.SchedTime = jcr->sched_time;
75    jcr->jr.StartTime = jcr->start_time;
76    jcr->jr.Type = jcr->JobType;
77    jcr->jr.Level = jcr->JobLevel;
78    jcr->jr.JobStatus = jcr->JobStatus;
79    strcpy(jcr->jr.Name, jcr->job->hdr.name);
80    strcpy(jcr->jr.Job, jcr->Job);
81
82    /* Initialize termination condition variable */
83    if ((errstat = pthread_cond_init(&jcr->term_wait, NULL)) != 0) {
84       Jmsg1(jcr, M_FATAL, 0, _("Unable to init job cond variable: ERR=%s\n"), strerror(errstat));
85       jcr->JobStatus = JS_ErrorTerminated;
86       free_jcr(jcr);
87       return;
88    }
89
90    /*
91     * Open database
92     */
93    Dmsg0(50, "Open database\n");
94    jcr->db=db_init_database(jcr, jcr->catalog->db_name, jcr->catalog->db_user,
95                             jcr->catalog->db_password);
96    if (!db_open_database(jcr->db)) {
97       Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db));
98       db_close_database(jcr->db);
99       jcr->JobStatus = JS_ErrorTerminated;
100       free_jcr(jcr);
101       return;
102    }
103    Dmsg0(50, "DB opened\n");
104
105    /*
106     * Create Job record  
107     */
108    jcr->jr.JobStatus = jcr->JobStatus;
109    if (!db_create_job_record(jcr->db, &jcr->jr)) {
110       Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db));
111       db_close_database(jcr->db);
112       jcr->JobStatus = JS_ErrorTerminated;
113       free_jcr(jcr);
114       return;
115    }
116    jcr->JobId = jcr->jr.JobId;
117    ASSERT(jcr->jr.JobId > 0);
118
119    Dmsg4(30, "Created job record JobId=%d Name=%s Type=%c Level=%c\n", 
120        jcr->JobId, jcr->Job, jcr->jr.Type, jcr->jr.Level);
121    Dmsg0(200, "Add jrc to work queue\n");
122
123
124    /* Queue the job to be run */
125    if ((stat = workq_add(&job_wq, (void *)jcr)) != 0) {
126       Emsg1(M_ABORT, 0, _("Could not add job to work queue: ERR=%s\n"), strerror(stat));
127    }
128    Dmsg0(200, "Done run_job()\n");
129 }
130
131 /* 
132  * This is the engine called by workq_add() when we were pulled                
133  *  from the work queue.
134  *  At this point, we are running in our own thread 
135  */
136 static void job_thread(void *arg)
137 {
138    time_t now;
139    JCR *jcr = (JCR *)arg;
140
141    time(&now);
142
143    Dmsg0(100, "=====Start Job=========\n");
144    jcr->start_time = now;             /* set the real start time */
145    if (jcr->job->MaxStartDelay != 0 && jcr->job->MaxStartDelay <
146        (btime_t)(jcr->start_time - jcr->sched_time)) {
147       Jmsg(jcr, M_FATAL, 0, _("Job cancelled because max delay time exceeded.\n"));
148       jcr->JobStatus = JS_ErrorTerminated;
149       update_job_end_record(jcr);
150    } else {
151
152       /* Run Job */
153       jcr->JobStatus = JS_Running;
154
155       if (jcr->job->RunBeforeJob) {
156          POOLMEM *before = get_pool_memory(PM_FNAME);
157          int status;
158          
159          before = edit_run_codes(jcr, before, jcr->job->RunBeforeJob);
160          status = run_program(before, 0, NULL);
161          free_pool_memory(before);
162       }
163       switch (jcr->JobType) {
164          case JT_BACKUP:
165             do_backup(jcr);
166             if (jcr->JobStatus == JS_Terminated) {
167                do_autoprune(jcr);
168             }
169             break;
170          case JT_VERIFY:
171             do_verify(jcr);
172             if (jcr->JobStatus == JS_Terminated) {
173                do_autoprune(jcr);
174             }
175             break;
176          case JT_RESTORE:
177             do_restore(jcr);
178             if (jcr->JobStatus == JS_Terminated) {
179                do_autoprune(jcr);
180             }
181             break;
182          case JT_ADMIN:
183             /* No actual job */
184             do_autoprune(jcr);
185             jcr->JobStatus = JS_Terminated;
186             break;
187          default:
188             Pmsg1(0, "Unimplemented job type: %d\n", jcr->JobType);
189             break;
190          }
191    }
192    if (jcr->job->RunAfterJob) {
193       POOLMEM *after = get_pool_memory(PM_FNAME);
194       int status;
195       
196       after = edit_run_codes(jcr, after, jcr->job->RunAfterJob);
197       status = run_program(after, 0, NULL);
198       free_pool_memory(after);
199    }
200    Dmsg0(50, "Before free jcr\n");
201    free_jcr(jcr);
202    Dmsg0(50, "======== End Job ==========\n");
203 }
204
205 /*
206  * Get or create a Client record for this Job
207  */
208 int get_or_create_client_record(JCR *jcr)
209 {
210    CLIENT_DBR cr;
211
212    memset(&cr, 0, sizeof(cr));
213    strcpy(cr.Name, jcr->client->hdr.name);
214    cr.AutoPrune = jcr->client->AutoPrune;
215    cr.FileRetention = jcr->client->FileRetention;
216    cr.JobRetention = jcr->client->JobRetention;
217    if (jcr->client_name) {
218       free_pool_memory(jcr->client_name);
219    }
220    jcr->client_name = get_memory(strlen(jcr->client->hdr.name) + 1);
221    strcpy(jcr->client_name, jcr->client->hdr.name);
222    if (!db_create_client_record(jcr->db, &cr)) {
223       Jmsg(jcr, M_FATAL, 0, _("Could not create Client record. %s"), 
224          db_strerror(jcr->db));
225       return 0;
226    }
227    jcr->jr.ClientId = cr.ClientId;
228    Dmsg2(100, "Created Client %s record %d\n", jcr->client->hdr.name, 
229       jcr->jr.ClientId);
230    return 1;
231 }
232
233
234 /*
235  * Write status and such in DB
236  */
237 void update_job_end_record(JCR *jcr)
238 {
239    if (jcr->jr.EndTime == 0) {
240       jcr->jr.EndTime = time(NULL);
241    }
242    jcr->end_time = jcr->jr.EndTime;
243    jcr->jr.JobId = jcr->JobId;
244    jcr->jr.JobStatus = jcr->JobStatus;
245    jcr->jr.JobFiles = jcr->JobFiles;
246    jcr->jr.JobBytes = jcr->JobBytes;
247    jcr->jr.VolSessionId = jcr->VolSessionId;
248    jcr->jr.VolSessionTime = jcr->VolSessionTime;
249    if (!db_update_job_end_record(jcr->db, &jcr->jr)) {
250       Jmsg(jcr, M_WARNING, 0, _("Error updating job record. %s"), 
251          db_strerror(jcr->db));
252    }
253 }
254
255 /*
256  * Takes base_name and appends (unique) current
257  *   date and time to form unique job name.
258  *
259  *  Returns: unique job name in jcr->Job
260  *    date/time in jcr->start_time
261  */
262 void create_unique_job_name(JCR *jcr, char *base_name)
263 {
264    /* Job start mutex */
265    static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
266    static time_t last_start_time = 0;
267    time_t now;
268    struct tm tm;
269    char dt[MAX_TIME_LENGTH];
270    char name[MAX_NAME_LENGTH];
271    char *p;
272
273    /* Guarantee unique start time -- maximum one per second, and
274     * thus unique Job Name 
275     */
276    P(mutex);                          /* lock creation of jobs */
277    time(&now);
278    while (now == last_start_time) {
279       sleep(1);
280       time(&now);
281    }
282    last_start_time = now;
283    V(mutex);                          /* allow creation of jobs */
284    jcr->start_time = now;
285    /* Form Unique JobName */
286    localtime_r(&now, &tm);
287    strftime(dt, sizeof(dt), "%Y-%m-%d.%H:%M:%S", &tm); 
288    strncpy(name, base_name, sizeof(name));
289    name[sizeof(name)-22] = 0;          /* truncate if too long */
290    sprintf(jcr->Job, "%s.%s", name, dt); /* add date & time */
291    /* Convert spaces into underscores */
292    for (p=jcr->Job; *p; p++) {
293       if (*p == ' ') {
294          *p = '_';
295       }
296    }
297 }
298
299 /*
300  * Free the Job Control Record if no one is still using it.
301  *  Called from main free_jcr() routine in src/lib/jcr.c so
302  *  that we can do our Director specific cleanup of the jcr.
303  */
304 void dird_free_jcr(JCR *jcr)
305 {
306    Dmsg0(200, "Start dird free_jcr\n");
307
308    if (jcr->file_bsock) {
309       Dmsg0(200, "Close File bsock\n");
310       bnet_close(jcr->file_bsock);
311    }
312    if (jcr->store_bsock) {
313       Dmsg0(200, "Close Store bsock\n");
314       bnet_close(jcr->store_bsock);
315    }
316    if (jcr->fname) {  
317       Dmsg0(200, "Free JCR fname\n");
318       free_pool_memory(jcr->fname);
319    }
320    if (jcr->stime) {
321       Dmsg0(200, "Free JCR stime\n");
322       free_pool_memory(jcr->stime);
323    }
324    if (jcr->db) {
325       Dmsg0(200, "Close DB\n");
326       db_close_database(jcr->db);
327    }
328    if (jcr->RestoreWhere) {
329       free(jcr->RestoreWhere);
330    }
331    if (jcr->RestoreBootstrap) {
332       free(jcr->RestoreBootstrap);
333    }
334    Dmsg0(200, "End dird free_jcr\n");
335 }
336
337 /*
338  * Set some defaults in the JCR necessary to
339  * run. These items are pulled from the job
340  * definition as defaults, but can be overridden
341  * later either by the Run record in the Schedule resource,
342  * or by the Console program.
343  */
344 void set_jcr_defaults(JCR *jcr, JOB *job)
345 {
346    jcr->job = job;
347    jcr->JobType = job->JobType;
348    jcr->JobLevel = job->level;
349    jcr->store = job->storage;
350    jcr->client = job->client;
351    if (jcr->client_name) {
352       free_pool_memory(jcr->client_name);
353    }
354    jcr->client_name = get_memory(strlen(jcr->client->hdr.name) + 1);
355    strcpy(jcr->client_name, jcr->client->hdr.name);
356    jcr->pool = job->pool;
357    jcr->catalog = job->client->catalog;
358    jcr->fileset = job->fileset;
359    jcr->messages = job->messages; 
360    if (jcr->RestoreBootstrap) {
361       free(jcr->RestoreBootstrap);
362    }
363    /* This can be overridden by Console program */
364    if (job->RestoreBootstrap) {
365       jcr->RestoreBootstrap = bstrdup(job->RestoreBootstrap);
366    }
367    /* If no default level given, set one */
368    if (jcr->JobLevel == 0) {
369       switch (jcr->JobType) {
370       case JT_VERIFY:
371          jcr->JobLevel = L_VERIFY_CATALOG;
372          break;
373       case JT_BACKUP:
374          jcr->JobLevel = L_INCREMENTAL;
375          break;
376       default:
377          break;
378       }
379    }
380 }
381
382 /*
383  * Edit codes into Run command
384  *  %% = %
385  *  %c = Client's name
386  *  %d = Director's name
387  *  %i = JobId
388  *  %e = Job Exit
389  *  %j = Job
390  *  %l = Job Level
391  *  %n = Job name
392  *  %t = Job type
393  *
394  *  omsg = edited output message
395  *  imsg = input string containing edit codes (%x)
396  *
397  */
398 static char *edit_run_codes(JCR *jcr, char *omsg, char *imsg) 
399 {
400    char *p;
401    const char *str;
402    char add[20];
403
404    *omsg = 0;
405    Dmsg1(200, "edit_run_codes: %s\n", imsg);
406    for (p=imsg; *p; p++) {
407       if (*p == '%') {
408          switch (*++p) {
409          case '%':
410             str = "%";
411             break;
412          case 'c':
413             str = jcr->client_name;
414             if (!str) {
415                str = "";
416             }
417             break;
418          case 'd':
419             str = my_name;
420             break;
421          case 'e':
422             str = job_status_to_str(jcr->JobStatus);
423             break;
424          case 'i':
425             sprintf(add, "%d", jcr->JobId);
426             str = add;
427             break;
428          case 'j':                    /* Job */
429             str = jcr->Job;
430             break;
431          case 'l':
432             str = job_level_to_str(jcr->JobLevel);
433             break;
434          case 'n':
435             str = jcr->job->hdr.name;
436             break;
437          case 't':
438             str = job_type_to_str(jcr->JobType);
439             break;
440          default:
441             add[0] = '%';
442             add[1] = *p;
443             add[2] = 0;
444             str = add;
445             break;
446          }
447       } else {
448          add[0] = *p;
449          add[1] = 0;
450          str = add;
451       }
452       Dmsg1(200, "add_str %s\n", str);
453       pm_strcat(&omsg, (char *)str);
454       Dmsg1(200, "omsg=%s\n", omsg);
455    }
456    return omsg;
457 }