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