(Log entry for previous version is bogus.) Added support for multiple
[become] / src / check.c
CommitLineData
c4f2d992 1/* -*-c-*-
2 *
27d7bfc2 3 * $Id: check.c,v 1.4 1997/08/07 09:52:05 mdw Exp $
c4f2d992 4 *
5 * Check validity of requests
6 *
7 * (c) 1997 EBI
8 */
9
03f996bd 10/*----- Licensing notice --------------------------------------------------*
c4f2d992 11 *
12 * This file is part of `become'
13 *
14 * `Become' is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * `Become' is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
03f996bd 25 * along with `become'; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
c4f2d992 27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: check.c,v $
27d7bfc2 32 * Revision 1.4 1997/08/07 09:52:05 mdw
33 * (Log entry for previous version is bogus.) Added support for multiple
34 * servers.
607937a4 35 *
03f996bd 36 * Revision 1.2 1997/08/04 10:24:20 mdw
37 * Sources placed under CVS control.
38 *
39 * Revision 1.1 1997/07/21 13:47:53 mdw
c4f2d992 40 * Initial revision
41 *
42 */
43
44/*----- Header files ------------------------------------------------------*/
45
46/* --- ANSI headers --- */
47
48#include <ctype.h>
49#include <errno.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53#include <time.h>
54
55/* --- Unix headers --- */
56
57#include <sys/time.h>
58#include <sys/types.h>
59#include <sys/socket.h>
60
61#include <netinet/in.h>
62
63#include <arpa/inet.h>
64
65#include <netdb.h>
66#include <unistd.h>
67
68/* --- Local headers --- */
69
70#include "become.h"
71#include "config.h"
72#include "crypt.h"
73#include "idea.h"
74#include "lexer.h"
75#include "name.h"
607937a4 76#include "netg.h"
c4f2d992 77#include "rule.h"
78#include "parser.h"
79#include "tx.h"
03f996bd 80#include "userdb.h"
c4f2d992 81#include "utils.h"
82
83/*----- Main code ---------------------------------------------------------*/
84
03f996bd 85/* --- @check__send@ --- *
86 *
87 * Arguments: @unsigned char *crq@ = pointer to encrypted request
88 * @int fd@ = socket to send from
89 * @struct sockaddr_in *serv@ = pointer to table of servers
90 * @size_t n_serv@ = number of servers
91 *
92 * Returns: ---
93 *
94 * Use: Sends the request packet to the list of servers. If the
95 * message couldn't be sent to any of them, an error is
96 * reported.
97 */
98
99static void check__send(unsigned char *crq, int fd,
100 struct sockaddr_in *serv, size_t n_serv)
101{
102 size_t i;
103 int ok = 0;
104 int err = 0;
105
106 for (i = 0; i < n_serv; i++) {
107 if (sendto(fd, (char *)crq, crq_size, 0,
108 (struct sockaddr *)(serv + i), sizeof(serv[i])) < 0) {
109 T( trace(TRACE_CLIENT, "client: send to %s failed: %s",
110 inet_ntoa(serv[i].sin_addr), strerror(errno)); )
111 err = errno;
112 } else
113 ok = 1;
114 }
115
116 if (!ok)
117 die("couldn't send request to server: %s", strerror(err));
118}
119
120/* --- @check__ask@ --- *
c4f2d992 121 *
122 * Arguments: @request *rq@ = pointer to request buffer
03f996bd 123 * @struct sockaddr_in *serv@ = pointer to table of servers
124 * @size_t n_serv@ = number of servers
c4f2d992 125 *
126 * Returns: Nonzero if OK, zero if forbidden
127 *
03f996bd 128 * Use: Contacts a number of servers to decide whether the request
129 * is OK.
c4f2d992 130 */
131
03f996bd 132static int check__ask(request *rq, struct sockaddr_in *serv, size_t n_serv)
c4f2d992 133{
134 int fd;
c4f2d992 135 unsigned char crq[crq_size];
c4f2d992 136 unsigned char sk[IDEA_KEYSIZE];
137 time_t t;
138 pid_t pid;
139
03f996bd 140 /* --- First, build the encrypted request packet --- */
c4f2d992 141
03f996bd 142 {
143 unsigned char k[IDEA_KEYSIZE];
144 FILE *fp;
c4f2d992 145
03f996bd 146 /* --- Read in the encryption key --- */
c4f2d992 147
03f996bd 148 if ((fp = fopen(file_KEY, "r")) == 0) {
149 die("couldn't open key file `%s': %s", file_KEY,
150 strerror(errno));
151 }
152 tx_getBits(k, 128, fp);
c4f2d992 153
03f996bd 154 /* --- Now build a request packet --- */
c4f2d992 155
03f996bd 156 t = time(0);
157 pid = getpid();
158 crypt_packRequest(rq, crq, t, pid, k, sk);
159 burn(k);
160 T( trace(TRACE_CLIENT, "client: encrypted request packet"); )
c4f2d992 161 }
162
03f996bd 163 /* --- Create my socket --- */
c4f2d992 164
165 {
03f996bd 166 struct sockaddr_in sin;
c4f2d992 167
03f996bd 168 if ((fd = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
169 die("couldn't create socket: %s", strerror(errno));
c4f2d992 170
03f996bd 171 /* --- Bind myself to some address --- */
c4f2d992 172
03f996bd 173 sin.sin_family = AF_INET;
174 sin.sin_port = 0;
175 sin.sin_addr.s_addr = htonl(INADDR_ANY);
c4f2d992 176
03f996bd 177 if (bind(fd, (struct sockaddr *)&sin, sizeof(sin)) < 0)
178 die("couldn't bind socket to address: %s", strerror(errno));
c4f2d992 179 }
180
03f996bd 181 /* --- Now wait for a reply --- */
c4f2d992 182
183 {
03f996bd 184 fd_set fds;
185 struct timeval start, now, tv;
186 int ind;
187 size_t i;
c4f2d992 188
03f996bd 189 /* --- State table for waiting for replies --- *
190 *
191 * For each number, send off the request to our servers, and wait for
192 * that many seconds to have elapsed since we started. If the number is
193 * %$-1$% then it's time to give up.
194 */
c4f2d992 195
03f996bd 196 static int tbl[] = { 0, 5, 10, 20, -1 };
c4f2d992 197
03f996bd 198 /* --- Find out when we are --- */
c4f2d992 199
03f996bd 200 gettimeofday(&start, 0);
201 ind = 0;
c4f2d992 202
03f996bd 203 /* --- Now loop until everything's done --- */
c4f2d992 204
205 for (;;) {
03f996bd 206 gettimeofday(&now, 0);
c4f2d992 207
03f996bd 208 /* --- If the current timer has expired, find one that hasn't --- *
209 *
210 * Also resend the request after I've found a timer which is still
211 * extant. If there aren't any, report an error.
212 */
213
214 if (now.tv_sec >= start.tv_sec + tbl[ind] &&
215 now.tv_usec >= start.tv_usec) {
216 do {
217 ind++;
218 if (tbl[ind] < 0)
219 die("no reply from servers");
220 } while (now.tv_sec >= start.tv_sec + tbl[ind] &&
221 now.tv_usec >= start.tv_usec);
222 check__send(crq, fd, serv, n_serv);
223 T( trace(TRACE_CLIENT, "client: send request to servers"); )
224 }
c4f2d992 225
03f996bd 226 /* --- Now wait for a packet to arrive --- */
227
228 if (now.tv_usec > start.tv_usec) {
c4f2d992 229 now.tv_usec -= 1000000;
230 now.tv_sec += 1;
231 }
03f996bd 232 tv.tv_sec = start.tv_sec + tbl[ind] - now.tv_sec;
233 tv.tv_usec = start.tv_usec - now.tv_usec;
c4f2d992 234
235 /* --- Sort out file descriptors to watch --- */
236
237 FD_ZERO(&fds);
238 FD_SET(fd, &fds);
239
240 /* --- Wait for them --- */
241
242 i = select(FD_SETSIZE, &fds, 0, 0, &tv);
03f996bd 243 if (i == 0 || (i < 0 && errno == EINTR))
244 continue;
c4f2d992 245 if (i < 0)
246 die("error waiting for reply: %s", strerror(errno));
247
248 /* --- A reply should be waiting now --- */
249
250 {
251 struct sockaddr_in sin;
252 int slen = sizeof(sin);
253 unsigned char buff[256];
254 int answer;
255
256 /* --- Read the reply data --- */
257
258 if (recvfrom(fd, (char *)buff, sizeof(buff), 0,
259 (struct sockaddr *)&sin, &slen) < 0)
260 die("error reading server's reply: %s", strerror(errno));
261
03f996bd 262 IF_TRACING(TRACE_CLIENT, {
263 struct hostent *h = gethostbyaddr((char *)&sin.sin_addr,
264 sizeof(sin.sin_addr), AF_INET);
265 trace(TRACE_CLIENT, "client: reply received from %s port %i",
266 h ? h->h_name : inet_ntoa(sin.sin_addr),
267 ntohs(sin.sin_port));
268 })
269
270 /* --- Verify the sender --- *
271 *
272 * This is more to avoid confusion than for security: an active
273 * attacker is quite capable of forging the source address. We rely
274 * on the checksum in the reply packet for authentication.
275 */
276
277 for (i = 0; i < n_serv; i++) {
278 if (sin.sin_addr.s_addr == serv[i].sin_addr.s_addr &&
279 sin.sin_port == serv[i].sin_port)
280 break;
281 }
282 if (i >= n_serv) {
283 T( trace(TRACE_CLIENT, "client: reply from unknown host"); )
c4f2d992 284 continue;
03f996bd 285 }
c4f2d992 286
287 /* --- Unpack and verify the response --- */
288
289 answer = crypt_unpackReply(buff, sk, t, pid);
03f996bd 290 if (answer < 0) {
291 T( trace(TRACE_CLIENT,
292 "client: invalid or corrupt reply packet"); )
c4f2d992 293 continue;
03f996bd 294 }
c4f2d992 295 return (answer);
296 }
297 }
298 }
299
03f996bd 300 die("internal error: can't get here in check__ask");
c4f2d992 301 return (0);
302}
303
03f996bd 304/* --- @check__client@ --- *
305 *
306 * Arguments: @request *rq@ = pointer to a request block
307 * @FILE *fp@ = file containing server configuration
308 *
309 * Returns: Nonzero if OK, zero if forbidden
310 *
311 * Use: Asks one or several servers whether a request is acceptable.
312 */
313
314int check__client(request *rq, FILE *fp)
315{
316 /* --- Format of the file --- *
317 *
318 * The `servers' file contains entries of the form
319 *
320 * %%\syntax{<host> [`:' <port>]}%%
321 *
322 * separates by whitespace. I build them all into an array of socket
323 * addresses and pass the whole lot to another function.
324 */
325
326 struct sockaddr_in *serv; /* Array of servers */
327 size_t n_serv, max_serv; /* Number and maximum number */
328
329 /* --- Initialise the server array --- */
330
331 T( trace(TRACE_CLIENT, "client: reading server definitions"); )
332 n_serv = 0; max_serv = 4; /* Four seems reasonable */
333 serv = xmalloc(sizeof(*serv) * max_serv);
334
335 /* --- Start reading the file --- */
336
337 {
338 char buff[256], *p, *l; /* A buffer and pointers for it */
339 int port; /* Default port for servers */
340 int state; /* Current parser state */
341 struct in_addr t_host; /* Temp place for an address*/
342 int t_port; /* Temp place for a port */
343 int ch; /* The current character */
344
345 /* --- Parser states --- */
346
347 enum {
348 st_start, /* Waiting to begin */
349 st_host, /* Reading a new hostname */
350 st_colon, /* Expecting a colon, maybe */
351 st_preport, /* Waiting before reading port */
352 st_port, /* Reading a port number */
353 st_commit, /* Commit a newly read server */
354 st_done /* Finished reading the file */
355 };
356
357 /* --- Find a default port --- */
358
359 {
360 struct servent *s = getservbyname(quis(), "udp");
361 port = (s ? s->s_port : -1);
362 }
363
364 /* --- Initialise for scanning the file --- */
365
366 state = st_host;
367 p = buff;
368 l = buff + sizeof(buff);
369 t_port = port;
370 ch = getc(fp);
371
372 /* --- Go for it --- */
373
374 while (state != st_done) {
375 switch (state) {
376
377 /* --- Initial whitespace before hostname --- */
378
379 case st_start:
380 if (ch == EOF)
381 state = st_done;
382 else if (isspace((unsigned char)ch))
383 ch = getc(fp);
384 else
385 state = st_host;
386 break;
387
388 /* --- Read a host name --- */
389
390 case st_host:
391 if (p == l)
392 die("string too long in `" file_SERVER "'");
393 if (ch != EOF && !isspace((unsigned char)ch) && ch != ':') {
394 *p++ = ch;
395 ch = getc(fp);
396 } else {
397 struct hostent *h;
398
399 *p++ = 0;
400 if ((h = gethostbyname(buff)) == 0)
401 die("unknown host `%s' in `" file_SERVER "'", buff);
402 memcpy(&t_host, h->h_addr, sizeof(t_host));
403 state = st_colon;
404 }
405 break;
406
407 /* --- Waiting for a colon coming up --- */
408
409 case st_colon:
410 if (ch == EOF)
411 state = st_commit;
412 else if (isspace((unsigned char)ch))
413 ch = getc(fp);
414 else if (ch == ':') {
415 state = st_preport;
416 ch = getc(fp);
417 }
418 else
419 state = st_commit;
420 break;
421
422 /* --- Clearing whitespace before a port number --- */
423
424 case st_preport:
425 if (ch == EOF)
426 state = st_commit;
427 else if (isspace((unsigned char)ch))
428 ch = getc(fp);
429 else {
430 state = st_port;
431 p = buff;
432 }
433 break;
434
435 /* --- Read a port number --- */
436
437 case st_port:
438 if (p == l)
439 die("string too long in `" file_SERVER "'");
440 if (ch != EOF && !isspace((unsigned char)ch) && ch != ':') {
441 *p++ = ch;
442 ch = getc(fp);
443 } else {
444 struct servent *s;
445
446 *p++ = 0;
447 s = getservbyname(buff, "udp");
448 if (!s && isdigit((unsigned char)buff[0]))
449 t_port = htons(atoi(buff));
450 else if (!s)
451 die("unknown service `%s' in `" file_SERVER "'", buff);
452 else
453 t_port = s->s_port;
454 state = st_commit;
455 }
456 break;
457
458 /* --- A server has been read successfully --- */
459
460 case st_commit:
461 if (n_serv == max_serv) {
462 max_serv *= 2;
463 serv = xrealloc(serv, max_serv * sizeof(*serv));
464 }
465 serv[n_serv].sin_family = AF_INET;
466 serv[n_serv].sin_addr = t_host;
467 serv[n_serv].sin_port = t_port;
468 n_serv++;
469 state = st_start;
470 p = buff;
471 t_port = port;
472 break;
473
474 /* --- A safety net for a broken parser --- */
475
476 default:
477 die("internal error: can't get here in check__client");
478 break;
479 }
480 }
481 }
482
483 fclose(fp);
484
485 /* --- Now start sending requests --- */
486
487 if (!n_serv)
488 die("no servers specified in `" file_SERVER "'");
489
490 IF_TRACING(TRACE_CLIENT, {
491 size_t i;
492
493 for (i = 0; i < n_serv; i++) {
494 trace(TRACE_CLIENT, "client: server %s port %i",
495 inet_ntoa(serv[i].sin_addr), ntohs(serv[i].sin_port));
496 }
497 })
498 return (check__ask(rq, serv, n_serv));
499}
500
c4f2d992 501/* --- @check@ --- *
502 *
503 * Arguments: @request *rq@ = pointer to request buffer
504 *
505 * Returns: Nonzero if OK, zero if forbidden
506 *
507 * Use: Checks to see if the request is acceptable.
508 */
509
510int check(request *rq)
511{
512 FILE *fp;
513
514 /* --- Check if we need to talk to a server --- */
515
03f996bd 516 if ((fp = fopen(file_SERVER, "r")) != 0)
517 return (check__client(rq, fp));
c4f2d992 518
03f996bd 519 /* --- Otherwise do this all the old-fashioned way --- */
c4f2d992 520
521 if ((fp = fopen(file_RULES, "r")) == 0) {
522 die("couldn't read configuration file `%s': %s",
523 file_RULES, strerror(errno));
524 }
525
03f996bd 526 userdb_init();
527 userdb_local();
528 userdb_yp();
607937a4 529 netg_init();
c4f2d992 530 name_init();
531 rule_init();
532 lexer_scan(fp);
533 yyparse();
534
535 return (rule_check(rq));
536}
537
538/*----- That's all, folks -------------------------------------------------*/