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