Added a comment.
[rsync/rsync.git] / clientserver.c
CommitLineData
a039749b 1/* -*- c-file-style: "linux"; -*-
4a7144ee 2 *
a254fd97
MP
3 * Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
4 * Copyright (C) 2001-2002 by Martin Pool <mbp@samba.org>
4a7144ee 5 *
a254fd97
MP
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
4a7144ee 10 *
a254fd97
MP
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
4a7144ee 15 *
a254fd97
MP
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
3591c066 20
a254fd97
MP
21/**
22 * @file
23 *
24 * The socket based protocol for setting up a connection with
25 * rsyncd.
26 **/
3591c066
AT
27
28#include "rsync.h"
29
c0814b81 30extern int verbose;
7a6653bc 31extern int quiet;
c0814b81 32extern int list_only;
6e195fe9
WD
33extern int am_sender;
34extern int am_server;
35extern int am_daemon;
36extern int am_root;
3591c066 37extern int rsync_port;
8dad7fc6 38extern int kluge_around_eof;
6e195fe9 39extern int daemon_over_rsh;
b35d0d8e 40extern int sanitize_paths;
7c2a9e76 41extern int filesfrom_fd;
daa598df
WD
42extern int remote_protocol;
43extern int protocol_version;
6e195fe9
WD
44extern int io_timeout;
45extern int orig_umask;
46extern int no_detach;
47extern int default_af_hint;
48extern char *bind_address;
34937987 49extern char *sockopts;
6e195fe9 50extern char *config_file;
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;
f39b2060
WD
58int daemon_log_format_has_i = 0;
59int daemon_log_format_has_o_or_i = 0;
211bc43b 60int module_id = -1;
8840ec0f 61struct chmod_mode_struct *daemon_chmod_modes;
3591c066 62
e7bf7c01
WD
63/* Length of lp_path() string when in daemon mode & not chrooted, else 0. */
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
b9f592fb
WD
116int start_inband_exchange(char *user, char *path, int f_in, int f_out,
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
WD
211
212 rprintf(FINFO, "%s\n", line);
3591c066 213 }
8dad7fc6 214 kluge_around_eof = 0;
3591c066 215
68f40ebb
WD
216 for (i = 0; i < sargc; i++) {
217 io_printf(f_out, "%s\n", sargs[i]);
3591c066 218 }
68f40ebb 219 io_printf(f_out, "\n");
3591c066 220
daa598df 221 if (protocol_version < 23) {
3f55bd5d 222 if (protocol_version == 22 || !am_sender)
da3478b2 223 io_start_multiplex_in();
09b7f5db 224 }
8d9dc9f9 225
68f40ebb 226 return 0;
3591c066
AT
227}
228
141c6265
WD
229static char *finish_pre_exec(pid_t pid, int fd, char *request,
230 int argc, char *argv[])
c95ca2a2 231{
141c6265 232 int j, status = -1;
3591c066 233
c95ca2a2 234 if (request) {
141c6265
WD
235 write_buf(fd, request, strlen(request)+1);
236 for (j = 0; j < argc; j++)
237 write_buf(fd, argv[j], strlen(argv[j])+1);
c95ca2a2 238 }
141c6265
WD
239
240 write_byte(fd, 0);
241
c95ca2a2
WD
242 close(fd);
243
244 if (wait_process(pid, &status, 0) < 0
245 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
246 char *e;
247 if (asprintf(&e, "pre-xfer exec returned failure (%d)\n", status) < 0)
248 out_of_memory("finish_pre_exec");
249 return e;
250 }
251 return NULL;
252}
3591c066 253
141c6265
WD
254static int read_arg_from_pipe(int fd, char *buf, int limit)
255{
256 char *bp = buf, *eob = buf + limit - 1;
257
258 while (1) {
259 if (read(fd, bp, 1) != 1)
260 return -1;
261 if (*bp == '\0')
262 break;
263 if (bp < eob)
264 bp++;
265 }
266 *bp = '\0';
267
268 return bp - buf;
269}
270
68f40ebb 271static int rsync_module(int f_in, int f_out, int i)
3591c066 272{
2e94e70e 273 int argc = 0;
b7061c82
WD
274 int maxargs;
275 char **argv;
20accf4d 276 char line[BIGPATHBUFLEN];
2af27ad9 277 uid_t uid = (uid_t)-2; /* canonically "nobody" */
1a016bfd 278 gid_t gid = (gid_t)-2;
c95ca2a2 279 char *p, *err_msg = NULL;
09021eab
DD
280 char *addr = client_addr(f_in);
281 char *host = client_name(f_in);
874895d5 282 char *name = lp_name(i);
8638dd48 283 int use_chroot = lp_use_chroot(i);
2e94e70e 284 int start_glob = 0;
c95ca2a2
WD
285 int ret, pre_exec_fd = -1;
286 pid_t pre_exec_pid = 0;
2e94e70e 287 char *request = NULL;
56c473b7
AT
288
289 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
1732b6c0 290 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
31ec50d7 291 name, host, addr);
c0422cea
WD
292 if (!lp_list(i))
293 io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
294 else {
295 io_printf(f_out,
296 "@ERROR: access denied to %s from %s (%s)\n",
297 name, host, addr);
298 }
56c473b7
AT
299 return -1;
300 }
3591c066 301
68f40ebb 302 if (am_daemon && am_server) {
9e5a5ddb 303 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
68f40ebb
WD
304 name, host, addr);
305 }
306
5e71c444 307 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
8d72ef6e 308 if (errno) {
1732b6c0 309 rsyserr(FLOG, errno, "failed to open lock file %s",
45c49b52 310 lp_lock_file(i));
4875d6b6 311 io_printf(f_out, "@ERROR: failed to open lock file\n");
8d72ef6e 312 } else {
1732b6c0 313 rprintf(FLOG, "max connections (%d) reached\n",
5e71c444 314 lp_max_connections(i));
4ccfd96c 315 io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
837cbad9 316 lp_max_connections(i));
8d72ef6e 317 }
0c515f17
AT
318 return -1;
319 }
320
45c5b903 321 auth_user = auth_server(f_in, f_out, i, host, addr, "@RSYNCD: AUTHREQD ");
d0d56395 322
97cb8dc2 323 if (!auth_user) {
68f40ebb 324 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
4a7144ee 325 return -1;
d0d56395
AT
326 }
327
3591c066
AT
328 module_id = i;
329
211bc43b 330 if (lp_read_only(i))
18638730
WD
331 read_only = 1;
332
f39b2060 333 if (lp_transfer_logging(i)) {
624d6be2 334 if (log_format_has(lp_log_format(i), 'i'))
f39b2060
WD
335 daemon_log_format_has_i = 1;
336 if (daemon_log_format_has_i
624d6be2 337 || log_format_has(lp_log_format(i), 'o'))
f39b2060
WD
338 daemon_log_format_has_o_or_i = 1;
339 }
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)) {
2e94e70e 346 if (!isdigit(*(unsigned char *)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)) {
2e94e70e 356 if (!isdigit(*(unsigned char *)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
45a83540 399 log_init();
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) {
428 char *ret1, *ret2;
c95ca2a2
WD
429 if (wait_process(pid, &status, 0) < 0)
430 status = -1;
9d0d18b5
WD
431 if (asprintf(&ret1, "RSYNC_RAW_STATUS=%d", status) > 0)
432 putenv(ret1);
433 if (WIFEXITED(status))
434 status = WEXITSTATUS(status);
435 else
436 status = -1;
437 if (asprintf(&ret2, "RSYNC_EXIT_STATUS=%d", status) > 0)
438 putenv(ret2);
c95ca2a2 439 system(lp_postxfer_exec(i));
9d0d18b5
WD
440 _exit(status);
441 }
442 }
c95ca2a2
WD
443 /* For pre-xfer exec, fork a child process to run the indicated
444 * command, though it first waits for the parent process to
445 * send us the user's request via a pipe. */
446 if (*lp_prexfer_exec(i)) {
447 int fds[2];
448 if (pipe(fds) < 0 || (pre_exec_pid = fork()) < 0) {
449 rsyserr(FLOG, errno, "pre-xfer exec preparation failed");
450 io_printf(f_out, "@ERROR: pre-xfer exec preparation failed\n");
451 return -1;
452 }
453 if (pre_exec_pid == 0) {
141c6265
WD
454 char buf[BIGPATHBUFLEN];
455 int j, len;
c95ca2a2
WD
456 close(fds[1]);
457 set_blocking(fds[0]);
141c6265 458 len = read_arg_from_pipe(fds[0], buf, BIGPATHBUFLEN);
c95ca2a2
WD
459 if (len <= 0)
460 _exit(1);
c95ca2a2
WD
461 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) < 0)
462 out_of_memory("rsync_module");
463 putenv(p);
141c6265
WD
464 for (j = 0; ; j++) {
465 len = read_arg_from_pipe(fds[0], buf,
466 BIGPATHBUFLEN);
467 if (len <= 0) {
468 if (!len)
469 break;
470 _exit(1);
471 }
472 if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) < 0)
473 out_of_memory("rsync_module");
474 putenv(p);
475 }
476 close(fds[0]);
c95ca2a2
WD
477 close(STDIN_FILENO);
478 close(STDOUT_FILENO);
479 status = system(lp_prexfer_exec(i));
480 if (!WIFEXITED(status))
481 _exit(1);
482 _exit(WEXITSTATUS(status));
483 }
484 close(fds[0]);
485 set_blocking(fds[1]);
486 pre_exec_fd = fds[1];
487 }
9d0d18b5
WD
488 umask(0);
489 }
490#endif
491
8638dd48 492 if (use_chroot) {
b52c1d9d
MP
493 /*
494 * XXX: The 'use chroot' flag is a fairly reliable
495 * source of confusion, because it fails under two
496 * important circumstances: running as non-root,
497 * running on Win32 (or possibly others). On the
498 * other hand, if you are running as root, then it
499 * might be better to always use chroot.
500 *
501 * So, perhaps if we can't chroot we should just issue
502 * a warning, unless a "require chroot" flag is set,
503 * in which case we fail.
504 */
8638dd48 505 if (chroot(lp_path(i))) {
4875d6b6 506 rsyserr(FLOG, errno, "chroot %s failed",
45c49b52 507 lp_path(i));
68f40ebb 508 io_printf(f_out, "@ERROR: chroot failed\n");
8638dd48
DD
509 return -1;
510 }
3591c066 511
59187666 512 if (!push_dir("/")) {
4875d6b6 513 rsyserr(FLOG, errno, "chdir %s failed\n",
45c49b52 514 lp_path(i));
68f40ebb 515 io_printf(f_out, "@ERROR: chdir failed\n");
8638dd48
DD
516 return -1;
517 }
3591c066 518
716baed7 519 } else {
59187666 520 if (!push_dir(lp_path(i))) {
4875d6b6 521 rsyserr(FLOG, errno, "chdir %s failed\n",
45c49b52 522 lp_path(i));
68f40ebb 523 io_printf(f_out, "@ERROR: chdir failed\n");
716baed7
DD
524 return -1;
525 }
cb13abfe 526 sanitize_paths = 1;
716baed7
DD
527 }
528
529 if (am_root) {
715d1f45
MP
530 /* XXXX: You could argue that if the daemon is started
531 * by a non-root user and they explicitly specify a
532 * gid, then we should try to change to that gid --
533 * this could be possible if it's already in their
534 * supplementary groups. */
535
536 /* TODO: Perhaps we need to document that if rsyncd is
537 * started by somebody other than root it will inherit
538 * all their supplementary groups. */
539
716baed7 540 if (setgid(gid)) {
1732b6c0 541 rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
68f40ebb 542 io_printf(f_out, "@ERROR: setgid failed\n");
8638dd48
DD
543 return -1;
544 }
4f5b0756 545#ifdef HAVE_SETGROUPS
6969ebcf
WD
546 /* Get rid of any supplementary groups this process
547 * might have inheristed. */
548 if (setgroups(1, &gid)) {
1732b6c0 549 rsyserr(FLOG, errno, "setgroups failed");
6969ebcf
WD
550 io_printf(f_out, "@ERROR: setgroups failed\n");
551 return -1;
552 }
553#endif
3591c066 554
716baed7 555 if (setuid(uid)) {
1732b6c0 556 rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
68f40ebb 557 io_printf(f_out, "@ERROR: setuid failed\n");
8638dd48
DD
558 return -1;
559 }
560
6fe05820 561 am_root = (MY_UID() == 0);
3591c066
AT
562 }
563
fed1f3f4
WD
564 if (lp_temp_dir(i) && *lp_temp_dir(i)) {
565 tmpdir = lp_temp_dir(i);
566 if (strlen(tmpdir) >= MAXPATHLEN - 10) {
567 rprintf(FLOG,
568 "the 'temp dir' value for %s is WAY too long -- ignoring.\n",
569 name);
570 tmpdir = NULL;
571 }
572 }
573
68f40ebb 574 io_printf(f_out, "@RSYNCD: OK\n");
3591c066 575
b7061c82
WD
576 maxargs = MAX_ARGS;
577 if (!(argv = new_array(char *, maxargs)))
578 out_of_memory("rsync_module");
3591c066
AT
579 argv[argc++] = "rsyncd";
580
581 while (1) {
2e94e70e 582 if (!read_line(f_in, line, sizeof line - 1))
3591c066 583 return -1;
3591c066 584
2e94e70e
WD
585 if (!*line)
586 break;
3591c066 587
874895d5
AT
588 p = line;
589
b7061c82
WD
590 if (argc == maxargs) {
591 maxargs += MAX_ARGS;
592 if (!(argv = realloc_array(argv, char *, maxargs)))
593 out_of_memory("rsync_module");
594 }
2e94e70e 595 if (!(argv[argc] = strdup(p)))
b7061c82 596 out_of_memory("rsync_module");
3591c066 597
20accf4d
WD
598 switch (start_glob) {
599 case 0:
874895d5 600 argc++;
20accf4d
WD
601 if (strcmp(line, ".") == 0)
602 start_glob = 1;
603 break;
604 case 1:
c95ca2a2
WD
605 if (pre_exec_pid) {
606 err_msg = finish_pre_exec(pre_exec_pid,
141c6265
WD
607 pre_exec_fd, p,
608 argc, argv);
c95ca2a2
WD
609 pre_exec_pid = 0;
610 }
20accf4d
WD
611 request = strdup(p);
612 start_glob = 2;
613 /* FALL THROUGH */
614 default:
c95ca2a2
WD
615 if (!err_msg)
616 glob_expand(name, &argv, &argc, &maxargs);
20accf4d
WD
617 break;
618 }
3591c066
AT
619 }
620
141c6265
WD
621 if (pre_exec_pid) {
622 err_msg = finish_pre_exec(pre_exec_pid, pre_exec_fd, request,
623 argc, argv);
624 }
c95ca2a2 625
18638730 626 verbose = 0; /* future verbosity is controlled by client options */
c9dc1300 627 ret = parse_arguments(&argc, (const char ***) &argv, 0);
7a6653bc 628 quiet = 0; /* Don't let someone try to be tricky. */
3591c066 629
7c2a9e76
WD
630 if (filesfrom_fd == 0)
631 filesfrom_fd = f_in;
632
7b372642 633 if (request) {
97cb8dc2 634 if (*auth_user) {
9e5a5ddb
WD
635 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
636 am_sender ? "on" : "to",
97cb8dc2 637 request, auth_user, host, addr);
d0d56395 638 } else {
9e5a5ddb
WD
639 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
640 am_sender ? "on" : "to",
d0d56395
AT
641 request, host, addr);
642 }
7b372642
AT
643 free(request);
644 }
645
15b7b73d 646#ifndef DEBUG
3591c066 647 /* don't allow the logs to be flooded too fast */
59b0e7a8
WD
648 if (verbose > lp_max_verbosity(i))
649 verbose = lp_max_verbosity(i);
0199b05f 650#endif
3591c066 651
1732b6c0
WD
652 if (protocol_version < 23
653 && (protocol_version == 22 || am_sender))
da3478b2 654 io_start_multiplex_out();
c95ca2a2 655 else if (!ret || err_msg) {
1732b6c0
WD
656 /* We have to get I/O multiplexing started so that we can
657 * get the error back to the client. This means getting
658 * the protocol setup finished first in later versions. */
659 setup_protocol(f_out, f_in);
b03c719f
WD
660 if (!am_sender) {
661 /* Since we failed in our option parsing, we may not
662 * have finished parsing that the client sent us a
663 * --files-from option, so look for it manually.
664 * Without this, the socket would be in the wrong
665 * state for the upcoming error message. */
666 if (!files_from) {
667 int i;
668 for (i = 0; i < argc; i++) {
669 if (strncmp(argv[i], "--files-from", 12) == 0) {
670 files_from = "";
671 break;
672 }
673 }
674 }
675 if (files_from)
676 write_byte(f_out, 0);
677 }
da3478b2 678 io_start_multiplex_out();
554e0a8d 679 }
15b7b73d 680
c95ca2a2
WD
681 if (!ret || err_msg) {
682 if (err_msg)
683 rprintf(FERROR, err_msg);
684 else
685 option_error();
7e561438 686 msleep(400);
4a7144ee 687 exit_cleanup(RERR_UNSUPPORTED);
41979ff8
AT
688 }
689
3e6ddb37
WD
690 if (lp_timeout(i) && lp_timeout(i) > io_timeout)
691 set_io_timeout(lp_timeout(i));
81791cfc 692
f041b025
WD
693 /* If we have some incoming/outgoing chmod changes, append them to
694 * any user-specified changes (making our changes have priority).
695 * We also get a pointer to just our changes so that a receiver
696 * process can use them separately if --perms wasn't specified. */
aaccaa88
WD
697 if (am_sender)
698 p = lp_outgoing_chmod(i);
699 else
700 p = lp_incoming_chmod(i);
8840ec0f 701 if (*p && !(daemon_chmod_modes = parse_chmod(p, &chmod_modes))) {
aaccaa88
WD
702 rprintf(FLOG, "Invalid \"%sing chmod\" directive: %s\n",
703 am_sender ? "outgo" : "incom", p);
704 }
730df9d2 705
c9dc1300 706 start_server(f_in, f_out, argc, argv);
3591c066
AT
707
708 return 0;
709}
710
7a6421fa
AT
711/* send a list of available modules to the client. Don't list those
712 with "list = False". */
3591c066
AT
713static void send_listing(int fd)
714{
715 int n = lp_numservices();
716 int i;
063393d6 717
c0422cea 718 for (i = 0; i < n; i++) {
3591c066 719 if (lp_list(i))
4a7144ee 720 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
c0422cea 721 }
8f04bb36 722
daa598df 723 if (protocol_version >= 25)
063393d6 724 io_printf(fd,"@RSYNCD: EXIT\n");
3591c066
AT
725}
726
68f40ebb 727/* this is called when a connection is established to a client
3591c066
AT
728 and we want to start talking. The setup of the system is done from
729 here */
68f40ebb 730int start_daemon(int f_in, int f_out)
3591c066 731{
20accf4d 732 char line[1024];
3591c066 733 char *motd;
c0422cea 734 int i;
4cdf25e4 735
da3478b2
WD
736 io_set_sock_fds(f_in, f_out);
737
2e94e70e 738 if (!lp_load(config_file, 0))
65417579 739 exit_cleanup(RERR_SYNTAX);
3591c066 740
30e8c8e1
DD
741 log_init();
742
68f40ebb
WD
743 if (!am_server) {
744 set_socket_options(f_in, "SO_KEEPALIVE");
34937987
WD
745 if (sockopts)
746 set_socket_options(f_in, sockopts);
747 else
748 set_socket_options(f_in, lp_socket_options());
68f40ebb
WD
749 set_nonblocking(f_in);
750 }
3591c066 751
5a8543b8 752 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
3591c066
AT
753
754 motd = lp_motd_file();
27d3cdbc 755 if (motd && *motd) {
0090cbdb 756 FILE *f = fopen(motd,"r");
3591c066 757 while (f && !feof(f)) {
2e94e70e 758 int len = fread(line, 1, sizeof line - 1, f);
3591c066
AT
759 if (len > 0) {
760 line[len] = 0;
68f40ebb 761 io_printf(f_out, "%s", line);
3591c066
AT
762 }
763 }
2e94e70e
WD
764 if (f)
765 fclose(f);
68f40ebb 766 io_printf(f_out, "\n");
3591c066
AT
767 }
768
2e94e70e 769 if (!read_line(f_in, line, sizeof line - 1))
91eee594 770 return -1;
91eee594 771
daa598df 772 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
68f40ebb 773 io_printf(f_out, "@ERROR: protocol startup error\n");
91eee594 774 return -1;
4a7144ee 775 }
daa598df
WD
776 if (protocol_version > remote_protocol)
777 protocol_version = remote_protocol;
91eee594 778
c0422cea
WD
779 line[0] = 0;
780 if (!read_line(f_in, line, sizeof line - 1))
781 return -1;
3591c066 782
c0422cea 783 if (!*line || strcmp(line, "#list") == 0) {
b3e15181
WD
784 char *addr = client_addr(f_in);
785 char *host = client_name(f_in);
786 rprintf(FLOG, "module-list request from %s (%s)\n",
787 host, addr);
c0422cea
WD
788 send_listing(f_out);
789 return -1;
790 }
3591c066 791
c0422cea
WD
792 if (*line == '#') {
793 /* it's some sort of command that I don't understand */
794 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
795 return -1;
796 }
3591c066 797
c0422cea
WD
798 if ((i = lp_number(line)) < 0) {
799 char *addr = client_addr(f_in);
800 char *host = client_name(f_in);
801 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
802 line, host, addr);
803 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
804 return -1;
3591c066
AT
805 }
806
d749eb68
WD
807#ifdef HAVE_SIGACTION
808 sigact.sa_flags = SA_NOCLDSTOP;
809#endif
810 SIGACTION(SIGCHLD, remember_children);
811
68f40ebb 812 return rsync_module(f_in, f_out, i);
3591c066
AT
813}
814
3591c066
AT
815int daemon_main(void)
816{
8638dd48 817 char *pid_file;
1a016bfd 818
3591c066 819 if (is_a_socket(STDIN_FILENO)) {
41979ff8
AT
820 int i;
821
822 /* we are running via inetd - close off stdout and
4a7144ee
WD
823 * stderr so that library functions (and getopt) don't
824 * try to use them. Redirect them to /dev/null */
2e94e70e 825 for (i = 1; i < 3; i++) {
4a7144ee 826 close(i);
41979ff8
AT
827 open("/dev/null", O_RDWR);
828 }
3eb38818 829
68f40ebb 830 return start_daemon(STDIN_FILENO, STDIN_FILENO);
3591c066
AT
831 }
832
13e29995 833 if (!no_detach)
4a7144ee 834 become_daemon();
3591c066 835
2e94e70e 836 if (!lp_load(config_file, 1))
65417579 837 exit_cleanup(RERR_SYNTAX);
f9e940ef 838
0c56b1ad
WD
839 if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
840 rsync_port = RSYNC_PORT;
3dfe6e97 841 if (bind_address == NULL && *lp_bind_address())
986aaaaa 842 bind_address = lp_bind_address();
0c56b1ad 843
45a83540 844 log_init();
f9e940ef 845
9e5a5ddb 846 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
4a7144ee
WD
847 RSYNC_VERSION, rsync_port);
848 /* TODO: If listening on a particular address, then show that
849 * address too. In fact, why not just do inet_ntop on the
850 * local address??? */
e42c9458 851
8638dd48 852 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
ad517ce5
DD
853 char pidbuf[16];
854 int fd;
05b7bab8 855 pid_t pid = getpid();
8638dd48 856 cleanup_set_pid(pid);
ad517ce5
DD
857 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
858 0666 & ~orig_umask)) == -1) {
4a7144ee 859 cleanup_set_pid(0);
4875d6b6 860 rsyserr(FLOG, errno, "failed to create pid file %s",
45c49b52 861 pid_file);
4a7144ee 862 exit_cleanup(RERR_FILEIO);
8638dd48 863 }
05b7bab8 864 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
ad517ce5
DD
865 write(fd, pidbuf, strlen(pidbuf));
866 close(fd);
8638dd48
DD
867 }
868
8ef4ffd6
AT
869 start_accept_loop(rsync_port, start_daemon);
870 return -1;
3591c066 871}