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