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