Made log_initialised public.
[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 44extern int io_timeout;
6e195fe9
WD
45extern int no_detach;
46extern int default_af_hint;
c5b7aa15 47extern mode_t orig_umask;
6e195fe9 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
439a198d 271static int rsync_module(int f_in, int f_out, int i, char *addr, char *host)
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;
874895d5 280 char *name = lp_name(i);
8638dd48 281 int use_chroot = lp_use_chroot(i);
2e94e70e 282 int start_glob = 0;
c95ca2a2
WD
283 int ret, pre_exec_fd = -1;
284 pid_t pre_exec_pid = 0;
2e94e70e 285 char *request = NULL;
56c473b7
AT
286
287 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
1732b6c0 288 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
31ec50d7 289 name, host, addr);
c0422cea
WD
290 if (!lp_list(i))
291 io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
292 else {
293 io_printf(f_out,
294 "@ERROR: access denied to %s from %s (%s)\n",
295 name, host, addr);
296 }
56c473b7
AT
297 return -1;
298 }
3591c066 299
68f40ebb 300 if (am_daemon && am_server) {
9e5a5ddb 301 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
68f40ebb
WD
302 name, host, addr);
303 }
304
5e71c444 305 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
8d72ef6e 306 if (errno) {
1732b6c0 307 rsyserr(FLOG, errno, "failed to open lock file %s",
45c49b52 308 lp_lock_file(i));
4875d6b6 309 io_printf(f_out, "@ERROR: failed to open lock file\n");
8d72ef6e 310 } else {
1732b6c0 311 rprintf(FLOG, "max connections (%d) reached\n",
5e71c444 312 lp_max_connections(i));
4ccfd96c 313 io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
837cbad9 314 lp_max_connections(i));
8d72ef6e 315 }
0c515f17
AT
316 return -1;
317 }
318
45c5b903 319 auth_user = auth_server(f_in, f_out, i, host, addr, "@RSYNCD: AUTHREQD ");
d0d56395 320
97cb8dc2 321 if (!auth_user) {
68f40ebb 322 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
4a7144ee 323 return -1;
d0d56395
AT
324 }
325
3591c066
AT
326 module_id = i;
327
211bc43b 328 if (lp_read_only(i))
18638730
WD
329 read_only = 1;
330
f39b2060 331 if (lp_transfer_logging(i)) {
624d6be2 332 if (log_format_has(lp_log_format(i), 'i'))
f39b2060
WD
333 daemon_log_format_has_i = 1;
334 if (daemon_log_format_has_i
624d6be2 335 || log_format_has(lp_log_format(i), 'o'))
f39b2060
WD
336 daemon_log_format_has_o_or_i = 1;
337 }
c0814b81 338
6fe05820 339 am_root = (MY_UID() == 0);
8ef4ffd6 340
716baed7
DD
341 if (am_root) {
342 p = lp_uid(i);
343 if (!name_to_uid(p, &uid)) {
2e94e70e 344 if (!isdigit(*(unsigned char *)p)) {
1732b6c0 345 rprintf(FLOG, "Invalid uid %s\n", p);
68f40ebb 346 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
716baed7 347 return -1;
4a7144ee 348 }
716baed7
DD
349 uid = atoi(p);
350 }
351
352 p = lp_gid(i);
353 if (!name_to_gid(p, &gid)) {
2e94e70e 354 if (!isdigit(*(unsigned char *)p)) {
1732b6c0 355 rprintf(FLOG, "Invalid gid %s\n", p);
68f40ebb 356 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
716baed7 357 return -1;
4a7144ee 358 }
716baed7
DD
359 gid = atoi(p);
360 }
8ef4ffd6 361 }
3b2b5345 362
4a7144ee
WD
363 /* TODO: If we're not root, but the configuration requests
364 * that we change to some uid other than the current one, then
365 * log a warning. */
366
367 /* TODO: Perhaps take a list of gids, and make them into the
368 * supplementary groups. */
8ef4ffd6 369
46bffd98 370 if (use_chroot || (module_dirlen = strlen(lp_path(i))) == 1) {
e7bf7c01 371 module_dirlen = 0;
7842418b 372 set_filter_dir("/", 1);
46bffd98 373 } else
7842418b 374 set_filter_dir(lp_path(i), module_dirlen);
e7bf7c01
WD
375
376 p = lp_filter(i);
ebfd1a1c 377 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
2c8c8bba 378 XFLG_ABS_IF_SLASH);
837cbad9 379
cd64343a 380 p = lp_include_from(i);
ebfd1a1c 381 parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
2c8c8bba 382 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
cd64343a
DD
383
384 p = lp_include(i);
ebfd1a1c 385 parse_rule(&server_filter_list, p,
0a68f869 386 MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
2c8c8bba 387 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
cd64343a 388
8f3a2d54 389 p = lp_exclude_from(i);
ebfd1a1c 390 parse_filter_file(&server_filter_list, p, 0,
2c8c8bba 391 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
8f3a2d54 392
5805327b 393 p = lp_exclude(i);
ebfd1a1c 394 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
2c8c8bba 395 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
8f3a2d54 396
45a83540 397 log_init();
1a016bfd 398
9d0d18b5 399#ifdef HAVE_PUTENV
c95ca2a2 400 if (*lp_prexfer_exec(i) || *lp_postxfer_exec(i)) {
9d0d18b5
WD
401 char *modname, *modpath, *hostaddr, *hostname, *username;
402 int status;
403 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
404 || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", lp_path(i)) < 0
405 || asprintf(&hostaddr, "RSYNC_HOST_ADDR=%s", addr) < 0
406 || asprintf(&hostname, "RSYNC_HOST_NAME=%s", host) < 0
407 || asprintf(&username, "RSYNC_USER_NAME=%s", auth_user) < 0)
408 out_of_memory("rsync_module");
409 putenv(modname);
410 putenv(modpath);
411 putenv(hostaddr);
412 putenv(hostname);
413 putenv(username);
414 umask(orig_umask);
c95ca2a2
WD
415 /* For post-xfer exec, fork a new process to run the rsync
416 * daemon while this process waits for the exit status and
417 * runs the indicated command at that point. */
418 if (*lp_postxfer_exec(i)) {
9d0d18b5
WD
419 pid_t pid = fork();
420 if (pid < 0) {
421 rsyserr(FLOG, errno, "fork failed");
422 io_printf(f_out, "@ERROR: fork failed\n");
423 return -1;
424 }
425 if (pid) {
426 char *ret1, *ret2;
c95ca2a2
WD
427 if (wait_process(pid, &status, 0) < 0)
428 status = -1;
9d0d18b5
WD
429 if (asprintf(&ret1, "RSYNC_RAW_STATUS=%d", status) > 0)
430 putenv(ret1);
431 if (WIFEXITED(status))
432 status = WEXITSTATUS(status);
433 else
434 status = -1;
435 if (asprintf(&ret2, "RSYNC_EXIT_STATUS=%d", status) > 0)
436 putenv(ret2);
c95ca2a2 437 system(lp_postxfer_exec(i));
9d0d18b5
WD
438 _exit(status);
439 }
440 }
c95ca2a2
WD
441 /* For pre-xfer exec, fork a child process to run the indicated
442 * command, though it first waits for the parent process to
443 * send us the user's request via a pipe. */
444 if (*lp_prexfer_exec(i)) {
445 int fds[2];
446 if (pipe(fds) < 0 || (pre_exec_pid = fork()) < 0) {
447 rsyserr(FLOG, errno, "pre-xfer exec preparation failed");
448 io_printf(f_out, "@ERROR: pre-xfer exec preparation failed\n");
449 return -1;
450 }
451 if (pre_exec_pid == 0) {
141c6265
WD
452 char buf[BIGPATHBUFLEN];
453 int j, len;
c95ca2a2
WD
454 close(fds[1]);
455 set_blocking(fds[0]);
141c6265 456 len = read_arg_from_pipe(fds[0], buf, BIGPATHBUFLEN);
c95ca2a2
WD
457 if (len <= 0)
458 _exit(1);
c95ca2a2
WD
459 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) < 0)
460 out_of_memory("rsync_module");
461 putenv(p);
141c6265
WD
462 for (j = 0; ; j++) {
463 len = read_arg_from_pipe(fds[0], buf,
464 BIGPATHBUFLEN);
465 if (len <= 0) {
466 if (!len)
467 break;
468 _exit(1);
469 }
470 if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) < 0)
471 out_of_memory("rsync_module");
472 putenv(p);
473 }
474 close(fds[0]);
c95ca2a2
WD
475 close(STDIN_FILENO);
476 close(STDOUT_FILENO);
477 status = system(lp_prexfer_exec(i));
478 if (!WIFEXITED(status))
479 _exit(1);
480 _exit(WEXITSTATUS(status));
481 }
482 close(fds[0]);
483 set_blocking(fds[1]);
484 pre_exec_fd = fds[1];
485 }
9d0d18b5
WD
486 umask(0);
487 }
488#endif
489
8638dd48 490 if (use_chroot) {
b52c1d9d
MP
491 /*
492 * XXX: The 'use chroot' flag is a fairly reliable
493 * source of confusion, because it fails under two
494 * important circumstances: running as non-root,
495 * running on Win32 (or possibly others). On the
496 * other hand, if you are running as root, then it
497 * might be better to always use chroot.
498 *
499 * So, perhaps if we can't chroot we should just issue
500 * a warning, unless a "require chroot" flag is set,
501 * in which case we fail.
502 */
8638dd48 503 if (chroot(lp_path(i))) {
4875d6b6 504 rsyserr(FLOG, errno, "chroot %s failed",
45c49b52 505 lp_path(i));
68f40ebb 506 io_printf(f_out, "@ERROR: chroot failed\n");
8638dd48
DD
507 return -1;
508 }
3591c066 509
59187666 510 if (!push_dir("/")) {
4875d6b6 511 rsyserr(FLOG, errno, "chdir %s failed\n",
45c49b52 512 lp_path(i));
68f40ebb 513 io_printf(f_out, "@ERROR: chdir failed\n");
8638dd48
DD
514 return -1;
515 }
3591c066 516
716baed7 517 } else {
59187666 518 if (!push_dir(lp_path(i))) {
4875d6b6 519 rsyserr(FLOG, errno, "chdir %s failed\n",
45c49b52 520 lp_path(i));
68f40ebb 521 io_printf(f_out, "@ERROR: chdir failed\n");
716baed7
DD
522 return -1;
523 }
cb13abfe 524 sanitize_paths = 1;
716baed7
DD
525 }
526
527 if (am_root) {
715d1f45
MP
528 /* XXXX: You could argue that if the daemon is started
529 * by a non-root user and they explicitly specify a
530 * gid, then we should try to change to that gid --
531 * this could be possible if it's already in their
532 * supplementary groups. */
533
534 /* TODO: Perhaps we need to document that if rsyncd is
535 * started by somebody other than root it will inherit
536 * all their supplementary groups. */
537
716baed7 538 if (setgid(gid)) {
1732b6c0 539 rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
68f40ebb 540 io_printf(f_out, "@ERROR: setgid failed\n");
8638dd48
DD
541 return -1;
542 }
4f5b0756 543#ifdef HAVE_SETGROUPS
6969ebcf
WD
544 /* Get rid of any supplementary groups this process
545 * might have inheristed. */
546 if (setgroups(1, &gid)) {
1732b6c0 547 rsyserr(FLOG, errno, "setgroups failed");
6969ebcf
WD
548 io_printf(f_out, "@ERROR: setgroups failed\n");
549 return -1;
550 }
551#endif
3591c066 552
716baed7 553 if (setuid(uid)) {
1732b6c0 554 rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
68f40ebb 555 io_printf(f_out, "@ERROR: setuid failed\n");
8638dd48
DD
556 return -1;
557 }
558
6fe05820 559 am_root = (MY_UID() == 0);
3591c066
AT
560 }
561
fed1f3f4
WD
562 if (lp_temp_dir(i) && *lp_temp_dir(i)) {
563 tmpdir = lp_temp_dir(i);
564 if (strlen(tmpdir) >= MAXPATHLEN - 10) {
565 rprintf(FLOG,
566 "the 'temp dir' value for %s is WAY too long -- ignoring.\n",
567 name);
568 tmpdir = NULL;
569 }
570 }
571
68f40ebb 572 io_printf(f_out, "@RSYNCD: OK\n");
3591c066 573
b7061c82
WD
574 maxargs = MAX_ARGS;
575 if (!(argv = new_array(char *, maxargs)))
576 out_of_memory("rsync_module");
3591c066
AT
577 argv[argc++] = "rsyncd";
578
579 while (1) {
2e94e70e 580 if (!read_line(f_in, line, sizeof line - 1))
3591c066 581 return -1;
3591c066 582
2e94e70e
WD
583 if (!*line)
584 break;
3591c066 585
874895d5
AT
586 p = line;
587
b7061c82
WD
588 if (argc == maxargs) {
589 maxargs += MAX_ARGS;
590 if (!(argv = realloc_array(argv, char *, maxargs)))
591 out_of_memory("rsync_module");
592 }
2e94e70e 593 if (!(argv[argc] = strdup(p)))
b7061c82 594 out_of_memory("rsync_module");
3591c066 595
20accf4d
WD
596 switch (start_glob) {
597 case 0:
874895d5 598 argc++;
20accf4d
WD
599 if (strcmp(line, ".") == 0)
600 start_glob = 1;
601 break;
602 case 1:
c95ca2a2
WD
603 if (pre_exec_pid) {
604 err_msg = finish_pre_exec(pre_exec_pid,
141c6265
WD
605 pre_exec_fd, p,
606 argc, argv);
c95ca2a2
WD
607 pre_exec_pid = 0;
608 }
20accf4d
WD
609 request = strdup(p);
610 start_glob = 2;
611 /* FALL THROUGH */
612 default:
c95ca2a2
WD
613 if (!err_msg)
614 glob_expand(name, &argv, &argc, &maxargs);
20accf4d
WD
615 break;
616 }
3591c066
AT
617 }
618
141c6265
WD
619 if (pre_exec_pid) {
620 err_msg = finish_pre_exec(pre_exec_pid, pre_exec_fd, request,
621 argc, argv);
622 }
c95ca2a2 623
18638730 624 verbose = 0; /* future verbosity is controlled by client options */
c9dc1300 625 ret = parse_arguments(&argc, (const char ***) &argv, 0);
7a6653bc 626 quiet = 0; /* Don't let someone try to be tricky. */
3591c066 627
7c2a9e76
WD
628 if (filesfrom_fd == 0)
629 filesfrom_fd = f_in;
630
7b372642 631 if (request) {
97cb8dc2 632 if (*auth_user) {
9e5a5ddb
WD
633 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
634 am_sender ? "on" : "to",
97cb8dc2 635 request, auth_user, host, addr);
d0d56395 636 } else {
9e5a5ddb
WD
637 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
638 am_sender ? "on" : "to",
d0d56395
AT
639 request, host, addr);
640 }
7b372642
AT
641 free(request);
642 }
643
15b7b73d 644#ifndef DEBUG
3591c066 645 /* don't allow the logs to be flooded too fast */
59b0e7a8
WD
646 if (verbose > lp_max_verbosity(i))
647 verbose = lp_max_verbosity(i);
0199b05f 648#endif
3591c066 649
1732b6c0
WD
650 if (protocol_version < 23
651 && (protocol_version == 22 || am_sender))
da3478b2 652 io_start_multiplex_out();
c95ca2a2 653 else if (!ret || err_msg) {
1732b6c0
WD
654 /* We have to get I/O multiplexing started so that we can
655 * get the error back to the client. This means getting
656 * the protocol setup finished first in later versions. */
657 setup_protocol(f_out, f_in);
b03c719f
WD
658 if (!am_sender) {
659 /* Since we failed in our option parsing, we may not
660 * have finished parsing that the client sent us a
661 * --files-from option, so look for it manually.
662 * Without this, the socket would be in the wrong
663 * state for the upcoming error message. */
664 if (!files_from) {
665 int i;
666 for (i = 0; i < argc; i++) {
667 if (strncmp(argv[i], "--files-from", 12) == 0) {
668 files_from = "";
669 break;
670 }
671 }
672 }
673 if (files_from)
674 write_byte(f_out, 0);
675 }
da3478b2 676 io_start_multiplex_out();
554e0a8d 677 }
15b7b73d 678
c95ca2a2
WD
679 if (!ret || err_msg) {
680 if (err_msg)
681 rprintf(FERROR, err_msg);
682 else
683 option_error();
7e561438 684 msleep(400);
4a7144ee 685 exit_cleanup(RERR_UNSUPPORTED);
41979ff8
AT
686 }
687
3e6ddb37
WD
688 if (lp_timeout(i) && lp_timeout(i) > io_timeout)
689 set_io_timeout(lp_timeout(i));
81791cfc 690
f041b025
WD
691 /* If we have some incoming/outgoing chmod changes, append them to
692 * any user-specified changes (making our changes have priority).
693 * We also get a pointer to just our changes so that a receiver
694 * process can use them separately if --perms wasn't specified. */
aaccaa88
WD
695 if (am_sender)
696 p = lp_outgoing_chmod(i);
697 else
698 p = lp_incoming_chmod(i);
8840ec0f 699 if (*p && !(daemon_chmod_modes = parse_chmod(p, &chmod_modes))) {
aaccaa88
WD
700 rprintf(FLOG, "Invalid \"%sing chmod\" directive: %s\n",
701 am_sender ? "outgo" : "incom", p);
702 }
730df9d2 703
c9dc1300 704 start_server(f_in, f_out, argc, argv);
3591c066
AT
705
706 return 0;
707}
708
7a6421fa
AT
709/* send a list of available modules to the client. Don't list those
710 with "list = False". */
3591c066
AT
711static void send_listing(int fd)
712{
713 int n = lp_numservices();
714 int i;
063393d6 715
c0422cea 716 for (i = 0; i < n; i++) {
3591c066 717 if (lp_list(i))
4a7144ee 718 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
c0422cea 719 }
8f04bb36 720
daa598df 721 if (protocol_version >= 25)
063393d6 722 io_printf(fd,"@RSYNCD: EXIT\n");
3591c066
AT
723}
724
68f40ebb 725/* this is called when a connection is established to a client
3591c066
AT
726 and we want to start talking. The setup of the system is done from
727 here */
68f40ebb 728int start_daemon(int f_in, int f_out)
3591c066 729{
20accf4d 730 char line[1024];
3591c066 731 char *motd;
439a198d
WD
732 char *addr = client_addr(f_in);
733 char *host = client_name(f_in);
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
91d324b4
WD
743 rprintf(FLOG, "connect from %s (%s)\n", host, addr);
744
68f40ebb
WD
745 if (!am_server) {
746 set_socket_options(f_in, "SO_KEEPALIVE");
34937987
WD
747 if (sockopts)
748 set_socket_options(f_in, sockopts);
749 else
750 set_socket_options(f_in, lp_socket_options());
68f40ebb
WD
751 set_nonblocking(f_in);
752 }
3591c066 753
5a8543b8 754 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
3591c066
AT
755
756 motd = lp_motd_file();
27d3cdbc 757 if (motd && *motd) {
0090cbdb 758 FILE *f = fopen(motd,"r");
3591c066 759 while (f && !feof(f)) {
2e94e70e 760 int len = fread(line, 1, sizeof line - 1, f);
3591c066
AT
761 if (len > 0) {
762 line[len] = 0;
68f40ebb 763 io_printf(f_out, "%s", line);
3591c066
AT
764 }
765 }
2e94e70e
WD
766 if (f)
767 fclose(f);
68f40ebb 768 io_printf(f_out, "\n");
3591c066
AT
769 }
770
2e94e70e 771 if (!read_line(f_in, line, sizeof line - 1))
91eee594 772 return -1;
91eee594 773
daa598df 774 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
68f40ebb 775 io_printf(f_out, "@ERROR: protocol startup error\n");
91eee594 776 return -1;
4a7144ee 777 }
daa598df
WD
778 if (protocol_version > remote_protocol)
779 protocol_version = remote_protocol;
91eee594 780
c0422cea
WD
781 line[0] = 0;
782 if (!read_line(f_in, line, sizeof line - 1))
783 return -1;
3591c066 784
c0422cea 785 if (!*line || strcmp(line, "#list") == 0) {
b3e15181
WD
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 798 if ((i = lp_number(line)) < 0) {
c0422cea
WD
799 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
800 line, host, addr);
801 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
802 return -1;
3591c066
AT
803 }
804
d749eb68
WD
805#ifdef HAVE_SIGACTION
806 sigact.sa_flags = SA_NOCLDSTOP;
807#endif
808 SIGACTION(SIGCHLD, remember_children);
809
439a198d 810 return rsync_module(f_in, f_out, i, addr, host);
3591c066
AT
811}
812
3591c066
AT
813int daemon_main(void)
814{
8638dd48 815 char *pid_file;
1a016bfd 816
3591c066 817 if (is_a_socket(STDIN_FILENO)) {
41979ff8
AT
818 int i;
819
820 /* we are running via inetd - close off stdout and
4a7144ee
WD
821 * stderr so that library functions (and getopt) don't
822 * try to use them. Redirect them to /dev/null */
2e94e70e 823 for (i = 1; i < 3; i++) {
4a7144ee 824 close(i);
41979ff8
AT
825 open("/dev/null", O_RDWR);
826 }
3eb38818 827
68f40ebb 828 return start_daemon(STDIN_FILENO, STDIN_FILENO);
3591c066
AT
829 }
830
13e29995 831 if (!no_detach)
4a7144ee 832 become_daemon();
3591c066 833
2e94e70e 834 if (!lp_load(config_file, 1))
65417579 835 exit_cleanup(RERR_SYNTAX);
f9e940ef 836
0c56b1ad
WD
837 if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
838 rsync_port = RSYNC_PORT;
3dfe6e97 839 if (bind_address == NULL && *lp_bind_address())
986aaaaa 840 bind_address = lp_bind_address();
0c56b1ad 841
45a83540 842 log_init();
f9e940ef 843
9e5a5ddb 844 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
4a7144ee
WD
845 RSYNC_VERSION, rsync_port);
846 /* TODO: If listening on a particular address, then show that
847 * address too. In fact, why not just do inet_ntop on the
848 * local address??? */
e42c9458 849
8638dd48 850 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
ad517ce5
DD
851 char pidbuf[16];
852 int fd;
05b7bab8 853 pid_t pid = getpid();
8638dd48 854 cleanup_set_pid(pid);
ad517ce5
DD
855 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
856 0666 & ~orig_umask)) == -1) {
4a7144ee 857 cleanup_set_pid(0);
4875d6b6 858 rsyserr(FLOG, errno, "failed to create pid file %s",
45c49b52 859 pid_file);
4a7144ee 860 exit_cleanup(RERR_FILEIO);
8638dd48 861 }
05b7bab8 862 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
ad517ce5
DD
863 write(fd, pidbuf, strlen(pidbuf));
864 close(fd);
8638dd48
DD
865 }
866
8ef4ffd6
AT
867 start_accept_loop(rsync_port, start_daemon);
868 return -1;
3591c066 869}