Doc start_socket_client
[rsync/rsync.git] / clientserver.c
CommitLineData
a039749b 1/* -*- c-file-style: "linux"; -*-
a254fd97
MP
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 */
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
30extern int module_id;
31extern int read_only;
32extern int verbose;
33extern int rsync_port;
97cb8dc2 34char *auth_user;
b35d0d8e 35extern int sanitize_paths;
3591c066 36
be2961da 37/**
bc363ea9 38 * Run a client connected to an rsyncd. The alternative to this
be2961da
MP
39 * function for remote-shell connections is do_cmd().
40 *
fdf88d75
MP
41 * After negotiating which module to use and reading the server's
42 * motd, this hands over to client_run(). Telling the server the
43 * module will cause it to chroot/setuid/etc.
44 *
45 * Instead of doing a transfer, the client may at this stage instead
46 * get a listing of remote modules and exit.
be2961da
MP
47 *
48 * @return -1 for error in startup, or the result of client_run().
49 **/
3591c066
AT
50int start_socket_client(char *host, char *path, int argc, char *argv[])
51{
52 int fd, i;
53 char *sargs[MAX_ARGS];
54 int sargc=0;
e42c9458 55 char line[MAXPATHLEN];
bcb7e502 56 char *p, *user=NULL;
13c5fc0e 57 extern int remote_version;
8d9dc9f9 58 extern int am_sender;
bc363ea9 59 extern char *shell_cmd;
9098bbf3 60 extern int list_only;
7a55d06e 61 extern int kludge_around_eof;
06963d0f 62 extern char *bind_address;
13e29995 63 extern int default_af_hint;
06963d0f 64
27e3e9c9
AT
65 if (argc == 0 && !am_sender) {
66 extern int list_only;
67 list_only = 1;
68 }
69
bc363ea9
MP
70 /* This is just a friendliness enhancement: if the connection
71 * is to an rsyncd then there is no point specifying the -e option.
72 * Note that this is only set if the -e was explicitly specified,
73 * not if the environment variable just happens to be set.
74 * See http://lists.samba.org/pipermail/rsync/2000-September/002744.html
75 */
76 if (shell_cmd) {
77 rprintf(FERROR, "WARNING: --rsh or -e option ignored when "
78 "connecting to rsync daemon\n");
79 /* continue */
80 }
81
f98df1d9 82 if (*path == '/') {
ff81e809 83 rprintf(FERROR,"ERROR: The remote path must start with a module name not a /\n");
f98df1d9
AT
84 return -1;
85 }
86
bcb7e502
AT
87 p = strchr(host, '@');
88 if (p) {
89 user = host;
90 host = p+1;
91 *p = 0;
92 }
93
94 if (!user) user = getenv("USER");
95 if (!user) user = getenv("LOGNAME");
96
1bbd10fe 97 if (verbose >= 2) {
604f343c
MP
98 /* FIXME: If we're going to use a socket program for
99 * testing, then this message is wrong. We need to
100 * say something like "(except really using %s)" */
1264288c
MP
101 rprintf(FINFO, "opening tcp connection to %s port %d\n",
102 host, rsync_port);
1bbd10fe 103 }
d5d4b282 104 fd = open_socket_out_wrapped (host, rsync_port, bind_address,
13e29995 105 default_af_hint);
3591c066 106 if (fd == -1) {
65417579 107 exit_cleanup(RERR_SOCKETIO);
3591c066
AT
108 }
109
110 server_options(sargs,&sargc);
111
112 sargs[sargc++] = ".";
113
114 if (path && *path)
115 sargs[sargc++] = path;
116
117 sargs[sargc] = NULL;
118
91eee594
AT
119 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
120
3591c066 121 if (!read_line(fd, line, sizeof(line)-1)) {
be2961da 122 rprintf(FERROR, "rsync: did not see server greeting\n");
3591c066
AT
123 return -1;
124 }
125
13c5fc0e 126 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
be2961da
MP
127 /* note that read_line strips of \n or \r */
128 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
129 line);
3591c066
AT
130 return -1;
131 }
132
2c91d3d3
AT
133 p = strchr(path,'/');
134 if (p) *p = 0;
135 io_printf(fd,"%s\n",path);
136 if (p) *p = '/';
137
063393d6
MP
138 /* Old servers may just drop the connection here,
139 rather than sending a proper EXIT command. Yuck. */
9098bbf3 140 kludge_around_eof = list_only && (remote_version < 25);
7a55d06e 141
063393d6 142 while (1) {
3591c066 143 if (!read_line(fd, line, sizeof(line)-1)) {
be2961da 144 rprintf(FERROR, "rsync: didn't get server startup line\n");
3591c066
AT
145 return -1;
146 }
31593dd6 147
31593dd6 148 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
bcb7e502 149 auth_client(fd, user, line+18);
31593dd6
AT
150 continue;
151 }
31593dd6 152
3591c066 153 if (strcmp(line,"@RSYNCD: OK") == 0) break;
8f04bb36 154
cae95647
MP
155 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
156 /* This is sent by recent versions of the
157 * server to terminate the listing of modules.
158 * We don't want to go on and transfer
159 * anything; just exit. */
160 exit(0);
161 }
8f04bb36 162
c613d370
DD
163 if (strncmp(line, "@ERROR", 6) == 0)
164 rprintf(FERROR,"%s\n", line);
165 else
166 rprintf(FINFO,"%s\n", line);
3591c066 167 }
7a55d06e 168 kludge_around_eof = False;
3591c066
AT
169
170 for (i=0;i<sargc;i++) {
171 io_printf(fd,"%s\n", sargs[i]);
172 }
173 io_printf(fd,"\n");
174
09b7f5db
AT
175 if (remote_version < 23) {
176 if (remote_version == 22 || (remote_version > 17 && !am_sender))
177 io_start_multiplex_in(fd);
178 }
8d9dc9f9 179
3591c066
AT
180 return client_run(fd, fd, -1, argc, argv);
181}
182
183
184
185static int rsync_module(int fd, int i)
186{
187 int argc=0;
188 char *argv[MAX_ARGS];
189 char **argp;
e42c9458 190 char line[MAXPATHLEN];
2af27ad9 191 uid_t uid = (uid_t)-2; /* canonically "nobody" */
1a016bfd 192 gid_t gid = (gid_t)-2;
8ef4ffd6 193 char *p;
56c473b7
AT
194 char *addr = client_addr(fd);
195 char *host = client_name(fd);
874895d5 196 char *name = lp_name(i);
8638dd48 197 int use_chroot = lp_use_chroot(i);
874895d5 198 int start_glob=0;
41979ff8 199 int ret;
7b372642
AT
200 char *request=NULL;
201 extern int am_sender;
8d9dc9f9 202 extern int remote_version;
943882a2 203 extern int am_root;
56c473b7
AT
204
205 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
206 rprintf(FERROR,"rsync denied on module %s from %s (%s)\n",
31ec50d7 207 name, host, addr);
c8e78d87 208 io_printf(fd,"@ERROR: access denied to %s from %s (%s)\n",
31ec50d7 209 name, host, addr);
56c473b7
AT
210 return -1;
211 }
3591c066 212
5e71c444 213 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
8d72ef6e
AT
214 if (errno) {
215 rprintf(FERROR,"failed to open lock file %s : %s\n",
5e71c444 216 lp_lock_file(i), strerror(errno));
8d72ef6e 217 io_printf(fd,"@ERROR: failed to open lock file %s : %s\n",
5e71c444 218 lp_lock_file(i), strerror(errno));
8d72ef6e
AT
219 } else {
220 rprintf(FERROR,"max connections (%d) reached\n",
5e71c444
AT
221 lp_max_connections(i));
222 io_printf(fd,"@ERROR: max connections (%d) reached - try again later\n", lp_max_connections(i));
8d72ef6e 223 }
0c515f17
AT
224 return -1;
225 }
226
31593dd6 227
97cb8dc2 228 auth_user = auth_server(fd, i, addr, "@RSYNCD: AUTHREQD ");
d0d56395 229
97cb8dc2 230 if (!auth_user) {
d0d56395
AT
231 rprintf(FERROR,"auth failed on module %s from %s (%s)\n",
232 name, client_name(fd), client_addr(fd));
233 io_printf(fd,"@ERROR: auth failed on module %s\n",name);
234 return -1;
235 }
236
3591c066
AT
237 module_id = i;
238
716baed7 239 am_root = (getuid() == 0);
8ef4ffd6 240
716baed7
DD
241 if (am_root) {
242 p = lp_uid(i);
243 if (!name_to_uid(p, &uid)) {
244 if (!isdigit(*p)) {
245 rprintf(FERROR,"Invalid uid %s\n", p);
fd2dd2aa 246 io_printf(fd,"@ERROR: invalid uid %s\n", p);
716baed7
DD
247 return -1;
248 }
249 uid = atoi(p);
250 }
251
252 p = lp_gid(i);
253 if (!name_to_gid(p, &gid)) {
254 if (!isdigit(*p)) {
255 rprintf(FERROR,"Invalid gid %s\n", p);
fd2dd2aa 256 io_printf(fd,"@ERROR: invalid gid %s\n", p);
716baed7
DD
257 return -1;
258 }
259 gid = atoi(p);
260 }
8ef4ffd6 261 }
3b2b5345
MP
262
263 /* TODO: If we're not root, but the configuration requests
264 * that we change to some uid other than the current one, then
265 * log a warning. */
266
267 /* TODO: Perhaps take a list of gids, and make them into the
268 * supplementary groups. */
8ef4ffd6 269
cd64343a
DD
270 p = lp_include_from(i);
271 add_exclude_file(p, 1, 1);
272
273 p = lp_include(i);
274 add_include_line(p);
275
8f3a2d54 276 p = lp_exclude_from(i);
2b6b4d53 277 add_exclude_file(p, 1, 0);
8f3a2d54 278
5805327b 279 p = lp_exclude(i);
8f3a2d54
AT
280 add_exclude_line(p);
281
45a83540 282 log_init();
1a016bfd 283
8638dd48 284 if (use_chroot) {
b52c1d9d
MP
285 /*
286 * XXX: The 'use chroot' flag is a fairly reliable
287 * source of confusion, because it fails under two
288 * important circumstances: running as non-root,
289 * running on Win32 (or possibly others). On the
290 * other hand, if you are running as root, then it
291 * might be better to always use chroot.
292 *
293 * So, perhaps if we can't chroot we should just issue
294 * a warning, unless a "require chroot" flag is set,
295 * in which case we fail.
296 */
8638dd48 297 if (chroot(lp_path(i))) {
a039749b 298 rsyserr(FERROR, errno, "chroot %s failed", lp_path(i));
8638dd48
DD
299 io_printf(fd,"@ERROR: chroot failed\n");
300 return -1;
301 }
3591c066 302
c226b7c2 303 if (!push_dir("/", 0)) {
a039749b 304 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
8638dd48
DD
305 io_printf(fd,"@ERROR: chdir failed\n");
306 return -1;
307 }
3591c066 308
716baed7
DD
309 } else {
310 if (!push_dir(lp_path(i), 0)) {
a039749b 311 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
716baed7
DD
312 io_printf(fd,"@ERROR: chdir failed\n");
313 return -1;
314 }
cb13abfe 315 sanitize_paths = 1;
716baed7
DD
316 }
317
318 if (am_root) {
e3bdb763 319#ifdef HAVE_SETGROUPS
715d1f45
MP
320 /* Get rid of any supplementary groups this process
321 * might have inheristed. */
322 if (setgroups(0, NULL)) {
323 rsyserr(FERROR, errno, "setgroups failed");
324 io_printf(fd, "@ERROR: setgroups failed\n");
325 return -1;
326 }
e3bdb763 327#endif
715d1f45
MP
328
329 /* XXXX: You could argue that if the daemon is started
330 * by a non-root user and they explicitly specify a
331 * gid, then we should try to change to that gid --
332 * this could be possible if it's already in their
333 * supplementary groups. */
334
335 /* TODO: Perhaps we need to document that if rsyncd is
336 * started by somebody other than root it will inherit
337 * all their supplementary groups. */
338
716baed7 339 if (setgid(gid)) {
08a740ff 340 rsyserr(FERROR, errno, "setgid %d failed", (int) gid);
8638dd48
DD
341 io_printf(fd,"@ERROR: setgid failed\n");
342 return -1;
343 }
3591c066 344
716baed7 345 if (setuid(uid)) {
08a740ff 346 rsyserr(FERROR, errno, "setuid %d failed", (int) uid);
8638dd48
DD
347 io_printf(fd,"@ERROR: setuid failed\n");
348 return -1;
349 }
350
716baed7 351 am_root = (getuid() == 0);
3591c066
AT
352 }
353
354 io_printf(fd,"@RSYNCD: OK\n");
355
356 argv[argc++] = "rsyncd";
357
358 while (1) {
359 if (!read_line(fd, line, sizeof(line)-1)) {
360 return -1;
361 }
362
363 if (!*line) break;
364
874895d5
AT
365 p = line;
366
874895d5 367 argv[argc] = strdup(p);
3591c066
AT
368 if (!argv[argc]) {
369 return -1;
370 }
371
874895d5 372 if (start_glob) {
1a016bfd 373 if (start_glob == 1) {
7b372642 374 request = strdup(p);
1a016bfd
AT
375 start_glob++;
376 }
cb13abfe 377 glob_expand(name, argv, &argc, MAX_ARGS);
874895d5
AT
378 } else {
379 argc++;
380 }
381
382 if (strcmp(line,".") == 0) {
383 start_glob = 1;
384 }
385
3591c066
AT
386 if (argc == MAX_ARGS) {
387 return -1;
388 }
389 }
390
cb13abfe 391 if (sanitize_paths) {
8638dd48
DD
392 /*
393 * Note that this is applied to all parameters, whether or not
394 * they are filenames, but no other legal parameters contain
395 * the forms that need to be sanitized so it doesn't hurt;
396 * it is not known at this point which parameters are files
397 * and which aren't.
398 */
399 for (i = 1; i < argc; i++) {
cb13abfe 400 sanitize_path(argv[i], NULL);
8638dd48
DD
401 }
402 }
403
15b7b73d
MP
404 argp = argv;
405 ret = parse_arguments(&argc, (const char ***) &argp, 0);
3591c066 406
7b372642 407 if (request) {
97cb8dc2 408 if (*auth_user) {
d0d56395
AT
409 rprintf(FINFO,"rsync %s %s from %s@%s (%s)\n",
410 am_sender?"on":"to",
97cb8dc2 411 request, auth_user, host, addr);
d0d56395
AT
412 } else {
413 rprintf(FINFO,"rsync %s %s from %s (%s)\n",
414 am_sender?"on":"to",
415 request, host, addr);
416 }
7b372642
AT
417 free(request);
418 }
419
15b7b73d 420#ifndef DEBUG
3591c066
AT
421 /* don't allow the logs to be flooded too fast */
422 if (verbose > 1) verbose = 1;
0199b05f 423#endif
3591c066 424
09b7f5db
AT
425 if (remote_version < 23) {
426 if (remote_version == 22 || (remote_version > 17 && am_sender))
427 io_start_multiplex_out(fd);
554e0a8d 428 }
15b7b73d
MP
429
430 /* For later protocol versions, we don't start multiplexing
431 * until we've configured nonblocking in start_server. That
432 * means we're in a sticky situation now: there's no way to
433 * convey errors to the client. */
434
435 /* FIXME: Hold off on reporting option processing errors until
436 * we've set up nonblocking and multiplexed IO and can get the
437 * message back to them. */
41979ff8 438 if (!ret) {
15b7b73d
MP
439 option_error();
440 exit_cleanup(RERR_UNSUPPORTED);
41979ff8
AT
441 }
442
81791cfc
AT
443 if (lp_timeout(i)) {
444 extern int io_timeout;
445 io_timeout = lp_timeout(i);
446 }
447
3591c066
AT
448 start_server(fd, fd, argc, argp);
449
450 return 0;
451}
452
7a6421fa
AT
453/* send a list of available modules to the client. Don't list those
454 with "list = False". */
3591c066
AT
455static void send_listing(int fd)
456{
457 int n = lp_numservices();
458 int i;
063393d6
MP
459 extern int remote_version;
460
3591c066
AT
461 for (i=0;i<n;i++)
462 if (lp_list(i))
463 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
8f04bb36 464
063393d6
MP
465 if (remote_version >= 25)
466 io_printf(fd,"@RSYNCD: EXIT\n");
3591c066
AT
467}
468
469/* this is called when a socket connection is established to a client
470 and we want to start talking. The setup of the system is done from
471 here */
472static int start_daemon(int fd)
473{
7a6421fa 474 char line[200];
3591c066 475 char *motd;
8ef4ffd6 476 int i = -1;
4cdf25e4 477 extern char *config_file;
13c5fc0e 478 extern int remote_version;
4cdf25e4 479
f9e940ef 480 if (!lp_load(config_file, 0)) {
65417579 481 exit_cleanup(RERR_SYNTAX);
4cdf25e4 482 }
3591c066
AT
483
484 set_socket_options(fd,"SO_KEEPALIVE");
a6801c39 485 set_socket_options(fd,lp_socket_options());
f0359dd0 486 set_nonblocking(fd);
3591c066
AT
487
488 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
489
490 motd = lp_motd_file();
27d3cdbc 491 if (motd && *motd) {
3591c066
AT
492 FILE *f = fopen(motd,"r");
493 while (f && !feof(f)) {
494 int len = fread(line, 1, sizeof(line)-1, f);
495 if (len > 0) {
496 line[len] = 0;
497 io_printf(fd,"%s", line);
498 }
499 }
500 if (f) fclose(f);
501 io_printf(fd,"\n");
502 }
503
91eee594
AT
504 if (!read_line(fd, line, sizeof(line)-1)) {
505 return -1;
506 }
507
508 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
c8e78d87 509 io_printf(fd,"@ERROR: protocol startup error\n");
91eee594
AT
510 return -1;
511 }
512
8ef4ffd6 513 while (i == -1) {
3591c066
AT
514 line[0] = 0;
515 if (!read_line(fd, line, sizeof(line)-1)) {
516 return -1;
517 }
518
519 if (!*line || strcmp(line,"#list")==0) {
520 send_listing(fd);
521 return -1;
522 }
523
524 if (*line == '#') {
525 /* it's some sort of command that I don't understand */
c8e78d87 526 io_printf(fd,"@ERROR: Unknown command '%s'\n", line);
3591c066
AT
527 return -1;
528 }
529
530 i = lp_number(line);
531 if (i == -1) {
c8e78d87 532 io_printf(fd,"@ERROR: Unknown module '%s'\n", line);
3591c066
AT
533 return -1;
534 }
3591c066
AT
535 }
536
8ef4ffd6 537 return rsync_module(fd, i);
3591c066
AT
538}
539
540
541int daemon_main(void)
542{
f9e940ef 543 extern char *config_file;
ad517ce5 544 extern int orig_umask;
8638dd48 545 char *pid_file;
13e29995 546 extern int no_detach;
1a016bfd 547
3591c066 548 if (is_a_socket(STDIN_FILENO)) {
41979ff8
AT
549 int i;
550
551 /* we are running via inetd - close off stdout and
552 stderr so that library functions (and getopt) don't
553 try to use them. Redirect them to /dev/null */
554 for (i=1;i<3;i++) {
555 close(i);
556 open("/dev/null", O_RDWR);
557 }
3eb38818 558
3591c066
AT
559 return start_daemon(STDIN_FILENO);
560 }
561
13e29995 562 if (!no_detach)
a538066d 563 become_daemon();
3591c066 564
f9e940ef 565 if (!lp_load(config_file, 1)) {
65417579 566 exit_cleanup(RERR_SYNTAX);
f9e940ef
AT
567 }
568
45a83540 569 log_init();
f9e940ef 570
a358449a
MP
571 rprintf(FINFO, "rsyncd version %s starting, listening on port %d\n",
572 RSYNC_VERSION,
15b7b73d
MP
573 rsync_port);
574 /* TODO: If listening on a particular address, then show that
431efc89
MP
575 * address too. In fact, why not just do inet_ntop on the
576 * local address??? */
e42c9458 577
8638dd48 578 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
ad517ce5
DD
579 char pidbuf[16];
580 int fd;
8638dd48
DD
581 int pid = (int) getpid();
582 cleanup_set_pid(pid);
ad517ce5
DD
583 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
584 0666 & ~orig_umask)) == -1) {
8638dd48 585 cleanup_set_pid(0);
a039749b 586 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
65417579 587 exit_cleanup(RERR_FILEIO);
8638dd48 588 }
8950ac03 589 snprintf(pidbuf, sizeof(pidbuf), "%d\n", pid);
ad517ce5
DD
590 write(fd, pidbuf, strlen(pidbuf));
591 close(fd);
8638dd48
DD
592 }
593
8ef4ffd6
AT
594 start_accept_loop(rsync_port, start_daemon);
595 return -1;
3591c066
AT
596}
597