Drop dead variables introduced in rsync+ patch.
[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 struct in_addr socket_address;
46 extern char *shell_cmd;
47
48 if (argc == 0 && !am_sender) {
49 extern int list_only;
50 list_only = 1;
51 }
52
53 /* This is just a friendliness enhancement: if the connection
54 * is to an rsyncd then there is no point specifying the -e option.
55 * Note that this is only set if the -e was explicitly specified,
56 * not if the environment variable just happens to be set.
57 * See http://lists.samba.org/pipermail/rsync/2000-September/002744.html
58 */
59 if (shell_cmd) {
60 rprintf(FERROR, "WARNING: --rsh or -e option ignored when "
61 "connecting to rsync daemon\n");
62 /* continue */
63 }
64
65 if (*path == '/') {
66 rprintf(FERROR,"ERROR: The remote path must start with a module name not a /\n");
67 return -1;
68 }
69
70 p = strchr(host, '@');
71 if (p) {
72 user = host;
73 host = p+1;
74 *p = 0;
75 }
76
77 if (!user) user = getenv("USER");
78 if (!user) user = getenv("LOGNAME");
79
80 fd = open_socket_out(host, rsync_port, &socket_address);
81 if (fd == -1) {
82 exit_cleanup(RERR_SOCKETIO);
83 }
84
85 server_options(sargs,&sargc);
86
87 sargs[sargc++] = ".";
88
89 if (path && *path)
90 sargs[sargc++] = path;
91
92 sargs[sargc] = NULL;
93
94 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
95
96 if (!read_line(fd, line, sizeof(line)-1)) {
97 return -1;
98 }
99
100 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
101 return -1;
102 }
103
104 p = strchr(path,'/');
105 if (p) *p = 0;
106 io_printf(fd,"%s\n",path);
107 if (p) *p = '/';
108
109 while (1) {
110 if (!read_line(fd, line, sizeof(line)-1)) {
111 return -1;
112 }
113
114 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
115 auth_client(fd, user, line+18);
116 continue;
117 }
118
119 if (strcmp(line,"@RSYNCD: OK") == 0) break;
120
121 if (strcmp(line,"@RSYNCD: EXIT") == 0) exit(0);
122
123 rprintf(FINFO,"%s\n", line);
124 }
125
126 for (i=0;i<sargc;i++) {
127 io_printf(fd,"%s\n", sargs[i]);
128 }
129 io_printf(fd,"\n");
130
131 if (remote_version < 23) {
132 if (remote_version == 22 || (remote_version > 17 && !am_sender))
133 io_start_multiplex_in(fd);
134 }
135
136 return client_run(fd, fd, -1, argc, argv);
137}
138
139
140
141static int rsync_module(int fd, int i)
142{
143 int argc=0;
144 char *argv[MAX_ARGS];
145 char **argp;
146 char line[MAXPATHLEN];
147 uid_t uid = (uid_t)-2; /* canonically "nobody" */
148 gid_t gid = (gid_t)-2;
149 char *p;
150 char *addr = client_addr(fd);
151 char *host = client_name(fd);
152 char *name = lp_name(i);
153 int use_chroot = lp_use_chroot(i);
154 int start_glob=0;
155 int ret;
156 char *request=NULL;
157 extern int am_sender;
158 extern int remote_version;
159 extern int am_root;
160
161 if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
162 rprintf(FERROR,"rsync denied on module %s from %s (%s)\n",
163 name, client_name(fd), client_addr(fd));
164 io_printf(fd,"@ERROR: access denied to %s from %s (%s)\n",
165 name, client_name(fd), client_addr(fd));
166 return -1;
167 }
168
169 if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
170 if (errno) {
171 rprintf(FERROR,"failed to open lock file %s : %s\n",
172 lp_lock_file(i), strerror(errno));
173 io_printf(fd,"@ERROR: failed to open lock file %s : %s\n",
174 lp_lock_file(i), strerror(errno));
175 } else {
176 rprintf(FERROR,"max connections (%d) reached\n",
177 lp_max_connections(i));
178 io_printf(fd,"@ERROR: max connections (%d) reached - try again later\n", lp_max_connections(i));
179 }
180 return -1;
181 }
182
183
184 auth_user = auth_server(fd, i, addr, "@RSYNCD: AUTHREQD ");
185
186 if (!auth_user) {
187 rprintf(FERROR,"auth failed on module %s from %s (%s)\n",
188 name, client_name(fd), client_addr(fd));
189 io_printf(fd,"@ERROR: auth failed on module %s\n",name);
190 return -1;
191 }
192
193 module_id = i;
194
195 am_root = (getuid() == 0);
196
197 if (am_root) {
198 p = lp_uid(i);
199 if (!name_to_uid(p, &uid)) {
200 if (!isdigit(*p)) {
201 rprintf(FERROR,"Invalid uid %s\n", p);
202 io_printf(fd,"@ERROR: invalid uid %s\n", p);
203 return -1;
204 }
205 uid = atoi(p);
206 }
207
208 p = lp_gid(i);
209 if (!name_to_gid(p, &gid)) {
210 if (!isdigit(*p)) {
211 rprintf(FERROR,"Invalid gid %s\n", p);
212 io_printf(fd,"@ERROR: invalid gid %s\n", p);
213 return -1;
214 }
215 gid = atoi(p);
216 }
217 }
218
219 /* TODO: If we're not root, but the configuration requests
220 * that we change to some uid other than the current one, then
221 * log a warning. */
222
223 /* TODO: Perhaps take a list of gids, and make them into the
224 * supplementary groups. */
225
226 p = lp_include_from(i);
227 add_exclude_file(p, 1, 1);
228
229 p = lp_include(i);
230 add_include_line(p);
231
232 p = lp_exclude_from(i);
233 add_exclude_file(p, 1, 0);
234
235 p = lp_exclude(i);
236 add_exclude_line(p);
237
238 log_init();
239
240 if (use_chroot) {
241 if (chroot(lp_path(i))) {
242 rsyserr(FERROR, errno, "chroot %s failed", lp_path(i));
243 io_printf(fd,"@ERROR: chroot failed\n");
244 return -1;
245 }
246
247 if (!push_dir("/", 0)) {
248 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
249 io_printf(fd,"@ERROR: chdir failed\n");
250 return -1;
251 }
252
253 } else {
254 if (!push_dir(lp_path(i), 0)) {
255 rsyserr(FERROR, errno, "chdir %s failed\n", lp_path(i));
256 io_printf(fd,"@ERROR: chdir failed\n");
257 return -1;
258 }
259 sanitize_paths = 1;
260 }
261
262 if (am_root) {
263 if (setgid(gid)) {
264 rsyserr(FERROR, errno, "setgid %d failed", gid);
265 io_printf(fd,"@ERROR: setgid failed\n");
266 return -1;
267 }
268
269 if (setuid(uid)) {
270 rsyserr(FERROR, errno, "setuid %d failed", uid);
271 io_printf(fd,"@ERROR: setuid failed\n");
272 return -1;
273 }
274
275 am_root = (getuid() == 0);
276 }
277
278 io_printf(fd,"@RSYNCD: OK\n");
279
280 argv[argc++] = "rsyncd";
281
282 while (1) {
283 if (!read_line(fd, line, sizeof(line)-1)) {
284 return -1;
285 }
286
287 if (!*line) break;
288
289 p = line;
290
291 argv[argc] = strdup(p);
292 if (!argv[argc]) {
293 return -1;
294 }
295
296 if (start_glob) {
297 if (start_glob == 1) {
298 request = strdup(p);
299 start_glob++;
300 }
301 glob_expand(name, argv, &argc, MAX_ARGS);
302 } else {
303 argc++;
304 }
305
306 if (strcmp(line,".") == 0) {
307 start_glob = 1;
308 }
309
310 if (argc == MAX_ARGS) {
311 return -1;
312 }
313 }
314
315 if (sanitize_paths) {
316 /*
317 * Note that this is applied to all parameters, whether or not
318 * they are filenames, but no other legal parameters contain
319 * the forms that need to be sanitized so it doesn't hurt;
320 * it is not known at this point which parameters are files
321 * and which aren't.
322 */
323 for (i = 1; i < argc; i++) {
324 sanitize_path(argv[i], NULL);
325 }
326 }
327
328 argp = argv;
329 ret = parse_arguments(&argc, (const char ***) &argp, 0);
330
331 if (request) {
332 if (*auth_user) {
333 rprintf(FINFO,"rsync %s %s from %s@%s (%s)\n",
334 am_sender?"on":"to",
335 request, auth_user, host, addr);
336 } else {
337 rprintf(FINFO,"rsync %s %s from %s (%s)\n",
338 am_sender?"on":"to",
339 request, host, addr);
340 }
341 free(request);
342 }
343
344#ifndef DEBUG
345 /* don't allow the logs to be flooded too fast */
346 if (verbose > 1) verbose = 1;
347#endif
348
349 if (remote_version < 23) {
350 if (remote_version == 22 || (remote_version > 17 && am_sender))
351 io_start_multiplex_out(fd);
352 }
353
354 /* For later protocol versions, we don't start multiplexing
355 * until we've configured nonblocking in start_server. That
356 * means we're in a sticky situation now: there's no way to
357 * convey errors to the client. */
358
359 /* FIXME: Hold off on reporting option processing errors until
360 * we've set up nonblocking and multiplexed IO and can get the
361 * message back to them. */
362 if (!ret) {
363 option_error();
364 exit_cleanup(RERR_UNSUPPORTED);
365 }
366
367 if (lp_timeout(i)) {
368 extern int io_timeout;
369 io_timeout = lp_timeout(i);
370 }
371
372 start_server(fd, fd, argc, argp);
373
374 return 0;
375}
376
377/* send a list of available modules to the client. Don't list those
378 with "list = False". */
379static void send_listing(int fd)
380{
381 int n = lp_numservices();
382 int i;
383
384 for (i=0;i<n;i++)
385 if (lp_list(i))
386 io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
387
388 io_printf(fd, "@RSYNCD: EXIT\n");
389}
390
391/* this is called when a socket connection is established to a client
392 and we want to start talking. The setup of the system is done from
393 here */
394static int start_daemon(int fd)
395{
396 char line[200];
397 char *motd;
398 int i = -1;
399 extern char *config_file;
400 extern int remote_version;
401
402 if (!lp_load(config_file, 0)) {
403 exit_cleanup(RERR_SYNTAX);
404 }
405
406 set_socket_options(fd,"SO_KEEPALIVE");
407 set_socket_options(fd,lp_socket_options());
408 set_nonblocking(fd);
409
410 io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
411
412 motd = lp_motd_file();
413 if (motd && *motd) {
414 FILE *f = fopen(motd,"r");
415 while (f && !feof(f)) {
416 int len = fread(line, 1, sizeof(line)-1, f);
417 if (len > 0) {
418 line[len] = 0;
419 io_printf(fd,"%s", line);
420 }
421 }
422 if (f) fclose(f);
423 io_printf(fd,"\n");
424 }
425
426 if (!read_line(fd, line, sizeof(line)-1)) {
427 return -1;
428 }
429
430 if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
431 io_printf(fd,"@ERROR: protocol startup error\n");
432 return -1;
433 }
434
435 while (i == -1) {
436 line[0] = 0;
437 if (!read_line(fd, line, sizeof(line)-1)) {
438 return -1;
439 }
440
441 if (!*line || strcmp(line,"#list")==0) {
442 send_listing(fd);
443 return -1;
444 }
445
446 if (*line == '#') {
447 /* it's some sort of command that I don't understand */
448 io_printf(fd,"@ERROR: Unknown command '%s'\n", line);
449 return -1;
450 }
451
452 i = lp_number(line);
453 if (i == -1) {
454 io_printf(fd,"@ERROR: Unknown module '%s'\n", line);
455 return -1;
456 }
457 }
458
459 return rsync_module(fd, i);
460}
461
462
463int daemon_main(void)
464{
465 extern char *config_file;
466 extern int orig_umask;
467 char *pid_file;
468
469 if (is_a_socket(STDIN_FILENO)) {
470 int i;
471
472 /* we are running via inetd - close off stdout and
473 stderr so that library functions (and getopt) don't
474 try to use them. Redirect them to /dev/null */
475 for (i=1;i<3;i++) {
476 close(i);
477 open("/dev/null", O_RDWR);
478 }
479
480 return start_daemon(STDIN_FILENO);
481 }
482
483 become_daemon();
484
485 if (!lp_load(config_file, 1)) {
486 exit_cleanup(RERR_SYNTAX);
487 }
488
489 log_init();
490
491 rprintf(FINFO, "rsyncd version %s starting, listening on port %d\n", VERSION,
492 rsync_port);
493 /* TODO: If listening on a particular address, then show that
494 * address too. */
495
496 if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
497 char pidbuf[16];
498 int fd;
499 int pid = (int) getpid();
500 cleanup_set_pid(pid);
501 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
502 0666 & ~orig_umask)) == -1) {
503 cleanup_set_pid(0);
504 rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
505 exit_cleanup(RERR_FILEIO);
506 }
507 snprintf(pidbuf, sizeof(pidbuf), "%d\n", pid);
508 write(fd, pidbuf, strlen(pidbuf));
509 close(fd);
510 }
511
512 start_accept_loop(rsync_port, start_daemon);
513 return -1;
514}
515