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