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