Don't unconditionally define _LARGEFILE_SOURCE, but instead include
[rsync/rsync.git] / clientserver.c
CommitLineData
a039749b
MP
1/* -*- c-file-style: "linux"; -*-
2
15b7b73d
MP
3 Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
4 Copyright (C) 2001 by Martin Pool <mbp@samba.org>
3591c066
AT
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
bc363ea9 21/* the socket based protocol for setting up a connection with rsyncd */
3591c066
AT
22
23#include "rsync.h"
24
25extern int module_id;
26extern int read_only;
27extern int verbose;
28extern int rsync_port;
97cb8dc2 29char *auth_user;
cb13abfe 30int sanitize_paths = 0;
3591c066 31
bc363ea9
MP
32/*
33 * Run a client connected to an rsyncd. The alternative to this
34 * function for remote-shell connections is do_cmd.
35 */
3591c066
AT
36int start_socket_client(char *host, char *path, int argc, char *argv[])
37{
38 int fd, i;
39 char *sargs[MAX_ARGS];
40 int sargc=0;
e42c9458 41 char line[MAXPATHLEN];
bcb7e502 42 char *p, *user=NULL;
13c5fc0e 43 extern int remote_version;
8d9dc9f9 44 extern int am_sender;
e30f0657 45 extern struct in_addr socket_address;
bc363ea9 46 extern char *shell_cmd;
3591c066 47
27e3e9c9
AT
48 if (argc == 0 && !am_sender) {
49 extern int list_only;
50 list_only = 1;
51 }
52
bc363ea9
MP
53 /* This is just a friendliness enhancement: if the connection
54 * is to an rsyncd then there is no point specifying the -e option.
55 * Note that this is only set if the -e was explicitly specified,
56 * not if the environment variable just happens to be set.
57 * See http://lists.samba.org/pipermail/rsync/2000-September/002744.html
58 */
59 if (shell_cmd) {
60 rprintf(FERROR, "WARNING: --rsh or -e option ignored when "
61 "connecting to rsync daemon\n");
62 /* continue */
63 }
64
f98df1d9
AT
65 if (*path == '/') {
66 rprintf(FERROR,"ERROR: The remote path must start with a module name\n");
67 return -1;
68 }
69
bcb7e502
AT
70 p = strchr(host, '@');
71 if (p) {
72 user = host;
73 host = p+1;
74 *p = 0;
75 }
76
77 if (!user) user = getenv("USER");
78 if (!user) user = getenv("LOGNAME");
79
e30f0657 80 fd = open_socket_out(host, rsync_port, &socket_address);
3591c066 81 if (fd == -1) {
65417579 82 exit_cleanup(RERR_SOCKETIO);
3591c066
AT
83 }
84
85 server_options(sargs,&sargc);
86
87 sargs[sargc++] = ".";
88
89 if (path && *path)
90 sargs[sargc++] = path;
91
92 sargs[sargc] = NULL;
93
91eee594
AT
94 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
95
3591c066
AT
96 if (!read_line(fd, line, sizeof(line)-1)) {
97 return -1;
98 }
99
13c5fc0e 100 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
3591c066
AT
101 return -1;
102 }
103
2c91d3d3
AT
104 p = strchr(path,'/');
105 if (p) *p = 0;
106 io_printf(fd,"%s\n",path);
107 if (p) *p = '/';
108
3591c066
AT
109 while (1) {
110 if (!read_line(fd, line, sizeof(line)-1)) {
111 return -1;
112 }
31593dd6 113
31593dd6 114 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
bcb7e502 115 auth_client(fd, user, line+18);
31593dd6
AT
116 continue;
117 }
31593dd6 118
3591c066
AT
119 if (strcmp(line,"@RSYNCD: OK") == 0) break;
120 rprintf(FINFO,"%s\n", line);
121 }
122
123 for (i=0;i<sargc;i++) {
124 io_printf(fd,"%s\n", sargs[i]);
125 }
126 io_printf(fd,"\n");
127
09b7f5db
AT
128 if (remote_version < 23) {
129 if (remote_version == 22 || (remote_version > 17 && !am_sender))
130 io_start_multiplex_in(fd);
131 }
8d9dc9f9 132
3591c066
AT
133 return client_run(fd, fd, -1, argc, argv);
134}
135
136
137
138static int rsync_module(int fd, int i)
139{
140 int argc=0;
141 char *argv[MAX_ARGS];
142 char **argp;
e42c9458 143 char line[MAXPATHLEN];
1a016bfd
AT
144 uid_t uid = (uid_t)-2;
145 gid_t gid = (gid_t)-2;
8ef4ffd6 146 char *p;
56c473b7
AT
147 char *addr = client_addr(fd);
148 char *host = client_name(fd);
874895d5 149 char *name = lp_name(i);
8638dd48 150 int use_chroot = lp_use_chroot(i);
874895d5 151 int start_glob=0;
41979ff8 152 int ret;
7b372642
AT
153 char *request=NULL;
154 extern int am_sender;
8d9dc9f9 155 extern int remote_version;
943882a2 156 extern int am_root;
56c473b7
AT
157
158 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
159 rprintf(FERROR,"rsync denied on module %s from %s (%s)\n",
874895d5 160 name, client_name(fd), client_addr(fd));
c8e78d87 161 io_printf(fd,"@ERROR: access denied to %s from %s (%s)\n",
874895d5 162 name, client_name(fd), client_addr(fd));
56c473b7
AT
163 return -1;
164 }
3591c066 165
5e71c444 166 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
8d72ef6e
AT
167 if (errno) {
168 rprintf(FERROR,"failed to open lock file %s : %s\n",
5e71c444 169 lp_lock_file(i), strerror(errno));
8d72ef6e 170 io_printf(fd,"@ERROR: failed to open lock file %s : %s\n",
5e71c444 171 lp_lock_file(i), strerror(errno));
8d72ef6e
AT
172 } else {
173 rprintf(FERROR,"max connections (%d) reached\n",
5e71c444
AT
174 lp_max_connections(i));
175 io_printf(fd,"@ERROR: max connections (%d) reached - try again later\n", lp_max_connections(i));
8d72ef6e 176 }
0c515f17
AT
177 return -1;
178 }
179
31593dd6 180
97cb8dc2 181 auth_user = auth_server(fd, i, addr, "@RSYNCD: AUTHREQD ");
d0d56395 182
97cb8dc2 183 if (!auth_user) {
d0d56395
AT
184 rprintf(FERROR,"auth failed on module %s from %s (%s)\n",
185 name, client_name(fd), client_addr(fd));
186 io_printf(fd,"@ERROR: auth failed on module %s\n",name);
187 return -1;
188 }
189
3591c066
AT
190 module_id = i;
191
716baed7 192 am_root = (getuid() == 0);
8ef4ffd6 193
716baed7
DD
194 if (am_root) {
195 p = lp_uid(i);
196 if (!name_to_uid(p, &uid)) {
197 if (!isdigit(*p)) {
198 rprintf(FERROR,"Invalid uid %s\n", p);
199 io_printf(fd,"@ERROR: invalid uid\n");
200 return -1;
201 }
202 uid = atoi(p);
203 }
204
205 p = lp_gid(i);
206 if (!name_to_gid(p, &gid)) {
207 if (!isdigit(*p)) {
208 rprintf(FERROR,"Invalid gid %s\n", p);
209 io_printf(fd,"@ERROR: invalid gid\n");
210 return -1;
211 }
212 gid = atoi(p);
213 }
8ef4ffd6
AT
214 }
215
cd64343a
DD
216 p = lp_include_from(i);
217 add_exclude_file(p, 1, 1);
218
219 p = lp_include(i);
220 add_include_line(p);
221
8f3a2d54 222 p = lp_exclude_from(i);
2b6b4d53 223 add_exclude_file(p, 1, 0);
8f3a2d54 224
5805327b 225 p = lp_exclude(i);
8f3a2d54
AT
226 add_exclude_line(p);
227
45a83540 228 log_init();
1a016bfd 229
8638dd48
DD
230 if (use_chroot) {
231 if (chroot(lp_path(i))) {
a039749b 232 rsyserr(FERROR, errno, "chroot %s failed", lp_path(i));
8638dd48
DD
233 io_printf(fd,"@ERROR: chroot failed\n");
234 return -1;
235 }
3591c066 236
c226b7c2 237 if (!push_dir("/", 0)) {
a039749b 238 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
8638dd48
DD
239 io_printf(fd,"@ERROR: chdir failed\n");
240 return -1;
241 }
3591c066 242
716baed7
DD
243 } else {
244 if (!push_dir(lp_path(i), 0)) {
a039749b 245 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
716baed7
DD
246 io_printf(fd,"@ERROR: chdir failed\n");
247 return -1;
248 }
cb13abfe 249 sanitize_paths = 1;
716baed7
DD
250 }
251
252 if (am_root) {
253 if (setgid(gid)) {
a039749b 254 rsyserr(FERROR, errno, "setgid %d failed", gid);
8638dd48
DD
255 io_printf(fd,"@ERROR: setgid failed\n");
256 return -1;
257 }
3591c066 258
716baed7 259 if (setuid(uid)) {
a039749b 260 rsyserr(FERROR, errno, "setuid %d failed", uid);
8638dd48
DD
261 io_printf(fd,"@ERROR: setuid failed\n");
262 return -1;
263 }
264
716baed7 265 am_root = (getuid() == 0);
3591c066
AT
266 }
267
268 io_printf(fd,"@RSYNCD: OK\n");
269
270 argv[argc++] = "rsyncd";
271
272 while (1) {
273 if (!read_line(fd, line, sizeof(line)-1)) {
274 return -1;
275 }
276
277 if (!*line) break;
278
874895d5
AT
279 p = line;
280
874895d5 281 argv[argc] = strdup(p);
3591c066
AT
282 if (!argv[argc]) {
283 return -1;
284 }
285
874895d5 286 if (start_glob) {
1a016bfd 287 if (start_glob == 1) {
7b372642 288 request = strdup(p);
1a016bfd
AT
289 start_glob++;
290 }
cb13abfe 291 glob_expand(name, argv, &argc, MAX_ARGS);
874895d5
AT
292 } else {
293 argc++;
294 }
295
296 if (strcmp(line,".") == 0) {
297 start_glob = 1;
298 }
299
3591c066
AT
300 if (argc == MAX_ARGS) {
301 return -1;
302 }
303 }
304
cb13abfe 305 if (sanitize_paths) {
8638dd48
DD
306 /*
307 * Note that this is applied to all parameters, whether or not
308 * they are filenames, but no other legal parameters contain
309 * the forms that need to be sanitized so it doesn't hurt;
310 * it is not known at this point which parameters are files
311 * and which aren't.
312 */
313 for (i = 1; i < argc; i++) {
cb13abfe 314 sanitize_path(argv[i], NULL);
8638dd48
DD
315 }
316 }
317
15b7b73d
MP
318 argp = argv;
319 ret = parse_arguments(&argc, (const char ***) &argp, 0);
3591c066 320
7b372642 321 if (request) {
97cb8dc2 322 if (*auth_user) {
d0d56395
AT
323 rprintf(FINFO,"rsync %s %s from %s@%s (%s)\n",
324 am_sender?"on":"to",
97cb8dc2 325 request, auth_user, host, addr);
d0d56395
AT
326 } else {
327 rprintf(FINFO,"rsync %s %s from %s (%s)\n",
328 am_sender?"on":"to",
329 request, host, addr);
330 }
7b372642
AT
331 free(request);
332 }
333
15b7b73d 334#ifndef DEBUG
3591c066
AT
335 /* don't allow the logs to be flooded too fast */
336 if (verbose > 1) verbose = 1;
0199b05f 337#endif
3591c066 338
09b7f5db
AT
339 if (remote_version < 23) {
340 if (remote_version == 22 || (remote_version > 17 && am_sender))
341 io_start_multiplex_out(fd);
554e0a8d 342 }
15b7b73d
MP
343
344 /* For later protocol versions, we don't start multiplexing
345 * until we've configured nonblocking in start_server. That
346 * means we're in a sticky situation now: there's no way to
347 * convey errors to the client. */
348
349 /* FIXME: Hold off on reporting option processing errors until
350 * we've set up nonblocking and multiplexed IO and can get the
351 * message back to them. */
41979ff8 352 if (!ret) {
15b7b73d
MP
353 option_error();
354 exit_cleanup(RERR_UNSUPPORTED);
41979ff8
AT
355 }
356
81791cfc
AT
357 if (lp_timeout(i)) {
358 extern int io_timeout;
359 io_timeout = lp_timeout(i);
360 }
361
3591c066
AT
362 start_server(fd, fd, argc, argp);
363
364 return 0;
365}
366
7a6421fa
AT
367/* send a list of available modules to the client. Don't list those
368 with "list = False". */
3591c066
AT
369static void send_listing(int fd)
370{
371 int n = lp_numservices();
372 int i;
373
374 for (i=0;i<n;i++)
375 if (lp_list(i))
376 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
377}
378
379/* this is called when a socket connection is established to a client
380 and we want to start talking. The setup of the system is done from
381 here */
382static int start_daemon(int fd)
383{
7a6421fa 384 char line[200];
3591c066 385 char *motd;
8ef4ffd6 386 int i = -1;
4cdf25e4 387 extern char *config_file;
13c5fc0e 388 extern int remote_version;
4cdf25e4 389
f9e940ef 390 if (!lp_load(config_file, 0)) {
65417579 391 exit_cleanup(RERR_SYNTAX);
4cdf25e4 392 }
3591c066
AT
393
394 set_socket_options(fd,"SO_KEEPALIVE");
a6801c39 395 set_socket_options(fd,lp_socket_options());
f0359dd0 396 set_nonblocking(fd);
3591c066
AT
397
398 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
399
400 motd = lp_motd_file();
27d3cdbc 401 if (motd && *motd) {
3591c066
AT
402 FILE *f = fopen(motd,"r");
403 while (f && !feof(f)) {
404 int len = fread(line, 1, sizeof(line)-1, f);
405 if (len > 0) {
406 line[len] = 0;
407 io_printf(fd,"%s", line);
408 }
409 }
410 if (f) fclose(f);
411 io_printf(fd,"\n");
412 }
413
91eee594
AT
414 if (!read_line(fd, line, sizeof(line)-1)) {
415 return -1;
416 }
417
418 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
c8e78d87 419 io_printf(fd,"@ERROR: protocol startup error\n");
91eee594
AT
420 return -1;
421 }
422
8ef4ffd6 423 while (i == -1) {
3591c066
AT
424 line[0] = 0;
425 if (!read_line(fd, line, sizeof(line)-1)) {
426 return -1;
427 }
428
429 if (!*line || strcmp(line,"#list")==0) {
430 send_listing(fd);
431 return -1;
432 }
433
434 if (*line == '#') {
435 /* it's some sort of command that I don't understand */
c8e78d87 436 io_printf(fd,"@ERROR: Unknown command '%s'\n", line);
3591c066
AT
437 return -1;
438 }
439
440 i = lp_number(line);
441 if (i == -1) {
c8e78d87 442 io_printf(fd,"@ERROR: Unknown module '%s'\n", line);
3591c066
AT
443 return -1;
444 }
3591c066
AT
445 }
446
8ef4ffd6 447 return rsync_module(fd, i);
3591c066
AT
448}
449
450
451int daemon_main(void)
452{
f9e940ef 453 extern char *config_file;
ad517ce5 454 extern int orig_umask;
8638dd48 455 char *pid_file;
1a016bfd 456
3591c066 457 if (is_a_socket(STDIN_FILENO)) {
41979ff8
AT
458 int i;
459
460 /* we are running via inetd - close off stdout and
461 stderr so that library functions (and getopt) don't
462 try to use them. Redirect them to /dev/null */
463 for (i=1;i<3;i++) {
464 close(i);
465 open("/dev/null", O_RDWR);
466 }
3eb38818 467
3591c066
AT
468 return start_daemon(STDIN_FILENO);
469 }
470
471 become_daemon();
472
f9e940ef 473 if (!lp_load(config_file, 1)) {
65417579 474 exit_cleanup(RERR_SYNTAX);
f9e940ef
AT
475 }
476
45a83540 477 log_init();
f9e940ef 478
15b7b73d
MP
479 rprintf(FINFO, "rsyncd version %s starting, listening on port %d\n", VERSION,
480 rsync_port);
481 /* TODO: If listening on a particular address, then show that
482 * address too. */
e42c9458 483
8638dd48 484 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
ad517ce5
DD
485 char pidbuf[16];
486 int fd;
8638dd48
DD
487 int pid = (int) getpid();
488 cleanup_set_pid(pid);
ad517ce5
DD
489 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
490 0666 & ~orig_umask)) == -1) {
8638dd48 491 cleanup_set_pid(0);
a039749b 492 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
65417579 493 exit_cleanup(RERR_FILEIO);
8638dd48 494 }
ad517ce5
DD
495 slprintf(pidbuf, sizeof(pidbuf), "%d\n", pid);
496 write(fd, pidbuf, strlen(pidbuf));
497 close(fd);
8638dd48
DD
498 }
499
8ef4ffd6
AT
500 start_accept_loop(rsync_port, start_daemon);
501 return -1;
3591c066
AT
502}
503