Removed some excessive parens.
[rsync/rsync.git] / clientserver.c
... / ...
CommitLineData
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
30extern int am_sender;
31extern int am_server;
32extern int am_daemon;
33extern int am_root;
34extern int module_id;
35extern int read_only;
36extern int verbose;
37extern int rsync_port;
38extern int kludge_around_eof;
39extern int daemon_over_rsh;
40extern int list_only;
41extern int sanitize_paths;
42extern int filesfrom_fd;
43extern int remote_protocol;
44extern int protocol_version;
45extern int io_timeout;
46extern int orig_umask;
47extern int no_detach;
48extern int default_af_hint;
49extern char *bind_address;
50extern struct exclude_list_struct server_exclude_list;
51extern char *exclude_path_prefix;
52extern char *config_file;
53
54char *auth_user;
55
56/**
57 * Run a client connected to an rsyncd. The alternative to this
58 * function for remote-shell connections is do_cmd().
59 *
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.
66 *
67 * @return -1 for error in startup, or the result of client_run().
68 * Either way, it eventually gets passed to exit_cleanup().
69 **/
70int start_socket_client(char *host, char *path, int argc, char *argv[])
71{
72 int fd, ret;
73 char *p, *user = NULL;
74
75 /* this is redundant with code in start_inband_exchange(), but
76 * this short-circuits a problem before we open a socket, and
77 * the extra check won't hurt */
78 if (*path == '/') {
79 rprintf(FERROR,"ERROR: The remote path must start with a module name not a /\n");
80 return -1;
81 }
82
83 p = strchr(host, '@');
84 if (p) {
85 user = host;
86 host = p+1;
87 *p = 0;
88 }
89
90 fd = open_socket_out_wrapped(host, rsync_port, bind_address,
91 default_af_hint);
92 if (fd == -1)
93 exit_cleanup(RERR_SOCKETIO);
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;
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)
117 user = getenv("USER");
118 if (!user)
119 user = getenv("LOGNAME");
120
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 */
124 daemon_over_rsh = 0;
125 server_options(sargs, &sargc);
126
127 sargs[sargc++] = ".";
128
129 if (path && *path)
130 sargs[sargc++] = path;
131
132 sargs[sargc] = NULL;
133
134 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
135
136 if (!read_line(f_in, line, sizeof line - 1)) {
137 rprintf(FERROR, "rsync: did not see server greeting\n");
138 return -1;
139 }
140
141 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
142 /* note that read_line strips of \n or \r */
143 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
144 line);
145 return -1;
146 }
147 if (protocol_version > remote_protocol)
148 protocol_version = remote_protocol;
149
150 p = strchr(path,'/');
151 if (p) *p = 0;
152 io_printf(f_out, "%s\n", path);
153 if (p) *p = '/';
154
155 /* Old servers may just drop the connection here,
156 rather than sending a proper EXIT command. Yuck. */
157 kludge_around_eof = list_only && (protocol_version < 25);
158
159 while (1) {
160 if (!read_line(f_in, line, sizeof line - 1)) {
161 rprintf(FERROR, "rsync: didn't get server startup line\n");
162 return -1;
163 }
164
165 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
166 auth_client(f_out, user, line+18);
167 continue;
168 }
169
170 if (strcmp(line,"@RSYNCD: OK") == 0)
171 break;
172
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 }
180
181 if (strncmp(line, "@ERROR", 6) == 0) {
182 rprintf(FERROR,"%s\n", line);
183 /* This is always fatal; the server will now
184 * close the socket. */
185 return RERR_STARTCLIENT;
186 } else {
187 rprintf(FINFO,"%s\n", line);
188 }
189 }
190 kludge_around_eof = False;
191
192 for (i = 0; i < sargc; i++) {
193 io_printf(f_out, "%s\n", sargs[i]);
194 }
195 io_printf(f_out, "\n");
196
197 if (protocol_version < 23) {
198 if (protocol_version == 22 || !am_sender)
199 io_start_multiplex_in(f_in);
200 }
201
202 return 0;
203}
204
205
206
207static int rsync_module(int f_in, int f_out, int i)
208{
209 int argc = 0;
210 char *argv[MAX_ARGS];
211 char **argp;
212 char line[MAXPATHLEN];
213 uid_t uid = (uid_t)-2; /* canonically "nobody" */
214 gid_t gid = (gid_t)-2;
215 char *p;
216 char *addr = client_addr(f_in);
217 char *host = client_name(f_in);
218 char *name = lp_name(i);
219 int use_chroot = lp_use_chroot(i);
220 int start_glob = 0;
221 int ret;
222 char *request = NULL;
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",
226 name, host, addr);
227 io_printf(f_out, "@ERROR: access denied to %s from %s (%s)\n",
228 name, host, addr);
229 return -1;
230 }
231
232 if (am_daemon && am_server) {
233 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
234 name, host, addr);
235 }
236
237 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
238 if (errno) {
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));
243 } else {
244 rprintf(FERROR,"max connections (%d) reached\n",
245 lp_max_connections(i));
246 io_printf(f_out, "@ERROR: max connections (%d) reached - try again later\n",
247 lp_max_connections(i));
248 }
249 return -1;
250 }
251
252 auth_user = auth_server(f_in, f_out, i, addr, "@RSYNCD: AUTHREQD ");
253
254 if (!auth_user) {
255 rprintf(FERROR,"auth failed on module %s from %s (%s)\n",
256 name, host, addr);
257 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
258 return -1;
259 }
260
261 module_id = i;
262
263 am_root = (MY_UID() == 0);
264
265 if (am_root) {
266 p = lp_uid(i);
267 if (!name_to_uid(p, &uid)) {
268 if (!isdigit(*(unsigned char *)p)) {
269 rprintf(FERROR,"Invalid uid %s\n", p);
270 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
271 return -1;
272 }
273 uid = atoi(p);
274 }
275
276 p = lp_gid(i);
277 if (!name_to_gid(p, &gid)) {
278 if (!isdigit(*(unsigned char *)p)) {
279 rprintf(FERROR,"Invalid gid %s\n", p);
280 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
281 return -1;
282 }
283 gid = atoi(p);
284 }
285 }
286
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. */
293
294 exclude_path_prefix = use_chroot? "" : lp_path(i);
295 if (*exclude_path_prefix == '/' && !exclude_path_prefix[1])
296 exclude_path_prefix = "";
297
298 p = lp_include_from(i);
299 add_exclude_file(&server_exclude_list, p,
300 XFLG_FATAL_ERRORS | XFLG_DEF_INCLUDE);
301
302 p = lp_include(i);
303 add_exclude(&server_exclude_list, p,
304 XFLG_WORD_SPLIT | XFLG_DEF_INCLUDE);
305
306 p = lp_exclude_from(i);
307 add_exclude_file(&server_exclude_list, p,
308 XFLG_FATAL_ERRORS);
309
310 p = lp_exclude(i);
311 add_exclude(&server_exclude_list, p, XFLG_WORD_SPLIT);
312
313 exclude_path_prefix = NULL;
314
315 log_init();
316
317 if (use_chroot) {
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 */
330 if (chroot(lp_path(i))) {
331 rsyserr(FERROR, errno, "chroot %s failed", lp_path(i));
332 io_printf(f_out, "@ERROR: chroot failed\n");
333 return -1;
334 }
335
336 if (!push_dir("/")) {
337 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
338 io_printf(f_out, "@ERROR: chdir failed\n");
339 return -1;
340 }
341
342 } else {
343 if (!push_dir(lp_path(i))) {
344 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
345 io_printf(f_out, "@ERROR: chdir failed\n");
346 return -1;
347 }
348 sanitize_paths = 1;
349 }
350
351 if (am_root) {
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
362 if (setgid(gid)) {
363 rsyserr(FERROR, errno, "setgid %d failed", (int)gid);
364 io_printf(f_out, "@ERROR: setgid failed\n");
365 return -1;
366 }
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
376
377 if (setuid(uid)) {
378 rsyserr(FERROR, errno, "setuid %d failed", (int)uid);
379 io_printf(f_out, "@ERROR: setuid failed\n");
380 return -1;
381 }
382
383 am_root = (MY_UID() == 0);
384 }
385
386 io_printf(f_out, "@RSYNCD: OK\n");
387
388 argv[argc++] = "rsyncd";
389
390 while (1) {
391 if (!read_line(f_in, line, sizeof line - 1))
392 return -1;
393
394 if (!*line)
395 break;
396
397 p = line;
398
399 if (!(argv[argc] = strdup(p)))
400 return -1;
401
402 if (start_glob) {
403 if (start_glob == 1) {
404 request = strdup(p);
405 start_glob++;
406 }
407 glob_expand(name, argv, &argc, MAX_ARGS);
408 } else
409 argc++;
410
411 if (strcmp(line, ".") == 0)
412 start_glob = 1;
413
414 if (argc == MAX_ARGS)
415 return -1;
416 }
417
418 argp = argv;
419 ret = parse_arguments(&argc, (const char ***) &argp, 0);
420
421 if (filesfrom_fd == 0)
422 filesfrom_fd = f_in;
423
424 if (request) {
425 if (*auth_user) {
426 rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
427 am_sender ? "on" : "to",
428 request, auth_user, host, addr);
429 } else {
430 rprintf(FLOG, "rsync %s %s from %s (%s)\n",
431 am_sender ? "on" : "to",
432 request, host, addr);
433 }
434 free(request);
435 }
436
437#ifndef DEBUG
438 /* don't allow the logs to be flooded too fast */
439 if (verbose > lp_max_verbosity())
440 verbose = lp_max_verbosity();
441#endif
442
443 if (protocol_version < 23) {
444 if (protocol_version == 22 || am_sender)
445 io_start_multiplex_out(f_out);
446 }
447
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. */
456 if (!ret) {
457 option_error();
458 exit_cleanup(RERR_UNSUPPORTED);
459 }
460
461 if (lp_timeout(i))
462 io_timeout = lp_timeout(i);
463
464 start_server(f_in, f_out, argc, argp);
465
466 return 0;
467}
468
469/* send a list of available modules to the client. Don't list those
470 with "list = False". */
471static void send_listing(int fd)
472{
473 int n = lp_numservices();
474 int i;
475
476 for (i = 0; i < n; i++)
477 if (lp_list(i))
478 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
479
480 if (protocol_version >= 25)
481 io_printf(fd,"@RSYNCD: EXIT\n");
482}
483
484/* this is called when a connection is established to a client
485 and we want to start talking. The setup of the system is done from
486 here */
487int start_daemon(int f_in, int f_out)
488{
489 char line[200];
490 char *motd;
491 int i = -1;
492
493 if (!lp_load(config_file, 0))
494 exit_cleanup(RERR_SYNTAX);
495
496 log_init();
497
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 }
503
504 io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
505
506 motd = lp_motd_file();
507 if (motd && *motd) {
508 FILE *f = fopen(motd,"r");
509 while (f && !feof(f)) {
510 int len = fread(line, 1, sizeof line - 1, f);
511 if (len > 0) {
512 line[len] = 0;
513 io_printf(f_out, "%s", line);
514 }
515 }
516 if (f)
517 fclose(f);
518 io_printf(f_out, "\n");
519 }
520
521 if (!read_line(f_in, line, sizeof line - 1))
522 return -1;
523
524 if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
525 io_printf(f_out, "@ERROR: protocol startup error\n");
526 return -1;
527 }
528 if (protocol_version > remote_protocol)
529 protocol_version = remote_protocol;
530
531 while (i == -1) {
532 line[0] = 0;
533 if (!read_line(f_in, line, sizeof line - 1))
534 return -1;
535
536 if (!*line || strcmp(line,"#list") == 0) {
537 send_listing(f_out);
538 return -1;
539 }
540
541 if (*line == '#') {
542 /* it's some sort of command that I don't understand */
543 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
544 return -1;
545 }
546
547 i = lp_number(line);
548 if (i == -1) {
549 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
550 return -1;
551 }
552 }
553
554 return rsync_module(f_in, f_out, i);
555}
556
557
558int daemon_main(void)
559{
560 char *pid_file;
561
562 if (is_a_socket(STDIN_FILENO)) {
563 int i;
564
565 /* we are running via inetd - close off stdout and
566 * stderr so that library functions (and getopt) don't
567 * try to use them. Redirect them to /dev/null */
568 for (i = 1; i < 3; i++) {
569 close(i);
570 open("/dev/null", O_RDWR);
571 }
572
573 return start_daemon(STDIN_FILENO, STDIN_FILENO);
574 }
575
576 if (!no_detach)
577 become_daemon();
578
579 if (!lp_load(config_file, 1))
580 exit_cleanup(RERR_SYNTAX);
581
582 log_init();
583
584 rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
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??? */
589
590 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
591 char pidbuf[16];
592 int fd;
593 pid_t pid = getpid();
594 cleanup_set_pid(pid);
595 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
596 0666 & ~orig_umask)) == -1) {
597 cleanup_set_pid(0);
598 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
599 exit_cleanup(RERR_FILEIO);
600 }
601 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
602 write(fd, pidbuf, strlen(pidbuf));
603 close(fd);
604 }
605
606 start_accept_loop(rsync_port, start_daemon);
607 return -1;
608}