]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/baconfig.h
Fix restore spanning volumes
[bacula/bacula] / bacula / src / baconfig.h
1 /*
2  * General header file configurations that apply to
3  * all daemons.  System dependent stuff goes here.
4  *
5  *   Version $Id$
6  */
7 /*
8    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2 of
13    the License, or (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public
21    License along with this program; if not, write to the Free
22    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
23    MA 02111-1307, USA.
24
25  */
26
27
28 #ifndef _BACONFIG_H
29 #define _BACONFIG_H 1
30
31 /* Bacula common configuration defines */
32
33 #define TRUE  1
34 #define FALSE 0
35
36 #ifndef ETIME
37 #define ETIME ETIMEDOUT
38 #endif
39
40 #ifdef PROTOTYPES
41 # define __PROTO(p)     p
42 #else
43 # define __PROTO(p)     ()
44 #endif
45
46 #ifdef DEBUG
47 #define ASSERT(x) if (!(x)) { \
48    char *jcr = NULL; \
49    Emsg1(M_ERROR, 0, "Failed ASSERT: %s\n", #x); \
50    jcr[0] = 0; }
51 #else
52 #define ASSERT(x)
53 #endif
54
55 /* Allow printing of NULL pointers */
56 #define NPRT(x) (x)?(x):"*None*" 
57
58 #ifdef ENABLE_NLS
59 #include <libintl.h>
60 #define _(s) gettext((s))
61 #define N_(s) (s)
62 #else
63 #undef _
64 #define _(s) (s)
65 #undef N_
66 #define N_(s) (s)
67 #undef textdomain
68 #define textdomain(d)
69 /* #define bindtextdomain(p, d) */
70 #endif
71
72
73 /* This should go away! ****FIXME***** */
74 #define MAXSTRING 500
75
76 /* Maximum length to edit time/date */
77 #define MAX_TIME_LENGTH 50  
78
79 /* Maximum Name length including EOS */
80 #define MAX_NAME_LENGTH 128
81
82 /* Maximume number of user entered command args */
83 #define MAX_CMD_ARGS 30
84
85 /* All tape operations MUST be a multiple of this */
86 #define TAPE_BSIZE 1024
87 #if !defined(DEV_BSIZE) && defined(BSIZE)
88 #define DEV_BSIZE BSIZE
89 #endif
90
91 #ifndef DEV_BSIZE
92 #define DEV_BSIZE 512
93 #endif
94
95 /*
96  * Maximum number of bytes that you can push into a
97  * socket.
98  */
99 #define MAX_NETWORK_BUFFER_SIZE (32 * 1024)
100
101 /*
102  * Stream definitions.  Once defined these must NEVER
103  *   change as they go on the storage media.
104  * Note, the following streams are passed from the SD to the DIR
105  *   so that they may be put into the catalog (actually only the
106  *   stat packet part of the attr record is put in the catalog.
107  *
108  *   STREAM_UNIX_ATTRIBUTES
109  *   STREAM_UNIX_ATTRIBUTES_EX
110  *   STREAM_MD5_SIGNATURE
111  *   STREAM_SHA1_SIGNATURE
112  */
113 #define STREAM_UNIX_ATTRIBUTES    1    /* Generic Unix attributes */
114 #define STREAM_FILE_DATA          2    /* Standard uncompressed data */
115 #define STREAM_MD5_SIGNATURE      3    /* MD5 signature for the file */
116 #define STREAM_GZIP_DATA          4    /* GZip compressed file data */
117 /* Extended Unix attributes with Win32 Extended data.  Deprecated. */
118 #define STREAM_UNIX_ATTRIBUTES_EX 5    /* Extended Unix attr for Win32 EX */
119 #define STREAM_SPARSE_DATA        6    /* Sparse data stream */
120 #define STREAM_SPARSE_GZIP_DATA   7
121 #define STREAM_PROGRAM_NAMES      8    /* program names for program data */
122 #define STREAM_PROGRAM_DATA       9    /* Data needing program */
123 #define STREAM_SHA1_SIGNATURE    10    /* SHA1 signature for the file */
124 #define STREAM_WIN32_DATA        11    /* Win32 BackupRead data */
125 #define STREAM_WIN32_GZIP_DATA   12    /* Gzipped Win32 BackupRead data */
126
127 /* 
128  *  File type (Bacula defined).           
129  *  NOTE!!! These are saved in the Attributes record on the tape, so
130  *          do not change them. If need be, add to them.
131  *
132  *  This is stored as 32 bits on tape, but only FT_MASK bits are
133  *    used for the file type. The upper bits are used to indicate
134  *    additional optional fields in the attribute record.
135  */
136 #define FT_MASK       0xFFFF          /* Bits used by FT (type) */
137 #define FT_LNKSAVED   1               /* hard link to file already saved */  
138 #define FT_REGE       2               /* Regular file but empty */
139 #define FT_REG        3               /* Regular file */
140 #define FT_LNK        4               /* Soft Link */
141 #define FT_DIR        5               /* Directory */
142 #define FT_SPEC       6               /* Special file -- chr, blk, fifo, sock */
143 #define FT_NOACCESS   7               /* Not able to access */
144 #define FT_NOFOLLOW   8               /* Could not follow link */
145 #define FT_NOSTAT     9               /* Could not stat file */
146 #define FT_NOCHG     10               /* Incremental option, file not changed */
147 #define FT_DIRNOCHG  11               /* Incremental option, directory not changed */
148 #define FT_ISARCH    12               /* Trying to save archive file */
149 #define FT_NORECURSE 13               /* No recursion into directory */
150 #define FT_NOFSCHG   14               /* Different file system, prohibited */
151 #define FT_NOOPEN    15               /* Could not open directory */
152 #define FT_RAW       16               /* Raw block device */
153 #define FT_FIFO      17               /* Raw fifo device */
154
155 /* Definitions for upper part of type word (see above). */
156 #define AR_DATA_STREAM (1<<16)        /* Data stream id present */
157
158 /*
159  * Internal code for Signature types
160  */
161 #define NO_SIG   0
162 #define MD5_SIG  1
163 #define SHA1_SIG 2
164
165 /* Size of File Address stored in STREAM_SPARSE_DATA. Do NOT change! */
166 #define SPARSE_FADDR_SIZE (sizeof(uint64_t))
167
168
169 /* This is for dumb compilers/libraries like Solaris. Linux GCC
170  * does it correctly, so it might be worthwhile
171  * to remove the isascii(c) with ifdefs on such
172  * "smart" systems.
173  */
174 #define B_ISSPACE(c) (isascii((int)(c)) && isspace((int)(c)))
175 #define B_ISALPHA(c) (isascii((int)(c)) && isalpha((int)(c)))
176 #define B_ISUPPER(c) (isascii((int)(c)) && isupper((int)(c)))
177 #define B_ISDIGIT(c) (isascii((int)(c)) && isdigit((int)(c)))
178
179
180 typedef void (HANDLER)();
181 typedef int (INTHANDLER)();
182
183 #ifdef SETPGRP_VOID
184 # define SETPGRP_ARGS(x, y) /* No arguments */
185 #else
186 # define SETPGRP_ARGS(x, y) (x, y)
187 #endif
188
189 #ifndef S_ISLNK
190 #define S_ISLNK(m) (((m) & S_IFM) == S_IFLNK)
191 #endif
192
193 /* Added by KES to deal with Win32 systems */
194 #ifndef S_ISWIN32
195 #define S_ISWIN32 020000
196 #endif
197
198 #ifndef INADDR_NONE
199 #define INADDR_NONE ((unsigned long) -1)
200 #endif
201
202 #ifdef TIME_WITH_SYS_TIME
203 # include <sys/time.h>
204 # include <time.h>
205 #else
206 # ifdef HAVE_SYS_TIME_H
207 #  include <sys/time.h>
208 # else
209 #  include <time.h>
210 # endif
211 #endif
212
213 #ifndef O_BINARY
214 #define O_BINARY 0
215 #endif
216
217 #ifndef O_NOFOLLOW
218 #define O_NOFOLLOW 0
219 #endif
220
221 #ifndef MODE_RW
222 #define MODE_RW 0666
223 #endif
224
225 #ifdef DEBUG_MUTEX
226 extern void _p(char *file, int line, pthread_mutex_t *m);
227 extern void _v(char *file, int line, pthread_mutex_t *m);
228
229 #define P(x) _p(__FILE__, __LINE__, &(x))
230 #define V(x) _v(__FILE__, __LINE__, &(x))
231
232 #else
233
234 /* These probably should be subroutines */
235 #define P(x) \
236    do { int errstat; if ((errstat=pthread_mutex_lock(&(x)))) \
237       e_msg(__FILE__, __LINE__, M_ABORT, 0, "Mutex lock failure. ERR=%s\n",\
238            strerror(errstat)); \
239    } while(0)
240
241 #define V(x) \
242    do { int errstat; if ((errstat=pthread_mutex_unlock(&(x)))) \
243          e_msg(__FILE__, __LINE__, M_ABORT, 0, "Mutex unlock failure. ERR=%s\n",\
244            strerror(errstat)); \
245    } while(0)
246
247 #endif /* DEBUG_MUTEX */
248
249 /* These probably should be subroutines */
250 #define Pw(x) \
251    do { int errstat; if ((errstat=rwl_writelock(&(x)))) \
252       e_msg(__FILE__, __LINE__, M_ABORT, 0, "Write lock lock failure. ERR=%s\n",\
253            strerror(errstat)); \
254    } while(0)
255
256 #define Vw(x) \
257    do { int errstat; if ((errstat=rwl_writeunlock(&(x)))) \
258          e_msg(__FILE__, __LINE__, M_ABORT, 0, "Write lock unlock failure. ERR=%s\n",\
259            strerror(errstat)); \
260    } while(0)
261
262
263 /*
264  * The digit following Dmsg and Emsg indicates the number of substitutions in
265  * the message string. We need to do this kludge because non-GNU compilers
266  * do not handle varargs #defines.
267  */
268 /* Debug Messages that are printed */
269 #ifdef DEBUG
270 #define Dmsg0(lvl, msg)             d_msg(__FILE__, __LINE__, lvl, msg)
271 #define Dmsg1(lvl, msg, a1)         d_msg(__FILE__, __LINE__, lvl, msg, a1)
272 #define Dmsg2(lvl, msg, a1, a2)     d_msg(__FILE__, __LINE__, lvl, msg, a1, a2)
273 #define Dmsg3(lvl, msg, a1, a2, a3) d_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3)
274 #define Dmsg4(lvl, msg, arg1, arg2, arg3, arg4) d_msg(__FILE__, __LINE__, lvl, msg, arg1, arg2, arg3, arg4)
275 #define Dmsg5(lvl, msg, a1, a2, a3, a4, a5) d_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5)
276 #define Dmsg6(lvl, msg, a1, a2, a3, a4, a5, a6) d_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6)
277 #define Dmsg7(lvl, msg, a1, a2, a3, a4, a5, a6, a7) d_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6, a7)
278 #define Dmsg8(lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8) d_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8)
279 #define Dmsg9(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9) d_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9)
280 #define Dmsg10(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) d_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
281 #define Dmsg11(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11) d_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)
282 #define Dmsg12(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) d_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)
283 #define Dmsg13(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13) d_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)
284 #else
285 #define Dmsg0(lvl, msg)
286 #define Dmsg1(lvl, msg, a1)
287 #define Dmsg2(lvl, msg, a1, a2)
288 #define Dmsg3(lvl, msg, a1, a2, a3)
289 #define Dmsg4(lvl, msg, arg1, arg2, arg3, arg4)
290 #define Dmsg5(lvl, msg, a1, a2, a3, a4, a5)
291 #define Dmsg6(lvl, msg, a1, a2, a3, a4, a5, a6)
292 #define Dmsg7(lvl, msg, a1, a2, a3, a4, a5, a6, a7)
293 #define Dmsg8(lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8)
294 #define Dmsg11(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)
295 #define Dmsg12(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)
296 #define Dmsg13(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)
297 #endif /* DEBUG */
298
299 #ifdef TRACE_FILE
300 #define Tmsg0(lvl, msg)             t_msg(__FILE__, __LINE__, lvl, msg)
301 #define Tmsg1(lvl, msg, a1)         t_msg(__FILE__, __LINE__, lvl, msg, a1)
302 #define Tmsg2(lvl, msg, a1, a2)     t_msg(__FILE__, __LINE__, lvl, msg, a1, a2)
303 #define Tmsg3(lvl, msg, a1, a2, a3) t_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3)
304 #define Tmsg4(lvl, msg, arg1, arg2, arg3, arg4) t_msg(__FILE__, __LINE__, lvl, msg, arg1, arg2, arg3, arg4)
305 #define Tmsg5(lvl, msg, a1, a2, a3, a4, a5) t_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5)
306 #define Tmsg6(lvl, msg, a1, a2, a3, a4, a5, a6) t_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6)
307 #define Tmsg7(lvl, msg, a1, a2, a3, a4, a5, a6, a7) t_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6, a7)
308 #define Tmsg8(lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8) t_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8)
309 #define Tmsg9(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9) t_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9)
310 #define Tmsg10(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) t_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
311 #define Tmsg11(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11) t_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)
312 #define Tmsg12(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) t_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)
313 #define Tmsg13(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13) t_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)
314 #else
315 #define Tmsg0(lvl, msg)
316 #define Tmsg1(lvl, msg, a1)
317 #define Tmsg2(lvl, msg, a1, a2)
318 #define Tmsg3(lvl, msg, a1, a2, a3)
319 #define Tmsg4(lvl, msg, arg1, arg2, arg3, arg4)
320 #define Tmsg5(lvl, msg, a1, a2, a3, a4, a5)
321 #define Tmsg6(lvl, msg, a1, a2, a3, a4, a5, a6)
322 #define Tmsg7(lvl, msg, a1, a2, a3, a4, a5, a6, a7)
323 #define Tmsg8(lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8)
324 #define Tmsg11(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)
325 #define Tmsg12(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)
326 #define Tmsg13(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)
327 #endif /* TRACE_FILE */
328
329
330
331 /* Messages that are printed (uses d_msg) */
332 #define Pmsg0(lvl, msg)             p_msg(__FILE__, __LINE__, lvl, msg)
333 #define Pmsg1(lvl, msg, a1)         p_msg(__FILE__, __LINE__, lvl, msg, a1)
334 #define Pmsg2(lvl, msg, a1, a2)     p_msg(__FILE__, __LINE__, lvl, msg, a1, a2)
335 #define Pmsg3(lvl, msg, a1, a2, a3) p_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3)
336 #define Pmsg4(lvl, msg, arg1, arg2, arg3, arg4) p_msg(__FILE__, __LINE__, lvl, msg, arg1, arg2, arg3, arg4)
337 #define Pmsg5(lvl, msg, a1, a2, a3, a4, a5) p_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5)
338 #define Pmsg6(lvl, msg, a1, a2, a3, a4, a5, a6) p_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6)
339 #define Pmsg7(lvl, msg, a1, a2, a3, a4, a5, a6, a7) p_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6, a7)
340 #define Pmsg8(lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8) p_msg(__FILE__, __LINE__, lvl, msg, a1, a2, a3, a4, a5, a6, a7, a8)
341 #define Pmsg9(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9) p_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9)
342 #define Pmsg10(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10) p_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
343 #define Pmsg11(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11) p_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)
344 #define Pmsg12(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) p_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12)
345 #define Pmsg13(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13) p_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13)
346 #define Pmsg14(lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14) p_msg(__FILE__,__LINE__,lvl,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14)
347
348        
349 /* Daemon Error Messages that are delivered according to the message resource */
350 #define Emsg0(typ, lvl, msg)             e_msg(__FILE__, __LINE__, typ, lvl, msg)
351 #define Emsg1(typ, lvl, msg, a1)         e_msg(__FILE__, __LINE__, typ, lvl, msg, a1)
352 #define Emsg2(typ, lvl, msg, a1, a2)     e_msg(__FILE__, __LINE__, typ, lvl, msg, a1, a2)
353 #define Emsg3(typ, lvl, msg, a1, a2, a3) e_msg(__FILE__, __LINE__, typ, lvl, msg, a1, a2, a3)
354 #define Emsg4(typ, lvl, msg, a1, a2, a3, a4) e_msg(__FILE__, __LINE__, typ, lvl, msg, a1, a2, a3, a4)
355 #define Emsg5(typ, lvl, msg, a1, a2, a3, a4, a5) e_msg(__FILE__, __LINE__, typ, lvl, msg, a1, a2, a3, a4, a5)
356 #define Emsg6(typ, lvl, msg, a1, a2, a3, a4, a5, a6) e_msg(__FILE__, __LINE__, typ, lvl, msg, a1, a2, a3, a4, a5, a6)
357
358 /* Job Error Messages that are delivered according to the message resource */
359 #define Jmsg0(jcr, typ, lvl, msg)             j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg)
360 #define Jmsg1(jcr, typ, lvl, msg, a1)         j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg, a1)
361 #define Jmsg2(jcr, typ, lvl, msg, a1, a2)     j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg, a1, a2)
362 #define Jmsg3(jcr, typ, lvl, msg, a1, a2, a3) j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg, a1, a2, a3)
363 #define Jmsg4(jcr, typ, lvl, msg, a1, a2, a3, a4) j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg, a1, a2, a3, a4)
364 #define Jmsg5(jcr, typ, lvl, msg, a1, a2, a3, a4, a5) j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg, a1, a2, a3, a4, a5)
365 #define Jmsg6(jcr, typ, lvl, msg, a1, a2, a3, a4, a5, a6) j_msg(__FILE__, __LINE__, jcr, typ, lvl, msg, a1, a2, a3, a4, a5, a6)
366
367
368 /* Memory Messages that are edited into a Pool Memory buffer */
369 #define Mmsg0(buf, msg)             m_msg(__FILE__, __LINE__, buf, msg)
370 #define Mmsg1(buf, msg, a1)         m_msg(__FILE__, __LINE__, buf, msg, a1)
371 #define Mmsg2(buf, msg, a1, a2)     m_msg(__FILE__, __LINE__, buf, msg, a1, a2)
372 #define Mmsg3(buf, msg, a1, a2, a3) m_msg(__FILE__, __LINE__, buf, msg, a1, a2, a3)
373 #define Mmsg4(buf, msg, a1, a2, a3, a4) m_msg(__FILE__, __LINE__, buf, msg, a1, a2, a3, a4)
374 #define Mmsg5(buf, msg, a1, a2, a3, a4, a5) m_msg(__FILE__, __LINE__, buf, msg, a1, a2, a3, a4, a5)
375 #define Mmsg6(buf, msg, a1, a2, a3, a4, a5, a6) m_msg(__FILE__, __LINE__, buf, msg, a1, a2, a3, a4, a5, a6)
376 #define Mmsg7(buf, msg, a1, a2, a3, a4, a5, a6, a7) m_msg(__FILE__, __LINE__, buf, msg, a1, a2, a3, a4, a5, a6)
377 #define Mmsg8(buf,msg,a1,a2,a3,a4,a5,a6,a7,a8) m_msg(__FILE__,__LINE__,buf,msg,a1,a2,a3,a4,a5,a6)
378 #define Mmsg11(buf,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11) m_msg(__FILE__,__LINE__,buf,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11)
379 #define Mmsg15(buf,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15) m_msg(__FILE__,__LINE__,buf,msg,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12,a13,a14,a15)
380
381 /* Edit message into Pool Memory buffer -- no __FILE__ and __LINE__ */
382 int  Mmsg(POOLMEM **msgbuf, char *fmt,...);
383
384
385 struct JCR;
386 void d_msg(char *file, int line, int level, char *fmt,...);
387 void p_msg(char *file, int line, int level, char *fmt,...);
388 void e_msg(char *file, int line, int type, int level, char *fmt,...);
389 void j_msg(char *file, int line, JCR *jcr, int type, int level, char *fmt,...);
390 int  m_msg(char *file, int line, POOLMEM **msgbuf, char *fmt,...);
391
392
393 /* Use our strdup with smartalloc */
394 #undef strdup
395 #define strdup(buf) bad_call_on_strdup_use_bstrdup(buf)
396
397 /* Use our fgets which handles interrupts */
398 #undef fgets
399 #define fgets(x,y,z) bfgets((x), (y), (z))
400
401 #ifdef DEBUG
402 #define bstrdup(str) strcpy((char *) b_malloc(__FILE__,__LINE__,strlen((str))+1),(str))
403 #else
404 #define bstrdup(str) strcpy((char *) bmalloc(strlen((str))+1),(str))
405 #endif
406
407 #ifdef DEBUG
408 #define bmalloc(size) b_malloc(__FILE__, __LINE__, (size))
409 #endif
410
411 #ifdef __alpha__
412 #define OSF 1
413 #endif
414
415 #ifdef HAVE_SUN_OS
416    /* 
417     * On Solaris 2.5, threads are not timesliced by default, so we need to
418     * explictly increase the conncurrency level.
419     */
420 #include <thread.h>
421 #define set_thread_concurrency(x)  thr_setconcurrency(x)
422 extern int thr_setconcurrency(int);
423 #define SunOS 1
424
425 #else
426
427
428 /* Not needed on most systems */
429 #define set_thread_concurrency(x)
430
431 #endif
432
433 #ifdef HAVE_DARWIN_OS
434 /* Apparently someone forgot to wrap getdomainname as a C function */
435 extern "C" int getdomainname(char *name, size_t len);
436
437 /* Darwin lib fnmatch() doesn't work, so use our own */
438 #undef HAVE_FNMATCH
439 #endif
440
441 #ifdef HAVE_CYGWIN
442 /* They don't really have it */
443 #undef HAVE_GETDOMAINNAME
444 #endif
445
446 #ifdef HAVE_AIX_OS
447 #endif
448  
449 /* This probably should be done on a machine by machine basic, but it works */
450 #define ALIGN_SIZE (sizeof(double))
451 #define BALIGN(x) (((x) + ALIGN_SIZE - 1) & ~(ALIGN_SIZE -1))
452
453
454 /* Added by KES to deal with Win32 systems */
455 #ifndef S_ISWIN32
456 #define S_ISWIN32 020000
457 #endif
458
459 /*
460  * Replace codes needed in both file routines and non-file routines
461  * Job replace codes -- in "replace"   
462  */
463 #define REPLACE_ALWAYS   'a'
464 #define REPLACE_IFNEWER  'w'
465 #define REPLACE_NEVER    'n'
466 #define REPLACE_IFOLDER  'o'
467
468 #endif /* _BACONFIG_H */