]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/jcr.h
Fix conio.c on FreeBSD + fix string concat on FreeBSD
[bacula/bacula] / bacula / src / jcr.h
1 /*
2  * Bacula JCR Structure definition for Daemons and the Library
3  *  This definition consists of a "Global" definition common
4  *  to all daemons and used by the library routines, and a
5  *  daemon specific part that is enabled with #defines.
6  *
7  * Kern Sibbald, Nov MM
8  *
9  *   Version $Id$
10  */
11
12 /*
13    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
14
15    This program is free software; you can redistribute it and/or
16    modify it under the terms of the GNU General Public License as
17    published by the Free Software Foundation; either version 2 of
18    the License, or (at your option) any later version.
19
20    This program is distributed in the hope that it will be useful,
21    but WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23    General Public License for more details.
24
25    You should have received a copy of the GNU General Public
26    License along with this program; if not, write to the Free
27    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
28    MA 02111-1307, USA.
29
30  */
31  
32 #ifndef __JCR_H_
33 #define __JCR_H_ 1
34
35 /* Backup/Verify level code. These are stored in the DB */
36 #define L_FULL                   'F'  /* Full backup */
37 #define L_INCREMENTAL            'I'  /* since last backup */
38 #define L_DIFFERENTIAL           'D'  /* since last full backup */
39 #define L_SINCE                  'S'
40 #define L_VERIFY_CATALOG         'C'  /* verify from catalog */
41 #define L_VERIFY_INIT            'V'  /* verify save (init DB) */
42 #define L_VERIFY_VOLUME_TO_CATALOG 'O'  /* verify Volume to catalog entries */
43 #define L_VERIFY_DISK_TO_CATALOG 'd'  /* verify Disk attributes to catalog */
44 #define L_VERIFY_DATA            'A'  /* verify data on volume */
45 #define L_BASE                   'B'  /* Base level job */
46 #define L_NONE                   ' '  /* None, for Restore and Admin */
47
48
49 /* Job Types. These are stored in the DB */
50 #define JT_BACKUP                'B'  /* Backup Job */
51 #define JT_VERIFY                'V'  /* Verify Job */
52 #define JT_RESTORE               'R'  /* Restore Job */
53 #define JT_CONSOLE               'C'  /* console program */
54 #define JT_SYSTEM                'S'  /* internal system "job" */
55 #define JT_ADMIN                 'D'  /* admin job */
56 #define JT_ARCHIVE               'A'
57
58 /* Job Status. Some of these are stored in the DB */
59 #define JS_Created               'C'  /* created but not yet running */
60 #define JS_Running               'R'  /* running */
61 #define JS_Blocked               'B'  /* blocked */
62 #define JS_Terminated            'T'  /* terminated normally */
63 #define JS_ErrorTerminated       'E'  /* Job terminated in error */
64 #define JS_Error                 'e'  /* Non-fatal error */
65 #define JS_FatalError            'f'  /* Fatal error */
66 #define JS_Differences           'D'  /* Verify differences */
67 #define JS_Canceled              'A'  /* canceled by user */
68 #define JS_WaitFD                'F'  /* waiting on File daemon */
69 #define JS_WaitSD                'S'  /* waiting on the Storage daemon */
70 #define JS_WaitMedia             'm'  /* waiting for new media */
71 #define JS_WaitMount             'M'  /* waiting for Mount */
72 #define JS_WaitStoreRes          's'  /* Waiting for storage resource */
73 #define JS_WaitJobRes            'j'  /* Waiting for job resource */
74 #define JS_WaitClientRes         'c'  /* Waiting for Client resource */
75 #define JS_WaitMaxJobs           'd'  /* Waiting for maximum jobs */
76 #define JS_WaitStartTime         't'  /* Waiting for start time */
77 #define JS_WaitPriority          'p'  /* Waiting for higher priority jobs to finish */
78
79 #define job_canceled(jcr) \
80   (jcr->JobStatus == JS_Canceled || \
81    jcr->JobStatus == JS_ErrorTerminated || \
82    jcr->JobStatus == JS_FatalError)
83
84
85 struct JCR;
86 typedef void (JCR_free_HANDLER)(JCR *jcr);
87
88 /* Job Control Record (JCR) */
89 struct JCR {
90    /* Global part of JCR common to all daemons */
91    JCR *next;
92    JCR *prev;
93    volatile int use_count;            /* use count */
94    pthread_t my_thread_id;            /* id of thread controlling jcr */
95    pthread_mutex_t mutex;             /* jcr mutex */
96    BSOCK *dir_bsock;                  /* Director bsock or NULL if we are him */
97    BSOCK *store_bsock;                /* Storage connection socket */
98    BSOCK *file_bsock;                 /* File daemon connection socket */
99    JCR_free_HANDLER *daemon_free_jcr; /* Local free routine */
100    POOLMEM *errmsg;                   /* edited error message */
101    char Job[MAX_NAME_LENGTH];         /* Unique name of this Job */
102    uint32_t JobId;                    /* Director's JobId */
103    uint32_t VolSessionId;
104    uint32_t VolSessionTime;
105    uint32_t JobFiles;                 /* Number of files written, this job */
106    uint32_t JobErrors;                /* */
107    uint64_t JobBytes;                 /* Number of bytes processed this job */
108    uint64_t ReadBytes;                /* Bytes read -- before compression */
109    uint32_t Errors;                   /* Number of non-fatal errors */
110    volatile int JobStatus;            /* ready, running, blocked, terminated */ 
111    int JobType;                       /* backup, restore, verify ... */
112    int JobLevel;                      /* Job level */
113    int JobPriority;                   /* Job priority */
114    int authenticated;                 /* set when client authenticated */
115    time_t sched_time;                 /* job schedule time, i.e. when it should start */
116    time_t start_time;                 /* when job actually started */
117    time_t run_time;                   /* used for computing speed */
118    time_t end_time;                   /* job end time */
119    POOLMEM *VolumeName;               /* Volume name desired -- pool_memory */
120    POOLMEM *client_name;              /* client name */
121    POOLMEM *RestoreBootstrap;         /* Bootstrap file to restore */
122    char *sd_auth_key;                 /* SD auth key */
123    MSGS *jcr_msgs;                    /* Copy of message resource -- actually used */
124    uint32_t ClientId;                 /* Client associated with Job */
125    char *where;                       /* prefix to restore files to */
126    int prefix_links;                  /* Prefix links with Where path */
127    int cached_pnl;                    /* cached path length */
128    POOLMEM *cached_path;              /* cached path */
129
130    /* Daemon specific part of JCR */
131    /* This should be empty in the library */
132
133 #ifdef DIRECTOR_DAEMON
134    /* Director Daemon specific part of JCR */
135    pthread_t SD_msg_chan;             /* Message channel thread id */
136    pthread_cond_t term_wait;          /* Wait for job termination */
137    workq_ele_t *work_item;            /* Work queue item if scheduled */
138    volatile bool sd_msg_thread_done;  /* Set when Storage message thread terms */
139    BSOCK *ua;                         /* User agent */
140    JOB *job;                          /* Job resource */
141    STORE *store;                      /* Storage resource */
142    CLIENT *client;                    /* Client resource */
143    POOL *pool;                        /* Pool resource */
144    FILESET *fileset;                  /* FileSet resource */
145    CAT *catalog;                      /* Catalog resource */
146    MSGS *messages;                    /* Default message handler */
147    uint32_t SDJobFiles;               /* Number of files written, this job */
148    uint64_t SDJobBytes;               /* Number of bytes processed this job */
149    uint32_t SDErrors;                 /* Number of non-fatal errors */
150    volatile int SDJobStatus;          /* Storage Job Status */
151    volatile int FDJobStatus;          /* File daemon Job Status */
152    B_DB *db;                          /* database pointer */
153    uint32_t MediaId;                  /* DB record IDs associated with this job */
154    uint32_t PoolId;                   /* Pool record id */
155    FileId_t FileId;                   /* Last file id inserted */
156    uint32_t FileIndex;                /* Last FileIndex processed */
157    POOLMEM *fname;                    /* name to put into catalog */
158    int fn_printed;                    /* printed filename */
159    POOLMEM *stime;                    /* start time for incremental/differential */
160    JOB_DBR jr;                        /* Job DB record for current job */
161    JOB_DBR *verify_jr;                /* Pointer to target job */
162    uint32_t RestoreJobId;             /* Id specified by UA */
163    POOLMEM *client_uname;             /* client uname */ 
164    int replace;                       /* Replace option */
165    bool acquired_resource_locks;      /* set if resource locks acquired */
166    int NumVols;                       /* Number of Volume used in pool */
167    int reschedule_count;              /* Number of times rescheduled */
168 #endif /* DIRECTOR_DAEMON */
169
170
171 #ifdef FILE_DAEMON
172    /* File Daemon specific part of JCR */
173    uint32_t num_files_examined;       /* files examined this job */
174    POOLMEM *last_fname;               /* last file saved/verified */
175    /*********FIXME********* add missing files and files to be retried */
176    int incremental;                   /* set if incremental for SINCE */
177    time_t mtime;                      /* begin time for SINCE */
178    int mtime_only;                    /* compare only mtime and not ctime as well */
179    int listing;                       /* job listing in estimate */
180    long Ticket;                       /* Ticket */
181    char *big_buf;                     /* I/O buffer */
182    POOLMEM *compress_buf;             /* Compression buffer */
183    int32_t compress_buf_size;         /* Length of compression buffer */
184    int replace;                       /* Replace options */
185    int buf_size;                      /* length of buffer */
186    void *ff;                          /* Find Files packet */
187    char stored_addr[MAX_NAME_LENGTH]; /* storage daemon address */
188    uint32_t StartFile;
189    uint32_t EndFile;
190    uint32_t StartBlock;
191    uint32_t EndBlock;
192    pthread_t heartbeat_id;            /* id of heartbeat thread */
193    volatile BSOCK *hb_bsock;          /* duped SD socket */
194    POOLMEM *RunAfterJob;              /* Command to run after job */
195 #endif /* FILE_DAEMON */
196
197
198 #ifdef STORAGE_DAEMON
199    /* Storage Daemon specific part of JCR */
200    JCR *next_dev;                     /* next JCR attached to device */
201    JCR *prev_dev;                     /* previous JCR attached to device */
202    pthread_cond_t job_start_wait;     /* Wait for FD to start Job */
203    int type;
204    DEVRES *device;                    /* device to use */
205    VOLUME_CAT_INFO VolCatInfo;        /* Catalog info for desired volume */
206    POOLMEM *job_name;                 /* base Job name (not unique) */
207    POOLMEM *fileset_name;             /* FileSet */
208    POOLMEM *fileset_md5;              /* MD5 for FileSet */
209    POOLMEM *pool_name;                /* pool to use */
210    POOLMEM *pool_type;                /* pool type to use */
211    POOLMEM *media_type;               /* media type */
212    POOLMEM *dev_name;                 /* device name */
213    VOL_LIST *VolList;                 /* list to read */
214    int32_t NumVolumes;                /* number of volumes used */
215    int32_t CurVolume;                 /* current volume number */
216    int spool_attributes;              /* set if spooling attributes */
217    int no_attributes;                 /* set if no attributes wanted */
218    int label_status;                  /* device volume label status */
219    int label_errors;                  /* count of label errors */
220    int session_opened;
221    DEV_RECORD rec;                    /* Read/Write record */
222    long Ticket;                       /* ticket for this job */
223    uint32_t VolFirstIndex;            /* First file index this Volume */
224    uint32_t VolLastIndex;             /* Last file index this Volume */
225    uint32_t FileIndex;                /* Current File Index */
226    uint32_t EndFile;                  /* End file written */
227    uint32_t StartFile;                /* Start write file */
228    uint32_t StartBlock;               /* Start write block */
229    uint32_t EndBlock;                 /* Ending block written */
230    bool NewVol;                       /* set when new Volume mounted */
231    bool WroteVol;                     /* set when Volume written */
232    bool NewFile;                      /* set when EOF written */
233    int CurVol;                        /* Current Volume count */
234
235    uint32_t FileId;                   /* Last file id inserted */
236
237    /* Parmaters for Open Read Session */
238    BSR *bsr;                          /* Bootstrap record -- has everything */
239    uint32_t read_VolSessionId;
240    uint32_t read_VolSessionTime;
241    uint32_t read_StartFile;
242    uint32_t read_EndFile;
243    uint32_t read_StartBlock;
244    uint32_t read_EndBlock;
245
246 #endif /* STORAGE_DAEMON */
247
248 }; 
249
250
251
252 /* 
253  * Structure for all daemons that keeps some summary
254  *  info on the last job run.
255  */
256 struct s_last_job {
257    dlink link;
258    int NumJobs;
259    int JobType;
260    int JobStatus;
261    int JobLevel;
262    uint32_t JobId;
263    uint32_t VolSessionId;
264    uint32_t VolSessionTime;
265    uint32_t JobFiles;
266    uint64_t JobBytes;
267    time_t start_time;
268    time_t end_time;
269    char Job[MAX_NAME_LENGTH];
270 };
271
272 extern struct s_last_job last_job;               
273 extern dlist *last_jobs;
274
275
276 /* The following routines are found in lib/jcr.c */
277 extern bool init_jcr_subsystem(void);
278 extern JCR *new_jcr(int size, JCR_free_HANDLER *daemon_free_jcr);
279 extern void free_locked_jcr(JCR *jcr);
280 extern JCR *get_jcr_by_id(uint32_t JobId);
281 extern JCR *get_jcr_by_session(uint32_t SessionId, uint32_t SessionTime);
282 extern JCR *get_jcr_by_partial_name(char *Job);
283 extern JCR *get_jcr_by_full_name(char *Job);
284 extern JCR *get_next_jcr(JCR *jcr);
285 extern void lock_jcr_chain();
286 extern void unlock_jcr_chain();
287 extern void set_jcr_job_status(JCR *jcr, int JobStatus);
288
289 #ifdef DEBUG
290 extern void b_free_jcr(char *file, int line, JCR *jcr);
291 #define free_jcr(jcr) b_free_jcr(__FILE__, __LINE__, (jcr))
292 #else
293 extern void free_jcr(JCR *jcr);
294 #endif
295
296 #endif /* __JCR_H_ */