]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/dird_conf.h
Patch to add MySQL ssl access
[bacula/bacula] / bacula / src / dird / dird_conf.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2015 Kern Sibbald
5    Copyright (C) 2000-2014 Free Software Foundation Europe e.V.
6
7    The original author of Bacula is Kern Sibbald, with contributions
8    from many others, a complete list can be found in the file AUTHORS.
9
10    You may use this file and others of this release according to the
11    license defined in the LICENSE file, which includes the Affero General
12    Public License, v3.0 ("AGPLv3") and some additional permissions and
13    terms pursuant to its AGPLv3 Section 7.
14
15    This notice must be preserved when any source code is 
16    conveyed and/or propagated.
17
18    Bacula(R) is a registered trademark of Kern Sibbald.
19 */
20 /*
21  * Director specific configuration and defines
22  *
23  *     Kern Sibbald, Feb MM
24  *
25  */
26
27 /* NOTE:  #includes at the end of this file */
28
29 /*
30  * Resource codes -- they must be sequential for indexing
31  */
32 enum {
33    R_DIRECTOR = 1001,
34    R_CLIENT,
35    R_JOB,
36    R_STORAGE,
37    R_CATALOG,
38    R_SCHEDULE,
39    R_FILESET,
40    R_POOL,
41    R_MSGS,
42    R_COUNTER,
43    R_CONSOLE,
44    R_JOBDEFS,
45    R_DEVICE,       /* This is the real last device class */
46
47    R_FIRST = R_DIRECTOR,
48    R_LAST  = R_DEVICE                 /* keep this updated */
49 };
50
51
52 /*
53  * Some resource attributes
54  */
55 enum {
56    R_NAME = 1020,
57    R_ADDRESS,
58    R_PASSWORD,
59    R_TYPE,
60    R_BACKUP
61 };
62
63 /* Options for FileSet keywords */
64 struct s_fs_opt {
65    const char *name;
66    int keyword;
67    const char *option;
68 };
69
70 /* Job Level keyword structure */
71 struct s_jl {
72    const char *level_name;                 /* level keyword */
73    int32_t  level;                         /* level */
74    int32_t  job_type;                      /* JobType permitting this level */
75 };
76
77 /* Job Type keyword structure */
78 struct s_jt {
79    const char *type_name;
80    int32_t job_type;
81 };
82
83 /* Definition of the contents of each Resource */
84 /* Needed for forward references */
85 class SCHED;
86 class CLIENT;
87 class FILESET;
88 class POOL;
89 class RUN;
90 class DEVICE;
91 class RUNSCRIPT;
92
93 /*
94  *   Director Resource
95  *
96  */
97 class DIRRES {
98 public:
99    RES   hdr;
100    dlist *DIRaddrs;
101    dlist *DIRsrc_addr;                /* address to source connections from */
102    char *password;                    /* Password for UA access */
103    char *query_file;                  /* SQL query file */
104    char *working_directory;           /* WorkingDirectory */
105    const char *scripts_directory;     /* ScriptsDirectory */
106    const char *plugin_directory;      /* Plugin Directory */
107    char *pid_directory;               /* PidDirectory */
108    char *subsys_directory;            /* SubsysDirectory */
109    MSGS *messages;                    /* Daemon message handler */
110    uint32_t MaxConcurrentJobs;        /* Max concurrent jobs for whole director */
111    uint32_t MaxSpawnedJobs;           /* Max Jobs that can be started by Migration/Copy */
112    uint32_t MaxConsoleConnect;        /* Max concurrent console session */
113    uint32_t MaxReload;                /* Maximum reload requests */
114    utime_t FDConnectTimeout;          /* timeout for connect in seconds */
115    utime_t SDConnectTimeout;          /* timeout in seconds */
116    utime_t heartbeat_interval;        /* Interval to send heartbeats */
117    char *tls_ca_certfile;             /* TLS CA Certificate File */
118    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
119    char *tls_certfile;                /* TLS Server Certificate File */
120    char *tls_keyfile;                 /* TLS Server Key File */
121    char *tls_dhfile;                  /* TLS Diffie-Hellman Parameters */
122    alist *tls_allowed_cns;            /* TLS Allowed Clients */
123    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
124    utime_t stats_retention;           /* Stats retention period in seconds */
125    bool tls_authenticate;             /* Authenticated with TLS */
126    bool tls_enable;                   /* Enable TLS */
127    bool tls_require;                  /* Require TLS */
128    bool tls_verify_peer;              /* TLS Verify Client Certificate */
129    char *verid;                       /* Custom Id to print in version command */
130    /* Methods */
131    char *name() const;
132 };
133
134 inline char *DIRRES::name() const { return hdr.name; }
135
136 /*
137  * Device Resource
138  *  This resource is a bit different from the other resources
139  *  because it is not defined in the Director
140  *  by DEVICE { ... }, but rather by a "reference" such as
141  *  DEVICE = xxx; Then when the Director connects to the
142  *  SD, it requests the information about the device.
143  */
144 class DEVICE {
145 public:
146    RES hdr;
147
148    bool found;                        /* found with SD */
149    int32_t num_writers;               /* number of writers */
150    int32_t max_writers;               /* = 1 for files */
151    int32_t reserved;                  /* number of reserves */
152    int32_t num_drives;                /* for autochanger */
153    bool autochanger;                  /* set if device is autochanger */
154    bool open;                         /* drive open */
155    bool append;                       /* in append mode */
156    bool read;                         /* in read mode */
157    bool labeled;                      /* Volume name valid */
158    bool offline;                      /* not available */
159    bool autoselect;                   /* can be selected via autochanger */
160    uint32_t PoolId;
161    char ChangerName[MAX_NAME_LENGTH];
162    char VolumeName[MAX_NAME_LENGTH];
163    char MediaType[MAX_NAME_LENGTH];
164
165    /* Methods */
166    char *name() const;
167 };
168
169 inline char *DEVICE::name() const { return hdr.name; }
170
171 /*
172  * Console ACL positions
173  */
174 enum {
175    Job_ACL = 0,
176    Client_ACL,
177    Storage_ACL,
178    Schedule_ACL,
179    Run_ACL,
180    Pool_ACL,
181    Command_ACL,
182    FileSet_ACL,
183    Catalog_ACL,
184    Where_ACL,
185    PluginOptions_ACL,
186    Num_ACL                            /* keep last */
187 };
188
189 /*
190  *    Console Resource
191  */
192 class CONRES {
193 public:
194    RES   hdr;
195    char *password;                    /* UA server password */
196    alist *ACL_lists[Num_ACL];         /* pointers to ACLs */
197    char *tls_ca_certfile;             /* TLS CA Certificate File */
198    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
199    char *tls_certfile;                /* TLS Server Certificate File */
200    char *tls_keyfile;                 /* TLS Server Key File */
201    char *tls_dhfile;                  /* TLS Diffie-Hellman Parameters */
202    alist *tls_allowed_cns;            /* TLS Allowed Clients */
203    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
204    bool tls_authenticate;             /* Authenticated with TLS */
205    bool tls_enable;                   /* Enable TLS */
206    bool tls_require;                  /* Require TLS */
207    bool tls_verify_peer;              /* TLS Verify Client Certificate */
208
209    /* Methods */
210    char *name() const;
211 };
212
213 inline char *CONRES::name() const { return hdr.name; }
214
215
216 /*
217  *   Catalog Resource
218  *
219  */
220 class CAT {
221 public:
222    RES   hdr;
223
224    uint32_t db_port;                  /* Port */
225    char *db_address;                  /* host name for remote access */
226    char *db_socket;                   /* Socket for local access */
227    char *db_password;
228    char *db_user;
229    char *db_name;
230    char *db_driver;                   /* Select appropriate driver */
231    char *db_ssl_key;                  /* the path name to the key file */
232    char *db_ssl_cert;                 /* the path name to the certificate file */
233    char *db_ssl_ca;                   /* the path name to the certificate authority file */
234    char *db_ssl_capath;               /* the path name to a directory that contains trusted SSL CA certificates in PEM format */
235    char *db_ssl_cipher;               /* a list of permissible ciphers to use for SSL encryption */
236    uint32_t mult_db_connections;      /* set for multiple db connections */
237    bool disable_batch_insert;         /* set to disable batch inserts */
238
239    /* Methods */
240    char *name() const;
241    char *display(POOLMEM *dst);       /* Get catalog information */
242 };
243
244 inline char *CAT::name() const { return hdr.name; }
245
246
247 /*
248  *   Client Resource
249  *
250  */
251 class CLIENT {
252 public:
253    RES   hdr;
254
255    uint32_t FDport;                   /* Where File daemon listens */
256    utime_t FileRetention;             /* file retention period in seconds */
257    utime_t JobRetention;              /* job retention period in seconds */
258    utime_t SnapRetention;             /* Snapshot retention period in seconds */
259    utime_t heartbeat_interval;        /* Interval to send heartbeats */
260    char *address;
261    char *fd_storage_address;          /* Storage address to use from FD side  */
262    char *password;
263    CAT *catalog;                      /* Catalog resource */
264    int32_t MaxConcurrentJobs;         /* Maximum concurrent jobs */
265    int32_t NumConcurrentJobs;         /* number of concurrent jobs running */
266    char *tls_ca_certfile;             /* TLS CA Certificate File */
267    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
268    char *tls_certfile;                /* TLS Client Certificate File */
269    char *tls_keyfile;                 /* TLS Client Key File */
270    alist *tls_allowed_cns;            /* TLS Allowed Clients */
271    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
272    bool tls_authenticate;             /* Authenticated with TLS */
273    bool tls_enable;                   /* Enable TLS */
274    bool tls_require;                  /* Require TLS */
275    bool enabled;                      /* Set if client enabled */
276    bool AutoPrune;                    /* Do automatic pruning? */
277    bool sd_calls_client;              /* SD calls the client */
278    int64_t max_bandwidth;             /* Limit speed on this client */
279
280    /* Methods */
281    char *name() const;
282 };
283
284 inline char *CLIENT::name() const { return hdr.name; }
285
286
287 /*
288  *   Store Resource
289  *
290  */
291 class STORE {
292 public:
293    RES   hdr;
294
295    uint32_t SDport;                   /* port where Directors connect */
296    uint32_t SDDport;                  /* data port for File daemon */
297    char *address;
298    char *fd_storage_address;          /* Storage address to use from FD side  */
299    char *password;
300    char *media_type;
301    alist *device;                     /* Alternate devices for this Storage */
302    int32_t MaxConcurrentJobs;         /* Maximum concurrent jobs */
303    int32_t MaxConcurrentReadJobs;     /* Maximum concurrent jobs reading */
304    int32_t NumConcurrentJobs;         /* number of concurrent jobs running */
305    int32_t NumConcurrentReadJobs;     /* number of jobs reading */
306    char *tls_ca_certfile;             /* TLS CA Certificate File */
307    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
308    char *tls_certfile;                /* TLS Client Certificate File */
309    char *tls_keyfile;                 /* TLS Client Key File */
310    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
311    bool tls_authenticate;             /* Authenticated with TLS */
312    bool tls_enable;                   /* Enable TLS */
313    bool tls_require;                  /* Require TLS */
314    bool enabled;                      /* Set if device is enabled */
315    bool AllowCompress;                /* set if this Storage should allow jobs to enable compression */
316    bool autochanger;                  /* set if we are part of an autochanger */
317    int64_t StorageId;                 /* Set from Storage DB record */
318    utime_t heartbeat_interval;        /* Interval to send heartbeats */
319    uint32_t drives;                   /* number of drives in autochanger */
320
321    /* Methods */
322    char *dev_name() const;
323    char *name() const;
324 };
325
326 inline char *STORE::dev_name() const
327 {
328    DEVICE *dev = (DEVICE *)device->first();
329    return dev->name();
330 }
331
332 inline char *STORE::name() const { return hdr.name; }
333
334 /*
335  * This is a sort of "unified" store that has both the
336  *  storage pointer and the text of where the pointer was
337  *  found.
338  */
339 class USTORE {
340 public:
341    STORE *store;
342    POOLMEM *store_source;
343
344    /* Methods */
345    USTORE() { store = NULL; store_source = get_pool_memory(PM_MESSAGE);
346               *store_source = 0; };
347    ~USTORE() { destroy(); }
348    void set_source(const char *where);
349    void destroy();
350 };
351
352 inline void USTORE::destroy()
353 {
354    if (store_source) {
355       free_pool_memory(store_source);
356       store_source = NULL;
357    }
358 }
359
360
361 inline void USTORE::set_source(const char *where)
362 {
363    if (!store_source) {
364       store_source = get_pool_memory(PM_MESSAGE);
365    }
366    pm_strcpy(store_source, where);
367 }
368
369
370 /*
371  *   Job Resource
372  */
373 class JOB {
374 public:
375    RES   hdr;
376
377    uint32_t JobType;                  /* job type (backup, verify, restore */
378    uint32_t JobLevel;                 /* default backup/verify level */
379    uint32_t RestoreJobId;             /* What -- JobId to restore */
380    uint32_t replace;                  /* How (overwrite, ..) */
381    uint32_t selection_type;
382
383    int32_t  Priority;                 /* Job priority */
384    int32_t  RescheduleTimes;          /* Number of times to reschedule job */
385
386    char *RestoreWhere;                /* Where on disk to restore -- directory */
387    char *RegexWhere;                  /* RegexWhere option */
388    char *strip_prefix;                /* remove prefix from filename  */
389    char *add_prefix;                  /* add prefix to filename  */
390    char *add_suffix;                  /* add suffix to filename -- .old */
391    char *RestoreBootstrap;            /* Bootstrap file */
392    char *PluginOptions;               /* Options to pass to plugin */
393    union {
394       char *WriteBootstrap;           /* Where to write bootstrap Job updates */
395       char *WriteVerifyList;          /* List of changed files */
396    };
397    utime_t MaxRunTime;                /* max run time in seconds */
398    utime_t MaxWaitTime;               /* max blocking time in seconds */
399    utime_t FullMaxRunTime;            /* Max Full job run time */
400    utime_t DiffMaxRunTime;            /* Max Differential job run time */
401    utime_t IncMaxRunTime;             /* Max Incremental job run time */
402    utime_t MaxStartDelay;             /* max start delay in seconds */
403    utime_t MaxRunSchedTime;           /* max run time in seconds from Scheduled time*/
404    utime_t RescheduleInterval;        /* Reschedule interval */
405    utime_t MaxFullInterval;           /* Maximum time interval between Fulls */
406    utime_t MaxDiffInterval;           /* Maximum time interval between Diffs */
407    utime_t DuplicateJobProximity;     /* Permitted time between duplicicates */
408    utime_t SnapRetention;             /* Snapshot retention period in seconds */
409    int64_t spool_size;                /* Size of spool file for this job */
410    int32_t MaxConcurrentJobs;         /* Maximum concurrent jobs */
411    int32_t NumConcurrentJobs;         /* number of concurrent jobs running */
412    uint32_t MaxSpawnedJobs;           /* Max Jobs that can be started by Migration/Copy */
413    bool allow_mixed_priority;         /* Allow jobs with higher priority concurrently with this */
414
415    MSGS      *messages;               /* How and where to send messages */
416    SCHED     *schedule;               /* When -- Automatic schedule */
417    CLIENT    *client;                 /* Who to backup */
418    FILESET   *fileset;                /* What to backup -- Fileset */
419    alist     *storage;                /* Where is device -- list of Storage to be used */
420    POOL      *pool;                   /* Where is media -- Media Pool */
421    POOL      *next_pool;              /* Next Pool for Copy/Migrate/VirtualFull */
422    POOL      *full_pool;              /* Pool for Full backups */
423    POOL      *inc_pool;               /* Pool for Incremental backups */
424    POOL      *diff_pool;              /* Pool for Differental backups */
425    char      *selection_pattern;
426    union {
427       JOB    *verify_job;             /* Job name to verify */
428    };
429    JOB       *jobdefs;                /* Job defaults */
430    alist     *run_cmds;               /* Run commands */
431    alist *RunScripts;                 /* Run {client} program {after|before} Job */
432
433    bool where_use_regexp;             /* true if RestoreWhere is a BREGEXP */
434    bool RescheduleOnError;            /* Set to reschedule on error */
435    bool RescheduleIncompleteJobs;     /* Set to reschedule incomplete Jobs */
436    bool PrefixLinks;                  /* prefix soft links with Where path */
437    bool PruneJobs;                    /* Force pruning of Jobs */
438    bool PruneFiles;                   /* Force pruning of Files */
439    bool PruneVolumes;                 /* Force pruning of Volumes */
440    bool SpoolAttributes;              /* Set to spool attributes in SD */
441    bool spool_data;                   /* Set to spool data in SD */
442    bool rerun_failed_levels;          /* Upgrade to rerun failed levels */
443    bool PreferMountedVolumes;         /* Prefer vols mounted rather than new one */
444    bool write_part_after_job;         /* Set to write part after job in SD */
445    bool enabled;                      /* Set if job enabled */
446    bool accurate;                     /* Set if it is an accurate backup job */
447    bool AllowDuplicateJobs;           /* Allow duplicate jobs */
448    bool AllowHigherDuplicates;        /* Permit Higher Level */
449    bool CancelLowerLevelDuplicates;   /* Cancel lower level backup jobs */
450    bool CancelQueuedDuplicates;       /* Cancel queued jobs */
451    bool CancelRunningDuplicates;      /* Cancel Running jobs */
452    bool PurgeMigrateJob;              /* Purges source job on completion */
453    bool IgnoreDuplicateJobChecking;   /* Set to ignore Duplicate Job Checking */
454
455    alist *base;                       /* Base jobs */
456    int64_t max_bandwidth;             /* Speed limit on this job */
457
458    /* Methods */
459    char *name() const;
460 };
461
462 inline char *JOB::name() const { return hdr.name; }
463
464 /* Define FileSet Options keyword values */
465 enum {
466    INC_KW_NONE,
467    INC_KW_COMPRESSION,
468    INC_KW_DIGEST,
469    INC_KW_ENCRYPTION,
470    INC_KW_VERIFY,
471    INC_KW_BASEJOB,
472    INC_KW_ACCURATE,
473    INC_KW_ONEFS,
474    INC_KW_RECURSE,
475    INC_KW_SPARSE,
476    INC_KW_HARDLINK,
477    INC_KW_REPLACE,               /* restore options */
478    INC_KW_READFIFO,              /* Causes fifo data to be read */
479    INC_KW_PORTABLE,
480    INC_KW_MTIMEONLY,
481    INC_KW_KEEPATIME,
482    INC_KW_EXCLUDE,
483    INC_KW_ACL,
484    INC_KW_IGNORECASE,
485    INC_KW_HFSPLUS,
486    INC_KW_NOATIME,
487    INC_KW_ENHANCEDWILD,
488    INC_KW_CHKCHANGES,
489    INC_KW_STRIPPATH,
490    INC_KW_HONOR_NODUMP,
491    INC_KW_XATTR,
492    INC_KW_MAX                   /* Keep this last */
493 };
494
495
496 #undef  MAX_FOPTS
497 #define MAX_FOPTS 50
498
499 /* File options structure */
500 struct FOPTS {
501    char opts[MAX_FOPTS];              /* options string */
502    alist regex;                       /* regex string(s) */
503    alist regexdir;                    /* regex string(s) for directories */
504    alist regexfile;                   /* regex string(s) for files */
505    alist wild;                        /* wild card strings */
506    alist wilddir;                     /* wild card strings for directories */
507    alist wildfile;                    /* wild card strings for files */
508    alist wildbase;                    /* wild card strings for files without '/' */
509    alist base;                        /* list of base names */
510    alist fstype;                      /* file system type limitation */
511    alist drivetype;                   /* drive type limitation */
512    char *reader;                      /* reader program */
513    char *writer;                      /* writer program */
514    char *plugin;                      /* plugin program */
515 };
516
517
518 /* This is either an include item or an exclude item */
519 struct INCEXE {
520    char  opt_present[INC_KW_MAX+1]; /* set if option is present in conf file */
521    FOPTS *current_opts;               /* points to current options structure */
522    FOPTS **opts_list;                 /* options list */
523    int32_t num_opts;                  /* number of options items */
524    alist name_list;                   /* filename list -- holds char * */
525    alist plugin_list;                 /* filename list for plugins */
526    char *ignoredir;                   /* ignoredir string */
527 };
528
529 /*
530  *   FileSet Resource
531  *
532  */
533 class FILESET {
534 public:
535    RES   hdr;
536
537    bool new_include;                  /* Set if new include used */
538    INCEXE **include_items;            /* array of incexe structures */
539    int32_t num_includes;              /* number in array */
540    INCEXE **exclude_items;
541    int32_t num_excludes;
542    bool have_MD5;                     /* set if MD5 initialized */
543    struct MD5Context md5c;            /* MD5 of include/exclude */
544    char MD5[30];                      /* base 64 representation of MD5 */
545    bool ignore_fs_changes;            /* Don't force Full if FS changed */
546    bool enable_vss;                   /* Enable Volume Shadow Copy */
547    bool enable_snapshot;              /* Enable Snapshot */
548
549    /* Methods */
550    char *name() const;
551 };
552
553 inline char *FILESET::name() const { return hdr.name; }
554
555 /*
556  *   Schedule Resource
557  *
558  */
559 class SCHED {
560 public:
561    RES   hdr;
562
563    RUN *run;
564    bool enabled;                      /* set if enabled */
565    /* Methods */
566    char *name() const;
567 };
568
569 inline char *SCHED::name() const { return hdr.name; }
570
571 /*
572  *   Counter Resource
573  */
574 class COUNTER {
575 public:
576    RES   hdr;
577
578    int32_t  MinValue;                 /* Minimum value */
579    int32_t  MaxValue;                 /* Maximum value */
580    int32_t  CurrentValue;             /* Current value */
581    COUNTER *WrapCounter;              /* Wrap counter name */
582    CAT     *Catalog;                  /* Where to store */
583    bool     created;                  /* Created in DB */
584    /* Methods */
585    char *name() const;
586 };
587
588 inline char *COUNTER::name() const { return hdr.name; }
589
590 /*
591  *   Pool Resource
592  *
593  */
594 class POOL {
595 public:
596    RES   hdr;
597
598    char *pool_type;                   /* Pool type */
599    char *label_format;                /* Label format string */
600    char *cleaning_prefix;             /* Cleaning label prefix */
601    int32_t LabelType;                 /* Bacula/ANSI/IBM label type */
602    uint32_t max_volumes;              /* max number of volumes */
603    utime_t VolRetention;              /* volume retention period in seconds */
604    utime_t VolUseDuration;            /* duration volume can be used */
605    uint32_t MaxVolJobs;               /* Maximum jobs on the Volume */
606    uint32_t MaxVolFiles;              /* Maximum files on the Volume */
607    uint64_t MaxVolBytes;              /* Maximum bytes on the Volume */
608    utime_t MigrationTime;             /* Time to migrate to next pool */
609    uint64_t MigrationHighBytes;       /* When migration starts */
610    uint64_t MigrationLowBytes;        /* When migration stops */
611    POOL  *NextPool;                   /* Next pool for migration */
612    alist *storage;                    /* Where is device -- list of Storage to be used */
613    bool  use_catalog;                 /* maintain catalog for media */
614    bool  catalog_files;               /* maintain file entries in catalog */
615    bool  use_volume_once;             /* write on volume only once */
616    bool  purge_oldest_volume;         /* purge oldest volume */
617    bool  recycle_oldest_volume;       /* attempt to recycle oldest volume */
618    bool  recycle_current_volume;      /* attempt recycle of current volume */
619    bool  AutoPrune;                   /* default for pool auto prune */
620    bool  Recycle;                     /* default for media recycle yes/no */
621    uint32_t action_on_purge;          /* action on purge, e.g. truncate the disk volume */
622    POOL  *RecyclePool;                /* RecyclePool destination when media is purged */
623    POOL  *ScratchPool;                /* ScratchPool source when requesting media */
624    alist *CopyPool;                   /* List of copy pools */
625    CAT *catalog;                      /* Catalog to be used */
626    utime_t FileRetention;             /* file retention period in seconds */
627    utime_t JobRetention;              /* job retention period in seconds */
628
629    /* Methods */
630    char *name() const;
631 };
632
633 inline char *POOL::name() const { return hdr.name; }
634
635
636 /* Define the Union of all the above
637  * resource structure definitions.
638  */
639 union URES {
640    DIRRES     res_dir;
641    CONRES     res_con;
642    CLIENT     res_client;
643    STORE      res_store;
644    CAT        res_cat;
645    JOB        res_job;
646    FILESET    res_fs;
647    SCHED      res_sch;
648    POOL       res_pool;
649    MSGS       res_msgs;
650    COUNTER    res_counter;
651    DEVICE     res_dev;
652    RES        hdr;
653    RUNSCRIPT  res_runscript;
654 };
655
656
657
658 /* Run structure contained in Schedule Resource */
659 class RUN {
660 public:
661    RUN *next;                         /* points to next run record */
662    uint32_t level;                    /* level override */
663    int32_t Priority;                  /* priority override */
664    uint32_t job_type;
665    utime_t MaxRunSchedTime;           /* max run time in sec from Sched time */
666    bool MaxRunSchedTime_set;          /* MaxRunSchedTime given */
667    bool spool_data;                   /* Data spooling override */
668    bool spool_data_set;               /* Data spooling override given */
669    bool accurate;                     /* accurate */
670    bool accurate_set;                 /* accurate given */
671    bool write_part_after_job;         /* Write part after job override */
672    bool write_part_after_job_set;     /* Write part after job override given */
673    bool priority_set;                 /* priority override given */
674    bool level_set;                    /* level override given */
675
676    POOL *pool;                        /* Pool override */
677    POOL *next_pool;                   /* Next pool override */
678    POOL *full_pool;                   /* Pool override */
679    POOL *inc_pool;                    /* Pool override */
680    POOL *diff_pool;                   /* Pool override */
681    STORE *storage;                    /* Storage override */
682    MSGS *msgs;                        /* Messages override */
683    char *since;
684    uint32_t level_no;
685    uint32_t minute;                   /* minute to run job */
686    time_t last_run;                   /* last time run */
687    time_t next_run;                   /* next time to run */
688    bool last_day_set;                 /* set if last_day is used */
689    char hour[nbytes_for_bits(24)];    /* bit set for each hour */
690    char mday[nbytes_for_bits(32)];    /* bit set for each day of month */
691    char month[nbytes_for_bits(12)];   /* bit set for each month */
692    char wday[nbytes_for_bits(7)];     /* bit set for each day of the week */
693    char wom[nbytes_for_bits(6)];      /* week of month */
694    char woy[nbytes_for_bits(54)];     /* week of year */
695 };
696
697 #define GetPoolResWithName(x) ((POOL *)GetResWithName(R_POOL, (x)))
698 #define GetStoreResWithName(x) ((STORE *)GetResWithName(R_STORAGE, (x)))
699 #define GetClientResWithName(x) ((CLIENT *)GetResWithName(R_CLIENT, (x)))
700 #define GetJobResWithName(x) ((JOB *)GetResWithName(R_JOB, (x)))
701 #define GetFileSetResWithName(x) ((FILESET *)GetResWithName(R_FILESET, (x)))
702 #define GetCatalogResWithName(x) ((CAT *)GetResWithName(R_CATALOG, (x)))
703
704 /* Imported subroutines */
705 void store_jobtype(LEX *lc, RES_ITEM *item, int index, int pass);
706 void store_level(LEX *lc, RES_ITEM *item, int index, int pass);
707 void store_replace(LEX *lc, RES_ITEM *item, int index, int pass);
708 void store_migtype(LEX *lc, RES_ITEM *item, int index, int pass);
709 void store_acl(LEX *lc, RES_ITEM *item, int index, int pass);
710 void store_ac_res(LEX *lc, RES_ITEM *item, int index, int pass);
711 void store_actiononpurge(LEX *lc, RES_ITEM *item, int index, int pass);
712 void store_inc(LEX *lc, RES_ITEM *item, int index, int pass);
713 void store_regex(LEX *lc, RES_ITEM *item, int index, int pass);
714 void store_wild(LEX *lc, RES_ITEM *item, int index, int pass);
715 void store_fstype(LEX *lc, RES_ITEM *item, int index, int pass);
716 void store_drivetype(LEX *lc, RES_ITEM *item, int index, int pass);
717 void store_opts(LEX *lc, RES_ITEM *item, int index, int pass);
718 void store_lopts(LEX *lc, RES_ITEM *item, int index, int pass);
719 void store_base(LEX *lc, RES_ITEM *item, int index, int pass);
720 void store_plugin(LEX *lc, RES_ITEM *item, int index, int pass);
721 void store_run(LEX *lc, RES_ITEM *item, int index, int pass);
722 void store_runscript(LEX *lc, RES_ITEM *item, int index, int pass);