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