Clarified a few items.
[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 quiet;
32extern int list_only;
33extern int am_sender;
34extern int am_server;
35extern int am_daemon;
36extern int am_root;
37extern int rsync_port;
38extern int kluge_around_eof;
39extern int daemon_over_rsh;
40extern int sanitize_paths;
41extern int filesfrom_fd;
42extern int remote_protocol;
43extern int protocol_version;
44extern int io_timeout;
45extern int no_detach;
46extern int default_af_hint;
47extern int log_initialised;
48extern mode_t orig_umask;
49extern char *bind_address;
50extern char *sockopts;
51extern char *config_file;
52extern char *files_from;
53extern char *tmpdir;
54extern struct chmod_mode_struct *chmod_modes;
55extern struct filter_list_struct server_filter_list;
56
57char *auth_user;
58int read_only = 0;
59int daemon_log_format_has_i = 0;
60int daemon_log_format_has_o_or_i = 0;
61int module_id = -1;
62struct chmod_mode_struct *daemon_chmod_modes;
63
64/* Length of lp_path() string when in daemon mode & not chrooted, else 0. */
65unsigned int module_dirlen = 0;
66
67#ifdef HAVE_SIGACTION
68static struct sigaction sigact;
69#endif
70
71/**
72 * Run a client connected to an rsyncd. The alternative to this
73 * function for remote-shell connections is do_cmd().
74 *
75 * After negotiating which module to use and reading the server's
76 * motd, this hands over to client_run(). Telling the server the
77 * module will cause it to chroot/setuid/etc.
78 *
79 * Instead of doing a transfer, the client may at this stage instead
80 * get a listing of remote modules and exit.
81 *
82 * @return -1 for error in startup, or the result of client_run().
83 * Either way, it eventually gets passed to exit_cleanup().
84 **/
85int start_socket_client(char *host, char *path, int argc, char *argv[])
86{
87 int fd, ret;
88 char *p, *user = NULL;
89
90 /* This is redundant with code in start_inband_exchange(), but this
91 * short-circuits a problem in the client before we open a socket,
92 * and the extra check won't hurt. */
93 if (*path == '/') {
94 rprintf(FERROR,
95 "ERROR: The remote path must start with a module name not a /\n");
96 return -1;
97 }
98
99 if ((p = strrchr(host, '@')) != NULL) {
100 user = host;
101 host = p+1;
102 *p = '\0';
103 }
104
105 fd = open_socket_out_wrapped(host, rsync_port, bind_address,
106 default_af_hint);
107 if (fd == -1)
108 exit_cleanup(RERR_SOCKETIO);
109
110 set_socket_options(fd, sockopts);
111
112 ret = start_inband_exchange(user, path, fd, fd, argc);
113
114 return ret ? ret : client_run(fd, fd, -1, argc, argv);
115}
116
117int start_inband_exchange(char *user, char *path, int f_in, int f_out,
118 int argc)
119{
120 int i;
121 char *sargs[MAX_ARGS];
122 int sargc = 0;
123 char line[BIGPATHBUFLEN];
124 char *p;
125
126 if (argc == 0 && !am_sender)
127 list_only |= 1;
128
129 if (*path == '/') {
130 rprintf(FERROR,
131 "ERROR: The remote path must start with a module name\n");
132 return -1;
133 }
134
135 if (!user)
136 user = getenv("USER");
137 if (!user)
138 user = getenv("LOGNAME");
139
140 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
141
142 if (!read_line(f_in, line, sizeof line - 1)) {
143 rprintf(FERROR, "rsync: did not see server greeting\n");
144 return -1;
145 }
146
147 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
148 /* note that read_line strips of \n or \r */
149 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
150 line);
151 return -1;
152 }
153 if (protocol_version > remote_protocol)
154 protocol_version = remote_protocol;
155
156 if (list_only && protocol_version >= 29)
157 list_only |= 2;
158
159 /* set daemon_over_rsh to false since we need to build the
160 * true set of args passed through the rsh/ssh connection;
161 * this is a no-op for direct-socket-connection mode */
162 daemon_over_rsh = 0;
163 server_options(sargs, &sargc);
164
165 sargs[sargc++] = ".";
166
167 if (path && *path)
168 sargs[sargc++] = path;
169
170 sargs[sargc] = NULL;
171
172 if (verbose > 1)
173 print_child_argv(sargs);
174
175 p = strchr(path,'/');
176 if (p) *p = 0;
177 io_printf(f_out, "%s\n", path);
178 if (p) *p = '/';
179
180 /* Old servers may just drop the connection here,
181 rather than sending a proper EXIT command. Yuck. */
182 kluge_around_eof = list_only && protocol_version < 25 ? 1 : 0;
183
184 while (1) {
185 if (!read_line(f_in, line, sizeof line - 1)) {
186 rprintf(FERROR, "rsync: didn't get server startup line\n");
187 return -1;
188 }
189
190 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
191 auth_client(f_out, user, line+18);
192 continue;
193 }
194
195 if (strcmp(line,"@RSYNCD: OK") == 0)
196 break;
197
198 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
199 /* This is sent by recent versions of the
200 * server to terminate the listing of modules.
201 * We don't want to go on and transfer
202 * anything; just exit. */
203 exit(0);
204 }
205
206 if (strncmp(line, "@ERROR", 6) == 0) {
207 rprintf(FERROR, "%s\n", line);
208 /* This is always fatal; the server will now
209 * close the socket. */
210 return -1;
211 }
212
213 rprintf(FINFO, "%s\n", line);
214 }
215 kluge_around_eof = 0;
216
217 for (i = 0; i < sargc; i++) {
218 io_printf(f_out, "%s\n", sargs[i]);
219 }
220 io_printf(f_out, "\n");
221
222 if (protocol_version < 23) {
223 if (protocol_version == 22 || !am_sender)
224 io_start_multiplex_in();
225 }
226
227 return 0;
228}
229
230static char *finish_pre_exec(pid_t pid, int fd, char *request,
231 int argc, char *argv[])
232{
233 int j, status = -1;
234
235 if (request) {
236 write_buf(fd, request, strlen(request)+1);
237 for (j = 0; j < argc; j++)
238 write_buf(fd, argv[j], strlen(argv[j])+1);
239 }
240
241 write_byte(fd, 0);
242
243 close(fd);
244
245 if (wait_process(pid, &status, 0) < 0
246 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
247 char *e;
248 if (asprintf(&e, "pre-xfer exec returned failure (%d)\n", status) < 0)
249 out_of_memory("finish_pre_exec");
250 return e;
251 }
252 return NULL;
253}
254
255static int read_arg_from_pipe(int fd, char *buf, int limit)
256{
257 char *bp = buf, *eob = buf + limit - 1;
258
259 while (1) {
260 if (read(fd, bp, 1) != 1)
261 return -1;
262 if (*bp == '\0')
263 break;
264 if (bp < eob)
265 bp++;
266 }
267 *bp = '\0';
268
269 return bp - buf;
270}
271
272static int rsync_module(int f_in, int f_out, int i, char *addr, char *host)
273{
274 int argc = 0;
275 int maxargs;
276 char **argv;
277 char line[BIGPATHBUFLEN];
278 uid_t uid = (uid_t)-2; /* canonically "nobody" */
279 gid_t gid = (gid_t)-2;
280 char *p, *err_msg = NULL;
281 char *name = lp_name(i);
282 int use_chroot = lp_use_chroot(i);
283 int start_glob = 0;
284 int ret, pre_exec_fd = -1;
285 pid_t pre_exec_pid = 0;
286 char *request = NULL;
287
288 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
289 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
290 name, host, addr);
291 if (!lp_list(i))
292 io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
293 else {
294 io_printf(f_out,
295 "@ERROR: access denied to %s from %s (%s)\n",
296 name, host, addr);
297 }
298 return -1;
299 }
300
301 if (am_daemon && am_server) {
302 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
303 name, host, addr);
304 }
305
306 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
307 if (errno) {
308 rsyserr(FLOG, errno, "failed to open lock file %s",
309 lp_lock_file(i));
310 io_printf(f_out, "@ERROR: failed to open lock file\n");
311 } else {
312 rprintf(FLOG, "max connections (%d) reached\n",
313 lp_max_connections(i));
314 io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
315 lp_max_connections(i));
316 }
317 return -1;
318 }
319
320 auth_user = auth_server(f_in, f_out, i, host, addr, "@RSYNCD: AUTHREQD ");
321
322 if (!auth_user) {
323 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
324 return -1;
325 }
326
327 module_id = i;
328
329 if (lp_read_only(i))
330 read_only = 1;
331
332 if (lp_transfer_logging(i)) {
333 if (log_format_has(lp_log_format(i), 'i'))
334 daemon_log_format_has_i = 1;
335 if (daemon_log_format_has_i
336 || log_format_has(lp_log_format(i), 'o'))
337 daemon_log_format_has_o_or_i = 1;
338 }
339
340 am_root = (MY_UID() == 0);
341
342 if (am_root) {
343 p = lp_uid(i);
344 if (!name_to_uid(p, &uid)) {
345 if (!isdigit(*(unsigned char *)p)) {
346 rprintf(FLOG, "Invalid uid %s\n", p);
347 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
348 return -1;
349 }
350 uid = atoi(p);
351 }
352
353 p = lp_gid(i);
354 if (!name_to_gid(p, &gid)) {
355 if (!isdigit(*(unsigned char *)p)) {
356 rprintf(FLOG, "Invalid gid %s\n", p);
357 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
358 return -1;
359 }
360 gid = atoi(p);
361 }
362 }
363
364 /* TODO: If we're not root, but the configuration requests
365 * that we change to some uid other than the current one, then
366 * log a warning. */
367
368 /* TODO: Perhaps take a list of gids, and make them into the
369 * supplementary groups. */
370
371 if (use_chroot || (module_dirlen = strlen(lp_path(i))) == 1) {
372 module_dirlen = 0;
373 set_filter_dir("/", 1);
374 } else
375 set_filter_dir(lp_path(i), module_dirlen);
376
377 p = lp_filter(i);
378 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
379 XFLG_ABS_IF_SLASH);
380
381 p = lp_include_from(i);
382 parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
383 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
384
385 p = lp_include(i);
386 parse_rule(&server_filter_list, p,
387 MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
388 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
389
390 p = lp_exclude_from(i);
391 parse_filter_file(&server_filter_list, p, 0,
392 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
393
394 p = lp_exclude(i);
395 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
396 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
397
398 log_init();
399
400#ifdef HAVE_PUTENV
401 if (*lp_prexfer_exec(i) || *lp_postxfer_exec(i)) {
402 char *modname, *modpath, *hostaddr, *hostname, *username;
403 int status;
404 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
405 || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", lp_path(i)) < 0
406 || asprintf(&hostaddr, "RSYNC_HOST_ADDR=%s", addr) < 0
407 || asprintf(&hostname, "RSYNC_HOST_NAME=%s", host) < 0
408 || asprintf(&username, "RSYNC_USER_NAME=%s", auth_user) < 0)
409 out_of_memory("rsync_module");
410 putenv(modname);
411 putenv(modpath);
412 putenv(hostaddr);
413 putenv(hostname);
414 putenv(username);
415 umask(orig_umask);
416 /* For post-xfer exec, fork a new process to run the rsync
417 * daemon while this process waits for the exit status and
418 * runs the indicated command at that point. */
419 if (*lp_postxfer_exec(i)) {
420 pid_t pid = fork();
421 if (pid < 0) {
422 rsyserr(FLOG, errno, "fork failed");
423 io_printf(f_out, "@ERROR: fork failed\n");
424 return -1;
425 }
426 if (pid) {
427 char *ret1, *ret2;
428 if (wait_process(pid, &status, 0) < 0)
429 status = -1;
430 if (asprintf(&ret1, "RSYNC_RAW_STATUS=%d", status) > 0)
431 putenv(ret1);
432 if (WIFEXITED(status))
433 status = WEXITSTATUS(status);
434 else
435 status = -1;
436 if (asprintf(&ret2, "RSYNC_EXIT_STATUS=%d", status) > 0)
437 putenv(ret2);
438 system(lp_postxfer_exec(i));
439 _exit(status);
440 }
441 }
442 /* For pre-xfer exec, fork a child process to run the indicated
443 * command, though it first waits for the parent process to
444 * send us the user's request via a pipe. */
445 if (*lp_prexfer_exec(i)) {
446 int fds[2];
447 if (pipe(fds) < 0 || (pre_exec_pid = fork()) < 0) {
448 rsyserr(FLOG, errno, "pre-xfer exec preparation failed");
449 io_printf(f_out, "@ERROR: pre-xfer exec preparation failed\n");
450 return -1;
451 }
452 if (pre_exec_pid == 0) {
453 char buf[BIGPATHBUFLEN];
454 int j, len;
455 close(fds[1]);
456 set_blocking(fds[0]);
457 len = read_arg_from_pipe(fds[0], buf, BIGPATHBUFLEN);
458 if (len <= 0)
459 _exit(1);
460 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) < 0)
461 out_of_memory("rsync_module");
462 putenv(p);
463 for (j = 0; ; j++) {
464 len = read_arg_from_pipe(fds[0], buf,
465 BIGPATHBUFLEN);
466 if (len <= 0) {
467 if (!len)
468 break;
469 _exit(1);
470 }
471 if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) < 0)
472 out_of_memory("rsync_module");
473 putenv(p);
474 }
475 close(fds[0]);
476 close(STDIN_FILENO);
477 close(STDOUT_FILENO);
478 status = system(lp_prexfer_exec(i));
479 if (!WIFEXITED(status))
480 _exit(1);
481 _exit(WEXITSTATUS(status));
482 }
483 close(fds[0]);
484 set_blocking(fds[1]);
485 pre_exec_fd = fds[1];
486 }
487 umask(0);
488 }
489#endif
490
491 if (use_chroot) {
492 /*
493 * XXX: The 'use chroot' flag is a fairly reliable
494 * source of confusion, because it fails under two
495 * important circumstances: running as non-root,
496 * running on Win32 (or possibly others). On the
497 * other hand, if you are running as root, then it
498 * might be better to always use chroot.
499 *
500 * So, perhaps if we can't chroot we should just issue
501 * a warning, unless a "require chroot" flag is set,
502 * in which case we fail.
503 */
504 if (chroot(lp_path(i))) {
505 rsyserr(FLOG, errno, "chroot %s failed",
506 lp_path(i));
507 io_printf(f_out, "@ERROR: chroot failed\n");
508 return -1;
509 }
510
511 if (!push_dir("/")) {
512 rsyserr(FLOG, errno, "chdir %s failed\n",
513 lp_path(i));
514 io_printf(f_out, "@ERROR: chdir failed\n");
515 return -1;
516 }
517
518 } else {
519 if (!push_dir(lp_path(i))) {
520 rsyserr(FLOG, errno, "chdir %s failed\n",
521 lp_path(i));
522 io_printf(f_out, "@ERROR: chdir failed\n");
523 return -1;
524 }
525 sanitize_paths = 1;
526 }
527
528 if (am_root) {
529 /* XXXX: You could argue that if the daemon is started
530 * by a non-root user and they explicitly specify a
531 * gid, then we should try to change to that gid --
532 * this could be possible if it's already in their
533 * supplementary groups. */
534
535 /* TODO: Perhaps we need to document that if rsyncd is
536 * started by somebody other than root it will inherit
537 * all their supplementary groups. */
538
539 if (setgid(gid)) {
540 rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
541 io_printf(f_out, "@ERROR: setgid failed\n");
542 return -1;
543 }
544#ifdef HAVE_SETGROUPS
545 /* Get rid of any supplementary groups this process
546 * might have inheristed. */
547 if (setgroups(1, &gid)) {
548 rsyserr(FLOG, errno, "setgroups failed");
549 io_printf(f_out, "@ERROR: setgroups failed\n");
550 return -1;
551 }
552#endif
553
554 if (setuid(uid)) {
555 rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
556 io_printf(f_out, "@ERROR: setuid failed\n");
557 return -1;
558 }
559
560 am_root = (MY_UID() == 0);
561 }
562
563 if (lp_temp_dir(i) && *lp_temp_dir(i)) {
564 tmpdir = lp_temp_dir(i);
565 if (strlen(tmpdir) >= MAXPATHLEN - 10) {
566 rprintf(FLOG,
567 "the 'temp dir' value for %s is WAY too long -- ignoring.\n",
568 name);
569 tmpdir = NULL;
570 }
571 }
572
573 io_printf(f_out, "@RSYNCD: OK\n");
574
575 maxargs = MAX_ARGS;
576 if (!(argv = new_array(char *, maxargs)))
577 out_of_memory("rsync_module");
578 argv[argc++] = "rsyncd";
579
580 while (1) {
581 if (!read_line(f_in, line, sizeof line - 1))
582 return -1;
583
584 if (!*line)
585 break;
586
587 p = line;
588
589 if (argc == maxargs) {
590 maxargs += MAX_ARGS;
591 if (!(argv = realloc_array(argv, char *, maxargs)))
592 out_of_memory("rsync_module");
593 }
594 if (!(argv[argc] = strdup(p)))
595 out_of_memory("rsync_module");
596
597 switch (start_glob) {
598 case 0:
599 argc++;
600 if (strcmp(line, ".") == 0)
601 start_glob = 1;
602 break;
603 case 1:
604 if (pre_exec_pid) {
605 err_msg = finish_pre_exec(pre_exec_pid,
606 pre_exec_fd, p,
607 argc, argv);
608 pre_exec_pid = 0;
609 }
610 request = strdup(p);
611 start_glob = 2;
612 /* FALL THROUGH */
613 default:
614 if (!err_msg)
615 glob_expand(name, &argv, &argc, &maxargs);
616 break;
617 }
618 }
619
620 if (pre_exec_pid) {
621 err_msg = finish_pre_exec(pre_exec_pid, pre_exec_fd, request,
622 argc, argv);
623 }
624
625 verbose = 0; /* future verbosity is controlled by client options */
626 ret = parse_arguments(&argc, (const char ***) &argv, 0);
627 quiet = 0; /* Don't let someone try to be tricky. */
628
629 if (filesfrom_fd == 0)
630 filesfrom_fd = f_in;
631
632 if (request) {
633 if (*auth_user) {
634 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
635 am_sender ? "on" : "to",
636 request, auth_user, host, addr);
637 } else {
638 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
639 am_sender ? "on" : "to",
640 request, host, addr);
641 }
642 free(request);
643 }
644
645#ifndef DEBUG
646 /* don't allow the logs to be flooded too fast */
647 if (verbose > lp_max_verbosity(i))
648 verbose = lp_max_verbosity(i);
649#endif
650
651 if (protocol_version < 23
652 && (protocol_version == 22 || am_sender))
653 io_start_multiplex_out();
654 else if (!ret || err_msg) {
655 /* We have to get I/O multiplexing started so that we can
656 * get the error back to the client. This means getting
657 * the protocol setup finished first in later versions. */
658 setup_protocol(f_out, f_in);
659 if (!am_sender) {
660 /* Since we failed in our option parsing, we may not
661 * have finished parsing that the client sent us a
662 * --files-from option, so look for it manually.
663 * Without this, the socket would be in the wrong
664 * state for the upcoming error message. */
665 if (!files_from) {
666 int i;
667 for (i = 0; i < argc; i++) {
668 if (strncmp(argv[i], "--files-from", 12) == 0) {
669 files_from = "";
670 break;
671 }
672 }
673 }
674 if (files_from)
675 write_byte(f_out, 0);
676 }
677 io_start_multiplex_out();
678 }
679
680 if (!ret || err_msg) {
681 if (err_msg)
682 rprintf(FERROR, err_msg);
683 else
684 option_error();
685 msleep(400);
686 exit_cleanup(RERR_UNSUPPORTED);
687 }
688
689 if (lp_timeout(i) && lp_timeout(i) > io_timeout)
690 set_io_timeout(lp_timeout(i));
691
692 /* If we have some incoming/outgoing chmod changes, append them to
693 * any user-specified changes (making our changes have priority).
694 * We also get a pointer to just our changes so that a receiver
695 * process can use them separately if --perms wasn't specified. */
696 if (am_sender)
697 p = lp_outgoing_chmod(i);
698 else
699 p = lp_incoming_chmod(i);
700 if (*p && !(daemon_chmod_modes = parse_chmod(p, &chmod_modes))) {
701 rprintf(FLOG, "Invalid \"%sing chmod\" directive: %s\n",
702 am_sender ? "outgo" : "incom", p);
703 }
704
705 start_server(f_in, f_out, argc, argv);
706
707 return 0;
708}
709
710/* send a list of available modules to the client. Don't list those
711 with "list = False". */
712static void send_listing(int fd)
713{
714 int n = lp_numservices();
715 int i;
716
717 for (i = 0; i < n; i++) {
718 if (lp_list(i))
719 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
720 }
721
722 if (protocol_version >= 25)
723 io_printf(fd,"@RSYNCD: EXIT\n");
724}
725
726/* this is called when a connection is established to a client
727 and we want to start talking. The setup of the system is done from
728 here */
729int start_daemon(int f_in, int f_out)
730{
731 char line[1024];
732 char *motd;
733 char *addr = client_addr(f_in);
734 char *host = client_name(f_in);
735 int i;
736
737 io_set_sock_fds(f_in, f_out);
738
739 if (log_initialised)
740 rprintf(FLOG, "connect from %s (%s)\n", host, addr);
741
742 if (!lp_load(config_file, 0))
743 exit_cleanup(RERR_SYNTAX);
744
745 if (!log_initialised)
746 log_init();
747
748 if (!am_server) {
749 set_socket_options(f_in, "SO_KEEPALIVE");
750 if (sockopts)
751 set_socket_options(f_in, sockopts);
752 else
753 set_socket_options(f_in, lp_socket_options());
754 set_nonblocking(f_in);
755 }
756
757 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
758
759 motd = lp_motd_file();
760 if (motd && *motd) {
761 FILE *f = fopen(motd,"r");
762 while (f && !feof(f)) {
763 int len = fread(line, 1, sizeof line - 1, f);
764 if (len > 0) {
765 line[len] = 0;
766 io_printf(f_out, "%s", line);
767 }
768 }
769 if (f)
770 fclose(f);
771 io_printf(f_out, "\n");
772 }
773
774 if (!read_line(f_in, line, sizeof line - 1))
775 return -1;
776
777 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
778 io_printf(f_out, "@ERROR: protocol startup error\n");
779 return -1;
780 }
781 if (protocol_version > remote_protocol)
782 protocol_version = remote_protocol;
783
784 line[0] = 0;
785 if (!read_line(f_in, line, sizeof line - 1))
786 return -1;
787
788 if (!*line || strcmp(line, "#list") == 0) {
789 rprintf(FLOG, "module-list request from %s (%s)\n",
790 host, addr);
791 send_listing(f_out);
792 return -1;
793 }
794
795 if (*line == '#') {
796 /* it's some sort of command that I don't understand */
797 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
798 return -1;
799 }
800
801 if ((i = lp_number(line)) < 0) {
802 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
803 line, host, addr);
804 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
805 return -1;
806 }
807
808#ifdef HAVE_SIGACTION
809 sigact.sa_flags = SA_NOCLDSTOP;
810#endif
811 SIGACTION(SIGCHLD, remember_children);
812
813 return rsync_module(f_in, f_out, i, addr, host);
814}
815
816int daemon_main(void)
817{
818 char *pid_file;
819
820 if (is_a_socket(STDIN_FILENO)) {
821 int i;
822
823 /* we are running via inetd - close off stdout and
824 * stderr so that library functions (and getopt) don't
825 * try to use them. Redirect them to /dev/null */
826 for (i = 1; i < 3; i++) {
827 close(i);
828 open("/dev/null", O_RDWR);
829 }
830
831 return start_daemon(STDIN_FILENO, STDIN_FILENO);
832 }
833
834 if (!no_detach)
835 become_daemon();
836
837 if (!lp_load(config_file, 1))
838 exit_cleanup(RERR_SYNTAX);
839
840 if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
841 rsync_port = RSYNC_PORT;
842 if (bind_address == NULL && *lp_bind_address())
843 bind_address = lp_bind_address();
844
845 log_init();
846
847 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
848 RSYNC_VERSION, rsync_port);
849 /* TODO: If listening on a particular address, then show that
850 * address too. In fact, why not just do inet_ntop on the
851 * local address??? */
852
853 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
854 char pidbuf[16];
855 int fd;
856 pid_t pid = getpid();
857 cleanup_set_pid(pid);
858 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
859 0666 & ~orig_umask)) == -1) {
860 cleanup_set_pid(0);
861 rsyserr(FLOG, errno, "failed to create pid file %s",
862 pid_file);
863 exit_cleanup(RERR_FILEIO);
864 }
865 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
866 write(fd, pidbuf, strlen(pidbuf));
867 close(fd);
868 }
869
870 start_accept_loop(rsync_port, start_daemon);
871 return -1;
872}