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