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