preparing for release of 2.0.17
[rsync/rsync.git] / rsync.h
CommitLineData
c627d613
AT
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#define BLOCK_SIZE 700
21#define RSYNC_RSH_ENV "RSYNC_RSH"
7b8356d0 22
c627d613 23#define RSYNC_NAME "rsync"
f0fca04e 24#define RSYNCD_CONF "/etc/rsyncd.conf"
f0fca04e 25
c627d613
AT
26#define BACKUP_SUFFIX "~"
27
1b01b295
AT
28/* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
29 imcompatible with older versions :-( */
30#define CHAR_OFFSET 0
31
32
3333ffbd 33#define FLAG_DELETE (1<<0)
4fe159a8 34#define SAME_MODE (1<<1)
dc5ddbcc 35#define SAME_RDEV (1<<2)
4fe159a8
AT
36#define SAME_UID (1<<3)
37#define SAME_GID (1<<4)
38#define SAME_DIR (1<<5)
39#define SAME_NAME SAME_DIR
40#define LONG_NAME (1<<6)
41#define SAME_TIME (1<<7)
42
c627d613 43/* update this if you make incompatible changes */
7b1ce0d7 44#define PROTOCOL_VERSION 19
3ec4dd97 45#define MIN_PROTOCOL_VERSION 11
6ba9279f 46#define MAX_PROTOCOL_VERSION 30
c627d613 47
9486289c
AT
48#define RSYNC_PORT 873
49
d867229b 50#define SPARSE_WRITE_SIZE (1024)
dc5ddbcc 51#define WRITE_SIZE (32*1024)
34ccb63e 52#define CHUNK_SIZE (32*1024)
2f326946 53#define MAX_MAP_SIZE (1*1024*1024)
e3fe383a 54#define IO_BUFFER_SIZE (4092)
5dd7e031 55#define MAX_READ_BUFFER (1024*1024)
c627d613 56
874895d5 57#define MAX_ARGS 1000
f0fca04e 58
8d9dc9f9 59#define MPLEX_BASE 7
9486289c
AT
60#define FERROR 1
61#define FINFO 2
7bec6a5c 62
c627d613
AT
63#include "config.h"
64
24d95c03
AT
65#if HAVE_REMSH
66#define RSYNC_RSH "remsh"
67#else
68#define RSYNC_RSH "rsh"
69#endif
70
c627d613
AT
71#include <sys/types.h>
72#ifdef HAVE_UNISTD_H
73#include <unistd.h>
74#endif
75#include <stdio.h>
3591c066 76#include <stddef.h>
c627d613
AT
77
78#ifdef HAVE_SYS_PARAM_H
79#include <sys/param.h>
80#endif
81
d7b305fd
AT
82#ifdef HAVE_STDLIB_H
83#include <stdlib.h>
84#endif
85
fdd71e17
AT
86#ifdef HAVE_SYS_SOCKET_H
87#include <sys/socket.h>
88#endif
89
d7b305fd
AT
90#ifdef HAVE_STRING_H
91#include <string.h>
c627d613
AT
92#endif
93
c627d613
AT
94#ifdef HAVE_MALLOC_H
95#include <malloc.h>
96#endif
97
98#ifdef TIME_WITH_SYS_TIME
99#include <sys/time.h>
100#include <time.h>
101#else
102#ifdef HAVE_SYS_TIME_H
103#include <sys/time.h>
104#else
105#include <time.h>
106#endif
107#endif
108
109#ifdef HAVE_FCNTL_H
110#include <fcntl.h>
111#else
112#ifdef HAVE_SYS_FCNTL_H
113#include <sys/fcntl.h>
114#endif
115#endif
116
117#include <sys/stat.h>
118
94481d91
AT
119#ifdef HAVE_SYS_IOCTL_H
120#include <sys/ioctl.h>
121#endif
122
123#ifdef HAVE_SYS_FILIO_H
124#include <sys/filio.h>
125#endif
126
c627d613
AT
127#include <signal.h>
128#ifdef HAVE_SYS_WAIT_H
129#include <sys/wait.h>
130#endif
131#ifdef HAVE_CTYPE_H
132#include <ctype.h>
133#endif
134#ifdef HAVE_GRP_H
135#include <grp.h>
136#endif
137#include <errno.h>
138
bb0f7089 139#if defined(HAVE_MMAP) && defined(HAVE_MUNMAP)
c627d613 140#include <sys/mman.h>
bb0f7089 141#define USE_MMAP 1
7bec6a5c
AT
142#endif
143
c627d613
AT
144#ifdef HAVE_UTIME_H
145#include <utime.h>
146#endif
147
8bf73749
AT
148#ifdef HAVE_SYS_SELECT_H
149#include <sys/select.h>
150#endif
151
773f2bd4
AT
152#ifdef HAVE_SYS_MODE_H
153/* apparently AIX needs this for S_ISLNK */
05a6556d 154#ifndef S_ISLNK
773f2bd4
AT
155#include <sys/mode.h>
156#endif
05a6556d 157#endif
773f2bd4 158
c627d613
AT
159#ifdef HAVE_FNMATCH
160#include <fnmatch.h>
161#else
162#include "lib/fnmatch.h"
163#endif
164
165#ifdef HAVE_GETOPT_LONG
166#include <getopt.h>
167#else
168#include "lib/getopt.h"
169#endif
170
874895d5
AT
171#ifdef HAVE_GLOB
172#include <glob.h>
173#endif
174
f6c34742
AT
175/* these are needed for the uid/gid mapping code */
176#include <pwd.h>
177#include <grp.h>
178
9486289c 179#include <stdarg.h>
f0fca04e
AT
180#include <netinet/in.h>
181#include <arpa/inet.h>
182#include <netdb.h>
ff8b29b8 183#include <syslog.h>
6c8f5373 184#include <sys/file.h>
9486289c 185
e8f5b936
AT
186#if HAVE_DIRENT_H
187# include <dirent.h>
188#else
189# define dirent direct
190# if HAVE_SYS_NDIR_H
191# include <sys/ndir.h>
192# endif
193# if HAVE_SYS_DIR_H
194# include <sys/dir.h>
195# endif
196# if HAVE_NDIR_H
197# include <ndir.h>
198# endif
199#endif
200
201#ifdef HAVE_COMPAT_H
202#include <compat.h>
203#endif
204
205
cbbe4892
AT
206#ifndef S_IFLNK
207#define S_IFLNK 0120000
208#endif
c627d613
AT
209
210#ifndef S_ISLNK
211#define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
212#endif
213
f0fca04e
AT
214#define BOOL int
215
c627d613
AT
216#ifndef uchar
217#define uchar unsigned char
218#endif
219
debb4505
AT
220#if HAVE_UNSIGNED_CHAR
221#define schar signed char
222#else
223#define schar char
224#endif
225
c627d613
AT
226#ifndef int32
227#if (SIZEOF_INT == 4)
228#define int32 int
229#elif (SIZEOF_LONG == 4)
230#define int32 long
231#elif (SIZEOF_SHORT == 4)
232#define int32 short
233#endif
234#endif
235
236#ifndef uint32
237#define uint32 unsigned int32
238#endif
239
bcacc18b
AT
240#if HAVE_OFF64_T
241#define OFF_T off64_t
242#define STRUCT_STAT struct stat64
243#else
244#define OFF_T off_t
245#define STRUCT_STAT struct stat
246#endif
247
248#if HAVE_OFF64_T
249#define int64 off64_t
250#elif (SIZEOF_LONG == 8)
3bee6733
AT
251#define int64 long
252#elif (SIZEOF_INT == 8)
253#define int64 int
254#elif HAVE_LONGLONG
71c46176
AT
255#define int64 long long
256#else
257#define int64 off_t
3bee6733 258#define NO_INT64
71c46176 259#endif
c627d613
AT
260
261#ifndef MIN
262#define MIN(a,b) ((a)<(b)?(a):(b))
263#endif
264
265#ifndef MAX
266#define MAX(a,b) ((a)>(b)?(a):(b))
267#endif
268
269/* the length of the md4 checksum */
ebb0a6f6 270#define MD4_SUM_LENGTH 16
c627d613
AT
271#define SUM_LENGTH 16
272
273#ifndef MAXPATHLEN
274#define MAXPATHLEN 1024
275#endif
276
0473e2a1
AT
277#ifndef INADDR_NONE
278#define INADDR_NONE 0xffffffff
279#endif
280
c627d613 281struct file_struct {
3333ffbd 282 unsigned flags;
3ec4dd97 283 time_t modtime;
bcacc18b 284 OFF_T length;
3ec4dd97
AT
285 mode_t mode;
286 ino_t inode;
287 dev_t dev;
288 dev_t rdev;
289 uid_t uid;
290 gid_t gid;
291 char *basename;
292 char *dirname;
293 char *basedir;
294 char *link;
2d0bb8eb 295 char *sum;
c627d613
AT
296};
297
298struct file_list {
a800434a
AT
299 int count;
300 int malloced;
301 struct file_struct **files;
c627d613
AT
302};
303
304struct sum_buf {
bcacc18b 305 OFF_T offset; /* offset in file of this chunk */
c627d613
AT
306 int len; /* length of chunk of file */
307 int i; /* index of this chunk */
308 uint32 sum1; /* simple checksum */
ebb0a6f6 309 char sum2[SUM_LENGTH]; /* checksum */
c627d613
AT
310};
311
312struct sum_struct {
bcacc18b 313 OFF_T flength; /* total file length */
c627d613
AT
314 int count; /* how many chunks */
315 int remainder; /* flength % block_length */
316 int n; /* block_length */
317 struct sum_buf *sums; /* points to info for each chunk */
318};
319
c6e7fcb4 320struct map_struct {
0b910560
AT
321 char *map,*p;
322 int fd,p_size,p_len;
bcacc18b 323 OFF_T size, p_offset;
c6e7fcb4 324};
c627d613 325
2b6b4d53
AT
326struct exclude_struct {
327 char *orig;
328 char *pattern;
329 int regular_exp;
330 int include;
331 int directory;
332 int local;
333};
334
a800434a
AT
335struct stats {
336 int64 total_size;
337 int64 total_transferred_size;
338 int64 total_written;
339 int64 total_read;
340 int64 literal_data;
341 int64 matched_data;
342 int flist_size;
343 int num_files;
344 int num_transferred_files;
345};
346
2b6b4d53 347
3b3a2fbc
AT
348/* we need this function because of the silly way in which duplicate
349 entries are handled in the file lists - we can't change this
350 without breaking existing versions */
71c46176 351static inline int flist_up(struct file_list *flist, int i)
3b3a2fbc 352{
3ec4dd97 353 while (!flist->files[i]->basename) i++;
3b3a2fbc
AT
354 return i;
355}
356
c627d613
AT
357#include "byteorder.h"
358#include "version.h"
359#include "proto.h"
360#include "md4.h"
361
362#if !HAVE_STRERROR
363extern char *sys_errlist[];
364#define strerror(i) sys_errlist[i]
365#endif
366
367#ifndef HAVE_STRCHR
368# define strchr index
369# define strrchr rindex
370#endif
371
c627d613
AT
372#ifndef HAVE_ERRNO_DECL
373extern int errno;
374#endif
375
cbbe4892 376#define SUPPORT_LINKS HAVE_READLINK
dc5ddbcc 377#define SUPPORT_HARD_LINKS HAVE_LINK
c627d613 378
8bf73749
AT
379#ifndef HAVE_LCHOWN
380#define lchown chown
381#endif
382
ac1eb754 383#define SIGNAL_CAST (RETSIGTYPE (*)())
720b47f2
AT
384
385#ifndef EWOULDBLOCK
386#define EWOULDBLOCK EAGAIN
387#endif
182dca5c 388
7b8356d0
AT
389#ifndef STDIN_FILENO
390#define STDIN_FILENO 0
391#endif
392
393#ifndef STDOUT_FILENO
394#define STDOUT_FILENO 1
395#endif
396
397#ifndef STDERR_FILENO
398#define STDERR_FILENO 2
399#endif
400
401#ifndef S_IWUSR
402#define S_IWUSR 0200
403#endif
404
1e9f155a
AT
405#ifndef S_ISBLK
406#define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
407#endif
408
409#ifndef S_ISCHR
410#define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
411#endif
412
a0b65b18
AT
413#ifndef S_ISSOCK
414#ifdef _S_IFSOCK
415#define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
416#else
417#define S_ISSOCK(mode) (0)
418#endif
419#endif
420
421#ifndef S_ISFIFO
422#ifdef _S_IFIFO
423#define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
424#else
425#define S_ISFIFO(mode) (0)
426#endif
427#endif
428
1e9f155a
AT
429#ifndef S_ISDIR
430#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
431#endif
432
433#ifndef S_ISREG
434#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
435#endif
436
a0b65b18
AT
437
438#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))
7bec6a5c 439