earlier problem was a typo.
[rsync/rsync.git] / rsync.h
... / ...
CommitLineData
1/*
2 Copyright (C) by Andrew Tridgell 1996, 2000
3 Copyright (C) Paul Mackerras 1996
4 Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
21
22#define False 0
23#define True 1
24
25#define BLOCK_SIZE 700
26#define RSYNC_RSH_ENV "RSYNC_RSH"
27
28#define RSYNC_NAME "rsync"
29#define RSYNCD_SYSCONF "/etc/rsyncd.conf"
30#define RSYNCD_USERCONF "rsyncd.conf"
31
32#define DEFAULT_LOCK_FILE "/var/run/rsyncd.lock"
33#define URL_PREFIX "rsync://"
34
35#define BACKUP_SUFFIX "~"
36
37/* a non-zero CHAR_OFFSET makes the rolling sum stronger, but is
38 incompatible with older versions :-( */
39#define CHAR_OFFSET 0
40
41
42#define FLAG_DELETE (1<<0)
43#define SAME_MODE (1<<1)
44#define SAME_RDEV (1<<2)
45#define SAME_UID (1<<3)
46#define SAME_GID (1<<4)
47#define SAME_DIR (1<<5)
48#define SAME_NAME SAME_DIR
49#define LONG_NAME (1<<6)
50#define SAME_TIME (1<<7)
51
52/* update this if you make incompatible changes */
53#define PROTOCOL_VERSION 26
54
55/* We refuse to interoperate with versions that are not in this range.
56 * Note that we assume we'll work with later versions: the onus is on
57 * people writing them to make sure that they don't send us anything
58 * we won't understand.
59 *
60 * Interoperation with old but supported protocol versions
61 * should cause a warning to be printed. At a future date
62 * the old protocol will become the minimum and
63 * compatibility code removed.
64 *
65 * There are two possible explanations for the limit at thirty: either
66 * to allow new major-rev versions that do not interoperate with us,
67 * and (more likely) so that we can detect an attempt to connect rsync
68 * to a non-rsync server, which is unlikely to begin by sending a byte
69 * between 15 and 30. */
70#define MIN_PROTOCOL_VERSION 15
71#define OLD_PROTOCOL_VERSION 20
72#define MAX_PROTOCOL_VERSION 40
73
74#define RSYNC_PORT 873
75
76#define SPARSE_WRITE_SIZE (1024)
77#define WRITE_SIZE (32*1024)
78#define CHUNK_SIZE (32*1024)
79#define MAX_MAP_SIZE (256*1024)
80#define IO_BUFFER_SIZE (4092)
81
82#define MAX_ARGS 1000
83
84#define MPLEX_BASE 7
85
86/* Log values. I *think* what these mean is: FLOG goes to the server
87 * logfile; FERROR and FINFO try to end up on the client, with
88 * different levels of filtering. */
89enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
90
91#include "errcode.h"
92
93#include "config.h"
94
95/* The default RSYNC_RSH is always set in config.h, either to "remsh",
96 * "rsh", or otherwise something specified by the user. HAVE_REMSH
97 * controls parameter munging for HP/UX, etc. */
98
99#include <sys/types.h>
100
101#ifdef HAVE_UNISTD_H
102#include <unistd.h>
103#endif
104#include <stdio.h>
105#include <stddef.h>
106
107#ifdef HAVE_SYS_PARAM_H
108#include <sys/param.h>
109#endif
110
111#ifdef HAVE_STDLIB_H
112#include <stdlib.h>
113#endif
114
115#ifdef HAVE_SYS_SOCKET_H
116#include <sys/socket.h>
117#endif
118
119#ifdef HAVE_STRING_H
120#include <string.h>
121#endif
122
123#ifdef HAVE_MALLOC_H
124#include <malloc.h>
125#endif
126
127#ifdef TIME_WITH_SYS_TIME
128#include <sys/time.h>
129#include <time.h>
130#else
131#ifdef HAVE_SYS_TIME_H
132#include <sys/time.h>
133#else
134#include <time.h>
135#endif
136#endif
137
138#ifdef HAVE_FCNTL_H
139#include <fcntl.h>
140#else
141#ifdef HAVE_SYS_FCNTL_H
142#include <sys/fcntl.h>
143#endif
144#endif
145
146#include <sys/stat.h>
147
148#ifdef HAVE_SYS_IOCTL_H
149#include <sys/ioctl.h>
150#endif
151
152#ifdef HAVE_SYS_FILIO_H
153#include <sys/filio.h>
154#endif
155
156#include <signal.h>
157#ifdef HAVE_SYS_WAIT_H
158#include <sys/wait.h>
159#endif
160#ifdef HAVE_CTYPE_H
161#include <ctype.h>
162#endif
163#ifdef HAVE_GRP_H
164#include <grp.h>
165#endif
166#include <errno.h>
167
168#ifdef HAVE_UTIME_H
169#include <utime.h>
170#endif
171
172#ifdef HAVE_SYS_SELECT_H
173#include <sys/select.h>
174#endif
175
176#ifdef HAVE_SYS_MODE_H
177/* apparently AIX needs this for S_ISLNK */
178#ifndef S_ISLNK
179#include <sys/mode.h>
180#endif
181#endif
182
183#ifdef HAVE_FNMATCH
184#include <fnmatch.h>
185#else
186#include "lib/fnmatch.h"
187#endif
188
189#ifdef HAVE_GLOB_H
190#include <glob.h>
191#endif
192
193#ifdef HAVE_MALLOC_H
194# include <malloc.h>
195#endif
196
197/* these are needed for the uid/gid mapping code */
198#include <pwd.h>
199#include <grp.h>
200
201#include <stdarg.h>
202#include <netinet/in.h>
203#include <arpa/inet.h>
204#include <netdb.h>
205#include <syslog.h>
206#include <sys/file.h>
207
208#if HAVE_DIRENT_H
209# include <dirent.h>
210#else
211# define dirent direct
212# if HAVE_SYS_NDIR_H
213# include <sys/ndir.h>
214# endif
215# if HAVE_SYS_DIR_H
216# include <sys/dir.h>
217# endif
218# if HAVE_NDIR_H
219# include <ndir.h>
220# endif
221#endif
222
223#ifdef HAVE_COMPAT_H
224#include <compat.h>
225#endif
226
227#include <assert.h>
228
229
230#define BOOL int
231
232#ifndef uchar
233#define uchar unsigned char
234#endif
235
236#if HAVE_UNSIGNED_CHAR
237#define schar signed char
238#else
239#define schar char
240#endif
241
242#ifndef int32
243#if (SIZEOF_INT == 4)
244#define int32 int
245#elif (SIZEOF_LONG == 4)
246#define int32 long
247#elif (SIZEOF_SHORT == 4)
248#define int32 short
249#else
250/* I hope this works */
251#define int32 int
252#define LARGE_INT32
253#endif
254#endif
255
256#ifndef uint32
257#define uint32 unsigned int32
258#endif
259
260#if HAVE_OFF64_T
261#define OFF_T off64_t
262#define STRUCT_STAT struct stat64
263#else
264#define OFF_T off_t
265#define STRUCT_STAT struct stat
266#endif
267
268#if HAVE_OFF64_T
269#define int64 off64_t
270#define int64 unsigned off64_t
271#endif
272#elif (SIZEOF_LONG == 8)
273#define int64 long
274#define uint64 unsigned long
275#elif (SIZEOF_INT == 8)
276#define int64 int
277#define uint64 unsigned int
278#elif HAVE_LONGLONG
279#define int64 long long
280#define uint64 unsigned long long
281#else
282/* As long as it gets... */
283#define int64 off_t
284#define uint64 unsigned off_t
285#define NO_INT64
286#endif
287
288/* Starting from protocol version 26, we always use 64-bit
289 * ino_t and dev_t internally, even if this platform does not
290 * allow files to have 64-bit inums. That's because the
291 * receiver needs to find duplicate (dev,ino) tuples to detect
292 * hardlinks, and it might have files coming from a platform
293 * that has 64-bit inums.
294 *
295 * The only exception is if we're on a platform with no 64-bit type at
296 * all.
297 *
298 * Because we use read_longint() to get these off the wire, if you
299 * transfer devices or hardlinks with dev or inum > 2**32 to a machine
300 * with no 64-bit types then you will get an overflow error. Probably
301 * not many people have that combination of machines, and you can
302 * avoid it by not preserving hardlinks or not transferring device
303 * nodes. It's not clear that any other behaviour is better.
304 *
305 * Note that if you transfer devices from a 64-bit-devt machine (say,
306 * Solaris) to a 32-bit-devt machine (say, Linux-2.2/x86) then the
307 * device numbers will be truncated. But it's a kind of silly thing
308 * to do anyhow.
309 *
310 * FIXME: In future, we should probable split the device number into
311 * major/minor, and transfer the two parts as 32-bit ints. That gives
312 * you somewhat more of a chance that they'll come from a big machine
313 * to a little one in a useful way.
314 *
315 * FIXME: Really we need an unsigned type, and we perhaps ought to
316 * cope with platforms on which this is an unsigned int or even a
317 * struct. Later.
318 */
319#define INO64_T uint64
320#define DEV64_T uint64
321
322#ifndef MIN
323#define MIN(a,b) ((a)<(b)?(a):(b))
324#endif
325
326#ifndef MAX
327#define MAX(a,b) ((a)>(b)?(a):(b))
328#endif
329
330#ifndef MAXHOSTNAMELEN
331#define MAXHOSTNAMELEN 256
332#endif
333
334/* the length of the md4 checksum */
335#define MD4_SUM_LENGTH 16
336#define SUM_LENGTH 16
337
338#ifndef MAXPATHLEN
339#define MAXPATHLEN 1024
340#endif
341
342#ifndef INADDR_NONE
343#define INADDR_NONE 0xffffffff
344#endif
345
346#ifndef IN_LOOPBACKNET
347#define IN_LOOPBACKNET 127
348#endif
349
350struct file_struct {
351 unsigned flags;
352 time_t modtime;
353 OFF_T length;
354 mode_t mode;
355
356 INO64_T inode;
357 /** Device this file lives upon */
358 DEV64_T dev;
359
360 /** If this is a device node, the device number. */
361 DEV64_T rdev;
362 uid_t uid;
363 gid_t gid;
364 char *basename;
365 char *dirname;
366 char *basedir;
367 char *link;
368 char *sum;
369};
370
371
372#define ARENA_SIZE (32 * 1024)
373
374struct string_area {
375 char *base;
376 char *end;
377 char *current;
378 struct string_area *next;
379};
380
381struct file_list {
382 int count;
383 int malloced;
384 struct file_struct **files;
385 struct string_area *string_area;
386};
387
388struct sum_buf {
389 OFF_T offset; /**< offset in file of this chunk */
390 int len; /**< length of chunk of file */
391 int i; /**< index of this chunk */
392 uint32 sum1; /**< simple checksum */
393 char sum2[SUM_LENGTH]; /**< checksum */
394};
395
396struct sum_struct {
397 OFF_T flength; /**< total file length */
398 size_t count; /**< how many chunks */
399 size_t remainder; /**< flength % block_length */
400 size_t n; /**< block_length */
401 struct sum_buf *sums; /**< points to info for each chunk */
402};
403
404struct map_struct {
405 char *p;
406 int fd,p_size,p_len;
407 OFF_T file_size, p_offset, p_fd_offset;
408};
409
410struct exclude_struct {
411 char *pattern;
412 int regular_exp;
413 int fnmatch_flags;
414 int include;
415 int directory;
416 int local;
417};
418
419struct stats {
420 int64 total_size;
421 int64 total_transferred_size;
422 int64 total_written;
423 int64 total_read;
424 int64 literal_data;
425 int64 matched_data;
426 int flist_size;
427 int num_files;
428 int num_transferred_files;
429};
430
431
432/* we need this function because of the silly way in which duplicate
433 entries are handled in the file lists - we can't change this
434 without breaking existing versions */
435static inline int flist_up(struct file_list *flist, int i)
436{
437 while (!flist->files[i]->basename) i++;
438 return i;
439}
440
441#include "byteorder.h"
442#include "lib/mdfour.h"
443#include "lib/permstring.h"
444#include "lib/addrinfo.h"
445
446#include "proto.h"
447
448/* We have replacement versions of these if they're missing. */
449#ifndef HAVE_ASPRINTF
450int asprintf(char **ptr, const char *format, ...);
451#endif
452
453#ifndef HAVE_VASPRINTF
454int vasprintf(char **ptr, const char *format, va_list ap);
455#endif
456
457#if !defined(HAVE_VSNPRINTF) && !defined(HAVE_C99_VSNPRINTF)
458int vsnprintf (char *str, size_t count, const char *fmt, va_list args);
459#endif
460
461#if !defined(HAVE_SNPRINTF) && !defined(HAVE_C99_VSNPRINTF)
462int snprintf(char *str,size_t count,const char *fmt,...);
463#endif
464
465
466#if !HAVE_STRERROR
467extern char *sys_errlist[];
468#define strerror(i) sys_errlist[i]
469#endif
470
471#ifndef HAVE_STRCHR
472# define strchr index
473# define strrchr rindex
474#endif
475
476#ifndef HAVE_ERRNO_DECL
477extern int errno;
478#endif
479
480#define SUPPORT_LINKS HAVE_READLINK
481#define SUPPORT_HARD_LINKS HAVE_LINK
482
483/* This could be bad on systems which have no lchown and where chown
484 * follows symbollic links. On such systems it might be better not to
485 * try to chown symlinks at all. */
486#ifndef HAVE_LCHOWN
487#define lchown chown
488#endif
489
490#define SIGNAL_CAST (RETSIGTYPE (*)())
491
492#ifndef EWOULDBLOCK
493#define EWOULDBLOCK EAGAIN
494#endif
495
496#ifndef STDIN_FILENO
497#define STDIN_FILENO 0
498#endif
499
500#ifndef STDOUT_FILENO
501#define STDOUT_FILENO 1
502#endif
503
504#ifndef STDERR_FILENO
505#define STDERR_FILENO 2
506#endif
507
508#ifndef S_IWUSR
509#define S_IWUSR 0200
510#endif
511
512#ifndef ACCESSPERMS
513#define ACCESSPERMS 0777
514#endif
515
516#ifndef S_ISVTX
517#define S_ISVTX 0
518#endif
519
520#define CHMOD_BITS (S_ISUID | S_ISGID | S_ISVTX | ACCESSPERMS)
521
522#ifndef _S_IFMT
523#define _S_IFMT 0170000
524#endif
525
526#ifndef _S_IFLNK
527#define _S_IFLNK 0120000
528#endif
529
530#ifndef S_ISLNK
531#define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
532#endif
533
534#ifndef S_ISBLK
535#define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
536#endif
537
538#ifndef S_ISCHR
539#define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
540#endif
541
542#ifndef S_ISSOCK
543#ifdef _S_IFSOCK
544#define S_ISSOCK(mode) (((mode) & (_S_IFMT)) == (_S_IFSOCK))
545#else
546#define S_ISSOCK(mode) (0)
547#endif
548#endif
549
550#ifndef S_ISFIFO
551#ifdef _S_IFIFO
552#define S_ISFIFO(mode) (((mode) & (_S_IFMT)) == (_S_IFIFO))
553#else
554#define S_ISFIFO(mode) (0)
555#endif
556#endif
557
558#ifndef S_ISDIR
559#define S_ISDIR(mode) (((mode) & (_S_IFMT)) == (_S_IFDIR))
560#endif
561
562#ifndef S_ISREG
563#define S_ISREG(mode) (((mode) & (_S_IFMT)) == (_S_IFREG))
564#endif
565
566/* work out what fcntl flag to use for non-blocking */
567#ifdef O_NONBLOCK
568# define NONBLOCK_FLAG O_NONBLOCK
569#elif defined(SYSV)
570# define NONBLOCK_FLAG O_NDELAY
571#else
572# define NONBLOCK_FLAG FNDELAY
573#endif
574
575#ifndef INADDR_LOOPBACK
576#define INADDR_LOOPBACK 0x7f000001
577#endif
578
579#ifndef INADDR_NONE
580#define INADDR_NONE 0xffffffff
581#endif
582
583#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISSOCK(mode) || S_ISFIFO(mode))
584
585/* Initial mask on permissions given to temporary files. Mask off setuid
586 bits and group access because of potential race-condition security
587 holes, and mask other access because mode 707 is bizarre */
588#define INITACCESSPERMS 0700
589
590/* handler for null strings in printf format */
591#define NS(s) ((s)?(s):"<NULL>")
592
593#if !defined(__GNUC__) || defined(APPLE)
594/* Apparently the OS X port of gcc gags on __attribute__.
595 *
596 * <http://www.opensource.apple.com/bugs/X/gcc/2512150.html> */
597#define __attribute__(x)
598
599#endif
600
601
602/* use magic gcc attributes to catch format errors */
603 void rprintf(enum logcode , const char *, ...)
604 __attribute__((format (printf, 2, 3)))
605;
606
607/* This is just like rprintf, but it also tries to print some
608 * representation of the error code. Normally errcode = errno. */
609void rsyserr(enum logcode, int, const char *, ...)
610 __attribute__((format (printf, 3, 4)))
611 ;
612
613#ifdef REPLACE_INET_NTOA
614#define inet_ntoa rep_inet_ntoa
615#endif
616
617
618#ifndef HAVE_STRLCPY
619size_t strlcpy(char *d, const char *s, size_t bufsize);
620#endif
621
622#ifndef HAVE_STRLCAT
623size_t strlcat(char *d, const char *s, size_t bufsize);
624#endif
625
626#ifndef WEXITSTATUS
627#define WEXITSTATUS(stat) ((int)(((stat)>>8)&0xFF))
628#endif
629
630#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)
631
632
633extern int verbose;
634
635#ifndef HAVE_INET_NTOP
636const char *
637inet_ntop(int af, const void *src, char *dst, size_t size);
638#endif /* !HAVE_INET_NTOP */
639
640#ifndef HAVE_INET_PTON
641int inet_pton(int af, const char *src, void *dst);
642#endif
643
644#ifdef MAINTAINER_MODE
645const char *get_panic_action(void);
646#endif
647
648#define UNUSED(x) x __attribute__((__unused__))
649
650extern const char *io_write_phase, *io_read_phase;