change BAD to ZBAD to avoid conflict with some systems
[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
AT
22
23#if HAVE_REMSH
24#define RSYNC_RSH "remsh"
25#else
c627d613 26#define RSYNC_RSH "rsh"
7b8356d0
AT
27#endif
28
c627d613
AT
29#define RSYNC_NAME "rsync"
30#define BACKUP_SUFFIX "~"
31
1b01b295
AT
32/* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
33 imcompatible with older versions :-( */
34#define CHAR_OFFSET 0
35
36
4fe159a8
AT
37#define FILE_VALID 1
38#define SAME_MODE (1<<1)
dc5ddbcc 39#define SAME_RDEV (1<<2)
4fe159a8
AT
40#define SAME_UID (1<<3)
41#define SAME_GID (1<<4)
42#define SAME_DIR (1<<5)
43#define SAME_NAME SAME_DIR
44#define LONG_NAME (1<<6)
45#define SAME_TIME (1<<7)
46
c627d613 47/* update this if you make incompatible changes */
9e31c482 48#define PROTOCOL_VERSION 14
182dca5c 49#define MIN_PROTOCOL_VERSION 10
7bec6a5c 50#define MAX_PROTOCOL_VERSION 20
c627d613 51
dc5ddbcc
AT
52#define SPARSE_WRITE_SIZE (4*1024)
53#define WRITE_SIZE (32*1024)
34ccb63e 54#define CHUNK_SIZE (32*1024)
d9bea2dd 55#define MAX_MAP_SIZE (4*1024*1024)
c627d613 56
58d433ab
AT
57#define BLOCKING_TIMEOUT 10
58
dc5ddbcc
AT
59#define FERROR stderr
60#define FINFO (am_server?stderr:stdout)
7bec6a5c 61
c627d613
AT
62#include "config.h"
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
d7b305fd
AT
74#ifdef HAVE_STDLIB_H
75#include <stdlib.h>
76#endif
77
78#ifdef HAVE_STRING_H
79#include <string.h>
c627d613
AT
80#endif
81
82#ifdef HAVE_COMPAT_H
83#include <compat.h>
84#endif
85
86#ifdef HAVE_MALLOC_H
87#include <malloc.h>
88#endif
89
90#ifdef TIME_WITH_SYS_TIME
91#include <sys/time.h>
92#include <time.h>
93#else
94#ifdef HAVE_SYS_TIME_H
95#include <sys/time.h>
96#else
97#include <time.h>
98#endif
99#endif
100
101#ifdef HAVE_FCNTL_H
102#include <fcntl.h>
103#else
104#ifdef HAVE_SYS_FCNTL_H
105#include <sys/fcntl.h>
106#endif
107#endif
108
109#include <sys/stat.h>
110
94481d91
AT
111#ifdef HAVE_SYS_IOCTL_H
112#include <sys/ioctl.h>
113#endif
114
115#ifdef HAVE_SYS_FILIO_H
116#include <sys/filio.h>
117#endif
118
c627d613
AT
119#include <signal.h>
120#ifdef HAVE_SYS_WAIT_H
121#include <sys/wait.h>
122#endif
123#ifdef HAVE_CTYPE_H
124#include <ctype.h>
125#endif
126#ifdef HAVE_GRP_H
127#include <grp.h>
128#endif
129#include <errno.h>
130
7bec6a5c 131#ifdef HAVE_MMAP
c627d613 132#include <sys/mman.h>
7bec6a5c
AT
133#endif
134
c627d613
AT
135#ifdef HAVE_UTIME_H
136#include <utime.h>
137#endif
138
8bf73749
AT
139#ifdef HAVE_SYS_SELECT_H
140#include <sys/select.h>
141#endif
142
c627d613
AT
143#ifdef HAVE_FNMATCH
144#include <fnmatch.h>
145#else
146#include "lib/fnmatch.h"
147#endif
148
149#ifdef HAVE_GETOPT_LONG
150#include <getopt.h>
151#else
152#include "lib/getopt.h"
153#endif
154
155
156#ifndef S_ISLNK
157#define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
158#endif
159
160#ifndef uchar
161#define uchar unsigned char
162#endif
163
164#ifndef int32
165#if (SIZEOF_INT == 4)
166#define int32 int
167#elif (SIZEOF_LONG == 4)
168#define int32 long
169#elif (SIZEOF_SHORT == 4)
170#define int32 short
171#endif
172#endif
173
174#ifndef uint32
175#define uint32 unsigned int32
176#endif
177
178
179#ifndef MIN
180#define MIN(a,b) ((a)<(b)?(a):(b))
181#endif
182
183#ifndef MAX
184#define MAX(a,b) ((a)>(b)?(a):(b))
185#endif
186
187/* the length of the md4 checksum */
ebb0a6f6 188#define MD4_SUM_LENGTH 16
c627d613
AT
189#define SUM_LENGTH 16
190
191#ifndef MAXPATHLEN
192#define MAXPATHLEN 1024
193#endif
194
195struct file_struct {
196 time_t modtime;
197 off_t length;
198 mode_t mode;
dc5ddbcc 199 ino_t inode;
c627d613 200 dev_t dev;
dc5ddbcc 201 dev_t rdev;
c627d613
AT
202 uid_t uid;
203 gid_t gid;
204 char *name;
205 char *dir;
206 char *link;
ebb0a6f6 207 char sum[MD4_SUM_LENGTH];
c627d613
AT
208};
209
210struct file_list {
211 int count;
212 int malloced;
213 struct file_struct *files;
214};
215
216struct sum_buf {
217 off_t offset; /* offset in file of this chunk */
218 int len; /* length of chunk of file */
219 int i; /* index of this chunk */
220 uint32 sum1; /* simple checksum */
ebb0a6f6 221 char sum2[SUM_LENGTH]; /* checksum */
c627d613
AT
222};
223
224struct sum_struct {
225 off_t flength; /* total file length */
226 int count; /* how many chunks */
227 int remainder; /* flength % block_length */
228 int n; /* block_length */
229 struct sum_buf *sums; /* points to info for each chunk */
230};
231
c6e7fcb4
AT
232struct map_struct {
233 char *map,*p;
234 int fd,size,p_size,p_offset,p_len;
235};
c627d613
AT
236
237#include "byteorder.h"
238#include "version.h"
239#include "proto.h"
240#include "md4.h"
241
242#if !HAVE_STRERROR
243extern char *sys_errlist[];
244#define strerror(i) sys_errlist[i]
245#endif
246
247#ifndef HAVE_STRCHR
248# define strchr index
249# define strrchr rindex
250#endif
251
252#if HAVE_DIRENT_H
253# include <dirent.h>
254#else
255# define dirent direct
256# if HAVE_SYS_NDIR_H
257# include <sys/ndir.h>
258# endif
259# if HAVE_SYS_DIR_H
260# include <sys/dir.h>
261# endif
262# if HAVE_NDIR_H
263# include <ndir.h>
264# endif
265#endif
266
267#ifndef HAVE_ERRNO_DECL
268extern int errno;
269#endif
270
271#ifndef HAVE_BCOPY
272#define bcopy(src,dest,n) memcpy(dest,src,n)
273#endif
274
275#ifndef HAVE_BZERO
276#define bzero(buf,n) memset(buf,0,n)
277#endif
278
279#define SUPPORT_LINKS (HAVE_READLINK && defined(S_ISLNK))
dc5ddbcc 280#define SUPPORT_HARD_LINKS HAVE_LINK
c627d613 281
7bec6a5c
AT
282#ifndef S_ISLNK
283#define S_ISLNK(x) 0
284#endif
285
c627d613
AT
286#if !SUPPORT_LINKS
287#define lstat stat
288#endif
ac1eb754 289
8bf73749
AT
290#ifndef HAVE_LCHOWN
291#define lchown chown
292#endif
293
ac1eb754 294#define SIGNAL_CAST (RETSIGTYPE (*)())
720b47f2
AT
295
296#ifndef EWOULDBLOCK
297#define EWOULDBLOCK EAGAIN
298#endif
182dca5c 299
7b8356d0
AT
300#ifndef STDIN_FILENO
301#define STDIN_FILENO 0
302#endif
303
304#ifndef STDOUT_FILENO
305#define STDOUT_FILENO 1
306#endif
307
308#ifndef STDERR_FILENO
309#define STDERR_FILENO 2
310#endif
311
312#ifndef S_IWUSR
313#define S_IWUSR 0200
314#endif
315
182dca5c 316#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))
7bec6a5c 317