Changed the call to write_batch_csum_info() to the latest syntax.
[rsync/rsync.git] / rsync.h
CommitLineData
c627d613 1/*
a039749b 2 Copyright (C) by Andrew Tridgell 1996, 2000
c627d613 3 Copyright (C) Paul Mackerras 1996
736a6a29 4 Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
c627d613
AT
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
0de40240 21
d41c7d02
DD
22#define False 0
23#define True 1
24
c627d613
AT
25#define BLOCK_SIZE 700
26#define RSYNC_RSH_ENV "RSYNC_RSH"
8dd99390 27#define RSYNC_RSH_IO_ENV "RSYNC_RSH_IO"
7b8356d0 28
c627d613 29#define RSYNC_NAME "rsync"
30e8c8e1
DD
30#define RSYNCD_SYSCONF "/etc/rsyncd.conf"
31#define RSYNCD_USERCONF "rsyncd.conf"
f0fca04e 32
5e71c444 33#define DEFAULT_LOCK_FILE "/var/run/rsyncd.lock"
f7632fc6
AT
34#define URL_PREFIX "rsync://"
35
c627d613
AT
36#define BACKUP_SUFFIX "~"
37
1b01b295 38/* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
6543dc0c 39 incompatible with older versions :-( */
1b01b295
AT
40#define CHAR_OFFSET 0
41
42
3333ffbd 43#define FLAG_DELETE (1<<0)
4fe159a8 44#define SAME_MODE (1<<1)
02a279a7 45#define EXTENDED_FLAGS (1<<2)
9d352719 46#define SAME_RDEV_pre28 EXTENDED_FLAGS /* Only use in protocols < 28 */
4fe159a8
AT
47#define SAME_UID (1<<3)
48#define SAME_GID (1<<4)
49#define SAME_DIR (1<<5)
50#define SAME_NAME SAME_DIR
51#define LONG_NAME (1<<6)
52#define SAME_TIME (1<<7)
02a279a7 53#define SAME_HIGH_RDEV (1<<8)
a6d89d18
WD
54#define HAS_INODE_DATA (1<<9)
55#define SAME_DEV (1<<10)
4fe159a8 56
c627d613 57/* update this if you make incompatible changes */
a6d89d18 58#define PROTOCOL_VERSION 28
063393d6
MP
59
60/* We refuse to interoperate with versions that are not in this range.
61 * Note that we assume we'll work with later versions: the onus is on
62 * people writing them to make sure that they don't send us anything
63 * we won't understand.
64 *
1b2db7ae
S
65 * Interoperation with old but supported protocol versions
66 * should cause a warning to be printed. At a future date
67 * the old protocol will become the minimum and
68 * compatibility code removed.
69 *
91c4da3f
S
70 * There are two possible explanations for the limit at
71 * MAX_PROTOCOL_VERSION: either to allow new major-rev versions that
72 * do not interoperate with us, and (more likely) so that we can
73 * detect an attempt to connect rsync to a non-rsync server, which is
74 * unlikely to begin by sending a byte between MIN_PROTOCL_VERSION and
75 * MAX_PROTOCOL_VERSION. */
76
3f55bd5d 77#define MIN_PROTOCOL_VERSION 19
1b2db7ae
S
78#define OLD_PROTOCOL_VERSION 20
79#define MAX_PROTOCOL_VERSION 40
c627d613 80
9486289c
AT
81#define RSYNC_PORT 873
82
d867229b 83#define SPARSE_WRITE_SIZE (1024)
dc5ddbcc 84#define WRITE_SIZE (32*1024)
34ccb63e 85#define CHUNK_SIZE (32*1024)
4440b8aa 86#define MAX_MAP_SIZE (256*1024)
e3fe383a 87#define IO_BUFFER_SIZE (4092)
c627d613 88
e2d22fee
WD
89#define IOERR_GENERAL (1<<0) /* For backward compatibility, this must == 1 */
90#define IOERR_VANISHED (1<<1)
91
874895d5 92#define MAX_ARGS 1000
f0fca04e 93
8d9dc9f9 94#define MPLEX_BASE 7
ff41a59f 95
4762db4f
WD
96#define NO_EXCLUDES 0
97#define SERVER_EXCLUDES 1
98#define ALL_EXCLUDES 2
99
100#define MISSING_OK 0
101#define MISSING_FATAL 1
102
103#define ADD_INCLUDE 1
104#define ADD_EXCLUDE 0
105
e420b9d8
MP
106/* Log values. I *think* what these mean is: FLOG goes to the server
107 * logfile; FERROR and FINFO try to end up on the client, with
108 * different levels of filtering. */
a039749b 109enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
7bec6a5c 110
65417579
AT
111#include "errcode.h"
112
c627d613
AT
113#include "config.h"
114
e3217f14 115/* The default RSYNC_RSH is always set in config.h. */
24d95c03 116
c627d613 117#include <sys/types.h>
6ed67e6d 118
c627d613
AT
119#ifdef HAVE_UNISTD_H
120#include <unistd.h>
121#endif
122#include <stdio.h>
3591c066 123#include <stddef.h>
c627d613
AT
124
125#ifdef HAVE_SYS_PARAM_H
126#include <sys/param.h>
127#endif
128
d7b305fd
AT
129#ifdef HAVE_STDLIB_H
130#include <stdlib.h>
38b02c13 131#endif
59192f56
WD
132
133#if defined(HAVE_MALLOC_H) && (defined(HAVE_MALLINFO) || !defined(HAVE_STDLIB_H))
134#include <malloc.h>
d7b305fd
AT
135#endif
136
fdd71e17
AT
137#ifdef HAVE_SYS_SOCKET_H
138#include <sys/socket.h>
139#endif
140
d7b305fd
AT
141#ifdef HAVE_STRING_H
142#include <string.h>
c627d613
AT
143#endif
144
c627d613
AT
145#ifdef TIME_WITH_SYS_TIME
146#include <sys/time.h>
147#include <time.h>
148#else
149#ifdef HAVE_SYS_TIME_H
150#include <sys/time.h>
151#else
152#include <time.h>
153#endif
154#endif
155
156#ifdef HAVE_FCNTL_H
157#include <fcntl.h>
158#else
159#ifdef HAVE_SYS_FCNTL_H
160#include <sys/fcntl.h>
161#endif
162#endif
163
164#include <sys/stat.h>
165
94481d91
AT
166#ifdef HAVE_SYS_IOCTL_H
167#include <sys/ioctl.h>
168#endif
169
170#ifdef HAVE_SYS_FILIO_H
171#include <sys/filio.h>
172#endif
173
c627d613
AT
174#include <signal.h>
175#ifdef HAVE_SYS_WAIT_H
176#include <sys/wait.h>
177#endif
178#ifdef HAVE_CTYPE_H
179#include <ctype.h>
180#endif
181#ifdef HAVE_GRP_H
182#include <grp.h>
183#endif
184#include <errno.h>
185
c627d613
AT
186#ifdef HAVE_UTIME_H
187#include <utime.h>
188#endif
189
8bf73749
AT
190#ifdef HAVE_SYS_SELECT_H
191#include <sys/select.h>
192#endif
193
773f2bd4
AT
194#ifdef HAVE_SYS_MODE_H
195/* apparently AIX needs this for S_ISLNK */
05a6556d 196#ifndef S_ISLNK
773f2bd4
AT
197#include <sys/mode.h>
198#endif
05a6556d 199#endif
773f2bd4 200
932be9aa 201#ifdef HAVE_GLOB_H
874895d5
AT
202#include <glob.h>
203#endif
204
f6c34742
AT
205/* these are needed for the uid/gid mapping code */
206#include <pwd.h>
207#include <grp.h>
208
9486289c 209#include <stdarg.h>
f0fca04e
AT
210#include <netinet/in.h>
211#include <arpa/inet.h>
212#include <netdb.h>
ff8b29b8 213#include <syslog.h>
6c8f5373 214#include <sys/file.h>
9486289c 215
e8f5b936
AT
216#if HAVE_DIRENT_H
217# include <dirent.h>
218#else
219# define dirent direct
220# if HAVE_SYS_NDIR_H
221# include <sys/ndir.h>
222# endif
223# if HAVE_SYS_DIR_H
224# include <sys/dir.h>
225# endif
226# if HAVE_NDIR_H
227# include <ndir.h>
228# endif
229#endif
230
231#ifdef HAVE_COMPAT_H
232#include <compat.h>
233#endif
234
1bfbf40b
MP
235#include <assert.h>
236
e8f5b936 237
f0fca04e
AT
238#define BOOL int
239
c627d613
AT
240#ifndef uchar
241#define uchar unsigned char
242#endif
243
debb4505
AT
244#if HAVE_UNSIGNED_CHAR
245#define schar signed char
246#else
247#define schar char
248#endif
249
c627d613
AT
250#ifndef int32
251#if (SIZEOF_INT == 4)
252#define int32 int
253#elif (SIZEOF_LONG == 4)
254#define int32 long
255#elif (SIZEOF_SHORT == 4)
256#define int32 short
8de330a3
AT
257#else
258/* I hope this works */
259#define int32 int
f3737e06 260#define LARGE_INT32
c627d613
AT
261#endif
262#endif
263
264#ifndef uint32
265#define uint32 unsigned int32
266#endif
267
bcacc18b
AT
268#if HAVE_OFF64_T
269#define OFF_T off64_t
270#define STRUCT_STAT struct stat64
271#else
272#define OFF_T off_t
273#define STRUCT_STAT struct stat
274#endif
275
702d0c45
S
276#if HAVE_OFF64_T
277#define int64 off64_t
702d0c45 278#elif (SIZEOF_LONG == 8)
3bee6733
AT
279#define int64 long
280#elif (SIZEOF_INT == 8)
281#define int64 int
282#elif HAVE_LONGLONG
71c46176
AT
283#define int64 long long
284#else
736a6a29 285/* As long as it gets... */
71c46176 286#define int64 off_t
3bee6733 287#define NO_INT64
71c46176 288#endif
c627d613 289
9c28e526
S
290#if (SIZEOF_LONG == 8)
291#define uint64 unsigned long
292#elif (SIZEOF_INT == 8)
293#define uint64 unsigned int
294#elif HAVE_LONGLONG
295#define uint64 unsigned long long
296#else
297/* As long as it gets... */
298#define uint64 unsigned off_t
299#endif
300
6abd193f
MP
301/* Starting from protocol version 26, we always use 64-bit
302 * ino_t and dev_t internally, even if this platform does not
303 * allow files to have 64-bit inums. That's because the
304 * receiver needs to find duplicate (dev,ino) tuples to detect
305 * hardlinks, and it might have files coming from a platform
306 * that has 64-bit inums.
307 *
308 * The only exception is if we're on a platform with no 64-bit type at
309 * all.
310 *
311 * Because we use read_longint() to get these off the wire, if you
312 * transfer devices or hardlinks with dev or inum > 2**32 to a machine
313 * with no 64-bit types then you will get an overflow error. Probably
314 * not many people have that combination of machines, and you can
315 * avoid it by not preserving hardlinks or not transferring device
316 * nodes. It's not clear that any other behaviour is better.
317 *
318 * Note that if you transfer devices from a 64-bit-devt machine (say,
319 * Solaris) to a 32-bit-devt machine (say, Linux-2.2/x86) then the
320 * device numbers will be truncated. But it's a kind of silly thing
321 * to do anyhow.
b9df3bf2
MP
322 *
323 * FIXME: In future, we should probable split the device number into
324 * major/minor, and transfer the two parts as 32-bit ints. That gives
325 * you somewhat more of a chance that they'll come from a big machine
326 * to a little one in a useful way.
10f83cf4
MP
327 *
328 * FIXME: Really we need an unsigned type, and we perhaps ought to
329 * cope with platforms on which this is an unsigned int or even a
330 * struct. Later.
6abd193f 331 */
fbc0bc4d
S
332#define INO64_T uint64
333#define DEV64_T uint64
c29ee43d 334
c627d613
AT
335#ifndef MIN
336#define MIN(a,b) ((a)<(b)?(a):(b))
337#endif
338
339#ifndef MAX
340#define MAX(a,b) ((a)>(b)?(a):(b))
341#endif
342
d41c7d02
DD
343#ifndef MAXHOSTNAMELEN
344#define MAXHOSTNAMELEN 256
345#endif
346
c627d613 347/* the length of the md4 checksum */
ebb0a6f6 348#define MD4_SUM_LENGTH 16
c627d613 349#define SUM_LENGTH 16
195bd906
S
350#define SHORT_SUM_LENGTH 2
351#define BLOCKSUM_BIAS 10
c627d613
AT
352
353#ifndef MAXPATHLEN
354#define MAXPATHLEN 1024
355#endif
356
52d3e106
S
357#ifndef NAME_MAX
358#define NAME_MAX 255
359#endif
360
0473e2a1
AT
361#ifndef INADDR_NONE
362#define INADDR_NONE 0xffffffff
363#endif
364
bda41fa5
WD
365#ifndef IN_LOOPBACKNET
366#define IN_LOOPBACKNET 127
367#endif
368
a60e2dca
S
369#define GID_NONE (gid_t) -1
370
c627d613 371struct file_struct {
3ec4dd97 372 time_t modtime;
bcacc18b 373 OFF_T length;
3ec4dd97 374 mode_t mode;
6abd193f
MP
375
376 INO64_T inode;
377 /** Device this file lives upon */
378 DEV64_T dev;
379
380 /** If this is a device node, the device number. */
381 DEV64_T rdev;
3ec4dd97
AT
382 uid_t uid;
383 gid_t gid;
384 char *basename;
385 char *dirname;
386 char *basedir;
387 char *link;
2d0bb8eb 388 char *sum;
4dd4c727 389 unsigned short flags;
c627d613
AT
390};
391
4440b8aa 392
3d382777
AT
393#define ARENA_SIZE (32 * 1024)
394
395struct string_area {
396 char *base;
397 char *end;
398 char *current;
399 struct string_area *next;
400};
401
c627d613 402struct file_list {
a800434a
AT
403 int count;
404 int malloced;
405 struct file_struct **files;
3d382777 406 struct string_area *string_area;
c627d613
AT
407};
408
409struct sum_buf {
6ded1170 410 OFF_T offset; /**< offset in file of this chunk */
da9d12f5 411 unsigned int len; /**< length of chunk of file */
6ded1170
MP
412 int i; /**< index of this chunk */
413 uint32 sum1; /**< simple checksum */
414 char sum2[SUM_LENGTH]; /**< checksum */
c627d613
AT
415};
416
417struct sum_struct {
6ded1170
MP
418 OFF_T flength; /**< total file length */
419 size_t count; /**< how many chunks */
da9d12f5
WD
420 unsigned int blength; /**< block_length */
421 unsigned int remainder; /**< flength % block_length */
422 int s2length; /**< sum2_length */
6ded1170 423 struct sum_buf *sums; /**< points to info for each chunk */
c627d613
AT
424};
425
c6e7fcb4 426struct map_struct {
6a7cc46c
S
427 char *p; /* Window pointer */
428 int fd; /* File Descriptor */
429 int p_size; /* Window size at allocation */
430 int p_len; /* Window size after fill */
431 /* p_size and p_len could be
432 * consolodated by using a local
433 * variable in map_ptr() */
434 int status; /* first errno from read errors */
435 OFF_T file_size; /* File size (from stat) */
436 OFF_T p_offset; /* Window start */
437 OFF_T p_fd_offset; /* offset of cursor in fd ala lseek */
c6e7fcb4 438};
c627d613 439
e2d22fee
WD
440#define MATCHFLG_WILD (1<<0) /* pattern has '*', '[', and/or '?' */
441#define MATCHFLG_WILD2 (1<<1) /* pattern has '**' */
442#define MATCHFLG_WILD2_PREFIX (1<<2) /* pattern starts with '**' */
443#define MATCHFLG_ABS_PATH (1<<3) /* path-match on absolute path */
2b6b4d53 444struct exclude_struct {
2b6b4d53 445 char *pattern;
fd73b94d 446 int match_flags;
2b6b4d53
AT
447 int include;
448 int directory;
fd73b94d 449 int slash_cnt;
2b6b4d53
AT
450};
451
a800434a
AT
452struct stats {
453 int64 total_size;
454 int64 total_transferred_size;
455 int64 total_written;
456 int64 total_read;
457 int64 literal_data;
458 int64 matched_data;
459 int flist_size;
460 int num_files;
461 int num_transferred_files;
462};
463
2b6b4d53 464
3b3a2fbc
AT
465/* we need this function because of the silly way in which duplicate
466 entries are handled in the file lists - we can't change this
467 without breaking existing versions */
71c46176 468static inline int flist_up(struct file_list *flist, int i)
3b3a2fbc 469{
3ec4dd97 470 while (!flist->files[i]->basename) i++;
3b3a2fbc
AT
471 return i;
472}
473
c627d613 474#include "byteorder.h"
8de330a3 475#include "lib/mdfour.h"
87f18b62 476#include "lib/wildmatch.h"
740819ef 477#include "lib/permstring.h"
e20a4f84 478#include "lib/addrinfo.h"
0de40240 479
58c29609
MP
480#include "proto.h"
481
0de40240
MP
482/* We have replacement versions of these if they're missing. */
483#ifndef HAVE_ASPRINTF
484int asprintf(char **ptr, const char *format, ...);
485#endif
486
487#ifndef HAVE_VASPRINTF
488int vasprintf(char **ptr, const char *format, va_list ap);
489#endif
490
6813fa7e
WD
491#if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
492#define vsnprintf rsync_vsnprintf
493int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
0de40240
MP
494#endif
495
6813fa7e
WD
496#if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
497#define snprintf rsync_snprintf
0de40240
MP
498int snprintf(char *str,size_t count,const char *fmt,...);
499#endif
500
501
c627d613
AT
502#if !HAVE_STRERROR
503extern char *sys_errlist[];
504#define strerror(i) sys_errlist[i]
505#endif
506
507#ifndef HAVE_STRCHR
508# define strchr index
509# define strrchr rindex
510#endif
511
c627d613
AT
512#ifndef HAVE_ERRNO_DECL
513extern int errno;
514#endif
515
cbbe4892 516#define SUPPORT_LINKS HAVE_READLINK
dc5ddbcc 517#define SUPPORT_HARD_LINKS HAVE_LINK
c627d613 518
1eca49c6
MP
519/* This could be bad on systems which have no lchown and where chown
520 * follows symbollic links. On such systems it might be better not to
521 * try to chown symlinks at all. */
8bf73749
AT
522#ifndef HAVE_LCHOWN
523#define lchown chown
524#endif
525
ac1eb754 526#define SIGNAL_CAST (RETSIGTYPE (*)())
720b47f2
AT
527
528#ifndef EWOULDBLOCK
529#define EWOULDBLOCK EAGAIN
530#endif
182dca5c 531
7b8356d0
AT
532#ifndef STDIN_FILENO
533#define STDIN_FILENO 0
534#endif
535
536#ifndef STDOUT_FILENO
537#define STDOUT_FILENO 1
538#endif
539
540#ifndef STDERR_FILENO
541#define STDERR_FILENO 2
542#endif
543
544#ifndef S_IWUSR
545#define S_IWUSR 0200
546#endif
547
b0d791bb
PG
548#ifndef ACCESSPERMS
549#define ACCESSPERMS 0777
550#endif
551
552#ifndef S_ISVTX
553#define S_ISVTX 0
554#endif
555
556#define CHMOD_BITS (S_ISUID | S_ISGID | S_ISVTX | ACCESSPERMS)
557
b280a1f4
AT
558#ifndef _S_IFMT
559#define _S_IFMT 0170000
560#endif
561
562#ifndef _S_IFLNK
563#define _S_IFLNK 0120000
564#endif
565
566#ifndef S_ISLNK
567#define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
568#endif
569
1e9f155a
AT
570#ifndef S_ISBLK
571#define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
572#endif
573
574#ifndef S_ISCHR
575#define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
576#endif
577
a0b65b18
AT
578#ifndef S_ISSOCK
579#ifdef _S_IFSOCK
580#define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
581#else
582#define S_ISSOCK(mode) (0)
583#endif
584#endif
585
586#ifndef S_ISFIFO
587#ifdef _S_IFIFO
588#define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
589#else
590#define S_ISFIFO(mode) (0)
591#endif
592#endif
593
1e9f155a
AT
594#ifndef S_ISDIR
595#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
596#endif
597
598#ifndef S_ISREG
599#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
600#endif
601
f0359dd0
AT
602/* work out what fcntl flag to use for non-blocking */
603#ifdef O_NONBLOCK
604# define NONBLOCK_FLAG O_NONBLOCK
605#elif defined(SYSV)
606# define NONBLOCK_FLAG O_NDELAY
607#else
608# define NONBLOCK_FLAG FNDELAY
609#endif
610
d79c77ca
MP
611#ifndef INADDR_LOOPBACK
612#define INADDR_LOOPBACK 0x7f000001
613#endif
614
615#ifndef INADDR_NONE
616#define INADDR_NONE 0xffffffff
617#endif
a0b65b18
AT
618
619#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))
7bec6a5c 620
5afd8aed
DD
621/* Initial mask on permissions given to temporary files. Mask off setuid
622 bits and group access because of potential race-condition security
623 holes, and mask other access because mode 707 is bizarre */
972a3619 624#define INITACCESSPERMS 0700
e08bfe12
AT
625
626/* handler for null strings in printf format */
627#define NS(s) ((s)?(s):"<NULL>")
628
fb859e56 629#if !defined(__GNUC__) || defined(APPLE)
999dfffc
MP
630/* Apparently the OS X port of gcc gags on __attribute__.
631 *
632 * <http://www.opensource.apple.com/bugs/X/gcc/2512150.html> */
fb859e56
MP
633#define __attribute__(x)
634
635#endif
636
58cadc86
WD
637/* Convenient wrappers for malloc and realloc. Use them. */
638#define new(type) ((type *)malloc(sizeof(type)))
639#define new_array(type, num) ((type *)_new_array(sizeof(type), (num)))
640#define realloc_array(ptr, type, num) ((type *)_realloc_array((ptr), sizeof(type), (num)))
fb859e56 641
e08bfe12 642/* use magic gcc attributes to catch format errors */
ff41a59f 643 void rprintf(enum logcode , const char *, ...)
fb859e56 644 __attribute__((format (printf, 2, 3)))
e08bfe12 645;
7b3d4257 646
a039749b
MP
647/* This is just like rprintf, but it also tries to print some
648 * representation of the error code. Normally errcode = errno. */
649void rsyserr(enum logcode, int, const char *, ...)
fb859e56 650 __attribute__((format (printf, 3, 4)))
a039749b
MP
651 ;
652
7b3d4257
AT
653#ifdef REPLACE_INET_NTOA
654#define inet_ntoa rep_inet_ntoa
655#endif
5a788ade 656
afbcc8f2
WD
657/* Make sure that the O_BINARY flag is defined. */
658#ifndef O_BINARY
659#define O_BINARY 0
660#endif
5a788ade
AT
661
662#ifndef HAVE_STRLCPY
663size_t strlcpy(char *d, const char *s, size_t bufsize);
664#endif
665
666#ifndef HAVE_STRLCAT
667size_t strlcat(char *d, const char *s, size_t bufsize);
668#endif
669
82980a23
AT
670#ifndef WEXITSTATUS
671#define WEXITSTATUS(stat) ((int)(((stat)>>8)&0xFF))
672#endif
673
a9766ef1 674#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)
eecd22ff
MP
675
676
677extern int verbose;
d5d4b282 678
8f694072
MP
679#ifndef HAVE_INET_NTOP
680const char *
681inet_ntop(int af, const void *src, char *dst, size_t size);
682#endif /* !HAVE_INET_NTOP */
683
684#ifndef HAVE_INET_PTON
bda41fa5 685int inet_pton(int af, const char *src, void *dst);
8f694072 686#endif
0f0ea7f7 687
f4a0483a
MP
688#ifdef MAINTAINER_MODE
689const char *get_panic_action(void);
690#endif
691
fb859e56 692#define UNUSED(x) x __attribute__((__unused__))
eca2adb4 693
c80b3d8c 694extern const char *io_write_phase, *io_read_phase;