Some bf(...) tweaks.
[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;
8dad7fc6 34extern int kluge_around_eof;
6e195fe9 35extern int daemon_over_rsh;
b35d0d8e 36extern int sanitize_paths;
7c2a9e76 37extern int filesfrom_fd;
daa598df
WD
38extern int remote_protocol;
39extern int protocol_version;
6e195fe9 40extern int io_timeout;
6e195fe9
WD
41extern int no_detach;
42extern int default_af_hint;
ecc7623e
WD
43extern int logfile_format_has_i;
44extern int logfile_format_has_o_or_i;
c5b7aa15 45extern mode_t orig_umask;
6e195fe9 46extern char *bind_address;
34937987 47extern char *sockopts;
6e195fe9 48extern char *config_file;
ecc7623e 49extern char *logfile_format;
bf4679e8 50extern char *files_from;
fed1f3f4 51extern char *tmpdir;
730df9d2
WD
52extern struct chmod_mode_struct *chmod_modes;
53extern struct filter_list_struct server_filter_list;
6e195fe9
WD
54
55char *auth_user;
18638730 56int read_only = 0;
211bc43b 57int module_id = -1;
8840ec0f 58struct chmod_mode_struct *daemon_chmod_modes;
3591c066 59
e7bf7c01
WD
60/* Length of lp_path() string when in daemon mode & not chrooted, else 0. */
61unsigned int module_dirlen = 0;
62
d749eb68
WD
63#ifdef HAVE_SIGACTION
64static struct sigaction sigact;
65#endif
66
be2961da 67/**
bc363ea9 68 * Run a client connected to an rsyncd. The alternative to this
be2961da
MP
69 * function for remote-shell connections is do_cmd().
70 *
fdf88d75
MP
71 * After negotiating which module to use and reading the server's
72 * motd, this hands over to client_run(). Telling the server the
73 * module will cause it to chroot/setuid/etc.
74 *
75 * Instead of doing a transfer, the client may at this stage instead
76 * get a listing of remote modules and exit.
be2961da
MP
77 *
78 * @return -1 for error in startup, or the result of client_run().
d0829892 79 * Either way, it eventually gets passed to exit_cleanup().
be2961da 80 **/
3591c066
AT
81int start_socket_client(char *host, char *path, int argc, char *argv[])
82{
68f40ebb 83 int fd, ret;
2e94e70e 84 char *p, *user = NULL;
4a7144ee 85
1732b6c0
WD
86 /* This is redundant with code in start_inband_exchange(), but this
87 * short-circuits a problem in the client before we open a socket,
88 * and the extra check won't hurt. */
f98df1d9 89 if (*path == '/') {
1732b6c0
WD
90 rprintf(FERROR,
91 "ERROR: The remote path must start with a module name not a /\n");
f98df1d9
AT
92 return -1;
93 }
94
b31c92ed 95 if ((p = strrchr(host, '@')) != NULL) {
bcb7e502
AT
96 user = host;
97 host = p+1;
1732b6c0 98 *p = '\0';
bcb7e502
AT
99 }
100
837cbad9
WD
101 fd = open_socket_out_wrapped(host, rsync_port, bind_address,
102 default_af_hint);
df5cd107 103 if (fd == -1)
65417579 104 exit_cleanup(RERR_SOCKETIO);
68f40ebb 105
34937987
WD
106 set_socket_options(fd, sockopts);
107
68f40ebb
WD
108 ret = start_inband_exchange(user, path, fd, fd, argc);
109
180443af 110 return ret ? ret : client_run(fd, fd, -1, argc, argv);
68f40ebb
WD
111}
112
0f78b815 113int start_inband_exchange(char *user, char *path, int f_in, int f_out,
b9f592fb 114 int argc)
68f40ebb
WD
115{
116 int i;
117 char *sargs[MAX_ARGS];
118 int sargc = 0;
20accf4d 119 char line[BIGPATHBUFLEN];
68f40ebb 120 char *p;
68f40ebb
WD
121
122 if (argc == 0 && !am_sender)
9bcb2595 123 list_only |= 1;
68f40ebb
WD
124
125 if (*path == '/') {
1732b6c0
WD
126 rprintf(FERROR,
127 "ERROR: The remote path must start with a module name\n");
68f40ebb
WD
128 return -1;
129 }
130
2e94e70e
WD
131 if (!user)
132 user = getenv("USER");
133 if (!user)
134 user = getenv("LOGNAME");
68f40ebb 135
5a8543b8 136 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
91eee594 137
2e94e70e 138 if (!read_line(f_in, line, sizeof line - 1)) {
be2961da 139 rprintf(FERROR, "rsync: did not see server greeting\n");
3591c066
AT
140 return -1;
141 }
142
daa598df 143 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
be2961da
MP
144 /* note that read_line strips of \n or \r */
145 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
146 line);
3591c066
AT
147 return -1;
148 }
daa598df
WD
149 if (protocol_version > remote_protocol)
150 protocol_version = remote_protocol;
3591c066 151
9bcb2595
WD
152 if (list_only && protocol_version >= 29)
153 list_only |= 2;
154
155 /* set daemon_over_rsh to false since we need to build the
156 * true set of args passed through the rsh/ssh connection;
157 * this is a no-op for direct-socket-connection mode */
158 daemon_over_rsh = 0;
159 server_options(sargs, &sargc);
160
161 sargs[sargc++] = ".";
162
163 if (path && *path)
164 sargs[sargc++] = path;
165
166 sargs[sargc] = NULL;
167
168 if (verbose > 1)
169 print_child_argv(sargs);
170
2c91d3d3
AT
171 p = strchr(path,'/');
172 if (p) *p = 0;
68f40ebb 173 io_printf(f_out, "%s\n", path);
2c91d3d3
AT
174 if (p) *p = '/';
175
063393d6
MP
176 /* Old servers may just drop the connection here,
177 rather than sending a proper EXIT command. Yuck. */
8dad7fc6 178 kluge_around_eof = list_only && protocol_version < 25 ? 1 : 0;
7a55d06e 179
063393d6 180 while (1) {
2e94e70e 181 if (!read_line(f_in, line, sizeof line - 1)) {
be2961da 182 rprintf(FERROR, "rsync: didn't get server startup line\n");
3591c066
AT
183 return -1;
184 }
31593dd6 185
31593dd6 186 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
68f40ebb 187 auth_client(f_out, user, line+18);
31593dd6
AT
188 continue;
189 }
31593dd6 190
2e94e70e
WD
191 if (strcmp(line,"@RSYNCD: OK") == 0)
192 break;
8f04bb36 193
cae95647
MP
194 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
195 /* This is sent by recent versions of the
196 * server to terminate the listing of modules.
197 * We don't want to go on and transfer
198 * anything; just exit. */
199 exit(0);
200 }
8f04bb36 201
136ac7ec 202 if (strncmp(line, "@ERROR", 6) == 0) {
1732b6c0 203 rprintf(FERROR, "%s\n", line);
136ac7ec
MP
204 /* This is always fatal; the server will now
205 * close the socket. */
180443af 206 return -1;
136ac7ec 207 }
180443af 208
9ce7fc38
WD
209 /* This might be a MOTD line or a module listing, but there is
210 * no way to differentiate it. The manpage mentions this. */
211 if (output_motd)
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
10ae3406 331 if (lp_transfer_logging(i) && !logfile_format)
ecc7623e 332 logfile_format = lp_log_format(i);
10ae3406
WD
333 if (log_format_has(logfile_format, 'i'))
334 logfile_format_has_i = 1;
335 if (logfile_format_has_i || log_format_has(logfile_format, 'o'))
336 logfile_format_has_o_or_i = 1;
c0814b81 337
6fe05820 338 am_root = (MY_UID() == 0);
8ef4ffd6 339
716baed7
DD
340 if (am_root) {
341 p = lp_uid(i);
342 if (!name_to_uid(p, &uid)) {
2dc7b8bd 343 if (!isDigit(p)) {
1732b6c0 344 rprintf(FLOG, "Invalid uid %s\n", p);
68f40ebb 345 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
716baed7 346 return -1;
4a7144ee 347 }
716baed7
DD
348 uid = atoi(p);
349 }
350
351 p = lp_gid(i);
352 if (!name_to_gid(p, &gid)) {
2dc7b8bd 353 if (!isDigit(p)) {
1732b6c0 354 rprintf(FLOG, "Invalid gid %s\n", p);
68f40ebb 355 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
716baed7 356 return -1;
4a7144ee 357 }
716baed7
DD
358 gid = atoi(p);
359 }
8ef4ffd6 360 }
3b2b5345 361
4a7144ee
WD
362 /* TODO: If we're not root, but the configuration requests
363 * that we change to some uid other than the current one, then
364 * log a warning. */
365
366 /* TODO: Perhaps take a list of gids, and make them into the
367 * supplementary groups. */
8ef4ffd6 368
46bffd98 369 if (use_chroot || (module_dirlen = strlen(lp_path(i))) == 1) {
e7bf7c01 370 module_dirlen = 0;
7842418b 371 set_filter_dir("/", 1);
46bffd98 372 } else
7842418b 373 set_filter_dir(lp_path(i), module_dirlen);
e7bf7c01
WD
374
375 p = lp_filter(i);
ebfd1a1c 376 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
2c8c8bba 377 XFLG_ABS_IF_SLASH);
837cbad9 378
cd64343a 379 p = lp_include_from(i);
ebfd1a1c 380 parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
2c8c8bba 381 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
cd64343a
DD
382
383 p = lp_include(i);
ebfd1a1c 384 parse_rule(&server_filter_list, p,
0a68f869 385 MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
2c8c8bba 386 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
cd64343a 387
8f3a2d54 388 p = lp_exclude_from(i);
ebfd1a1c 389 parse_filter_file(&server_filter_list, p, 0,
2c8c8bba 390 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
8f3a2d54 391
5805327b 392 p = lp_exclude(i);
ebfd1a1c 393 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
2c8c8bba 394 XFLG_ABS_IF_SLASH | XFLG_OLD_PREFIXES);
8f3a2d54 395
6dc9b74b 396 log_init(1);
1a016bfd 397
9d0d18b5 398#ifdef HAVE_PUTENV
c95ca2a2 399 if (*lp_prexfer_exec(i) || *lp_postxfer_exec(i)) {
9d0d18b5
WD
400 char *modname, *modpath, *hostaddr, *hostname, *username;
401 int status;
402 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
403 || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", lp_path(i)) < 0
404 || asprintf(&hostaddr, "RSYNC_HOST_ADDR=%s", addr) < 0
405 || asprintf(&hostname, "RSYNC_HOST_NAME=%s", host) < 0
406 || asprintf(&username, "RSYNC_USER_NAME=%s", auth_user) < 0)
407 out_of_memory("rsync_module");
408 putenv(modname);
409 putenv(modpath);
410 putenv(hostaddr);
411 putenv(hostname);
412 putenv(username);
413 umask(orig_umask);
c95ca2a2
WD
414 /* For post-xfer exec, fork a new process to run the rsync
415 * daemon while this process waits for the exit status and
416 * runs the indicated command at that point. */
417 if (*lp_postxfer_exec(i)) {
9d0d18b5
WD
418 pid_t pid = fork();
419 if (pid < 0) {
420 rsyserr(FLOG, errno, "fork failed");
421 io_printf(f_out, "@ERROR: fork failed\n");
422 return -1;
423 }
424 if (pid) {
503114a7
WD
425 if (asprintf(&p, "RSYNC_PID=%ld", (long)pid) > 0)
426 putenv(p);
c95ca2a2
WD
427 if (wait_process(pid, &status, 0) < 0)
428 status = -1;
503114a7
WD
429 if (asprintf(&p, "RSYNC_RAW_STATUS=%d", status) > 0)
430 putenv(p);
9d0d18b5
WD
431 if (WIFEXITED(status))
432 status = WEXITSTATUS(status);
433 else
434 status = -1;
503114a7
WD
435 if (asprintf(&p, "RSYNC_EXIT_STATUS=%d", status) > 0)
436 putenv(p);
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];
503114a7
WD
446 if (asprintf(&p, "RSYNC_PID=%ld", (long)getpid()) > 0)
447 putenv(p);
c95ca2a2
WD
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);
503114a7
WD
461 if (asprintf(&p, "RSYNC_REQUEST=%s", buf) > 0)
462 putenv(p);
141c6265
WD
463 for (j = 0; ; j++) {
464 len = read_arg_from_pipe(fds[0], buf,
465 BIGPATHBUFLEN);
466 if (len <= 0) {
467 if (!len)
468 break;
469 _exit(1);
470 }
503114a7
WD
471 if (asprintf(&p, "RSYNC_ARG%d=%s", j, buf) > 0)
472 putenv(p);
141c6265
WD
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
6f3684ff 510 if (!push_dir("/", 0)) {
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 {
6f3684ff 518 if (!push_dir(lp_path(i), 0)) {
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];
374c3e12 731 char *motd, *addr, *host;
c0422cea 732 int i;
4cdf25e4 733
da3478b2
WD
734 io_set_sock_fds(f_in, f_out);
735
374c3e12
WD
736 /* We must load the config file before calling any function that
737 * might cause log-file output to occur. This ensures that the
738 * "log file" param gets honored for the 2 non-forked use-cases
08e0a629 739 * (when rsync is run by init and run by a remote shell). */
2e94e70e 740 if (!lp_load(config_file, 0))
65417579 741 exit_cleanup(RERR_SYNTAX);
3591c066 742
374c3e12
WD
743 addr = client_addr(f_in);
744 host = client_name(f_in);
745 rprintf(FLOG, "connect from %s (%s)\n", host, addr);
91d324b4 746
68f40ebb
WD
747 if (!am_server) {
748 set_socket_options(f_in, "SO_KEEPALIVE");
34937987
WD
749 if (sockopts)
750 set_socket_options(f_in, sockopts);
751 else
752 set_socket_options(f_in, lp_socket_options());
68f40ebb
WD
753 set_nonblocking(f_in);
754 }
3591c066 755
5a8543b8 756 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
3591c066
AT
757
758 motd = lp_motd_file();
27d3cdbc 759 if (motd && *motd) {
0090cbdb 760 FILE *f = fopen(motd,"r");
3591c066 761 while (f && !feof(f)) {
2e94e70e 762 int len = fread(line, 1, sizeof line - 1, f);
3591c066
AT
763 if (len > 0) {
764 line[len] = 0;
68f40ebb 765 io_printf(f_out, "%s", line);
3591c066
AT
766 }
767 }
2e94e70e
WD
768 if (f)
769 fclose(f);
68f40ebb 770 io_printf(f_out, "\n");
3591c066
AT
771 }
772
2e94e70e 773 if (!read_line(f_in, line, sizeof line - 1))
91eee594 774 return -1;
91eee594 775
daa598df 776 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
68f40ebb 777 io_printf(f_out, "@ERROR: protocol startup error\n");
91eee594 778 return -1;
4a7144ee 779 }
daa598df
WD
780 if (protocol_version > remote_protocol)
781 protocol_version = remote_protocol;
91eee594 782
c0422cea
WD
783 line[0] = 0;
784 if (!read_line(f_in, line, sizeof line - 1))
785 return -1;
3591c066 786
c0422cea 787 if (!*line || strcmp(line, "#list") == 0) {
b3e15181
WD
788 rprintf(FLOG, "module-list request from %s (%s)\n",
789 host, addr);
c0422cea
WD
790 send_listing(f_out);
791 return -1;
792 }
3591c066 793
c0422cea
WD
794 if (*line == '#') {
795 /* it's some sort of command that I don't understand */
796 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
797 return -1;
798 }
3591c066 799
c0422cea 800 if ((i = lp_number(line)) < 0) {
c0422cea
WD
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
439a198d 812 return rsync_module(f_in, f_out, i, addr, host);
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
6dc9b74b 844 log_init(0);
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}