3220e462fdd65bc266e6ccbc0dff9e4b10e1ca73
[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 #define RSYNC_RSH "rsh"
23 #define RSYNC_NAME "rsync"
24 #define BACKUP_SUFFIX "~"
25
26 #define FILE_VALID 1
27 #define SAME_MODE (1<<1)
28 #define SAME_DEV (1<<2)
29 #define SAME_UID (1<<3)
30 #define SAME_GID (1<<4)
31 #define SAME_DIR (1<<5)
32 #define SAME_NAME SAME_DIR
33 #define LONG_NAME (1<<6)
34 #define SAME_TIME (1<<7)
35
36 /* update this if you make incompatible changes */
37 #define PROTOCOL_VERSION 11
38 #define MIN_PROTOCOL_VERSION 10
39 #define MAX_PROTOCOL_VERSION 20
40
41 #define CHUNK_SIZE (32*1024)
42 #define MAX_MAP_SIZE (4*1024*1024)
43
44 #define BLOCKING_TIMEOUT 10
45
46 /* do we try to create sparse files */
47 #define SPARSE_FILES 1
48
49 #include "config.h"
50
51 #include <sys/types.h>
52 #ifdef HAVE_UNISTD_H
53 #include <unistd.h>
54 #endif
55 #include <stdio.h>
56
57 #ifdef HAVE_SYS_PARAM_H
58 #include <sys/param.h>
59 #endif
60
61 #ifdef STDC_HEADERS
62 # include <stdlib.h>
63 # include <string.h>
64 #endif
65
66 #ifdef HAVE_COMPAT_H
67 #include <compat.h>
68 #endif
69
70 #ifdef HAVE_MALLOC_H
71 #include <malloc.h>
72 #endif
73
74 #ifdef TIME_WITH_SYS_TIME
75 #include <sys/time.h>
76 #include <time.h>
77 #else
78 #ifdef HAVE_SYS_TIME_H
79 #include <sys/time.h>
80 #else
81 #include <time.h>
82 #endif
83 #endif
84
85 #ifdef HAVE_FCNTL_H
86 #include <fcntl.h>
87 #else
88 #ifdef HAVE_SYS_FCNTL_H
89 #include <sys/fcntl.h>
90 #endif
91 #endif
92
93 #include <sys/stat.h>
94
95 #ifdef HAVE_SYS_IOCTL_H
96 #include <sys/ioctl.h>
97 #endif
98
99 #ifdef HAVE_SYS_FILIO_H
100 #include <sys/filio.h>
101 #endif
102
103 #include <signal.h>
104 #ifdef HAVE_SYS_WAIT_H
105 #include <sys/wait.h>
106 #endif
107 #ifdef HAVE_CTYPE_H
108 #include <ctype.h>
109 #endif
110 #ifdef HAVE_GRP_H
111 #include <grp.h>
112 #endif
113 #include <errno.h>
114
115 #ifdef HAVE_MMAP
116 #include <sys/mman.h>
117 #endif
118
119 #ifdef HAVE_UTIME_H
120 #include <utime.h>
121 #endif
122
123 #ifdef HAVE_FNMATCH
124 #include <fnmatch.h>
125 #else
126 #include "lib/fnmatch.h"
127 #endif
128
129 #ifdef HAVE_GETOPT_LONG
130 #include <getopt.h>
131 #else
132 #include "lib/getopt.h"
133 #endif
134
135
136 #ifndef S_ISLNK
137 #define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
138 #endif
139
140 #ifndef uchar
141 #define uchar unsigned char
142 #endif
143
144 #ifndef int32
145 #if (SIZEOF_INT == 4)
146 #define int32 int
147 #elif (SIZEOF_LONG == 4)
148 #define int32 long
149 #elif (SIZEOF_SHORT == 4)
150 #define int32 short
151 #endif
152 #endif
153
154 #ifndef uint32
155 #define uint32 unsigned int32
156 #endif
157
158
159 #ifndef MIN
160 #define MIN(a,b) ((a)<(b)?(a):(b))
161 #endif
162
163 #ifndef MAX
164 #define MAX(a,b) ((a)>(b)?(a):(b))
165 #endif
166
167 /* the length of the md4 checksum */
168 #define SUM_LENGTH 16
169
170 #ifndef MAXPATHLEN
171 #define MAXPATHLEN 1024
172 #endif
173
174 struct file_struct {
175   time_t modtime;
176   off_t length;
177   mode_t mode;
178   dev_t dev;
179   uid_t uid;
180   gid_t gid;
181   char *name;
182   char *dir;
183   char *link;
184   char sum[SUM_LENGTH];
185 };
186
187 struct file_list {
188   int count;
189   int malloced;
190   struct file_struct *files;
191 };
192
193 struct sum_buf {
194   off_t offset;                 /* offset in file of this chunk */
195   int len;                      /* length of chunk of file */
196   int i;                        /* index of this chunk */
197   uint32 sum1;                  /* simple checksum */
198   char sum2[SUM_LENGTH];        /* md4 checksum  */
199 };
200
201 struct sum_struct {
202   off_t flength;                /* total file length */
203   int count;                    /* how many chunks */
204   int remainder;                /* flength % block_length */
205   int n;                        /* block_length */
206   struct sum_buf *sums;         /* points to info for each chunk */
207 };
208
209
210 #include "byteorder.h"
211 #include "version.h"
212 #include "proto.h"
213 #include "md4.h"
214
215 #if !HAVE_STRERROR
216 extern char *sys_errlist[];
217 #define strerror(i) sys_errlist[i]
218 #endif
219
220 #ifndef HAVE_STRCHR
221 # define strchr                 index
222 # define strrchr                rindex
223 #endif
224
225 #if HAVE_DIRENT_H
226 # include <dirent.h>
227 #else
228 # define dirent direct
229 # if HAVE_SYS_NDIR_H
230 #  include <sys/ndir.h>
231 # endif
232 # if HAVE_SYS_DIR_H
233 #  include <sys/dir.h>
234 # endif
235 # if HAVE_NDIR_H
236 #  include <ndir.h>
237 # endif
238 #endif
239
240 #ifndef HAVE_ERRNO_DECL
241 extern int errno;
242 #endif
243
244 #ifndef HAVE_BCOPY
245 #define bcopy(src,dest,n) memcpy(dest,src,n)
246 #endif
247
248 #ifndef HAVE_BZERO
249 #define bzero(buf,n) memset(buf,0,n)
250 #endif
251
252 #define SUPPORT_LINKS (HAVE_READLINK && defined(S_ISLNK))
253
254 #ifndef S_ISLNK
255 #define S_ISLNK(x) 0
256 #endif
257
258 #if !SUPPORT_LINKS
259 #define lstat stat
260 #endif
261
262 #define SIGNAL_CAST (RETSIGTYPE (*)())
263
264 #ifndef EWOULDBLOCK
265 #define EWOULDBLOCK EAGAIN
266 #endif
267
268 #define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))
269