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