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