bugfix from Kenji Miyake <kenjim@fix.co.jp>
[rsync/rsync.git] / rsync.h
... / ...
CommitLineData
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 FILE_VALID 1
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 14
43#define MIN_PROTOCOL_VERSION 10
44#define MAX_PROTOCOL_VERSION 20
45
46#define SPARSE_WRITE_SIZE (4*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#include <sys/mode.h>
150#endif
151
152#ifdef HAVE_FNMATCH
153#include <fnmatch.h>
154#else
155#include "lib/fnmatch.h"
156#endif
157
158#ifdef HAVE_GETOPT_LONG
159#include <getopt.h>
160#else
161#include "lib/getopt.h"
162#endif
163
164
165#ifndef S_ISLNK
166#define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
167#endif
168
169#ifndef uchar
170#define uchar unsigned char
171#endif
172
173#ifndef int32
174#if (SIZEOF_INT == 4)
175#define int32 int
176#elif (SIZEOF_LONG == 4)
177#define int32 long
178#elif (SIZEOF_SHORT == 4)
179#define int32 short
180#endif
181#endif
182
183#ifndef uint32
184#define uint32 unsigned int32
185#endif
186
187
188#ifndef MIN
189#define MIN(a,b) ((a)<(b)?(a):(b))
190#endif
191
192#ifndef MAX
193#define MAX(a,b) ((a)>(b)?(a):(b))
194#endif
195
196/* the length of the md4 checksum */
197#define MD4_SUM_LENGTH 16
198#define SUM_LENGTH 16
199
200#ifndef MAXPATHLEN
201#define MAXPATHLEN 1024
202#endif
203
204struct file_struct {
205 time_t modtime;
206 off_t length;
207 mode_t mode;
208 ino_t inode;
209 dev_t dev;
210 dev_t rdev;
211 uid_t uid;
212 gid_t gid;
213 char *name;
214 char *dir;
215 char *link;
216 char sum[MD4_SUM_LENGTH];
217};
218
219struct file_list {
220 int count;
221 int malloced;
222 struct file_struct *files;
223};
224
225struct sum_buf {
226 off_t offset; /* offset in file of this chunk */
227 int len; /* length of chunk of file */
228 int i; /* index of this chunk */
229 uint32 sum1; /* simple checksum */
230 char sum2[SUM_LENGTH]; /* checksum */
231};
232
233struct sum_struct {
234 off_t flength; /* total file length */
235 int count; /* how many chunks */
236 int remainder; /* flength % block_length */
237 int n; /* block_length */
238 struct sum_buf *sums; /* points to info for each chunk */
239};
240
241struct map_struct {
242 char *map,*p;
243 int fd,size,p_size,p_offset,p_len;
244};
245
246#include "byteorder.h"
247#include "version.h"
248#include "proto.h"
249#include "md4.h"
250
251#if !HAVE_STRERROR
252extern char *sys_errlist[];
253#define strerror(i) sys_errlist[i]
254#endif
255
256#ifndef HAVE_STRCHR
257# define strchr index
258# define strrchr rindex
259#endif
260
261#if HAVE_DIRENT_H
262# include <dirent.h>
263#else
264# define dirent direct
265# if HAVE_SYS_NDIR_H
266# include <sys/ndir.h>
267# endif
268# if HAVE_SYS_DIR_H
269# include <sys/dir.h>
270# endif
271# if HAVE_NDIR_H
272# include <ndir.h>
273# endif
274#endif
275
276#ifndef HAVE_ERRNO_DECL
277extern int errno;
278#endif
279
280#ifndef HAVE_BCOPY
281#define bcopy(src,dest,n) memcpy(dest,src,n)
282#endif
283
284#ifndef HAVE_BZERO
285#define bzero(buf,n) memset(buf,0,n)
286#endif
287
288#define SUPPORT_LINKS (HAVE_READLINK && defined(S_ISLNK))
289#define SUPPORT_HARD_LINKS HAVE_LINK
290
291#ifndef S_ISLNK
292#define S_ISLNK(x) 0
293#endif
294
295#if !SUPPORT_LINKS
296#define lstat stat
297#endif
298
299#ifndef HAVE_LCHOWN
300#define lchown chown
301#endif
302
303#define SIGNAL_CAST (RETSIGTYPE (*)())
304
305#ifndef EWOULDBLOCK
306#define EWOULDBLOCK EAGAIN
307#endif
308
309#ifndef STDIN_FILENO
310#define STDIN_FILENO 0
311#endif
312
313#ifndef STDOUT_FILENO
314#define STDOUT_FILENO 1
315#endif
316
317#ifndef STDERR_FILENO
318#define STDERR_FILENO 2
319#endif
320
321#ifndef S_IWUSR
322#define S_IWUSR 0200
323#endif
324
325#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))
326