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