]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/jcr.h
a4d2fb070a3be6c5afa4eefc151d7f1ebe4e9d0a
[bacula/bacula] / bacula / src / jcr.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2017 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20  * Bacula JCR Structure definition for Daemons and the Library
21  *  This definition consists of a "Global" definition common
22  *  to all daemons and used by the library routines, and a
23  *  daemon specific part that is enabled with #defines.
24  *
25  *  Written by Kern Sibbald, Nov MM
26  */
27
28
29 #ifndef __JCR_H_
30 #define __JCR_H_ 1
31
32 /* Backup/Verify level code. These are stored in the DB */
33 #define L_FULL                   'F'  /* Full backup */
34 #define L_INCREMENTAL            'I'  /* since last backup */
35 #define L_DIFFERENTIAL           'D'  /* since last full backup */
36 #define L_SINCE                  'S'
37 #define L_VERIFY_CATALOG         'C'  /* verify from catalog */
38 #define L_VERIFY_INIT            'V'  /* verify save (init DB) */
39 #define L_VERIFY_VOLUME_TO_CATALOG 'O'  /* verify Volume to catalog entries */
40 #define L_VERIFY_DISK_TO_CATALOG 'd'  /* verify Disk attributes to catalog */
41 #define L_VERIFY_DATA            'A'  /* verify data on volume */
42 #define L_BASE                   'B'  /* Base level job */
43 #define L_NONE                   ' '  /* None, for Restore and Admin */
44 #define L_VIRTUAL_FULL           'f'  /* Virtual full backup */
45
46
47 /* Job Types. These are stored in the DB */
48 #define JT_BACKUP                'B'  /* Backup Job */
49 #define JT_MIGRATED_JOB          'M'  /* A previous backup job that was migrated */
50 #define JT_VERIFY                'V'  /* Verify Job */
51 #define JT_RESTORE               'R'  /* Restore Job */
52 #define JT_CONSOLE               'U'  /* console program */
53 #define JT_SYSTEM                'I'  /* internal system "job" */
54 #define JT_ADMIN                 'D'  /* admin job */
55 #define JT_ARCHIVE               'A'  /* Archive Job */
56 #define JT_JOB_COPY              'C'  /* Copy of a Job */
57 #define JT_COPY                  'c'  /* Copy Job */
58 #define JT_MIGRATE               'g'  /* Migration Job */
59 #define JT_SCAN                  'S'  /* Scan Job */
60
61 /* Used to handle ClientAcl in various commands, not stored in the DB */
62 #define JT_BACKUP_RESTORE        '*'  /* Backup or Restore Job */
63
64 /* Job Status. Some of these are stored in the DB */
65 #define JS_Canceled              'A'  /* canceled by user */
66 #define JS_Blocked               'B'  /* blocked */
67 #define JS_Created               'C'  /* created but not yet running */
68 #define JS_Differences           'D'  /* Verify differences */
69 #define JS_ErrorTerminated       'E'  /* Job terminated in error */
70 #define JS_WaitFD                'F'  /* waiting on File daemon */
71 #define JS_Incomplete            'I'  /* Incomplete Job */
72 #define JS_DataCommitting        'L'  /* Committing data (last despool) */
73 #define JS_WaitMount             'M'  /* waiting for Mount */
74 #define JS_Running               'R'  /* running */
75 #define JS_WaitSD                'S'  /* waiting on the Storage daemon */
76 #define JS_Terminated            'T'  /* terminated normally */
77 #define JS_Warnings              'W'  /* Terminated normally with warnings */
78
79 #define JS_AttrDespooling        'a'  /* SD despooling attributes */
80 #define JS_WaitClientRes         'c'  /* Waiting for Client resource */
81 #define JS_WaitMaxJobs           'd'  /* Waiting for maximum jobs */
82 #define JS_Error                 'e'  /* Non-fatal error */
83 #define JS_FatalError            'f'  /* Fatal error */
84 #define JS_AttrInserting         'i'  /* Doing batch insert file records */
85 #define JS_WaitJobRes            'j'  /* Waiting for job resource */
86 #define JS_DataDespooling        'l'  /* Doing data despooling */
87 #define JS_WaitMedia             'm'  /* waiting for new media */
88 #define JS_WaitPriority          'p'  /* Waiting for higher priority jobs to finish */
89 #define JS_WaitDevice            'q'  /* Queued waiting for device */
90 #define JS_WaitStoreRes          's'  /* Waiting for storage resource */
91 #define JS_WaitStartTime         't'  /* Waiting for start time */
92 #define JS_CloudUpload           'u'  /* Cloud upload */
93 #define JS_CloudDownload         'w'  /* Cloud download */
94
95 /* Migration selection types. Do not change the order. */
96 enum {
97    MT_SMALLEST_VOL = 1,
98    MT_OLDEST_VOL,
99    MT_POOL_OCCUPANCY,
100    MT_POOL_TIME,
101    MT_POOL_UNCOPIED_JOBS,
102    MT_CLIENT,
103    MT_VOLUME,
104    MT_JOB,
105    MT_SQLQUERY
106 };
107
108 #define job_canceled(jcr) \
109   (jcr->JobStatus == JS_Canceled || \
110    jcr->JobStatus == JS_ErrorTerminated || \
111    jcr->JobStatus == JS_FatalError \
112   )
113
114 #define job_waiting(jcr) \
115  (jcr->job_started &&    \
116   (jcr->JobStatus == JS_WaitFD          || \
117    jcr->JobStatus == JS_WaitSD          || \
118    jcr->JobStatus == JS_WaitMedia       || \
119    jcr->JobStatus == JS_WaitMount       || \
120    jcr->JobStatus == JS_WaitStoreRes    || \
121    jcr->JobStatus == JS_WaitJobRes      || \
122    jcr->JobStatus == JS_WaitClientRes   || \
123    jcr->JobStatus == JS_WaitMaxJobs     || \
124    jcr->JobStatus == JS_WaitPriority    || \
125    jcr->SDJobStatus == JS_WaitMedia     || \
126    jcr->SDJobStatus == JS_WaitMount     || \
127    jcr->SDJobStatus == JS_WaitDevice    || \
128    jcr->SDJobStatus == JS_CloudUpload   || \
129    jcr->SDJobStatus == JS_CloudDownload || \
130    jcr->SDJobStatus == JS_WaitMaxJobs))
131
132
133
134 #define foreach_jcr(jcr) \
135    for (jcr=jcr_walk_start(); jcr; (jcr=jcr_walk_next(jcr)) )
136
137 #define endeach_jcr(jcr) jcr_walk_end(jcr)
138
139 #define SD_APPEND true
140 #define SD_READ   false
141
142 /* Forward referenced structures */
143 class JCR;
144 class BSOCK;
145 struct FF_PKT;
146 class  BDB;
147 struct ATTR_DBR;
148 class Plugin;
149 struct save_pkt;
150 struct bpContext;
151
152
153 #ifdef FILE_DAEMON
154 class VSSClient;
155 class htable;
156 class XACL;
157 class snapshot_manager;
158
159 struct CRYPTO_CTX {
160    bool pki_sign;                     /* Enable PKI Signatures? */
161    bool pki_encrypt;                  /* Enable PKI Encryption? */
162    DIGEST *digest;                    /* Last file's digest context */
163    X509_KEYPAIR *pki_keypair;         /* Encryption key pair */
164    alist *pki_signers;                /* Trusted Signers */
165    alist *pki_recipients;             /* Trusted Recipients */
166    CRYPTO_SESSION *pki_session;       /* PKE Public Keys + Symmetric Session Keys */
167    POOLMEM *pki_session_encoded;      /* Cached DER-encoded copy of pki_session */
168    int32_t pki_session_encoded_size;  /* Size of DER-encoded pki_session */
169    POOLMEM *crypto_buf;               /* Encryption/Decryption buffer */
170 };
171 #endif
172
173 typedef void (JCR_free_HANDLER)(JCR *jcr);
174
175 /* Job Control Record (JCR) */
176 class JCR {
177 private:
178    pthread_mutex_t mutex;             /* jcr mutex */
179    pthread_mutex_t mutex_auth;        /* used during authentication */
180    volatile int32_t _use_count;       /* use count */
181    int32_t m_JobType;                 /* backup, restore, verify ... */
182    int32_t m_JobLevel;                /* Job level */
183    bool my_thread_killable;           /* can we kill the thread? */
184 public:
185    void lock() {P(mutex); };
186    void unlock() {V(mutex); };
187    void lock_auth() {P(mutex_auth);};
188    void unlock_auth() {V(mutex_auth);};
189    void inc_use_count(void) {lock(); _use_count++; unlock(); };
190    void dec_use_count(void) {lock(); _use_count--; unlock(); };
191    int32_t use_count() const { return _use_count; };
192    void init_mutex(void) {
193       pthread_mutex_init(&mutex, NULL);
194       pthread_mutex_init(&mutex_auth, NULL);
195    };
196    void destroy_mutex(void) {
197       pthread_mutex_destroy(&mutex_auth);
198       pthread_mutex_destroy(&mutex);
199    };
200    bool is_internal_job() {return (JobId == 0 || m_JobType == JT_SYSTEM || m_JobType == JT_CONSOLE); };
201    bool is_job_canceled() {return job_canceled(this); };
202    bool is_canceled() {return job_canceled(this); };
203    bool is_incomplete() { return JobStatus == JS_Incomplete; };
204    bool is_JobLevel(int32_t JobLevel) { return JobLevel == m_JobLevel; };
205    bool is_JobType(int32_t JobType) { return JobType == m_JobType; };
206    bool is_JobStatus(int32_t aJobStatus) { return aJobStatus == JobStatus; };
207    void setJobLevel(int32_t JobLevel) { m_JobLevel = JobLevel; };
208    void setJobType(int32_t JobType) { m_JobType = JobType; };
209    void forceJobStatus(int32_t aJobStatus) { JobStatus = aJobStatus; };
210    void setJobStarted();
211    int32_t getJobType() const { return m_JobType; };
212    int32_t getJobLevel() const { return m_JobLevel; };
213    int32_t getJobStatus() const { return JobStatus; };
214    bool no_client_used() const {
215       return (m_JobLevel == L_VIRTUAL_FULL);
216    };
217    const char *get_OperationName();       /* in lib/jcr.c */
218    const char *get_ActionName(bool past); /* in lib/jcr.c */
219    void setJobStatus(int JobStatus);      /* in lib/jcr.c */
220    bool sendJobStatus();                  /* in lib/jcr.c */
221    bool sendJobStatus(int JobStatus);     /* in lib/jcr.c */
222    bool JobReads();                       /* in lib/jcr.c */
223    void my_thread_send_signal(int sig);   /* in lib/jcr.c */
224    void set_killable(bool killable);      /* in lib/jcr.c */
225    bool is_killable() const { return my_thread_killable; };
226
227    /* Global part of JCR common to all daemons */
228    dlink link;                        /* JCR chain link */
229    pthread_t my_thread_id;            /* id of thread controlling jcr */
230    BSOCK *dir_bsock;                  /* Director bsock or NULL if we are him */
231    BSOCK *store_bsock;                /* Storage connection socket */
232    BSOCK *file_bsock;                 /* File daemon connection socket */
233    JCR_free_HANDLER *daemon_free_jcr; /* Local free routine */
234    dlist *msg_queue;                  /* Queued messages */
235    pthread_mutex_t msg_queue_mutex;   /* message queue mutex */
236    bool dequeuing_msgs;               /* Set when dequeuing messages */
237    alist job_end_push;                /* Job end pushed calls */
238    POOLMEM *VolumeName;               /* Volume name desired -- pool_memory */
239    POOLMEM *errmsg;                   /* edited error message */
240    char Job[MAX_NAME_LENGTH];         /* Unique name of this Job */
241    char event[MAX_NAME_LENGTH];       /* Current event (python) */
242    uint32_t eventType;                /* Current event type (plugin) */
243
244    uint32_t JobId;                    /* Director's JobId */
245    uint32_t VolSessionId;
246    uint32_t VolSessionTime;
247    uint32_t JobFiles;                 /* Number of files written, this job */
248    uint32_t JobErrors;                /* Number of non-fatal errors this job */
249    uint32_t SDErrors;                 /* Number of non-fatal SD errors */
250    uint32_t JobWarnings;              /* Number of warning messages */
251    uint32_t LastRate;                 /* Last sample bytes/sec */
252    uint64_t JobBytes;                 /* Number of bytes processed this job */
253    uint64_t LastJobBytes;             /* Last sample number bytes */
254    uint64_t ReadBytes;                /* Bytes read -- before compression */
255    uint64_t CommBytes;                /* FD comm line bytes sent to SD */
256    uint64_t CommCompressedBytes;      /* FD comm line compressed bytes sent to SD */
257    FileId_t FileId;                   /* Last FileId used */
258    volatile int32_t JobStatus;        /* ready, running, blocked, terminated */
259    int32_t JobPriority;               /* Job priority */
260    time_t sched_time;                 /* job schedule time, i.e. when it should start */
261    time_t initial_sched_time;         /* original sched time before any reschedules are done */
262    time_t start_time;                 /* when job actually started */
263    time_t run_time;                   /* used for computing speed */
264    time_t last_time;                  /* Last sample time */
265    time_t end_time;                   /* job end time */
266    time_t wait_time_sum;              /* cumulative wait time since job start */
267    time_t wait_time;                  /* timestamp when job have started to wait */
268    time_t job_started_time;           /* Time when the MaxRunTime start to count */
269    POOLMEM *client_name;              /* client name */
270    POOLMEM *JobIds;                   /* User entered string of JobIds */
271    POOLMEM *RestoreBootstrap;         /* Bootstrap file to restore */
272    POOLMEM *stime;                    /* start time for incremental/differential */
273    char *sd_auth_key;                 /* SD auth key */
274    MSGS *jcr_msgs;                    /* Copy of message resource -- actually used */
275    uint32_t ClientId;                 /* Client associated with Job */
276    char *where;                       /* prefix to restore files to */
277    char *RegexWhere;                  /* file relocation in restore */
278    alist *where_bregexp;              /* BREGEXP alist for path manipulation */
279    int32_t cached_pnl;                /* cached path length */
280    POOLMEM *cached_path;              /* cached path */
281    bool prefix_links;                 /* Prefix links with Where path */
282    bool gui;                          /* set if gui using console */
283    bool authenticated;                /* set when client authenticated */
284    bool cached_attribute;             /* set if attribute is cached */
285    bool batch_started;                /* is batch mode already started ? */
286    bool cmd_plugin;                   /* Set when processing a command Plugin = */
287    bool opt_plugin;                   /* Set when processing an option Plugin = */
288    bool keep_path_list;               /* Keep newly created path in a hash */
289    bool accurate;                     /* true if job is accurate */
290    bool HasBase;                      /* True if job use base jobs */
291    bool rerunning;                    /* rerunning an incomplete job */
292    bool job_started;                  /* Set when the job is actually started */
293    bool sd_calls_client;              /* Set for SD to call client (FD/SD) */
294    bool exiting;                      /* Set when exiting */
295
296    void *Python_job;                  /* Python Job Object */
297    void *Python_events;               /* Python Events Object */
298    POOLMEM *attr;                     /* Attribute string from SD */
299    BDB *db;                          /* database pointer */
300    BDB *db_batch;                    /* database pointer for batch and accurate */
301    uint64_t nb_base_files;            /* Number of base files */
302    uint64_t nb_base_files_used;       /* Number of useful files in base */
303
304    ATTR_DBR *ar;                      /* DB attribute record */
305    guid_list *id_list;                /* User/group id to name list */
306
307    bpContext *plugin_ctx_list;        /* list of contexts for plugins */
308    bpContext *plugin_ctx;             /* current plugin context */
309    Plugin *plugin;                    /* plugin instance */
310    save_pkt *plugin_sp;               /* plugin save packet */
311    char *plugin_options;              /* user set options for plugin */
312    POOLMEM *comment;                  /* Comment for this Job */
313    int64_t max_bandwidth;             /* Bandwidth limit for this Job */
314    htable *path_list;                 /* Directory list (used by findlib) */
315    int     job_uid;                   /* UID used during job session */
316    char   *job_user;                  /* Specific permission for a job */
317    char   *job_group;                 /* Specific permission for a job */
318    POOLMEM *StatusErrMsg;             /* Error message displayed in the job report */
319    uint32_t getErrors() { return JobErrors + SDErrors; }; /* Get error count */
320
321    /* Daemon specific part of JCR */
322    /* This should be empty in the library */
323
324 #ifdef DIRECTOR_DAEMON
325    /* Director Daemon specific data part of JCR */
326    bool SD_msg_chan_started;          /* True if the msg thread is started */
327    pthread_t SD_msg_chan;             /* Message channel thread id */
328    pthread_cond_t term_wait;          /* Wait for job termination */
329    workq_ele_t *work_item;            /* Work queue item if scheduled */
330    BSOCK *ua;                         /* User agent */
331    JOB *job;                          /* Job resource */
332    JOB *verify_job;                   /* Job resource of verify previous job */
333    alist *plugin_config;              /* List of ConfigFile needed for restore */
334    alist *rstorage;                   /* Read storage possibilities */
335    STORE *rstore;                     /* Selected read storage */
336    alist *wstorage;                   /* Write storage possibilities */
337    STORE *wstore;                     /* Selected write storage */
338    CLIENT *client;                    /* Client resource */
339    POOL *pool;                        /* Pool resource = write for migration */
340    POOL *next_pool;                   /* Next pool override */
341    POOL *rpool;                       /* Read pool. Used only in migration */
342    POOL *full_pool;                   /* Full backup pool resource */
343    POOL *vfull_pool;                  /* Virtual Full backup pool resource */
344    POOL *inc_pool;                    /* Incremental backup pool resource */
345    POOL *diff_pool;                   /* Differential backup pool resource */
346    FILESET *fileset;                  /* FileSet resource */
347    CAT *catalog;                      /* Catalog resource */
348    MSGS *messages;                    /* Default message handler */
349    uint32_t SDJobFiles;               /* Number of files written, this job */
350    uint64_t SDJobBytes;               /* Number of bytes processed this job */
351    volatile int32_t SDJobStatus;      /* Storage Job Status */
352    volatile int32_t FDJobStatus;      /* File daemon Job Status */
353    uint32_t ExpectedFiles;            /* Expected restore files */
354    uint32_t MediaId;                  /* DB record IDs associated with this job */
355    uint32_t FileIndex;                /* Last FileIndex processed */
356    utime_t MaxRunSchedTime;           /* max run time in seconds from Initial Scheduled time */
357    POOLMEM *fname;                    /* name to put into catalog */
358    POOLMEM *component_fname;          /* Component info file name */
359    POOLMEM *media_type;               /* Set if user supplied Storage */
360    FILE *component_fd;                /* Component info file desc */
361    JOB_DBR jr;                        /* Job DB record for current job */
362    JOB_DBR previous_jr;               /* previous job database record */
363    JOB *previous_job;                 /* Job resource of migration previous job */
364    JCR *wjcr;                         /* JCR for migration/copy write job */
365    char FSCreateTime[MAX_TIME_LENGTH]; /* FileSet CreateTime as returned from DB */
366    char since[MAX_TIME_LENGTH];       /* since time */
367    char PrevJob[MAX_NAME_LENGTH];     /* Previous job name assiciated with since time */
368    union {
369       JobId_t RestoreJobId;           /* Id specified by UA */
370       JobId_t MigrateJobId;
371    };
372    POOLMEM *client_uname;             /* client uname */
373    POOLMEM *pool_source;              /* Where pool came from */
374    POOLMEM *next_pool_source;         /* Where next pool came from */
375    POOLMEM *rpool_source;             /* Where migrate read pool came from */
376    POOLMEM *rstore_source;            /* Where read storage came from */
377    POOLMEM *wstore_source;            /* Where write storage came from */
378    POOLMEM *catalog_source;           /* Where catalog came from */
379    POOLMEM *next_vol_list;            /* Volumes previously requested */
380    int32_t replace;                   /* Replace option */
381    int32_t NumVols;                   /* Number of Volume used in pool */
382    int32_t reschedule_count;          /* Number of times rescheduled */
383    int32_t FDVersion;                 /* File daemon version number */
384    int32_t SDVersion;                 /* Storage daemon version number */
385    int64_t spool_size;                /* Spool size for this job */
386    utime_t snapshot_retention;        /* Snapshot retention (from Client/Job resource) */
387    volatile bool sd_msg_thread_done;  /* Set when Storage message thread done */
388    bool wasVirtualFull;               /* set if job was VirtualFull */
389    bool IgnoreDuplicateJobChecking;   /* set in migration jobs */
390    bool spool_data;                   /* Spool data in SD */
391    bool acquired_resource_locks;      /* set if resource locks acquired */
392    bool term_wait_inited;             /* Set when cond var inited */
393    bool fn_printed;                   /* printed filename */
394    bool write_part_after_job;         /* Write part after job in SD */
395    bool needs_sd;                     /* set if SD needed by Job */
396    bool cloned;                       /* set if cloned */
397    bool unlink_bsr;                   /* Unlink bsr file created */
398    bool Snapshot;                     /* Snapshot used by FD (VSS on Windows) */
399    bool Encrypt;                      /* Encryption used by FD */
400    bool stats_enabled;                /* Keep all job records in a table for long term statistics */
401    bool no_maxtime;                   /* Don't check Max*Time for this JCR */
402    bool keep_sd_auth_key;             /* Clear or not the SD auth key after connection*/
403    bool use_accurate_chksum;          /* Use or not checksum option in accurate code */
404    bool run_pool_override;
405    bool cmdline_next_pool_override;   /* Next pool is overridden */
406    bool run_next_pool_override;       /* Next pool is overridden */
407    bool run_full_pool_override;
408    bool run_vfull_pool_override;
409    bool run_inc_pool_override;
410    bool run_diff_pool_override;
411    bool sd_canceled;                  /* set if SD canceled */
412    bool RescheduleIncompleteJobs;     /* set if incomplete can be rescheduled */
413    bool use_all_JobIds;               /* Use all jobids present in command line */
414    bool sd_client;                    /* This job runs as SD client */
415    bool dummy_jobmedia;               /* Dummy JobMedia written */
416 #endif /* DIRECTOR_DAEMON */
417
418
419 #ifdef FILE_DAEMON
420    /* File Daemon specific part of JCR */
421    BSOCK *sd_calls_client_bsock;      /* Socket used by SDCallsClient feature */
422    uint32_t num_files_examined;       /* files examined this job */
423    POOLMEM *last_fname;               /* last file saved/verified */
424    POOLMEM *job_metadata;             /* VSS job metadata */
425    pthread_cond_t job_start_wait;     /* Wait for SD to start Job */
426    XACL *xacl;                        /* ACLs and Extended Attributes for backup/restore */
427    int32_t last_type;                 /* type of last file saved/verified */
428    int incremental;                   /* set if incremental for SINCE */
429    time_t last_stat_time;             /* Last time stats sent to Dir */
430    time_t stat_interval;              /* Stats send interval */
431    utime_t mtime;                     /* begin time for SINCE */
432    int listing;                       /* job listing in estimate */
433    long Ticket;                       /* Ticket */
434    char *big_buf;                     /* I/O buffer */
435    POOLMEM *compress_buf;             /* Compression buffer */
436    int32_t compress_buf_size;         /* Length of compression buffer */
437    void *pZLIB_compress_workset;      /* zlib compression session data */
438    void *LZO_compress_workset;        /* lzo compression session data */
439    int32_t replace;                   /* Replace options */
440    int32_t buf_size;                  /* length of buffer */
441    FF_PKT *ff;                        /* Find Files packet */
442    char stored_addr[MAX_NAME_LENGTH]; /* storage daemon address */
443    char PrevJob[MAX_NAME_LENGTH];     /* Previous job name assiciated with since time */
444    uint32_t ExpectedFiles;            /* Expected restore files */
445    uint32_t StartFile;
446    uint32_t EndFile;
447    uint32_t StartBlock;
448    uint32_t EndBlock;
449    pthread_t heartbeat_id;            /* id of heartbeat thread */
450    volatile bool hb_started;          /* heartbeat running */
451    BSOCK *hb_bsock;                   /* duped SD socket */
452    BSOCK *hb_dir_bsock;               /* duped DIR socket */
453    alist *RunScripts;                 /* Commands to run before and after job */
454    CRYPTO_CTX crypto;                 /* Crypto ctx */
455    DIRRES* director;                  /* Director resource */
456    bool Snapshot;                     /* Snapshot used by FD (or VSS) */
457    bool got_metadata;                 /* set when found job_metatdata */
458    bool multi_restore;                /* Dir can do multiple storage restore */
459    bool interactive_session;          /* Use interactive session with the SD */
460    htable *file_list;                 /* Previous file list (accurate mode) */
461    uint64_t base_size;                /* compute space saved with base job */
462    utime_t snapshot_retention;        /* Snapshot retention (from director) */
463    snapshot_manager *snap_mgr;        /* Snapshot manager */
464    VSSClient *pVSSClient;             /* VSS handler */
465 #endif /* FILE_DAEMON */
466
467
468 #ifdef STORAGE_DAEMON
469    /* Storage Daemon specific part of JCR */
470    JCR *next_dev;                     /* next JCR attached to device */
471    JCR *prev_dev;                     /* previous JCR attached to device */
472    dlist *jobmedia_queue;             /* JobMedia queue */
473    char *dir_auth_key;                /* Dir auth key */
474    pthread_cond_t job_start_wait;     /* Wait for FD to start Job */
475    int32_t type;
476    DCR *read_dcr;                     /* device context for reading */
477    DCR *dcr;                          /* device context record */
478    alist *dcrs;                       /* list of dcrs open */
479    POOLMEM *job_name;                 /* base Job name (not unique) */
480    POOLMEM *fileset_name;             /* FileSet */
481    POOLMEM *fileset_md5;              /* MD5 for FileSet */
482    char stored_addr[MAX_NAME_LENGTH]; /* storage daemon address */
483    char client_addr[MAX_NAME_LENGTH]; /* client daemon address */
484    VOL_LIST *VolList;                 /* list to read, freed at the end of the job */
485    int32_t NumWriteVolumes;           /* number of volumes written */
486    int32_t NumReadVolumes;            /* total number of volumes to read */
487    int32_t CurReadVolume;             /* current read volume number */
488    int32_t label_errors;              /* count of label errors */
489    int32_t DIRVersion;                /* Director version number */
490    int32_t FDVersion;                 /* File daemon version number */
491    int32_t SDVersion;                 /* Storage daemon version number */
492    bool session_opened;
493    bool interactive_session;          /* Interactive session with the FD */
494    bool is_ok_data_sent;              /* the "3000 OK data" has been sent */
495    long Ticket;                       /* ticket for this job */
496    bool ignore_label_errors;          /* ignore Volume label errors */
497    bool spool_attributes;             /* set if spooling attributes */
498    bool no_attributes;                /* set if no attributes wanted */
499    int64_t spool_size;                /* Spool size for this job */
500    bool spool_data;                   /* set to spool data */
501    int32_t CurVol;                    /* Current Volume count */
502    DIRRES* director;                  /* Director resource */
503    alist *write_store;                /* list of write storage devices sent by DIR */
504    alist *read_store;                 /* list of read devices sent by DIR */
505    alist *reserve_msgs;               /* reserve fail messages */
506    bool write_part_after_job;         /* Set to write part after job */
507    bool PreferMountedVols;            /* Prefer mounted vols rather than new */
508    bool Resched;                      /* Job may be rescheduled */
509    bool bscan_insert_jobmedia_records; /*Bscan: needs to insert job media records */
510    bool sd_client;                    /* Set if acting as client */
511    bool use_new_match_all;            /* TODO: Remove when the match_bsr() will be well tested */
512
513    /* Parmaters for Open Read Session */
514    BSR *bsr;                          /* Bootstrap record -- has everything */
515    bool mount_next_volume;            /* set to cause next volume mount */
516    uint32_t read_VolSessionId;
517    uint32_t read_VolSessionTime;
518    uint32_t read_StartFile;
519    uint32_t read_EndFile;
520    uint32_t read_StartBlock;
521    uint32_t read_EndBlock;
522    /* Device wait times */
523    int32_t min_wait;
524    int32_t max_wait;
525    int32_t max_num_wait;
526    int32_t wait_sec;
527    int32_t rem_wait_sec;
528    int32_t num_wait;
529 #endif /* STORAGE_DAEMON */
530
531 };
532
533 /*
534  * Setting a NULL in tsd doesn't clear the tsd but instead tells
535  *   pthreads not to call the tsd destructor. Consequently, we
536  *   define this *invalid* jcr address and stuff it in the tsd
537  *   when the jcr is not valid.
538  */
539 #define INVALID_JCR ((JCR *)(-1))
540
541
542 /*
543  * Structure for all daemons that keeps some summary
544  *  info on the last job run.
545  */
546 struct s_last_job {
547    dlink link;
548    int32_t Errors;                    /* FD/SD errors */
549    int32_t JobType;
550    int32_t JobStatus;
551    int32_t JobLevel;
552    uint32_t JobId;
553    uint32_t VolSessionId;
554    uint32_t VolSessionTime;
555    uint32_t JobFiles;
556    uint64_t JobBytes;
557    utime_t start_time;
558    utime_t end_time;
559    char Job[MAX_NAME_LENGTH];
560 };
561
562 extern struct s_last_job last_job;
563 extern DLL_IMP_EXP dlist *last_jobs;
564
565
566 /* The following routines are found in lib/jcr.c */
567 extern int get_next_jobid_from_list(char **p, uint32_t *JobId);
568 extern bool init_jcr_subsystem(void);
569 extern JCR *new_jcr(int size, JCR_free_HANDLER *daemon_free_jcr);
570 extern JCR *get_jcr_by_id(uint32_t JobId);
571 extern JCR *get_jcr_by_session(uint32_t SessionId, uint32_t SessionTime);
572 extern JCR *get_jcr_by_partial_name(char *Job);
573 extern JCR *get_jcr_by_full_name(char *Job);
574 extern JCR *get_next_jcr(JCR *jcr);
575 extern void set_jcr_job_status(JCR *jcr, int JobStatus);
576 extern int DLL_IMP_EXP num_jobs_run;
577
578 #ifdef DEBUG
579 extern void b_free_jcr(const char *file, int line, JCR *jcr);
580 #define free_jcr(jcr) b_free_jcr(__FILE__, __LINE__, (jcr))
581 #else
582 extern void free_jcr(JCR *jcr);
583 #endif
584
585 /* Used to display specific job information after a fatal signal */
586 typedef void (dbg_jcr_hook_t)(JCR *jcr, FILE *fp);
587 extern void dbg_jcr_add_hook(dbg_jcr_hook_t *fct);
588
589 #endif /* __JCR_H_ */