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