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