vsprintf returns char* on sunos4
[rsync/rsync.git] / clientserver.c
1 /* 
2    Copyright (C) Andrew Tridgell 1998
3    
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8    
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13    
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 /* the socket based protocol for setting up a connection wit rsyncd */
20
21 #include "rsync.h"
22
23 extern int module_id;
24 extern int read_only;
25 extern int verbose;
26 extern int rsync_port;
27
28 int start_socket_client(char *host, char *path, int argc, char *argv[])
29 {
30         int fd, i;
31         char *sargs[MAX_ARGS];
32         int sargc=0;
33         char line[1024];
34         char *p, *user=NULL;
35         extern int remote_version;
36
37         p = strchr(host, '@');
38         if (p) {
39                 user = host;
40                 host = p+1;
41                 *p = 0;
42         }
43
44         if (!user) user = getenv("USER");
45         if (!user) user = getenv("LOGNAME");
46
47         fd = open_socket_out(host, rsync_port);
48         if (fd == -1) {
49                 exit_cleanup(1);
50         }
51         
52         server_options(sargs,&sargc);
53
54         sargs[sargc++] = ".";
55
56         if (path && *path) 
57                 sargs[sargc++] = path;
58
59         sargs[sargc] = NULL;
60
61         io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
62
63         if (!read_line(fd, line, sizeof(line)-1)) {
64                 return -1;
65         }
66
67         if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
68                 return -1;
69         }
70
71         p = strchr(path,'/');
72         if (p) *p = 0;
73         io_printf(fd,"%s\n",path);
74         if (p) *p = '/';
75
76         while (1) {
77                 if (!read_line(fd, line, sizeof(line)-1)) {
78                         return -1;
79                 }
80
81                 if (strncmp(line,"@RSYNCD: AUTHREQD ",18) == 0) {
82                         auth_client(fd, user, line+18);
83                         continue;
84                 }
85
86                 if (strcmp(line,"@RSYNCD: OK") == 0) break;
87                 rprintf(FINFO,"%s\n", line);
88         }
89
90         for (i=0;i<sargc;i++) {
91                 io_printf(fd,"%s\n", sargs[i]);
92         }
93         io_printf(fd,"\n");
94
95         return client_run(fd, fd, -1, argc, argv);
96 }
97
98
99
100 static int rsync_module(int fd, int i)
101 {
102         int argc=0;
103         char *argv[MAX_ARGS];
104         char **argp;
105         char line[1024];
106         uid_t uid;
107         gid_t gid;
108         char *p;
109         char *addr = client_addr(fd);
110         char *host = client_name(fd);
111         char *auth;
112
113         if (!allow_access(addr, host, lp_hosts_allow(i), lp_hosts_deny(i))) {
114                 rprintf(FERROR,"rsync denied on module %s from %s (%s)\n",
115                         lp_name(i), client_name(fd), client_addr(fd));
116                 io_printf(fd,"@ERROR: access denied to %s from %s (%s)\n",
117                           lp_name(i), client_name(fd), client_addr(fd));
118                 return -1;
119         }
120
121         if (!auth_server(fd, i, addr, "@RSYNCD: AUTHREQD ")) {
122                 rprintf(FERROR,"auth failed on module %s from %s (%s)\n",
123                         lp_name(i), client_name(fd), client_addr(fd));
124                 io_printf(fd,"@ERROR: auth failed on module %s\n",lp_name(i));
125                 return -1;              
126         }
127
128         if (!claim_connection(lp_lock_file(), lp_max_connections())) {
129                 rprintf(FERROR,"max connections (%d) reached\n",
130                         lp_max_connections());
131                 io_printf(fd,"@ERROR: max connections (%d) reached - try again later\n", lp_max_connections());
132                 return -1;
133         }
134
135         rprintf(FINFO,"rsync on module %s from %s (%s)\n",
136                 lp_name(i), host, addr);
137         
138         module_id = i;
139
140         if (lp_read_only(i))
141                 read_only = 1;
142
143         p = lp_uid(i);
144         if (!name_to_uid(p, &uid)) {
145                 if (!isdigit(*p)) {
146                         rprintf(FERROR,"Invalid uid %s\n", p);
147                         io_printf(fd,"@ERROR: invalid uid\n");
148                         return -1;
149                 } 
150                 uid = atoi(p);
151         }
152
153         p = lp_gid(i);
154         if (!name_to_gid(p, &gid)) {
155                 if (!isdigit(*p)) {
156                         rprintf(FERROR,"Invalid gid %s\n", p);
157                         io_printf(fd,"@ERROR: invalid gid\n");
158                         return -1;
159                 } 
160                 gid = atoi(p);
161         }
162
163         if (chroot(lp_path(i))) {
164                 io_printf(fd,"@ERROR: chroot failed\n");
165                 return -1;
166         }
167
168         if (chdir("/")) {
169                 io_printf(fd,"@ERROR: chdir failed\n");
170                 return -1;
171         }
172
173         if (setgid(gid)) {
174                 io_printf(fd,"@ERROR: setgid failed\n");
175                 return -1;
176         }
177
178         if (setuid(uid)) {
179                 io_printf(fd,"@ERROR: setuid failed\n");
180                 return -1;
181         }
182
183         io_printf(fd,"@RSYNCD: OK\n");
184
185         argv[argc++] = "rsyncd";
186
187         while (1) {
188                 if (!read_line(fd, line, sizeof(line)-1)) {
189                         return -1;
190                 }
191
192                 if (!*line) break;
193
194                 argv[argc] = strdup(line);
195                 if (!argv[argc]) {
196                         return -1;
197                 }
198
199                 argc++;
200                 if (argc == MAX_ARGS) {
201                         return -1;
202                 }
203         }
204
205         parse_arguments(argc, argv);
206
207         /* don't allow the logs to be flooded too fast */
208         if (verbose > 1) verbose = 1;
209
210         argc -= optind;
211         argp = argv + optind;
212         optind = 0;
213
214         start_server(fd, fd, argc, argp);
215
216         return 0;
217 }
218
219 /* send a list of available modules to the client. Don't list those
220    with "list = False". */
221 static void send_listing(int fd)
222 {
223         int n = lp_numservices();
224         int i;
225         
226         for (i=0;i<n;i++)
227                 if (lp_list(i))
228                     io_printf(fd, "%-15s\t%s\n", lp_name(i), lp_comment(i));
229 }
230
231 /* this is called when a socket connection is established to a client
232    and we want to start talking. The setup of the system is done from
233    here */
234 static int start_daemon(int fd)
235 {
236         char line[200];
237         char *motd;
238         int i = -1;
239         extern char *config_file;
240         extern int remote_version;
241
242         if (!lp_load(config_file)) {
243                 exit_cleanup(1);
244         }
245
246         set_socket_options(fd,"SO_KEEPALIVE");
247
248         io_printf(fd,"@RSYNCD: %d\n", PROTOCOL_VERSION);
249
250         motd = lp_motd_file();
251         if (*motd) {
252                 FILE *f = fopen(motd,"r");
253                 while (f && !feof(f)) {
254                         int len = fread(line, 1, sizeof(line)-1, f);
255                         if (len > 0) {
256                                 line[len] = 0;
257                                 io_printf(fd,"%s", line);
258                         }
259                 }
260                 if (f) fclose(f);
261                 io_printf(fd,"\n");
262         }
263
264         if (!read_line(fd, line, sizeof(line)-1)) {
265                 return -1;
266         }
267
268         if (sscanf(line,"@RSYNCD: %d", &remote_version) != 1) {
269                 io_printf(fd,"@ERROR: protocol startup error\n");
270                 return -1;
271         }       
272
273         while (i == -1) {
274                 line[0] = 0;
275                 if (!read_line(fd, line, sizeof(line)-1)) {
276                         return -1;
277                 }
278
279                 if (!*line || strcmp(line,"#list")==0) {
280                         send_listing(fd);
281                         return -1;
282                 } 
283
284                 if (*line == '#') {
285                         /* it's some sort of command that I don't understand */
286                         io_printf(fd,"@ERROR: Unknown command '%s'\n", line);
287                         return -1;
288                 }
289
290                 i = lp_number(line);
291                 if (i == -1) {
292                         io_printf(fd,"@ERROR: Unknown module '%s'\n", line);
293                         return -1;
294                 }
295         }
296
297         return rsync_module(fd, i);
298 }
299
300
301 int daemon_main(void)
302 {
303         if (is_a_socket(STDIN_FILENO)) {
304                 /* we are running via inetd */
305                 return start_daemon(STDIN_FILENO);
306         }
307
308         become_daemon();
309
310         start_accept_loop(rsync_port, start_daemon);
311         return -1;
312 }
313