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