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