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