Improved the incremental sending of file lists in two ways: (1)
[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>
ba2133d6 5 * Copyright (C) 2003-2007 Wayne Davison
0f78b815
WD
6 *
7 * This program is free software; you can redistribute it and/or modify
ba2133d6
WD
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
0f78b815
WD
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 *
e7c67065
WD
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
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
c627d613
AT
35#define BACKUP_SUFFIX "~"
36
1b01b295 37/* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
6543dc0c 38 incompatible with older versions :-( */
1b01b295
AT
39#define CHAR_OFFSET 0
40
a5f9cff2
WD
41/* These flags are only used during the flist transfer. */
42
ec33e0e6 43#define XMIT_TOP_DIR (1<<0)
a5f9cff2
WD
44#define XMIT_SAME_MODE (1<<1)
45#define XMIT_EXTENDED_FLAGS (1<<2)
14d776ff 46#define XMIT_SAME_RDEV_pre28 XMIT_EXTENDED_FLAGS /* protocols < 28 */
a5f9cff2
WD
47#define XMIT_SAME_UID (1<<3)
48#define XMIT_SAME_GID (1<<4)
49#define XMIT_SAME_NAME (1<<5)
50#define XMIT_LONG_NAME (1<<6)
51#define XMIT_SAME_TIME (1<<7)
af107f6c 52#define XMIT_SAME_RDEV_MAJOR (1<<8)
c7565dad 53#define XMIT_HLINKED (1<<9)
14d776ff
WD
54#define XMIT_SAME_DEV_pre30 (1<<10) /* protocols < 30 */
55#define XMIT_HLINK_FIRST (1<<10) /* protocols >= 30 */
af107f6c 56#define XMIT_RDEV_MINOR_IS_SMALL (1<<11)
9ec3828b
WD
57#define XMIT_USER_NAME_FOLLOWS (1<<12) /* protocols >= 30 */
58#define XMIT_GROUP_NAME_FOLLOWS (1<<13) /* protocols >= 30 */
a5f9cff2
WD
59
60/* These flags are used in the live flist data. */
61
82ad07c4 62#define FLAG_TOP_DIR (1<<0) /* sender/receiver/generator */
9ec3828b
WD
63#define FLAG_FILE_SENT (1<<1) /* sender/receiver/generator */
64#define FLAG_DIR_CHANGED (1<<1) /* generator */
82ad07c4
WD
65#define FLAG_XFER_DIR (1<<2) /* sender/receiver/generator */
66#define FLAG_MOUNT_DIR (1<<3) /* sender/generator */
96293cf9
WD
67#define FLAG_MISSING_DIR (1<<4) /* generator */
68#define FLAG_HLINKED (1<<5) /* receiver/generator */
82ad07c4
WD
69#define FLAG_HLINK_FIRST (1<<6) /* receiver/generator */
70#define FLAG_HLINK_LAST (1<<7) /* receiver/generator */
bfd31372
WD
71#define FLAG_HLINK_DONE (1<<8) /* receiver/generator */
72#define FLAG_LENGTH64 (1<<9) /* sender/receiver/generator */
73
9ec3828b
WD
74/* These flags are passed to functions but not stored. */
75
76#define FLAG_DIVERT_DIRS (1<<16)/* sender */
77
bfd31372
WD
78#define BITS_SET(val,bits) (((val) & (bits)) == (bits))
79#define BITS_SETnUNSET(val,onbits,offbits) (((val) & ((onbits)|(offbits))) == (onbits))
0a62f5f3
WD
80#define BITS_EQUAL(b1,b2,mask) (((unsigned)(b1) & (unsigned)(mask)) \
81 == ((unsigned)(b2) & (unsigned)(mask)))
520cf417 82
c627d613 83/* update this if you make incompatible changes */
21068d8e 84#define PROTOCOL_VERSION 30
063393d6
MP
85
86/* We refuse to interoperate with versions that are not in this range.
87 * Note that we assume we'll work with later versions: the onus is on
88 * people writing them to make sure that they don't send us anything
89 * we won't understand.
90 *
1b2db7ae
S
91 * Interoperation with old but supported protocol versions
92 * should cause a warning to be printed. At a future date
93 * the old protocol will become the minimum and
94 * compatibility code removed.
95 *
91c4da3f
S
96 * There are two possible explanations for the limit at
97 * MAX_PROTOCOL_VERSION: either to allow new major-rev versions that
98 * do not interoperate with us, and (more likely) so that we can
99 * detect an attempt to connect rsync to a non-rsync server, which is
100 * unlikely to begin by sending a byte between MIN_PROTOCL_VERSION and
101 * MAX_PROTOCOL_VERSION. */
102
3e491682
S
103#define MIN_PROTOCOL_VERSION 20
104#define OLD_PROTOCOL_VERSION 25
1b2db7ae 105#define MAX_PROTOCOL_VERSION 40
c627d613 106
9486289c
AT
107#define RSYNC_PORT 873
108
d867229b 109#define SPARSE_WRITE_SIZE (1024)
dc5ddbcc 110#define WRITE_SIZE (32*1024)
34ccb63e 111#define CHUNK_SIZE (32*1024)
61542c41 112#define MAX_MAP_SIZE (256*1024)
e3fe383a 113#define IO_BUFFER_SIZE (4092)
2b2ea368 114#define MAX_BLOCK_SIZE ((int32)1 << 29)
c627d613 115
e2d22fee
WD
116#define IOERR_GENERAL (1<<0) /* For backward compatibility, this must == 1 */
117#define IOERR_VANISHED (1<<1)
ff3d3c32 118#define IOERR_DEL_LIMIT (1<<2)
e2d22fee 119
874895d5 120#define MAX_ARGS 1000
e4977b0b 121#define MAX_BASIS_DIRS 20
c296031d 122#define MAX_SERVER_ARGS (MAX_BASIS_DIRS*2 + 100)
e4977b0b 123
8d9dc9f9 124#define MPLEX_BASE 7
ff41a59f 125
7842418b
WD
126#define NO_FILTERS 0
127#define SERVER_FILTERS 1
128#define ALL_FILTERS 2
4762db4f 129
753b6b46 130#define XFLG_FATAL_ERRORS (1<<0)
3b2461cf
WD
131#define XFLG_OLD_PREFIXES (1<<1)
132#define XFLG_ANCHORED2ABS (1<<2)
699f7024 133#define XFLG_ABS_IF_SLASH (1<<3)
4762db4f 134
8eda7a4b
WD
135#define ATTRS_REPORT (1<<0)
136#define ATTRS_SKIP_MTIME (1<<1)
5c6fc4a6 137
419896af
WD
138#define FULL_FLUSH 1
139#define NORMAL_FLUSH 0
140
a7260c40
WD
141#define PDIR_CREATE 1
142#define PDIR_DELETE 0
143
e341588a
WD
144/* Note: 0x00 - 0x7F are used for basis_dir[] indexes! */
145#define FNAMECMP_BASIS_DIR_LOW 0x00 /* Must remain 0! */
146#define FNAMECMP_BASIS_DIR_HIGH 0x7F
41cfde6b
WD
147#define FNAMECMP_FNAME 0x80
148#define FNAMECMP_PARTIAL_DIR 0x81
149#define FNAMECMP_BACKUP 0x82
0dd046d3 150#define FNAMECMP_FUZZY 0x83
41cfde6b 151
0cc279e0 152/* For use by the itemize_changes code */
b3222792 153#define ITEM_REPORT_ATIME (1<<0)
0cc279e0
WD
154#define ITEM_REPORT_CHECKSUM (1<<1)
155#define ITEM_REPORT_SIZE (1<<2)
156#define ITEM_REPORT_TIME (1<<3)
157#define ITEM_REPORT_PERMS (1<<4)
158#define ITEM_REPORT_OWNER (1<<5)
159#define ITEM_REPORT_GROUP (1<<6)
b3222792
WD
160#define ITEM_REPORT_ACL (1<<7)
161#define ITEM_REPORT_XATTR (1<<8)
3019a9ba
WD
162#define ITEM_BASIS_TYPE_FOLLOWS (1<<11)
163#define ITEM_XNAME_FOLLOWS (1<<12)
6d0e5d2e
WD
164#define ITEM_IS_NEW (1<<13)
165#define ITEM_LOCAL_CHANGE (1<<14)
166#define ITEM_TRANSFER (1<<15)
d4d4890d 167/* These are outside the range of the transmitted flags. */
d4d4890d
WD
168#define ITEM_MISSING_DATA (1<<16) /* used by log_formatted() */
169#define ITEM_DELETED (1<<17) /* used by log_formatted() */
1e4f5f63 170#define ITEM_MATCHED (1<<18) /* used by itemize() */
0cc279e0 171
3019a9ba
WD
172#define SIGNIFICANT_ITEM_FLAGS (~(\
173 ITEM_BASIS_TYPE_FOLLOWS | ITEM_XNAME_FOLLOWS | ITEM_LOCAL_CHANGE))
669e7671 174
df0054ab 175
56aaa4c4
WD
176/* Log-message categories. Only FERROR and FINFO get sent over the socket,
177 * but FLOG and FSOCKERR can be sent over the receiver -> generator pipe.
85909931 178 * FLOG only goes to the log file, not the client; FCLIENT is the opposite. */
011e85a5 179enum logcode { FNONE=0, FERROR=1, FINFO=2, FLOG=3, FCLIENT=4, FSOCKERR=5 };
419896af
WD
180
181/* Messages types that are sent over the message channel. The logcode
182 * values must all be present here with identical numbers. */
183enum msgcode {
1dcf3b43
WD
184 MSG_DATA=0, /* raw data on the multiplexed stream */
185 MSG_ERROR=FERROR, MSG_INFO=FINFO, /* remote logging */
8388e011 186 MSG_LOG=FLOG, MSG_CLIENT=FCLIENT, MSG_SOCKERR=FSOCKERR, /* sibling logging */
1dcf3b43 187 MSG_REDO=9, /* reprocess indicated flist index */
9ec3828b
WD
188 MSG_FLIST=20, /* extra file list over sibling socket */
189 MSG_FLIST_EOF=21,/* we've transmitted all the file lists */
190 MSG_IO_ERROR=22,/* the sending side had an I/O error */
191 MSG_NOOP=42, /* a do-nothing message */
1dcf3b43
WD
192 MSG_SUCCESS=100,/* successfully updated indicated flist index */
193 MSG_DELETED=101,/* successfully deleted a file on receiving side */
9ec3828b 194 MSG_NO_SEND=102,/* sender failed to open a file we wanted */
1dcf3b43 195 MSG_DONE=86 /* current phase is done */
419896af 196};
7bec6a5c 197
82ad07c4 198#define NDX_DONE -1
9ec3828b
WD
199#define NDX_FLIST_EOF -2
200#define NDX_FLIST_OFFSET -101
82ad07c4 201
65417579
AT
202#include "errcode.h"
203
c627d613
AT
204#include "config.h"
205
e3217f14 206/* The default RSYNC_RSH is always set in config.h. */
24d95c03 207
c627d613 208#include <stdio.h>
4f5b0756 209#ifdef HAVE_SYS_TYPES_H
e95538ca
WD
210# include <sys/types.h>
211#endif
4f5b0756 212#ifdef HAVE_SYS_STAT_H
e95538ca
WD
213# include <sys/stat.h>
214#endif
4f5b0756 215#ifdef STDC_HEADERS
e95538ca
WD
216# include <stdlib.h>
217# include <stddef.h>
218#else
4f5b0756 219# ifdef HAVE_STDLIB_H
e95538ca
WD
220# include <stdlib.h>
221# endif
222#endif
4f5b0756
WD
223#ifdef HAVE_STRING_H
224# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
e95538ca
WD
225# include <memory.h>
226# endif
227# include <string.h>
228#endif
4f5b0756 229#ifdef HAVE_STRINGS_H
e95538ca
WD
230# include <strings.h>
231#endif
2d2414f3
WD
232#ifdef HAVE_INTTYPES_H
233# include <inttypes.h>
234#endif
4f5b0756 235#ifdef HAVE_UNISTD_H
e95538ca 236# include <unistd.h>
c627d613
AT
237#endif
238
4f5b0756 239#ifdef HAVE_SYS_PARAM_H
e95538ca 240#include <sys/param.h>
38b02c13 241#endif
59192f56 242
4f5b0756 243#if defined HAVE_MALLOC_H && (defined HAVE_MALLINFO || !defined HAVE_STDLIB_H)
59192f56 244#include <malloc.h>
d7b305fd
AT
245#endif
246
4f5b0756 247#ifdef HAVE_SYS_SOCKET_H
fdd71e17
AT
248#include <sys/socket.h>
249#endif
250
4f5b0756 251#ifdef TIME_WITH_SYS_TIME
c627d613
AT
252#include <sys/time.h>
253#include <time.h>
254#else
4f5b0756 255#ifdef HAVE_SYS_TIME_H
c627d613
AT
256#include <sys/time.h>
257#else
258#include <time.h>
259#endif
260#endif
261
4f5b0756 262#ifdef HAVE_FCNTL_H
c627d613
AT
263#include <fcntl.h>
264#else
4f5b0756 265#ifdef HAVE_SYS_FCNTL_H
c627d613
AT
266#include <sys/fcntl.h>
267#endif
268#endif
269
4f5b0756 270#ifdef HAVE_SYS_IOCTL_H
94481d91
AT
271#include <sys/ioctl.h>
272#endif
273
4f5b0756 274#ifdef HAVE_SYS_FILIO_H
94481d91
AT
275#include <sys/filio.h>
276#endif
277
c627d613 278#include <signal.h>
4f5b0756 279#ifdef HAVE_SYS_WAIT_H
c627d613
AT
280#include <sys/wait.h>
281#endif
4f5b0756 282#ifdef HAVE_CTYPE_H
c627d613
AT
283#include <ctype.h>
284#endif
4f5b0756 285#ifdef HAVE_GRP_H
c627d613
AT
286#include <grp.h>
287#endif
288#include <errno.h>
289
4f5b0756 290#ifdef HAVE_UTIME_H
c627d613
AT
291#include <utime.h>
292#endif
293
4f5b0756 294#ifdef HAVE_SYS_SELECT_H
8bf73749
AT
295#include <sys/select.h>
296#endif
297
4f5b0756 298#ifdef HAVE_SYS_MODE_H
773f2bd4 299/* apparently AIX needs this for S_ISLNK */
05a6556d 300#ifndef S_ISLNK
773f2bd4
AT
301#include <sys/mode.h>
302#endif
05a6556d 303#endif
773f2bd4 304
4f5b0756 305#ifdef HAVE_GLOB_H
874895d5
AT
306#include <glob.h>
307#endif
308
f6c34742
AT
309/* these are needed for the uid/gid mapping code */
310#include <pwd.h>
311#include <grp.h>
312
9486289c 313#include <stdarg.h>
f0fca04e
AT
314#include <netinet/in.h>
315#include <arpa/inet.h>
316#include <netdb.h>
ff8b29b8 317#include <syslog.h>
6c8f5373 318#include <sys/file.h>
9486289c 319
4f5b0756 320#ifdef HAVE_DIRENT_H
e8f5b936
AT
321# include <dirent.h>
322#else
323# define dirent direct
4f5b0756 324# ifdef HAVE_SYS_NDIR_H
e8f5b936
AT
325# include <sys/ndir.h>
326# endif
4f5b0756 327# ifdef HAVE_SYS_DIR_H
e8f5b936
AT
328# include <sys/dir.h>
329# endif
4f5b0756 330# ifdef HAVE_NDIR_H
e8f5b936
AT
331# include <ndir.h>
332# endif
333#endif
334
4f5b0756 335#ifdef MAJOR_IN_MKDEV
c39d6514 336#include <sys/mkdev.h>
8a33c406 337# if !defined makedev && (defined mkdev || defined _WIN32 || defined __WIN32__)
73496a36
WD
338# define makedev mkdev
339# endif
4f5b0756 340#elif defined MAJOR_IN_SYSMACROS
f8ed564c 341#include <sys/sysmacros.h>
c39d6514
WD
342#endif
343
5a3810b4
WD
344#ifdef MAKEDEV_TAKES_3_ARGS
345#define MAKEDEV(devmajor,devminor) makedev(0,devmajor,devminor)
346#else
347#define MAKEDEV(devmajor,devminor) makedev(devmajor,devminor)
348#endif
349
4f5b0756 350#ifdef HAVE_COMPAT_H
e8f5b936
AT
351#include <compat.h>
352#endif
353
ea8291d8
WD
354#ifdef HAVE_LIMITS_H
355# include <limits.h>
356#endif
357
1bfbf40b
MP
358#include <assert.h>
359
9935066b 360#include "lib/pool_alloc.h"
e8f5b936 361
f0fca04e
AT
362#define BOOL int
363
c627d613
AT
364#ifndef uchar
365#define uchar unsigned char
366#endif
367
4f5b0756 368#ifdef SIGNED_CHAR_OK
debb4505
AT
369#define schar signed char
370#else
371#define schar char
372#endif
373
2d2414f3
WD
374#ifndef int16
375#if SIZEOF_INT16_T == 2
376# define int16 int16_t
377#else
378# define int16 short
379#endif
380#endif
381
382#ifndef uint16
383#if SIZEOF_UINT16_T == 2
384# define uint16 uint16_t
385#else
386# define uint16 unsigned int16
387#endif
388#endif
389
43d0f38b
WD
390/* Find a variable that is either exactly 32-bits or longer.
391 * If some code depends on 32-bit truncation, it will need to
392 * take special action in a "#if SIZEOF_INT32 > 4" section. */
c627d613 393#ifndef int32
2d2414f3
WD
394#if SIZEOF_INT32_T == 4
395# define int32 int32_t
396# define SIZEOF_INT32 4
397#elif SIZEOF_INT == 4
43d0f38b
WD
398# define int32 int
399# define SIZEOF_INT32 4
400#elif SIZEOF_LONG == 4
401# define int32 long
402# define SIZEOF_INT32 4
403#elif SIZEOF_SHORT == 4
404# define int32 short
405# define SIZEOF_INT32 4
406#elif SIZEOF_INT > 4
407# define int32 int
408# define SIZEOF_INT32 SIZEOF_INT
409#elif SIZEOF_LONG > 4
410# define int32 long
411# define SIZEOF_INT32 SIZEOF_LONG
8de330a3 412#else
43d0f38b 413# error Could not find a 32-bit integer variable
c627d613 414#endif
43d0f38b
WD
415#else
416# define SIZEOF_INT32 4
c627d613
AT
417#endif
418
419#ifndef uint32
2d2414f3
WD
420#if SIZEOF_UINT32_T == 4
421# define uint32 uint32_t
422#else
423# define uint32 unsigned int32
424#endif
c627d613
AT
425#endif
426
0dd046d3 427#if SIZEOF_OFF_T == 8 || !SIZEOF_OFF64_T || !defined HAVE_STRUCT_STAT64
bcacc18b
AT
428#define OFF_T off_t
429#define STRUCT_STAT struct stat
5b5f7e3b
WD
430#else
431#define OFF_T off64_t
432#define STRUCT_STAT struct stat64
433#define USE_STAT64_FUNCS 1
bcacc18b
AT
434#endif
435
d4198823
WD
436/* CAVEAT: on some systems, int64 will really be a 32-bit integer IFF
437 * that's the maximum size the file system can handle and there is no
438 * 64-bit type available. The rsync source must therefore take steps
439 * to ensure that any code that really requires a 64-bit integer has
440 * it (e.g. the checksum code uses two 32-bit integers for its 64-bit
441 * counter). */
2d2414f3
WD
442#if SIZEOF_INT64_T == 8
443# define int64 int64_t
444# define SIZEOF_INT64 8
445#elif SIZEOF_LONG == 8
d622d4bf
WD
446# define int64 long
447# define SIZEOF_INT64 8
448#elif SIZEOF_INT == 8
449# define int64 int
450# define SIZEOF_INT64 8
451#elif SIZEOF_LONG_LONG == 8
452# define int64 long long
453# define SIZEOF_INT64 8
2c177562
WD
454#elif SIZEOF_OFF64_T == 8
455# define int64 off64_t
456# define SIZEOF_INT64 8
d622d4bf
WD
457#elif SIZEOF_OFF_T == 8
458# define int64 off_t
459# define SIZEOF_INT64 8
460#elif SIZEOF_INT > 8
461# define int64 int
462# define SIZEOF_INT64 SIZEOF_INT
463#elif SIZEOF_LONG > 8
464# define int64 long
465# define SIZEOF_INT64 SIZEOF_LONG
466#elif SIZEOF_LONG_LONG > 8
467# define int64 long long
468# define SIZEOF_INT64 SIZEOF_LONG_LONG
71c46176 469#else
736a6a29 470/* As long as it gets... */
d622d4bf
WD
471# define int64 off_t
472# define SIZEOF_INT64 SIZEOF_OFF_T
71c46176 473#endif
c627d613 474
6abd193f
MP
475/* Starting from protocol version 26, we always use 64-bit
476 * ino_t and dev_t internally, even if this platform does not
477 * allow files to have 64-bit inums. That's because the
478 * receiver needs to find duplicate (dev,ino) tuples to detect
479 * hardlinks, and it might have files coming from a platform
480 * that has 64-bit inums.
481 *
482 * The only exception is if we're on a platform with no 64-bit type at
483 * all.
484 *
485 * Because we use read_longint() to get these off the wire, if you
486 * transfer devices or hardlinks with dev or inum > 2**32 to a machine
487 * with no 64-bit types then you will get an overflow error. Probably
488 * not many people have that combination of machines, and you can
489 * avoid it by not preserving hardlinks or not transferring device
490 * nodes. It's not clear that any other behaviour is better.
491 *
492 * Note that if you transfer devices from a 64-bit-devt machine (say,
493 * Solaris) to a 32-bit-devt machine (say, Linux-2.2/x86) then the
494 * device numbers will be truncated. But it's a kind of silly thing
495 * to do anyhow.
b9df3bf2 496 *
33a2361c
WD
497 * FIXME: I don't think the code in flist.c has ever worked on a system
498 * where dev_t is a struct.
d622d4bf 499 */
33a2361c 500
14d776ff
WD
501struct idev_node {
502 int64 key;
503 void *data;
504};
505
c627d613
AT
506#ifndef MIN
507#define MIN(a,b) ((a)<(b)?(a):(b))
508#endif
509
510#ifndef MAX
511#define MAX(a,b) ((a)>(b)?(a):(b))
512#endif
513
d41c7d02
DD
514#ifndef MAXHOSTNAMELEN
515#define MAXHOSTNAMELEN 256
516#endif
517
c627d613 518/* the length of the md4 checksum */
ebb0a6f6 519#define MD4_SUM_LENGTH 16
c627d613 520#define SUM_LENGTH 16
195bd906
S
521#define SHORT_SUM_LENGTH 2
522#define BLOCKSUM_BIAS 10
c627d613
AT
523
524#ifndef MAXPATHLEN
525#define MAXPATHLEN 1024
526#endif
527
a22ca885
WD
528/* We want a roomy line buffer that can hold more than MAXPATHLEN,
529 * and significantly more than an overly short MAXPATHLEN. */
530#if MAXPATHLEN < 4096
531#define BIGPATHBUFLEN (4096+1024)
532#else
533#define BIGPATHBUFLEN (MAXPATHLEN+1024)
534#endif
535
52d3e106
S
536#ifndef NAME_MAX
537#define NAME_MAX 255
538#endif
539
0473e2a1
AT
540#ifndef INADDR_NONE
541#define INADDR_NONE 0xffffffff
542#endif
543
bda41fa5
WD
544#ifndef IN_LOOPBACKNET
545#define IN_LOOPBACKNET 127
546#endif
547
25bd9945 548#define GID_NONE ((gid_t)-1)
a60e2dca 549
5b30412c 550union file_extras {
bd6edd3f
WD
551 int32 num;
552 uint32 unum;
5b30412c
WD
553};
554
c627d613 555struct file_struct {
2d2414f3
WD
556 const char *dirname; /* The dir info inside the transfer */
557 time_t modtime; /* When the item was last modified */
558 uint32 len32; /* Lowest 32 bits of the file's length */
559 uint16 mode; /* The item's type and permissions */
560 uint16 flags; /* The FLAG_* bits for this item */
561 const char basename[1]; /* The basename (AKA filename) follows */
c627d613
AT
562};
563
99a957d3 564extern int file_extra_cnt;
96293cf9
WD
565extern int preserve_uid;
566extern int preserve_gid;
b96efc2f 567
c58c1dc4 568#define FILE_STRUCT_LEN (offsetof(struct file_struct, basename))
5b30412c 569#define EXTRA_LEN (sizeof (union file_extras))
bd6edd3f 570#define PTR_EXTRA_LEN ((sizeof (char *) + EXTRA_LEN - 1) / EXTRA_LEN)
96293cf9
WD
571#define SUM_EXTRA_CNT ((MD4_SUM_LENGTH + EXTRA_LEN - 1) / EXTRA_LEN)
572
5b30412c 573#define REQ_EXTRA(f,ndx) ((union file_extras*)(f) - (ndx))
99a957d3 574#define OPT_EXTRA(f,bump) ((union file_extras*)(f) - file_extra_cnt - 1 - (bump))
b37b7c99 575
96293cf9
WD
576#define LEN64_BUMP(f) ((f)->flags & FLAG_LENGTH64 ? 1 : 0)
577#define HLINK_BUMP(f) (F_IS_HLINKED(f) ? 1 : 0)
578
c58c1dc4 579/* The length applies to all items. */
bf466c0f
WD
580#if SIZEOF_INT64 < 8
581#define F_LENGTH(f) ((int64)(f)->len32)
582#else
583#define F_LENGTH(f) ((int64)(f)->len32 + ((f)->flags & FLAG_LENGTH64 \
584 ? (int64)OPT_EXTRA(f, 0)->unum << 32 : 0))
585#endif
82ad07c4 586
96293cf9 587/* If there is a symlink string, it is always right after the basename */
c58c1dc4 588#define F_SYMLINK(f) ((f)->basename + strlen((f)->basename) + 1)
82ad07c4 589
bd6edd3f
WD
590/* The sending side always has this available: */
591#define F_ROOTDIR(f) (*(const char**)REQ_EXTRA(f, PTR_EXTRA_LEN))
592
593/* The receiving side always has this available: */
594#define F_DEPTH(f) REQ_EXTRA(f, 1)->num
595
96293cf9 596/* When the associated option is on, all entries will have these present: */
5bb73485
WD
597#define F_OWNER(f) REQ_EXTRA(f, preserve_uid)->unum
598#define F_GROUP(f) REQ_EXTRA(f, preserve_gid)->unum
82ad07c4 599
b37b7c99 600/* These items are per-entry optional and mutally exclusive: */
14d776ff 601#define F_HL_GNUM(f) OPT_EXTRA(f, LEN64_BUMP(f))->num
bfd31372 602#define F_HL_PREV(f) OPT_EXTRA(f, LEN64_BUMP(f))->num
9ec3828b
WD
603#define F_DIRDEV_P(f) (&OPT_EXTRA(f, LEN64_BUMP(f) + 2 - 1)->unum)
604#define F_DIRNODE_P(f) (&OPT_EXTRA(f, LEN64_BUMP(f) + 3 - 1)->num)
82ad07c4 605
b37b7c99
WD
606/* This optional item might follow an F_HL_*() item.
607 * (Note: a device doesn't need to check LEN64_BUMP(f).) */
608#define F_RDEV_P(f) (&OPT_EXTRA(f, HLINK_BUMP(f) + 2 - 1)->unum)
82ad07c4 609
96293cf9 610/* The sum is only present on regular files. */
b8c167e8
WD
611#define F_SUM(f) ((const char*)OPT_EXTRA(f, LEN64_BUMP(f) + HLINK_BUMP(f) \
612 + SUM_EXTRA_CNT - 1))
96293cf9 613
b37b7c99 614/* Some utility defines: */
c58c1dc4 615#define F_IS_ACTIVE(f) (f)->basename[0]
bfd31372 616#define F_IS_HLINKED(f) ((f)->flags & FLAG_HLINKED)
5bb73485 617
b7cfb9e2
WD
618#define F_HLINK_NOT_FIRST(f) BITS_SETnUNSET((f)->flags, FLAG_HLINKED, FLAG_HLINK_FIRST)
619#define F_HLINK_NOT_LAST(f) BITS_SETnUNSET((f)->flags, FLAG_HLINKED, FLAG_HLINK_LAST)
96293cf9 620
5bb73485
WD
621#define F_UID(f) ((uid_t)F_OWNER(f))
622#define F_GID(f) ((gid_t)F_GROUP(f))
623
b37b7c99
WD
624#define DEV_MAJOR(a) (a)[0]
625#define DEV_MINOR(a) (a)[1]
626
9ec3828b
WD
627#define DIR_PARENT(a) (a)[0]
628#define DIR_FIRST_CHILD(a) (a)[1]
629#define DIR_NEXT_SIBLING(a) (a)[2]
630
96293cf9
WD
631/*
632 * Start the flist array at FLIST_START entries and grow it
633 * by doubling until FLIST_LINEAR then grow by FLIST_LINEAR
634 */
635#define FLIST_START (32 * 1024)
636#define FLIST_LINEAR (FLIST_START * 512)
82ad07c4 637
9935066b 638/*
82ad07c4 639 * Extent size for allocation pools: A minimum size of 128KB
9935066b
S
640 * is needed to mmap them so that freeing will release the
641 * space to the OS.
642 *
643 * Larger sizes reduce leftover fragments and speed free calls
82ad07c4 644 * (when they happen). Smaller sizes increase the chance of
9935066b
S
645 * freed allocations freeing whole extents.
646 */
9935066b
S
647#define FILE_EXTENT (256 * 1024)
648#define HLINK_EXTENT (128 * 1024)
649
9ec3828b
WD
650#define FLIST_TEMP (1<<1)
651
c627d613 652struct file_list {
9ec3828b 653 struct file_list *next, *prev;
2b2ea368 654 struct file_struct **files;
9935066b 655 alloc_pool_t file_pool;
82ad07c4
WD
656 int count, malloced;
657 int low, high; /* 0-relative index values excluding empties */
3ea6e0e7 658 int ndx_start; /* the start offset for inc_recurse mode */
9ec3828b
WD
659 int parent_ndx; /* dir_flist index of parent directory */
660 int in_progress, to_redo;
c627d613
AT
661};
662
a3221d2a
WD
663#define SUMFLG_SAME_OFFSET (1<<0)
664
c627d613 665struct sum_buf {
6ded1170 666 OFF_T offset; /**< offset in file of this chunk */
a06b419d 667 int32 len; /**< length of chunk of file */
6ded1170 668 uint32 sum1; /**< simple checksum */
d733de97 669 int32 chain; /**< next hash-table collision */
a3221d2a 670 short flags; /**< flag bits */
6ded1170 671 char sum2[SUM_LENGTH]; /**< checksum */
c627d613
AT
672};
673
674struct sum_struct {
6ded1170 675 OFF_T flength; /**< total file length */
2b2ea368 676 struct sum_buf *sums; /**< points to info for each chunk */
15859584 677 int32 count; /**< how many chunks */
a06b419d
WD
678 int32 blength; /**< block_length */
679 int32 remainder; /**< flength % block_length */
da9d12f5 680 int s2length; /**< sum2_length */
c627d613
AT
681};
682
c6e7fcb4 683struct map_struct {
6a7cc46c
S
684 OFF_T file_size; /* File size (from stat) */
685 OFF_T p_offset; /* Window start */
686 OFF_T p_fd_offset; /* offset of cursor in fd ala lseek */
2b2ea368
WD
687 char *p; /* Window pointer */
688 int32 p_size; /* Largest window size we allocated */
689 int32 p_len; /* Latest (rounded) window size */
690 int32 def_window_size; /* Default window size */
691 int fd; /* File Descriptor */
692 int status; /* first errno from read errors */
c6e7fcb4 693};
c627d613 694
e2d22fee
WD
695#define MATCHFLG_WILD (1<<0) /* pattern has '*', '[', and/or '?' */
696#define MATCHFLG_WILD2 (1<<1) /* pattern has '**' */
685517ab
WD
697#define MATCHFLG_WILD2_PREFIX (1<<2) /* pattern starts with "**" */
698#define MATCHFLG_WILD3_SUFFIX (1<<3) /* pattern ends with "***" */
699#define MATCHFLG_ABS_PATH (1<<4) /* path-match on absolute path */
700#define MATCHFLG_INCLUDE (1<<5) /* this is an include, not an exclude */
701#define MATCHFLG_DIRECTORY (1<<6) /* this matches only directories */
46fa6025
WD
702#define MATCHFLG_WORD_SPLIT (1<<7) /* split rules on whitespace */
703#define MATCHFLG_NO_INHERIT (1<<8) /* don't inherit these rules */
704#define MATCHFLG_NO_PREFIXES (1<<9) /* parse no prefixes from patterns */
705#define MATCHFLG_MERGE_FILE (1<<10)/* specifies a file to merge */
706#define MATCHFLG_PERDIR_MERGE (1<<11)/* merge-file is searched per-dir */
707#define MATCHFLG_EXCLUDE_SELF (1<<12)/* merge-file name should be excluded */
708#define MATCHFLG_FINISH_SETUP (1<<13)/* per-dir merge file needs setup */
53b417e4
WD
709#define MATCHFLG_NEGATE (1<<14)/* rule matches when pattern does not */
710#define MATCHFLG_CVS_IGNORE (1<<15)/* rule was -C or :C */
a427e893
WD
711#define MATCHFLG_SENDER_SIDE (1<<16)/* rule applies to the sending side */
712#define MATCHFLG_RECEIVER_SIDE (1<<17)/* rule applies to the receiving side */
685517ab 713#define MATCHFLG_CLEAR_LIST (1<<18)/* this item is the "!" token */
c0f1e57b 714#define MATCHFLG_PERISHABLE (1<<19)/* perishable if parent dir goes away */
7c8e23bd 715
3b2461cf 716#define MATCHFLGS_FROM_CONTAINER (MATCHFLG_ABS_PATH | MATCHFLG_INCLUDE \
a427e893 717 | MATCHFLG_DIRECTORY | MATCHFLG_SENDER_SIDE \
c0f1e57b
WD
718 | MATCHFLG_NEGATE | MATCHFLG_RECEIVER_SIDE \
719 | MATCHFLG_PERISHABLE)
3b2461cf 720
7842418b
WD
721struct filter_struct {
722 struct filter_struct *next;
2b6b4d53 723 char *pattern;
53b417e4 724 uint32 match_flags;
46fa6025
WD
725 union {
726 int slash_cnt;
7842418b 727 struct filter_list_struct *mergelist;
46fa6025 728 } u;
2b6b4d53
AT
729};
730
7842418b
WD
731struct filter_list_struct {
732 struct filter_struct *head;
733 struct filter_struct *tail;
ac1d2d33 734 char *debug_type;
63d03319
WD
735};
736
a800434a
AT
737struct stats {
738 int64 total_size;
739 int64 total_transferred_size;
740 int64 total_written;
741 int64 total_read;
742 int64 literal_data;
743 int64 matched_data;
d4198823
WD
744 int64 flist_buildtime;
745 int64 flist_xfertime;
604dbf6d 746 int64 flist_size;
a800434a
AT
747 int num_files;
748 int num_transferred_files;
dc8293ff 749 int current_file_index;
a800434a
AT
750};
751
f7bce90c 752struct chmod_mode_struct;
2b6b4d53 753
c627d613 754#include "byteorder.h"
8de330a3 755#include "lib/mdfour.h"
87f18b62 756#include "lib/wildmatch.h"
740819ef 757#include "lib/permstring.h"
e20a4f84 758#include "lib/addrinfo.h"
0de40240 759
2b916250 760#ifndef __GNUC__
4ea58045 761#define __attribute__(x)
7de7b49f
WD
762# if __GNUC__ <= 2
763# define NORETURN
764# endif
4ea58045
WD
765#endif
766
90b13cf6 767#define UNUSED(x) x __attribute__((__unused__))
7de7b49f 768#ifndef NORETURN
011e85a5 769#define NORETURN __attribute__((__noreturn__))
7de7b49f 770#endif
90b13cf6 771
58c29609
MP
772#include "proto.h"
773
0de40240 774/* We have replacement versions of these if they're missing. */
4f5b0756 775#ifndef HAVE_ASPRINTF
0de40240
MP
776int asprintf(char **ptr, const char *format, ...);
777#endif
778
4f5b0756 779#ifndef HAVE_VASPRINTF
0de40240
MP
780int vasprintf(char **ptr, const char *format, va_list ap);
781#endif
782
4f5b0756 783#if !defined HAVE_VSNPRINTF || !defined HAVE_C99_VSNPRINTF
6813fa7e
WD
784#define vsnprintf rsync_vsnprintf
785int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
0de40240
MP
786#endif
787
4f5b0756 788#if !defined HAVE_SNPRINTF || !defined HAVE_C99_VSNPRINTF
6813fa7e 789#define snprintf rsync_snprintf
82ad07c4 790int snprintf(char *str, size_t count, const char *fmt,...);
0de40240
MP
791#endif
792
793
4f5b0756 794#ifndef HAVE_STRERROR
c627d613
AT
795extern char *sys_errlist[];
796#define strerror(i) sys_errlist[i]
797#endif
798
4f5b0756 799#ifndef HAVE_STRCHR
c627d613
AT
800# define strchr index
801# define strrchr rindex
802#endif
803
4f5b0756 804#ifndef HAVE_ERRNO_DECL
c627d613
AT
805extern int errno;
806#endif
807
9a929c8f
WD
808#ifdef HAVE_READLINK
809#define SUPPORT_LINKS 1
810#endif
811#ifdef HAVE_LINK
812#define SUPPORT_HARD_LINKS 1
813#endif
c627d613 814
5173f99e 815#ifdef HAVE_SIGACTION
90b13cf6
WD
816#define SIGACTION(n,h) sigact.sa_handler=(h), sigaction((n),&sigact,NULL)
817#define signal(n,h) we_need_to_call_SIGACTION_not_signal(n,h)
818#else
819#define SIGACTION(n,h) signal(n,h)
820#endif
720b47f2
AT
821
822#ifndef EWOULDBLOCK
823#define EWOULDBLOCK EAGAIN
824#endif
182dca5c 825
7b8356d0
AT
826#ifndef STDIN_FILENO
827#define STDIN_FILENO 0
828#endif
829
830#ifndef STDOUT_FILENO
831#define STDOUT_FILENO 1
832#endif
833
834#ifndef STDERR_FILENO
835#define STDERR_FILENO 2
836#endif
837
8120a98f
WD
838#ifndef S_IRUSR
839#define S_IRUSR 0400
840#endif
841
7b8356d0
AT
842#ifndef S_IWUSR
843#define S_IWUSR 0200
844#endif
845
b0d791bb
PG
846#ifndef ACCESSPERMS
847#define ACCESSPERMS 0777
848#endif
849
850#ifndef S_ISVTX
851#define S_ISVTX 0
852#endif
853
854#define CHMOD_BITS (S_ISUID | S_ISGID | S_ISVTX | ACCESSPERMS)
855
b280a1f4
AT
856#ifndef _S_IFMT
857#define _S_IFMT 0170000
858#endif
859
860#ifndef _S_IFLNK
861#define _S_IFLNK 0120000
862#endif
863
864#ifndef S_ISLNK
865#define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
866#endif
867
1e9f155a
AT
868#ifndef S_ISBLK
869#define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
870#endif
871
872#ifndef S_ISCHR
873#define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
874#endif
875
a0b65b18
AT
876#ifndef S_ISSOCK
877#ifdef _S_IFSOCK
878#define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
879#else
880#define S_ISSOCK(mode) (0)
881#endif
882#endif
883
884#ifndef S_ISFIFO
885#ifdef _S_IFIFO
886#define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
887#else
888#define S_ISFIFO(mode) (0)
889#endif
890#endif
891
1e9f155a
AT
892#ifndef S_ISDIR
893#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
894#endif
895
896#ifndef S_ISREG
897#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
898#endif
899
f0359dd0
AT
900/* work out what fcntl flag to use for non-blocking */
901#ifdef O_NONBLOCK
902# define NONBLOCK_FLAG O_NONBLOCK
4f5b0756 903#elif defined SYSV
f0359dd0 904# define NONBLOCK_FLAG O_NDELAY
d622d4bf 905#else
f0359dd0
AT
906# define NONBLOCK_FLAG FNDELAY
907#endif
908
d79c77ca
MP
909#ifndef INADDR_LOOPBACK
910#define INADDR_LOOPBACK 0x7f000001
911#endif
912
913#ifndef INADDR_NONE
914#define INADDR_NONE 0xffffffff
915#endif
a0b65b18 916
b5c6a6ae
WD
917#define IS_SPECIAL(mode) (S_ISSOCK(mode) || S_ISFIFO(mode))
918#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))
7bec6a5c 919
5afd8aed
DD
920/* Initial mask on permissions given to temporary files. Mask off setuid
921 bits and group access because of potential race-condition security
922 holes, and mask other access because mode 707 is bizarre */
972a3619 923#define INITACCESSPERMS 0700
e08bfe12
AT
924
925/* handler for null strings in printf format */
0ee6ca98 926#define NS(s) ((s)?(s):"<NULL>")
e08bfe12 927
58cadc86
WD
928/* Convenient wrappers for malloc and realloc. Use them. */
929#define new(type) ((type *)malloc(sizeof(type)))
930#define new_array(type, num) ((type *)_new_array(sizeof(type), (num)))
931#define realloc_array(ptr, type, num) ((type *)_realloc_array((ptr), sizeof(type), (num)))
fb859e56 932
e08bfe12 933/* use magic gcc attributes to catch format errors */
ff41a59f 934 void rprintf(enum logcode , const char *, ...)
fb859e56 935 __attribute__((format (printf, 2, 3)))
e08bfe12 936;
7b3d4257 937
a039749b
MP
938/* This is just like rprintf, but it also tries to print some
939 * representation of the error code. Normally errcode = errno. */
940void rsyserr(enum logcode, int, const char *, ...)
fb859e56 941 __attribute__((format (printf, 3, 4)))
a039749b
MP
942 ;
943
afbcc8f2
WD
944/* Make sure that the O_BINARY flag is defined. */
945#ifndef O_BINARY
946#define O_BINARY 0
947#endif
5a788ade 948
4f5b0756 949#ifndef HAVE_STRLCPY
5a788ade
AT
950size_t strlcpy(char *d, const char *s, size_t bufsize);
951#endif
952
4f5b0756 953#ifndef HAVE_STRLCAT
5a788ade
AT
954size_t strlcat(char *d, const char *s, size_t bufsize);
955#endif
956
82980a23
AT
957#ifndef WEXITSTATUS
958#define WEXITSTATUS(stat) ((int)(((stat)>>8)&0xFF))
959#endif
47b032e9
WD
960#ifndef WIFEXITED
961#define WIFEXITED(stat) ((int)((stat)&0xFF) == 0)
962#endif
82980a23 963
a9766ef1 964#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)
eecd22ff 965
4f5b0756 966#ifdef HAVE_GETEUID
b2bffbb2
WD
967#define MY_UID() geteuid()
968#else
969#define MY_UID() getuid()
970#endif
971
4f5b0756 972#ifdef HAVE_GETEGID
b2bffbb2
WD
973#define MY_GID() getegid()
974#else
975#define MY_GID() getgid()
976#endif
eecd22ff
MP
977
978extern int verbose;
d5d4b282 979
4f5b0756 980#ifndef HAVE_INET_NTOP
d622d4bf 981const char *inet_ntop(int af, const void *src, char *dst, size_t size);
4f5b0756 982#endif
8f694072 983
4f5b0756 984#ifndef HAVE_INET_PTON
bda41fa5 985int inet_pton(int af, const char *src, void *dst);
8f694072 986#endif
0f0ea7f7 987
f4a0483a
MP
988#ifdef MAINTAINER_MODE
989const char *get_panic_action(void);
990#endif
2dc7b8bd
WD
991
992static inline int
993isDigit(const char *ptr)
994{
995 return isdigit(*(unsigned char *)ptr);
996}
997
998static inline int
999isPrint(const char *ptr)
1000{
1001 return isprint(*(unsigned char *)ptr);
1002}
1003
1004static inline int
1005isSpace(const char *ptr)
1006{
1007 return isspace(*(unsigned char *)ptr);
1008}
1009
1010static inline int
1011isLower(const char *ptr)
1012{
1013 return islower(*(unsigned char *)ptr);
1014}
1015
1016static inline int
1017isUpper(const char *ptr)
1018{
1019 return isupper(*(unsigned char *)ptr);
1020}
1021
1022static inline int
1023toLower(const char *ptr)
1024{
1025 return tolower(*(unsigned char *)ptr);
1026}
1027
1028static inline int
1029toUpper(const char *ptr)
1030{
1031 return toupper(*(unsigned char *)ptr);
1032}