Improved the --relative section a little more.
[rsync/rsync.git] / clientserver.c
1 /* -*- c-file-style: "linux"; -*-
2  *
3  * Copyright (C) 1998-2001 by Andrew Tridgell <tridge@samba.org>
4  * Copyright (C) 2001-2002 by Martin Pool <mbp@samba.org>
5  *
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.
10  *
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.
15  *
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  */
20
21 /**
22  * @file
23  *
24  * The socket based protocol for setting up a connection with
25  * rsyncd.
26  **/
27
28 #include "rsync.h"
29
30 extern int verbose;
31 extern int list_only;
32 extern int am_sender;
33 extern int am_server;
34 extern int am_daemon;
35 extern int am_root;
36 extern int rsync_port;
37 extern int kluge_around_eof;
38 extern int daemon_over_rsh;
39 extern int sanitize_paths;
40 extern int filesfrom_fd;
41 extern int remote_protocol;
42 extern int protocol_version;
43 extern int io_timeout;
44 extern int orig_umask;
45 extern int no_detach;
46 extern int default_af_hint;
47 extern char *bind_address;
48 extern struct filter_list_struct server_filter_list;
49 extern char *config_file;
50 extern char *files_from;
51
52 char *auth_user;
53 int read_only = 0;
54 int daemon_log_format_has_i = 0;
55 int daemon_log_format_has_o_or_i = 0;
56 int module_id = -1;
57
58 /* Length of lp_path() string when in daemon mode & not chrooted, else 0. */
59 unsigned int module_dirlen = 0;
60
61 /**
62  * Run a client connected to an rsyncd.  The alternative to this
63  * function for remote-shell connections is do_cmd().
64  *
65  * After negotiating which module to use and reading the server's
66  * motd, this hands over to client_run().  Telling the server the
67  * module will cause it to chroot/setuid/etc.
68  *
69  * Instead of doing a transfer, the client may at this stage instead
70  * get a listing of remote modules and exit.
71  *
72  * @return -1 for error in startup, or the result of client_run().
73  * Either way, it eventually gets passed to exit_cleanup().
74  **/
75 int start_socket_client(char *host, char *path, int argc, char *argv[])
76 {
77         int fd, ret;
78         char *p, *user = NULL;
79
80         /* This is redundant with code in start_inband_exchange(), but this
81          * short-circuits a problem in the client before we open a socket,
82          * and the extra check won't hurt. */
83         if (*path == '/') {
84                 rprintf(FERROR,
85                         "ERROR: The remote path must start with a module name not a /\n");
86                 return -1;
87         }
88
89         if ((p = strrchr(host, '@')) != NULL) {
90                 user = host;
91                 host = p+1;
92                 *p = '\0';
93         }
94
95         fd = open_socket_out_wrapped(host, rsync_port, bind_address,
96                                      default_af_hint);
97         if (fd == -1)
98                 exit_cleanup(RERR_SOCKETIO);
99
100         ret = start_inband_exchange(user, path, fd, fd, argc);
101
102         return ret ? ret : client_run(fd, fd, -1, argc, argv);
103 }
104
105 int start_inband_exchange(char *user, char *path, int f_in, int f_out, 
106                           int argc)
107 {
108         int i;
109         char *sargs[MAX_ARGS];
110         int sargc = 0;
111         char line[BIGPATHBUFLEN];
112         char *p;
113
114         if (argc == 0 && !am_sender)
115                 list_only |= 1;
116
117         if (*path == '/') {
118                 rprintf(FERROR,
119                         "ERROR: The remote path must start with a module name\n");
120                 return -1;
121         }
122
123         if (!user)
124                 user = getenv("USER");
125         if (!user)
126                 user = getenv("LOGNAME");
127
128         io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
129
130         if (!read_line(f_in, line, sizeof line - 1)) {
131                 rprintf(FERROR, "rsync: did not see server greeting\n");
132                 return -1;
133         }
134
135         if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
136                 /* note that read_line strips of \n or \r */
137                 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
138                         line);
139                 return -1;
140         }
141         if (protocol_version > remote_protocol)
142                 protocol_version = remote_protocol;
143
144         if (list_only && protocol_version >= 29)
145                 list_only |= 2;
146
147         /* set daemon_over_rsh to false since we need to build the
148          * true set of args passed through the rsh/ssh connection;
149          * this is a no-op for direct-socket-connection mode */
150         daemon_over_rsh = 0;
151         server_options(sargs, &sargc);
152
153         sargs[sargc++] = ".";
154
155         if (path && *path)
156                 sargs[sargc++] = path;
157
158         sargs[sargc] = NULL;
159
160         if (verbose > 1)
161                 print_child_argv(sargs);
162
163         p = strchr(path,'/');
164         if (p) *p = 0;
165         io_printf(f_out, "%s\n", path);
166         if (p) *p = '/';
167
168         /* Old servers may just drop the connection here,
169          rather than sending a proper EXIT command.  Yuck. */
170         kluge_around_eof = list_only && protocol_version < 25 ? 1 : 0;
171
172         while (1) {
173                 if (!read_line(f_in, line, sizeof line - 1)) {
174                         rprintf(FERROR, "rsync: didn't get server startup line\n");
175                         return -1;
176                 }
177
178                 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
179                         auth_client(f_out, user, line+18);
180                         continue;
181                 }
182
183                 if (strcmp(line,"@RSYNCD: OK") == 0)
184                         break;
185
186                 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
187                         /* This is sent by recent versions of the
188                          * server to terminate the listing of modules.
189                          * We don't want to go on and transfer
190                          * anything; just exit. */
191                         exit(0);
192                 }
193
194                 if (strncmp(line, "@ERROR", 6) == 0) {
195                         rprintf(FERROR, "%s\n", line);
196                         /* This is always fatal; the server will now
197                          * close the socket. */
198                         return -1;
199                 }
200
201                 rprintf(FINFO, "%s\n", line);
202         }
203         kluge_around_eof = 0;
204
205         for (i = 0; i < sargc; i++) {
206                 io_printf(f_out, "%s\n", sargs[i]);
207         }
208         io_printf(f_out, "\n");
209
210         if (protocol_version < 23) {
211                 if (protocol_version == 22 || !am_sender)
212                         io_start_multiplex_in();
213         }
214
215         return 0;
216 }
217
218
219
220 static int rsync_module(int f_in, int f_out, int i)
221 {
222         int argc = 0;
223         int maxargs;
224         char **argv;
225         char **argp;
226         char line[BIGPATHBUFLEN];
227         uid_t uid = (uid_t)-2;  /* canonically "nobody" */
228         gid_t gid = (gid_t)-2;
229         char *p;
230 #ifdef HAVE_PUTENV
231         char *s;
232 #endif
233         char *addr = client_addr(f_in);
234         char *host = client_name(f_in);
235         char *name = lp_name(i);
236         int use_chroot = lp_use_chroot(i);
237         int start_glob = 0;
238         int ret;
239         char *request = NULL;
240
241         if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
242                 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
243                         name, host, addr);
244                 if (!lp_list(i))
245                         io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
246                 else {
247                         io_printf(f_out,
248                                   "@ERROR: access denied to %s from %s (%s)\n",
249                                   name, host, addr);
250                 }
251                 return -1;
252         }
253
254         if (am_daemon && am_server) {
255                 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
256                         name, host, addr);
257         }
258
259         if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
260                 if (errno) {
261                         rsyserr(FLOG, errno, "failed to open lock file %s",
262                                 safe_fname(lp_lock_file(i)));
263                         io_printf(f_out, "@ERROR: failed to open lock file\n");
264                 } else {
265                         rprintf(FLOG, "max connections (%d) reached\n",
266                                 lp_max_connections(i));
267                         io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
268                                 lp_max_connections(i));
269                 }
270                 return -1;
271         }
272
273         auth_user = auth_server(f_in, f_out, i, host, addr, "@RSYNCD: AUTHREQD ");
274
275         if (!auth_user) {
276                 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
277                 return -1;
278         }
279
280         module_id = i;
281
282         if (lp_read_only(i))
283                 read_only = 1;
284
285         if (lp_transfer_logging(i)) {
286                 if (log_format_has(lp_log_format(i), 'i'))
287                         daemon_log_format_has_i = 1;
288                 if (daemon_log_format_has_i
289                     || log_format_has(lp_log_format(i), 'o'))
290                         daemon_log_format_has_o_or_i = 1;
291         }
292
293         am_root = (MY_UID() == 0);
294
295         if (am_root) {
296                 p = lp_uid(i);
297                 if (!name_to_uid(p, &uid)) {
298                         if (!isdigit(*(unsigned char *)p)) {
299                                 rprintf(FLOG, "Invalid uid %s\n", p);
300                                 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
301                                 return -1;
302                         }
303                         uid = atoi(p);
304                 }
305
306                 p = lp_gid(i);
307                 if (!name_to_gid(p, &gid)) {
308                         if (!isdigit(*(unsigned char *)p)) {
309                                 rprintf(FLOG, "Invalid gid %s\n", p);
310                                 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
311                                 return -1;
312                         }
313                         gid = atoi(p);
314                 }
315         }
316
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. */
323
324         if (use_chroot || (module_dirlen = strlen(lp_path(i))) == 1) {
325                 module_dirlen = 0;
326                 set_filter_dir("/", 1);
327         } else
328                 set_filter_dir(lp_path(i), module_dirlen);
329
330         p = lp_filter(i);
331         parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
332                    XFLG_ANCHORED2ABS);
333
334         p = lp_include_from(i);
335         parse_filter_file(&server_filter_list, p, MATCHFLG_INCLUDE,
336             XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
337
338         p = lp_include(i);
339         parse_rule(&server_filter_list, p,
340                    MATCHFLG_INCLUDE | MATCHFLG_WORD_SPLIT,
341                    XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES);
342
343         p = lp_exclude_from(i);
344         parse_filter_file(&server_filter_list, p, 0,
345             XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES | XFLG_FATAL_ERRORS);
346
347         p = lp_exclude(i);
348         parse_rule(&server_filter_list, p, MATCHFLG_WORD_SPLIT,
349                    XFLG_ANCHORED2ABS | XFLG_OLD_PREFIXES);
350
351         log_init();
352
353 #ifdef HAVE_PUTENV
354         s = lp_prexfer_exec(i);
355         p = lp_postxfer_exec(i);
356         if ((s && *s) || (p && *p)) {
357                 char *modname, *modpath, *hostaddr, *hostname, *username;
358                 int status;
359                 if (asprintf(&modname, "RSYNC_MODULE_NAME=%s", name) < 0
360                  || asprintf(&modpath, "RSYNC_MODULE_PATH=%s", lp_path(i)) < 0
361                  || asprintf(&hostaddr, "RSYNC_HOST_ADDR=%s", addr) < 0
362                  || asprintf(&hostname, "RSYNC_HOST_NAME=%s", host) < 0
363                  || asprintf(&username, "RSYNC_USER_NAME=%s", auth_user) < 0)
364                         out_of_memory("rsync_module");
365                 putenv(modname);
366                 putenv(modpath);
367                 putenv(hostaddr);
368                 putenv(hostname);
369                 putenv(username);
370                 umask(orig_umask);
371                 if (s && *s) {
372                         status = system(s);
373                         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
374                                 rprintf(FLOG, "prexfer-exec failed\n");
375                                 io_printf(f_out, "@ERROR: prexfer-exec failed\n");
376                                 return -1;
377                         }
378                 }
379                 if (p && *p) {
380                         pid_t pid = fork();
381                         if (pid < 0) {
382                                 rsyserr(FLOG, errno, "fork failed");
383                                 io_printf(f_out, "@ERROR: fork failed\n");
384                                 return -1;
385                         }
386                         if (pid) {
387                                 char *ret1, *ret2;
388                                 waitpid(pid, &status, 0);
389                                 if (asprintf(&ret1, "RSYNC_RAW_STATUS=%d", status) > 0)
390                                         putenv(ret1);
391                                 if (WIFEXITED(status))
392                                         status = WEXITSTATUS(status);
393                                 else
394                                         status = -1;
395                                 if (asprintf(&ret2, "RSYNC_EXIT_STATUS=%d", status) > 0)
396                                         putenv(ret2);
397                                 system(p);
398                                 _exit(status);
399                         }
400                 }
401                 umask(0);
402         }
403 #endif
404
405         if (use_chroot) {
406                 /*
407                  * XXX: The 'use chroot' flag is a fairly reliable
408                  * source of confusion, because it fails under two
409                  * important circumstances: running as non-root,
410                  * running on Win32 (or possibly others).  On the
411                  * other hand, if you are running as root, then it
412                  * might be better to always use chroot.
413                  *
414                  * So, perhaps if we can't chroot we should just issue
415                  * a warning, unless a "require chroot" flag is set,
416                  * in which case we fail.
417                  */
418                 if (chroot(lp_path(i))) {
419                         rsyserr(FLOG, errno, "chroot %s failed",
420                                 safe_fname(lp_path(i)));
421                         io_printf(f_out, "@ERROR: chroot failed\n");
422                         return -1;
423                 }
424
425                 if (!push_dir("/")) {
426                         rsyserr(FLOG, errno, "chdir %s failed\n",
427                                 safe_fname(lp_path(i)));
428                         io_printf(f_out, "@ERROR: chdir failed\n");
429                         return -1;
430                 }
431
432         } else {
433                 if (!push_dir(lp_path(i))) {
434                         rsyserr(FLOG, errno, "chdir %s failed\n",
435                                 safe_fname(lp_path(i)));
436                         io_printf(f_out, "@ERROR: chdir failed\n");
437                         return -1;
438                 }
439                 sanitize_paths = 1;
440         }
441
442         if (am_root) {
443                 /* XXXX: You could argue that if the daemon is started
444                  * by a non-root user and they explicitly specify a
445                  * gid, then we should try to change to that gid --
446                  * this could be possible if it's already in their
447                  * supplementary groups. */
448
449                 /* TODO: Perhaps we need to document that if rsyncd is
450                  * started by somebody other than root it will inherit
451                  * all their supplementary groups. */
452
453                 if (setgid(gid)) {
454                         rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
455                         io_printf(f_out, "@ERROR: setgid failed\n");
456                         return -1;
457                 }
458 #ifdef HAVE_SETGROUPS
459                 /* Get rid of any supplementary groups this process
460                  * might have inheristed. */
461                 if (setgroups(1, &gid)) {
462                         rsyserr(FLOG, errno, "setgroups failed");
463                         io_printf(f_out, "@ERROR: setgroups failed\n");
464                         return -1;
465                 }
466 #endif
467
468                 if (setuid(uid)) {
469                         rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
470                         io_printf(f_out, "@ERROR: setuid failed\n");
471                         return -1;
472                 }
473
474                 am_root = (MY_UID() == 0);
475         }
476
477         io_printf(f_out, "@RSYNCD: OK\n");
478
479         maxargs = MAX_ARGS;
480         if (!(argv = new_array(char *, maxargs)))
481                 out_of_memory("rsync_module");
482         argv[argc++] = "rsyncd";
483
484         while (1) {
485                 if (!read_line(f_in, line, sizeof line - 1))
486                         return -1;
487
488                 if (!*line)
489                         break;
490
491                 p = line;
492
493                 if (argc == maxargs) {
494                         maxargs += MAX_ARGS;
495                         if (!(argv = realloc_array(argv, char *, maxargs)))
496                                 out_of_memory("rsync_module");
497                 }
498                 if (!(argv[argc] = strdup(p)))
499                         out_of_memory("rsync_module");
500
501                 switch (start_glob) {
502                 case 0:
503                         argc++;
504                         if (strcmp(line, ".") == 0)
505                                 start_glob = 1;
506                         break;
507                 case 1:
508                         request = strdup(p);
509                         start_glob = 2;
510                         /* FALL THROUGH */
511                 default:
512                         glob_expand(name, &argv, &argc, &maxargs);
513                         break;
514                 }
515         }
516
517         verbose = 0; /* future verbosity is controlled by client options */
518         argp = argv;
519         ret = parse_arguments(&argc, (const char ***) &argp, 0);
520
521         if (filesfrom_fd == 0)
522                 filesfrom_fd = f_in;
523
524         if (request) {
525                 if (*auth_user) {
526                         rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
527                                 am_sender ? "on" : "to",
528                                 request, auth_user, host, addr);
529                 } else {
530                         rprintf(FLOG, "rsync %s %s from %s (%s)\n",
531                                 am_sender ? "on" : "to",
532                                 request, host, addr);
533                 }
534                 free(request);
535         }
536
537 #ifndef DEBUG
538         /* don't allow the logs to be flooded too fast */
539         if (verbose > lp_max_verbosity(i))
540                 verbose = lp_max_verbosity(i);
541 #endif
542
543         if (protocol_version < 23
544             && (protocol_version == 22 || am_sender))
545                 io_start_multiplex_out();
546         else if (!ret) {
547                 /* We have to get I/O multiplexing started so that we can
548                  * get the error back to the client.  This means getting
549                  * the protocol setup finished first in later versions. */
550                 setup_protocol(f_out, f_in);
551                 if (!am_sender) {
552                         /* Since we failed in our option parsing, we may not
553                          * have finished parsing that the client sent us a
554                          * --files-from option, so look for it manually.
555                          * Without this, the socket would be in the wrong
556                          * state for the upcoming error message. */
557                         if (!files_from) {
558                                 int i;
559                                 for (i = 0; i < argc; i++) {
560                                         if (strncmp(argv[i], "--files-from", 12) == 0) {
561                                                 files_from = "";
562                                                 break;
563                                         }
564                                 }
565                         }
566                         if (files_from)
567                                 write_byte(f_out, 0);
568                 }
569                 io_start_multiplex_out();
570         }
571
572         if (!ret) {
573                 option_error();
574                 msleep(400);
575                 exit_cleanup(RERR_UNSUPPORTED);
576         }
577
578         if (lp_timeout(i) && lp_timeout(i) > io_timeout)
579                 set_io_timeout(lp_timeout(i));
580
581         start_server(f_in, f_out, argc, argp);
582
583         return 0;
584 }
585
586 /* send a list of available modules to the client. Don't list those
587    with "list = False". */
588 static void send_listing(int fd)
589 {
590         int n = lp_numservices();
591         int i;
592
593         for (i = 0; i < n; i++) {
594                 if (lp_list(i))
595                         io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
596         }
597
598         if (protocol_version >= 25)
599                 io_printf(fd,"@RSYNCD: EXIT\n");
600 }
601
602 /* this is called when a connection is established to a client
603    and we want to start talking. The setup of the system is done from
604    here */
605 int start_daemon(int f_in, int f_out)
606 {
607         char line[1024];
608         char *motd;
609         int i;
610
611         io_set_sock_fds(f_in, f_out);
612
613         if (!lp_load(config_file, 0))
614                 exit_cleanup(RERR_SYNTAX);
615
616         log_init();
617
618         if (!am_server) {
619                 set_socket_options(f_in, "SO_KEEPALIVE");
620                 set_socket_options(f_in, lp_socket_options());
621                 set_nonblocking(f_in);
622         }
623
624         io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
625
626         motd = lp_motd_file();
627         if (motd && *motd) {
628                 FILE *f = fopen(motd,"r");
629                 while (f && !feof(f)) {
630                         int len = fread(line, 1, sizeof line - 1, f);
631                         if (len > 0) {
632                                 line[len] = 0;
633                                 io_printf(f_out, "%s", line);
634                         }
635                 }
636                 if (f)
637                         fclose(f);
638                 io_printf(f_out, "\n");
639         }
640
641         if (!read_line(f_in, line, sizeof line - 1))
642                 return -1;
643
644         if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
645                 io_printf(f_out, "@ERROR: protocol startup error\n");
646                 return -1;
647         }
648         if (protocol_version > remote_protocol)
649                 protocol_version = remote_protocol;
650
651         line[0] = 0;
652         if (!read_line(f_in, line, sizeof line - 1))
653                 return -1;
654
655         if (!*line || strcmp(line, "#list") == 0) {
656                 send_listing(f_out);
657                 return -1;
658         }
659
660         if (*line == '#') {
661                 /* it's some sort of command that I don't understand */
662                 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
663                 return -1;
664         }
665
666         if ((i = lp_number(line)) < 0) {
667                 char *addr = client_addr(f_in);
668                 char *host = client_name(f_in);
669                 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
670                         line, host, addr);
671                 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
672                 return -1;
673         }
674
675         return rsync_module(f_in, f_out, i);
676 }
677
678
679 int daemon_main(void)
680 {
681         char *pid_file;
682
683         if (is_a_socket(STDIN_FILENO)) {
684                 int i;
685
686                 /* we are running via inetd - close off stdout and
687                  * stderr so that library functions (and getopt) don't
688                  * try to use them. Redirect them to /dev/null */
689                 for (i = 1; i < 3; i++) {
690                         close(i);
691                         open("/dev/null", O_RDWR);
692                 }
693
694                 return start_daemon(STDIN_FILENO, STDIN_FILENO);
695         }
696
697         if (!no_detach)
698                 become_daemon();
699
700         if (!lp_load(config_file, 1))
701                 exit_cleanup(RERR_SYNTAX);
702
703         if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
704                 rsync_port = RSYNC_PORT;
705         if (bind_address == NULL && *lp_bind_address())
706                 bind_address = lp_bind_address();
707
708         log_init();
709
710         rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
711                 RSYNC_VERSION, rsync_port);
712         /* TODO: If listening on a particular address, then show that
713          * address too.  In fact, why not just do inet_ntop on the
714          * local address??? */
715
716         if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
717                 char pidbuf[16];
718                 int fd;
719                 pid_t pid = getpid();
720                 cleanup_set_pid(pid);
721                 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
722                                         0666 & ~orig_umask)) == -1) {
723                         cleanup_set_pid(0);
724                         rsyserr(FLOG, errno, "failed to create pid file %s",
725                                 safe_fname(pid_file));
726                         exit_cleanup(RERR_FILEIO);
727                 }
728                 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
729                 write(fd, pidbuf, strlen(pidbuf));
730                 close(fd);
731         }
732
733         start_accept_loop(rsync_port, start_daemon);
734         return -1;
735 }