Tweaked one or more warning messages.
[rsync/rsync.git] / clientserver.c
1 /* -*- c-file-style: "linux"; -*-
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  */
20
21 /**
22  * @file
23  *
24  * The socket based protocol for setting up a connection with
25  * rsyncd.
26  **/
27
28 #include "rsync.h"
29
30 extern int am_sender;
31 extern int am_server;
32 extern int am_daemon;
33 extern int am_root;
34 extern int verbose;
35 extern int rsync_port;
36 extern int kludge_around_eof;
37 extern int daemon_over_rsh;
38 extern int list_only;
39 extern int sanitize_paths;
40 extern int filesfrom_fd;
41 extern int remote_protocol;
42 extern int protocol_version;
43 extern int io_timeout;
44 extern int select_timeout;
45 extern int orig_umask;
46 extern int no_detach;
47 extern int default_af_hint;
48 extern char *bind_address;
49 extern struct filter_list_struct server_filter_list;
50 extern char *config_file;
51 extern char *files_from;
52
53 char *auth_user;
54 int read_only = 0;
55 int module_id = -1;
56
57 /* Length of lp_path() string when in daemon mode & not chrooted, else 0. */
58 unsigned int module_dirlen = 0;
59
60 /**
61  * Run a client connected to an rsyncd.  The alternative to this
62  * function for remote-shell connections is do_cmd().
63  *
64  * After negotiating which module to use and reading the server's
65  * motd, this hands over to client_run().  Telling the server the
66  * module will cause it to chroot/setuid/etc.
67  *
68  * Instead of doing a transfer, the client may at this stage instead
69  * get a listing of remote modules and exit.
70  *
71  * @return -1 for error in startup, or the result of client_run().
72  * Either way, it eventually gets passed to exit_cleanup().
73  **/
74 int start_socket_client(char *host, char *path, int argc, char *argv[])
75 {
76         int fd, ret;
77         char *p, *user = NULL;
78
79         /* This is redundant with code in start_inband_exchange(), but this
80          * short-circuits a problem in the client before we open a socket,
81          * and the extra check won't hurt. */
82         if (*path == '/') {
83                 rprintf(FERROR,
84                         "ERROR: The remote path must start with a module name not a /\n");
85                 return -1;
86         }
87
88         if ((p = strchr(host, '@')) != NULL) {
89                 user = host;
90                 host = p+1;
91                 *p = '\0';
92         }
93
94         if (rsync_port == 0)
95                 rsync_port = RSYNC_PORT;
96
97         fd = open_socket_out_wrapped(host, rsync_port, bind_address,
98                                      default_af_hint);
99         if (fd == -1)
100                 exit_cleanup(RERR_SOCKETIO);
101
102         ret = start_inband_exchange(user, path, fd, fd, argc);
103
104         return ret < 0? ret : client_run(fd, fd, -1, argc, argv);
105 }
106
107 int start_inband_exchange(char *user, char *path, int f_in, int f_out, 
108                           int argc)
109 {
110         int i;
111         char *sargs[MAX_ARGS];
112         int sargc = 0;
113         char line[MAXPATHLEN];
114         char *p;
115
116         if (argc == 0 && !am_sender)
117                 list_only |= 1;
118
119         if (*path == '/') {
120                 rprintf(FERROR,
121                         "ERROR: The remote path must start with a module name\n");
122                 return -1;
123         }
124
125         if (!user)
126                 user = getenv("USER");
127         if (!user)
128                 user = getenv("LOGNAME");
129
130         io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
131
132         if (!read_line(f_in, line, sizeof line - 1)) {
133                 rprintf(FERROR, "rsync: did not see server greeting\n");
134                 return -1;
135         }
136
137         if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
138                 /* note that read_line strips of \n or \r */
139                 rprintf(FERROR, "rsync: server sent \"%s\" rather than greeting\n",
140                         line);
141                 return -1;
142         }
143         if (protocol_version > remote_protocol)
144                 protocol_version = remote_protocol;
145
146         if (list_only && protocol_version >= 29)
147                 list_only |= 2;
148
149         /* set daemon_over_rsh to false since we need to build the
150          * true set of args passed through the rsh/ssh connection;
151          * this is a no-op for direct-socket-connection mode */
152         daemon_over_rsh = 0;
153         server_options(sargs, &sargc);
154
155         sargs[sargc++] = ".";
156
157         if (path && *path)
158                 sargs[sargc++] = path;
159
160         sargs[sargc] = NULL;
161
162         if (verbose > 1)
163                 print_child_argv(sargs);
164
165         p = strchr(path,'/');
166         if (p) *p = 0;
167         io_printf(f_out, "%s\n", path);
168         if (p) *p = '/';
169
170         /* Old servers may just drop the connection here,
171          rather than sending a proper EXIT command.  Yuck. */
172         kludge_around_eof = list_only && (protocol_version < 25);
173
174         while (1) {
175                 if (!read_line(f_in, line, sizeof line - 1)) {
176                         rprintf(FERROR, "rsync: didn't get server startup line\n");
177                         return -1;
178                 }
179
180                 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
181                         auth_client(f_out, user, line+18);
182                         continue;
183                 }
184
185                 if (strcmp(line,"@RSYNCD: OK") == 0)
186                         break;
187
188                 if (strcmp(line,"@RSYNCD: EXIT") == 0) {
189                         /* This is sent by recent versions of the
190                          * server to terminate the listing of modules.
191                          * We don't want to go on and transfer
192                          * anything; just exit. */
193                         exit(0);
194                 }
195
196                 if (strncmp(line, "@ERROR", 6) == 0) {
197                         rprintf(FERROR, "%s\n", line);
198                         /* This is always fatal; the server will now
199                          * close the socket. */
200                         return RERR_STARTCLIENT;
201                 } else {
202                         rprintf(FINFO,"%s\n", line);
203                 }
204         }
205         kludge_around_eof = False;
206
207         for (i = 0; i < sargc; i++) {
208                 io_printf(f_out, "%s\n", sargs[i]);
209         }
210         io_printf(f_out, "\n");
211
212         if (protocol_version < 23) {
213                 if (protocol_version == 22 || !am_sender)
214                         io_start_multiplex_in();
215         }
216
217         return 0;
218 }
219
220
221
222 static int rsync_module(int f_in, int f_out, int i)
223 {
224         int argc = 0;
225         int maxargs;
226         char **argv;
227         char **argp;
228         char line[MAXPATHLEN];
229         uid_t uid = (uid_t)-2;  /* canonically "nobody" */
230         gid_t gid = (gid_t)-2;
231         char *p;
232         char *addr = client_addr(f_in);
233         char *host = client_name(f_in);
234         char *name = lp_name(i);
235         int use_chroot = lp_use_chroot(i);
236         int start_glob = 0;
237         int ret;
238         char *request = NULL;
239
240         if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
241                 rprintf(FLOG, "rsync denied on module %s from %s (%s)\n",
242                         name, host, addr);
243                 if (!lp_list(i))
244                         io_printf(f_out, "@ERROR: Unknown module '%s'\n", name);
245                 else {
246                         io_printf(f_out,
247                                   "@ERROR: access denied to %s from %s (%s)\n",
248                                   name, host, addr);
249                 }
250                 return -1;
251         }
252
253         if (am_daemon && am_server) {
254                 rprintf(FLOG, "rsync allowed access on module %s from %s (%s)\n",
255                         name, host, addr);
256         }
257
258         if (!claim_connection(lp_lock_file(i), lp_max_connections(i))) {
259                 if (errno) {
260                         rsyserr(FLOG, errno, "failed to open lock file %s",
261                                 lp_lock_file(i));
262                         io_printf(f_out, "@ERROR: failed to open lock file %s\n",
263                                   lp_lock_file(i));
264                 } else {
265                         rprintf(FLOG, "max connections (%d) reached\n",
266                                 lp_max_connections(i));
267                         io_printf(f_out, "@ERROR: max connections (%d) reached -- try again later\n",
268                                 lp_max_connections(i));
269                 }
270                 return -1;
271         }
272
273         auth_user = auth_server(f_in, f_out, i, addr, "@RSYNCD: AUTHREQD ");
274
275         if (!auth_user) {
276                 rprintf(FLOG, "auth failed on module %s from %s (%s)\n",
277                         name, host, addr);
278                 io_printf(f_out, "@ERROR: auth failed on module %s\n", name);
279                 return -1;
280         }
281
282         module_id = i;
283
284         if (lp_read_only(i))
285                 read_only = 1;
286
287         am_root = (MY_UID() == 0);
288
289         if (am_root) {
290                 p = lp_uid(i);
291                 if (!name_to_uid(p, &uid)) {
292                         if (!isdigit(*(unsigned char *)p)) {
293                                 rprintf(FLOG, "Invalid uid %s\n", p);
294                                 io_printf(f_out, "@ERROR: invalid uid %s\n", p);
295                                 return -1;
296                         }
297                         uid = atoi(p);
298                 }
299
300                 p = lp_gid(i);
301                 if (!name_to_gid(p, &gid)) {
302                         if (!isdigit(*(unsigned char *)p)) {
303                                 rprintf(FLOG, "Invalid gid %s\n", p);
304                                 io_printf(f_out, "@ERROR: invalid gid %s\n", p);
305                                 return -1;
306                         }
307                         gid = atoi(p);
308                 }
309         }
310
311         /* TODO: If we're not root, but the configuration requests
312          * that we change to some uid other than the current one, then
313          * log a warning. */
314
315         /* TODO: Perhaps take a list of gids, and make them into the
316          * supplementary groups. */
317
318         if (use_chroot) {
319                 module_dirlen = 0;
320                 set_filter_dir("/", 1);
321         } else {
322                 module_dirlen = strlen(lp_path(i));
323                 set_filter_dir(lp_path(i), module_dirlen);
324         }
325
326         p = lp_filter(i);
327         add_filter(&server_filter_list, p,
328             XFLG_WORD_SPLIT | XFLG_ANCHORED2ABS);
329
330         p = lp_include_from(i);
331         add_filter_file(&server_filter_list, p,
332             XFLG_FATAL_ERRORS | XFLG_ANCHORED2ABS | XFLG_DEF_INCLUDE);
333
334         p = lp_include(i);
335         add_filter(&server_filter_list, p,
336             XFLG_WORD_SPLIT | XFLG_ANCHORED2ABS | XFLG_DEF_INCLUDE);
337
338         p = lp_exclude_from(i);
339         add_filter_file(&server_filter_list, p,
340             XFLG_FATAL_ERRORS | XFLG_ANCHORED2ABS | XFLG_DEF_EXCLUDE);
341
342         p = lp_exclude(i);
343         add_filter(&server_filter_list, p,
344             XFLG_WORD_SPLIT | XFLG_ANCHORED2ABS | XFLG_DEF_EXCLUDE);
345
346         log_init();
347
348         if (use_chroot) {
349                 /*
350                  * XXX: The 'use chroot' flag is a fairly reliable
351                  * source of confusion, because it fails under two
352                  * important circumstances: running as non-root,
353                  * running on Win32 (or possibly others).  On the
354                  * other hand, if you are running as root, then it
355                  * might be better to always use chroot.
356                  *
357                  * So, perhaps if we can't chroot we should just issue
358                  * a warning, unless a "require chroot" flag is set,
359                  * in which case we fail.
360                  */
361                 if (chroot(lp_path(i))) {
362                         rsyserr(FLOG, errno, "chroot %s failed", lp_path(i));
363                         io_printf(f_out, "@ERROR: chroot failed\n");
364                         return -1;
365                 }
366
367                 if (!push_dir("/")) {
368                         rsyserr(FLOG, errno, "chdir %s failed\n", lp_path(i));
369                         io_printf(f_out, "@ERROR: chdir failed\n");
370                         return -1;
371                 }
372
373         } else {
374                 if (!push_dir(lp_path(i))) {
375                         rsyserr(FLOG, errno, "chdir %s failed\n", lp_path(i));
376                         io_printf(f_out, "@ERROR: chdir failed\n");
377                         return -1;
378                 }
379                 sanitize_paths = 1;
380         }
381
382         if (am_root) {
383                 /* XXXX: You could argue that if the daemon is started
384                  * by a non-root user and they explicitly specify a
385                  * gid, then we should try to change to that gid --
386                  * this could be possible if it's already in their
387                  * supplementary groups. */
388
389                 /* TODO: Perhaps we need to document that if rsyncd is
390                  * started by somebody other than root it will inherit
391                  * all their supplementary groups. */
392
393                 if (setgid(gid)) {
394                         rsyserr(FLOG, errno, "setgid %d failed", (int)gid);
395                         io_printf(f_out, "@ERROR: setgid failed\n");
396                         return -1;
397                 }
398 #if HAVE_SETGROUPS
399                 /* Get rid of any supplementary groups this process
400                  * might have inheristed. */
401                 if (setgroups(1, &gid)) {
402                         rsyserr(FLOG, errno, "setgroups failed");
403                         io_printf(f_out, "@ERROR: setgroups failed\n");
404                         return -1;
405                 }
406 #endif
407
408                 if (setuid(uid)) {
409                         rsyserr(FLOG, errno, "setuid %d failed", (int)uid);
410                         io_printf(f_out, "@ERROR: setuid failed\n");
411                         return -1;
412                 }
413
414                 am_root = (MY_UID() == 0);
415         }
416
417         io_printf(f_out, "@RSYNCD: OK\n");
418
419         maxargs = MAX_ARGS;
420         if (!(argv = new_array(char *, maxargs)))
421                 out_of_memory("rsync_module");
422         argv[argc++] = "rsyncd";
423
424         while (1) {
425                 if (!read_line(f_in, line, sizeof line - 1))
426                         return -1;
427
428                 if (!*line)
429                         break;
430
431                 p = line;
432
433                 if (argc == maxargs) {
434                         maxargs += MAX_ARGS;
435                         if (!(argv = realloc_array(argv, char *, maxargs)))
436                                 out_of_memory("rsync_module");
437                 }
438                 if (!(argv[argc] = strdup(p)))
439                         out_of_memory("rsync_module");
440
441                 if (start_glob) {
442                         if (start_glob == 1) {
443                                 request = strdup(p);
444                                 start_glob++;
445                         }
446                         glob_expand(name, &argv, &argc, &maxargs);
447                 } else
448                         argc++;
449
450                 if (strcmp(line, ".") == 0)
451                         start_glob = 1;
452         }
453
454         verbose = 0; /* future verbosity is controlled by client options */
455         argp = argv;
456         ret = parse_arguments(&argc, (const char ***) &argp, 0);
457
458         if (filesfrom_fd == 0)
459                 filesfrom_fd = f_in;
460
461         if (request) {
462                 if (*auth_user) {
463                         rprintf(FLOG, "rsync %s %s from %s@%s (%s)\n",
464                                 am_sender ? "on" : "to",
465                                 request, auth_user, host, addr);
466                 } else {
467                         rprintf(FLOG, "rsync %s %s from %s (%s)\n",
468                                 am_sender ? "on" : "to",
469                                 request, host, addr);
470                 }
471                 free(request);
472         }
473
474 #ifndef DEBUG
475         /* don't allow the logs to be flooded too fast */
476         if (verbose > lp_max_verbosity())
477                 verbose = lp_max_verbosity();
478 #endif
479
480         if (protocol_version < 23
481             && (protocol_version == 22 || am_sender))
482                 io_start_multiplex_out();
483         else if (!ret) {
484                 /* We have to get I/O multiplexing started so that we can
485                  * get the error back to the client.  This means getting
486                  * the protocol setup finished first in later versions. */
487                 setup_protocol(f_out, f_in);
488                 if (files_from && !am_sender && strcmp(files_from, "-") != 0)
489                         write_byte(f_out, 0);
490                 io_start_multiplex_out();
491         }
492
493         if (!ret) {
494                 option_error();
495                 msleep(400);
496                 exit_cleanup(RERR_UNSUPPORTED);
497         }
498
499         if (lp_timeout(i)) {
500                 io_timeout = lp_timeout(i);
501                 if (io_timeout < select_timeout)
502                         select_timeout = io_timeout;
503         }
504
505         start_server(f_in, f_out, argc, argp);
506
507         return 0;
508 }
509
510 /* send a list of available modules to the client. Don't list those
511    with "list = False". */
512 static void send_listing(int fd)
513 {
514         int n = lp_numservices();
515         int i;
516
517         for (i = 0; i < n; i++) {
518                 if (lp_list(i))
519                         io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
520         }
521
522         if (protocol_version >= 25)
523                 io_printf(fd,"@RSYNCD: EXIT\n");
524 }
525
526 /* this is called when a connection is established to a client
527    and we want to start talking. The setup of the system is done from
528    here */
529 int start_daemon(int f_in, int f_out)
530 {
531         char line[200];
532         char *motd;
533         int i;
534
535         io_set_sock_fds(f_in, f_out);
536
537         if (!lp_load(config_file, 0))
538                 exit_cleanup(RERR_SYNTAX);
539
540         log_init();
541
542         if (!am_server) {
543                 set_socket_options(f_in, "SO_KEEPALIVE");
544                 set_socket_options(f_in, lp_socket_options());
545                 set_nonblocking(f_in);
546         }
547
548         io_printf(f_out, "@RSYNCD: %d\n", protocol_version);
549
550         motd = lp_motd_file();
551         if (motd && *motd) {
552                 FILE *f = fopen(motd,"r");
553                 while (f && !feof(f)) {
554                         int len = fread(line, 1, sizeof line - 1, f);
555                         if (len > 0) {
556                                 line[len] = 0;
557                                 io_printf(f_out, "%s", line);
558                         }
559                 }
560                 if (f)
561                         fclose(f);
562                 io_printf(f_out, "\n");
563         }
564
565         if (!read_line(f_in, line, sizeof line - 1))
566                 return -1;
567
568         if (sscanf(line,"@RSYNCD: %d", &remote_protocol) != 1) {
569                 io_printf(f_out, "@ERROR: protocol startup error\n");
570                 return -1;
571         }
572         if (protocol_version > remote_protocol)
573                 protocol_version = remote_protocol;
574
575         line[0] = 0;
576         if (!read_line(f_in, line, sizeof line - 1))
577                 return -1;
578
579         if (!*line || strcmp(line, "#list") == 0) {
580                 send_listing(f_out);
581                 return -1;
582         }
583
584         if (*line == '#') {
585                 /* it's some sort of command that I don't understand */
586                 io_printf(f_out, "@ERROR: Unknown command '%s'\n", line);
587                 return -1;
588         }
589
590         if ((i = lp_number(line)) < 0) {
591                 char *addr = client_addr(f_in);
592                 char *host = client_name(f_in);
593                 rprintf(FLOG, "unknown module '%s' tried from %s (%s)\n",
594                         line, host, addr);
595                 io_printf(f_out, "@ERROR: Unknown module '%s'\n", line);
596                 return -1;
597         }
598
599         return rsync_module(f_in, f_out, i);
600 }
601
602
603 int daemon_main(void)
604 {
605         char *pid_file;
606
607         if (is_a_socket(STDIN_FILENO)) {
608                 int i;
609
610                 /* we are running via inetd - close off stdout and
611                  * stderr so that library functions (and getopt) don't
612                  * try to use them. Redirect them to /dev/null */
613                 for (i = 1; i < 3; i++) {
614                         close(i);
615                         open("/dev/null", O_RDWR);
616                 }
617
618                 return start_daemon(STDIN_FILENO, STDIN_FILENO);
619         }
620
621         if (!no_detach)
622                 become_daemon();
623
624         if (!lp_load(config_file, 1))
625                 exit_cleanup(RERR_SYNTAX);
626
627         if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
628                 rsync_port = RSYNC_PORT;
629         if (bind_address == NULL && *lp_bind_address())
630                 bind_address = lp_bind_address();
631
632         log_init();
633
634         rprintf(FLOG, "rsyncd version %s starting, listening on port %d\n",
635                 RSYNC_VERSION, rsync_port);
636         /* TODO: If listening on a particular address, then show that
637          * address too.  In fact, why not just do inet_ntop on the
638          * local address??? */
639
640         if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
641                 char pidbuf[16];
642                 int fd;
643                 pid_t pid = getpid();
644                 cleanup_set_pid(pid);
645                 if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
646                                         0666 & ~orig_umask)) == -1) {
647                         cleanup_set_pid(0);
648                         rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
649                         exit_cleanup(RERR_FILEIO);
650                 }
651                 snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
652                 write(fd, pidbuf, strlen(pidbuf));
653                 close(fd);
654         }
655
656         start_accept_loop(rsync_port, start_daemon);
657         return -1;
658 }