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