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