Don't allow a --partial-dir setting to overwrite a server-excluded
[rsync/rsync.git] / clientserver.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux"; -*-
2 *
3 * Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
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 * @file
23 *
24 * The socket based protocol for setting up a connection with
25 * rsyncd.
26 **/
27
28#include "rsync.h"
29
30extern int am_sender;
31extern int am_server;
32extern int am_daemon;
33extern int am_root;
34extern int module_id;
35extern int read_only;
36extern int verbose;
37extern int rsync_port;
38extern int kludge_around_eof;
39extern int daemon_over_rsh;
40extern int list_only;
41extern int sanitize_paths;
42extern int filesfrom_fd;
43extern int remote_protocol;
44extern int protocol_version;
45extern int io_timeout;
46extern int orig_umask;
47extern int no_detach;
48extern int default_af_hint;
49extern char *bind_address;
50extern struct exclude_list_struct server_exclude_list;
51extern char *exclude_path_prefix;
52extern char *config_file;
53
54char *auth_user;
55
56/**
57 * Run a client connected to an rsyncd. The alternative to this
58 * function for remote-shell connections is do_cmd().
59 *
60 * After negotiating which module to use and reading the server's
61 * motd, this hands over to client_run(). Telling the server the
62 * module will cause it to chroot/setuid/etc.
63 *
64 * Instead of doing a transfer, the client may at this stage instead
65 * get a listing of remote modules and exit.
66 *
67 * @return -1 for error in startup, or the result of client_run().
68 * Either way, it eventually gets passed to exit_cleanup().
69 **/
70int start_socket_client(char *host, char *path, int argc, char *argv[])
71{
72 int fd, ret;
73 char *p, *user = NULL;
74
75 /* This is redundant with code in start_inband_exchange(), but this
76 * short-circuits a problem in the client before we open a socket,
77 * and the extra check won't hurt. */
78 if (*path == '/') {
79 rprintf(FERROR,
80 "ERROR: The remote path must start with a module name not a /\n");
81 return -1;
82 }
83
84 if ((p = strchr(host, '@')) != NULL) {
85 user = host;
86 host = p+1;
87 *p = '\0';
88 }
89
90 fd = open_socket_out_wrapped(host, rsync_port, bind_address,
91 default_af_hint);
92 if (fd == -1)
93 exit_cleanup(RERR_SOCKETIO);
94
95 ret = start_inband_exchange(user, path, fd, fd, argc);
96
97 return ret < 0? ret : client_run(fd, fd, -1, argc, argv);
98}
99
100int start_inband_exchange(char *user, char *path, int f_in, int f_out,
101 int argc)
102{
103 int i;
104 char *sargs[MAX_ARGS];
105 int sargc = 0;
106 char line[MAXPATHLEN];
107 char *p;
108
109 if (argc == 0 && !am_sender)
110 list_only = 1;
111
112 if (*path == '/') {
113 rprintf(FERROR,
114 "ERROR: The remote path must start with a module name\n");
115 return -1;
116 }
117
118 if (!user)
119 user = getenv("USER");
120 if (!user)
121 user = getenv("LOGNAME");
122
123 /* set daemon_over_rsh to false since we need to build the
124 * true set of args passed through the rsh/ssh connection;
125 * this is a no-op for direct-socket-connection mode */
126 daemon_over_rsh = 0;
127 server_options(sargs, &sargc);
128
129 sargs[sargc++] = ".";
130
131 if (path && *path)
132 sargs[sargc++] = path;
133
134 sargs[sargc] = NULL;
135
136 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
137
138 if (!read_line(f_in, line, sizeof line - 1)) {
139 rprintf(FERROR, "rsync: did not see server greeting\n");
140 return -1;
141 }
142
143 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
144 /* note that read_line strips of \n or \r */
145 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
146 line);
147 return -1;
148 }
149 if (protocol_version > remote_protocol)
150 protocol_version = remote_protocol;
151
152 p = strchr(path,'/');
153 if (p) *p = 0;
154 io_printf(f_out, "%s\n", path);
155 if (p) *p = '/';
156
157 /* Old servers may just drop the connection here,
158 rather than sending a proper EXIT command. Yuck. */
159 kludge_around_eof = list_only && (protocol_version < 25);
160
161 while (1) {
162 if (!read_line(f_in, line, sizeof line - 1)) {
163 rprintf(FERROR, "rsync: didn't get server startup line\n");
164 return -1;
165 }
166
167 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
168 auth_client(f_out, user, line+18);
169 continue;
170 }
171
172 if (strcmp(line,"@RSYNCD: OK") == 0)
173 break;
174
175 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
176 /* This is sent by recent versions of the
177 * server to terminate the listing of modules.
178 * We don't want to go on and transfer
179 * anything; just exit. */
180 exit(0);
181 }
182
183 if (strncmp(line, "@ERROR", 6) == 0) {
184 rprintf(FERROR, "%s\n", line);
185 /* This is always fatal; the server will now
186 * close the socket. */
187 return RERR_STARTCLIENT;
188 } else {
189 rprintf(FINFO,"%s\n", line);
190 }
191 }
192 kludge_around_eof = False;
193
194 for (i = 0; i < sargc; i++) {
195 io_printf(f_out, "%s\n", sargs[i]);
196 }
197 io_printf(f_out, "\n");
198
199 if (protocol_version < 23) {
200 if (protocol_version == 22 || !am_sender)
201 io_start_multiplex_in();
202 }
203
204 return 0;
205}
206
207
208
209static int rsync_module(int f_in, int f_out, int i)
210{
211 int argc = 0;
212 int maxargs;
213 char **argv;
214 char **argp;
215 char line[MAXPATHLEN];
216 uid_t uid = (uid_t)-2; /* canonically "nobody" */
217 gid_t gid = (gid_t)-2;
218 char *p;
219 char *addr = client_addr(f_in);
220 char *host = client_name(f_in);
221 char *name = lp_name(i);
222 int use_chroot = lp_use_chroot(i);
223 int start_glob = 0;
224 int ret;
225 char *request = NULL;
226
227 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
228 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
229 name, host, addr);
230 if (!lp_list(i))
231 io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
232 else {
233 io_printf(f_out,
234 "@ERROR: access denied to %s from %s (%s)\n",
235 name, host, addr);
236 }
237 return -1;
238 }
239
240 if (am_daemon && am_server) {
241 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
242 name, host, addr);
243 }
244
245 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
246 if (errno) {
247 rsyserr(FLOG, errno, "failed to open lock file %s",
248 lp_lock_file(i));
249 io_printf(f_out, "@ERROR: failed to open lock file %s\n",
250 lp_lock_file(i));
251 } else {
252 rprintf(FLOG, "max connections (%d) reached\n",
253 lp_max_connections(i));
254 io_printf(f_out, "@ERROR: max connections (%d) reached - try again later\n",
255 lp_max_connections(i));
256 }
257 return -1;
258 }
259
260 auth_user = auth_server(f_in, f_out, i, addr, "@RSYNCD: AUTHREQD ");
261
262 if (!auth_user) {
263 rprintf(FLOG, "auth failed on module %s from %s (%s)\n",
264 name, host, addr);
265 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
266 return -1;
267 }
268
269 module_id = i;
270
271 am_root = (MY_UID() == 0);
272
273 if (am_root) {
274 p = lp_uid(i);
275 if (!name_to_uid(p, &uid)) {
276 if (!isdigit(*(unsigned char *)p)) {
277 rprintf(FLOG, "Invalid uid %s\n", p);
278 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
279 return -1;
280 }
281 uid = atoi(p);
282 }
283
284 p = lp_gid(i);
285 if (!name_to_gid(p, &gid)) {
286 if (!isdigit(*(unsigned char *)p)) {
287 rprintf(FLOG, "Invalid gid %s\n", p);
288 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
289 return -1;
290 }
291 gid = atoi(p);
292 }
293 }
294
295 /* TODO: If we're not root, but the configuration requests
296 * that we change to some uid other than the current one, then
297 * log a warning. */
298
299 /* TODO: Perhaps take a list of gids, and make them into the
300 * supplementary groups. */
301
302 exclude_path_prefix = use_chroot? "" : lp_path(i);
303 if (*exclude_path_prefix == '/' && !exclude_path_prefix[1])
304 exclude_path_prefix = "";
305
306 p = lp_include_from(i);
307 add_exclude_file(&server_exclude_list, p,
308 XFLG_FATAL_ERRORS | XFLG_DEF_INCLUDE);
309
310 p = lp_include(i);
311 add_exclude(&server_exclude_list, p,
312 XFLG_WORD_SPLIT | XFLG_DEF_INCLUDE);
313
314 p = lp_exclude_from(i);
315 add_exclude_file(&server_exclude_list, p,
316 XFLG_FATAL_ERRORS);
317
318 p = lp_exclude(i);
319 add_exclude(&server_exclude_list, p, XFLG_WORD_SPLIT);
320
321 exclude_path_prefix = NULL;
322
323 log_init();
324
325 if (use_chroot) {
326 /*
327 * XXX: The 'use chroot' flag is a fairly reliable
328 * source of confusion, because it fails under two
329 * important circumstances: running as non-root,
330 * running on Win32 (or possibly others). On the
331 * other hand, if you are running as root, then it
332 * might be better to always use chroot.
333 *
334 * So, perhaps if we can't chroot we should just issue
335 * a warning, unless a "require chroot" flag is set,
336 * in which case we fail.
337 */
338 if (chroot(lp_path(i))) {
339 rsyserr(FLOG, errno, "chroot %s failed", lp_path(i));
340 io_printf(f_out, "@ERROR: chroot failed\n");
341 return -1;
342 }
343
344 if (!push_dir("/")) {
345 rsyserr(FLOG, errno, "chdir %s failed\n", lp_path(i));
346 io_printf(f_out, "@ERROR: chdir failed\n");
347 return -1;
348 }
349
350 } else {
351 if (!push_dir(lp_path(i))) {
352 rsyserr(FLOG, errno, "chdir %s failed\n", lp_path(i));
353 io_printf(f_out, "@ERROR: chdir failed\n");
354 return -1;
355 }
356 sanitize_paths = 1;
357 }
358
359 if (am_root) {
360 /* XXXX: You could argue that if the daemon is started
361 * by a non-root user and they explicitly specify a
362 * gid, then we should try to change to that gid --
363 * this could be possible if it's already in their
364 * supplementary groups. */
365
366 /* TODO: Perhaps we need to document that if rsyncd is
367 * started by somebody other than root it will inherit
368 * all their supplementary groups. */
369
370 if (setgid(gid)) {
371 rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
372 io_printf(f_out, "@ERROR: setgid failed\n");
373 return -1;
374 }
375#ifdef HAVE_SETGROUPS
376 /* Get rid of any supplementary groups this process
377 * might have inheristed. */
378 if (setgroups(1, &gid)) {
379 rsyserr(FLOG, errno, "setgroups failed");
380 io_printf(f_out, "@ERROR: setgroups failed\n");
381 return -1;
382 }
383#endif
384
385 if (setuid(uid)) {
386 rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
387 io_printf(f_out, "@ERROR: setuid failed\n");
388 return -1;
389 }
390
391 am_root = (MY_UID() == 0);
392 }
393
394 io_printf(f_out, "@RSYNCD: OK\n");
395
396 maxargs = MAX_ARGS;
397 if (!(argv = new_array(char *, maxargs)))
398 out_of_memory("rsync_module");
399 argv[argc++] = "rsyncd";
400
401 while (1) {
402 if (!read_line(f_in, line, sizeof line - 1))
403 return -1;
404
405 if (!*line)
406 break;
407
408 p = line;
409
410 if (argc == maxargs) {
411 maxargs += MAX_ARGS;
412 if (!(argv = realloc_array(argv, char *, maxargs)))
413 out_of_memory("rsync_module");
414 }
415 if (!(argv[argc] = strdup(p)))
416 out_of_memory("rsync_module");
417
418 if (start_glob) {
419 if (start_glob == 1) {
420 request = strdup(p);
421 start_glob++;
422 }
423 glob_expand(name, &argv, &argc, &maxargs);
424 } else
425 argc++;
426
427 if (strcmp(line, ".") == 0)
428 start_glob = 1;
429 }
430
431 argp = argv;
432 ret = parse_arguments(&argc, (const char ***) &argp, 0);
433
434 if (filesfrom_fd == 0)
435 filesfrom_fd = f_in;
436
437 if (request) {
438 if (*auth_user) {
439 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
440 am_sender ? "on" : "to",
441 request, auth_user, host, addr);
442 } else {
443 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
444 am_sender ? "on" : "to",
445 request, host, addr);
446 }
447 free(request);
448 }
449
450#ifndef DEBUG
451 /* don't allow the logs to be flooded too fast */
452 if (verbose > lp_max_verbosity())
453 verbose = lp_max_verbosity();
454#endif
455
456 if (protocol_version < 23
457 && (protocol_version == 22 || am_sender))
458 io_start_multiplex_out();
459 else if (!ret) {
460 /* We have to get I/O multiplexing started so that we can
461 * get the error back to the client. This means getting
462 * the protocol setup finished first in later versions. */
463 setup_protocol(f_out, f_in);
464 io_start_multiplex_out();
465 }
466
467 if (!ret) {
468 option_error();
469 msleep(400);
470 exit_cleanup(RERR_UNSUPPORTED);
471 }
472
473 if (lp_timeout(i))
474 io_timeout = lp_timeout(i);
475
476 start_server(f_in, f_out, argc, argp);
477
478 return 0;
479}
480
481/* send a list of available modules to the client. Don't list those
482 with "list = False". */
483static void send_listing(int fd)
484{
485 int n = lp_numservices();
486 int i;
487
488 for (i = 0; i < n; i++) {
489 if (lp_list(i))
490 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
491 }
492
493 if (protocol_version >= 25)
494 io_printf(fd,"@RSYNCD: EXIT\n");
495}
496
497/* this is called when a connection is established to a client
498 and we want to start talking. The setup of the system is done from
499 here */
500int start_daemon(int f_in, int f_out)
501{
502 char line[200];
503 char *motd;
504 int i;
505
506 io_set_sock_fds(f_in, f_out);
507
508 if (!lp_load(config_file, 0))
509 exit_cleanup(RERR_SYNTAX);
510
511 log_init();
512
513 if (!am_server) {
514 set_socket_options(f_in, "SO_KEEPALIVE");
515 set_socket_options(f_in, lp_socket_options());
516 set_nonblocking(f_in);
517 }
518
519 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
520
521 motd = lp_motd_file();
522 if (motd && *motd) {
523 FILE *f = fopen(motd,"r");
524 while (f && !feof(f)) {
525 int len = fread(line, 1, sizeof line - 1, f);
526 if (len > 0) {
527 line[len] = 0;
528 io_printf(f_out, "%s", line);
529 }
530 }
531 if (f)
532 fclose(f);
533 io_printf(f_out, "\n");
534 }
535
536 if (!read_line(f_in, line, sizeof line - 1))
537 return -1;
538
539 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
540 io_printf(f_out, "@ERROR: protocol startup error\n");
541 return -1;
542 }
543 if (protocol_version > remote_protocol)
544 protocol_version = remote_protocol;
545
546 line[0] = 0;
547 if (!read_line(f_in, line, sizeof line - 1))
548 return -1;
549
550 if (!*line || strcmp(line, "#list") == 0) {
551 send_listing(f_out);
552 return -1;
553 }
554
555 if (*line == '#') {
556 /* it's some sort of command that I don't understand */
557 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
558 return -1;
559 }
560
561 if ((i = lp_number(line)) < 0) {
562 char *addr = client_addr(f_in);
563 char *host = client_name(f_in);
564 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
565 line, host, addr);
566 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
567 return -1;
568 }
569
570 return rsync_module(f_in, f_out, i);
571}
572
573
574int daemon_main(void)
575{
576 char *pid_file;
577
578 if (is_a_socket(STDIN_FILENO)) {
579 int i;
580
581 /* we are running via inetd - close off stdout and
582 * stderr so that library functions (and getopt) don't
583 * try to use them. Redirect them to /dev/null */
584 for (i = 1; i < 3; i++) {
585 close(i);
586 open("/dev/null", O_RDWR);
587 }
588
589 return start_daemon(STDIN_FILENO, STDIN_FILENO);
590 }
591
592 if (!no_detach)
593 become_daemon();
594
595 if (!lp_load(config_file, 1))
596 exit_cleanup(RERR_SYNTAX);
597
598 log_init();
599
600 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
601 RSYNC_VERSION, rsync_port);
602 /* TODO: If listening on a particular address, then show that
603 * address too. In fact, why not just do inet_ntop on the
604 * local address??? */
605
606 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
607 char pidbuf[16];
608 int fd;
609 pid_t pid = getpid();
610 cleanup_set_pid(pid);
611 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
612 0666 & ~orig_umask)) == -1) {
613 cleanup_set_pid(0);
614 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
615 exit_cleanup(RERR_FILEIO);
616 }
617 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
618 write(fd, pidbuf, strlen(pidbuf));
619 close(fd);
620 }
621
622 start_accept_loop(rsync_port, start_daemon);
623 return -1;
624}