2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
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.
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.
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.
20 #define BLOCK_SIZE 700
21 #define RSYNC_RSH_ENV "RSYNC_RSH"
23 #define RSYNC_NAME "rsync"
24 #define RSYNCD_CONF "/etc/rsyncd.conf"
26 #define BACKUP_SUFFIX "~"
28 /* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
29 imcompatible with older versions :-( */
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)
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
48 #define RSYNC_PORT 873
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 (4092)
55 #define MAX_READ_BUFFER (1024*1024)
66 #define RSYNC_RSH "remsh"
68 #define RSYNC_RSH "rsh"
71 #include <sys/types.h>
78 #ifdef HAVE_SYS_PARAM_H
79 #include <sys/param.h>
86 #ifdef HAVE_SYS_SOCKET_H
87 #include <sys/socket.h>
98 #ifdef TIME_WITH_SYS_TIME
102 #ifdef HAVE_SYS_TIME_H
103 #include <sys/time.h>
112 #ifdef HAVE_SYS_FCNTL_H
113 #include <sys/fcntl.h>
117 #include <sys/stat.h>
119 #ifdef HAVE_SYS_IOCTL_H
120 #include <sys/ioctl.h>
123 #ifdef HAVE_SYS_FILIO_H
124 #include <sys/filio.h>
128 #ifdef HAVE_SYS_WAIT_H
129 #include <sys/wait.h>
139 #if defined(HAVE_MMAP) && defined(HAVE_MUNMAP)
140 #include <sys/mman.h>
148 #ifdef HAVE_SYS_SELECT_H
149 #include <sys/select.h>
152 #ifdef HAVE_SYS_MODE_H
153 /* apparently AIX needs this for S_ISLNK */
155 #include <sys/mode.h>
162 #include "lib/fnmatch.h"
165 #ifdef HAVE_GETOPT_LONG
168 #include "lib/getopt.h"
175 /* these are needed for the uid/gid mapping code */
180 #include <netinet/in.h>
181 #include <arpa/inet.h>
184 #include <sys/file.h>
189 # define dirent direct
191 # include <sys/ndir.h>
194 # include <sys/dir.h>
207 #define S_IFLNK 0120000
211 #define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
217 #define uchar unsigned char
220 #if HAVE_UNSIGNED_CHAR
221 #define schar signed char
227 #if (SIZEOF_INT == 4)
229 #elif (SIZEOF_LONG == 4)
231 #elif (SIZEOF_SHORT == 4)
237 #define uint32 unsigned int32
241 #define OFF_T off64_t
242 #define STRUCT_STAT struct stat64
245 #define STRUCT_STAT struct stat
249 #define int64 off64_t
250 #elif (SIZEOF_LONG == 8)
252 #elif (SIZEOF_INT == 8)
255 #define int64 long long
262 #define MIN(a,b) ((a)<(b)?(a):(b))
266 #define MAX(a,b) ((a)>(b)?(a):(b))
269 /* the length of the md4 checksum */
270 #define MD4_SUM_LENGTH 16
271 #define SUM_LENGTH 16
274 #define MAXPATHLEN 1024
278 #define INADDR_NONE 0xffffffff
301 struct file_struct
**files
;
305 OFF_T offset
; /* offset in file of this chunk */
306 int len
; /* length of chunk of file */
307 int i
; /* index of this chunk */
308 uint32 sum1
; /* simple checksum */
309 char sum2
[SUM_LENGTH
]; /* checksum */
313 OFF_T flength
; /* total file length */
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 */
323 OFF_T size
, p_offset
;
326 struct exclude_struct
{
337 int64 total_transferred_size
;
344 int num_transferred_files
;
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 */
351 static inline int flist_up(struct file_list
*flist
, int i
)
353 while (!flist
->files
[i
]->basename
) i
++;
357 #include "byteorder.h"
363 extern char *sys_errlist
[];
364 #define strerror(i) sys_errlist[i]
368 # define strchr index
369 # define strrchr rindex
372 #ifndef HAVE_ERRNO_DECL
376 #define SUPPORT_LINKS HAVE_READLINK
377 #define SUPPORT_HARD_LINKS HAVE_LINK
383 #define SIGNAL_CAST (RETSIGTYPE (*)())
386 #define EWOULDBLOCK EAGAIN
390 #define STDIN_FILENO 0
393 #ifndef STDOUT_FILENO
394 #define STDOUT_FILENO 1
397 #ifndef STDERR_FILENO
398 #define STDERR_FILENO 2
406 #define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
410 #define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
415 #define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
417 #define S_ISSOCK(mode) (0)
423 #define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
425 #define S_ISFIFO(mode) (0)
430 #define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
434 #define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
438 #define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))
441 #define ACCESSPERMS 0777