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