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