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