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