A few minor changes, including better push_dir()/pop_dir() verbosity.
[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         module_dir = lp_path(i);
484         if (use_chroot) {
485                 if ((p = strstr(module_dir, "/./")) != NULL) {
486                         *p = '\0';
487                         p += 2;
488                 } else if ((p = strdup("/")) == NULL)
489                         out_of_memory("rsync_module");
490         }
491
492         /* We do a push_dir() that doesn't actually call chdir()
493          * just to make a relative path absolute. */
494         strlcpy(line, curr_dir, sizeof line);
495         if (!push_dir(module_dir, 1))
496                 goto chdir_failed;
497         if (strcmp(curr_dir, module_dir) != 0
498          && (module_dir = strdup(curr_dir)) == NULL)
499                 out_of_memory("rsync_module");
500         push_dir(line, 1); /* Restore curr_dir. */
501
502         if (use_chroot) {
503                 chroot_path = module_dir;
504                 module_dir = p; /* p is "/" or our inside-chroot path */
505         }
506         module_dirlen = clean_fname(module_dir, CFN_COLLAPSE_DOT_DOT_DIRS | CFN_DROP_TRAILING_DOT_DIR);
507
508         if (module_dirlen == 1) {
509                 module_dirlen = 0;
510                 set_filter_dir("/", 1);
511         } else
512                 set_filter_dir(module_dir, module_dirlen);
513
514         p = lp_filter(i);
515         parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
516                    XFLG_ABS_IF_SLASH);
517
518         p = lp_include_from(i);
519         parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
520             XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
521
522         p = lp_include(i);
523         parse_rule(&server_filter_list, p,
524                    MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
525                    XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
526
527         p = lp_exclude_from(i);
528         parse_filter_file(&server_filter_list, p, 0,
529             XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
530
531         p = lp_exclude(i);
532         parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
533                    XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
534
535         log_init(1);
536
537 #ifdef HAVE_PUTENV
538         if (*lp_prexfer_exec(i) || *lp_postxfer_exec(i)) {
539                 char *modname, *modpath, *hostaddr, *hostname, *username;
540                 int status;
541
542                 if (!use_chroot)
543                         p = module_dir;
544                 else if (module_dirlen) {
545                         pathjoin(line, sizeof line, chroot_path, module_dir+1);
546                         p = line;
547                 } else
548                         p = chroot_path;
549
550                 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
551                  || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", p) < 0
552                  || asprintf(&hostaddr, "RSYNC_HOST_ADDR=%s", addr) < 0
553                  || asprintf(&hostname, "RSYNC_HOST_NAME=%s", host) < 0
554                  || asprintf(&username, "RSYNC_USER_NAME=%s", auth_user) < 0)
555                         out_of_memory("rsync_module");
556                 putenv(modname);
557                 putenv(modpath);
558                 putenv(hostaddr);
559                 putenv(hostname);
560                 putenv(username);
561                 umask(orig_umask);
562                 /* For post-xfer exec, fork a new process to run the rsync
563                  * daemon while this process waits for the exit status and
564                  * runs the indicated command at that point. */
565                 if (*lp_postxfer_exec(i)) {
566                         pid_t pid = fork();
567                         if (pid < 0) {
568                                 rsyserr(FLOG, errno, "fork failed");
569                                 io_printf(f_out, "@ERROR: fork failed\n");
570                                 return -1;
571                         }
572                         if (pid) {
573                                 if (asprintf(&p, "RSYNC_PID=%ld", (long)pid) > 0)
574                                         putenv(p);
575                                 if (wait_process(pid, &status, 0) < 0)
576                                         status = -1;
577                                 if (asprintf(&p, "RSYNC_RAW_STATUS=%d", status) > 0)
578                                         putenv(p);
579                                 if (WIFEXITED(status))
580                                         status = WEXITSTATUS(status);
581                                 else
582                                         status = -1;
583                                 if (asprintf(&p, "RSYNC_EXIT_STATUS=%d", status) > 0)
584                                         putenv(p);
585                                 system(lp_postxfer_exec(i));
586                                 _exit(status);
587                         }
588                 }
589                 /* For pre-xfer exec, fork a child process to run the indicated
590                  * command, though it first waits for the parent process to
591                  * send us the user's request via a pipe. */
592                 if (*lp_prexfer_exec(i)) {
593                         int fds[2];
594                         if (asprintf(&p, "RSYNC_PID=%ld", (long)getpid()) > 0)
595                                 putenv(p);
596                         if (pipe(fds) < 0 || (pre_exec_pid = fork()) < 0) {
597                                 rsyserr(FLOG, errno, "pre-xfer exec preparation failed");
598                                 io_printf(f_out, "@ERROR: pre-xfer exec preparation failed\n");
599                                 return -1;
600                         }
601                         if (pre_exec_pid == 0) {
602                                 char buf[BIGPATHBUFLEN];
603                                 int j, len;
604                                 close(fds[1]);
605                                 set_blocking(fds[0]);
606                                 len = read_arg_from_pipe(fds[0], buf, BIGPATHBUFLEN);
607                                 if (len <= 0)
608                                         _exit(1);
609                                 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) > 0)
610                                         putenv(p);
611                                 for (j = 0; ; j++) {
612                                         len = read_arg_from_pipe(fds[0], buf,
613                                                                  BIGPATHBUFLEN);
614                                         if (len <= 0) {
615                                                 if (!len)
616                                                         break;
617                                                 _exit(1);
618                                         }
619                                         if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) > 0)
620                                                 putenv(p);
621                                 }
622                                 close(fds[0]);
623                                 close(STDIN_FILENO);
624                                 close(STDOUT_FILENO);
625                                 status = system(lp_prexfer_exec(i));
626                                 if (!WIFEXITED(status))
627                                         _exit(1);
628                                 _exit(WEXITSTATUS(status));
629                         }
630                         close(fds[0]);
631                         set_blocking(fds[1]);
632                         pre_exec_fd = fds[1];
633                 }
634                 umask(0);
635         }
636 #endif
637
638         if (use_chroot) {
639                 /*
640                  * XXX: The 'use chroot' flag is a fairly reliable
641                  * source of confusion, because it fails under two
642                  * important circumstances: running as non-root,
643                  * running on Win32 (or possibly others).  On the
644                  * other hand, if you are running as root, then it
645                  * might be better to always use chroot.
646                  *
647                  * So, perhaps if we can't chroot we should just issue
648                  * a warning, unless a "require chroot" flag is set,
649                  * in which case we fail.
650                  */
651                 if (chroot(chroot_path)) {
652                         rsyserr(FLOG, errno, "chroot %s failed", chroot_path);
653                         io_printf(f_out, "@ERROR: chroot failed\n");
654                         return -1;
655                 }
656                 if (!push_dir(module_dir, 0))
657                         goto chdir_failed;
658                 if (module_dirlen)
659                         sanitize_paths = 1;
660         } else {
661                 if (!push_dir(module_dir, 0)) {
662                   chdir_failed:
663                         rsyserr(FLOG, errno, "chdir %s failed\n", module_dir);
664                         io_printf(f_out, "@ERROR: chdir failed\n");
665                         return -1;
666                 }
667                 sanitize_paths = 1;
668         }
669
670         if ((munge_symlinks = lp_munge_symlinks(i)) < 0)
671                 munge_symlinks = !use_chroot || module_dirlen;
672         if (munge_symlinks) {
673                 STRUCT_STAT st;
674                 if (stat(SYMLINK_PREFIX, &st) == 0 && S_ISDIR(st.st_mode)) {
675                         rprintf(FLOG, "Symlink munging is unsupported when a %s directory exists.\n",
676                                 SYMLINK_PREFIX);
677                         io_printf(f_out, "@ERROR: daemon security issue -- contact admin\n", name);
678                         exit_cleanup(RERR_UNSUPPORTED);
679                 }
680         }
681
682         if (am_root) {
683                 /* XXXX: You could argue that if the daemon is started
684                  * by a non-root user and they explicitly specify a
685                  * gid, then we should try to change to that gid --
686                  * this could be possible if it's already in their
687                  * supplementary groups. */
688
689                 /* TODO: Perhaps we need to document that if rsyncd is
690                  * started by somebody other than root it will inherit
691                  * all their supplementary groups. */
692
693                 if (setgid(gid)) {
694                         rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
695                         io_printf(f_out, "@ERROR: setgid failed\n");
696                         return -1;
697                 }
698 #ifdef HAVE_SETGROUPS
699                 /* Get rid of any supplementary groups this process
700                  * might have inheristed. */
701                 if (setgroups(1, &gid)) {
702                         rsyserr(FLOG, errno, "setgroups failed");
703                         io_printf(f_out, "@ERROR: setgroups failed\n");
704                         return -1;
705                 }
706 #endif
707
708                 if (setuid(uid)) {
709                         rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
710                         io_printf(f_out, "@ERROR: setuid failed\n");
711                         return -1;
712                 }
713
714                 am_root = (MY_UID() == 0);
715         }
716
717         if (lp_temp_dir(i) && *lp_temp_dir(i)) {
718                 tmpdir = lp_temp_dir(i);
719                 if (strlen(tmpdir) >= MAXPATHLEN - 10) {
720                         rprintf(FLOG,
721                                 "the 'temp dir' value for %s is WAY too long -- ignoring.\n",
722                                 name);
723                         tmpdir = NULL;
724                 }
725         }
726
727         io_printf(f_out, "@RSYNCD: OK\n");
728
729         opt_cnt = read_args(f_in, name, line, sizeof line, rl_nulls, &argv, &argc, &request);
730
731         if (pre_exec_pid) {
732                 err_msg = finish_pre_exec(pre_exec_pid, pre_exec_fd, request,
733                                           opt_cnt, argv);
734         }
735
736         verbose = 0; /* future verbosity is controlled by client options */
737         ret = parse_arguments(&argc, (const char ***) &argv, 0);
738         am_server = 1; /* Don't let someone try to be tricky. */
739         if (lp_ignore_errors(module_id))
740                 ignore_errors = 1;
741         if (write_batch < 0)
742                 dry_run = 1;
743
744         if (lp_fake_super(i))
745                 am_root = -1;
746         else if (am_root < 0) /* Treat --fake-super from client as --super. */
747                 am_root = 2;
748
749         if (filesfrom_fd == 0)
750                 filesfrom_fd = f_in;
751
752         if (request) {
753                 if (*auth_user) {
754                         rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
755                                 am_sender ? "on" : "to",
756                                 request, auth_user, host, addr);
757                 } else {
758                         rprintf(FLOG, "rsync %s %s from %s (%s)\n",
759                                 am_sender ? "on" : "to",
760                                 request, host, addr);
761                 }
762                 free(request);
763         }
764
765 #ifndef DEBUG
766         /* don't allow the logs to be flooded too fast */
767         if (verbose > lp_max_verbosity(i))
768                 verbose = lp_max_verbosity(i);
769 #endif
770
771         if (protocol_version < 23
772             && (protocol_version == 22 || am_sender))
773                 io_start_multiplex_out();
774         else if (!ret || err_msg) {
775                 /* We have to get I/O multiplexing started so that we can
776                  * get the error back to the client.  This means getting
777                  * the protocol setup finished first in later versions. */
778                 setup_protocol(f_out, f_in);
779                 if (!am_sender) {
780                         /* Since we failed in our option parsing, we may not
781                          * have finished parsing that the client sent us a
782                          * --files-from option, so look for it manually.
783                          * Without this, the socket would be in the wrong
784                          * state for the upcoming error message. */
785                         if (!files_from) {
786                                 int i;
787                                 for (i = 0; i < argc; i++) {
788                                         if (strncmp(argv[i], "--files-from", 12) == 0) {
789                                                 files_from = "";
790                                                 break;
791                                         }
792                                 }
793                         }
794                         if (files_from)
795                                 write_byte(f_out, 0);
796                 }
797                 io_start_multiplex_out();
798         }
799
800         if (!ret || err_msg) {
801                 if (err_msg)
802                         rwrite(FERROR, err_msg, strlen(err_msg), 0);
803                 else
804                         option_error();
805                 msleep(400);
806                 exit_cleanup(RERR_UNSUPPORTED);
807         }
808
809         if (!iconv_opt) {
810                 if (ic_send != (iconv_t)-1) {
811                         iconv_close(ic_send);
812                         ic_send = (iconv_t)-1;
813                 }
814                 if (ic_recv != (iconv_t)-1) {
815                         iconv_close(ic_recv);
816                         ic_recv = (iconv_t)-1;
817                 }
818         }
819
820         if (!numeric_ids
821          && (use_chroot ? lp_numeric_ids(i) != False : lp_numeric_ids(i) == True))
822                 numeric_ids = -1; /* Set --numeric-ids w/o breaking protocol. */
823
824         if (lp_timeout(i) && lp_timeout(i) > io_timeout)
825                 set_io_timeout(lp_timeout(i));
826
827         /* If we have some incoming/outgoing chmod changes, append them to
828          * any user-specified changes (making our changes have priority).
829          * We also get a pointer to just our changes so that a receiver
830          * process can use them separately if --perms wasn't specified. */
831         if (am_sender)
832                 p = lp_outgoing_chmod(i);
833         else
834                 p = lp_incoming_chmod(i);
835         if (*p && !(daemon_chmod_modes = parse_chmod(p, &chmod_modes))) {
836                 rprintf(FLOG, "Invalid \"%sing chmod\" directive: %s\n",
837                         am_sender ? "outgo" : "incom", p);
838         }
839
840         start_server(f_in, f_out, argc, argv);
841
842         return 0;
843 }
844
845 /* send a list of available modules to the client. Don't list those
846    with "list = False". */
847 static void send_listing(int fd)
848 {
849         int n = lp_numservices();
850         int i;
851
852         for (i = 0; i < n; i++) {
853                 if (lp_list(i))
854                         io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
855         }
856
857         if (protocol_version >= 25)
858                 io_printf(fd,"@RSYNCD: EXIT\n");
859 }
860
861 /* this is called when a connection is established to a client
862    and we want to start talking. The setup of the system is done from
863    here */
864 int start_daemon(int f_in, int f_out)
865 {
866         char line[1024];
867         char *addr, *host;
868         int i;
869
870         io_set_sock_fds(f_in, f_out);
871
872         /* We must load the config file before calling any function that
873          * might cause log-file output to occur.  This ensures that the
874          * "log file" param gets honored for the 2 non-forked use-cases
875          * (when rsync is run by init and run by a remote shell). */
876         if (!lp_load(config_file, 0))
877                 exit_cleanup(RERR_SYNTAX);
878
879         addr = client_addr(f_in);
880         host = client_name(f_in);
881         rprintf(FLOG, "connect from %s (%s)\n", host, addr);
882
883         if (!am_server) {
884                 set_socket_options(f_in, "SO_KEEPALIVE");
885                 if (sockopts)
886                         set_socket_options(f_in, sockopts);
887                 else
888                         set_socket_options(f_in, lp_socket_options());
889                 set_nonblocking(f_in);
890         }
891
892         if (exchange_protocols(f_in, f_out, line, sizeof line, 0) < 0)
893                 return -1;
894
895         line[0] = 0;
896         if (!read_line_old(f_in, line, sizeof line))
897                 return -1;
898
899         if (!*line || strcmp(line, "#list") == 0) {
900                 rprintf(FLOG, "module-list request from %s (%s)\n",
901                         host, addr);
902                 send_listing(f_out);
903                 return -1;
904         }
905
906         if (*line == '#') {
907                 /* it's some sort of command that I don't understand */
908                 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
909                 return -1;
910         }
911
912         if ((i = lp_number(line)) < 0) {
913                 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
914                         line, host, addr);
915                 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
916                 return -1;
917         }
918
919 #ifdef HAVE_SIGACTION
920         sigact.sa_flags = SA_NOCLDSTOP;
921 #endif
922         SIGACTION(SIGCHLD, remember_children);
923
924         return rsync_module(f_in, f_out, i, addr, host);
925 }
926
927 static void create_pid_file(void)
928 {
929         char *pid_file = lp_pid_file();
930         char pidbuf[16];
931         pid_t pid = getpid();
932         int fd;
933
934         if (!pid_file || !*pid_file)
935                 return;
936
937         cleanup_set_pid(pid);
938         if ((fd = do_open(pid_file, O_WRONLY|O_CREAT|O_EXCL, 0666 & ~orig_umask)) == -1) {
939                 cleanup_set_pid(0);
940                 fprintf(stderr, "failed to create pid file %s: %s\n", pid_file, strerror(errno));
941                 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
942                 exit_cleanup(RERR_FILEIO);
943         }
944         snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
945         write(fd, pidbuf, strlen(pidbuf));
946         close(fd);
947 }
948
949 /* Become a daemon, discarding the controlling terminal. */
950 static void become_daemon(void)
951 {
952         int i;
953         pid_t pid = fork();
954
955         if (pid) {
956                 if (pid < 0) {
957                         fprintf(stderr, "failed to fork: %s\n", strerror(errno));
958                         exit_cleanup(RERR_FILEIO);
959                 }
960                 _exit(0);
961         }
962
963         create_pid_file();
964
965         /* detach from the terminal */
966 #ifdef HAVE_SETSID
967         setsid();
968 #elif defined TIOCNOTTY
969         i = open("/dev/tty", O_RDWR);
970         if (i >= 0) {
971                 ioctl(i, (int)TIOCNOTTY, (char *)0);
972                 close(i);
973         }
974 #endif
975         /* make sure that stdin, stdout an stderr don't stuff things
976          * up (library functions, for example) */
977         for (i = 0; i < 3; i++) {
978                 close(i);
979                 open("/dev/null", O_RDWR);
980         }
981 }
982
983 int daemon_main(void)
984 {
985         if (!config_file) {
986                 if (am_server && am_root <= 0)
987                         config_file = RSYNCD_USERCONF;
988                 else
989                         config_file = RSYNCD_SYSCONF;
990         }
991
992         if (is_a_socket(STDIN_FILENO)) {
993                 int i;
994
995                 /* we are running via inetd - close off stdout and
996                  * stderr so that library functions (and getopt) don't
997                  * try to use them. Redirect them to /dev/null */
998                 for (i = 1; i < 3; i++) {
999                         close(i);
1000                         open("/dev/null", O_RDWR);
1001                 }
1002
1003                 return start_daemon(STDIN_FILENO, STDIN_FILENO);
1004         }
1005
1006         if (!lp_load(config_file, 1)) {
1007                 fprintf(stderr, "Failed to parse config file: %s\n", config_file);
1008                 exit_cleanup(RERR_SYNTAX);
1009         }
1010
1011         if (no_detach)
1012                 create_pid_file();
1013         else
1014                 become_daemon();
1015
1016         if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
1017                 rsync_port = RSYNC_PORT;
1018         if (bind_address == NULL && *lp_bind_address())
1019                 bind_address = lp_bind_address();
1020
1021         log_init(0);
1022
1023         rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
1024                 RSYNC_VERSION, rsync_port);
1025         /* TODO: If listening on a particular address, then show that
1026          * address too.  In fact, why not just do inet_ntop on the
1027          * local address??? */
1028
1029         start_accept_loop(rsync_port, start_daemon);
1030         return -1;
1031 }