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