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