Remove the "rsync:" prefixes on FINFO messages. Return the "building file
[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 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/* the socket based protocol for setting up a connection with rsyncd */
22
23#include "rsync.h"
24
25extern int module_id;
26extern int read_only;
27extern int verbose;
28extern int rsync_port;
29char *auth_user;
30int sanitize_paths = 0;
31
32/*
33 * Run a client connected to an rsyncd. The alternative to this
34 * function for remote-shell connections is do_cmd.
35 */
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;
41 char line[MAXPATHLEN];
42 char *p, *user=NULL;
43 extern int remote_version;
44 extern int am_sender;
45 extern char *shell_cmd;
46 extern int kludge_around_eof;
47 extern char *bind_address;
48 extern int default_af_hint;
49
50 if (argc == 0 && !am_sender) {
51 extern int list_only;
52 list_only = 1;
53 }
54
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
67 if (*path == '/') {
68 rprintf(FERROR,"ERROR: The remote path must start with a module name not a /\n");
69 return -1;
70 }
71
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
82 if (verbose >= 2) {
83 }
84 fd = open_socket_out_wrapped (host, rsync_port, bind_address,
85 default_af_hint);
86 if (fd == -1) {
87 exit_cleanup(RERR_SOCKETIO);
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
99 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
100
101 if (!read_line(fd, line, sizeof(line)-1)) {
102 return -1;
103 }
104
105 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
106 return -1;
107 }
108
109 p = strchr(path,'/');
110 if (p) *p = 0;
111 io_printf(fd,"%s\n",path);
112 if (p) *p = '/';
113
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;
117
118 while (1) {
119 if (!read_line(fd, line, sizeof(line)-1)) {
120 return -1;
121 }
122
123 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
124 auth_client(fd, user, line+18);
125 continue;
126 }
127
128 if (strcmp(line,"@RSYNCD: OK") == 0) break;
129
130 if (strcmp(line,"@RSYNCD: EXIT") == 0) exit(0);
131
132 rprintf(FINFO,"%s\n", line);
133 }
134 kludge_around_eof = False;
135
136 for (i=0;i<sargc;i++) {
137 io_printf(fd,"%s\n", sargs[i]);
138 }
139 io_printf(fd,"\n");
140
141 if (remote_version < 23) {
142 if (remote_version == 22 || (remote_version > 17 && !am_sender))
143 io_start_multiplex_in(fd);
144 }
145
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;
156 char line[MAXPATHLEN];
157 uid_t uid = (uid_t)-2; /* canonically "nobody" */
158 gid_t gid = (gid_t)-2;
159 char *p;
160 char *addr = client_addr(fd);
161 char *host = client_name(fd);
162 char *name = lp_name(i);
163 int use_chroot = lp_use_chroot(i);
164 int start_glob=0;
165 int ret;
166 char *request=NULL;
167 extern int am_sender;
168 extern int remote_version;
169 extern int am_root;
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",
173 name, host, addr);
174 io_printf(fd,"@ERROR: access denied to %s from %s (%s)\n",
175 name, host, addr);
176 return -1;
177 }
178
179 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
180 if (errno) {
181 rprintf(FERROR,"failed to open lock file %s : %s\n",
182 lp_lock_file(i), strerror(errno));
183 io_printf(fd,"@ERROR: failed to open lock file %s : %s\n",
184 lp_lock_file(i), strerror(errno));
185 } else {
186 rprintf(FERROR,"max connections (%d) reached\n",
187 lp_max_connections(i));
188 io_printf(fd,"@ERROR: max connections (%d) reached - try again later\n", lp_max_connections(i));
189 }
190 return -1;
191 }
192
193
194 auth_user = auth_server(fd, i, addr, "@RSYNCD: AUTHREQD ");
195
196 if (!auth_user) {
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
203 module_id = i;
204
205 am_root = (getuid() == 0);
206
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);
212 io_printf(fd,"@ERROR: invalid uid %s\n", p);
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);
222 io_printf(fd,"@ERROR: invalid gid %s\n", p);
223 return -1;
224 }
225 gid = atoi(p);
226 }
227 }
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. */
235
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
242 p = lp_exclude_from(i);
243 add_exclude_file(p, 1, 0);
244
245 p = lp_exclude(i);
246 add_exclude_line(p);
247
248 log_init();
249
250 if (use_chroot) {
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 */
263 if (chroot(lp_path(i))) {
264 rsyserr(FERROR, errno, "chroot %s failed", lp_path(i));
265 io_printf(fd,"@ERROR: chroot failed\n");
266 return -1;
267 }
268
269 if (!push_dir("/", 0)) {
270 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
271 io_printf(fd,"@ERROR: chdir failed\n");
272 return -1;
273 }
274
275 } else {
276 if (!push_dir(lp_path(i), 0)) {
277 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
278 io_printf(fd,"@ERROR: chdir failed\n");
279 return -1;
280 }
281 sanitize_paths = 1;
282 }
283
284 if (am_root) {
285 if (setgid(gid)) {
286 rsyserr(FERROR, errno, "setgid %d failed", (int) gid);
287 io_printf(fd,"@ERROR: setgid failed\n");
288 return -1;
289 }
290
291 if (setuid(uid)) {
292 rsyserr(FERROR, errno, "setuid %d failed", (int) uid);
293 io_printf(fd,"@ERROR: setuid failed\n");
294 return -1;
295 }
296
297 am_root = (getuid() == 0);
298 }
299
300 io_printf(fd,"@RSYNCD: OK\n");
301
302 argv[argc++] = "rsyncd";
303
304 while (1) {
305 if (!read_line(fd, line, sizeof(line)-1)) {
306 return -1;
307 }
308
309 if (!*line) break;
310
311 p = line;
312
313 argv[argc] = strdup(p);
314 if (!argv[argc]) {
315 return -1;
316 }
317
318 if (start_glob) {
319 if (start_glob == 1) {
320 request = strdup(p);
321 start_glob++;
322 }
323 glob_expand(name, argv, &argc, MAX_ARGS);
324 } else {
325 argc++;
326 }
327
328 if (strcmp(line,".") == 0) {
329 start_glob = 1;
330 }
331
332 if (argc == MAX_ARGS) {
333 return -1;
334 }
335 }
336
337 if (sanitize_paths) {
338 /*
339 * Note that this is applied to all parameters, whether or not
340 * they are filenames, but no other legal parameters contain
341 * the forms that need to be sanitized so it doesn't hurt;
342 * it is not known at this point which parameters are files
343 * and which aren't.
344 */
345 for (i = 1; i < argc; i++) {
346 sanitize_path(argv[i], NULL);
347 }
348 }
349
350 argp = argv;
351 ret = parse_arguments(&argc, (const char ***) &argp, 0);
352
353 if (request) {
354 if (*auth_user) {
355 rprintf(FINFO,"rsync %s %s from %s@%s (%s)\n",
356 am_sender?"on":"to",
357 request, auth_user, host, addr);
358 } else {
359 rprintf(FINFO,"rsync %s %s from %s (%s)\n",
360 am_sender?"on":"to",
361 request, host, addr);
362 }
363 free(request);
364 }
365
366#ifndef DEBUG
367 /* don't allow the logs to be flooded too fast */
368 if (verbose > 1) verbose = 1;
369#endif
370
371 if (remote_version < 23) {
372 if (remote_version == 22 || (remote_version > 17 && am_sender))
373 io_start_multiplex_out(fd);
374 }
375
376 /* For later protocol versions, we don't start multiplexing
377 * until we've configured nonblocking in start_server. That
378 * means we're in a sticky situation now: there's no way to
379 * convey errors to the client. */
380
381 /* FIXME: Hold off on reporting option processing errors until
382 * we've set up nonblocking and multiplexed IO and can get the
383 * message back to them. */
384 if (!ret) {
385 option_error();
386 exit_cleanup(RERR_UNSUPPORTED);
387 }
388
389 if (lp_timeout(i)) {
390 extern int io_timeout;
391 io_timeout = lp_timeout(i);
392 }
393
394 start_server(fd, fd, argc, argp);
395
396 return 0;
397}
398
399/* send a list of available modules to the client. Don't list those
400 with "list = False". */
401static void send_listing(int fd)
402{
403 int n = lp_numservices();
404 int i;
405 extern int remote_version;
406
407 for (i=0;i<n;i++)
408 if (lp_list(i))
409 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
410
411 if (remote_version >= 25)
412 io_printf(fd,"@RSYNCD: EXIT\n");
413}
414
415/* this is called when a socket connection is established to a client
416 and we want to start talking. The setup of the system is done from
417 here */
418static int start_daemon(int fd)
419{
420 char line[200];
421 char *motd;
422 int i = -1;
423 extern char *config_file;
424 extern int remote_version;
425
426 if (!lp_load(config_file, 0)) {
427 exit_cleanup(RERR_SYNTAX);
428 }
429
430 set_socket_options(fd,"SO_KEEPALIVE");
431 set_socket_options(fd,lp_socket_options());
432 set_nonblocking(fd);
433
434 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
435
436 motd = lp_motd_file();
437 if (motd && *motd) {
438 FILE *f = fopen(motd,"r");
439 while (f && !feof(f)) {
440 int len = fread(line, 1, sizeof(line)-1, f);
441 if (len > 0) {
442 line[len] = 0;
443 io_printf(fd,"%s", line);
444 }
445 }
446 if (f) fclose(f);
447 io_printf(fd,"\n");
448 }
449
450 if (!read_line(fd, line, sizeof(line)-1)) {
451 return -1;
452 }
453
454 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
455 io_printf(fd,"@ERROR: protocol startup error\n");
456 return -1;
457 }
458
459 while (i == -1) {
460 line[0] = 0;
461 if (!read_line(fd, line, sizeof(line)-1)) {
462 return -1;
463 }
464
465 if (!*line || strcmp(line,"#list")==0) {
466 send_listing(fd);
467 return -1;
468 }
469
470 if (*line == '#') {
471 /* it's some sort of command that I don't understand */
472 io_printf(fd,"@ERROR: Unknown command '%s'\n", line);
473 return -1;
474 }
475
476 i = lp_number(line);
477 if (i == -1) {
478 io_printf(fd,"@ERROR: Unknown module '%s'\n", line);
479 return -1;
480 }
481 }
482
483 return rsync_module(fd, i);
484}
485
486
487int daemon_main(void)
488{
489 extern char *config_file;
490 extern int orig_umask;
491 char *pid_file;
492 extern int no_detach;
493
494 if (is_a_socket(STDIN_FILENO)) {
495 int i;
496
497 /* we are running via inetd - close off stdout and
498 stderr so that library functions (and getopt) don't
499 try to use them. Redirect them to /dev/null */
500 for (i=1;i<3;i++) {
501 close(i);
502 open("/dev/null", O_RDWR);
503 }
504
505 return start_daemon(STDIN_FILENO);
506 }
507
508 if (!no_detach)
509 become_daemon();
510
511 if (!lp_load(config_file, 1)) {
512 exit_cleanup(RERR_SYNTAX);
513 }
514
515 log_init();
516
517 rprintf(FINFO, "rsyncd version %s starting, listening on port %d\n",
518 RSYNC_VERSION,
519 rsync_port);
520 /* TODO: If listening on a particular address, then show that
521 * address too. In fact, why not just do inet_ntop on the
522 * local address??? */
523
524 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
525 char pidbuf[16];
526 int fd;
527 int pid = (int) getpid();
528 cleanup_set_pid(pid);
529 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
530 0666 & ~orig_umask)) == -1) {
531 cleanup_set_pid(0);
532 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
533 exit_cleanup(RERR_FILEIO);
534 }
535 snprintf(pidbuf, sizeof(pidbuf), "%d\n", pid);
536 write(fd, pidbuf, strlen(pidbuf));
537 close(fd);
538 }
539
540 start_accept_loop(rsync_port, start_daemon);
541 return -1;
542}
543