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