Added a way to specify where the chroot should occur in the module's
[rsync/rsync.git] / clientserver.c
CommitLineData
0f78b815
WD
1/*
2 * The socket based protocol for setting up a connection with rsyncd.
4a7144ee 3 *
0f78b815
WD
4 * Copyright (C) 1998-2001 Andrew Tridgell <tridge@samba.org>
5 * Copyright (C) 2001-2002 Martin Pool <mbp@samba.org>
ba2133d6 6 * Copyright (C) 2002-2007 Wayne Davison
4a7144ee 7 *
a254fd97 8 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
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.
4a7144ee 12 *
a254fd97
MP
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.
4a7144ee 17 *
e7c67065 18 * You should have received a copy of the GNU General Public License along
4fd842f9 19 * with this program; if not, visit the http://fsf.org website.
a254fd97 20 */
3591c066 21
3591c066 22#include "rsync.h"
1b42f628 23#include "ifuncs.h"
3591c066 24
c0814b81 25extern int verbose;
5223b786 26extern int dry_run;
9ce7fc38 27extern int output_motd;
c0814b81 28extern int list_only;
6e195fe9
WD
29extern int am_sender;
30extern int am_server;
31extern int am_daemon;
32extern int am_root;
3591c066 33extern int rsync_port;
3162ea6f 34extern int ignore_errors;
8dad7fc6 35extern int kluge_around_eof;
6e195fe9 36extern int daemon_over_rsh;
b35d0d8e 37extern int sanitize_paths;
0b52f94d 38extern int numeric_ids;
7c2a9e76 39extern int filesfrom_fd;
daa598df
WD
40extern int remote_protocol;
41extern int protocol_version;
6e195fe9 42extern int io_timeout;
6e195fe9 43extern int no_detach;
5223b786 44extern int write_batch;
6e195fe9 45extern int default_af_hint;
ecc7623e
WD
46extern int logfile_format_has_i;
47extern int logfile_format_has_o_or_i;
c5b7aa15 48extern mode_t orig_umask;
6e195fe9 49extern char *bind_address;
34937987 50extern char *sockopts;
6e195fe9 51extern char *config_file;
ecc7623e 52extern char *logfile_format;
bf4679e8 53extern char *files_from;
fed1f3f4 54extern char *tmpdir;
730df9d2
WD
55extern struct chmod_mode_struct *chmod_modes;
56extern struct filter_list_struct server_filter_list;
33cbd577 57extern char curr_dir[];
0b52f94d
WD
58#ifdef ICONV_OPTION
59extern char *iconv_opt;
60extern iconv_t ic_send, ic_recv;
61#endif
6e195fe9
WD
62
63char *auth_user;
18638730 64int read_only = 0;
211bc43b 65int module_id = -1;
9585b276 66int munge_symlinks = 0;
8840ec0f 67struct chmod_mode_struct *daemon_chmod_modes;
3591c066 68
33cbd577 69/* module_dirlen is the length of the module_dir string when in daemon
2fe1feea
WD
70 * mode and module_dir is not "/"; otherwise 0. (Note that a chroot-
71 * enabled module can have a non-"/" module_dir these days.) */
33cbd577 72char *module_dir = NULL;
e7bf7c01
WD
73unsigned int module_dirlen = 0;
74
7909e65f
WD
75static int rl_nulls = 0;
76
d749eb68
WD
77#ifdef HAVE_SIGACTION
78static struct sigaction sigact;
79#endif
80
be2961da 81/**
bc363ea9 82 * Run a client connected to an rsyncd. The alternative to this
be2961da
MP
83 * function for remote-shell connections is do_cmd().
84 *
fdf88d75
MP
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.
be2961da
MP
91 *
92 * @return -1 for error in startup, or the result of client_run().
d0829892 93 * Either way, it eventually gets passed to exit_cleanup().
be2961da 94 **/
7909e65f
WD
95int start_socket_client(char *host, int remote_argc, char *remote_argv[],
96 int argc, char *argv[])
3591c066 97{
68f40ebb 98 int fd, ret;
2e94e70e 99 char *p, *user = NULL;
4a7144ee 100
1732b6c0
WD
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. */
7909e65f 104 if (**remote_argv == '/') {
1732b6c0
WD
105 rprintf(FERROR,
106 "ERROR: The remote path must start with a module name not a /\n");
f98df1d9
AT
107 return -1;
108 }
109
b31c92ed 110 if ((p = strrchr(host, '@')) != NULL) {
bcb7e502
AT
111 user = host;
112 host = p+1;
1732b6c0 113 *p = '\0';
bcb7e502
AT
114 }
115
837cbad9
WD
116 fd = open_socket_out_wrapped(host, rsync_port, bind_address,
117 default_af_hint);
df5cd107 118 if (fd == -1)
65417579 119 exit_cleanup(RERR_SOCKETIO);
68f40ebb 120
34937987
WD
121 set_socket_options(fd, sockopts);
122
7909e65f 123 ret = start_inband_exchange(fd, fd, user, remote_argc, remote_argv);
68f40ebb 124
180443af 125 return ret ? ret : client_run(fd, fd, -1, argc, argv);
68f40ebb
WD
126}
127
7909e65f
WD
128static 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
202int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char *argv[])
68f40ebb 203{
e844a4a8 204 int i, modlen;
7909e65f 205 char line[BIGPATHBUFLEN];
68f40ebb
WD
206 char *sargs[MAX_ARGS];
207 int sargc = 0;
e844a4a8 208 char *p, *modname;
68f40ebb 209
e844a4a8 210 assert(argc > 0);
68f40ebb 211
e844a4a8 212 if (**argv == '/') {
1732b6c0
WD
213 rprintf(FERROR,
214 "ERROR: The remote path must start with a module name\n");
68f40ebb
WD
215 return -1;
216 }
217
e844a4a8
WD
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
2e94e70e
WD
229 if (!user)
230 user = getenv("USER");
231 if (!user)
232 user = getenv("LOGNAME");
68f40ebb 233
7909e65f 234 if (exchange_protocols(f_in, f_out, line, sizeof line, 1) < 0)
3591c066 235 return -1;
3591c066 236
9bcb2595
WD
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
7909e65f
WD
243 if (sargc >= MAX_ARGS - 2)
244 goto arg_overflow;
245
9bcb2595
WD
246 sargs[sargc++] = ".";
247
7909e65f
WD
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 }
d348d5fd 254 if (strncmp(*argv, modname, modlen) == 0
e844a4a8
WD
255 && argv[0][modlen] == '\0')
256 sargs[sargc++] = modname; /* we send "modname/" */
257 else
258 sargs[sargc++] = *argv;
259 argv++;
7909e65f
WD
260 argc--;
261 }
9bcb2595
WD
262
263 sargs[sargc] = NULL;
264
265 if (verbose > 1)
0b515981 266 print_child_argv("sending daemon args:", sargs);
9bcb2595 267
e844a4a8 268 io_printf(f_out, "%.*s\n", modlen, modname);
2c91d3d3 269
063393d6
MP
270 /* Old servers may just drop the connection here,
271 rather than sending a proper EXIT command. Yuck. */
8dad7fc6 272 kluge_around_eof = list_only && protocol_version < 25 ? 1 : 0;
7a55d06e 273
063393d6 274 while (1) {
7909e65f 275 if (!read_line_old(f_in, line, sizeof line)) {
be2961da 276 rprintf(FERROR, "rsync: didn't get server startup line\n");
3591c066
AT
277 return -1;
278 }
31593dd6 279
31593dd6 280 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
68f40ebb 281 auth_client(f_out, user, line+18);
31593dd6
AT
282 continue;
283 }
31593dd6 284
2e94e70e
WD
285 if (strcmp(line,"@RSYNCD: OK") == 0)
286 break;
8f04bb36 287
cae95647
MP
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 }
8f04bb36 295
136ac7ec 296 if (strncmp(line, "@ERROR", 6) == 0) {
1732b6c0 297 rprintf(FERROR, "%s\n", line);
136ac7ec
MP
298 /* This is always fatal; the server will now
299 * close the socket. */
180443af 300 return -1;
136ac7ec 301 }
180443af 302
9ce7fc38
WD
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);
3591c066 307 }
8dad7fc6 308 kluge_around_eof = 0;
3591c066 309
7909e65f
WD
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");
3591c066 320 }
3591c066 321
daa598df 322 if (protocol_version < 23) {
3f55bd5d 323 if (protocol_version == 22 || !am_sender)
da3478b2 324 io_start_multiplex_in();
09b7f5db 325 }
8d9dc9f9 326
e844a4a8
WD
327 free(modname);
328
68f40ebb 329 return 0;
3591c066
AT
330}
331
141c6265
WD
332static char *finish_pre_exec(pid_t pid, int fd, char *request,
333 int argc, char *argv[])
c95ca2a2 334{
141c6265 335 int j, status = -1;
3591c066 336
7909e65f
WD
337 if (!request)
338 request = "(NONE)";
141c6265 339
7909e65f
WD
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);
141c6265
WD
343 write_byte(fd, 0);
344
c95ca2a2
WD
345 close(fd);
346
347 if (wait_process(pid, &status, 0) < 0
348 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
349 char *e;
d0236360
WD
350 if (asprintf(&e, "pre-xfer exec returned failure (%d)%s%s\n",
351 status, status < 0 ? ": " : "",
352 status < 0 ? strerror(errno) : "") < 0)
c95ca2a2
WD
353 out_of_memory("finish_pre_exec");
354 return e;
355 }
356 return NULL;
357}
3591c066 358
141c6265
WD
359static int read_arg_from_pipe(int fd, char *buf, int limit)
360{
361 char *bp = buf, *eob = buf + limit - 1;
362
363 while (1) {
62a6b8df
WD
364 int got = read(fd, bp, 1);
365 if (got != 1) {
366 if (got < 0 && errno == EINTR)
367 continue;
141c6265 368 return -1;
62a6b8df 369 }
141c6265
WD
370 if (*bp == '\0')
371 break;
372 if (bp < eob)
373 bp++;
374 }
375 *bp = '\0';
376
377 return bp - buf;
378}
379
439a198d 380static int rsync_module(int f_in, int f_out, int i, char *addr, char *host)
3591c066 381{
7909e65f 382 int argc, opt_cnt;
2fe1feea 383 char **argv, *chroot_path = NULL;
20accf4d 384 char line[BIGPATHBUFLEN];
2af27ad9 385 uid_t uid = (uid_t)-2; /* canonically "nobody" */
1a016bfd 386 gid_t gid = (gid_t)-2;
c95ca2a2 387 char *p, *err_msg = NULL;
874895d5 388 char *name = lp_name(i);
8638dd48 389 int use_chroot = lp_use_chroot(i);
c95ca2a2
WD
390 int ret, pre_exec_fd = -1;
391 pid_t pre_exec_pid = 0;
2e94e70e 392 char *request = NULL;
56c473b7 393
0b52f94d
WD
394#ifdef ICONV_CONST
395 iconv_opt = lp_charset(i);
396 if (*iconv_opt)
397 setup_iconv();
398 iconv_opt = NULL;
399#endif
400
56c473b7 401 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
1732b6c0 402 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
31ec50d7 403 name, host, addr);
c0422cea
WD
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 }
56c473b7
AT
411 return -1;
412 }
3591c066 413
68f40ebb 414 if (am_daemon && am_server) {
9e5a5ddb 415 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
68f40ebb
WD
416 name, host, addr);
417 }
418
5e71c444 419 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
8d72ef6e 420 if (errno) {
1732b6c0 421 rsyserr(FLOG, errno, "failed to open lock file %s",
45c49b52 422 lp_lock_file(i));
4875d6b6 423 io_printf(f_out, "@ERROR: failed to open lock file\n");
8d72ef6e 424 } else {
1732b6c0 425 rprintf(FLOG, "max connections (%d) reached\n",
5e71c444 426 lp_max_connections(i));
4ccfd96c 427 io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
837cbad9 428 lp_max_connections(i));
8d72ef6e 429 }
0c515f17
AT
430 return -1;
431 }
432
45c5b903 433 auth_user = auth_server(f_in, f_out, i, host, addr, "@RSYNCD: AUTHREQD ");
d0d56395 434
97cb8dc2 435 if (!auth_user) {
68f40ebb 436 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
4a7144ee 437 return -1;
d0d56395
AT
438 }
439
3591c066
AT
440 module_id = i;
441
211bc43b 442 if (lp_read_only(i))
18638730
WD
443 read_only = 1;
444
10ae3406 445 if (lp_transfer_logging(i) && !logfile_format)
ecc7623e 446 logfile_format = lp_log_format(i);
10ae3406
WD
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;
c0814b81 451
6fe05820 452 am_root = (MY_UID() == 0);
8ef4ffd6 453
716baed7
DD
454 if (am_root) {
455 p = lp_uid(i);
456 if (!name_to_uid(p, &uid)) {
2dc7b8bd 457 if (!isDigit(p)) {
1732b6c0 458 rprintf(FLOG, "Invalid uid %s\n", p);
68f40ebb 459 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
716baed7 460 return -1;
4a7144ee 461 }
716baed7
DD
462 uid = atoi(p);
463 }
464
465 p = lp_gid(i);
466 if (!name_to_gid(p, &gid)) {
2dc7b8bd 467 if (!isDigit(p)) {
1732b6c0 468 rprintf(FLOG, "Invalid gid %s\n", p);
68f40ebb 469 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
716baed7 470 return -1;
4a7144ee 471 }
716baed7
DD
472 gid = atoi(p);
473 }
8ef4ffd6 474 }
3b2b5345 475
4a7144ee
WD
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. */
8ef4ffd6 482
33cbd577
WD
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);
2fe1feea
WD
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
33cbd577
WD
495 strlcpy(line, curr_dir, sizeof line);
496 if (!push_dir(module_dir, 1))
497 goto chdir_failed;
2fe1feea
WD
498 if (strcmp(curr_dir, module_dir) != 0
499 && (module_dir = strdup(curr_dir)) == NULL)
500 out_of_memory("rsync_module");
33cbd577
WD
501 push_dir(line, 1); /* Restore curr_dir. */
502
2fe1feea
WD
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) {
e7bf7c01 510 module_dirlen = 0;
7842418b 511 set_filter_dir("/", 1);
46bffd98 512 } else
33cbd577 513 set_filter_dir(module_dir, module_dirlen);
e7bf7c01
WD
514
515 p = lp_filter(i);
ebfd1a1c 516 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
2c8c8bba 517 XFLG_ABS_IF_SLASH);
837cbad9 518
cd64343a 519 p = lp_include_from(i);
ebfd1a1c 520 parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
2c8c8bba 521 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
cd64343a
DD
522
523 p = lp_include(i);
ebfd1a1c 524 parse_rule(&server_filter_list, p,
0a68f869 525 MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
2c8c8bba 526 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
cd64343a 527
8f3a2d54 528 p = lp_exclude_from(i);
ebfd1a1c 529 parse_filter_file(&server_filter_list, p, 0,
2c8c8bba 530 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
8f3a2d54 531
5805327b 532 p = lp_exclude(i);
ebfd1a1c 533 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
2c8c8bba 534 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
8f3a2d54 535
6dc9b74b 536 log_init(1);
1a016bfd 537
9d0d18b5 538#ifdef HAVE_PUTENV
c95ca2a2 539 if (*lp_prexfer_exec(i) || *lp_postxfer_exec(i)) {
9d0d18b5
WD
540 char *modname, *modpath, *hostaddr, *hostname, *username;
541 int status;
2fe1feea
WD
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
9d0d18b5 551 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
2fe1feea 552 || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", p) < 0
9d0d18b5
WD
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);
c95ca2a2
WD
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)) {
9d0d18b5
WD
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) {
503114a7
WD
574 if (asprintf(&p, "RSYNC_PID=%ld", (long)pid) > 0)
575 putenv(p);
c95ca2a2
WD
576 if (wait_process(pid, &status, 0) < 0)
577 status = -1;
503114a7
WD
578 if (asprintf(&p, "RSYNC_RAW_STATUS=%d", status) > 0)
579 putenv(p);
9d0d18b5
WD
580 if (WIFEXITED(status))
581 status = WEXITSTATUS(status);
582 else
583 status = -1;
503114a7
WD
584 if (asprintf(&p, "RSYNC_EXIT_STATUS=%d", status) > 0)
585 putenv(p);
c95ca2a2 586 system(lp_postxfer_exec(i));
9d0d18b5
WD
587 _exit(status);
588 }
589 }
c95ca2a2
WD
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];
503114a7
WD
595 if (asprintf(&p, "RSYNC_PID=%ld", (long)getpid()) > 0)
596 putenv(p);
c95ca2a2
WD
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) {
141c6265
WD
603 char buf[BIGPATHBUFLEN];
604 int j, len;
c95ca2a2
WD
605 close(fds[1]);
606 set_blocking(fds[0]);
141c6265 607 len = read_arg_from_pipe(fds[0], buf, BIGPATHBUFLEN);
c95ca2a2
WD
608 if (len <= 0)
609 _exit(1);
503114a7
WD
610 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) > 0)
611 putenv(p);
141c6265
WD
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 }
503114a7
WD
620 if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) > 0)
621 putenv(p);
141c6265
WD
622 }
623 close(fds[0]);
c95ca2a2
WD
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 }
9d0d18b5
WD
635 umask(0);
636 }
637#endif
638
8638dd48 639 if (use_chroot) {
b52c1d9d
MP
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 */
2fe1feea
WD
652 if (chroot(chroot_path)) {
653 rsyserr(FLOG, errno, "chroot %s failed", chroot_path);
68f40ebb 654 io_printf(f_out, "@ERROR: chroot failed\n");
8638dd48
DD
655 return -1;
656 }
2fe1feea 657 if (!push_dir(module_dir, 0))
33cbd577 658 goto chdir_failed;
2fe1feea
WD
659 if (module_dirlen)
660 sanitize_paths = 1;
716baed7 661 } else {
33cbd577
WD
662 if (!push_dir(module_dir, 0)) {
663 chdir_failed:
664 rsyserr(FLOG, errno, "chdir %s failed\n", module_dir);
68f40ebb 665 io_printf(f_out, "@ERROR: chdir failed\n");
716baed7
DD
666 return -1;
667 }
cb13abfe 668 sanitize_paths = 1;
716baed7
DD
669 }
670
9585b276 671 if ((munge_symlinks = lp_munge_symlinks(i)) < 0)
2fe1feea 672 munge_symlinks = !use_chroot || module_dirlen;
9585b276
WD
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
716baed7 683 if (am_root) {
715d1f45
MP
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
716baed7 694 if (setgid(gid)) {
1732b6c0 695 rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
68f40ebb 696 io_printf(f_out, "@ERROR: setgid failed\n");
8638dd48
DD
697 return -1;
698 }
4f5b0756 699#ifdef HAVE_SETGROUPS
6969ebcf
WD
700 /* Get rid of any supplementary groups this process
701 * might have inheristed. */
702 if (setgroups(1, &gid)) {
1732b6c0 703 rsyserr(FLOG, errno, "setgroups failed");
6969ebcf
WD
704 io_printf(f_out, "@ERROR: setgroups failed\n");
705 return -1;
706 }
707#endif
3591c066 708
716baed7 709 if (setuid(uid)) {
1732b6c0 710 rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
68f40ebb 711 io_printf(f_out, "@ERROR: setuid failed\n");
8638dd48
DD
712 return -1;
713 }
714
6fe05820 715 am_root = (MY_UID() == 0);
3591c066
AT
716 }
717
fed1f3f4
WD
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
68f40ebb 728 io_printf(f_out, "@RSYNCD: OK\n");
3591c066 729
7909e65f 730 opt_cnt = read_args(f_in, name, line, sizeof line, rl_nulls, &argv, &argc, &request);
3591c066 731
141c6265
WD
732 if (pre_exec_pid) {
733 err_msg = finish_pre_exec(pre_exec_pid, pre_exec_fd, request,
7909e65f 734 opt_cnt, argv);
141c6265 735 }
c95ca2a2 736
18638730 737 verbose = 0; /* future verbosity is controlled by client options */
c9dc1300 738 ret = parse_arguments(&argc, (const char ***) &argv, 0);
875a13b4 739 am_server = 1; /* Don't let someone try to be tricky. */
3162ea6f
WD
740 if (lp_ignore_errors(module_id))
741 ignore_errors = 1;
5223b786
WD
742 if (write_batch < 0)
743 dry_run = 1;
3591c066 744
9439c0cb
WD
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
7c2a9e76
WD
750 if (filesfrom_fd == 0)
751 filesfrom_fd = f_in;
752
7b372642 753 if (request) {
97cb8dc2 754 if (*auth_user) {
9e5a5ddb
WD
755 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
756 am_sender ? "on" : "to",
97cb8dc2 757 request, auth_user, host, addr);
d0d56395 758 } else {
9e5a5ddb
WD
759 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
760 am_sender ? "on" : "to",
d0d56395
AT
761 request, host, addr);
762 }
7b372642
AT
763 free(request);
764 }
765
15b7b73d 766#ifndef DEBUG
3591c066 767 /* don't allow the logs to be flooded too fast */
59b0e7a8
WD
768 if (verbose > lp_max_verbosity(i))
769 verbose = lp_max_verbosity(i);
0199b05f 770#endif
3591c066 771
1732b6c0
WD
772 if (protocol_version < 23
773 && (protocol_version == 22 || am_sender))
da3478b2 774 io_start_multiplex_out();
c95ca2a2 775 else if (!ret || err_msg) {
1732b6c0
WD
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);
b03c719f
WD
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 }
da3478b2 798 io_start_multiplex_out();
554e0a8d 799 }
15b7b73d 800
c95ca2a2
WD
801 if (!ret || err_msg) {
802 if (err_msg)
332cf6df 803 rwrite(FERROR, err_msg, strlen(err_msg), 0);
c95ca2a2
WD
804 else
805 option_error();
7e561438 806 msleep(400);
4a7144ee 807 exit_cleanup(RERR_UNSUPPORTED);
41979ff8
AT
808 }
809
0b52f94d
WD
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
3e6ddb37
WD
825 if (lp_timeout(i) && lp_timeout(i) > io_timeout)
826 set_io_timeout(lp_timeout(i));
81791cfc 827
f041b025
WD
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. */
aaccaa88
WD
832 if (am_sender)
833 p = lp_outgoing_chmod(i);
834 else
835 p = lp_incoming_chmod(i);
8840ec0f 836 if (*p && !(daemon_chmod_modes = parse_chmod(p, &chmod_modes))) {
aaccaa88
WD
837 rprintf(FLOG, "Invalid \"%sing chmod\" directive: %s\n",
838 am_sender ? "outgo" : "incom", p);
839 }
730df9d2 840
c9dc1300 841 start_server(f_in, f_out, argc, argv);
3591c066
AT
842
843 return 0;
844}
845
7a6421fa
AT
846/* send a list of available modules to the client. Don't list those
847 with "list = False". */
3591c066
AT
848static void send_listing(int fd)
849{
850 int n = lp_numservices();
851 int i;
063393d6 852
c0422cea 853 for (i = 0; i < n; i++) {
3591c066 854 if (lp_list(i))
4a7144ee 855 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
c0422cea 856 }
8f04bb36 857
daa598df 858 if (protocol_version >= 25)
063393d6 859 io_printf(fd,"@RSYNCD: EXIT\n");
3591c066
AT
860}
861
68f40ebb 862/* this is called when a connection is established to a client
3591c066
AT
863 and we want to start talking. The setup of the system is done from
864 here */
68f40ebb 865int start_daemon(int f_in, int f_out)
3591c066 866{
20accf4d 867 char line[1024];
7909e65f 868 char *addr, *host;
c0422cea 869 int i;
4cdf25e4 870
da3478b2
WD
871 io_set_sock_fds(f_in, f_out);
872
374c3e12
WD
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
08e0a629 876 * (when rsync is run by init and run by a remote shell). */
2e94e70e 877 if (!lp_load(config_file, 0))
65417579 878 exit_cleanup(RERR_SYNTAX);
3591c066 879
374c3e12
WD
880 addr = client_addr(f_in);
881 host = client_name(f_in);
882 rprintf(FLOG, "connect from %s (%s)\n", host, addr);
91d324b4 883
68f40ebb
WD
884 if (!am_server) {
885 set_socket_options(f_in, "SO_KEEPALIVE");
34937987
WD
886 if (sockopts)
887 set_socket_options(f_in, sockopts);
888 else
889 set_socket_options(f_in, lp_socket_options());
68f40ebb
WD
890 set_nonblocking(f_in);
891 }
3591c066 892
7909e65f 893 if (exchange_protocols(f_in, f_out, line, sizeof line, 0) < 0)
91eee594 894 return -1;
91eee594 895
c0422cea 896 line[0] = 0;
7909e65f 897 if (!read_line_old(f_in, line, sizeof line))
c0422cea 898 return -1;
3591c066 899
c0422cea 900 if (!*line || strcmp(line, "#list") == 0) {
b3e15181
WD
901 rprintf(FLOG, "module-list request from %s (%s)\n",
902 host, addr);
c0422cea
WD
903 send_listing(f_out);
904 return -1;
905 }
3591c066 906
c0422cea
WD
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 }
3591c066 912
c0422cea 913 if ((i = lp_number(line)) < 0) {
c0422cea
WD
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;
3591c066
AT
918 }
919
d749eb68
WD
920#ifdef HAVE_SIGACTION
921 sigact.sa_flags = SA_NOCLDSTOP;
922#endif
923 SIGACTION(SIGCHLD, remember_children);
924
439a198d 925 return rsync_module(f_in, f_out, i, addr, host);
3591c066
AT
926}
927
dd589118 928static void create_pid_file(void)
a1d2685b
WD
929{
930 char *pid_file = lp_pid_file();
931 char pidbuf[16];
dd589118 932 pid_t pid = getpid();
a1d2685b
WD
933 int fd;
934
935 if (!pid_file || !*pid_file)
936 return;
937
938 cleanup_set_pid(pid);
dd589118 939 if ((fd = do_open(pid_file, O_WRONLY|O_CREAT|O_EXCL, 0666 & ~orig_umask)) == -1) {
a1d2685b 940 cleanup_set_pid(0);
dd589118 941 fprintf(stderr, "failed to create pid file %s: %s\n", pid_file, strerror(errno));
a1d2685b
WD
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. */
951static void become_daemon(void)
3591c066 952{
a1d2685b
WD
953 int i;
954 pid_t pid = fork();
955
956 if (pid) {
dd589118
WD
957 if (pid < 0) {
958 fprintf(stderr, "failed to fork: %s\n", strerror(errno));
959 exit_cleanup(RERR_FILEIO);
960 }
a1d2685b
WD
961 _exit(0);
962 }
1a016bfd 963
dd589118
WD
964 create_pid_file();
965
a1d2685b
WD
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
984int daemon_main(void)
985{
dd589118
WD
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
3591c066 993 if (is_a_socket(STDIN_FILENO)) {
41979ff8
AT
994 int i;
995
996 /* we are running via inetd - close off stdout and
4a7144ee
WD
997 * stderr so that library functions (and getopt) don't
998 * try to use them. Redirect them to /dev/null */
2e94e70e 999 for (i = 1; i < 3; i++) {
4a7144ee 1000 close(i);
41979ff8
AT
1001 open("/dev/null", O_RDWR);
1002 }
3eb38818 1003
68f40ebb 1004 return start_daemon(STDIN_FILENO, STDIN_FILENO);
3591c066
AT
1005 }
1006
a1d2685b
WD
1007 if (!lp_load(config_file, 1)) {
1008 fprintf(stderr, "Failed to parse config file: %s\n", config_file);
65417579 1009 exit_cleanup(RERR_SYNTAX);
a1d2685b
WD
1010 }
1011
1012 if (no_detach)
dd589118 1013 create_pid_file();
a1d2685b
WD
1014 else
1015 become_daemon();
f9e940ef 1016
0c56b1ad
WD
1017 if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
1018 rsync_port = RSYNC_PORT;
3dfe6e97 1019 if (bind_address == NULL && *lp_bind_address())
986aaaaa 1020 bind_address = lp_bind_address();
0c56b1ad 1021
6dc9b74b 1022 log_init(0);
f9e940ef 1023
9e5a5ddb 1024 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
4a7144ee
WD
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??? */
e42c9458 1029
8ef4ffd6
AT
1030 start_accept_loop(rsync_port, start_daemon);
1031 return -1;
3591c066 1032}