added support for --include, --include-from and the +/- syntax
[rsync/rsync.git] / rsync.h
... / ...
CommitLineData
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"
22
23#define RSYNC_NAME "rsync"
24#define RSYNCD_CONF "/etc/rsyncd.conf"
25
26#define BACKUP_SUFFIX "~"
27
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
33#define FLAG_DELETE (1<<0)
34#define SAME_MODE (1<<1)
35#define SAME_RDEV (1<<2)
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
43/* update this if you make incompatible changes */
44#define PROTOCOL_VERSION 19
45#define MIN_PROTOCOL_VERSION 11
46#define MAX_PROTOCOL_VERSION 30
47
48#define RSYNC_PORT 873
49
50#define SPARSE_WRITE_SIZE (1024)
51#define WRITE_SIZE (32*1024)
52#define CHUNK_SIZE (32*1024)
53#define MAX_MAP_SIZE (1*1024*1024)
54#define IO_BUFFER_SIZE (4096)
55#define MAX_READ_BUFFER (1024*1024)
56
57#define MAX_ARGS 1000
58
59#define BLOCKING_TIMEOUT 10
60
61#define MPLEX_BASE 7
62#define FERROR 1
63#define FINFO 2
64
65#include "config.h"
66
67#if HAVE_REMSH
68#define RSYNC_RSH "remsh"
69#else
70#define RSYNC_RSH "rsh"
71#endif
72
73#include <sys/types.h>
74#ifdef HAVE_UNISTD_H
75#include <unistd.h>
76#endif
77#include <stdio.h>
78#include <stddef.h>
79
80#ifdef HAVE_SYS_PARAM_H
81#include <sys/param.h>
82#endif
83
84#ifdef HAVE_STDLIB_H
85#include <stdlib.h>
86#endif
87
88#ifdef HAVE_SYS_SOCKET_H
89#include <sys/socket.h>
90#endif
91
92#ifdef HAVE_STRING_H
93#include <string.h>
94#endif
95
96#ifdef HAVE_COMPAT_H
97#include <compat.h>
98#endif
99
100#ifdef HAVE_MALLOC_H
101#include <malloc.h>
102#endif
103
104#ifdef TIME_WITH_SYS_TIME
105#include <sys/time.h>
106#include <time.h>
107#else
108#ifdef HAVE_SYS_TIME_H
109#include <sys/time.h>
110#else
111#include <time.h>
112#endif
113#endif
114
115#ifdef HAVE_FCNTL_H
116#include <fcntl.h>
117#else
118#ifdef HAVE_SYS_FCNTL_H
119#include <sys/fcntl.h>
120#endif
121#endif
122
123#include <sys/stat.h>
124
125#ifdef HAVE_SYS_IOCTL_H
126#include <sys/ioctl.h>
127#endif
128
129#ifdef HAVE_SYS_FILIO_H
130#include <sys/filio.h>
131#endif
132
133#include <signal.h>
134#ifdef HAVE_SYS_WAIT_H
135#include <sys/wait.h>
136#endif
137#ifdef HAVE_CTYPE_H
138#include <ctype.h>
139#endif
140#ifdef HAVE_GRP_H
141#include <grp.h>
142#endif
143#include <errno.h>
144
145#if defined(HAVE_MMAP) && defined(HAVE_MUNMAP)
146#include <sys/mman.h>
147#define USE_MMAP 1
148#endif
149
150#ifdef HAVE_UTIME_H
151#include <utime.h>
152#endif
153
154#ifdef HAVE_SYS_SELECT_H
155#include <sys/select.h>
156#endif
157
158#ifdef HAVE_SYS_MODE_H
159/* apparently AIX needs this for S_ISLNK */
160#ifndef S_ISLNK
161#include <sys/mode.h>
162#endif
163#endif
164
165#ifdef HAVE_FNMATCH
166#include <fnmatch.h>
167#else
168#include "lib/fnmatch.h"
169#endif
170
171#ifdef HAVE_GETOPT_LONG
172#include <getopt.h>
173#else
174#include "lib/getopt.h"
175#endif
176
177#ifdef HAVE_GLOB
178#include <glob.h>
179#endif
180
181/* these are needed for the uid/gid mapping code */
182#include <pwd.h>
183#include <grp.h>
184
185#include <stdarg.h>
186#include <netinet/in.h>
187#include <arpa/inet.h>
188#include <netdb.h>
189#include <syslog.h>
190#include <sys/file.h>
191
192#ifndef S_IFLNK
193#define S_IFLNK 0120000
194#endif
195
196#ifndef S_ISLNK
197#define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
198#endif
199
200#define BOOL int
201
202#ifndef uchar
203#define uchar unsigned char
204#endif
205
206#if HAVE_UNSIGNED_CHAR
207#define schar signed char
208#else
209#define schar char
210#endif
211
212#ifndef int32
213#if (SIZEOF_INT == 4)
214#define int32 int
215#elif (SIZEOF_LONG == 4)
216#define int32 long
217#elif (SIZEOF_SHORT == 4)
218#define int32 short
219#endif
220#endif
221
222#ifndef uint32
223#define uint32 unsigned int32
224#endif
225
226#if HAVE_OFF64_T
227#define OFF_T off64_t
228#define STRUCT_STAT struct stat64
229#else
230#define OFF_T off_t
231#define STRUCT_STAT struct stat
232#endif
233
234#if HAVE_OFF64_T
235#define int64 off64_t
236#elif (SIZEOF_LONG == 8)
237#define int64 long
238#elif (SIZEOF_INT == 8)
239#define int64 int
240#elif HAVE_LONGLONG
241#define int64 long long
242#else
243#define int64 off_t
244#define NO_INT64
245#endif
246
247#ifndef MIN
248#define MIN(a,b) ((a)<(b)?(a):(b))
249#endif
250
251#ifndef MAX
252#define MAX(a,b) ((a)>(b)?(a):(b))
253#endif
254
255/* the length of the md4 checksum */
256#define MD4_SUM_LENGTH 16
257#define SUM_LENGTH 16
258
259#ifndef MAXPATHLEN
260#define MAXPATHLEN 1024
261#endif
262
263#ifndef INADDR_NONE
264#define INADDR_NONE 0xffffffff
265#endif
266
267struct file_struct {
268 unsigned flags;
269 time_t modtime;
270 OFF_T length;
271 mode_t mode;
272 ino_t inode;
273 dev_t dev;
274 dev_t rdev;
275 uid_t uid;
276 gid_t gid;
277 char *basename;
278 char *dirname;
279 char *basedir;
280 char *link;
281 char *sum;
282};
283
284struct file_list {
285 int count;
286 int malloced;
287 struct file_struct **files;
288};
289
290struct sum_buf {
291 OFF_T offset; /* offset in file of this chunk */
292 int len; /* length of chunk of file */
293 int i; /* index of this chunk */
294 uint32 sum1; /* simple checksum */
295 char sum2[SUM_LENGTH]; /* checksum */
296};
297
298struct sum_struct {
299 OFF_T flength; /* total file length */
300 int count; /* how many chunks */
301 int remainder; /* flength % block_length */
302 int n; /* block_length */
303 struct sum_buf *sums; /* points to info for each chunk */
304};
305
306struct map_struct {
307 char *map,*p;
308 int fd,p_size,p_len;
309 OFF_T size, p_offset;
310};
311
312struct exclude_struct {
313 char *orig;
314 char *pattern;
315 int regular_exp;
316 int include;
317 int directory;
318 int local;
319};
320
321
322/* we need this function because of the silly way in which duplicate
323 entries are handled in the file lists - we can't change this
324 without breaking existing versions */
325static inline int flist_up(struct file_list *flist, int i)
326{
327 while (!flist->files[i]->basename) i++;
328 return i;
329}
330
331#if HAVE_DIRENT_H
332# include <dirent.h>
333#else
334# define dirent direct
335# if HAVE_SYS_NDIR_H
336# include <sys/ndir.h>
337# endif
338# if HAVE_SYS_DIR_H
339# include <sys/dir.h>
340# endif
341# if HAVE_NDIR_H
342# include <ndir.h>
343# endif
344#endif
345
346#include "byteorder.h"
347#include "version.h"
348#include "proto.h"
349#include "md4.h"
350
351#if !HAVE_STRERROR
352extern char *sys_errlist[];
353#define strerror(i) sys_errlist[i]
354#endif
355
356#ifndef HAVE_STRCHR
357# define strchr index
358# define strrchr rindex
359#endif
360
361#ifndef HAVE_ERRNO_DECL
362extern int errno;
363#endif
364
365#ifndef HAVE_BCOPY
366#define bcopy(src,dest,n) memcpy(dest,src,n)
367#endif
368
369#ifndef HAVE_BZERO
370#define bzero(buf,n) memset(buf,0,n)
371#endif
372
373#define SUPPORT_LINKS HAVE_READLINK
374#define SUPPORT_HARD_LINKS HAVE_LINK
375
376#ifndef HAVE_LCHOWN
377#define lchown chown
378#endif
379
380#define SIGNAL_CAST (RETSIGTYPE (*)())
381
382#ifndef EWOULDBLOCK
383#define EWOULDBLOCK EAGAIN
384#endif
385
386#ifndef STDIN_FILENO
387#define STDIN_FILENO 0
388#endif
389
390#ifndef STDOUT_FILENO
391#define STDOUT_FILENO 1
392#endif
393
394#ifndef STDERR_FILENO
395#define STDERR_FILENO 2
396#endif
397
398#ifndef S_IWUSR
399#define S_IWUSR 0200
400#endif
401
402#ifndef S_ISBLK
403#define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
404#endif
405
406#ifndef S_ISCHR
407#define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
408#endif
409
410#ifndef S_ISSOCK
411#ifdef _S_IFSOCK
412#define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
413#else
414#define S_ISSOCK(mode) (0)
415#endif
416#endif
417
418#ifndef S_ISFIFO
419#ifdef _S_IFIFO
420#define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
421#else
422#define S_ISFIFO(mode) (0)
423#endif
424#endif
425
426#ifndef S_ISDIR
427#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
428#endif
429
430#ifndef S_ISREG
431#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
432#endif
433
434
435#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))
436