Added a way to specify where the chroot should occur in the module's
[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 as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, visit the http://fsf.org website.
20  */
21
22 #include "rsync.h"
23 #include "ifuncs.h"
24
25 extern int verbose;
26 extern int dry_run;
27 extern int output_motd;
28 extern int list_only;
29 extern int am_sender;
30 extern int am_server;
31 extern int am_daemon;
32 extern int am_root;
33 extern int rsync_port;
34 extern int ignore_errors;
35 extern int kluge_around_eof;
36 extern int daemon_over_rsh;
37 extern int sanitize_paths;
38 extern int numeric_ids;
39 extern int filesfrom_fd;
40 extern int remote_protocol;
41 extern int protocol_version;
42 extern int io_timeout;
43 extern int no_detach;
44 extern int write_batch;
45 extern int default_af_hint;
46 extern int logfile_format_has_i;
47 extern int logfile_format_has_o_or_i;
48 extern mode_t orig_umask;
49 extern char *bind_address;
50 extern char *sockopts;
51 extern char *config_file;
52 extern char *logfile_format;
53 extern char *files_from;
54 extern char *tmpdir;
55 extern struct chmod_mode_struct *chmod_modes;
56 extern struct filter_list_struct server_filter_list;
57 extern char curr_dir[];
58 #ifdef ICONV_OPTION
59 extern char *iconv_opt;
60 extern iconv_t ic_send, ic_recv;
61 #endif
62
63 char *auth_user;
64 int read_only = 0;
65 int module_id = -1;
66 int munge_symlinks = 0;
67 struct chmod_mode_struct *daemon_chmod_modes;
68
69 /* module_dirlen is the length of the module_dir string when in daemon
70  * mode and module_dir is not "/"; otherwise 0.  (Note that a chroot-
71  * enabled module can have a non-"/" module_dir these days.) */
72 char *module_dir = NULL;
73 unsigned int module_dirlen = 0;
74
75 static int rl_nulls = 0;
76
77 #ifdef HAVE_SIGACTION
78 static struct sigaction sigact;
79 #endif
80
81 /**
82  * Run a client connected to an rsyncd.  The alternative to this
83  * function for remote-shell connections is do_cmd().
84  *
85  * After negotiating which module to use and reading the server's
86  * motd, this hands over to client_run().  Telling the server the
87  * module will cause it to chroot/setuid/etc.
88  *
89  * Instead of doing a transfer, the client may at this stage instead
90  * get a listing of remote modules and exit.
91  *
92  * @return -1 for error in startup, or the result of client_run().
93  * Either way, it eventually gets passed to exit_cleanup().
94  **/
95 int start_socket_client(char *host, int remote_argc, char *remote_argv[],
96                         int argc, char *argv[])
97 {
98         int fd, ret;
99         char *p, *user = NULL;
100
101         /* This is redundant with code in start_inband_exchange(), but this
102          * short-circuits a problem in the client before we open a socket,
103          * and the extra check won't hurt. */
104         if (**remote_argv == '/') {
105                 rprintf(FERROR,
106                         "ERROR: The remote path must start with a module name not a /\n");
107                 return -1;
108         }
109
110         if ((p = strrchr(host, '@')) != NULL) {
111                 user = host;
112                 host = p+1;
113                 *p = '\0';
114         }
115
116         fd = open_socket_out_wrapped(host, rsync_port, bind_address,
117                                      default_af_hint);
118         if (fd == -1)
119                 exit_cleanup(RERR_SOCKETIO);
120
121         set_socket_options(fd, sockopts);
122
123         ret = start_inband_exchange(fd, fd, user, remote_argc, remote_argv);
124
125         return ret ? ret : client_run(fd, fd, -1, argc, argv);
126 }
127
128 static int exchange_protocols(int f_in, int f_out, char *buf, size_t bufsiz, int am_client)
129 {
130         int remote_sub = -1;
131 #if SUBPROTOCOL_VERSION != 0
132         int our_sub = protocol_version < PROTOCOL_VERSION ? 0 : SUBPROTOCOL_VERSION;
133 #else
134         int our_sub = 0;
135 #endif
136         char *motd;
137
138         io_printf(f_out, "@RSYNCD: %d.%d\n", protocol_version, our_sub);
139
140         if (!am_client) {
141                 motd = lp_motd_file();
142                 if (motd && *motd) {
143                         FILE *f = fopen(motd,"r");
144                         while (f && !feof(f)) {
145                                 int len = fread(buf, 1, bufsiz - 1, f);
146                                 if (len > 0)
147                                         write_buf(f_out, buf, len);
148                         }
149                         if (f)
150                                 fclose(f);
151                         write_sbuf(f_out, "\n");
152                 }
153         }
154
155         /* This strips the \n. */
156         if (!read_line_old(f_in, buf, bufsiz)) {
157                 if (am_client)
158                         rprintf(FERROR, "rsync: did not see server greeting\n");
159                 return -1;
160         }
161
162         if (sscanf(buf, "@RSYNCD: %d.%d", &remote_protocol, &remote_sub) < 1) {
163                 if (am_client)
164                         rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n", buf);
165                 else
166                         io_printf(f_out, "@ERROR: protocol startup error\n");
167                 return -1;
168         }
169
170         if (remote_sub < 0) {
171                 if (remote_protocol == 30) {
172                         if (am_client)
173                                 rprintf(FERROR, "rsync: server is speaking an incompatible beta of protocol 30\n");
174                         else
175                                 io_printf(f_out, "@ERROR: your client is speaking an incompatible beta of protocol 30\n");
176                         return -1;
177                 }
178                 remote_sub = 0;
179         }
180
181         if (protocol_version > remote_protocol) {
182                 protocol_version = remote_protocol;
183                 if (remote_sub)
184                         protocol_version--;
185         } else if (protocol_version == remote_protocol) {
186                 if (remote_sub != our_sub)
187                         protocol_version--;
188         }
189 #if SUBPROTOCOL_VERSION != 0
190         else if (protocol_version < remote_protocol) {
191                 if (our_sub)
192                         protocol_version--;
193         }
194 #endif
195
196         if (protocol_version >= 30)
197                 rl_nulls = 1;
198
199         return 0;
200 }
201
202 int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char *argv[])
203 {
204         int i, modlen;
205         char line[BIGPATHBUFLEN];
206         char *sargs[MAX_ARGS];
207         int sargc = 0;
208         char *p, *modname;
209
210         assert(argc > 0);
211
212         if (**argv == '/') {
213                 rprintf(FERROR,
214                         "ERROR: The remote path must start with a module name\n");
215                 return -1;
216         }
217
218         if (!(p = strchr(*argv, '/')))
219                 modlen = strlen(*argv);
220         else
221                 modlen = p - *argv;
222
223         if (!(modname = new_array(char, modlen+1+1))) /* room for '/' & '\0' */
224                 out_of_memory("start_inband_exchange");
225         strlcpy(modname, *argv, modlen + 1);
226         modname[modlen] = '/';
227         modname[modlen+1] = '\0';
228
229         if (!user)
230                 user = getenv("USER");
231         if (!user)
232                 user = getenv("LOGNAME");
233
234         if (exchange_protocols(f_in, f_out, line, sizeof line, 1) < 0)
235                 return -1;
236
237         /* set daemon_over_rsh to false since we need to build the
238          * true set of args passed through the rsh/ssh connection;
239          * this is a no-op for direct-socket-connection mode */
240         daemon_over_rsh = 0;
241         server_options(sargs, &sargc);
242
243         if (sargc >= MAX_ARGS - 2)
244                 goto arg_overflow;
245
246         sargs[sargc++] = ".";
247
248         while (argc > 0) {
249                 if (sargc >= MAX_ARGS - 1) {
250                   arg_overflow:
251                         rprintf(FERROR, "internal: args[] overflowed in do_cmd()\n");
252                         exit_cleanup(RERR_SYNTAX);
253                 }
254                 if (strncmp(*argv, modname, modlen) == 0
255                  && argv[0][modlen] == '\0')
256                         sargs[sargc++] = modname; /* we send "modname/" */
257                 else
258                         sargs[sargc++] = *argv;
259                 argv++;
260                 argc--;
261         }
262
263         sargs[sargc] = NULL;
264
265         if (verbose > 1)
266                 print_child_argv("sending daemon args:", sargs);
267
268         io_printf(f_out, "%.*s\n", modlen, modname);
269
270         /* Old servers may just drop the connection here,
271          rather than sending a proper EXIT command.  Yuck. */
272         kluge_around_eof = list_only && protocol_version < 25 ? 1 : 0;
273
274         while (1) {
275                 if (!read_line_old(f_in, line, sizeof line)) {
276                         rprintf(FERROR, "rsync: didn't get server startup line\n");
277                         return -1;
278                 }
279
280                 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
281                         auth_client(f_out, user, line+18);
282                         continue;
283                 }
284
285                 if (strcmp(line,"@RSYNCD: OK") == 0)
286                         break;
287
288                 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
289                         /* This is sent by recent versions of the
290                          * server to terminate the listing of modules.
291                          * We don't want to go on and transfer
292                          * anything; just exit. */
293                         exit(0);
294                 }
295
296                 if (strncmp(line, "@ERROR", 6) == 0) {
297                         rprintf(FERROR, "%s\n", line);
298                         /* This is always fatal; the server will now
299                          * close the socket. */
300                         return -1;
301                 }
302
303                 /* This might be a MOTD line or a module listing, but there is
304                  * no way to differentiate it.  The manpage mentions this. */
305                 if (output_motd)
306                         rprintf(FINFO, "%s\n", line);
307         }
308         kluge_around_eof = 0;
309
310         if (rl_nulls) {
311                 for (i = 0; i < sargc; i++) {
312                         write_sbuf(f_out, sargs[i]);
313                         write_byte(f_out, 0);
314                 }
315                 write_byte(f_out, 0);
316         } else {
317                 for (i = 0; i < sargc; i++)
318                         io_printf(f_out, "%s\n", sargs[i]);
319                 write_sbuf(f_out, "\n");
320         }
321
322         if (protocol_version < 23) {
323                 if (protocol_version == 22 || !am_sender)
324                         io_start_multiplex_in();
325         }
326
327         free(modname);
328
329         return 0;
330 }
331
332 static char *finish_pre_exec(pid_t pid, int fd, char *request,
333                              int argc, char *argv[])
334 {
335         int j, status = -1;
336
337         if (!request)
338                 request = "(NONE)";
339
340         write_buf(fd, request, strlen(request)+1);
341         for (j = 0; j < argc; j++)
342                 write_buf(fd, argv[j], strlen(argv[j])+1);
343         write_byte(fd, 0);
344
345         close(fd);
346
347         if (wait_process(pid, &status, 0) < 0
348          || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
349                 char *e;
350                 if (asprintf(&e, "pre-xfer exec returned failure (%d)%s%s\n",
351                              status, status < 0 ? ": " : "",
352                              status < 0 ? strerror(errno) : "") < 0)
353                         out_of_memory("finish_pre_exec");
354                 return e;
355         }
356         return NULL;
357 }
358
359 static int read_arg_from_pipe(int fd, char *buf, int limit)
360 {
361         char *bp = buf, *eob = buf + limit - 1;
362
363         while (1) {
364             int got = read(fd, bp, 1);
365             if (got != 1) {
366                 if (got < 0 && errno == EINTR)
367                         continue;
368                 return -1;
369             }
370             if (*bp == '\0')
371                 break;
372             if (bp < eob)
373                 bp++;
374         }
375         *bp = '\0';
376
377         return bp - buf;
378 }
379
380 static int rsync_module(int f_in, int f_out, int i, char *addr, char *host)
381 {
382         int argc, opt_cnt;
383         char **argv, *chroot_path = NULL;
384         char line[BIGPATHBUFLEN];
385         uid_t uid = (uid_t)-2;  /* canonically "nobody" */
386         gid_t gid = (gid_t)-2;
387         char *p, *err_msg = NULL;
388         char *name = lp_name(i);
389         int use_chroot = lp_use_chroot(i);
390         int ret, pre_exec_fd = -1;
391         pid_t pre_exec_pid = 0;
392         char *request = NULL;
393
394 #ifdef ICONV_CONST
395         iconv_opt = lp_charset(i);
396         if (*iconv_opt)
397                 setup_iconv();
398         iconv_opt = NULL;
399 #endif
400
401         if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
402                 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
403                         name, host, addr);
404                 if (!lp_list(i))
405                         io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
406                 else {
407                         io_printf(f_out,
408                                   "@ERROR: access denied to %s from %s (%s)\n",
409                                   name, host, addr);
410                 }
411                 return -1;
412         }
413
414         if (am_daemon && am_server) {
415                 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
416                         name, host, addr);
417         }
418
419         if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
420                 if (errno) {
421                         rsyserr(FLOG, errno, "failed to open lock file %s",
422                                 lp_lock_file(i));
423                         io_printf(f_out, "@ERROR: failed to open lock file\n");
424                 } else {
425                         rprintf(FLOG, "max connections (%d) reached\n",
426                                 lp_max_connections(i));
427                         io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
428                                 lp_max_connections(i));
429                 }
430                 return -1;
431         }
432
433         auth_user = auth_server(f_in, f_out, i, host, addr, "@RSYNCD: AUTHREQD ");
434
435         if (!auth_user) {
436                 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
437                 return -1;
438         }
439
440         module_id = i;
441
442         if (lp_read_only(i))
443                 read_only = 1;
444
445         if (lp_transfer_logging(i) && !logfile_format)
446                 logfile_format = lp_log_format(i);
447         if (log_format_has(logfile_format, 'i'))
448                 logfile_format_has_i = 1;
449         if (logfile_format_has_i || log_format_has(logfile_format, 'o'))
450                 logfile_format_has_o_or_i = 1;
451
452         am_root = (MY_UID() == 0);
453
454         if (am_root) {
455                 p = lp_uid(i);
456                 if (!name_to_uid(p, &uid)) {
457                         if (!isDigit(p)) {
458                                 rprintf(FLOG, "Invalid uid %s\n", p);
459                                 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
460                                 return -1;
461                         }
462                         uid = atoi(p);
463                 }
464
465                 p = lp_gid(i);
466                 if (!name_to_gid(p, &gid)) {
467                         if (!isDigit(p)) {
468                                 rprintf(FLOG, "Invalid gid %s\n", p);
469                                 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
470                                 return -1;
471                         }
472                         gid = atoi(p);
473                 }
474         }
475
476         /* TODO: If we're not root, but the configuration requests
477          * that we change to some uid other than the current one, then
478          * log a warning. */
479
480         /* TODO: Perhaps take a list of gids, and make them into the
481          * supplementary groups. */
482
483         /* We do a push_dir() without actually calling chdir() in order
484          * to make sure that the module's path is absolute.  After this
485          * check, module_dir will be set to an absolute path. */
486         module_dir = lp_path(i);
487         if (use_chroot) {
488                 if ((p = strstr(module_dir, "/./")) != NULL) {
489                         *p = '\0';
490                         p += 2;
491                 } else if ((p = strdup("/")) == NULL)
492                         out_of_memory("rsync_module");
493         }
494
495         strlcpy(line, curr_dir, sizeof line);
496         if (!push_dir(module_dir, 1))
497                 goto chdir_failed;
498         if (strcmp(curr_dir, module_dir) != 0
499          && (module_dir = strdup(curr_dir)) == NULL)
500                 out_of_memory("rsync_module");
501         push_dir(line, 1); /* Restore curr_dir. */
502
503         if (use_chroot) {
504                 chroot_path = module_dir;
505                 module_dir = p; /* p is "/" or our inside-chroot path */
506         }
507         module_dirlen = clean_fname(module_dir, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
508
509         if (module_dirlen == 1) {
510                 module_dirlen = 0;
511                 set_filter_dir("/", 1);
512         } else
513                 set_filter_dir(module_dir, module_dirlen);
514
515         p = lp_filter(i);
516         parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
517                    XFLG_ABS_IF_SLASH);
518
519         p = lp_include_from(i);
520         parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
521             XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
522
523         p = lp_include(i);
524         parse_rule(&server_filter_list, p,
525                    MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
526                    XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
527
528         p = lp_exclude_from(i);
529         parse_filter_file(&server_filter_list, p, 0,
530             XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
531
532         p = lp_exclude(i);
533         parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
534                    XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
535
536         log_init(1);
537
538 #ifdef HAVE_PUTENV
539         if (*lp_prexfer_exec(i) || *lp_postxfer_exec(i)) {
540                 char *modname, *modpath, *hostaddr, *hostname, *username;
541                 int status;
542
543                 if (!use_chroot)
544                         p = module_dir;
545                 else if (module_dirlen) {
546                         pathjoin(line, sizeof line, chroot_path, module_dir+1);
547                         p = line;
548                 } else
549                         p = chroot_path;
550
551                 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
552                  || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", p) < 0
553                  || asprintf(&hostaddr, "RSYNC_HOST_ADDR=%s", addr) < 0
554                  || asprintf(&hostname, "RSYNC_HOST_NAME=%s", host) < 0
555                  || asprintf(&username, "RSYNC_USER_NAME=%s", auth_user) < 0)
556                         out_of_memory("rsync_module");
557                 putenv(modname);
558                 putenv(modpath);
559                 putenv(hostaddr);
560                 putenv(hostname);
561                 putenv(username);
562                 umask(orig_umask);
563                 /* For post-xfer exec, fork a new process to run the rsync
564                  * daemon while this process waits for the exit status and
565                  * runs the indicated command at that point. */
566                 if (*lp_postxfer_exec(i)) {
567                         pid_t pid = fork();
568                         if (pid < 0) {
569                                 rsyserr(FLOG, errno, "fork failed");
570                                 io_printf(f_out, "@ERROR: fork failed\n");
571                                 return -1;
572                         }
573                         if (pid) {
574                                 if (asprintf(&p, "RSYNC_PID=%ld", (long)pid) > 0)
575                                         putenv(p);
576                                 if (wait_process(pid, &status, 0) < 0)
577                                         status = -1;
578                                 if (asprintf(&p, "RSYNC_RAW_STATUS=%d", status) > 0)
579                                         putenv(p);
580                                 if (WIFEXITED(status))
581                                         status = WEXITSTATUS(status);
582                                 else
583                                         status = -1;
584                                 if (asprintf(&p, "RSYNC_EXIT_STATUS=%d", status) > 0)
585                                         putenv(p);
586                                 system(lp_postxfer_exec(i));
587                                 _exit(status);
588                         }
589                 }
590                 /* For pre-xfer exec, fork a child process to run the indicated
591                  * command, though it first waits for the parent process to
592                  * send us the user's request via a pipe. */
593                 if (*lp_prexfer_exec(i)) {
594                         int fds[2];
595                         if (asprintf(&p, "RSYNC_PID=%ld", (long)getpid()) > 0)
596                                 putenv(p);
597                         if (pipe(fds) < 0 || (pre_exec_pid = fork()) < 0) {
598                                 rsyserr(FLOG, errno, "pre-xfer exec preparation failed");
599                                 io_printf(f_out, "@ERROR: pre-xfer exec preparation failed\n");
600                                 return -1;
601                         }
602                         if (pre_exec_pid == 0) {
603                                 char buf[BIGPATHBUFLEN];
604                                 int j, len;
605                                 close(fds[1]);
606                                 set_blocking(fds[0]);
607                                 len = read_arg_from_pipe(fds[0], buf, BIGPATHBUFLEN);
608                                 if (len <= 0)
609                                         _exit(1);
610                                 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) > 0)
611                                         putenv(p);
612                                 for (j = 0; ; j++) {
613                                         len = read_arg_from_pipe(fds[0], buf,
614                                                                  BIGPATHBUFLEN);
615                                         if (len <= 0) {
616                                                 if (!len)
617                                                         break;
618                                                 _exit(1);
619                                         }
620                                         if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) > 0)
621                                                 putenv(p);
622                                 }
623                                 close(fds[0]);
624                                 close(STDIN_FILENO);
625                                 close(STDOUT_FILENO);
626                                 status = system(lp_prexfer_exec(i));
627                                 if (!WIFEXITED(status))
628                                         _exit(1);
629                                 _exit(WEXITSTATUS(status));
630                         }
631                         close(fds[0]);
632                         set_blocking(fds[1]);
633                         pre_exec_fd = fds[1];
634                 }
635                 umask(0);
636         }
637 #endif
638
639         if (use_chroot) {
640                 /*
641                  * XXX: The 'use chroot' flag is a fairly reliable
642                  * source of confusion, because it fails under two
643                  * important circumstances: running as non-root,
644                  * running on Win32 (or possibly others).  On the
645                  * other hand, if you are running as root, then it
646                  * might be better to always use chroot.
647                  *
648                  * So, perhaps if we can't chroot we should just issue
649                  * a warning, unless a "require chroot" flag is set,
650                  * in which case we fail.
651                  */
652                 if (chroot(chroot_path)) {
653                         rsyserr(FLOG, errno, "chroot %s failed", chroot_path);
654                         io_printf(f_out, "@ERROR: chroot failed\n");
655                         return -1;
656                 }
657                 if (!push_dir(module_dir, 0))
658                         goto chdir_failed;
659                 if (module_dirlen)
660                         sanitize_paths = 1;
661         } else {
662                 if (!push_dir(module_dir, 0)) {
663                   chdir_failed:
664                         rsyserr(FLOG, errno, "chdir %s failed\n", module_dir);
665                         io_printf(f_out, "@ERROR: chdir failed\n");
666                         return -1;
667                 }
668                 sanitize_paths = 1;
669         }
670
671         if ((munge_symlinks = lp_munge_symlinks(i)) < 0)
672                 munge_symlinks = !use_chroot || module_dirlen;
673         if (munge_symlinks) {
674                 STRUCT_STAT st;
675                 if (stat(SYMLINK_PREFIX, &st) == 0 && S_ISDIR(st.st_mode)) {
676                         rprintf(FLOG, "Symlink munging is unsupported when a %s directory exists.\n",
677                                 SYMLINK_PREFIX);
678                         io_printf(f_out, "@ERROR: daemon security issue -- contact admin\n", name);
679                         exit_cleanup(RERR_UNSUPPORTED);
680                 }
681         }
682
683         if (am_root) {
684                 /* XXXX: You could argue that if the daemon is started
685                  * by a non-root user and they explicitly specify a
686                  * gid, then we should try to change to that gid --
687                  * this could be possible if it's already in their
688                  * supplementary groups. */
689
690                 /* TODO: Perhaps we need to document that if rsyncd is
691                  * started by somebody other than root it will inherit
692                  * all their supplementary groups. */
693
694                 if (setgid(gid)) {
695                         rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
696                         io_printf(f_out, "@ERROR: setgid failed\n");
697                         return -1;
698                 }
699 #ifdef HAVE_SETGROUPS
700                 /* Get rid of any supplementary groups this process
701                  * might have inheristed. */
702                 if (setgroups(1, &gid)) {
703                         rsyserr(FLOG, errno, "setgroups failed");
704                         io_printf(f_out, "@ERROR: setgroups failed\n");
705                         return -1;
706                 }
707 #endif
708
709                 if (setuid(uid)) {
710                         rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
711                         io_printf(f_out, "@ERROR: setuid failed\n");
712                         return -1;
713                 }
714
715                 am_root = (MY_UID() == 0);
716         }
717
718         if (lp_temp_dir(i) && *lp_temp_dir(i)) {
719                 tmpdir = lp_temp_dir(i);
720                 if (strlen(tmpdir) >= MAXPATHLEN - 10) {
721                         rprintf(FLOG,
722                                 "the 'temp dir' value for %s is WAY too long -- ignoring.\n",
723                                 name);
724                         tmpdir = NULL;
725                 }
726         }
727
728         io_printf(f_out, "@RSYNCD: OK\n");
729
730         opt_cnt = read_args(f_in, name, line, sizeof line, rl_nulls, &argv, &argc, &request);
731
732         if (pre_exec_pid) {
733                 err_msg = finish_pre_exec(pre_exec_pid, pre_exec_fd, request,
734                                           opt_cnt, argv);
735         }
736
737         verbose = 0; /* future verbosity is controlled by client options */
738         ret = parse_arguments(&argc, (const char ***) &argv, 0);
739         am_server = 1; /* Don't let someone try to be tricky. */
740         if (lp_ignore_errors(module_id))
741                 ignore_errors = 1;
742         if (write_batch < 0)
743                 dry_run = 1;
744
745         if (lp_fake_super(i))
746                 am_root = -1;
747         else if (am_root < 0) /* Treat --fake-super from client as --super. */
748                 am_root = 2;
749
750         if (filesfrom_fd == 0)
751                 filesfrom_fd = f_in;
752
753         if (request) {
754                 if (*auth_user) {
755                         rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
756                                 am_sender ? "on" : "to",
757                                 request, auth_user, host, addr);
758                 } else {
759                         rprintf(FLOG, "rsync %s %s from %s (%s)\n",
760                                 am_sender ? "on" : "to",
761                                 request, host, addr);
762                 }
763                 free(request);
764         }
765
766 #ifndef DEBUG
767         /* don't allow the logs to be flooded too fast */
768         if (verbose > lp_max_verbosity(i))
769                 verbose = lp_max_verbosity(i);
770 #endif
771
772         if (protocol_version < 23
773             && (protocol_version == 22 || am_sender))
774                 io_start_multiplex_out();
775         else if (!ret || err_msg) {
776                 /* We have to get I/O multiplexing started so that we can
777                  * get the error back to the client.  This means getting
778                  * the protocol setup finished first in later versions. */
779                 setup_protocol(f_out, f_in);
780                 if (!am_sender) {
781                         /* Since we failed in our option parsing, we may not
782                          * have finished parsing that the client sent us a
783                          * --files-from option, so look for it manually.
784                          * Without this, the socket would be in the wrong
785                          * state for the upcoming error message. */
786                         if (!files_from) {
787                                 int i;
788                                 for (i = 0; i < argc; i++) {
789                                         if (strncmp(argv[i], "--files-from", 12) == 0) {
790                                                 files_from = "";
791                                                 break;
792                                         }
793                                 }
794                         }
795                         if (files_from)
796                                 write_byte(f_out, 0);
797                 }
798                 io_start_multiplex_out();
799         }
800
801         if (!ret || err_msg) {
802                 if (err_msg)
803                         rwrite(FERROR, err_msg, strlen(err_msg), 0);
804                 else
805                         option_error();
806                 msleep(400);
807                 exit_cleanup(RERR_UNSUPPORTED);
808         }
809
810         if (!iconv_opt) {
811                 if (ic_send != (iconv_t)-1) {
812                         iconv_close(ic_send);
813                         ic_send = (iconv_t)-1;
814                 }
815                 if (ic_recv != (iconv_t)-1) {
816                         iconv_close(ic_recv);
817                         ic_recv = (iconv_t)-1;
818                 }
819         }
820
821         if (!numeric_ids
822          && (use_chroot ? lp_numeric_ids(i) != False : lp_numeric_ids(i) == True))
823                 numeric_ids = -1; /* Set --numeric-ids w/o breaking protocol. */
824
825         if (lp_timeout(i) && lp_timeout(i) > io_timeout)
826                 set_io_timeout(lp_timeout(i));
827
828         /* If we have some incoming/outgoing chmod changes, append them to
829          * any user-specified changes (making our changes have priority).
830          * We also get a pointer to just our changes so that a receiver
831          * process can use them separately if --perms wasn't specified. */
832         if (am_sender)
833                 p = lp_outgoing_chmod(i);
834         else
835                 p = lp_incoming_chmod(i);
836         if (*p && !(daemon_chmod_modes = parse_chmod(p, &chmod_modes))) {
837                 rprintf(FLOG, "Invalid \"%sing chmod\" directive: %s\n",
838                         am_sender ? "outgo" : "incom", p);
839         }
840
841         start_server(f_in, f_out, argc, argv);
842
843         return 0;
844 }
845
846 /* send a list of available modules to the client. Don't list those
847    with "list = False". */
848 static void send_listing(int fd)
849 {
850         int n = lp_numservices();
851         int i;
852
853         for (i = 0; i < n; i++) {
854                 if (lp_list(i))
855                         io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
856         }
857
858         if (protocol_version >= 25)
859                 io_printf(fd,"@RSYNCD: EXIT\n");
860 }
861
862 /* this is called when a connection is established to a client
863    and we want to start talking. The setup of the system is done from
864    here */
865 int start_daemon(int f_in, int f_out)
866 {
867         char line[1024];
868         char *addr, *host;
869         int i;
870
871         io_set_sock_fds(f_in, f_out);
872
873         /* We must load the config file before calling any function that
874          * might cause log-file output to occur.  This ensures that the
875          * "log file" param gets honored for the 2 non-forked use-cases
876          * (when rsync is run by init and run by a remote shell). */
877         if (!lp_load(config_file, 0))
878                 exit_cleanup(RERR_SYNTAX);
879
880         addr = client_addr(f_in);
881         host = client_name(f_in);
882         rprintf(FLOG, "connect from %s (%s)\n", host, addr);
883
884         if (!am_server) {
885                 set_socket_options(f_in, "SO_KEEPALIVE");
886                 if (sockopts)
887                         set_socket_options(f_in, sockopts);
888                 else
889                         set_socket_options(f_in, lp_socket_options());
890                 set_nonblocking(f_in);
891         }
892
893         if (exchange_protocols(f_in, f_out, line, sizeof line, 0) < 0)
894                 return -1;
895
896         line[0] = 0;
897         if (!read_line_old(f_in, line, sizeof line))
898                 return -1;
899
900         if (!*line || strcmp(line, "#list") == 0) {
901                 rprintf(FLOG, "module-list request from %s (%s)\n",
902                         host, addr);
903                 send_listing(f_out);
904                 return -1;
905         }
906
907         if (*line == '#') {
908                 /* it's some sort of command that I don't understand */
909                 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
910                 return -1;
911         }
912
913         if ((i = lp_number(line)) < 0) {
914                 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
915                         line, host, addr);
916                 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
917                 return -1;
918         }
919
920 #ifdef HAVE_SIGACTION
921         sigact.sa_flags = SA_NOCLDSTOP;
922 #endif
923         SIGACTION(SIGCHLD, remember_children);
924
925         return rsync_module(f_in, f_out, i, addr, host);
926 }
927
928 static void create_pid_file(void)
929 {
930         char *pid_file = lp_pid_file();
931         char pidbuf[16];
932         pid_t pid = getpid();
933         int fd;
934
935         if (!pid_file || !*pid_file)
936                 return;
937
938         cleanup_set_pid(pid);
939         if ((fd = do_open(pid_file, O_WRONLY|O_CREAT|O_EXCL, 0666 & ~orig_umask)) == -1) {
940                 cleanup_set_pid(0);
941                 fprintf(stderr, "failed to create pid file %s: %s\n", pid_file, strerror(errno));
942                 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
943                 exit_cleanup(RERR_FILEIO);
944         }
945         snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
946         write(fd, pidbuf, strlen(pidbuf));
947         close(fd);
948 }
949
950 /* Become a daemon, discarding the controlling terminal. */
951 static void become_daemon(void)
952 {
953         int i;
954         pid_t pid = fork();
955
956         if (pid) {
957                 if (pid < 0) {
958                         fprintf(stderr, "failed to fork: %s\n", strerror(errno));
959                         exit_cleanup(RERR_FILEIO);
960                 }
961                 _exit(0);
962         }
963
964         create_pid_file();
965
966         /* detach from the terminal */
967 #ifdef HAVE_SETSID
968         setsid();
969 #elif defined TIOCNOTTY
970         i = open("/dev/tty", O_RDWR);
971         if (i >= 0) {
972                 ioctl(i, (int)TIOCNOTTY, (char *)0);
973                 close(i);
974         }
975 #endif
976         /* make sure that stdin, stdout an stderr don't stuff things
977          * up (library functions, for example) */
978         for (i = 0; i < 3; i++) {
979                 close(i);
980                 open("/dev/null", O_RDWR);
981         }
982 }
983
984 int daemon_main(void)
985 {
986         if (!config_file) {
987                 if (am_server && am_root <= 0)
988                         config_file = RSYNCD_USERCONF;
989                 else
990                         config_file = RSYNCD_SYSCONF;
991         }
992
993         if (is_a_socket(STDIN_FILENO)) {
994                 int i;
995
996                 /* we are running via inetd - close off stdout and
997                  * stderr so that library functions (and getopt) don't
998                  * try to use them. Redirect them to /dev/null */
999                 for (i = 1; i < 3; i++) {
1000                         close(i);
1001                         open("/dev/null", O_RDWR);
1002                 }
1003
1004                 return start_daemon(STDIN_FILENO, STDIN_FILENO);
1005         }
1006
1007         if (!lp_load(config_file, 1)) {
1008                 fprintf(stderr, "Failed to parse config file: %s\n", config_file);
1009                 exit_cleanup(RERR_SYNTAX);
1010         }
1011
1012         if (no_detach)
1013                 create_pid_file();
1014         else
1015                 become_daemon();
1016
1017         if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
1018                 rsync_port = RSYNC_PORT;
1019         if (bind_address == NULL && *lp_bind_address())
1020                 bind_address = lp_bind_address();
1021
1022         log_init(0);
1023
1024         rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
1025                 RSYNC_VERSION, rsync_port);
1026         /* TODO: If listening on a particular address, then show that
1027          * address too.  In fact, why not just do inet_ntop on the
1028          * local address??? */
1029
1030         start_accept_loop(rsync_port, start_daemon);
1031         return -1;
1032 }