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