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