]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/dird_conf.h
- Make clean remove old CVS files
[bacula/bacula] / bacula / src / dird / dird_conf.h
1 /*
2  * Director specific configuration and defines
3  *
4  *     Kern Sibbald, Feb MM
5  *
6  *    Version $Id$
7  */
8 /*
9    Copyright (C) 2000-2005 Kern Sibbald
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28 /* NOTE:  #includes at the end of this file */
29
30 /*
31  * Resource codes -- they must be sequential for indexing
32  */
33 enum {
34    R_DIRECTOR = 1001,
35    R_CLIENT,
36    R_JOB,
37    R_STORAGE,
38    R_CATALOG,
39    R_SCHEDULE,
40    R_FILESET,
41    R_POOL,
42    R_MSGS,
43    R_COUNTER,
44    R_CONSOLE,
45    R_JOBDEFS,
46    R_DEVICE,
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
64 /* Used for certain KeyWord tables */
65 struct s_kw {
66    const char *name;
67    int token;
68 };
69
70 /* Job Level keyword structure */
71 struct s_jl {
72    const char *level_name;                  /* level keyword */
73    int  level;                        /* level */
74    int  job_type;                     /* JobType permitting this level */
75 };
76
77 /* Job Type keyword structure */
78 struct s_jt {
79    const char *type_name;
80    int job_type;
81 };
82
83 /* Definition of the contents of each Resource */
84 /* Needed for forward references */
85 struct SCHED;
86 struct CLIENT;
87 struct FILESET;
88 struct POOL;
89 struct RUN;
90 struct DEVICE;
91
92 /*
93  *   Director Resource
94  *
95  */
96 class DIRRES {
97 public:
98    RES   hdr;
99    dlist *DIRaddrs;
100    char *password;                    /* Password for UA access */
101    int enable_ssl;                    /* Use SSL for UA */
102    char *query_file;                  /* SQL query file */
103    char *working_directory;           /* WorkingDirectory */
104    const char *scripts_directory;     /* ScriptsDirectory */
105    char *pid_directory;               /* PidDirectory */
106    char *subsys_directory;            /* SubsysDirectory */
107    int require_ssl;                   /* Require SSL for all connections */
108    MSGS *messages;                    /* Daemon message handler */
109    uint32_t MaxConcurrentJobs;        /* Max concurrent jobs for whole director */
110    utime_t FDConnectTimeout;          /* timeout for connect in seconds */
111    utime_t SDConnectTimeout;          /* timeout in seconds */
112 };
113
114 /*
115  * Device Resource
116  *  This resource is a bit different from the other resources
117  *  because it is not defined in the Director 
118  *  by DEVICE { ... }, but rather by a "reference" such as
119  *  DEVICE = xxx; Then when the Director connects to the
120  *  SD, it requests the information about the device.
121  */
122 class DEVICE {
123 public:
124    RES hdr;
125
126    bool found;                        /* found with SD */
127    int num_writers;
128    int num_waiting;
129    int use_count;
130    bool open;
131    bool append;                       /* in append mode */
132    bool read;
133    bool labeled;
134    char VolumeName[MAX_NAME_LENGTH];
135    char MediaType[MAX_NAME_LENGTH];
136 };
137
138 /*
139  * Console ACL positions
140  */
141 enum {
142    Job_ACL = 0,
143    Client_ACL,
144    Storage_ACL,
145    Schedule_ACL,
146    Run_ACL,
147    Pool_ACL,
148    Command_ACL,
149    FileSet_ACL,
150    Catalog_ACL,
151    Num_ACL                            /* keep last */
152 };
153
154 /*
155  *    Console Resource
156  */
157 class CONRES {
158 public:
159    RES   hdr;
160    char *password;                    /* UA server password */
161    int enable_ssl;                    /* Use SSL */
162    alist *ACL_lists[Num_ACL];         /* pointers to ACLs */
163 };
164
165
166 /*
167  *   Catalog Resource
168  *
169  */
170 class CAT {
171 public:
172    RES   hdr;
173
174    int   db_port;                     /* Port -- not yet implemented */
175    char *db_address;                  /* host name for remote access */
176    char *db_socket;                   /* Socket for local access */
177    char *db_password;
178    char *db_user;
179    char *db_name;
180    int   mult_db_connections;         /* set if multiple connections wanted */
181 };
182
183
184 /*
185  *   Client Resource
186  *
187  */
188 class CLIENT {
189 public:
190    RES   hdr;
191
192    int   FDport;                      /* Where File daemon listens */
193    int   AutoPrune;                   /* Do automatic pruning? */
194    utime_t FileRetention;             /* file retention period in seconds */
195    utime_t JobRetention;              /* job retention period in seconds */
196    char *address;
197    char *password;
198    CAT *catalog;                      /* Catalog resource */
199    uint32_t MaxConcurrentJobs;        /* Maximume concurrent jobs */
200    uint32_t NumConcurrentJobs;        /* number of concurrent jobs running */
201    int enable_ssl;                    /* Use SSL */
202 };
203
204 /*
205  *   Store Resource
206  *
207  */
208 class STORE {
209 public:
210    RES   hdr;
211
212    int   SDport;                      /* port where Directors connect */
213    int   SDDport;                     /* data port for File daemon */
214    char *address;
215    char *password;
216    char *media_type;
217    alist *device;                     /* Device name(s) */
218    int  autochanger;                  /* set if autochanger */
219    uint32_t MaxConcurrentJobs;        /* Maximume concurrent jobs */
220    uint32_t NumConcurrentJobs;        /* number of concurrent jobs running */
221    int enable_ssl;                    /* Use SSL */
222
223    int64_t StorageId;                 /* Set from Storage DB record */
224
225    char *dev_name() const;
226    char *name() const;
227 };
228
229 inline char *STORE::dev_name() const
230
231    DEVICE *dev = (DEVICE *)device->first();
232    return dev->hdr.name;
233 }
234
235 inline char *STORE::name() const { return hdr.name; }
236
237
238 /*
239  *   Job Resource
240  */
241 class JOB {
242 public:
243    RES   hdr;
244
245    int   JobType;                     /* job type (backup, verify, restore */
246    int   JobLevel;                    /* default backup/verify level */
247    int   Priority;                    /* Job priority */
248    int   RestoreJobId;                /* What -- JobId to restore */
249    char *RestoreWhere;                /* Where on disk to restore -- directory */
250    char *RestoreBootstrap;            /* Bootstrap file */
251    char *RunBeforeJob;                /* Run program before Job */
252    char *RunAfterJob;                 /* Run program after Job */
253    char *RunAfterFailedJob;           /* Run program after Job that errs */
254    char *ClientRunBeforeJob;          /* Run client program before Job */
255    char *ClientRunAfterJob;           /* Run client program after Job */
256    char *WriteBootstrap;              /* Where to write bootstrap Job updates */
257    int   replace;                     /* How (overwrite, ..) */
258    utime_t MaxRunTime;                /* max run time in seconds */
259    utime_t MaxWaitTime;               /* max blocking time in seconds */
260    utime_t FullMaxWaitTime;           /* Max Full job wait time */
261    utime_t DiffMaxWaitTime;           /* Max Differential job wait time */
262    utime_t IncMaxWaitTime;            /* Max Incremental job wait time */
263    utime_t MaxStartDelay;             /* max start delay in seconds */
264    int PrefixLinks;                   /* prefix soft links with Where path */
265    int PruneJobs;                     /* Force pruning of Jobs */
266    int PruneFiles;                    /* Force pruning of Files */
267    int PruneVolumes;                  /* Force pruning of Volumes */
268    int SpoolAttributes;               /* Set to spool attributes in SD */
269    int spool_data;                    /* Set to spool data in SD */
270    int rerun_failed_levels;           /* Upgrade to rerun failed levels */
271    uint32_t MaxConcurrentJobs;        /* Maximume concurrent jobs */
272    int RescheduleOnError;             /* Set to reschedule on error */
273    int RescheduleTimes;               /* Number of times to reschedule job */
274    utime_t RescheduleInterval;        /* Reschedule interval */
275    utime_t JobRetention;              /* job retention period in seconds */
276    bool write_part_after_job;         /* Set to write part after job in SD */
277    
278    MSGS      *messages;               /* How and where to send messages */
279    SCHED     *schedule;               /* When -- Automatic schedule */
280    CLIENT    *client;                 /* Who to backup */
281    FILESET   *fileset;                /* What to backup -- Fileset */
282    alist     *storage;                /* Where is device -- Storage daemon */
283    POOL      *pool;                   /* Where is media -- Media Pool */
284    POOL      *full_pool;              /* Pool for Full backups */
285    POOL      *inc_pool;               /* Pool for Incremental backups */
286    POOL      *dif_pool;               /* Pool for Differental backups */
287    JOB       *verify_job;             /* Job name to verify */
288    JOB       *jobdefs;                /* Job defaults */
289    uint32_t NumConcurrentJobs;        /* number of concurrent jobs running */
290 };
291
292 #undef  MAX_FOPTS
293 #define MAX_FOPTS 34
294
295 /* File options structure */
296 struct FOPTS {
297    char opts[MAX_FOPTS];              /* options string */
298    alist regex;                       /* regex string(s) */
299    alist regexdir;                    /* regex string(s) for directories */
300    alist regexfile;                   /* regex string(s) for files */
301    alist wild;                        /* wild card strings */
302    alist wilddir;                     /* wild card strings for directories */
303    alist wildfile;                    /* wild card strings for files */
304    alist base;                        /* list of base names */
305    alist fstype;                      /* file system type limitation */
306    char *reader;                      /* reader program */
307    char *writer;                      /* writer program */
308 };
309
310
311 /* This is either an include item or an exclude item */
312 struct INCEXE {
313    FOPTS *current_opts;               /* points to current options structure */
314    FOPTS **opts_list;                 /* options list */
315    int num_opts;                      /* number of options items */
316    alist name_list;                   /* filename list -- holds char * */
317 };
318
319 /*
320  *   FileSet Resource
321  *
322  */
323 class FILESET {
324 public:
325    RES   hdr;
326
327    bool new_include;                  /* Set if new include used */
328    INCEXE **include_items;            /* array of incexe structures */
329    int num_includes;                  /* number in array */
330    INCEXE **exclude_items;
331    int num_excludes;
332    bool have_MD5;                     /* set if MD5 initialized */
333    struct MD5Context md5c;            /* MD5 of include/exclude */
334    char MD5[30];                      /* base 64 representation of MD5 */
335    int ignore_fs_changes;             /* Don't force Full if FS changed */
336 };
337
338
339 /*
340  *   Schedule Resource
341  *
342  */
343 class SCHED {
344 public:
345    RES   hdr;
346
347    RUN *run;
348 };
349
350 /*
351  *   Counter Resource
352  */
353 class COUNTER {
354 public:
355    RES   hdr;
356
357    int32_t  MinValue;                 /* Minimum value */
358    int32_t  MaxValue;                 /* Maximum value */
359    int32_t  CurrentValue;             /* Current value */
360    COUNTER *WrapCounter;              /* Wrap counter name */
361    CAT     *Catalog;                  /* Where to store */
362    bool     created;                  /* Created in DB */
363 };
364
365 /*
366  *   Pool Resource
367  *
368  */
369 class POOL {
370 public:
371    RES   hdr;
372
373    char *pool_type;                   /* Pool type */
374    char *label_format;                /* Label format string */
375    char *cleaning_prefix;             /* Cleaning label prefix */
376    int   LabelType;                   /* Bacula/ANSI/IBM label type */
377    int   use_catalog;                 /* maintain catalog for media */
378    int   catalog_files;               /* maintain file entries in catalog */
379    int   use_volume_once;             /* write on volume only once */
380    int   accept_any_volume;           /* accept any volume */
381    int   purge_oldest_volume;         /* purge oldest volume */
382    int   recycle_oldest_volume;       /* attempt to recycle oldest volume */
383    int   recycle_current_volume;      /* attempt recycle of current volume */
384    uint32_t max_volumes;              /* max number of volumes */
385    utime_t VolRetention;              /* volume retention period in seconds */
386    utime_t VolUseDuration;            /* duration volume can be used */
387    uint32_t MaxVolJobs;               /* Maximum jobs on the Volume */
388    uint32_t MaxVolFiles;              /* Maximum files on the Volume */
389    uint64_t MaxVolBytes;              /* Maximum bytes on the Volume */
390    int   AutoPrune;                   /* default for pool auto prune */
391    int   Recycle;                     /* default for media recycle yes/no */
392 };
393
394
395
396
397 /* Define the Union of all the above
398  * resource structure definitions.
399  */
400 union URES {
401    DIRRES     res_dir;
402    CONRES     res_con;
403    CLIENT     res_client;
404    STORE      res_store;
405    CAT        res_cat;
406    JOB        res_job;
407    FILESET    res_fs;
408    SCHED      res_sch;
409    POOL       res_pool;
410    MSGS       res_msgs;
411    COUNTER    res_counter;
412    DEVICE     res_dev;
413    RES        hdr;
414 };
415
416
417
418 /* Run structure contained in Schedule Resource */
419 class RUN {
420 public:
421    RUN *next;                         /* points to next run record */
422    int level;                         /* level override */
423    int Priority;                      /* priority override */
424    int job_type;
425    bool spool_data;                   /* Data spooling override */
426    bool spool_data_set;               /* Data spooling override given */
427    bool write_part_after_job;         /* Write part after job override */
428    bool write_part_after_job_set;     /* Write part after job override given */
429    
430    POOL *pool;                        /* Pool override */
431    POOL *full_pool;                   /* Pool override */
432    POOL *inc_pool;                    /* Pool override */
433    POOL *dif_pool;                    /* Pool override */
434    STORE *storage;                    /* Storage override */
435    MSGS *msgs;                        /* Messages override */
436    char *since;
437    int level_no;
438    int minute;                        /* minute to run job */
439    time_t last_run;                   /* last time run */
440    time_t next_run;                   /* next time to run */
441    char hour[nbytes_for_bits(24)];    /* bit set for each hour */
442    char mday[nbytes_for_bits(31)];    /* bit set for each day of month */
443    char month[nbytes_for_bits(12)];   /* bit set for each month */
444    char wday[nbytes_for_bits(7)];     /* bit set for each day of the week */
445    char wom[nbytes_for_bits(5)];      /* week of month */
446    char woy[nbytes_for_bits(54)];     /* week of year */
447 };