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