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