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