Fixed one typo and improved another sentence.
[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 43extern int io_timeout;
ad54dcc8 44extern int select_timeout;
6e195fe9
WD
45extern int orig_umask;
46extern int no_detach;
47extern int default_af_hint;
48extern char *bind_address;
7842418b 49extern struct filter_list_struct server_filter_list;
6e195fe9 50extern char *config_file;
bf4679e8 51extern char *files_from;
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
103 return ret < 0? ret : client_run(fd, fd, -1, argc, argv);
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;
112 char line[MAXPATHLEN];
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. */
199 return RERR_STARTCLIENT;
200 } else {
c613d370 201 rprintf(FINFO,"%s\n", line);
136ac7ec 202 }
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
219
220
68f40ebb 221static int rsync_module(int f_in, int f_out, int i)
3591c066 222{
2e94e70e 223 int argc = 0;
b7061c82
WD
224 int maxargs;
225 char **argv;
3591c066 226 char **argp;
e42c9458 227 char line[MAXPATHLEN];
2af27ad9 228 uid_t uid = (uid_t)-2; /* canonically "nobody" */
1a016bfd 229 gid_t gid = (gid_t)-2;
8ef4ffd6 230 char *p;
09021eab
DD
231 char *addr = client_addr(f_in);
232 char *host = client_name(f_in);
874895d5 233 char *name = lp_name(i);
8638dd48 234 int use_chroot = lp_use_chroot(i);
2e94e70e 235 int start_glob = 0;
41979ff8 236 int ret;
2e94e70e 237 char *request = NULL;
56c473b7
AT
238
239 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
1732b6c0 240 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
31ec50d7 241 name, host, addr);
c0422cea
WD
242 if (!lp_list(i))
243 io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
244 else {
245 io_printf(f_out,
246 "@ERROR: access denied to %s from %s (%s)\n",
247 name, host, addr);
248 }
56c473b7
AT
249 return -1;
250 }
3591c066 251
68f40ebb 252 if (am_daemon && am_server) {
9e5a5ddb 253 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
68f40ebb
WD
254 name, host, addr);
255 }
256
5e71c444 257 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
8d72ef6e 258 if (errno) {
1732b6c0 259 rsyserr(FLOG, errno, "failed to open lock file %s",
4875d6b6
WD
260 safe_fname(lp_lock_file(i)));
261 io_printf(f_out, "@ERROR: failed to open lock file\n");
8d72ef6e 262 } else {
1732b6c0 263 rprintf(FLOG, "max connections (%d) reached\n",
5e71c444 264 lp_max_connections(i));
4ccfd96c 265 io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
837cbad9 266 lp_max_connections(i));
8d72ef6e 267 }
0c515f17
AT
268 return -1;
269 }
270
68f40ebb 271 auth_user = auth_server(f_in, f_out, i, addr, "@RSYNCD: AUTHREQD ");
d0d56395 272
97cb8dc2 273 if (!auth_user) {
1732b6c0 274 rprintf(FLOG, "auth failed on module %s from %s (%s)\n",
68f40ebb
WD
275 name, host, addr);
276 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
4a7144ee 277 return -1;
d0d56395
AT
278 }
279
3591c066
AT
280 module_id = i;
281
211bc43b 282 if (lp_read_only(i))
18638730
WD
283 read_only = 1;
284
f39b2060 285 if (lp_transfer_logging(i)) {
624d6be2 286 if (log_format_has(lp_log_format(i), 'i'))
f39b2060
WD
287 daemon_log_format_has_i = 1;
288 if (daemon_log_format_has_i
624d6be2 289 || log_format_has(lp_log_format(i), 'o'))
f39b2060
WD
290 daemon_log_format_has_o_or_i = 1;
291 }
c0814b81 292
6fe05820 293 am_root = (MY_UID() == 0);
8ef4ffd6 294
716baed7
DD
295 if (am_root) {
296 p = lp_uid(i);
297 if (!name_to_uid(p, &uid)) {
2e94e70e 298 if (!isdigit(*(unsigned char *)p)) {
1732b6c0 299 rprintf(FLOG, "Invalid uid %s\n", p);
68f40ebb 300 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
716baed7 301 return -1;
4a7144ee 302 }
716baed7
DD
303 uid = atoi(p);
304 }
305
306 p = lp_gid(i);
307 if (!name_to_gid(p, &gid)) {
2e94e70e 308 if (!isdigit(*(unsigned char *)p)) {
1732b6c0 309 rprintf(FLOG, "Invalid gid %s\n", p);
68f40ebb 310 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
716baed7 311 return -1;
4a7144ee 312 }
716baed7
DD
313 gid = atoi(p);
314 }
8ef4ffd6 315 }
3b2b5345 316
4a7144ee
WD
317 /* TODO: If we're not root, but the configuration requests
318 * that we change to some uid other than the current one, then
319 * log a warning. */
320
321 /* TODO: Perhaps take a list of gids, and make them into the
322 * supplementary groups. */
8ef4ffd6 323
46bffd98 324 if (use_chroot || (module_dirlen = strlen(lp_path(i))) == 1) {
e7bf7c01 325 module_dirlen = 0;
7842418b 326 set_filter_dir("/", 1);
46bffd98 327 } else
7842418b 328 set_filter_dir(lp_path(i), module_dirlen);
e7bf7c01
WD
329
330 p = lp_filter(i);
ebfd1a1c 331 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
0a68f869 332 XFLG_ANCHORED2ABS);
837cbad9 333
cd64343a 334 p = lp_include_from(i);
ebfd1a1c 335 parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
0a68f869 336 XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
cd64343a
DD
337
338 p = lp_include(i);
ebfd1a1c 339 parse_rule(&server_filter_list, p,
0a68f869
WD
340 MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
341 XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES);
cd64343a 342
8f3a2d54 343 p = lp_exclude_from(i);
ebfd1a1c 344 parse_filter_file(&server_filter_list, p, 0,
0a68f869 345 XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
8f3a2d54 346
5805327b 347 p = lp_exclude(i);
ebfd1a1c 348 parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
0a68f869 349 XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES);
8f3a2d54 350
45a83540 351 log_init();
1a016bfd 352
8638dd48 353 if (use_chroot) {
b52c1d9d
MP
354 /*
355 * XXX: The 'use chroot' flag is a fairly reliable
356 * source of confusion, because it fails under two
357 * important circumstances: running as non-root,
358 * running on Win32 (or possibly others). On the
359 * other hand, if you are running as root, then it
360 * might be better to always use chroot.
361 *
362 * So, perhaps if we can't chroot we should just issue
363 * a warning, unless a "require chroot" flag is set,
364 * in which case we fail.
365 */
8638dd48 366 if (chroot(lp_path(i))) {
4875d6b6
WD
367 rsyserr(FLOG, errno, "chroot %s failed",
368 safe_fname(lp_path(i)));
68f40ebb 369 io_printf(f_out, "@ERROR: chroot failed\n");
8638dd48
DD
370 return -1;
371 }
3591c066 372
59187666 373 if (!push_dir("/")) {
4875d6b6
WD
374 rsyserr(FLOG, errno, "chdir %s failed\n",
375 safe_fname(lp_path(i)));
68f40ebb 376 io_printf(f_out, "@ERROR: chdir failed\n");
8638dd48
DD
377 return -1;
378 }
3591c066 379
716baed7 380 } else {
59187666 381 if (!push_dir(lp_path(i))) {
4875d6b6
WD
382 rsyserr(FLOG, errno, "chdir %s failed\n",
383 safe_fname(lp_path(i)));
68f40ebb 384 io_printf(f_out, "@ERROR: chdir failed\n");
716baed7
DD
385 return -1;
386 }
cb13abfe 387 sanitize_paths = 1;
716baed7
DD
388 }
389
390 if (am_root) {
715d1f45
MP
391 /* XXXX: You could argue that if the daemon is started
392 * by a non-root user and they explicitly specify a
393 * gid, then we should try to change to that gid --
394 * this could be possible if it's already in their
395 * supplementary groups. */
396
397 /* TODO: Perhaps we need to document that if rsyncd is
398 * started by somebody other than root it will inherit
399 * all their supplementary groups. */
400
716baed7 401 if (setgid(gid)) {
1732b6c0 402 rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
68f40ebb 403 io_printf(f_out, "@ERROR: setgid failed\n");
8638dd48
DD
404 return -1;
405 }
4f5b0756 406#ifdef HAVE_SETGROUPS
6969ebcf
WD
407 /* Get rid of any supplementary groups this process
408 * might have inheristed. */
409 if (setgroups(1, &gid)) {
1732b6c0 410 rsyserr(FLOG, errno, "setgroups failed");
6969ebcf
WD
411 io_printf(f_out, "@ERROR: setgroups failed\n");
412 return -1;
413 }
414#endif
3591c066 415
716baed7 416 if (setuid(uid)) {
1732b6c0 417 rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
68f40ebb 418 io_printf(f_out, "@ERROR: setuid failed\n");
8638dd48
DD
419 return -1;
420 }
421
6fe05820 422 am_root = (MY_UID() == 0);
3591c066
AT
423 }
424
68f40ebb 425 io_printf(f_out, "@RSYNCD: OK\n");
3591c066 426
b7061c82
WD
427 maxargs = MAX_ARGS;
428 if (!(argv = new_array(char *, maxargs)))
429 out_of_memory("rsync_module");
3591c066
AT
430 argv[argc++] = "rsyncd";
431
432 while (1) {
2e94e70e 433 if (!read_line(f_in, line, sizeof line - 1))
3591c066 434 return -1;
3591c066 435
2e94e70e
WD
436 if (!*line)
437 break;
3591c066 438
874895d5
AT
439 p = line;
440
b7061c82
WD
441 if (argc == maxargs) {
442 maxargs += MAX_ARGS;
443 if (!(argv = realloc_array(argv, char *, maxargs)))
444 out_of_memory("rsync_module");
445 }
2e94e70e 446 if (!(argv[argc] = strdup(p)))
b7061c82 447 out_of_memory("rsync_module");
3591c066 448
874895d5 449 if (start_glob) {
1a016bfd 450 if (start_glob == 1) {
7b372642 451 request = strdup(p);
1a016bfd
AT
452 start_glob++;
453 }
b7061c82 454 glob_expand(name, &argv, &argc, &maxargs);
2e94e70e 455 } else
874895d5 456 argc++;
874895d5 457
2e94e70e 458 if (strcmp(line, ".") == 0)
874895d5 459 start_glob = 1;
3591c066
AT
460 }
461
18638730 462 verbose = 0; /* future verbosity is controlled by client options */
4a7144ee 463 argp = argv;
15b7b73d 464 ret = parse_arguments(&argc, (const char ***) &argp, 0);
3591c066 465
7c2a9e76
WD
466 if (filesfrom_fd == 0)
467 filesfrom_fd = f_in;
468
7b372642 469 if (request) {
97cb8dc2 470 if (*auth_user) {
9e5a5ddb
WD
471 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
472 am_sender ? "on" : "to",
97cb8dc2 473 request, auth_user, host, addr);
d0d56395 474 } else {
9e5a5ddb
WD
475 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
476 am_sender ? "on" : "to",
d0d56395
AT
477 request, host, addr);
478 }
7b372642
AT
479 free(request);
480 }
481
15b7b73d 482#ifndef DEBUG
3591c066 483 /* don't allow the logs to be flooded too fast */
33e9d10d
WD
484 if (verbose > lp_max_verbosity())
485 verbose = lp_max_verbosity();
0199b05f 486#endif
3591c066 487
1732b6c0
WD
488 if (protocol_version < 23
489 && (protocol_version == 22 || am_sender))
da3478b2 490 io_start_multiplex_out();
1732b6c0
WD
491 else if (!ret) {
492 /* We have to get I/O multiplexing started so that we can
493 * get the error back to the client. This means getting
494 * the protocol setup finished first in later versions. */
495 setup_protocol(f_out, f_in);
b03c719f
WD
496 if (!am_sender) {
497 /* Since we failed in our option parsing, we may not
498 * have finished parsing that the client sent us a
499 * --files-from option, so look for it manually.
500 * Without this, the socket would be in the wrong
501 * state for the upcoming error message. */
502 if (!files_from) {
503 int i;
504 for (i = 0; i < argc; i++) {
505 if (strncmp(argv[i], "--files-from", 12) == 0) {
506 files_from = "";
507 break;
508 }
509 }
510 }
511 if (files_from)
512 write_byte(f_out, 0);
513 }
da3478b2 514 io_start_multiplex_out();
554e0a8d 515 }
15b7b73d 516
41979ff8 517 if (!ret) {
4a7144ee 518 option_error();
7e561438 519 msleep(400);
4a7144ee 520 exit_cleanup(RERR_UNSUPPORTED);
41979ff8
AT
521 }
522
ad54dcc8 523 if (lp_timeout(i)) {
81791cfc 524 io_timeout = lp_timeout(i);
43bab403 525 if (io_timeout < select_timeout)
ad54dcc8
WD
526 select_timeout = io_timeout;
527 }
81791cfc 528
68f40ebb 529 start_server(f_in, f_out, argc, argp);
3591c066
AT
530
531 return 0;
532}
533
7a6421fa
AT
534/* send a list of available modules to the client. Don't list those
535 with "list = False". */
3591c066
AT
536static void send_listing(int fd)
537{
538 int n = lp_numservices();
539 int i;
063393d6 540
c0422cea 541 for (i = 0; i < n; i++) {
3591c066 542 if (lp_list(i))
4a7144ee 543 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
c0422cea 544 }
8f04bb36 545
daa598df 546 if (protocol_version >= 25)
063393d6 547 io_printf(fd,"@RSYNCD: EXIT\n");
3591c066
AT
548}
549
68f40ebb 550/* this is called when a connection is established to a client
3591c066
AT
551 and we want to start talking. The setup of the system is done from
552 here */
68f40ebb 553int start_daemon(int f_in, int f_out)
3591c066 554{
7a6421fa 555 char line[200];
3591c066 556 char *motd;
c0422cea 557 int i;
4cdf25e4 558
da3478b2
WD
559 io_set_sock_fds(f_in, f_out);
560
2e94e70e 561 if (!lp_load(config_file, 0))
65417579 562 exit_cleanup(RERR_SYNTAX);
3591c066 563
30e8c8e1
DD
564 log_init();
565
68f40ebb
WD
566 if (!am_server) {
567 set_socket_options(f_in, "SO_KEEPALIVE");
568 set_socket_options(f_in, lp_socket_options());
569 set_nonblocking(f_in);
570 }
3591c066 571
5a8543b8 572 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
3591c066
AT
573
574 motd = lp_motd_file();
27d3cdbc 575 if (motd && *motd) {
0090cbdb 576 FILE *f = fopen(motd,"r");
3591c066 577 while (f && !feof(f)) {
2e94e70e 578 int len = fread(line, 1, sizeof line - 1, f);
3591c066
AT
579 if (len > 0) {
580 line[len] = 0;
68f40ebb 581 io_printf(f_out, "%s", line);
3591c066
AT
582 }
583 }
2e94e70e
WD
584 if (f)
585 fclose(f);
68f40ebb 586 io_printf(f_out, "\n");
3591c066
AT
587 }
588
2e94e70e 589 if (!read_line(f_in, line, sizeof line - 1))
91eee594 590 return -1;
91eee594 591
daa598df 592 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
68f40ebb 593 io_printf(f_out, "@ERROR: protocol startup error\n");
91eee594 594 return -1;
4a7144ee 595 }
daa598df
WD
596 if (protocol_version > remote_protocol)
597 protocol_version = remote_protocol;
91eee594 598
c0422cea
WD
599 line[0] = 0;
600 if (!read_line(f_in, line, sizeof line - 1))
601 return -1;
3591c066 602
c0422cea
WD
603 if (!*line || strcmp(line, "#list") == 0) {
604 send_listing(f_out);
605 return -1;
606 }
3591c066 607
c0422cea
WD
608 if (*line == '#') {
609 /* it's some sort of command that I don't understand */
610 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
611 return -1;
612 }
3591c066 613
c0422cea
WD
614 if ((i = lp_number(line)) < 0) {
615 char *addr = client_addr(f_in);
616 char *host = client_name(f_in);
617 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
618 line, host, addr);
619 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
620 return -1;
3591c066
AT
621 }
622
68f40ebb 623 return rsync_module(f_in, f_out, i);
3591c066
AT
624}
625
626
627int daemon_main(void)
628{
8638dd48 629 char *pid_file;
1a016bfd 630
3591c066 631 if (is_a_socket(STDIN_FILENO)) {
41979ff8
AT
632 int i;
633
634 /* we are running via inetd - close off stdout and
4a7144ee
WD
635 * stderr so that library functions (and getopt) don't
636 * try to use them. Redirect them to /dev/null */
2e94e70e 637 for (i = 1; i < 3; i++) {
4a7144ee 638 close(i);
41979ff8
AT
639 open("/dev/null", O_RDWR);
640 }
3eb38818 641
68f40ebb 642 return start_daemon(STDIN_FILENO, STDIN_FILENO);
3591c066
AT
643 }
644
13e29995 645 if (!no_detach)
4a7144ee 646 become_daemon();
3591c066 647
2e94e70e 648 if (!lp_load(config_file, 1))
65417579 649 exit_cleanup(RERR_SYNTAX);
f9e940ef 650
0c56b1ad
WD
651 if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
652 rsync_port = RSYNC_PORT;
3dfe6e97 653 if (bind_address == NULL && *lp_bind_address())
986aaaaa 654 bind_address = lp_bind_address();
0c56b1ad 655
45a83540 656 log_init();
f9e940ef 657
9e5a5ddb 658 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
4a7144ee
WD
659 RSYNC_VERSION, rsync_port);
660 /* TODO: If listening on a particular address, then show that
661 * address too. In fact, why not just do inet_ntop on the
662 * local address??? */
e42c9458 663
8638dd48 664 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
ad517ce5
DD
665 char pidbuf[16];
666 int fd;
05b7bab8 667 pid_t pid = getpid();
8638dd48 668 cleanup_set_pid(pid);
ad517ce5
DD
669 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
670 0666 & ~orig_umask)) == -1) {
4a7144ee 671 cleanup_set_pid(0);
4875d6b6
WD
672 rsyserr(FLOG, errno, "failed to create pid file %s",
673 safe_fname(pid_file));
4a7144ee 674 exit_cleanup(RERR_FILEIO);
8638dd48 675 }
05b7bab8 676 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
ad517ce5
DD
677 write(fd, pidbuf, strlen(pidbuf));
678 close(fd);
8638dd48
DD
679 }
680
8ef4ffd6
AT
681 start_accept_loop(rsync_port, start_daemon);
682 return -1;
3591c066 683}