]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/run_conf.c
First cut of estimate command
[bacula/bacula] / bacula / src / dird / run_conf.c
1 /*
2  *
3  *  Configuration parser for Director Run Configuration
4  *   directives, which are part of the Schedule Resource
5  *
6  *     Kern Sibbald, May MM
7  *
8  *     Version $Id$
9  */
10 /*
11    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
12
13    This program is free software; you can redistribute it and/or
14    modify it under the terms of the GNU General Public License as
15    published by the Free Software Foundation; either version 2 of
16    the License, or (at your option) any later version.
17
18    This program is distributed in the hope that it will be useful,
19    but WITHOUT ANY WARRANTY; without even the implied warranty of
20    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21    General Public License for more details.
22
23    You should have received a copy of the GNU General Public
24    License along with this program; if not, write to the Free
25    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
26    MA 02111-1307, USA.
27
28  */
29
30 #include "bacula.h"
31 #include "dird.h"
32
33 extern URES res_all;
34 extern struct s_jl joblevels[];
35
36 /* Forward referenced subroutines */
37
38 enum e_state {
39    s_none = 0,
40    s_range,
41    s_mday,
42    s_month,
43    s_time,
44    s_at,
45    s_wday,
46    s_daily,
47    s_weekly,
48    s_monthly,
49    s_hourly,
50    s_wpos,                            /* 1st, 2nd, ...*/
51 };  
52
53 struct s_keyw {
54   char *name;                         /* keyword */
55   enum e_state state;                 /* parser state */
56   int code;                           /* state value */
57 };
58
59 /* Keywords understood by parser */
60 static struct s_keyw keyw[] = {
61   {N_("on"),         s_none,    0},
62   {N_("at"),         s_at,      0},
63
64   {N_("sun"),        s_wday,    0},
65   {N_("mon"),        s_wday,    1},
66   {N_("tue"),        s_wday,    2},
67   {N_("wed"),        s_wday,    3},
68   {N_("thu"),        s_wday,    4},
69   {N_("fri"),        s_wday,    5},
70   {N_("sat"),        s_wday,    6},
71   {N_("jan"),        s_month,   0},
72   {N_("feb"),        s_month,   1},
73   {N_("mar"),        s_month,   2},
74   {N_("apr"),        s_month,   3},
75   {N_("may"),        s_month,   4},
76   {N_("jun"),        s_month,   5},
77   {N_("jul"),        s_month,   6},
78   {N_("aug"),        s_month,   7},
79   {N_("sep"),        s_month,   8},
80   {N_("oct"),        s_month,   9},
81   {N_("nov"),        s_month,  10},
82   {N_("dec"),        s_month,  11},
83
84   {N_("sunday"),     s_wday,    0},
85   {N_("monday"),     s_wday,    1},
86   {N_("tuesday"),    s_wday,    2},
87   {N_("wednesday"),  s_wday,    3},
88   {N_("thursday"),   s_wday,    4},
89   {N_("friday"),     s_wday,    5},
90   {N_("saturday"),   s_wday,    6},
91   {N_("january"),    s_month,   0},
92   {N_("february"),   s_month,   1},
93   {N_("march"),      s_month,   2},
94   {N_("april"),      s_month,   3},
95   {N_("june"),       s_month,   5},
96   {N_("july"),       s_month,   6},
97   {N_("august"),     s_month,   7},
98   {N_("september"),  s_month,   8},
99   {N_("october"),    s_month,   9},
100   {N_("november"),   s_month,  10},
101   {N_("december"),   s_month,  11},
102
103   {N_("daily"),      s_daily,   0},
104   {N_("weekly"),     s_weekly,  0},
105   {N_("monthly"),    s_monthly, 0},
106   {N_("hourly"),     s_hourly,  0},
107
108   {N_("1st"),        s_wpos,    0},
109   {N_("2nd"),        s_wpos,    1},
110   {N_("3rd"),        s_wpos,    2},
111   {N_("4th"),        s_wpos,    3},
112   {N_("5th"),        s_wpos,    4},
113
114   {N_("first"),      s_wpos,    0},
115   {N_("second"),     s_wpos,    1},
116   {N_("third"),      s_wpos,    2},
117   {N_("fourth"),     s_wpos,    3},
118   {N_("fifth"),      s_wpos,    4},
119   {NULL,         s_none,    0}
120 };
121
122 static int have_hour, have_mday, have_wday, have_month, have_wpos;
123 static int have_at;
124 static RUN lrun;
125
126 static void clear_defaults()
127 {
128    have_hour = have_mday = have_wday = have_month = have_wpos = TRUE;
129    clear_bit(0,lrun.hour);
130    clear_bits(0, 30, lrun.mday);
131    clear_bits(0, 6, lrun.wday);
132    clear_bits(0, 11, lrun.month);
133    clear_bits(0, 4, lrun.wpos);
134 }
135
136 static void set_defaults()
137 {
138    have_hour = have_mday = have_wday = have_month = have_wpos = FALSE;
139    have_at = FALSE;
140    set_bit(0,lrun.hour);
141    set_bits(0, 30, lrun.mday);
142    set_bits(0, 6, lrun.wday);
143    set_bits(0, 11, lrun.month);
144    set_bits(0, 4, lrun.wpos);
145 }
146
147
148 /* Check if string is a number */
149 static int is_num(char *num)
150 {
151    char *p = num;
152    int ch;
153    while ((ch = *p++)) {
154       if (ch < '0' || ch > '9') {
155          return FALSE;
156       }
157    }
158    return TRUE;
159 }
160
161 /* Keywords (RHS) permitted in Run records */
162 static struct s_kw RunFields[] = {
163    {"pool",     'P'},
164    {"level",    'L'},
165    {"storage",  'S'},
166    {"messages", 'M'},
167    {NULL,        0}
168 };
169
170 /* 
171  * Store Schedule Run information   
172  * 
173  * Parse Run statement:
174  *
175  *  Run <keyword=value ...> [on] 2 january at 23:45
176  *
177  *   Default Run time is daily at 0:0
178  *  
179  *   There can be multiple run statements, they are simply chained
180  *   together.
181  *
182  */
183 void store_run(LEX *lc, struct res_items *item, int index, int pass)
184 {
185    int i, j, found;
186    int token, state, state2 = 0, code = 0, code2 = 0;
187    int options = lc->options;
188    RUN **run = (RUN **)(item->value);   
189    RUN *trun;
190    char *p;
191    RES *res;
192
193
194    lc->options |= LOPT_NO_IDENT;      /* want only "strings" */
195
196    /* clear local copy of run record */
197    memset(&lrun, 0, sizeof(RUN));
198
199    /* scan for Job level "full", "incremental", ... */
200    for (found=TRUE; found; ) {
201       found = FALSE;
202       token = lex_get_token(lc, T_NAME);
203       for (i=0; RunFields[i].name; i++) {
204          if (strcasecmp(lc->str, RunFields[i].name) == 0) {
205             found = TRUE;
206             if (lex_get_token(lc, T_ALL) != T_EQUALS) {
207                scan_err1(lc, "Expected an equals, got: %s", lc->str);
208                /* NOT REACHED */ 
209             }
210             token = lex_get_token(lc, T_NAME);
211             switch (RunFields[i].token) {
212             case 'L':                 /* level */
213                for (j=0; joblevels[j].level_name; j++) {
214                   if (strcasecmp(lc->str, joblevels[j].level_name) == 0) {
215                      lrun.level = joblevels[j].level;
216                      lrun.job_type = joblevels[j].job_type;
217                      j = 0;
218                      break;
219                   }
220                }
221                if (j != 0) {
222                   scan_err1(lc, _("Job level field: %s not found in run record"), lc->str);
223                   /* NOT REACHED */
224                }
225                break;
226             case 'P':                 /* Pool */
227                if (pass == 2) {
228                   res = GetResWithName(R_POOL, lc->str);
229                   if (res == NULL) {
230                      scan_err1(lc, "Could not find specified Pool Resource: %s",
231                                 lc->str);
232                      /* NOT REACHED */
233                   }
234                   lrun.pool = (POOL *)res;
235                }
236                break;
237             case 'S':                 /* storage */
238                if (pass == 2) {
239                   res = GetResWithName(R_STORAGE, lc->str);
240                   if (res == NULL) {
241                      scan_err1(lc, "Could not find specified Storage Resource: %s",
242                                 lc->str);
243                      /* NOT REACHED */
244                   }
245                   lrun.storage = (STORE *)res;
246                }
247                break;
248             case 'M':                 /* messages */
249                if (pass == 2) {
250                   res = GetResWithName(R_MSGS, lc->str);
251                   if (res == NULL) {
252                      scan_err1(lc, "Could not find specified Messages Resource: %s",
253                                 lc->str);
254                      /* NOT REACHED */
255                   }
256                   lrun.msgs = (MSGS *)res;
257                }
258                break;
259             default:
260                scan_err1(lc, "Expected a keyword name, got: %s", lc->str);
261                /* NOT REACHED */
262                break;
263             } /* end switch */     
264          } /* end if strcasecmp */
265       } /* end for RunFields */
266
267       /* At this point, it is not a keyword. Check for old syle
268        * Job Levels without keyword. This form is depreciated!!!
269        */
270       for (j=0; joblevels[j].level_name; j++) {
271          if (strcasecmp(lc->str, joblevels[j].level_name) == 0) {
272             lrun.level = joblevels[j].level;
273             lrun.job_type = joblevels[j].job_type;
274             found = TRUE;
275             break;
276          }
277       }
278    } /* end for found */
279
280
281    /*
282     * Scan schedule times.
283     * Default is: daily at 0:0
284     */
285    state = s_none;
286    set_defaults();
287
288    for ( ; token != T_EOL; (token = lex_get_token(lc, T_ALL))) {
289       int len, pm = 0;
290       switch (token) {
291          case T_NUMBER:
292             state = s_mday;
293             code = atoi(lc->str) - 1;
294             if (code < 0 || code > 30) {
295                scan_err0(lc, _("Day number out of range (1-31)"));
296             }
297             break;
298          case T_NAME:                 /* this handles drop through from keyword */
299          case T_UNQUOTED_STRING:
300             if (strchr(lc->str, (int)'-')) {
301                state = s_range;
302                break;
303             }
304             if (strchr(lc->str, (int)':')) {
305                state = s_time;
306                break;
307             }
308             /* everything else must be a keyword */
309             for (i=0; keyw[i].name; i++) {
310                if (strcasecmp(lc->str, keyw[i].name) == 0) {
311                   state = keyw[i].state;
312                   code   = keyw[i].code;
313                   i = 0;
314                   break;
315                }
316             }
317             if (i != 0) {
318                scan_err1(lc, _("Job type field: %s in run record not found"), lc->str);
319                /* NOT REACHED */
320             }
321             break;
322          case T_COMMA:
323             continue;
324          default:
325             scan_err2(lc, _("Unexpected token: %d:%s"), token, lc->str);
326             /* NOT REACHED */
327             break;
328       }
329       switch (state) {
330          case s_none:
331             continue;
332          case s_mday:                 /* day of month */
333             if (!have_mday) {
334                clear_bits(0, 30, lrun.mday);
335                clear_bits(0, 6, lrun.wday);
336                have_mday = TRUE;
337             }
338             set_bit(code, lrun.mday);
339             break;
340          case s_month:                /* month of year */
341             if (!have_month) {
342                clear_bits(0, 11, lrun.month);
343                have_month = TRUE;
344             }
345             set_bit(code, lrun.month);
346             break;
347          case s_wday:                 /* week day */
348             if (!have_wday) {
349                clear_bits(0, 6, lrun.wday);
350                clear_bits(0, 30, lrun.mday);
351                have_wday = TRUE;
352             }
353             set_bit(code, lrun.wday);
354             break;
355          case s_wpos:                 /* Week position 1st, ... */
356             if (!have_wpos) {
357                clear_bits(0, 4, lrun.wpos);
358                have_wpos = TRUE;
359             }
360             set_bit(code, lrun.wpos);
361             break;
362          case s_time:                 /* time */
363             if (!have_at) {
364                scan_err0(lc, _("Time must be preceded by keyword AT."));
365                /* NOT REACHED */
366             }
367             if (!have_hour) {
368                clear_bit(0, lrun.hour);
369             }
370             p = strchr(lc->str, ':');
371             if (!p)  {
372                scan_err0(lc, _("Time logic error.\n"));
373                /* NOT REACHED */
374             }
375             *p++ = 0;                 /* separate two halves */
376             code = atoi(lc->str);
377             len = strlen(p);
378             if (len > 2 && p[len-1] == 'm') {
379                if (p[len-2] == 'a') {
380                   pm = 0;
381                } else if (p[len-2] == 'p') {
382                   pm = 1;
383                } else {
384                   scan_err0(lc, _("Bad time specification."));
385                   /* NOT REACHED */
386                }
387             } else {
388                pm = 0;
389             }
390             code2 = atoi(p);
391             if (pm) {
392                code += 12;
393             }
394             if (code < 0 || code > 23 || code2 < 0 || code2 > 59) {
395                scan_err0(lc, _("Bad time specification."));
396                /* NOT REACHED */
397             }
398             set_bit(code, lrun.hour);
399             lrun.minute = code2;
400             have_hour = TRUE;
401             break;
402          case s_at:
403             have_at = TRUE;
404             break;
405          case s_range:
406             p = strchr(lc->str, '-');
407             if (!p) {
408                scan_err0(lc, _("Range logic error.\n"));
409             }
410             *p++ = 0;                 /* separate two halves */
411
412             /* Check for day range */
413             if (is_num(lc->str) && is_num(p)) {
414                code = atoi(lc->str) - 1;
415                code2 = atoi(p) - 1;
416                if (code < 0 || code > 30 || code2 < 0 || code2 > 30) {
417                   scan_err0(lc, _("Bad day range specification."));
418                }
419                if (!have_mday) {
420                   clear_bits(0, 30, lrun.mday);
421                   clear_bits(0, 6, lrun.wday);
422                   have_mday = TRUE;
423                }
424                if (code < code2) {
425                   set_bits(code, code2, lrun.mday);
426                } else {
427                   set_bits(code, 30, lrun.mday);
428                   set_bits(0, code2, lrun.mday);
429                }
430                break;
431             }
432
433             /* lookup first half of keyword range (week days or months) */
434             lcase(lc->str);
435             for (i=0; keyw[i].name; i++) {
436                if (strcmp(lc->str, keyw[i].name) == 0) {
437                   state = keyw[i].state;
438                   code   = keyw[i].code;
439                   i = 0;
440                   break;
441                }
442             }
443             if (i != 0 || (state != s_month && state != s_wday && state != s_wpos)) {
444                scan_err0(lc, _("Invalid month, week or position day range"));
445                /* NOT REACHED */
446             }
447
448             /* Lookup end of range */
449             lcase(p);
450             for (i=0; keyw[i].name; i++) {
451                if (strcmp(p, keyw[i].name) == 0) {
452                   state2  = keyw[i].state;
453                   code2   = keyw[i].code;
454                   i = 0;
455                   break;
456                }
457             }
458             if (i != 0 || state != state2 || code == code2) {
459                scan_err0(lc, _("Invalid month, weekday or position range"));
460                /* NOT REACHED */
461             }
462             if (state == s_wday) {
463                if (!have_wday) {
464                   clear_bits(0, 6, lrun.wday);
465                   clear_bits(0, 30, lrun.mday);
466                   have_wday = TRUE;
467                }
468                if (code < code2) {
469                   set_bits(code, code2, lrun.wday);
470                } else {
471                   set_bits(code, 6, lrun.wday);
472                   set_bits(0, code2, lrun.wday);
473                }
474             } else if (state == s_month) {
475                if (!have_month) {
476                   clear_bits(0, 30, lrun.month);
477                   have_month = TRUE;
478                }
479                if (code < code2) {
480                   set_bits(code, code2, lrun.month);
481                } else {
482                   /* this is a bit odd, but we accept it anyway */
483                   set_bits(code, 30, lrun.month);
484                   set_bits(0, code2, lrun.month);
485                }
486             } else {
487                /* Must be position */
488                if (!have_wpos) {
489                   clear_bits(0, 4, lrun.wpos);
490                   have_wpos = TRUE;
491                }
492                if (code < code2) {
493                   set_bits(code, code2, lrun.wpos);
494                } else {
495                   set_bits(code, 4, lrun.wpos);
496                   set_bits(0, code2, lrun.wpos);
497                }
498             }                      
499             break;
500          case s_hourly:
501             clear_defaults();
502             set_bits(0, 23, lrun.hour);
503             set_bits(0, 30, lrun.mday);
504             set_bits(0, 11, lrun.month);
505             set_bits(0, 4, lrun.wpos);
506             break;
507          case s_weekly:
508             clear_defaults();
509             set_bit(0, lrun.wday);
510             set_bits(0, 11, lrun.month);
511             set_bits(0, 4, lrun.wpos);
512             break;
513          case s_daily:
514             clear_defaults();
515             set_bits(0, 30, lrun.mday);
516             set_bits(0, 11, lrun.month);
517             set_bits(0, 4,  lrun.wpos);
518             break;
519          case s_monthly:
520             clear_defaults();
521             set_bits(0, 11, lrun.month);
522             set_bits(0, 4,  lrun.wpos);
523             break;
524          default:
525             scan_err0(lc, _("Unexpected run state\n"));
526             /* NOT REACHED */
527             break;
528       }
529    }
530
531    /* Allocate run record, copy new stuff into it,
532     * and link it into the list of run records 
533     * in the schedule resource.
534     */
535    if (pass == 2) {
536       trun = (RUN *)malloc(sizeof(RUN));
537       memcpy(trun, &lrun, sizeof(RUN));
538       if (*run) {
539          trun->next = *run;
540       }
541       *run = trun;
542    }
543
544    lc->options = options;             /* restore scanner options */
545    set_bit(index, res_all.res_sch.hdr.item_present);
546 }