fixed a race condition in the --delete handling code. The bug led to
[rsync/rsync.git] / rsync.h
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
267 struct 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
284 struct file_list {
285   int count;
286   int malloced;
287   struct file_struct **files;
288 };
289
290 struct 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
298 struct 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
306 struct map_struct {
307         char *map,*p;
308         int fd,p_size,p_len;
309         OFF_T size, p_offset;
310 };
311
312 /* we need this function because of the silly way in which duplicate
313    entries are handled in the file lists - we can't change this
314    without breaking existing versions */
315 static inline int flist_up(struct file_list *flist, int i)
316 {
317         while (!flist->files[i]->basename) i++;
318         return i;
319 }
320
321 #if HAVE_DIRENT_H
322 # include <dirent.h>
323 #else
324 # define dirent direct
325 # if HAVE_SYS_NDIR_H
326 #  include <sys/ndir.h>
327 # endif
328 # if HAVE_SYS_DIR_H
329 #  include <sys/dir.h>
330 # endif
331 # if HAVE_NDIR_H
332 #  include <ndir.h>
333 # endif
334 #endif
335
336 #include "byteorder.h"
337 #include "version.h"
338 #include "proto.h"
339 #include "md4.h"
340
341 #if !HAVE_STRERROR
342 extern char *sys_errlist[];
343 #define strerror(i) sys_errlist[i]
344 #endif
345
346 #ifndef HAVE_STRCHR
347 # define strchr                 index
348 # define strrchr                rindex
349 #endif
350
351 #ifndef HAVE_ERRNO_DECL
352 extern int errno;
353 #endif
354
355 #ifndef HAVE_BCOPY
356 #define bcopy(src,dest,n) memcpy(dest,src,n)
357 #endif
358
359 #ifndef HAVE_BZERO
360 #define bzero(buf,n) memset(buf,0,n)
361 #endif
362
363 #define SUPPORT_LINKS HAVE_READLINK
364 #define SUPPORT_HARD_LINKS HAVE_LINK
365
366 #ifndef HAVE_LCHOWN
367 #define lchown chown
368 #endif
369
370 #define SIGNAL_CAST (RETSIGTYPE (*)())
371
372 #ifndef EWOULDBLOCK
373 #define EWOULDBLOCK EAGAIN
374 #endif
375
376 #ifndef STDIN_FILENO
377 #define STDIN_FILENO 0
378 #endif
379
380 #ifndef STDOUT_FILENO
381 #define STDOUT_FILENO 1
382 #endif
383
384 #ifndef STDERR_FILENO
385 #define STDERR_FILENO 2
386 #endif
387
388 #ifndef S_IWUSR
389 #define S_IWUSR 0200
390 #endif
391
392 #ifndef S_ISBLK
393 #define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
394 #endif
395
396 #ifndef S_ISCHR
397 #define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
398 #endif
399
400 #ifndef S_ISSOCK
401 #ifdef _S_IFSOCK
402 #define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
403 #else
404 #define S_ISSOCK(mode) (0)
405 #endif
406 #endif
407
408 #ifndef S_ISFIFO
409 #ifdef _S_IFIFO
410 #define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
411 #else
412 #define S_ISFIFO(mode) (0)
413 #endif
414 #endif
415
416 #ifndef S_ISDIR
417 #define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
418 #endif
419
420 #ifndef S_ISREG
421 #define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
422 #endif
423
424
425 #define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))
426