standard input on server may be nonblocking
[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"
22#define RSYNC_RSH "rsh"
23#define RSYNC_NAME "rsync"
24#define BACKUP_SUFFIX "~"
25
4fe159a8
AT
26#define FILE_VALID 1
27#define SAME_MODE (1<<1)
28#define SAME_DEV (1<<2)
29#define SAME_UID (1<<3)
30#define SAME_GID (1<<4)
31#define SAME_DIR (1<<5)
32#define SAME_NAME SAME_DIR
33#define LONG_NAME (1<<6)
34#define SAME_TIME (1<<7)
35
c627d613 36/* update this if you make incompatible changes */
4fe159a8 37#define PROTOCOL_VERSION 11
182dca5c 38#define MIN_PROTOCOL_VERSION 10
c627d613
AT
39
40/* block size to write files in */
41#define WRITE_BLOCK_SIZE (32*1024)
d9bea2dd 42#define MAX_MAP_SIZE (4*1024*1024)
c627d613 43
58d433ab
AT
44#define BLOCKING_TIMEOUT 10
45
c627d613
AT
46#include "config.h"
47
48#include <sys/types.h>
49#ifdef HAVE_UNISTD_H
50#include <unistd.h>
51#endif
52#include <stdio.h>
53
54#ifdef HAVE_SYS_PARAM_H
55#include <sys/param.h>
56#endif
57
58#ifdef STDC_HEADERS
59# include <stdlib.h>
60# include <string.h>
61#endif
62
63#ifdef HAVE_COMPAT_H
64#include <compat.h>
65#endif
66
67#ifdef HAVE_MALLOC_H
68#include <malloc.h>
69#endif
70
71#ifdef TIME_WITH_SYS_TIME
72#include <sys/time.h>
73#include <time.h>
74#else
75#ifdef HAVE_SYS_TIME_H
76#include <sys/time.h>
77#else
78#include <time.h>
79#endif
80#endif
81
82#ifdef HAVE_FCNTL_H
83#include <fcntl.h>
84#else
85#ifdef HAVE_SYS_FCNTL_H
86#include <sys/fcntl.h>
87#endif
88#endif
89
90#include <sys/stat.h>
91
94481d91
AT
92#ifdef HAVE_SYS_IOCTL_H
93#include <sys/ioctl.h>
94#endif
95
96#ifdef HAVE_SYS_FILIO_H
97#include <sys/filio.h>
98#endif
99
c627d613
AT
100#include <signal.h>
101#ifdef HAVE_SYS_WAIT_H
102#include <sys/wait.h>
103#endif
104#ifdef HAVE_CTYPE_H
105#include <ctype.h>
106#endif
107#ifdef HAVE_GRP_H
108#include <grp.h>
109#endif
110#include <errno.h>
111
112#include <sys/mman.h>
113#ifdef HAVE_UTIME_H
114#include <utime.h>
115#endif
116
117#ifdef HAVE_FNMATCH
118#include <fnmatch.h>
119#else
120#include "lib/fnmatch.h"
121#endif
122
123#ifdef HAVE_GETOPT_LONG
124#include <getopt.h>
125#else
126#include "lib/getopt.h"
127#endif
128
129
130#ifndef S_ISLNK
131#define S_ISLNK(mode) (((mode) & S_IFLNK) == S_IFLNK)
132#endif
133
134#ifndef uchar
135#define uchar unsigned char
136#endif
137
138#ifndef int32
139#if (SIZEOF_INT == 4)
140#define int32 int
141#elif (SIZEOF_LONG == 4)
142#define int32 long
143#elif (SIZEOF_SHORT == 4)
144#define int32 short
145#endif
146#endif
147
148#ifndef uint32
149#define uint32 unsigned int32
150#endif
151
152
153#ifndef MIN
154#define MIN(a,b) ((a)<(b)?(a):(b))
155#endif
156
157#ifndef MAX
158#define MAX(a,b) ((a)>(b)?(a):(b))
159#endif
160
161/* the length of the md4 checksum */
162#define SUM_LENGTH 16
163
164#ifndef MAXPATHLEN
165#define MAXPATHLEN 1024
166#endif
167
168struct file_struct {
169 time_t modtime;
170 off_t length;
171 mode_t mode;
172 dev_t dev;
173 uid_t uid;
174 gid_t gid;
175 char *name;
176 char *dir;
177 char *link;
178 char sum[SUM_LENGTH];
179};
180
181struct file_list {
182 int count;
183 int malloced;
184 struct file_struct *files;
185};
186
187struct sum_buf {
188 off_t offset; /* offset in file of this chunk */
189 int len; /* length of chunk of file */
190 int i; /* index of this chunk */
191 uint32 sum1; /* simple checksum */
192 char sum2[SUM_LENGTH]; /* md4 checksum */
193};
194
195struct sum_struct {
196 off_t flength; /* total file length */
197 int count; /* how many chunks */
198 int remainder; /* flength % block_length */
199 int n; /* block_length */
200 struct sum_buf *sums; /* points to info for each chunk */
201};
202
203
204#include "byteorder.h"
205#include "version.h"
206#include "proto.h"
207#include "md4.h"
208
209#if !HAVE_STRERROR
210extern char *sys_errlist[];
211#define strerror(i) sys_errlist[i]
212#endif
213
214#ifndef HAVE_STRCHR
215# define strchr index
216# define strrchr rindex
217#endif
218
219#if HAVE_DIRENT_H
220# include <dirent.h>
221#else
222# define dirent direct
223# if HAVE_SYS_NDIR_H
224# include <sys/ndir.h>
225# endif
226# if HAVE_SYS_DIR_H
227# include <sys/dir.h>
228# endif
229# if HAVE_NDIR_H
230# include <ndir.h>
231# endif
232#endif
233
234#ifndef HAVE_ERRNO_DECL
235extern int errno;
236#endif
237
238#ifndef HAVE_BCOPY
239#define bcopy(src,dest,n) memcpy(dest,src,n)
240#endif
241
242#ifndef HAVE_BZERO
243#define bzero(buf,n) memset(buf,0,n)
244#endif
245
246#define SUPPORT_LINKS (HAVE_READLINK && defined(S_ISLNK))
247
248#if !SUPPORT_LINKS
249#define lstat stat
250#endif
ac1eb754
AT
251
252#define SIGNAL_CAST (RETSIGTYPE (*)())
720b47f2
AT
253
254#ifndef EWOULDBLOCK
255#define EWOULDBLOCK EAGAIN
256#endif
182dca5c
AT
257
258#define IS_DEVICE(mode) (S_ISCHR(mode) || S_ISBLK(mode))