]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/job.c
- Modify the depend section of each Makefile.in to reference
[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-2004 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 void job_monitor_watchdog(watchdog_t *self);
35 static void job_monitor_destructor(watchdog_t *self);
36 static bool job_check_maxwaittime(JCR *control_jcr, JCR *jcr);
37 static bool job_check_maxruntime(JCR *control_jcr, JCR *jcr);
38
39 /* Exported subroutines */
40
41 /* Imported subroutines */
42 extern void term_scheduler();
43 extern void term_ua_server();
44 extern int do_backup(JCR *jcr);
45 extern bool do_mac(JCR *jcr);
46 extern int do_admin(JCR *jcr);
47 extern int do_restore(JCR *jcr);
48 extern int do_verify(JCR *jcr);
49
50 /* Imported variables */
51 extern time_t watchdog_time;
52
53 jobq_t job_queue;
54
55 void init_job_server(int max_workers)
56 {
57    int stat;
58    watchdog_t *wd;
59    
60    if ((stat = jobq_init(&job_queue, max_workers, job_thread)) != 0) {
61       berrno be;
62       Emsg1(M_ABORT, 0, _("Could not init job queue: ERR=%s\n"), be.strerror(stat));
63    }
64    if ((wd = new_watchdog()) == NULL) {
65       Emsg0(M_ABORT, 0, _("Could not init job monitor watchdogs\n"));
66    }
67    wd->callback = job_monitor_watchdog;
68    wd->destructor = job_monitor_destructor;
69    wd->one_shot = false;
70    wd->interval = 60;
71    wd->data = new_control_jcr("*JobMonitor*", JT_SYSTEM);
72    register_watchdog(wd);
73 }
74
75 void term_job_server()
76 {
77    jobq_destroy(&job_queue);          /* ignore any errors */
78 }
79
80 /*
81  * Run a job -- typically called by the scheduler, but may also
82  *              be called by the UA (Console program).
83  *
84  *  Returns: 0 on failure
85  *           JobId on success
86  *
87  */
88 JobId_t run_job(JCR *jcr)
89 {
90    int stat, errstat;
91    JobId_t JobId = 0;
92
93    P(jcr->mutex);
94    sm_check(__FILE__, __LINE__, true);
95    init_msg(jcr, jcr->messages);
96
97    /* Initialize termination condition variable */
98    if ((errstat = pthread_cond_init(&jcr->term_wait, NULL)) != 0) {
99       berrno be;
100       Jmsg1(jcr, M_FATAL, 0, _("Unable to init job cond variable: ERR=%s\n"), be.strerror(errstat));
101       goto bail_out;
102    }
103    jcr->term_wait_inited = true;
104
105    /*
106     * Open database
107     */
108    Dmsg0(50, "Open database\n");
109    jcr->db=db_init_database(jcr, jcr->catalog->db_name, jcr->catalog->db_user,
110                             jcr->catalog->db_password, jcr->catalog->db_address,
111                             jcr->catalog->db_port, jcr->catalog->db_socket,
112                             jcr->catalog->mult_db_connections);
113    if (!jcr->db || !db_open_database(jcr, jcr->db)) {
114       Jmsg(jcr, M_FATAL, 0, _("Could not open database \"%s\".\n"),
115                  jcr->catalog->db_name);
116       if (jcr->db) {
117          Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db));
118       }
119       goto bail_out;
120    }
121    Dmsg0(50, "DB opened\n");
122
123    /*
124     * Create Job record  
125     */
126    create_unique_job_name(jcr, jcr->job->hdr.name);
127    set_jcr_job_status(jcr, JS_Created);
128    init_jcr_job_record(jcr);
129    if (!db_create_job_record(jcr, jcr->db, &jcr->jr)) {
130       Jmsg(jcr, M_FATAL, 0, "%s", db_strerror(jcr->db));
131       goto bail_out;
132    }
133    JobId = jcr->JobId = jcr->jr.JobId;
134
135    Dmsg4(100, "Created job record JobId=%d Name=%s Type=%c Level=%c\n", 
136        jcr->JobId, jcr->Job, jcr->jr.JobType, jcr->jr.JobLevel);
137    Dmsg0(200, "Add jrc to work queue\n");
138
139    /* Queue the job to be run */
140    if ((stat = jobq_add(&job_queue, jcr)) != 0) {
141       berrno be;
142       Jmsg(jcr, M_FATAL, 0, _("Could not add job queue: ERR=%s\n"), be.strerror(stat));
143       JobId = 0;
144       goto bail_out;
145    }
146    Dmsg0(100, "Done run_job()\n");
147
148    V(jcr->mutex);
149    return JobId;
150
151 bail_out:
152    set_jcr_job_status(jcr, JS_ErrorTerminated);
153    V(jcr->mutex);
154    return JobId;
155
156 }
157
158
159 /* 
160  * This is the engine called by jobq.c:jobq_add() when we were pulled                
161  *  from the work queue.
162  *  At this point, we are running in our own thread and all
163  *    necessary resources are allocated -- see jobq.c
164  */
165 static void *job_thread(void *arg)
166 {
167    JCR *jcr = (JCR *)arg;
168
169    jcr->my_thread_id = pthread_self();
170    pthread_detach(jcr->my_thread_id);
171    sm_check(__FILE__, __LINE__, true);
172
173    for ( ;; ) {
174       Dmsg0(200, "=====Start Job=========\n");
175       jcr->start_time = time(NULL);      /* set the real start time */
176       set_jcr_job_status(jcr, JS_Running);
177
178       if (job_canceled(jcr)) {
179          update_job_end_record(jcr);
180       } else if (jcr->job->MaxStartDelay != 0 && jcr->job->MaxStartDelay <
181           (utime_t)(jcr->start_time - jcr->sched_time)) {
182          Jmsg(jcr, M_FATAL, 0, _("Job canceled because max start delay time exceeded.\n"));
183          set_jcr_job_status(jcr, JS_Canceled);
184          update_job_end_record(jcr);
185       } else {
186
187          /* Run Job */
188          if (jcr->job->RunBeforeJob) {
189             POOLMEM *before = get_pool_memory(PM_FNAME);
190             int status;
191             BPIPE *bpipe;
192             char line[MAXSTRING];
193             
194             before = edit_job_codes(jcr, before, jcr->job->RunBeforeJob, "");
195             bpipe = open_bpipe(before, 0, "r");
196             free_pool_memory(before);
197             while (fgets(line, sizeof(line), bpipe->rfd)) {
198                Jmsg(jcr, M_INFO, 0, _("RunBefore: %s"), line);
199             }
200             status = close_bpipe(bpipe);
201             if (status != 0) {
202                berrno be;
203                Jmsg(jcr, M_FATAL, 0, _("RunBeforeJob error: ERR=%s\n"), be.strerror(status));
204                set_jcr_job_status(jcr, JS_FatalError);
205                update_job_end_record(jcr);
206                goto bail_out;
207             }
208          }
209          switch (jcr->JobType) {
210          case JT_BACKUP:
211             do_backup(jcr);
212             if (jcr->JobStatus == JS_Terminated) {
213                do_autoprune(jcr);
214             }
215             break;
216          case JT_VERIFY:
217             do_verify(jcr);
218             if (jcr->JobStatus == JS_Terminated) {
219                do_autoprune(jcr);
220             }
221             break;
222          case JT_RESTORE:
223             do_restore(jcr);
224             if (jcr->JobStatus == JS_Terminated) {
225                do_autoprune(jcr);
226             }
227             break;
228          case JT_ADMIN:
229             do_admin(jcr);
230             if (jcr->JobStatus == JS_Terminated) {
231                do_autoprune(jcr);
232             }
233             break;
234          case JT_MIGRATION:
235          case JT_COPY:
236          case JT_ARCHIVE:
237             do_mac(jcr);              /* migration, archive, copy */
238             if (jcr->JobStatus == JS_Terminated) {
239                do_autoprune(jcr);
240             }
241             break;
242          default:
243             Pmsg1(0, "Unimplemented job type: %d\n", jcr->JobType);
244             break;
245          }
246          if ((jcr->job->RunAfterJob && jcr->JobStatus == JS_Terminated) ||
247              (jcr->job->RunAfterFailedJob && jcr->JobStatus != JS_Terminated)) {
248             POOLMEM *after = get_pool_memory(PM_FNAME);
249             int status;
250             BPIPE *bpipe;
251             char line[MAXSTRING];
252             
253             if (jcr->JobStatus == JS_Terminated) {
254                after = edit_job_codes(jcr, after, jcr->job->RunAfterJob, "");
255             } else {
256                after = edit_job_codes(jcr, after, jcr->job->RunAfterFailedJob, "");
257             }
258             bpipe = open_bpipe(after, 0, "r");
259             free_pool_memory(after);
260             while (fgets(line, sizeof(line), bpipe->rfd)) {
261                Jmsg(jcr, M_INFO, 0, _("RunAfter: %s"), line);
262             }
263             status = close_bpipe(bpipe);
264             /*
265              * Note, if we get an error here, do not mark the
266              *  job in error, simply report the error condition.   
267              */
268             if (status != 0) {
269                berrno be;
270                if (jcr->JobStatus == JS_Terminated) {
271                   Jmsg(jcr, M_WARNING, 0, _("RunAfterJob error: ERR=%s\n"), be.strerror(status));
272                } else {
273                   Jmsg(jcr, M_FATAL, 0, _("RunAfterFailedJob error: ERR=%s\n"), be.strerror(status));
274                }
275             }
276          }
277          /* Send off any queued messages */
278          if (jcr->msg_queue->size() > 0) {
279             dequeue_messages(jcr);
280          }
281       }
282 bail_out:
283       break;
284    }
285
286    Dmsg0(50, "======== End Job ==========\n");
287    sm_check(__FILE__, __LINE__, true);
288    return NULL;
289 }
290
291
292 /*
293  * Cancel a job -- typically called by the UA (Console program), but may also
294  *              be called by the job watchdog.
295  * 
296  *  Returns: 1 if cancel appears to be successful
297  *           0 on failure. Message sent to ua->jcr.
298  */
299 int cancel_job(UAContext *ua, JCR *jcr)
300 {
301    BSOCK *sd, *fd;
302
303    switch (jcr->JobStatus) {
304    case JS_Created:
305    case JS_WaitJobRes:
306    case JS_WaitClientRes:
307    case JS_WaitStoreRes:
308    case JS_WaitPriority:
309    case JS_WaitMaxJobs:
310    case JS_WaitStartTime:
311       set_jcr_job_status(jcr, JS_Canceled);
312       bsendmsg(ua, _("JobId %d, Job %s marked to be canceled.\n"),
313               jcr->JobId, jcr->Job);
314       jobq_remove(&job_queue, jcr); /* attempt to remove it from queue */
315       return 1;
316          
317    default:
318       set_jcr_job_status(jcr, JS_Canceled);
319
320       /* Cancel File daemon */
321       if (jcr->file_bsock) {
322          ua->jcr->client = jcr->client;
323          if (!connect_to_file_daemon(ua->jcr, 10, FDConnectTimeout, 1)) {
324             bsendmsg(ua, _("Failed to connect to File daemon.\n"));
325             return 0;
326          }
327          Dmsg0(200, "Connected to file daemon\n");
328          fd = ua->jcr->file_bsock;
329          bnet_fsend(fd, "cancel Job=%s\n", jcr->Job);
330          while (bnet_recv(fd) >= 0) {
331             bsendmsg(ua, "%s", fd->msg);
332          }
333          bnet_sig(fd, BNET_TERMINATE);
334          bnet_close(fd);
335          ua->jcr->file_bsock = NULL;
336       }
337
338       /* Cancel Storage daemon */
339       if (jcr->store_bsock) {
340          ua->jcr->store = jcr->store;
341          for (int i=0; i<MAX_STORE; i++) {
342             ua->jcr->storage[i] = jcr->storage[i];
343          }
344          if (!connect_to_storage_daemon(ua->jcr, 10, SDConnectTimeout, 1)) {
345             bsendmsg(ua, _("Failed to connect to Storage daemon.\n"));
346             return 0;
347          }
348          Dmsg0(200, "Connected to storage daemon\n");
349          sd = ua->jcr->store_bsock;
350          bnet_fsend(sd, "cancel Job=%s\n", jcr->Job);
351          while (bnet_recv(sd) >= 0) {
352             bsendmsg(ua, "%s", sd->msg);
353          }
354          bnet_sig(sd, BNET_TERMINATE);
355          bnet_close(sd);
356          ua->jcr->store_bsock = NULL;
357       }
358    }
359
360    return 1;
361 }
362
363
364 static void job_monitor_destructor(watchdog_t *self)
365 {
366    JCR *control_jcr = (JCR *) self->data;
367
368    free_jcr(control_jcr);
369 }
370
371 static void job_monitor_watchdog(watchdog_t *self)
372 {
373    JCR *control_jcr, *jcr;
374
375    control_jcr = (JCR *)self->data;
376
377    Dmsg1(400, "job_monitor_watchdog %p called\n", self);
378
379    lock_jcr_chain();
380
381    foreach_jcr(jcr) {
382       bool cancel;
383
384       if (jcr->JobId == 0) {
385          Dmsg2(400, "Skipping JCR %p (%s) with JobId 0\n",
386                jcr, jcr->Job);
387          /* Keep reference counts correct */
388          free_locked_jcr(jcr);
389          continue;
390       }
391
392       /* check MaxWaitTime */
393       cancel = job_check_maxwaittime(control_jcr, jcr);
394
395       /* check MaxRunTime */
396       cancel |= job_check_maxruntime(control_jcr, jcr);
397
398       if (cancel) {
399          Dmsg3(200, "Cancelling JCR %p jobid %d (%s)\n",
400                jcr, jcr->JobId, jcr->Job);
401
402          UAContext *ua = new_ua_context(jcr);
403          ua->jcr = control_jcr;
404          cancel_job(ua, jcr);
405          free_ua_context(ua);
406
407          Dmsg1(200, "Have cancelled JCR %p\n", jcr);
408       }
409
410       /* Keep reference counts correct */
411       free_locked_jcr(jcr);
412    }
413    unlock_jcr_chain();
414 }
415
416 /*
417  * Check if the maxwaittime has expired and it is possible
418  *  to cancel the job.
419  */
420 static bool job_check_maxwaittime(JCR *control_jcr, JCR *jcr)
421 {
422    bool cancel = false;
423
424    if (jcr->job->MaxWaitTime == 0) {
425       return false;
426    }
427    if ((watchdog_time - jcr->start_time) < jcr->job->MaxWaitTime) {
428       Dmsg3(200, "Job %p (%s) with MaxWaitTime %d not expired\n",
429             jcr, jcr->Job, jcr->job->MaxWaitTime);
430       return false;
431    }
432    Dmsg3(200, "Job %d (%s): MaxWaitTime of %d seconds exceeded, "
433          "checking status\n",
434          jcr->JobId, jcr->Job, jcr->job->MaxWaitTime);
435    switch (jcr->JobStatus) {
436    case JS_Created:
437    case JS_Blocked:
438    case JS_WaitFD:
439    case JS_WaitSD:
440    case JS_WaitStoreRes:
441    case JS_WaitClientRes:
442    case JS_WaitJobRes:
443    case JS_WaitPriority:
444    case JS_WaitMaxJobs:
445    case JS_WaitStartTime:
446       cancel = true;
447       Dmsg0(200, "JCR blocked in #1\n");
448       break;
449    case JS_Running:
450       Dmsg0(200, "JCR running, checking SD status\n");
451       switch (jcr->SDJobStatus) {
452       case JS_WaitMount:
453       case JS_WaitMedia:
454       case JS_WaitFD:
455          cancel = true;
456          Dmsg0(200, "JCR blocked in #2\n");
457          break;
458       default:
459          Dmsg0(200, "JCR not blocked in #2\n");
460          break;
461       }
462       break;
463    case JS_Terminated:
464    case JS_ErrorTerminated:
465    case JS_Canceled:
466    case JS_FatalError:
467       Dmsg0(200, "JCR already dead in #3\n");
468       break;
469    default:
470       Jmsg1(jcr, M_ERROR, 0, _("Unhandled job status code %d\n"),
471             jcr->JobStatus);
472    }
473    Dmsg3(200, "MaxWaitTime result: %scancel JCR %p (%s)\n",
474          cancel ? "" : "do not ", jcr, jcr->job);
475
476    return cancel;
477 }
478
479 /*
480  * Check if maxruntime has expired and if the job can be
481  *   canceled.
482  */
483 static bool job_check_maxruntime(JCR *control_jcr, JCR *jcr)
484 {
485    bool cancel = false;
486
487    if (jcr->job->MaxRunTime == 0) {
488       return false;
489    }
490    if ((watchdog_time - jcr->start_time) < jcr->job->MaxRunTime) {
491       Dmsg3(200, "Job %p (%s) with MaxRunTime %d not expired\n",
492             jcr, jcr->Job, jcr->job->MaxRunTime);
493       return false;
494    }
495
496    switch (jcr->JobStatus) {
497    case JS_Created:
498    case JS_Running:
499    case JS_Blocked:
500    case JS_WaitFD:
501    case JS_WaitSD:
502    case JS_WaitStoreRes:
503    case JS_WaitClientRes:
504    case JS_WaitJobRes:
505    case JS_WaitPriority:
506    case JS_WaitMaxJobs:
507    case JS_WaitStartTime:
508    case JS_Differences:
509       cancel = true;
510       break;
511    case JS_Terminated:
512    case JS_ErrorTerminated:
513    case JS_Canceled:
514    case JS_FatalError:
515       cancel = false;
516       break;
517    default:
518       Jmsg1(jcr, M_ERROR, 0, _("Unhandled job status code %d\n"),
519             jcr->JobStatus);
520    }
521
522    Dmsg3(200, "MaxRunTime result: %scancel JCR %p (%s)\n",
523          cancel ? "" : "do not ", jcr, jcr->job);
524
525    return cancel;
526 }
527
528
529 /*
530  * Get or create a Client record for this Job
531  */
532 bool get_or_create_client_record(JCR *jcr)
533 {
534    CLIENT_DBR cr;
535
536    memset(&cr, 0, sizeof(cr));
537    bstrncpy(cr.Name, jcr->client->hdr.name, sizeof(cr.Name));
538    cr.AutoPrune = jcr->client->AutoPrune;
539    cr.FileRetention = jcr->client->FileRetention;
540    cr.JobRetention = jcr->client->JobRetention;
541    if (!jcr->client_name) {
542       jcr->client_name = get_pool_memory(PM_NAME);
543    }
544    pm_strcpy(jcr->client_name, jcr->client->hdr.name);
545    if (!db_create_client_record(jcr, jcr->db, &cr)) {
546       Jmsg(jcr, M_FATAL, 0, _("Could not create Client record. ERR=%s\n"), 
547          db_strerror(jcr->db));
548       return false;
549    }
550    jcr->jr.ClientId = cr.ClientId;
551    if (cr.Uname[0]) {
552       if (!jcr->client_uname) {
553          jcr->client_uname = get_pool_memory(PM_NAME);
554       }
555       pm_strcpy(jcr->client_uname, cr.Uname);
556    }
557    Dmsg2(100, "Created Client %s record %d\n", jcr->client->hdr.name, 
558       jcr->jr.ClientId);
559    return true;
560 }
561
562 bool get_or_create_fileset_record(JCR *jcr, FILESET_DBR *fsr)
563 {
564    /*
565     * Get or Create FileSet record
566     */
567    memset(fsr, 0, sizeof(FILESET_DBR));
568    bstrncpy(fsr->FileSet, jcr->fileset->hdr.name, sizeof(fsr->FileSet));
569    if (jcr->fileset->have_MD5) {
570       struct MD5Context md5c;
571       unsigned char signature[16];
572       memcpy(&md5c, &jcr->fileset->md5c, sizeof(md5c));
573       MD5Final(signature, &md5c);
574       bin_to_base64(fsr->MD5, (char *)signature, 16); /* encode 16 bytes */
575       bstrncpy(jcr->fileset->MD5, fsr->MD5, sizeof(jcr->fileset->MD5));
576    } else {
577       Jmsg(jcr, M_WARNING, 0, _("FileSet MD5 signature not found.\n"));
578    }
579    if (!jcr->fileset->ignore_fs_changes ||
580        !db_get_fileset_record(jcr, jcr->db, fsr)) {
581       if (!db_create_fileset_record(jcr, jcr->db, fsr)) {
582          Jmsg(jcr, M_ERROR, 0, _("Could not create FileSet \"%s\" record. ERR=%s\n"), 
583             fsr->FileSet, db_strerror(jcr->db));
584          return false;
585       }   
586    }
587    jcr->jr.FileSetId = fsr->FileSetId;
588    if (fsr->created) {
589       Jmsg(jcr, M_INFO, 0, _("Created new FileSet record \"%s\" %s\n"), 
590          fsr->FileSet, fsr->cCreateTime);
591    }
592    Dmsg2(119, "Created FileSet %s record %u\n", jcr->fileset->hdr.name, 
593       jcr->jr.FileSetId);
594    return true;
595 }
596
597 void init_jcr_job_record(JCR *jcr)
598 {
599    jcr->jr.SchedTime = jcr->sched_time;
600    jcr->jr.StartTime = jcr->start_time;
601    jcr->jr.EndTime = 0;               /* perhaps rescheduled, clear it */
602    jcr->jr.JobType = jcr->JobType;
603    jcr->jr.JobLevel = jcr->JobLevel;
604    jcr->jr.JobStatus = jcr->JobStatus;
605    jcr->jr.JobId = jcr->JobId;
606    bstrncpy(jcr->jr.Name, jcr->job->hdr.name, sizeof(jcr->jr.Name));
607    bstrncpy(jcr->jr.Job, jcr->Job, sizeof(jcr->jr.Job));
608 }
609
610 /*
611  * Write status and such in DB
612  */
613 void update_job_end_record(JCR *jcr)
614 {
615    jcr->jr.EndTime = time(NULL);
616    jcr->end_time = jcr->jr.EndTime;
617    jcr->jr.JobId = jcr->JobId;
618    jcr->jr.JobStatus = jcr->JobStatus;
619    jcr->jr.JobFiles = jcr->JobFiles;
620    jcr->jr.JobBytes = jcr->JobBytes;
621    jcr->jr.VolSessionId = jcr->VolSessionId;
622    jcr->jr.VolSessionTime = jcr->VolSessionTime;
623    if (!db_update_job_end_record(jcr, jcr->db, &jcr->jr)) {
624       Jmsg(jcr, M_WARNING, 0, _("Error updating job record. %s"), 
625          db_strerror(jcr->db));
626    }
627 }
628
629 /*
630  * Takes base_name and appends (unique) current
631  *   date and time to form unique job name.
632  *
633  *  Returns: unique job name in jcr->Job
634  *    date/time in jcr->start_time
635  */
636 void create_unique_job_name(JCR *jcr, const char *base_name)
637 {
638    /* Job start mutex */
639    static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
640    static time_t last_start_time = 0;
641    time_t now;
642    struct tm tm;
643    char dt[MAX_TIME_LENGTH];
644    char name[MAX_NAME_LENGTH];
645    char *p;
646
647    /* Guarantee unique start time -- maximum one per second, and
648     * thus unique Job Name 
649     */
650    P(mutex);                          /* lock creation of jobs */
651    now = time(NULL);
652    while (now == last_start_time) {
653       bmicrosleep(0, 500000);
654       now = time(NULL);
655    }
656    last_start_time = now;
657    V(mutex);                          /* allow creation of jobs */
658    jcr->start_time = now;
659    /* Form Unique JobName */
660    localtime_r(&now, &tm);
661    /* Use only characters that are permitted in Windows filenames */
662    strftime(dt, sizeof(dt), "%Y-%m-%d_%H.%M.%S", &tm); 
663    bstrncpy(name, base_name, sizeof(name));
664    name[sizeof(name)-22] = 0;          /* truncate if too long */
665    bsnprintf(jcr->Job, sizeof(jcr->Job), "%s.%s", name, dt); /* add date & time */
666    /* Convert spaces into underscores */
667    for (p=jcr->Job; *p; p++) {
668       if (*p == ' ') {
669          *p = '_';
670       }
671    }
672 }
673
674 /*
675  * Free the Job Control Record if no one is still using it.
676  *  Called from main free_jcr() routine in src/lib/jcr.c so
677  *  that we can do our Director specific cleanup of the jcr.
678  */
679 void dird_free_jcr(JCR *jcr)
680 {
681    Dmsg0(200, "Start dird free_jcr\n");
682
683    if (jcr->sd_auth_key) {
684       free(jcr->sd_auth_key);
685       jcr->sd_auth_key = NULL;
686    }
687    if (jcr->where) {
688       free(jcr->where);
689       jcr->where = NULL;
690    }
691    if (jcr->file_bsock) {
692       Dmsg0(200, "Close File bsock\n");
693       bnet_close(jcr->file_bsock);
694       jcr->file_bsock = NULL;
695    }
696    if (jcr->store_bsock) {
697       Dmsg0(200, "Close Store bsock\n");
698       bnet_close(jcr->store_bsock);
699       jcr->store_bsock = NULL;
700    }
701    if (jcr->fname) {  
702       Dmsg0(200, "Free JCR fname\n");
703       free_pool_memory(jcr->fname);
704       jcr->fname = NULL;
705    }
706    if (jcr->stime) {
707       Dmsg0(200, "Free JCR stime\n");
708       free_pool_memory(jcr->stime);
709       jcr->stime = NULL;
710    }
711    if (jcr->RestoreBootstrap) {
712       free(jcr->RestoreBootstrap);
713       jcr->RestoreBootstrap = NULL;
714    }
715    if (jcr->client_uname) {
716       free_pool_memory(jcr->client_uname);
717       jcr->client_uname = NULL;
718    }
719    if (jcr->term_wait_inited) {
720       pthread_cond_destroy(&jcr->term_wait);
721    }
722    jcr->job_end_push.destroy();
723    Dmsg0(200, "End dird free_jcr\n");
724 }
725
726 /*
727  * Set some defaults in the JCR necessary to
728  * run. These items are pulled from the job
729  * definition as defaults, but can be overridden
730  * later either by the Run record in the Schedule resource,
731  * or by the Console program.
732  */
733 void set_jcr_defaults(JCR *jcr, JOB *job)
734 {
735    jcr->job = job;
736    jcr->JobType = job->JobType;
737    switch (jcr->JobType) {
738    case JT_ADMIN:
739    case JT_RESTORE:
740       jcr->JobLevel = L_NONE;
741       break;
742    default:
743       jcr->JobLevel = job->JobLevel;
744       break;
745    }
746    jcr->JobPriority = job->Priority;
747    for (int i=0; i<MAX_STORE; i++) {
748       jcr->storage[i] = job->storage[i];
749    }
750    if (jcr->storage[0]) {
751       jcr->store = (STORE *)jcr->storage[0]->first();
752    }
753    jcr->client = job->client;
754    if (!jcr->client_name) {
755       jcr->client_name = get_pool_memory(PM_NAME);
756    }
757    pm_strcpy(jcr->client_name, jcr->client->hdr.name);
758    jcr->pool = job->pool;
759    jcr->full_pool = job->full_pool;
760    jcr->inc_pool = job->inc_pool;
761    jcr->dif_pool = job->dif_pool;
762    jcr->catalog = job->client->catalog;
763    jcr->fileset = job->fileset;
764    jcr->messages = job->messages; 
765    jcr->spool_data = job->spool_data;
766    if (jcr->RestoreBootstrap) {
767       free(jcr->RestoreBootstrap);
768       jcr->RestoreBootstrap = NULL;
769    }
770    /* This can be overridden by Console program */
771    if (job->RestoreBootstrap) {
772       jcr->RestoreBootstrap = bstrdup(job->RestoreBootstrap);
773    }
774    /* If no default level given, set one */
775    if (jcr->JobLevel == 0) {
776       switch (jcr->JobType) {
777       case JT_VERIFY:
778          jcr->JobLevel = L_VERIFY_CATALOG;
779          break;
780       case JT_BACKUP:
781          jcr->JobLevel = L_INCREMENTAL;
782          break;
783       case JT_RESTORE:
784       case JT_ADMIN:
785          jcr->JobLevel = L_NONE;
786          break;
787       default:
788          break;
789       }
790    }
791 }
792
793 /* 
794  * copy the storage definitions from an old JCR to a new one
795  */
796 void copy_storage(JCR *new_jcr, JCR *old_jcr)  
797 {
798    for (int i=0; i < MAX_STORE; i++) {
799       if (old_jcr->storage[i]) {
800          STORE *st;
801          new_jcr->storage[i] = New(alist(10, not_owned_by_alist));
802          foreach_alist(st, old_jcr->storage[i]) {
803             new_jcr->storage[i]->append(st);
804          }
805       }
806       if (old_jcr->store) {
807          new_jcr->store = old_jcr->store;
808       } else if (new_jcr->storage[0]) {
809          new_jcr->store = (STORE *)new_jcr->storage[0]->first();
810       }
811    }
812 }