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