]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/jcr.h
Fix #2925 Do not try to stop non backup jobs (virtualfull, copy, migration, restore...
[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    bool can_be_stopped();                 /* in lib/jcr.c */
218    const char *get_OperationName();       /* in lib/jcr.c */
219    const char *get_ActionName(bool past); /* in lib/jcr.c */
220    void setJobStatus(int JobStatus);      /* in lib/jcr.c */
221    bool sendJobStatus();                  /* in lib/jcr.c */
222    bool sendJobStatus(int JobStatus);     /* in lib/jcr.c */
223    bool JobReads();                       /* in lib/jcr.c */
224    void my_thread_send_signal(int sig);   /* in lib/jcr.c */
225    void set_killable(bool killable);      /* in lib/jcr.c */
226    bool is_killable() const { return my_thread_killable; };
227
228    /* Global part of JCR common to all daemons */
229    dlink link;                        /* JCR chain link */
230    pthread_t my_thread_id;            /* id of thread controlling jcr */
231    BSOCK *dir_bsock;                  /* Director bsock or NULL if we are him */
232    BSOCK *store_bsock;                /* Storage connection socket */
233    BSOCK *file_bsock;                 /* File daemon connection socket */
234    JCR_free_HANDLER *daemon_free_jcr; /* Local free routine */
235    dlist *msg_queue;                  /* Queued messages */
236    pthread_mutex_t msg_queue_mutex;   /* message queue mutex */
237    bool dequeuing_msgs;               /* Set when dequeuing messages */
238    alist job_end_push;                /* Job end pushed calls */
239    POOLMEM *VolumeName;               /* Volume name desired -- pool_memory */
240    POOLMEM *errmsg;                   /* edited error message */
241    char Job[MAX_NAME_LENGTH];         /* Unique name of this Job */
242    char event[MAX_NAME_LENGTH];       /* Current event (python) */
243    uint32_t eventType;                /* Current event type (plugin) */
244
245    uint32_t JobId;                    /* Director's JobId */
246    uint32_t VolSessionId;
247    uint32_t VolSessionTime;
248    uint32_t JobFiles;                 /* Number of files written, this job */
249    uint32_t JobErrors;                /* Number of non-fatal errors this job */
250    uint32_t SDErrors;                 /* Number of non-fatal SD errors */
251    uint32_t JobWarnings;              /* Number of warning messages */
252    uint32_t LastRate;                 /* Last sample bytes/sec */
253    uint64_t JobBytes;                 /* Number of bytes processed this job */
254    uint64_t LastJobBytes;             /* Last sample number bytes */
255    uint64_t ReadBytes;                /* Bytes read -- before compression */
256    uint64_t CommBytes;                /* FD comm line bytes sent to SD */
257    uint64_t CommCompressedBytes;      /* FD comm line compressed bytes sent to SD */
258    FileId_t FileId;                   /* Last FileId used */
259    volatile int32_t JobStatus;        /* ready, running, blocked, terminated */
260    int32_t JobPriority;               /* Job priority */
261    time_t sched_time;                 /* job schedule time, i.e. when it should start */
262    time_t initial_sched_time;         /* original sched time before any reschedules are done */
263    time_t start_time;                 /* when job actually started */
264    time_t run_time;                   /* used for computing speed */
265    time_t last_time;                  /* Last sample time */
266    time_t end_time;                   /* job end time */
267    time_t wait_time_sum;              /* cumulative wait time since job start */
268    time_t wait_time;                  /* timestamp when job have started to wait */
269    time_t job_started_time;           /* Time when the MaxRunTime start to count */
270    POOLMEM *client_name;              /* client name */
271    POOLMEM *JobIds;                   /* User entered string of JobIds */
272    POOLMEM *RestoreBootstrap;         /* Bootstrap file to restore */
273    POOLMEM *stime;                    /* start time for incremental/differential */
274    char *sd_auth_key;                 /* SD auth key */
275    MSGS *jcr_msgs;                    /* Copy of message resource -- actually used */
276    uint32_t ClientId;                 /* Client associated with Job */
277    char *where;                       /* prefix to restore files to */
278    char *RegexWhere;                  /* file relocation in restore */
279    alist *where_bregexp;              /* BREGEXP alist for path manipulation */
280    int32_t cached_pnl;                /* cached path length */
281    POOLMEM *cached_path;              /* cached path */
282    bool prefix_links;                 /* Prefix links with Where path */
283    bool gui;                          /* set if gui using console */
284    bool authenticated;                /* set when client authenticated */
285    bool cached_attribute;             /* set if attribute is cached */
286    bool batch_started;                /* is batch mode already started ? */
287    bool cmd_plugin;                   /* Set when processing a command Plugin = */
288    bool opt_plugin;                   /* Set when processing an option Plugin = */
289    bool keep_path_list;               /* Keep newly created path in a hash */
290    bool accurate;                     /* true if job is accurate */
291    bool HasBase;                      /* True if job use base jobs */
292    bool rerunning;                    /* rerunning an incomplete job */
293    bool job_started;                  /* Set when the job is actually started */
294    bool sd_calls_client;              /* Set for SD to call client (FD/SD) */
295    bool exiting;                      /* Set when exiting */
296
297    void *Python_job;                  /* Python Job Object */
298    void *Python_events;               /* Python Events Object */
299    POOLMEM *attr;                     /* Attribute string from SD */
300    BDB *db;                          /* database pointer */
301    BDB *db_batch;                    /* database pointer for batch and accurate */
302    uint64_t nb_base_files;            /* Number of base files */
303    uint64_t nb_base_files_used;       /* Number of useful files in base */
304
305    ATTR_DBR *ar;                      /* DB attribute record */
306    guid_list *id_list;                /* User/group id to name list */
307
308    bpContext *plugin_ctx_list;        /* list of contexts for plugins */
309    bpContext *plugin_ctx;             /* current plugin context */
310    Plugin *plugin;                    /* plugin instance */
311    save_pkt *plugin_sp;               /* plugin save packet */
312    char *plugin_options;              /* user set options for plugin */
313    POOLMEM *comment;                  /* Comment for this Job */
314    int64_t max_bandwidth;             /* Bandwidth limit for this Job */
315    htable *path_list;                 /* Directory list (used by findlib) */
316    int     job_uid;                   /* UID used during job session */
317    char   *job_user;                  /* Specific permission for a job */
318    char   *job_group;                 /* Specific permission for a job */
319    POOLMEM *StatusErrMsg;             /* Error message displayed in the job report */
320    uint32_t getErrors() { return JobErrors + SDErrors; }; /* Get error count */
321
322    /* Daemon specific part of JCR */
323    /* This should be empty in the library */
324
325 #ifdef DIRECTOR_DAEMON
326    /* Director Daemon specific data part of JCR */
327    bool SD_msg_chan_started;          /* True if the msg thread is started */
328    pthread_t SD_msg_chan;             /* Message channel thread id */
329    pthread_cond_t term_wait;          /* Wait for job termination */
330    workq_ele_t *work_item;            /* Work queue item if scheduled */
331    BSOCK *ua;                         /* User agent */
332    JOB *job;                          /* Job resource */
333    JOB *verify_job;                   /* Job resource of verify previous job */
334    alist *plugin_config;              /* List of ConfigFile needed for restore */
335    alist *rstorage;                   /* Read storage possibilities */
336    STORE *rstore;                     /* Selected read storage */
337    alist *wstorage;                   /* Write storage possibilities */
338    STORE *wstore;                     /* Selected write storage */
339    CLIENT *client;                    /* Client resource */
340    POOL *pool;                        /* Pool resource = write for migration */
341    POOL *next_pool;                   /* Next pool override */
342    POOL *rpool;                       /* Read pool. Used only in migration */
343    POOL *full_pool;                   /* Full backup pool resource */
344    POOL *vfull_pool;                  /* Virtual Full backup pool resource */
345    POOL *inc_pool;                    /* Incremental backup pool resource */
346    POOL *diff_pool;                   /* Differential backup pool resource */
347    FILESET *fileset;                  /* FileSet resource */
348    CAT *catalog;                      /* Catalog resource */
349    MSGS *messages;                    /* Default message handler */
350    uint32_t SDJobFiles;               /* Number of files written, this job */
351    uint64_t SDJobBytes;               /* Number of bytes processed this job */
352    volatile int32_t SDJobStatus;      /* Storage Job Status */
353    volatile int32_t FDJobStatus;      /* File daemon Job Status */
354    uint32_t ExpectedFiles;            /* Expected restore files */
355    uint32_t MediaId;                  /* DB record IDs associated with this job */
356    uint32_t FileIndex;                /* Last FileIndex processed */
357    utime_t MaxRunSchedTime;           /* max run time in seconds from Initial Scheduled time */
358    POOLMEM *fname;                    /* name to put into catalog */
359    POOLMEM *component_fname;          /* Component info file name */
360    POOLMEM *media_type;               /* Set if user supplied Storage */
361    FILE *component_fd;                /* Component info file desc */
362    JOB_DBR jr;                        /* Job DB record for current job */
363    JOB_DBR previous_jr;               /* previous job database record */
364    JOB *previous_job;                 /* Job resource of migration previous job */
365    JCR *wjcr;                         /* JCR for migration/copy write job */
366    char FSCreateTime[MAX_TIME_LENGTH]; /* FileSet CreateTime as returned from DB */
367    char since[MAX_TIME_LENGTH];       /* since time */
368    char PrevJob[MAX_NAME_LENGTH];     /* Previous job name assiciated with since time */
369    union {
370       JobId_t RestoreJobId;           /* Id specified by UA */
371       JobId_t MigrateJobId;
372    };
373    POOLMEM *client_uname;             /* client uname */
374    POOLMEM *pool_source;              /* Where pool came from */
375    POOLMEM *next_pool_source;         /* Where next pool came from */
376    POOLMEM *rpool_source;             /* Where migrate read pool came from */
377    POOLMEM *rstore_source;            /* Where read storage came from */
378    POOLMEM *wstore_source;            /* Where write storage came from */
379    POOLMEM *catalog_source;           /* Where catalog came from */
380    POOLMEM *next_vol_list;            /* Volumes previously requested */
381    int32_t replace;                   /* Replace option */
382    int32_t NumVols;                   /* Number of Volume used in pool */
383    int32_t reschedule_count;          /* Number of times rescheduled */
384    int32_t FDVersion;                 /* File daemon version number */
385    int32_t SDVersion;                 /* Storage daemon version number */
386    int64_t spool_size;                /* Spool size for this job */
387    utime_t snapshot_retention;        /* Snapshot retention (from Client/Job resource) */
388    volatile bool sd_msg_thread_done;  /* Set when Storage message thread done */
389    bool wasVirtualFull;               /* set if job was VirtualFull */
390    bool IgnoreDuplicateJobChecking;   /* set in migration jobs */
391    bool spool_data;                   /* Spool data in SD */
392    bool acquired_resource_locks;      /* set if resource locks acquired */
393    bool term_wait_inited;             /* Set when cond var inited */
394    bool fn_printed;                   /* printed filename */
395    bool write_part_after_job;         /* Write part after job in SD */
396    bool needs_sd;                     /* set if SD needed by Job */
397    bool cloned;                       /* set if cloned */
398    bool unlink_bsr;                   /* Unlink bsr file created */
399    bool Snapshot;                     /* Snapshot used by FD (VSS on Windows) */
400    bool Encrypt;                      /* Encryption used by FD */
401    bool stats_enabled;                /* Keep all job records in a table for long term statistics */
402    bool no_maxtime;                   /* Don't check Max*Time for this JCR */
403    bool keep_sd_auth_key;             /* Clear or not the SD auth key after connection*/
404    bool use_accurate_chksum;          /* Use or not checksum option in accurate code */
405    bool run_pool_override;
406    bool cmdline_next_pool_override;   /* Next pool is overridden */
407    bool run_next_pool_override;       /* Next pool is overridden */
408    bool run_full_pool_override;
409    bool run_vfull_pool_override;
410    bool run_inc_pool_override;
411    bool run_diff_pool_override;
412    bool sd_canceled;                  /* set if SD canceled */
413    bool RescheduleIncompleteJobs;     /* set if incomplete can be rescheduled */
414    bool use_all_JobIds;               /* Use all jobids present in command line */
415    bool sd_client;                    /* This job runs as SD client */
416    bool dummy_jobmedia;               /* Dummy JobMedia written */
417 #endif /* DIRECTOR_DAEMON */
418
419
420 #ifdef FILE_DAEMON
421    /* File Daemon specific part of JCR */
422    BSOCK *sd_calls_client_bsock;      /* Socket used by SDCallsClient feature */
423    uint32_t num_files_examined;       /* files examined this job */
424    POOLMEM *last_fname;               /* last file saved/verified */
425    POOLMEM *job_metadata;             /* VSS job metadata */
426    pthread_cond_t job_start_wait;     /* Wait for SD to start Job */
427    XACL *xacl;                        /* ACLs and Extended Attributes for backup/restore */
428    int32_t last_type;                 /* type of last file saved/verified */
429    int incremental;                   /* set if incremental for SINCE */
430    time_t last_stat_time;             /* Last time stats sent to Dir */
431    time_t stat_interval;              /* Stats send interval */
432    utime_t mtime;                     /* begin time for SINCE */
433    int listing;                       /* job listing in estimate */
434    long Ticket;                       /* Ticket */
435    char *big_buf;                     /* I/O buffer */
436    POOLMEM *compress_buf;             /* Compression buffer */
437    int32_t compress_buf_size;         /* Length of compression buffer */
438    void *pZLIB_compress_workset;      /* zlib compression session data */
439    void *LZO_compress_workset;        /* lzo compression session data */
440    int32_t replace;                   /* Replace options */
441    int32_t buf_size;                  /* length of buffer */
442    FF_PKT *ff;                        /* Find Files packet */
443    char stored_addr[MAX_NAME_LENGTH]; /* storage daemon address */
444    char PrevJob[MAX_NAME_LENGTH];     /* Previous job name assiciated with since time */
445    uint32_t ExpectedFiles;            /* Expected restore files */
446    uint32_t StartFile;
447    uint32_t EndFile;
448    uint32_t StartBlock;
449    uint32_t EndBlock;
450    pthread_t heartbeat_id;            /* id of heartbeat thread */
451    volatile bool hb_started;          /* heartbeat running */
452    BSOCK *hb_bsock;                   /* duped SD socket */
453    BSOCK *hb_dir_bsock;               /* duped DIR socket */
454    alist *RunScripts;                 /* Commands to run before and after job */
455    CRYPTO_CTX crypto;                 /* Crypto ctx */
456    DIRRES* director;                  /* Director resource */
457    bool Snapshot;                     /* Snapshot used by FD (or VSS) */
458    bool got_metadata;                 /* set when found job_metatdata */
459    bool multi_restore;                /* Dir can do multiple storage restore */
460    bool interactive_session;          /* Use interactive session with the SD */
461    htable *file_list;                 /* Previous file list (accurate mode) */
462    uint64_t base_size;                /* compute space saved with base job */
463    utime_t snapshot_retention;        /* Snapshot retention (from director) */
464    snapshot_manager *snap_mgr;        /* Snapshot manager */
465    VSSClient *pVSSClient;             /* VSS handler */
466 #endif /* FILE_DAEMON */
467
468
469 #ifdef STORAGE_DAEMON
470    /* Storage Daemon specific part of JCR */
471    JCR *next_dev;                     /* next JCR attached to device */
472    JCR *prev_dev;                     /* previous JCR attached to device */
473    dlist *jobmedia_queue;             /* JobMedia queue */
474    char *dir_auth_key;                /* Dir auth key */
475    pthread_cond_t job_start_wait;     /* Wait for FD to start Job */
476    int32_t type;
477    DCR *read_dcr;                     /* device context for reading */
478    DCR *dcr;                          /* device context record */
479    alist *dcrs;                       /* list of dcrs open */
480    POOLMEM *job_name;                 /* base Job name (not unique) */
481    POOLMEM *fileset_name;             /* FileSet */
482    POOLMEM *fileset_md5;              /* MD5 for FileSet */
483    char stored_addr[MAX_NAME_LENGTH]; /* storage daemon address */
484    char client_addr[MAX_NAME_LENGTH]; /* client daemon address */
485    VOL_LIST *VolList;                 /* list to read, freed at the end of the job */
486    int32_t NumWriteVolumes;           /* number of volumes written */
487    int32_t NumReadVolumes;            /* total number of volumes to read */
488    int32_t CurReadVolume;             /* current read volume number */
489    int32_t label_errors;              /* count of label errors */
490    int32_t DIRVersion;                /* Director version number */
491    int32_t FDVersion;                 /* File daemon version number */
492    int32_t SDVersion;                 /* Storage daemon version number */
493    bool session_opened;
494    bool interactive_session;          /* Interactive session with the FD */
495    bool is_ok_data_sent;              /* the "3000 OK data" has been sent */
496    long Ticket;                       /* ticket for this job */
497    bool ignore_label_errors;          /* ignore Volume label errors */
498    bool spool_attributes;             /* set if spooling attributes */
499    bool no_attributes;                /* set if no attributes wanted */
500    int64_t spool_size;                /* Spool size for this job */
501    bool spool_data;                   /* set to spool data */
502    int32_t CurVol;                    /* Current Volume count */
503    DIRRES* director;                  /* Director resource */
504    alist *write_store;                /* list of write storage devices sent by DIR */
505    alist *read_store;                 /* list of read devices sent by DIR */
506    alist *reserve_msgs;               /* reserve fail messages */
507    bool write_part_after_job;         /* Set to write part after job */
508    bool PreferMountedVols;            /* Prefer mounted vols rather than new */
509    bool Resched;                      /* Job may be rescheduled */
510    bool bscan_insert_jobmedia_records; /*Bscan: needs to insert job media records */
511    bool sd_client;                    /* Set if acting as client */
512    bool use_new_match_all;            /* TODO: Remove when the match_bsr() will be well tested */
513
514    /* Parmaters for Open Read Session */
515    BSR *bsr;                          /* Bootstrap record -- has everything */
516    bool mount_next_volume;            /* set to cause next volume mount */
517    uint32_t read_VolSessionId;
518    uint32_t read_VolSessionTime;
519    uint32_t read_StartFile;
520    uint32_t read_EndFile;
521    uint32_t read_StartBlock;
522    uint32_t read_EndBlock;
523    /* Device wait times */
524    int32_t min_wait;
525    int32_t max_wait;
526    int32_t max_num_wait;
527    int32_t wait_sec;
528    int32_t rem_wait_sec;
529    int32_t num_wait;
530 #endif /* STORAGE_DAEMON */
531
532 };
533
534 /*
535  * Setting a NULL in tsd doesn't clear the tsd but instead tells
536  *   pthreads not to call the tsd destructor. Consequently, we
537  *   define this *invalid* jcr address and stuff it in the tsd
538  *   when the jcr is not valid.
539  */
540 #define INVALID_JCR ((JCR *)(-1))
541
542
543 /*
544  * Structure for all daemons that keeps some summary
545  *  info on the last job run.
546  */
547 struct s_last_job {
548    dlink link;
549    int32_t Errors;                    /* FD/SD errors */
550    int32_t JobType;
551    int32_t JobStatus;
552    int32_t JobLevel;
553    uint32_t JobId;
554    uint32_t VolSessionId;
555    uint32_t VolSessionTime;
556    uint32_t JobFiles;
557    uint64_t JobBytes;
558    utime_t start_time;
559    utime_t end_time;
560    char Job[MAX_NAME_LENGTH];
561 };
562
563 extern struct s_last_job last_job;
564 extern DLL_IMP_EXP dlist *last_jobs;
565
566
567 /* The following routines are found in lib/jcr.c */
568 extern int get_next_jobid_from_list(char **p, uint32_t *JobId);
569 extern bool init_jcr_subsystem(void);
570 extern JCR *new_jcr(int size, JCR_free_HANDLER *daemon_free_jcr);
571 extern JCR *get_jcr_by_id(uint32_t JobId);
572 extern JCR *get_jcr_by_session(uint32_t SessionId, uint32_t SessionTime);
573 extern JCR *get_jcr_by_partial_name(char *Job);
574 extern JCR *get_jcr_by_full_name(char *Job);
575 extern JCR *get_next_jcr(JCR *jcr);
576 extern void set_jcr_job_status(JCR *jcr, int JobStatus);
577 extern int DLL_IMP_EXP num_jobs_run;
578
579 #ifdef DEBUG
580 extern void b_free_jcr(const char *file, int line, JCR *jcr);
581 #define free_jcr(jcr) b_free_jcr(__FILE__, __LINE__, (jcr))
582 #else
583 extern void free_jcr(JCR *jcr);
584 #endif
585
586 /* Used to display specific job information after a fatal signal */
587 typedef void (dbg_jcr_hook_t)(JCR *jcr, FILE *fp);
588 extern void dbg_jcr_add_hook(dbg_jcr_hook_t *fct);
589
590 #endif /* __JCR_H_ */