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