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