886e1156ab9766b14946d288470b51c80a1a75fb
[debian/amanda] / common-src / amanda.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: amanda.h,v 1.131 2006/07/25 18:27:56 martinea Exp $
28  *
29  * the central header file included by all amanda sources
30  */
31 #ifndef AMANDA_H
32 #define AMANDA_H
33
34 #include <glib.h>
35 #include <glib/gprintf.h>
36
37 #include "amflock.h"
38
39 #ifdef HAVE_CONFIG_H
40 /* use a relative path here to avoid conflicting with Perl's config.h. */
41 #include "../config/config.h"
42 #endif
43
44 /*
45  * Force large file source even if configure guesses wrong.
46  */
47 #ifndef _LARGE_FILE_SOURCE
48 #define _LARGE_FILES 1
49 #endif
50
51 #ifndef _LARGEFILE64_SOURCE
52 #define _LARGEFILE64_SOURCE 1
53 #endif
54
55 #ifndef  _FILE_OFFSET_BITS
56 #define _FILE_OFFSET_BITS 64
57 #endif
58
59 #ifdef HAVE_SYS_TYPES_H
60 #  include <sys/types.h>
61 #endif
62
63 /* gnulib creates this header locally if the system doesn't provide it */
64 #include <stdint.h>
65
66 /*
67  * I would prefer that each Amanda module include only those system headers
68  * that are locally needed, but on most Unixes the system header files are not
69  * protected against multiple inclusion, so this can lead to problems.
70  *
71  * Also, some systems put key files in different places, so by including 
72  * everything here the rest of the system is isolated from such things.
73  */
74 #ifdef HAVE_ALLOCA_H
75 #  include <alloca.h>
76 #endif
77
78 /* from the autoconf documentation */
79 #ifdef HAVE_DIRENT_H
80 #  include <dirent.h>
81 #  define NAMLEN(dirent) strlen((dirent)->d_name)
82 #else
83 #  define dirent direct
84 #  define NAMLEN(dirent) (dirent)->d_namlen
85 #  if HAVE_SYS_NDIR_H
86 #    include <sys/ndir.h>
87 #  endif
88 #  if HAVE_SYS_DIR_H
89 #    include <sys/dir.h>
90 #  endif
91 #  if HAVE_NDIR_H
92 #    include <ndir.h>
93 #  endif
94 #endif
95
96 #ifdef ENABLE_NLS
97 #  include <libintl.h>
98 #  include <locale.h>
99 #  define  plural(String1, String2, Count)                              \
100                 (((Count) == 1) ? (String1) : (String2))
101 #else
102 #  define plural(String1, String2, Count)                               \
103                 (((Count) == 1) ? (String1) : (String2))
104 #  define setlocale(Which, Locale)
105 #  define textdomain(Domain)
106 #  define bindtextdomain(Package, Directory)
107 #  define gettext(String)                       String
108 #  define dgettext(Domain, String)              String
109 #  define dcgettext(Domain, String, Catagory)   String
110 #  define ngettext(String1, String2, Count)                             \
111                 plural((String1), (String2), (Count))
112 #  define dngettext(Domain, String1, String2, Count)                    \
113                 plural((String1), (String2), (Count))
114 #  define dcngettext(Domain, String1, String2, Count, Catagory)         \
115                 plural((String1), (String2), (Count))
116 #endif
117 #define T_(String)                      String
118 #ifndef SWIG /* TODO: make this go away */
119 #define _(String)                       dgettext("amanda", (String))
120 #endif
121
122 #ifdef HAVE_FCNTL_H
123 #  include <fcntl.h>
124 #endif
125
126 #ifdef HAVE_GRP_H
127 #  include <grp.h>
128 #endif
129
130 #if defined(USE_DB_H)
131 #  include <db.h>
132 #else
133 #if defined(USE_DBM_H)
134 #  include <dbm.h>
135 #else
136 #if defined(USE_GDBM_H)
137 #  include <gdbm.h>
138 #else
139 #if defined(USE_NDBM_H)
140 #  include <ndbm.h>
141 #endif
142 #endif
143 #endif
144 #endif
145
146 #ifdef HAVE_NETDB_H
147 #  include <netdb.h>
148 #endif
149
150 #ifdef TIME_WITH_SYS_TIME
151 #  include <sys/time.h>
152 #  include <time.h>
153 #else
154 #  ifdef HAVE_SYS_TIME_H
155 #    include <sys/time.h>
156 #  else
157 #    include <time.h>
158 #  endif
159 #endif
160
161 #ifdef HAVE_LIBC_H
162 #  include <libc.h>
163 #endif
164
165 #ifdef HAVE_STDLIB_H
166 #  include <stdlib.h>
167 #endif
168
169 #ifdef HAVE_LIBGEN_H
170 #  include <libgen.h>
171 #endif
172
173 #ifdef HAVE_STRING_H
174 #  include <string.h>
175 #endif
176
177 #ifdef HAVE_STRINGS_H
178 #  include <strings.h>
179 #endif
180
181 #ifdef HAVE_SYSLOG_H
182 #  include <syslog.h>
183 #endif
184
185 #ifdef HAVE_MATH_H
186 #  include <math.h>
187 #endif
188
189 #ifdef HAVE_SYS_FILE_H
190 #  include <sys/file.h>
191 #endif
192
193 #ifdef HAVE_SYS_IOCTL_H
194 #  include <sys/ioctl.h>
195 #endif
196
197 #ifdef HAVE_LIMITS_H
198 #include <limits.h>
199 #endif
200
201 #ifdef HAVE_SYS_PARAM_H
202 #  include <sys/param.h>
203 #endif
204
205 #if defined(HAVE_SYS_IPC_H) && defined(HAVE_SYS_SHM_H)
206 #  include <sys/ipc.h>
207 #  include <sys/shm.h>
208 #else
209 #  ifdef HAVE_SYS_MMAN_H
210 #    include <sys/mman.h>
211 #  endif
212 #endif
213
214 #ifdef HAVE_SYS_SELECT_H
215 #  include <sys/select.h>
216 #endif
217
218 #ifdef HAVE_SYS_STAT_H
219 #  include <sys/stat.h>
220 #endif
221
222 #ifdef HAVE_SYS_UIO_H
223 #  include <sys/uio.h>
224 #else
225 struct iovec {
226     void *iov_base;
227     int iov_len;
228 };
229 #endif
230
231 #ifdef HAVE_WAIT_H
232 #  include <wait.h>
233 #endif
234
235 #ifdef HAVE_SYS_WAIT_H
236 #  include <sys/wait.h>
237 #endif
238
239 #ifdef HAVE_STDARG_H
240 #include <stdarg.h>
241 #endif
242
243 #ifdef WAIT_USES_INT
244   typedef int amwait_t;
245 # ifndef WEXITSTATUS
246 #  define WEXITSTATUS(stat_val) (*(unsigned*)&(stat_val) >> 8)
247 # endif
248 # ifndef WTERMSIG
249 #  define WTERMSIG(stat_val) (*(unsigned*)&(stat_val) & 0x7F)
250 # endif
251 # ifndef WIFEXITED
252 #  define WIFEXITED(stat_val) ((*(unsigned*)&(stat_val) & 255) == 0)
253 # endif
254 #else
255 # ifdef WAIT_USES_UNION
256    typedef union wait amwait_t;
257 #  ifndef WEXITSTATUS
258 #  define WEXITSTATUS(stat_val) (((amwait_t*)&(stat_val))->w_retcode)
259 #  endif
260 #  ifndef WTERMSIG
261 #   define WTERMSIG(stat_val) (((amwait_t*)&(stat_val))->w_termsig)
262 #  endif
263 #  ifndef WIFEXITED
264 #   define WIFEXITED(stat_val) (WTERMSIG(stat_val) == 0)
265 #  endif
266 # else
267    typedef int amwait_t;
268 #  ifndef WEXITSTATUS
269 #   define WEXITSTATUS(stat_val) (*(unsigned*)&(stat_val) >> 8)
270 #  endif
271 #  ifndef WTERMSIG
272 #   define WTERMSIG(stat_val) (*(unsigned*)&(stat_val) & 0x7F)
273 #  endif
274 #  ifndef WIFEXITED
275 #   define WIFEXITED(stat_val) ((*(unsigned*)&(stat_val) & 255) == 0)
276 #  endif
277 # endif
278 #endif
279
280 #ifndef WIFSIGNALED
281 # define WIFSIGNALED(stat_val)  (WTERMSIG(stat_val) != 0)
282 #endif
283
284 #ifdef HAVE_UNISTD_H
285 #  include <unistd.h>
286 #endif
287
288 #ifdef HAVE_NETINET_IN_H
289 #  include <netinet/in.h>
290 #endif
291
292 #include <ctype.h>
293 #include <errno.h>
294 #include <pwd.h>
295 #include <signal.h>
296 #include <setjmp.h>
297 #include <stdio.h>
298 #include <sys/resource.h>
299 #include <sys/socket.h>
300
301 #ifdef HAVE_ARPA_INET_H
302 #include <arpa/inet.h>
303 #endif
304
305 /* Support for missing IPv6 components */
306 #ifndef HAVE_SOCKADDR_STORAGE
307 #  define sockaddr_storage sockaddr_in
308 #  define ss_family sin_family
309 #endif
310
311 #ifdef WORKING_IPV6
312 #define INET6
313 #endif
314
315 #ifndef INET_ADDRSTRLEN
316 #define INET_ADDRSTRLEN 16
317 #endif
318
319 #if !defined(HAVE_SIGACTION) && defined(HAVE_SIGVEC)
320 /* quick'n'dirty hack for NextStep31 */
321 #  define sa_flags sv_flags
322 #  define sa_handler sv_handler
323 #  define sa_mask sv_mask
324 #  define sigaction sigvec
325 #  define sigemptyset(mask) /* no way to clear pending signals */
326 #endif
327
328 /*
329  * Most Unixen declare errno in <errno.h>, some don't.  Some multithreaded
330  * systems have errno as a per-thread macro.  So, we have to be careful.
331  */
332 #ifndef errno
333 extern int errno;
334 #endif
335
336 /*
337  * Some compilers have int for type of sizeof() some use size_t.
338  * size_t is the one we want...
339  */
340 #define SIZEOF(x)       (size_t)sizeof(x)
341
342
343 /*
344  * Some older BSD systems don't have these FD_ macros, so if not, provide them.
345  */
346 #if !defined(FD_SET) || defined(LINT) || defined(__lint)
347 #  undef FD_SETSIZE
348 #  define FD_SETSIZE      (int)(SIZEOF(fd_set) * CHAR_BIT)
349
350 #  undef FD_SET
351 #  define FD_SET(n, p)    (((fd_set *)(p))->fds_bits[(n)/WORD_BIT] |= (int)((1 << ((n) % WORD_BIT))))
352
353 #  undef FD_CLR
354 #  define FD_CLR(n, p)    (((fd_set *)(p))->fds_bits[(n)/WORD_BIT] &= (int)(~(1 << ((n) % WORD_BIT))))
355
356 #  undef FD_ISSET
357 #  define FD_ISSET(n, p)  (((fd_set *)(p))->fds_bits[(n)/WORD_BIT] & (1 << ((n) % WORD_BIT)))
358
359 #  undef FD_ZERO
360 #  define FD_ZERO(p)      memset((p), 0, SIZEOF(*(p)))
361 #endif
362
363 #ifndef FD_COPY
364 #  define FD_COPY(p, q)   memcpy((q), (p), SIZEOF(*(p)))
365 #endif
366
367
368 /*
369  * Define MAX_HOSTNAME_LENGTH as the size of arrays to hold hostname's.
370  */
371 #undef  MAX_HOSTNAME_LENGTH
372 #define MAX_HOSTNAME_LENGTH 1025
373
374 /*
375  * If void is broken, substitute char.
376  */
377 #ifdef BROKEN_VOID
378 #  define void char
379 #endif
380
381 #define stringize(x) #x
382 #define stringconcat(x, y) x ## y
383
384 /* amanda #days calculation, with roundoff */
385
386 #define SECS_PER_DAY    (24*60*60)
387 #define days_diff(a, b) (int)(((b) - (a) + SECS_PER_DAY/2) / SECS_PER_DAY)
388
389 /* Global constants.  */
390 #ifndef AMANDA_SERVICE_NAME
391 #define AMANDA_SERVICE_NAME "amanda"
392 #endif
393 #ifndef KAMANDA_SERVICE_NAME
394 #define KAMANDA_SERVICE_NAME "kamanda"
395 #endif
396 #ifndef SERVICE_SUFFIX
397 #define SERVICE_SUFFIX ""
398 #endif
399 #ifndef AMANDA_SERVICE_DEFAULT
400 #define AMANDA_SERVICE_DEFAULT  ((in_port_t)10080)
401 #endif
402 #ifndef KAMANDA_SERVICE_DEFAULT
403 #define KAMANDA_SERVICE_DEFAULT ((in_port_t)10081)
404 #endif
405
406 #define am_round(v,u)   ((((v) + (u) - 1) / (u)) * (u))
407 #define am_floor(v,u)   (((v) / (u)) * (u))
408
409 /* Holding disk block size.  Do not even think about changint this!  :-) */
410 #define DISK_BLOCK_KB           32
411 #define DISK_BLOCK_BYTES        (DISK_BLOCK_KB * 1024)
412
413 /* Maximum size of a tape block */
414 /* MAX_TAPE_BLOCK_KB is defined in config.h */
415 /* by configure --with-maxtapeblocksize     */
416 #define MAX_TAPE_BLOCK_BYTES (MAX_TAPE_BLOCK_KB*1024)
417
418 /* Maximum length of tape label, plus one for null-terminator. */
419 #define MAX_TAPE_LABEL_LEN (10240)
420 #define MAX_TAPE_LABEL_BUF (MAX_TAPE_LABEL_LEN+1)
421 #define MAX_TAPE_LABEL_FMT "%10240s"
422
423 #include "debug.h"
424 #include "file.h"
425
426 void *debug_alloc(const char *file, int line, size_t size);
427 void *debug_newalloc(const char *file, int line, void *old, size_t size);
428 char *debug_stralloc(const char *file, int line, const char *str);
429 char *debug_newstralloc(const char *file, int line,
430                 char *oldstr, const char *newstr);
431 char *debug_vstralloc(const char *file, int line, const char *str, ...);
432 char *debug_newvstralloc(const char *file, int line,
433                 char *oldstr, const char *str, ...);
434 char *debug_vstrallocf(const char *file, int line, const char *fmt,
435                 ...) G_GNUC_PRINTF(3, 4);
436 char *debug_newvstrallocf(const char *file, int line, char *oldstr,
437                 const char *fmt, ...) G_GNUC_PRINTF(4, 5);
438
439 /* Usage: vstrextend(foo, "bar, "baz", NULL). Extends the existing 
440  * string, or allocates a brand new one. */
441 char *debug_vstrextend(const char *file, int line, char **oldstr, ...);
442
443 #define alloc(s)                debug_alloc(__FILE__, __LINE__, (s))
444 #define newalloc(p,s)           debug_newalloc(__FILE__, __LINE__, (p), (s))
445 #define stralloc(s)             debug_stralloc(__FILE__, __LINE__, (s))
446 #define newstralloc(p,s)        debug_newstralloc(__FILE__, __LINE__, (p), (s))
447 #define vstralloc(...)          debug_vstralloc(__FILE__,__LINE__,__VA_ARGS__)
448 #define newvstralloc(...)       debug_newvstralloc(__FILE__,__LINE__,__VA_ARGS__)
449 #define vstrallocf(...)         debug_vstrallocf(__FILE__,__LINE__,__VA_ARGS__)
450 #define newvstrallocf(...)      debug_newvstrallocf(__FILE__,__LINE__,__VA_ARGS__)
451 #define vstrextend(...)         debug_vstrextend(__FILE__,__LINE__,__VA_ARGS__)
452
453 #define stralloc2(s1,s2)        vstralloc((s1),(s2),NULL)
454 #define newstralloc2(p,s1,s2)   newvstralloc((p),(s1),(s2),NULL)
455
456 #define vstrallocf(...)         debug_vstrallocf(__FILE__,__LINE__,__VA_ARGS__)
457
458 /*@only@*/ /*@null@*/ char *debug_agets(const char *file, int line, FILE *f);
459 /*@only@*/ /*@null@*/ char *debug_areads(const char *file, int line, int fd);
460 #define agets(f)              debug_agets(__FILE__,__LINE__,(f))
461 #define areads(f)             debug_areads(__FILE__,__LINE__,(f))
462
463 extern int debug_amtable_alloc(const char *file,
464                                   int line,
465                                   void **table,
466                                   size_t *current,
467                                   size_t elsize,
468                                   size_t count,
469                                   int bump,
470                                   void (*init_func)(void *));
471
472 #define amtable_alloc(t,c,s,n,b,f) debug_amtable_alloc(__FILE__,      \
473                                                      __LINE__,        \
474                                                      (t),             \
475                                                      (c),             \
476                                                      (s),             \
477                                                      (n),             \
478                                                      (b),             \
479                                                      (f))
480
481 extern void amtable_free(void **, size_t *);
482
483 char ** safe_env(void);
484 char *  validate_regexp(const char *regex);
485 char *  validate_glob(const char *glob);
486 char *  clean_regex(const char *regex);
487 int     match(const char *regex, const char *str);
488 int     match_glob(const char *glob, const char *str);
489 char *  glob_to_regex(const char *glob);
490 int     match_tar(const char *glob, const char *str);
491 char *  tar_to_regex(const char *glob);
492 int     match_host(const char *glob, const char *host);
493 int     match_disk(const char *glob, const char *disk);
494 int     match_datestamp(const char *dateexp, const char *datestamp);
495 int     match_level(const char *levelexp, const char *level);
496 time_t  unctime(char *timestr);
497
498 /*
499  * amfree(ptr) -- if allocated, release space and set ptr to NULL.
500  *
501  * In general, this should be called instead of just free(), unless
502  * the very next source line sets the pointer to a new value.
503  */
504
505 #define amfree(ptr) do {                                                \
506     if((ptr) != NULL) {                                                 \
507         int e__errno = errno;                                           \
508         free(ptr);                                                      \
509         (ptr) = NULL;                                                   \
510         errno = e__errno;                                               \
511         (void)(ptr);  /* Fix value never used warning at end of routines */ \
512     }                                                                   \
513 } while (0)
514
515 #define strappend(s1,s2) do {                                           \
516     char *t_t_t = (s1) ? stralloc2((s1),(s2)) : stralloc((s2));         \
517     amfree((s1));                                                       \
518     (s1) = t_t_t;                                                       \
519 } while(0)
520
521 /*
522  * Return the number of elements in an array.
523  */
524 #define am_countof(a)   (int)(SIZEOF(a) / SIZEOF((a)[0]))
525
526 /*
527  * min/max.  Don't do something like
528  *
529  *    x = min(y++, z);
530  *
531  * because the increment will be duplicated.
532  */
533 #undef min
534 #undef max
535 #define min(a, b)       ((a) < (b) ? (a) : (b))
536 #define max(a, b)       ((a) > (b) ? (a) : (b))
537
538 /*
539  * Utility bitmask manipulation macros.
540  */
541 #define SET(t, f)       ((t) |= (f))
542 #define CLR(t, f)       ((t) &= ~((unsigned)(f)))
543 #define ISSET(t, f)     ((t) & (f))
544
545 /*
546  * Utility string macros.  All assume a variable holds the current
547  * character and the string pointer points to the next character to
548  * be processed.  Typical setup is:
549  *
550  *  s = buffer;
551  *  ch = *s++;
552  *  skip_whitespace(s, ch);
553  *  ...
554  *
555  * If you advance the pointer "by hand" to skip over something, do
556  * it like this:
557  *
558  *  s += some_amount;
559  *  ch = s[-1];
560  *
561  * Note that ch has the character at the end of the just skipped field.
562  * It is often useful to terminate a string, make a copy, then restore
563  * the input like this:
564  *
565  *  skip_whitespace(s, ch);
566  *  fp = s-1;                   ## save the start
567  *  skip_nonwhitespace(s, ch);  ## find the end
568  *  p[-1] = '\0';               ## temporary terminate
569  *  field = stralloc(fp);       ## make a copy
570  *  p[-1] = ch;                 ## restore the input
571  *
572  * The scanning macros are:
573  *
574  *  skip_whitespace (ptr, var)
575  *    -- skip whitespace, but stops at a newline
576  *  skip_non_whitespace (ptr, var)
577  *    -- skip non whitespace
578  *  skip_non_whitespace_cs (ptr, var)
579  *    -- skip non whitespace, stop at comment
580  *  skip_integer (ptr, var)
581  *    -- skip an integer field
582  *  skip_line (ptr, var)
583  *    -- skip just past the next newline
584  *  strncmp_const (str, const_str)
585  *    -- compare str to const_str, a string constant
586  *  strncmp_const_skip (str, const_var, ptr, var)
587  *    -- like strncmp_const, but skip the string if a match is
588  *       found; this macro only tests for equality, discarding
589  *       ordering information.
590  *
591  * where:
592  *
593  *  ptr -- string pointer
594  *  var -- current character
595  *
596  * These macros copy a non-whitespace field to a new buffer, and should
597  * only be used if dynamic allocation is impossible (fixed size buffers
598  * are asking for trouble):
599  *
600  *  copy_string (ptr, var, field, len, fldptr)
601  *    -- copy a non-whitespace field
602  *  copy_string_cs (ptr, var, field, len, fldptr)
603  *    -- copy a non-whitespace field, stop at comment
604  *
605  * where:
606  *
607  *  ptr -- string pointer
608  *  var -- current character
609  *  field -- area to copy to
610  *  len -- length of area (needs room for null byte)
611  *  fldptr -- work pointer used in move
612  *            if NULL on exit, the field was too small for the input
613  */
614
615 #define STR_SIZE        4096            /* a generic string buffer size */
616 #define NUM_STR_SIZE    128             /* a generic number buffer size */
617
618 #define skip_whitespace(ptr,c) do {                                     \
619     while((c) != '\n' && isspace((int)c)) (c) = *(ptr)++;               \
620 } while(0)
621
622 #define skip_non_whitespace(ptr,c) do {                                 \
623     while((c) != '\0' && !isspace((int)c)) (c) = *(ptr)++;              \
624 } while(0)
625
626 #define skip_non_whitespace_cs(ptr,c) do {                              \
627     while((c) != '\0' && (c) != '#' && !isspace((int)c)) (c) = *(ptr)++;\
628 } while(0)
629
630 #define skip_non_integer(ptr,c) do {                                    \
631     while((c) != '\0' && !isdigit(c)) (c) = *(ptr)++;                   \
632 } while(0)
633
634 #define skip_integer(ptr,c) do {                                        \
635     if((c) == '+' || (c) == '-') (c) = *(ptr)++;                        \
636     while(isdigit(c)) (c) = *(ptr)++;                                   \
637 } while(0)
638
639 #define skip_quoted_string(ptr, c) do {                                 \
640     int iq = 0;                                                         \
641     while (((c) != '\0') && !((iq == 0) && isspace((int)c))) {          \
642         if ((c) == '"') {                                               \
643             iq = !iq;                                                   \
644         } else if (((c) == '\\') && (*(ptr) == '"')) {                  \
645             (ptr)++;                                                    \
646         }                                                               \
647         (c) = *(ptr)++;                                                 \
648     }                                                                   \
649 } while (0)
650
651 #define skip_quoted_line(ptr, c) do {                                   \
652     int iq = 0;                                                         \
653     while((c) && !((iq == 0) && ((c) == '\n'))) {                       \
654         if ((c) == '"')                                                 \
655             iq = !iq;                                                   \
656         (c) = *(ptr)++;                                                 \
657     }                                                                   \
658     if(c)                                                               \
659         (c) = *(ptr)++;                                                 \
660 } while(0)
661
662 #define skip_line(ptr,c) do {                                           \
663     while((c) && (c) != '\n')                                           \
664         (c) = *(ptr)++;                                                 \
665     if(c)                                                               \
666         (c) = *(ptr)++;                                                 \
667 } while(0)
668
669 #define copy_string(ptr,c,f,l,fp) do {                                  \
670     (fp) = (f);                                                         \
671     while((c) != '\0' && !isspace((int)c)) {                            \
672         if((fp) >= (f) + (l) - 1) {                                     \
673             *(fp) = '\0';                                               \
674             (fp) = NULL;                                                \
675             (void)(fp);  /* Fix value never used warning at end of routines */ \
676             break;                                                      \
677         }                                                               \
678         *(fp)++ = (c);                                                  \
679         (c) = *(ptr)++;                                                 \
680     }                                                                   \
681     if(fp)                                                              \
682         *fp = '\0';                                                     \
683 } while(0)
684
685 #define copy_string_cs(ptr,c,f,l,fp) do {                               \
686     (fp) = (f);                                                         \
687     while((c) != '\0' && (c) != '#' && !isspace((int)c)) {              \
688         if((fp) >= (f) + (l) - 1) {                                     \
689             *(fp) = '\0';                                               \
690             (fp) = NULL;                                                \
691             break;                                                      \
692         }                                                               \
693         *(fp)++ = (c);                                                  \
694         (c) = *(ptr)++;                                                 \
695     }                                                                   \
696     if(fp) *fp = '\0';                                                  \
697 } while(0)
698
699 #define is_dot_or_dotdot(s)                                             \
700     ((s)[0] == '.'                                                      \
701      && ((s)[1] == '\0'                                                 \
702          || ((s)[1] == '.' && (s)[2] == '\0')))
703
704 #define strncmp_const(str, cnst)                                        \
705         strncmp((str), (cnst), sizeof((cnst))-1)
706
707 /* (have to roll this up in an expression, so it can be used in if()) */
708 #define strncmp_const_skip(str, cnst, ptr, var)                         \
709         ((strncmp((str), (cnst), sizeof((cnst))-1) == 0)?               \
710                  ((ptr)+=sizeof((cnst))-1, (var)=(ptr)[-1], 0)          \
711                 :1)
712
713 /* from old bsd-security.c */
714 extern int debug;
715 extern int check_security(struct sockaddr_storage *, char *, unsigned long, char **);
716
717 /*
718  * Handle functions which are not always declared on all systems.  This
719  * stops gcc -Wall and lint from complaining.
720  */
721
722 /* AIX #defines accept, and provides a prototype for the alternate name */
723 #if !defined(HAVE_ACCEPT_DECL) && !defined(accept)
724 extern int accept(int s, struct sockaddr *addr, socklen_t *addrlen);
725 #endif
726
727 #ifndef HAVE_ATOF_DECL
728 extern double atof(const char *ptr);
729 #endif
730
731 #ifndef HAVE_BCOPY
732 # define bcopy(from,to,n) ((void)memmove((to), (from), (n)))
733 #else
734 # ifndef HAVE_BCOPY_DECL
735 extern void bcopy(const void *s1, void *s2, size_t n);
736 # endif
737 #endif
738
739 #ifndef HAVE_BIND_DECL
740 extern int bind(int s, const struct sockaddr *name, socklen_t namelen);
741 #endif
742
743 #ifndef HAVE_BZERO
744 #define bzero(s,n) ((void)memset((s),0,(n)))
745 #else
746 # ifndef HAVE_BZERO_DECL
747 extern void bzero(void *s, size_t n);
748 # endif
749 #endif
750
751 #ifndef HAVE_CLOSELOG_DECL
752 extern void closelog(void);
753 #endif
754
755 #ifndef HAVE_CONNECT_DECL
756 extern int connect(int s, struct sockaddr *name, socklen_t namelen);
757 #endif
758
759 #ifndef HAVE_FCLOSE_DECL
760 extern int fclose(FILE *stream);
761 #endif
762
763 #ifndef HAVE_FFLUSH_DECL
764 extern int fflush(FILE *stream);
765 #endif
766
767 #ifndef HAVE_FPRINTF_DECL
768 extern int fprintf(FILE *stream, const char *format, ...);
769 #endif
770
771 #ifndef HAVE_FPUTC_DECL
772 extern int fputc(int c, FILE *stream);
773 #endif
774
775 #ifndef HAVE_FPUTS_DECL
776 extern int fputs(const char *s, FILE *stream);
777 #endif
778
779 #ifndef HAVE_FREAD_DECL
780 extern size_t fread(void *ptr, size_t size, size_t nitems, FILE *stream);
781 #endif
782
783 #ifndef HAVE_FSEEK_DECL
784 extern int fseek(FILE *stream, long offset, int ptrname);
785 #endif
786
787 #ifndef HAVE_FWRITE_DECL
788 extern size_t fwrite(const void *ptr, size_t size, size_t nitems,
789                         FILE *stream);
790 #endif
791
792 #ifndef HAVE_GETHOSTNAME_DECL
793 extern int gethostname(char *name, int namelen);
794 #endif
795
796 #ifndef HAVE_GETOPT_DECL
797 extern char *optarg;
798 extern int getopt(int argc, char * const *argv, const char *optstring);
799 #endif
800
801 /* AIX #defines getpeername, and provides a prototype for the alternate name */
802 #if !defined(HAVE_GETPEERNAME_DECL) && !defined(getpeername)
803 extern int getpeername(int s, struct sockaddr *name, socklen_t *namelen);
804 #endif
805
806 /* AIX #defines getsockname, and provides a prototype for the alternate name */
807 #if !defined(HAVE_GETSOCKNAME_DECL) && !defined(getsockname)
808 extern int getsockname(int s, struct sockaddr *name, socklen_t *namelen);
809 #endif
810
811 #ifndef HAVE_GETSOCKOPT_DECL
812 extern int getsockopt(int s, int level, int optname, char *optval,
813                          socklen_t *optlen);
814 #endif
815
816 #ifndef HAVE_INITGROUPS
817 # define initgroups(name,basegid) 0
818 #else
819 # ifndef HAVE_INITGROUPS_DECL
820 extern int initgroups(const char *name, gid_t basegid);
821 # endif
822 #endif
823
824 #ifndef HAVE_IOCTL_DECL
825 extern int ioctl(int fildes, int request, ...);
826 #endif
827
828 #ifndef isnormal
829 #ifndef HAVE_ISNORMAL
830 #define isnormal(f) (((f) < 0.0) || ((f) > 0.0))
831 #endif
832 #endif
833
834 #ifndef HAVE_LISTEN_DECL
835 extern int listen(int s, int backlog);
836 #endif
837
838 #ifndef HAVE_LSTAT_DECL
839 extern int lstat(const char *path, struct stat *buf);
840 #endif
841
842 #ifndef HAVE_MALLOC_DECL
843 extern void *malloc (size_t size);
844 #endif
845
846 #ifndef HAVE_MEMMOVE_DECL
847 #ifdef HAVE_MEMMOVE
848 extern void *memmove(void *to, const void *from, size_t n);
849 #else
850 extern char *memmove(char *to, /*const*/ char *from, size_t n);
851 #endif
852 #endif
853
854 #ifndef HAVE_MEMSET_DECL
855 extern void *memset(void *s, int c, size_t n);
856 #endif
857
858 #ifndef HAVE_MKTEMP_DECL
859 extern char *mktemp(char *template);
860 #endif
861
862 #ifndef HAVE_MKSTEMP_DECL
863 extern int mkstemp(char *template);
864 #endif
865
866 #ifndef HAVE_MKTIME_DECL
867 extern time_t mktime(struct tm *timeptr);
868 #endif
869
870 #ifndef HAVE_OPENLOG_DECL
871 #ifdef LOG_AUTH
872 extern void openlog(const char *ident, int logopt, int facility);
873 #else
874 extern void openlog(const char *ident, int logopt);
875 #endif
876 #endif
877
878 #ifndef HAVE_PCLOSE_DECL
879 extern int pclose(FILE *stream);
880 #endif
881
882 #ifndef HAVE_PERROR_DECL
883 extern void perror(const char *s);
884 #endif
885
886 #ifndef HAVE_PRINTF_DECL
887 extern int printf(const char *format, ...);
888 #endif
889
890 #ifndef HAVE_PUTS_DECL
891 extern int puts(const char *s);
892 #endif
893
894 #ifndef HAVE_REALLOC_DECL
895 extern void *realloc(void *ptr, size_t size);
896 #endif
897
898 /* AIX #defines recvfrom, and provides a prototype for the alternate name */
899 #if !defined(HAVE_RECVFROM_DECL) && !defined(recvfrom)
900 extern int recvfrom(int s, char *buf, int len, int flags,
901                        struct sockaddr *from, socklen_t *fromlen);
902 #endif
903
904 #ifndef HAVE_REMOVE_DECL
905 extern int remove(const char *path);
906 #endif
907
908 #ifndef HAVE_RENAME_DECL
909 extern int rename(const char *old, const char *new);
910 #endif
911
912 #ifndef HAVE_REWIND_DECL
913 extern void rewind(FILE *stream);
914 #endif
915
916 #ifndef HAVE_RUSEROK_DECL
917 extern int ruserok(const char *rhost, int suser,
918                       const char *ruser, const char *luser);
919 #endif
920
921 #ifndef HAVE_SELECT_DECL
922 extern int select(int nfds,
923                      SELECT_ARG_TYPE *readfds,
924                      SELECT_ARG_TYPE *writefds,
925                      SELECT_ARG_TYPE *exceptfds,
926                      struct timeval *timeout);
927 #endif
928
929 #ifndef HAVE_SENDTO_DECL
930 extern int sendto(int s, const char *msg, int len, int flags,
931                      const struct sockaddr *to, int tolen);
932 #endif
933
934 #ifdef HAVE_SETRESGID
935 #define setegid(x)      setresgid((gid_t)-1,(x),(gid_t)-1)
936 #ifndef HAVE_SETRESGID_DECL
937 extern int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
938 #endif
939 #else
940 #ifndef HAVE_SETEGID_DECL
941 extern int setegid(gid_t egid);
942 #endif
943 #endif
944
945 #ifdef HAVE_SETRESUID
946 #define seteuid(x)      setresuid((uid_t)-1,(x),(uid_t)-1)
947 #ifndef HAVE_SETRESUID_DECL
948 extern int setresuid(uid_t ruid, uid_t euid, uid_t suid);
949 #endif
950 #else
951 #ifndef HAVE_SETEUID_DECL
952 extern int seteuid(uid_t euid);
953 #endif
954 #endif
955
956 #ifndef HAVE_SETPGID_DECL
957 #ifdef HAVE_SETPGID
958 extern int setpgid(pid_t pid, pid_t pgid);
959 #endif
960 #endif
961
962 #ifndef HAVE_SETPGRP_DECL
963 #ifdef SETPGRP_VOID
964 extern pid_t setpgrp(void);
965 #else
966 extern pid_t setpgrp(pid_t pgrp, pid_t pid);
967 #endif
968 #endif
969
970 #ifndef HAVE_SETSOCKOPT_DECL
971 extern int setsockopt(int s, int level, int optname,
972                          const char *optval, int optlen);
973 #endif
974
975 #ifdef HAVE_SHMGET
976 #ifndef HAVE_SHMAT_DECL
977 extern void *shmat(int shmid, const SHM_ARG_TYPE *shmaddr, int shmflg);
978 #endif
979
980 #ifndef HAVE_SHMCTL_DECL
981 extern int shmctl(int shmid, int cmd, struct shmid_ds *buf);
982 #endif
983
984 #ifndef HAVE_SHMDT_DECL
985 extern int shmdt(SHM_ARG_TYPE *shaddr);
986 #endif
987
988 #ifndef HAVE_SHMGET_DECL
989 extern int shmget(key_t key, size_t size, int shmflg);
990 #endif
991 #endif
992
993 #ifndef HAVE_SNPRINTF_DECL
994 #include "arglist.h"
995 int snprintf(char *buf, size_t len, const char *format,...)
996      G_GNUC_PRINTF(3,4);
997 #endif
998 #ifndef HAVE_VSNPRINTF_DECL
999 #include "arglist.h"
1000 int vsnprintf(char *buf, size_t len, const char *format, va_list ap);
1001 #endif
1002
1003 #ifndef HAVE_SOCKET_DECL
1004 extern int socket(int domain, int type, int protocol);
1005 #endif
1006
1007 #ifndef HAVE_SOCKETPAIR_DECL
1008 extern int socketpair(int domain, int type, int protocol, int sv[2]);
1009 #endif
1010
1011 #ifndef HAVE_SSCANF_DECL
1012 extern int sscanf(const char *s, const char *format, ...);
1013 #endif
1014
1015 #ifndef HAVE_STRCASECMP_DECL
1016 extern int strcasecmp(const char *s1, const char *s2);
1017 #endif
1018
1019 #ifndef HAVE_STRERROR_DECL
1020 extern char *strerror(int errnum);
1021 #endif
1022
1023 #ifndef HAVE_STRFTIME_DECL
1024 extern size_t strftime(char *s, size_t maxsize, const char *format,
1025                           const struct tm *timeptr);
1026 #endif
1027
1028 #ifndef HAVE_STRNCASECMP_DECL
1029 extern int strncasecmp(const char *s1, const char *s2, int n);
1030 #endif
1031
1032 #ifndef HAVE_SYSLOG_DECL
1033 extern void syslog(int priority, const char *logstring, ...)
1034      G_GNUC_PRINTF(2,3);
1035 #endif
1036
1037 #ifndef HAVE_SYSTEM_DECL
1038 extern int system(const char *string);
1039 #endif
1040
1041 #ifndef HAVE_TIME_DECL
1042 extern time_t time(time_t *tloc);
1043 #endif
1044
1045 #ifndef HAVE_TOLOWER_DECL
1046 extern int tolower(int c);
1047 #endif
1048
1049 #ifndef HAVE_TOUPPER_DECL
1050 extern int toupper(int c);
1051 #endif
1052
1053 #ifndef HAVE_UNGETC_DECL
1054 extern int ungetc(int c, FILE *stream);
1055 #endif
1056
1057 #ifndef HAVE_VFPRINTF_DECL
1058 #include "arglist.h"
1059 extern int vfprintf(FILE *stream, const char *format, va_list ap);
1060 #endif
1061
1062 #ifndef HAVE_VPRINTF_DECL
1063 #include "arglist.h"
1064 extern int vprintf(const char *format, va_list ap);
1065 #endif
1066
1067 /* gnulib-only includes (hence "" instead of <>) */
1068 #include "getaddrinfo.h"
1069 #include "inet_ntop.h"
1070
1071 #if !defined(S_ISCHR) && defined(_S_IFCHR) && defined(_S_IFMT)
1072 #define S_ISCHR(mode) (((mode) & _S_IFMT) == _S_IFCHR)
1073 #endif
1074
1075 #if !defined(S_ISREG) && defined(_S_IFREG) && defined(_S_IFMT)
1076 #define S_ISREG(mode) (((mode) & _S_IFMT) == _S_IFREG)
1077 #endif
1078
1079 #ifndef HAVE_WAITPID
1080 #ifdef HAVE_WAIT4
1081 #define waitpid(pid,status,options) wait4(pid,status,options,0)
1082 #else
1083 extern pid_t waitpid(pid_t pid, amwait_t *stat_loc, int options);
1084 #endif
1085 #endif
1086
1087 #ifndef HAVE_WRITEV_DECL
1088 extern ssize_t writev(int fd, const struct iovec *iov, int iovcnt);
1089 #endif
1090
1091 #ifndef STDIN_FILENO
1092 #define STDIN_FILENO 0
1093 #endif
1094
1095 #ifndef STDOUT_FILENO
1096 #define STDOUT_FILENO 1
1097 #endif
1098
1099 #ifndef STDERR_FILENO
1100 #define STDERR_FILENO 2
1101 #endif
1102
1103 /* S_ISDIR is not defined on Nextstep */
1104 #ifndef S_ISDIR
1105 #if defined(_S_IFMT) && defined(_S_IFDIR)
1106 #define S_ISDIR(mode)   (((mode) & (_S_IFMT)) == (_S_IFDIR))
1107 #else
1108 #error Don t know how to define S_ISDIR
1109 #endif
1110 #endif
1111
1112 #if SIZEOF_SIZE_T == SIZEOF_INT
1113 #  define        SIZE_T_ATOI    (size_t)atoi
1114 #  ifndef SIZE_MAX
1115 #    define      SIZE_MAX       G_MAXUINT
1116 #  endif
1117 #else
1118 #  define        SIZE_T_ATOI    (size_t)atol
1119 #  ifndef SIZE_MAX
1120 #    define      SIZE_MAX       ULONG_MAX
1121 #  endif
1122 #endif
1123
1124 #if SIZEOF_SSIZE_T == SIZEOF_INT
1125 #  define        SSIZE_T_ATOI   (ssize_t)atoi
1126 #  ifndef SSIZE_MAX
1127 #    define      SSIZE_MAX      INT_MAX
1128 #  endif
1129 #  ifndef SSIZE_MIN
1130 #    define      SSIZE_MIN      INT_MIN
1131 #  endif
1132 #else
1133 #  define        SSIZE_T_ATOI   (ssize_t)atol
1134 #  ifndef SSIZE_MAX
1135 #    define      SSIZE_MAX      LONG_MAX
1136 #  endif
1137 #  ifndef SSIZE_MIN
1138 #    define      SSIZE_MIN      LONG_MIN
1139 #  endif
1140 #endif
1141
1142 #if SIZEOF_TIME_T == SIZEOF_INT
1143 #  define        TIME_T_ATOI    (time_t)atoi
1144 #  ifndef TIME_MAX
1145 #    define      TIME_MAX       G_MAXUINT
1146 #  endif
1147 #else
1148 #  define        TIME_T_ATOI    (time_t)atol
1149 #  ifndef TIME_MAX
1150 #    define      TIME_MAX       ULONG_MAX
1151 #  endif
1152 #endif
1153
1154 #if SIZEOF_OFF_T > SIZEOF_LONG
1155 #  ifdef HAVE_ATOLL
1156 #    define        OFF_T_ATOI    (off_t)atoll
1157 #  else
1158 #    define        OFF_T_ATOI    (off_t)atol
1159 #  endif
1160 #  ifdef HAVE_STRTOLL
1161 #    define        OFF_T_STRTOL  (off_t)strtoll
1162 #  else
1163 #    define        OFF_T_STRTOL  (off_t)strtol
1164 #  endif
1165 #else
1166 #  if SIZEOF_OFF_T == SIZEOF_LONG
1167 #    define        OFF_T_ATOI    (off_t)atol
1168 #    define        OFF_T_STRTOL  (off_t)strtol
1169 #  else
1170 #    define        OFF_T_ATOI    (off_t)atoi
1171 #    define        OFF_T_STRTOL  (off_t)strtol
1172 #  endif
1173 #endif
1174
1175 #if SIZEOF_OFF_T == 8
1176 #  ifdef OFF_MAX
1177 #    define AM64_MAX (off_t)(OFF_MAX)
1178 #  else
1179 #    define AM64_MAX (off_t)(9223372036854775807LL)
1180 #  endif
1181 #  ifdef OFF_MIN
1182 #    define AM64_MIN (off_t)(OFF_MIN)
1183 #  else
1184 #    define AM64_MIN (off_t)(-9223372036854775807LL -1LL)
1185 #  endif
1186 #else
1187 #if SIZEOF_LONG == 8
1188 #  ifdef LONG_MAX
1189 #    define AM64_MAX (off_t)(LONG_MAX)
1190 #  else
1191 #    define AM64_MAX (off_t)9223372036854775807L
1192 #  endif
1193 #  ifdef LONG_MIN
1194 #    define AM64_MIN (off_t)(LONG_MIN)
1195 #  else
1196 #    define AM64_MIN (off_t)(-9223372036854775807L -1L)
1197 #  endif
1198 #else
1199 #if SIZEOF_LONG_LONG == 8
1200 #  ifdef LONG_LONG_MAX
1201 #    define AM64_MAX (off_t)(LONG_LONG_MAX)
1202 #  else
1203 #    define AM64_MAX (off_t)9223372036854775807LL
1204 #  endif
1205 #  ifdef LONG_LONG_MIN
1206 #    define AM64_MIN (off_t)(LONG_LONG_MIN)
1207 #  else
1208 #    define AM64_MIN (off_t)(-9223372036854775807LL -1LL)
1209 #  endif
1210 #else
1211 #if SIZEOF_INTMAX_T == 8
1212 #  ifdef INTMAX_MAX
1213 #    define AM64_MAX (off_t)(INTMAX_MAX)
1214 #  else
1215 #    define AM64_MAX (off_t)9223372036854775807LL
1216 #  endif
1217 #  ifdef INTMAX_MIN
1218 #    define AM64_MIN (off_t)(INTMAX_MIN)
1219 #  else
1220 #    define AM64_MIN (off_t)(-9223372036854775807LL -1LL)
1221 #  endif
1222 #else  /* no 64 bits type found, use long. */
1223 #  ifdef LONG_MAX
1224 #    define AM64_MAX (off_t)(LONG_MAX)
1225 #  else
1226 #    define AM64_MAX (off_t)2147483647
1227 #  endif
1228 #  ifdef LONG_MIN
1229 #    define AM64_MIN (off_t)(LONG_MIN)
1230 #  else
1231 #    define AM64_MIN (off_t)(-2147483647 -1)
1232 #  endif
1233 #endif
1234 #endif
1235 #endif
1236 #endif
1237
1238 #define BIND_CYCLE_RETRIES      120             /* Total of 30 minutes */
1239
1240 #define MAX_DUMPERS 63
1241
1242 #ifndef NI_MAXHOST
1243 #define NI_MAXHOST 1025
1244 #endif
1245
1246 typedef enum {
1247     KENCRYPT_NONE,      /* krb5 encryption not enabled */
1248     KENCRYPT_WILL_DO,   /* krb5 encryption will be enabled once amanda
1249                            protocol stream is closed */
1250     KENCRYPT_YES        /* krb5 encryption enabled on all stream */
1251 } kencrypt_type;
1252
1253 #endif  /* !AMANDA_H */