More backup improvements:
[rsync/rsync.git] / rsync.h
CommitLineData
d622d4bf 1/*
0f78b815
WD
2 * Copyright (C) 1996, 2000 Andrew Tridgell
3 * Copyright (C) 1996 Paul Mackerras
4 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
d3d07a5e 5 * Copyright (C) 2003-2008 Wayne Davison
0f78b815
WD
6 *
7 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
0f78b815
WD
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
e7c67065 17 * You should have received a copy of the GNU General Public License along
4fd842f9 18 * with this program; if not, visit the http://fsf.org website.
0f78b815 19 */
0de40240 20
d41c7d02
DD
21#define False 0
22#define True 1
23
c627d613
AT
24#define BLOCK_SIZE 700
25#define RSYNC_RSH_ENV "RSYNC_RSH"
8dd99390 26#define RSYNC_RSH_IO_ENV "RSYNC_RSH_IO"
7b8356d0 27
c627d613 28#define RSYNC_NAME "rsync"
cd3fe9fb 29/* RSYNCD_SYSCONF is now set in config.h */
30e8c8e1 30#define RSYNCD_USERCONF "rsyncd.conf"
f0fca04e 31
5e71c444 32#define DEFAULT_LOCK_FILE "/var/run/rsyncd.lock"
f7632fc6
AT
33#define URL_PREFIX "rsync://"
34
41adbcec 35#define SYMLINK_PREFIX "/rsyncd-munged/" /* This MUST have a trailing slash! */
9585b276
WD
36#define SYMLINK_PREFIX_LEN ((int)sizeof SYMLINK_PREFIX - 1)
37
c627d613
AT
38#define BACKUP_SUFFIX "~"
39
1b01b295 40/* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
6543dc0c 41 incompatible with older versions :-( */
1b01b295
AT
42#define CHAR_OFFSET 0
43
a5f9cff2
WD
44/* These flags are only used during the flist transfer. */
45
ec33e0e6 46#define XMIT_TOP_DIR (1<<0)
a5f9cff2 47#define XMIT_SAME_MODE (1<<1)
18438f0b 48#define XMIT_SAME_RDEV_pre28 (1<<2) /* protocols 20 - 27 */
cf2d2665 49#define XMIT_EXTENDED_FLAGS (1<<2) /* protocols 28 - now */
a5f9cff2
WD
50#define XMIT_SAME_UID (1<<3)
51#define XMIT_SAME_GID (1<<4)
52#define XMIT_SAME_NAME (1<<5)
53#define XMIT_LONG_NAME (1<<6)
54#define XMIT_SAME_TIME (1<<7)
cf2d2665 55#define XMIT_SAME_RDEV_MAJOR (1<<8) /* protocols 28 - now (devices only) */
ae11e4ee 56#define XMIT_NO_CONTENT_DIR (1<<8) /* protocols 30 - now (dirs only) */
cf2d2665 57#define XMIT_HLINKED (1<<9) /* protocols 28 - now */
18438f0b 58#define XMIT_SAME_DEV_pre30 (1<<10) /* protocols 28 - 29 */
cf2d2665 59#define XMIT_USER_NAME_FOLLOWS (1<<10) /* protocols 30 - now */
18438f0b 60#define XMIT_RDEV_MINOR_8_pre30 (1<<11) /* protocols 28 - 29 */
cf2d2665
WD
61#define XMIT_GROUP_NAME_FOLLOWS (1<<11) /* protocols 30 - now */
62#define XMIT_HLINK_FIRST (1<<12) /* protocols 30 - now (HLINKED files only) */
8b3e6052 63#define XMIT_IO_ERROR_ENDLIST (1<<12) /* protocols 31 - now (w/XMIT_EXTENDED_FLAGS) */
a5f9cff2
WD
64
65/* These flags are used in the live flist data. */
66
82ad07c4 67#define FLAG_TOP_DIR (1<<0) /* sender/receiver/generator */
9ec3828b 68#define FLAG_FILE_SENT (1<<1) /* sender/receiver/generator */
48a481c4 69#define FLAG_DIR_CREATED (1<<1) /* generator */
ae11e4ee 70#define FLAG_CONTENT_DIR (1<<2) /* sender/receiver/generator */
c9b62cf3
WD
71#define FLAG_MOUNT_DIR (1<<3) /* sender/generator (dirs only) */
72#define FLAG_SKIP_HLINK (1<<3) /* receiver/generator (w/FLAG_HLINKED) */
505c0579 73#define FLAG_DUPLICATE (1<<4) /* sender */
96293cf9 74#define FLAG_MISSING_DIR (1<<4) /* generator */
ae11e4ee
WD
75#define FLAG_HLINKED (1<<5) /* receiver/generator (checked on all types) */
76#define FLAG_HLINK_FIRST (1<<6) /* receiver/generator (w/FLAG_HLINKED) */
77#define FLAG_IMPLIED_DIR (1<<6) /* sender/receiver/generator (dirs only) */
82ad07c4 78#define FLAG_HLINK_LAST (1<<7) /* receiver/generator */
ae11e4ee 79#define FLAG_HLINK_DONE (1<<8) /* receiver/generator (checked on all types) */
bfd31372 80#define FLAG_LENGTH64 (1<<9) /* sender/receiver/generator */
ff2001b9 81#define FLAG_SKIP_GROUP (1<<10) /* receiver/generator */
1ed56a05 82#define FLAG_TIME_FAILED (1<<11)/* generator */
bfd31372 83
9ec3828b
WD
84/* These flags are passed to functions but not stored. */
85
86#define FLAG_DIVERT_DIRS (1<<16)/* sender */
87
bfd31372
WD
88#define BITS_SET(val,bits) (((val) & (bits)) == (bits))
89#define BITS_SETnUNSET(val,onbits,offbits) (((val) & ((onbits)|(offbits))) == (onbits))
0a62f5f3
WD
90#define BITS_EQUAL(b1,b2,mask) (((unsigned)(b1) & (unsigned)(mask)) \
91 == ((unsigned)(b2) & (unsigned)(mask)))
520cf417 92
c627d613 93/* update this if you make incompatible changes */
8b3e6052 94#define PROTOCOL_VERSION 31
063393d6 95
4471d9e5
WD
96/* This is used when working on a new protocol version in CVS, and should
97 * be a new non-zero value for each CVS change that affects the protocol.
8b3e6052 98 * It must ALWAYS be 0 when the protocol goes final (and NEVER before)! */
9784f01c 99#define SUBPROTOCOL_VERSION 5
4471d9e5 100
063393d6
MP
101/* We refuse to interoperate with versions that are not in this range.
102 * Note that we assume we'll work with later versions: the onus is on
103 * people writing them to make sure that they don't send us anything
104 * we won't understand.
105 *
1b2db7ae
S
106 * Interoperation with old but supported protocol versions
107 * should cause a warning to be printed. At a future date
108 * the old protocol will become the minimum and
109 * compatibility code removed.
110 *
91c4da3f
S
111 * There are two possible explanations for the limit at
112 * MAX_PROTOCOL_VERSION: either to allow new major-rev versions that
113 * do not interoperate with us, and (more likely) so that we can
114 * detect an attempt to connect rsync to a non-rsync server, which is
115 * unlikely to begin by sending a byte between MIN_PROTOCL_VERSION and
116 * MAX_PROTOCOL_VERSION. */
117
3e491682
S
118#define MIN_PROTOCOL_VERSION 20
119#define OLD_PROTOCOL_VERSION 25
1b2db7ae 120#define MAX_PROTOCOL_VERSION 40
c627d613 121
3831f063
WD
122#define FILECNT_LOOKAHEAD 1000
123
9486289c
AT
124#define RSYNC_PORT 873
125
d867229b 126#define SPARSE_WRITE_SIZE (1024)
dc5ddbcc 127#define WRITE_SIZE (32*1024)
34ccb63e 128#define CHUNK_SIZE (32*1024)
61542c41 129#define MAX_MAP_SIZE (256*1024)
e3fe383a 130#define IO_BUFFER_SIZE (4092)
4c17cdcb 131#define MAX_BLOCK_SIZE ((int32)1 << 17)
c627d613 132
8bd77e70
WD
133/* For compatibility with older rsyncs */
134#define OLD_MAX_BLOCK_SIZE ((int32)1 << 29)
135
e2d22fee
WD
136#define IOERR_GENERAL (1<<0) /* For backward compatibility, this must == 1 */
137#define IOERR_VANISHED (1<<1)
ff3d3c32 138#define IOERR_DEL_LIMIT (1<<2)
e2d22fee 139
874895d5 140#define MAX_ARGS 1000
e4977b0b 141#define MAX_BASIS_DIRS 20
c296031d 142#define MAX_SERVER_ARGS (MAX_BASIS_DIRS*2 + 100)
e4977b0b 143
8d9dc9f9 144#define MPLEX_BASE 7
ff41a59f 145
7842418b
WD
146#define NO_FILTERS 0
147#define SERVER_FILTERS 1
148#define ALL_FILTERS 2
4762db4f 149
753b6b46 150#define XFLG_FATAL_ERRORS (1<<0)
3b2461cf 151#define XFLG_OLD_PREFIXES (1<<1)
f5aeb6ff
WD
152#define XFLG_ANCHORED2ABS (1<<2) /* leading slash indicates absolute */
153#define XFLG_ABS_IF_SLASH (1<<3) /* leading or interior slash is absolute */
154#define XFLG_DIR2WILD3 (1<<4) /* dir/ match gets trailing *** added */
4762db4f 155
8eda7a4b
WD
156#define ATTRS_REPORT (1<<0)
157#define ATTRS_SKIP_MTIME (1<<1)
5c6fc4a6 158
419896af
WD
159#define FULL_FLUSH 1
160#define NORMAL_FLUSH 0
161
a7260c40
WD
162#define PDIR_CREATE 1
163#define PDIR_DELETE 0
164
e341588a
WD
165/* Note: 0x00 - 0x7F are used for basis_dir[] indexes! */
166#define FNAMECMP_BASIS_DIR_LOW 0x00 /* Must remain 0! */
167#define FNAMECMP_BASIS_DIR_HIGH 0x7F
41cfde6b
WD
168#define FNAMECMP_FNAME 0x80
169#define FNAMECMP_PARTIAL_DIR 0x81
170#define FNAMECMP_BACKUP 0x82
0dd046d3 171#define FNAMECMP_FUZZY 0x83
41cfde6b 172
0cc279e0 173/* For use by the itemize_changes code */
b3222792 174#define ITEM_REPORT_ATIME (1<<0)
1ed9018e
WD
175#define ITEM_REPORT_CHANGE (1<<1)
176#define ITEM_REPORT_SIZE (1<<2) /* regular files only */
177#define ITEM_REPORT_TIMEFAIL (1<<2) /* symlinks only */
0cc279e0
WD
178#define ITEM_REPORT_TIME (1<<3)
179#define ITEM_REPORT_PERMS (1<<4)
180#define ITEM_REPORT_OWNER (1<<5)
181#define ITEM_REPORT_GROUP (1<<6)
b3222792
WD
182#define ITEM_REPORT_ACL (1<<7)
183#define ITEM_REPORT_XATTR (1<<8)
3019a9ba
WD
184#define ITEM_BASIS_TYPE_FOLLOWS (1<<11)
185#define ITEM_XNAME_FOLLOWS (1<<12)
6d0e5d2e
WD
186#define ITEM_IS_NEW (1<<13)
187#define ITEM_LOCAL_CHANGE (1<<14)
188#define ITEM_TRANSFER (1<<15)
d4d4890d 189/* These are outside the range of the transmitted flags. */
d4d4890d
WD
190#define ITEM_MISSING_DATA (1<<16) /* used by log_formatted() */
191#define ITEM_DELETED (1<<17) /* used by log_formatted() */
1e4f5f63 192#define ITEM_MATCHED (1<<18) /* used by itemize() */
0cc279e0 193
3019a9ba
WD
194#define SIGNIFICANT_ITEM_FLAGS (~(\
195 ITEM_BASIS_TYPE_FOLLOWS | ITEM_XNAME_FOLLOWS | ITEM_LOCAL_CHANGE))
669e7671 196
d48810ba 197#define CFN_KEEP_DOT_DIRS (1<<0)
c73f2a38
WD
198#define CFN_KEEP_TRAILING_SLASH (1<<1)
199#define CFN_DROP_TRAILING_DOT_DIR (1<<2)
200#define CFN_COLLAPSE_DOT_DOT_DIRS (1<<3)
df0054ab 201
d48810ba
WD
202#define SP_DEFAULT 0
203#define SP_KEEP_DOT_DIRS (1<<0)
204
29a89172
WD
205#define CD_NORMAL 0
206#define CD_SKIP_CHDIR 1
207
3f0211b6
WD
208/* Log-message categories. FLOG only goes to the log file, not the client;
209 * FCLIENT is the opposite. */
210enum logcode {
211 FNONE=0, /* never sent */
212 FERROR_XFER=1, FINFO=2, /* sent over socket for any protocol */
213 FERROR=3, FWARNING=4, /* sent over socket for protocols >= 30 */
214 FERROR_SOCKET=5, FLOG=6, /* only sent via receiver -> generator pipe */
7c7462cd 215 FERROR_UTF8=8, /* only sent via receiver -> generator pipe */
3f0211b6
WD
216 FCLIENT=7 /* never transmitted (e.g. server converts to FINFO) */
217};
419896af
WD
218
219/* Messages types that are sent over the message channel. The logcode
220 * values must all be present here with identical numbers. */
221enum msgcode {
1dcf3b43 222 MSG_DATA=0, /* raw data on the multiplexed stream */
3f0211b6
WD
223 MSG_ERROR_XFER=FERROR_XFER, MSG_INFO=FINFO, /* remote logging */
224 MSG_ERROR=FERROR, MSG_WARNING=FWARNING, /* protocol-30 remote logging */
225 MSG_ERROR_SOCKET=FERROR_SOCKET, /* sibling logging */
7c7462cd 226 MSG_ERROR_UTF8=FERROR_UTF8, /* sibling logging */
3f0211b6 227 MSG_LOG=FLOG, MSG_CLIENT=FCLIENT, /* sibling logging */
1dcf3b43 228 MSG_REDO=9, /* reprocess indicated flist index */
bc40a305 229 MSG_DEL_STATS=10,/* delete-statistics data follows */
9ec3828b
WD
230 MSG_FLIST=20, /* extra file list over sibling socket */
231 MSG_FLIST_EOF=21,/* we've transmitted all the file lists */
232 MSG_IO_ERROR=22,/* the sending side had an I/O error */
233 MSG_NOOP=42, /* a do-nothing message */
1dcf3b43
WD
234 MSG_SUCCESS=100,/* successfully updated indicated flist index */
235 MSG_DELETED=101,/* successfully deleted a file on receiving side */
9ec3828b 236 MSG_NO_SEND=102,/* sender failed to open a file we wanted */
1dcf3b43 237 MSG_DONE=86 /* current phase is done */
419896af 238};
7bec6a5c 239
82ad07c4 240#define NDX_DONE -1
9ec3828b 241#define NDX_FLIST_EOF -2
bc40a305 242#define NDX_DEL_STATS -2
9ec3828b 243#define NDX_FLIST_OFFSET -101
82ad07c4 244
974e1819
WD
245/* For calling delete_item() and delete_dir_contents(). */
246#define DEL_NO_UID_WRITE (1<<0) /* file/dir has our uid w/o write perm */
247#define DEL_RECURSE (1<<1) /* if dir, delete all contents */
248#define DEL_DIR_IS_EMPTY (1<<2) /* internal delete_FUNCTIONS use only */
249#define DEL_FOR_FILE (1<<3) /* making room for a replacement file */
250#define DEL_FOR_DIR (1<<4) /* making room for a replacement dir */
251#define DEL_FOR_SYMLINK (1<<5) /* making room for a replacement symlink */
252#define DEL_FOR_DEVICE (1<<6) /* making room for a replacement device */
253#define DEL_FOR_SPECIAL (1<<7) /* making room for a replacement special */
21cddef2 254#define DEL_FOR_BACKUP (1<<8) /* the delete is for a backup operation */
974e1819
WD
255
256#define DEL_MAKE_ROOM (DEL_FOR_FILE|DEL_FOR_DIR|DEL_FOR_SYMLINK|DEL_FOR_DEVICE|DEL_FOR_SPECIAL)
257
258enum delret {
259 DR_SUCCESS = 0, DR_FAILURE, DR_AT_LIMIT, DR_NOT_EMPTY
260};
261
3696674b
WD
262/* Defines for make_path() */
263#define MKP_DROP_NAME (1<<0) /* drop trailing filename or trailing slash */
264#define MKP_SKIP_SLASH (1<<1) /* skip one or more leading slashes */
265
65417579
AT
266#include "errcode.h"
267
c627d613
AT
268#include "config.h"
269
e3217f14 270/* The default RSYNC_RSH is always set in config.h. */
24d95c03 271
c627d613 272#include <stdio.h>
4f5b0756 273#ifdef HAVE_SYS_TYPES_H
e95538ca
WD
274# include <sys/types.h>
275#endif
4f5b0756 276#ifdef HAVE_SYS_STAT_H
e95538ca
WD
277# include <sys/stat.h>
278#endif
4f5b0756 279#ifdef STDC_HEADERS
e95538ca
WD
280# include <stdlib.h>
281# include <stddef.h>
282#else
4f5b0756 283# ifdef HAVE_STDLIB_H
e95538ca
WD
284# include <stdlib.h>
285# endif
286#endif
4f5b0756
WD
287#ifdef HAVE_STRING_H
288# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
e95538ca
WD
289# include <memory.h>
290# endif
291# include <string.h>
292#endif
4f5b0756 293#ifdef HAVE_STRINGS_H
e95538ca
WD
294# include <strings.h>
295#endif
2d2414f3
WD
296#ifdef HAVE_INTTYPES_H
297# include <inttypes.h>
298#endif
b4b24520
WD
299#ifdef HAVE_STDINT_H
300# include <stdint.h>
301#endif
4f5b0756 302#ifdef HAVE_UNISTD_H
e95538ca 303# include <unistd.h>
c627d613
AT
304#endif
305
4f5b0756 306#ifdef HAVE_SYS_PARAM_H
e95538ca 307#include <sys/param.h>
38b02c13 308#endif
59192f56 309
4f5b0756 310#if defined HAVE_MALLOC_H && (defined HAVE_MALLINFO || !defined HAVE_STDLIB_H)
59192f56 311#include <malloc.h>
d7b305fd
AT
312#endif
313
4f5b0756 314#ifdef HAVE_SYS_SOCKET_H
fdd71e17
AT
315#include <sys/socket.h>
316#endif
317
4f5b0756 318#ifdef TIME_WITH_SYS_TIME
c627d613
AT
319#include <sys/time.h>
320#include <time.h>
321#else
4f5b0756 322#ifdef HAVE_SYS_TIME_H
c627d613
AT
323#include <sys/time.h>
324#else
325#include <time.h>
326#endif
327#endif
328
4f5b0756 329#ifdef HAVE_FCNTL_H
c627d613
AT
330#include <fcntl.h>
331#else
4f5b0756 332#ifdef HAVE_SYS_FCNTL_H
c627d613
AT
333#include <sys/fcntl.h>
334#endif
335#endif
336
4f5b0756 337#ifdef HAVE_SYS_IOCTL_H
94481d91
AT
338#include <sys/ioctl.h>
339#endif
340
4f5b0756 341#ifdef HAVE_SYS_FILIO_H
94481d91
AT
342#include <sys/filio.h>
343#endif
344
c627d613 345#include <signal.h>
4f5b0756 346#ifdef HAVE_SYS_WAIT_H
c627d613
AT
347#include <sys/wait.h>
348#endif
4f5b0756 349#ifdef HAVE_CTYPE_H
c627d613
AT
350#include <ctype.h>
351#endif
4f5b0756 352#ifdef HAVE_GRP_H
c627d613
AT
353#include <grp.h>
354#endif
355#include <errno.h>
356
4f5b0756 357#ifdef HAVE_UTIME_H
c627d613
AT
358#include <utime.h>
359#endif
360
4f5b0756 361#ifdef HAVE_SYS_SELECT_H
8bf73749
AT
362#include <sys/select.h>
363#endif
364
4f5b0756 365#ifdef HAVE_SYS_MODE_H
773f2bd4 366/* apparently AIX needs this for S_ISLNK */
05a6556d 367#ifndef S_ISLNK
773f2bd4
AT
368#include <sys/mode.h>
369#endif
05a6556d 370#endif
773f2bd4 371
f6c34742
AT
372/* these are needed for the uid/gid mapping code */
373#include <pwd.h>
374#include <grp.h>
375
9486289c 376#include <stdarg.h>
f0fca04e
AT
377#include <netinet/in.h>
378#include <arpa/inet.h>
6e1fa33f 379#ifdef HAVE_NETDB_H
f0fca04e 380#include <netdb.h>
6e1fa33f 381#endif
ff8b29b8 382#include <syslog.h>
6c8f5373 383#include <sys/file.h>
9486289c 384
4f5b0756 385#ifdef HAVE_DIRENT_H
e8f5b936
AT
386# include <dirent.h>
387#else
388# define dirent direct
4f5b0756 389# ifdef HAVE_SYS_NDIR_H
e8f5b936
AT
390# include <sys/ndir.h>
391# endif
4f5b0756 392# ifdef HAVE_SYS_DIR_H
e8f5b936
AT
393# include <sys/dir.h>
394# endif
4f5b0756 395# ifdef HAVE_NDIR_H
e8f5b936
AT
396# include <ndir.h>
397# endif
398#endif
399
4f5b0756 400#ifdef MAJOR_IN_MKDEV
c39d6514 401#include <sys/mkdev.h>
8a33c406 402# if !defined makedev && (defined mkdev || defined _WIN32 || defined __WIN32__)
73496a36
WD
403# define makedev mkdev
404# endif
4f5b0756 405#elif defined MAJOR_IN_SYSMACROS
f8ed564c 406#include <sys/sysmacros.h>
c39d6514
WD
407#endif
408
5a3810b4
WD
409#ifdef MAKEDEV_TAKES_3_ARGS
410#define MAKEDEV(devmajor,devminor) makedev(0,devmajor,devminor)
411#else
412#define MAKEDEV(devmajor,devminor) makedev(devmajor,devminor)
413#endif
414
4f5b0756 415#ifdef HAVE_COMPAT_H
e8f5b936
AT
416#include <compat.h>
417#endif
418
ea8291d8
WD
419#ifdef HAVE_LIMITS_H
420# include <limits.h>
421#endif
422
49c24071 423#if defined USE_ICONV_OPEN && defined HAVE_ICONV_H
332cf6df
WD
424#include <iconv.h>
425#ifndef ICONV_CONST
426#define ICONV_CONST
427#endif
4a1edb63
WD
428#else
429#ifdef ICONV_CONST
332cf6df
WD
430#undef ICONV_CONST
431#endif
21546571
WD
432#ifdef ICONV_OPTION
433#undef ICONV_OPTION
434#endif
4a1edb63
WD
435#ifdef iconv_t
436#undef iconv_t
437#endif
438#define iconv_t int
439#endif
332cf6df 440
1bfbf40b
MP
441#include <assert.h>
442
9935066b 443#include "lib/pool_alloc.h"
e8f5b936 444
88a74268 445#ifndef HAVE_ID_T
d9e92804 446typedef unsigned int id_t;
88a74268
WD
447#endif
448#ifndef HAVE_PID_T
449typedef int pid_t;
450#endif
451#ifndef HAVE_MODE_T
d9e92804 452typedef unsigned int mode_t;
88a74268
WD
453#endif
454#ifndef HAVE_OFF_T
455typedef long off_t;
456#endif
457#ifndef HAVE_SIZE_T
458typedef unsigned int size_t;
459#endif
460
f0fca04e
AT
461#define BOOL int
462
c627d613
AT
463#ifndef uchar
464#define uchar unsigned char
465#endif
466
4f5b0756 467#ifdef SIGNED_CHAR_OK
debb4505
AT
468#define schar signed char
469#else
470#define schar char
471#endif
472
2d2414f3
WD
473#ifndef int16
474#if SIZEOF_INT16_T == 2
475# define int16 int16_t
476#else
477# define int16 short
478#endif
479#endif
480
481#ifndef uint16
482#if SIZEOF_UINT16_T == 2
483# define uint16 uint16_t
484#else
485# define uint16 unsigned int16
486#endif
487#endif
488
43d0f38b
WD
489/* Find a variable that is either exactly 32-bits or longer.
490 * If some code depends on 32-bit truncation, it will need to
491 * take special action in a "#if SIZEOF_INT32 > 4" section. */
c627d613 492#ifndef int32
2d2414f3
WD
493#if SIZEOF_INT32_T == 4
494# define int32 int32_t
495# define SIZEOF_INT32 4
496#elif SIZEOF_INT == 4
43d0f38b
WD
497# define int32 int
498# define SIZEOF_INT32 4
499#elif SIZEOF_LONG == 4
500# define int32 long
501# define SIZEOF_INT32 4
502#elif SIZEOF_SHORT == 4
503# define int32 short
504# define SIZEOF_INT32 4
505#elif SIZEOF_INT > 4
506# define int32 int
507# define SIZEOF_INT32 SIZEOF_INT
508#elif SIZEOF_LONG > 4
509# define int32 long
510# define SIZEOF_INT32 SIZEOF_LONG
8de330a3 511#else
43d0f38b 512# error Could not find a 32-bit integer variable
c627d613 513#endif
43d0f38b
WD
514#else
515# define SIZEOF_INT32 4
c627d613
AT
516#endif
517
518#ifndef uint32
2d2414f3
WD
519#if SIZEOF_UINT32_T == 4
520# define uint32 uint32_t
521#else
522# define uint32 unsigned int32
523#endif
c627d613
AT
524#endif
525
0dd046d3 526#if SIZEOF_OFF_T == 8 || !SIZEOF_OFF64_T || !defined HAVE_STRUCT_STAT64
bcacc18b
AT
527#define OFF_T off_t
528#define STRUCT_STAT struct stat
4ecf3e06 529#define SIZEOF_CAPITAL_OFF_T SIZEOF_OFF_T
5b5f7e3b
WD
530#else
531#define OFF_T off64_t
532#define STRUCT_STAT struct stat64
533#define USE_STAT64_FUNCS 1
4ecf3e06 534#define SIZEOF_CAPITAL_OFF_T SIZEOF_OFF64_T
bcacc18b
AT
535#endif
536
d4198823
WD
537/* CAVEAT: on some systems, int64 will really be a 32-bit integer IFF
538 * that's the maximum size the file system can handle and there is no
539 * 64-bit type available. The rsync source must therefore take steps
540 * to ensure that any code that really requires a 64-bit integer has
541 * it (e.g. the checksum code uses two 32-bit integers for its 64-bit
542 * counter). */
2d2414f3
WD
543#if SIZEOF_INT64_T == 8
544# define int64 int64_t
545# define SIZEOF_INT64 8
546#elif SIZEOF_LONG == 8
d622d4bf
WD
547# define int64 long
548# define SIZEOF_INT64 8
549#elif SIZEOF_INT == 8
550# define int64 int
551# define SIZEOF_INT64 8
552#elif SIZEOF_LONG_LONG == 8
553# define int64 long long
554# define SIZEOF_INT64 8
2c177562
WD
555#elif SIZEOF_OFF64_T == 8
556# define int64 off64_t
557# define SIZEOF_INT64 8
d622d4bf
WD
558#elif SIZEOF_OFF_T == 8
559# define int64 off_t
560# define SIZEOF_INT64 8
561#elif SIZEOF_INT > 8
562# define int64 int
563# define SIZEOF_INT64 SIZEOF_INT
564#elif SIZEOF_LONG > 8
565# define int64 long
566# define SIZEOF_INT64 SIZEOF_LONG
567#elif SIZEOF_LONG_LONG > 8
568# define int64 long long
569# define SIZEOF_INT64 SIZEOF_LONG_LONG
71c46176 570#else
736a6a29 571/* As long as it gets... */
d622d4bf
WD
572# define int64 off_t
573# define SIZEOF_INT64 SIZEOF_OFF_T
71c46176 574#endif
c627d613 575
83135e8f
WD
576struct hashtable {
577 void *nodes;
578 int32 size, entries;
579 uint32 node_size;
0c096e29 580 short key64;
83135e8f
WD
581};
582
583struct ht_int32_node {
584 void *data;
585 int32 key;
586};
587
588struct ht_int64_node {
14d776ff 589 void *data;
83135e8f 590 int64 key;
14d776ff
WD
591};
592
83135e8f
WD
593#define HT_NODE(tbl, bkts, i) ((void*)((char*)(bkts) + (i)*(tbl)->node_size))
594#define HT_KEY(node, k64) ((k64)? ((struct ht_int64_node*)(node))->key \
595 : (int64)((struct ht_int32_node*)(node))->key)
596
c627d613
AT
597#ifndef MIN
598#define MIN(a,b) ((a)<(b)?(a):(b))
599#endif
600
601#ifndef MAX
602#define MAX(a,b) ((a)>(b)?(a):(b))
603#endif
604
d41c7d02
DD
605#ifndef MAXHOSTNAMELEN
606#define MAXHOSTNAMELEN 256
607#endif
608
c627d613 609#define SUM_LENGTH 16
195bd906
S
610#define SHORT_SUM_LENGTH 2
611#define BLOCKSUM_BIAS 10
c627d613
AT
612
613#ifndef MAXPATHLEN
614#define MAXPATHLEN 1024
615#endif
616
a22ca885
WD
617/* We want a roomy line buffer that can hold more than MAXPATHLEN,
618 * and significantly more than an overly short MAXPATHLEN. */
619#if MAXPATHLEN < 4096
620#define BIGPATHBUFLEN (4096+1024)
621#else
622#define BIGPATHBUFLEN (MAXPATHLEN+1024)
623#endif
624
52d3e106
S
625#ifndef NAME_MAX
626#define NAME_MAX 255
627#endif
628
0473e2a1
AT
629#ifndef INADDR_NONE
630#define INADDR_NONE 0xffffffff
631#endif
632
bda41fa5
WD
633#ifndef IN_LOOPBACKNET
634#define IN_LOOPBACKNET 127
635#endif
636
1c3344a1
WD
637#if HAVE_UNIXWARE_ACLS|HAVE_SOLARIS_ACLS|HAVE_HPUX_ACLS
638#define ACLS_NEED_MASK 1
639#endif
640
5b30412c 641union file_extras {
bd6edd3f
WD
642 int32 num;
643 uint32 unum;
5b30412c
WD
644};
645
c627d613 646struct file_struct {
2d2414f3
WD
647 const char *dirname; /* The dir info inside the transfer */
648 time_t modtime; /* When the item was last modified */
649 uint32 len32; /* Lowest 32 bits of the file's length */
650 uint16 mode; /* The item's type and permissions */
651 uint16 flags; /* The FLAG_* bits for this item */
652 const char basename[1]; /* The basename (AKA filename) follows */
c627d613
AT
653};
654
99a957d3 655extern int file_extra_cnt;
cf2d2665 656extern int inc_recurse;
9742b386
WD
657extern int uid_ndx;
658extern int gid_ndx;
659extern int acls_ndx;
660extern int xattrs_ndx;
b96efc2f 661
c58c1dc4 662#define FILE_STRUCT_LEN (offsetof(struct file_struct, basename))
5b30412c 663#define EXTRA_LEN (sizeof (union file_extras))
4b163f00 664#define PTR_EXTRA_CNT ((sizeof (char *) + EXTRA_LEN - 1) / EXTRA_LEN)
a08979d5
WD
665#define DEV_EXTRA_CNT 2
666#define DIRNODE_EXTRA_CNT 3
a0456b9c 667#define SUM_EXTRA_CNT ((MAX_DIGEST_LEN + EXTRA_LEN - 1) / EXTRA_LEN)
96293cf9 668
5b30412c 669#define REQ_EXTRA(f,ndx) ((union file_extras*)(f) - (ndx))
99a957d3 670#define OPT_EXTRA(f,bump) ((union file_extras*)(f) - file_extra_cnt - 1 - (bump))
b37b7c99 671
96293cf9 672#define LEN64_BUMP(f) ((f)->flags & FLAG_LENGTH64 ? 1 : 0)
7b46e30f 673#define HLINK_BUMP(f) ((f)->flags & (FLAG_HLINKED|FLAG_HLINK_DONE) ? inc_recurse+1 : 0)
a08979d5 674#define ACL_BUMP(f) (acls_ndx ? 1 : 0)
96293cf9 675
c58c1dc4 676/* The length applies to all items. */
bf466c0f
WD
677#if SIZEOF_INT64 < 8
678#define F_LENGTH(f) ((int64)(f)->len32)
679#else
680#define F_LENGTH(f) ((int64)(f)->len32 + ((f)->flags & FLAG_LENGTH64 \
681 ? (int64)OPT_EXTRA(f, 0)->unum << 32 : 0))
682#endif
82ad07c4 683
96293cf9 684/* If there is a symlink string, it is always right after the basename */
c58c1dc4 685#define F_SYMLINK(f) ((f)->basename + strlen((f)->basename) + 1)
82ad07c4 686
bd6edd3f 687/* The sending side always has this available: */
4b163f00 688#define F_PATHNAME(f) (*(const char**)REQ_EXTRA(f, PTR_EXTRA_CNT))
bd6edd3f
WD
689
690/* The receiving side always has this available: */
691#define F_DEPTH(f) REQ_EXTRA(f, 1)->num
692
96293cf9 693/* When the associated option is on, all entries will have these present: */
9742b386
WD
694#define F_OWNER(f) REQ_EXTRA(f, uid_ndx)->unum
695#define F_GROUP(f) REQ_EXTRA(f, gid_ndx)->unum
696#define F_ACL(f) REQ_EXTRA(f, acls_ndx)->num
697#define F_XATTR(f) REQ_EXTRA(f, xattrs_ndx)->num
f7a76b9c 698#define F_NDX(f) REQ_EXTRA(f, unsort_ndx)->num
82ad07c4 699
a08979d5
WD
700/* These items are per-entry optional: */
701#define F_HL_GNUM(f) OPT_EXTRA(f, LEN64_BUMP(f))->num /* non-dirs */
cf2d2665 702#define F_HL_PREV(f) OPT_EXTRA(f, LEN64_BUMP(f)+inc_recurse)->num /* non-dirs */
a08979d5
WD
703#define F_DIR_NODE_P(f) (&OPT_EXTRA(f, LEN64_BUMP(f) \
704 + DIRNODE_EXTRA_CNT - 1)->num) /* sender dirs */
54410882 705#define F_DIR_RELNAMES_P(f) (&OPT_EXTRA(f, LEN64_BUMP(f) + DIRNODE_EXTRA_CNT \
4b163f00 706 + PTR_EXTRA_CNT - 1)->num) /* sender dirs */
a08979d5
WD
707#define F_DIR_DEFACL(f) OPT_EXTRA(f, LEN64_BUMP(f))->unum /* receiver dirs */
708#define F_DIR_DEV_P(f) (&OPT_EXTRA(f, LEN64_BUMP(f) + ACL_BUMP(f) \
709 + DEV_EXTRA_CNT - 1)->unum) /* receiver dirs */
82ad07c4 710
b37b7c99
WD
711/* This optional item might follow an F_HL_*() item.
712 * (Note: a device doesn't need to check LEN64_BUMP(f).) */
b258ebf8 713#define F_RDEV_P(f) (&OPT_EXTRA(f, HLINK_BUMP(f) + DEV_EXTRA_CNT - 1)->unum)
82ad07c4 714
96293cf9 715/* The sum is only present on regular files. */
a08979d5
WD
716#define F_SUM(f) ((char*)OPT_EXTRA(f, LEN64_BUMP(f) + HLINK_BUMP(f) \
717 + SUM_EXTRA_CNT - 1))
96293cf9 718
b37b7c99 719/* Some utility defines: */
c58c1dc4 720#define F_IS_ACTIVE(f) (f)->basename[0]
bfd31372 721#define F_IS_HLINKED(f) ((f)->flags & FLAG_HLINKED)
5bb73485 722
b7cfb9e2
WD
723#define F_HLINK_NOT_FIRST(f) BITS_SETnUNSET((f)->flags, FLAG_HLINKED, FLAG_HLINK_FIRST)
724#define F_HLINK_NOT_LAST(f) BITS_SETnUNSET((f)->flags, FLAG_HLINKED, FLAG_HLINK_LAST)
96293cf9 725
4b163f00 726/* These access the F_DIR_DEV_P() and F_RDEV_P() values: */
b37b7c99
WD
727#define DEV_MAJOR(a) (a)[0]
728#define DEV_MINOR(a) (a)[1]
729
4b163f00 730/* These access the F_DIRS_NODE_P() values: */
9ec3828b
WD
731#define DIR_PARENT(a) (a)[0]
732#define DIR_FIRST_CHILD(a) (a)[1]
733#define DIR_NEXT_SIBLING(a) (a)[2]
734
96293cf9
WD
735/*
736 * Start the flist array at FLIST_START entries and grow it
737 * by doubling until FLIST_LINEAR then grow by FLIST_LINEAR
738 */
739#define FLIST_START (32 * 1024)
740#define FLIST_LINEAR (FLIST_START * 512)
82ad07c4 741
9935066b 742/*
82ad07c4 743 * Extent size for allocation pools: A minimum size of 128KB
9935066b
S
744 * is needed to mmap them so that freeing will release the
745 * space to the OS.
746 *
747 * Larger sizes reduce leftover fragments and speed free calls
82ad07c4 748 * (when they happen). Smaller sizes increase the chance of
9935066b
S
749 * freed allocations freeing whole extents.
750 */
f5ba7bfb
WD
751#define NORMAL_EXTENT (256 * 1024)
752#define SMALL_EXTENT (128 * 1024)
9935066b 753
9ec3828b
WD
754#define FLIST_TEMP (1<<1)
755
c627d613 756struct file_list {
9ec3828b 757 struct file_list *next, *prev;
332cf6df 758 struct file_struct **files, **sorted;
9935066b 759 alloc_pool_t file_pool;
f5ba7bfb 760 void *pool_boundary;
9decb4d2
WD
761 int used, malloced;
762 int low, high; /* 0-relative index values excluding empties */
763 int ndx_start; /* the start offset for inc_recurse mode */
65b4e4b2 764 int flist_num; /* 1-relative file_list number or 0 */
9ec3828b
WD
765 int parent_ndx; /* dir_flist index of parent directory */
766 int in_progress, to_redo;
c627d613
AT
767};
768
a3221d2a
WD
769#define SUMFLG_SAME_OFFSET (1<<0)
770
c627d613 771struct sum_buf {
6ded1170 772 OFF_T offset; /**< offset in file of this chunk */
a06b419d 773 int32 len; /**< length of chunk of file */
6ded1170 774 uint32 sum1; /**< simple checksum */
d733de97 775 int32 chain; /**< next hash-table collision */
a3221d2a 776 short flags; /**< flag bits */
6ded1170 777 char sum2[SUM_LENGTH]; /**< checksum */
c627d613
AT
778};
779
780struct sum_struct {
6ded1170 781 OFF_T flength; /**< total file length */
2b2ea368 782 struct sum_buf *sums; /**< points to info for each chunk */
15859584 783 int32 count; /**< how many chunks */
a06b419d
WD
784 int32 blength; /**< block_length */
785 int32 remainder; /**< flength % block_length */
da9d12f5 786 int s2length; /**< sum2_length */
c627d613
AT
787};
788
c6e7fcb4 789struct map_struct {
6a7cc46c
S
790 OFF_T file_size; /* File size (from stat) */
791 OFF_T p_offset; /* Window start */
792 OFF_T p_fd_offset; /* offset of cursor in fd ala lseek */
2b2ea368
WD
793 char *p; /* Window pointer */
794 int32 p_size; /* Largest window size we allocated */
795 int32 p_len; /* Latest (rounded) window size */
796 int32 def_window_size; /* Default window size */
797 int fd; /* File Descriptor */
798 int status; /* first errno from read errors */
c6e7fcb4 799};
c627d613 800
e2d22fee
WD
801#define MATCHFLG_WILD (1<<0) /* pattern has '*', '[', and/or '?' */
802#define MATCHFLG_WILD2 (1<<1) /* pattern has '**' */
685517ab
WD
803#define MATCHFLG_WILD2_PREFIX (1<<2) /* pattern starts with "**" */
804#define MATCHFLG_WILD3_SUFFIX (1<<3) /* pattern ends with "***" */
805#define MATCHFLG_ABS_PATH (1<<4) /* path-match on absolute path */
806#define MATCHFLG_INCLUDE (1<<5) /* this is an include, not an exclude */
807#define MATCHFLG_DIRECTORY (1<<6) /* this matches only directories */
46fa6025
WD
808#define MATCHFLG_WORD_SPLIT (1<<7) /* split rules on whitespace */
809#define MATCHFLG_NO_INHERIT (1<<8) /* don't inherit these rules */
810#define MATCHFLG_NO_PREFIXES (1<<9) /* parse no prefixes from patterns */
811#define MATCHFLG_MERGE_FILE (1<<10)/* specifies a file to merge */
812#define MATCHFLG_PERDIR_MERGE (1<<11)/* merge-file is searched per-dir */
813#define MATCHFLG_EXCLUDE_SELF (1<<12)/* merge-file name should be excluded */
814#define MATCHFLG_FINISH_SETUP (1<<13)/* per-dir merge file needs setup */
53b417e4
WD
815#define MATCHFLG_NEGATE (1<<14)/* rule matches when pattern does not */
816#define MATCHFLG_CVS_IGNORE (1<<15)/* rule was -C or :C */
a427e893
WD
817#define MATCHFLG_SENDER_SIDE (1<<16)/* rule applies to the sending side */
818#define MATCHFLG_RECEIVER_SIDE (1<<17)/* rule applies to the receiving side */
685517ab 819#define MATCHFLG_CLEAR_LIST (1<<18)/* this item is the "!" token */
c0f1e57b 820#define MATCHFLG_PERISHABLE (1<<19)/* perishable if parent dir goes away */
7c8e23bd 821
3b2461cf 822#define MATCHFLGS_FROM_CONTAINER (MATCHFLG_ABS_PATH | MATCHFLG_INCLUDE \
a427e893 823 | MATCHFLG_DIRECTORY | MATCHFLG_SENDER_SIDE \
c0f1e57b
WD
824 | MATCHFLG_NEGATE | MATCHFLG_RECEIVER_SIDE \
825 | MATCHFLG_PERISHABLE)
3b2461cf 826
7842418b
WD
827struct filter_struct {
828 struct filter_struct *next;
2b6b4d53 829 char *pattern;
53b417e4 830 uint32 match_flags;
46fa6025
WD
831 union {
832 int slash_cnt;
7842418b 833 struct filter_list_struct *mergelist;
46fa6025 834 } u;
2b6b4d53
AT
835};
836
7842418b
WD
837struct filter_list_struct {
838 struct filter_struct *head;
839 struct filter_struct *tail;
daa8d920 840 struct filter_struct *parent_dirscan_head;
ac1d2d33 841 char *debug_type;
63d03319
WD
842};
843
a800434a
AT
844struct stats {
845 int64 total_size;
846 int64 total_transferred_size;
847 int64 total_written;
848 int64 total_read;
849 int64 literal_data;
850 int64 matched_data;
d4198823
WD
851 int64 flist_buildtime;
852 int64 flist_xfertime;
604dbf6d 853 int64 flist_size;
e366e530
WD
854 int num_files, num_dirs, num_symlinks, num_devices, num_specials;
855 int created_files, created_dirs, created_symlinks, created_devices, created_specials;
856 int deleted_files, deleted_dirs, deleted_symlinks, deleted_devices, deleted_specials;
857 int xferred_files;
a800434a
AT
858};
859
f7bce90c 860struct chmod_mode_struct;
2b6b4d53 861
e0c572c5
WD
862struct flist_ndx_item {
863 struct flist_ndx_item *next;
864 int ndx;
865};
866
867typedef struct {
868 struct flist_ndx_item *head, *tail;
869} flist_ndx_list;
870
1c3344a1
WD
871#define EMPTY_ITEM_LIST {NULL, 0, 0}
872
873typedef struct {
874 void *items;
875 size_t count;
876 size_t malloced;
877} item_list;
878
879#define EXPAND_ITEM_LIST(lp, type, incr) \
880 (type*)expand_item_list(lp, sizeof (type), #type, incr)
881
2ac081ff
WD
882#define EMPTY_XBUF {NULL, 0, 0, 0}
883
884typedef struct {
885 char *buf;
886 size_t pos; /* pos = read pos in the buf */
887 size_t len; /* len = chars following pos */
888 size_t size; /* size = total space in buf */
889} xbuf;
890
891#define INIT_XBUF(xb, str, ln, sz) (xb).buf = (str), (xb).len = (ln), (xb).size = (sz), (xb).pos = 0
bb640d32 892#define INIT_XBUF_STRLEN(xb, str) (xb).buf = (str), (xb).len = strlen((xb).buf), (xb).size = (size_t)-1, (xb).pos = 0
2ac081ff
WD
893/* This one is used to make an output xbuf based on a char[] buffer: */
894#define INIT_CONST_XBUF(xb, bf) (xb).buf = (bf), (xb).size = sizeof (bf), (xb).len = (xb).pos = 0
895
896#define ICB_EXPAND_OUT (1<<0)
897#define ICB_INCLUDE_BAD (1<<1)
898#define ICB_INCLUDE_INCOMPLETE (1<<2)
899
900#define RL_EOL_NULLS (1<<0)
901#define RL_DUMP_COMMENTS (1<<1)
902#define RL_CONVERT (1<<2)
903
54410882 904typedef struct {
c73f2a38 905 char name_type;
54410882
WD
906 char fname[1]; /* has variable size */
907} relnamecache;
908
c627d613 909#include "byteorder.h"
a0456b9c 910#include "lib/mdigest.h"
87f18b62 911#include "lib/wildmatch.h"
740819ef 912#include "lib/permstring.h"
e20a4f84 913#include "lib/addrinfo.h"
0de40240 914
2b916250 915#ifndef __GNUC__
4ea58045 916#define __attribute__(x)
1b896f8d 917#else
7de7b49f
WD
918# if __GNUC__ <= 2
919# define NORETURN
920# endif
4ea58045
WD
921#endif
922
90b13cf6 923#define UNUSED(x) x __attribute__((__unused__))
7de7b49f 924#ifndef NORETURN
011e85a5 925#define NORETURN __attribute__((__noreturn__))
7de7b49f 926#endif
90b13cf6 927
1c3344a1
WD
928typedef struct {
929 STRUCT_STAT st;
930#ifdef SUPPORT_ACLS
931 struct rsync_acl *acc_acl; /* access ACL */
932 struct rsync_acl *def_acl; /* default ACL */
933#endif
16edf865
WD
934#ifdef SUPPORT_XATTRS
935 item_list *xattr;
936#endif
13710874 937} stat_x;
1c3344a1
WD
938
939#define ACL_READY(sx) ((sx).acc_acl != NULL)
16edf865 940#define XATTR_READY(sx) ((sx).xattr != NULL)
1c3344a1 941
58c29609
MP
942#include "proto.h"
943
9439c0cb
WD
944#ifndef SUPPORT_XATTRS
945#define x_stat(fn,fst,xst) do_stat(fn,fst)
946#define x_lstat(fn,fst,xst) do_lstat(fn,fst)
947#define x_fstat(fd,fst,xst) do_fstat(fd,fst)
948#endif
949
0de40240 950/* We have replacement versions of these if they're missing. */
4f5b0756 951#ifndef HAVE_ASPRINTF
0de40240
MP
952int asprintf(char **ptr, const char *format, ...);
953#endif
954
4f5b0756 955#ifndef HAVE_VASPRINTF
0de40240
MP
956int vasprintf(char **ptr, const char *format, va_list ap);
957#endif
958
4f5b0756 959#if !defined HAVE_VSNPRINTF || !defined HAVE_C99_VSNPRINTF
6813fa7e
WD
960#define vsnprintf rsync_vsnprintf
961int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
0de40240
MP
962#endif
963
4f5b0756 964#if !defined HAVE_SNPRINTF || !defined HAVE_C99_VSNPRINTF
6813fa7e 965#define snprintf rsync_snprintf
82ad07c4 966int snprintf(char *str, size_t count, const char *fmt,...);
0de40240
MP
967#endif
968
969
4f5b0756 970#ifndef HAVE_STRERROR
c627d613
AT
971extern char *sys_errlist[];
972#define strerror(i) sys_errlist[i]
973#endif
974
4f5b0756 975#ifndef HAVE_STRCHR
c627d613
AT
976# define strchr index
977# define strrchr rindex
978#endif
979
4f5b0756 980#ifndef HAVE_ERRNO_DECL
c627d613
AT
981extern int errno;
982#endif
983
9a929c8f
WD
984#ifdef HAVE_READLINK
985#define SUPPORT_LINKS 1
986#endif
987#ifdef HAVE_LINK
988#define SUPPORT_HARD_LINKS 1
989#endif
c627d613 990
5173f99e 991#ifdef HAVE_SIGACTION
90b13cf6
WD
992#define SIGACTION(n,h) sigact.sa_handler=(h), sigaction((n),&sigact,NULL)
993#define signal(n,h) we_need_to_call_SIGACTION_not_signal(n,h)
994#else
995#define SIGACTION(n,h) signal(n,h)
996#endif
720b47f2
AT
997
998#ifndef EWOULDBLOCK
999#define EWOULDBLOCK EAGAIN
1000#endif
182dca5c 1001
7b8356d0
AT
1002#ifndef STDIN_FILENO
1003#define STDIN_FILENO 0
1004#endif
1005
1006#ifndef STDOUT_FILENO
1007#define STDOUT_FILENO 1
1008#endif
1009
1010#ifndef STDERR_FILENO
1011#define STDERR_FILENO 2
1012#endif
1013
8120a98f
WD
1014#ifndef S_IRUSR
1015#define S_IRUSR 0400
1016#endif
1017
7b8356d0
AT
1018#ifndef S_IWUSR
1019#define S_IWUSR 0200
1020#endif
1021
b0d791bb
PG
1022#ifndef ACCESSPERMS
1023#define ACCESSPERMS 0777
1024#endif
1025
1026#ifndef S_ISVTX
1027#define S_ISVTX 0
1028#endif
1029
1030#define CHMOD_BITS (S_ISUID | S_ISGID | S_ISVTX | ACCESSPERMS)
1031
b280a1f4
AT
1032#ifndef _S_IFMT
1033#define _S_IFMT 0170000
1034#endif
1035
1036#ifndef _S_IFLNK
1037#define _S_IFLNK 0120000
1038#endif
1039
1040#ifndef S_ISLNK
1041#define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
1042#endif
1043
1e9f155a
AT
1044#ifndef S_ISBLK
1045#define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
1046#endif
1047
1048#ifndef S_ISCHR
1049#define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
1050#endif
1051
a0b65b18
AT
1052#ifndef S_ISSOCK
1053#ifdef _S_IFSOCK
1054#define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
1055#else
1056#define S_ISSOCK(mode) (0)
1057#endif
1058#endif
1059
1060#ifndef S_ISFIFO
1061#ifdef _S_IFIFO
1062#define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
1063#else
1064#define S_ISFIFO(mode) (0)
1065#endif
1066#endif
1067
1e9f155a
AT
1068#ifndef S_ISDIR
1069#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
1070#endif
1071
1072#ifndef S_ISREG
1073#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
1074#endif
1075
f0359dd0
AT
1076/* work out what fcntl flag to use for non-blocking */
1077#ifdef O_NONBLOCK
1078# define NONBLOCK_FLAG O_NONBLOCK
4f5b0756 1079#elif defined SYSV
f0359dd0 1080# define NONBLOCK_FLAG O_NDELAY
d622d4bf 1081#else
f0359dd0
AT
1082# define NONBLOCK_FLAG FNDELAY
1083#endif
1084
d79c77ca
MP
1085#ifndef INADDR_LOOPBACK
1086#define INADDR_LOOPBACK 0x7f000001
1087#endif
1088
1089#ifndef INADDR_NONE
1090#define INADDR_NONE 0xffffffff
1091#endif
a0b65b18 1092
b5c6a6ae
WD
1093#define IS_SPECIAL(mode) (S_ISSOCK(mode) || S_ISFIFO(mode))
1094#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))
7bec6a5c 1095
5afd8aed
DD
1096/* Initial mask on permissions given to temporary files. Mask off setuid
1097 bits and group access because of potential race-condition security
1098 holes, and mask other access because mode 707 is bizarre */
972a3619 1099#define INITACCESSPERMS 0700
e08bfe12
AT
1100
1101/* handler for null strings in printf format */
0ee6ca98 1102#define NS(s) ((s)?(s):"<NULL>")
e08bfe12 1103
58cadc86 1104/* Convenient wrappers for malloc and realloc. Use them. */
a4431563
WD
1105#define new(type) ((type*)malloc(sizeof (type)))
1106#define new0(type) ((type*)calloc(1, sizeof (type)))
1107#define new_array(type, num) ((type*)_new_array((num), sizeof (type), 0))
1108#define new_array0(type, num) ((type*)_new_array((num), sizeof (type), 1))
1109#define realloc_array(ptr, type, num) ((type*)_realloc_array((ptr), sizeof(type), (num)))
fb859e56 1110
e08bfe12 1111/* use magic gcc attributes to catch format errors */
ff41a59f 1112 void rprintf(enum logcode , const char *, ...)
fb859e56 1113 __attribute__((format (printf, 2, 3)))
e08bfe12 1114;
7b3d4257 1115
a039749b
MP
1116/* This is just like rprintf, but it also tries to print some
1117 * representation of the error code. Normally errcode = errno. */
1118void rsyserr(enum logcode, int, const char *, ...)
fb859e56 1119 __attribute__((format (printf, 3, 4)))
a039749b
MP
1120 ;
1121
afbcc8f2
WD
1122/* Make sure that the O_BINARY flag is defined. */
1123#ifndef O_BINARY
1124#define O_BINARY 0
1125#endif
5a788ade 1126
4f5b0756 1127#ifndef HAVE_STRLCPY
5a788ade
AT
1128size_t strlcpy(char *d, const char *s, size_t bufsize);
1129#endif
1130
4f5b0756 1131#ifndef HAVE_STRLCAT
5a788ade
AT
1132size_t strlcat(char *d, const char *s, size_t bufsize);
1133#endif
1134
82980a23
AT
1135#ifndef WEXITSTATUS
1136#define WEXITSTATUS(stat) ((int)(((stat)>>8)&0xFF))
1137#endif
47b032e9
WD
1138#ifndef WIFEXITED
1139#define WIFEXITED(stat) ((int)((stat)&0xFF) == 0)
1140#endif
82980a23 1141
a9766ef1 1142#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)
eecd22ff 1143
4f5b0756 1144#ifdef HAVE_GETEUID
b2bffbb2
WD
1145#define MY_UID() geteuid()
1146#else
1147#define MY_UID() getuid()
1148#endif
1149
4f5b0756 1150#ifdef HAVE_GETEGID
b2bffbb2
WD
1151#define MY_GID() getegid()
1152#else
1153#define MY_GID() getgid()
1154#endif
eecd22ff 1155
aa0e6b99
WD
1156#ifdef FORCE_FD_ZERO_MEMSET
1157#undef FD_ZERO
1158#define FD_ZERO(fdsetp) memset(fdsetp, 0, sizeof (fd_set))
1159#endif
1160
951e826b
WD
1161extern short info_levels[], debug_levels[];
1162
1163#define INFO_GTE(flag, lvl) (info_levels[INFO_##flag] >= (lvl))
1164#define INFO_EQ(flag, lvl) (info_levels[INFO_##flag] == (lvl))
1165#define DEBUG_GTE(flag, lvl) (debug_levels[DEBUG_##flag] >= (lvl))
1166#define DEBUG_EQ(flag, lvl) (debug_levels[DEBUG_##flag] == (lvl))
1167
1168#define INFO_BACKUP 0
1169#define INFO_COPY (INFO_BACKUP+1)
1170#define INFO_DEL (INFO_COPY+1)
1171#define INFO_FLIST (INFO_DEL+1)
1172#define INFO_MISC (INFO_FLIST+1)
1173#define INFO_MOUNT (INFO_MISC+1)
1174#define INFO_NAME (INFO_MOUNT+1)
1175#define INFO_PROGRESS (INFO_NAME+1)
1176#define INFO_REMOVE (INFO_PROGRESS+1)
1177#define INFO_SKIP (INFO_REMOVE+1)
1178#define INFO_STATS (INFO_SKIP+1)
1179#define INFO_SYMSAFE (INFO_STATS+1)
1180
1181#define COUNT_INFO (INFO_SYMSAFE+1)
1182
1183#define DEBUG_ACL 0
1184#define DEBUG_BACKUP (DEBUG_ACL+1)
1185#define DEBUG_BIND (DEBUG_BACKUP+1)
1186#define DEBUG_CHDIR (DEBUG_BIND+1)
1187#define DEBUG_CONNECT (DEBUG_CHDIR+1)
5a18b34d 1188#define DEBUG_CMD (DEBUG_CONNECT+1)
951e826b 1189#define DEBUG_DEL (DEBUG_CMD+1)
5a18b34d
WD
1190#define DEBUG_DELTASUM (DEBUG_DEL+1)
1191#define DEBUG_DUP (DEBUG_DELTASUM+1)
951e826b
WD
1192#define DEBUG_EXIT (DEBUG_DUP+1)
1193#define DEBUG_FILTER (DEBUG_EXIT+1)
1194#define DEBUG_FLIST (DEBUG_FILTER+1)
1195#define DEBUG_FUZZY (DEBUG_FLIST+1)
1196#define DEBUG_GENR (DEBUG_FUZZY+1)
b3347e2a
WD
1197#define DEBUG_HASH (DEBUG_GENR+1)
1198#define DEBUG_HLINK (DEBUG_HASH+1)
951e826b
WD
1199#define DEBUG_ICONV (DEBUG_HLINK+1)
1200#define DEBUG_OWN (DEBUG_ICONV+1)
1201#define DEBUG_PROTO (DEBUG_OWN+1)
1202#define DEBUG_RECV (DEBUG_PROTO+1)
1203#define DEBUG_SEND (DEBUG_RECV+1)
1204#define DEBUG_TIME (DEBUG_SEND+1)
1205
1206#define COUNT_DEBUG (DEBUG_TIME+1)
d5d4b282 1207
4f5b0756 1208#ifndef HAVE_INET_NTOP
d622d4bf 1209const char *inet_ntop(int af, const void *src, char *dst, size_t size);
4f5b0756 1210#endif
8f694072 1211
4f5b0756 1212#ifndef HAVE_INET_PTON
bda41fa5 1213int inet_pton(int af, const char *src, void *dst);
8f694072 1214#endif
0f0ea7f7 1215
f4a0483a
MP
1216#ifdef MAINTAINER_MODE
1217const char *get_panic_action(void);
1218#endif