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