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