use standard uintN_t types for portability
[l2tpns.git] / radius.c
1 // L2TPNS Radius Stuff
2
3 char const *cvs_id_radius = "$Id: radius.c,v 1.20 2004-12-16 08:49:53 bodea Exp $";
4
5 #include <time.h>
6 #include <stdio.h>
7 #include <sys/types.h>
8 #include <sys/socket.h>
9 #include <malloc.h>
10 #include <string.h>
11 #include <fcntl.h>
12 #include <arpa/inet.h>
13 #include <ctype.h>
14 #include <netinet/in.h>
15 #include "md5.h"
16 #include "constants.h"
17 #include "l2tpns.h"
18 #include "plugin.h"
19 #include "util.h"
20
21 extern radiust *radius;
22 extern sessiont *session;
23 extern tunnelt *tunnel;
24 extern configt *config;
25 extern int *radfds;
26 extern ip_filtert *ip_filters;
27
28 static const char *radius_state(int state)
29 {
30 static char *tmp = NULL;
31 int i;
32 for (i = 0; radius_states[i]; i++)
33 if (i == state) return radius_states[i];
34
35 if (tmp == NULL) tmp = (char *)calloc(64, 1);
36 sprintf(tmp, "%d", state);
37 return tmp;
38 }
39
40 // Set up socket for radius requests
41 void initrad(void)
42 {
43 int i;
44 LOG(3, 0, 0, "Creating %d sockets for RADIUS queries\n", config->num_radfds);
45 radfds = calloc(sizeof(int), config->num_radfds);
46 for (i = 0; i < config->num_radfds; i++)
47 {
48 int flags;
49 radfds[i] = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
50 flags = fcntl(radfds[i], F_GETFL, 0);
51 fcntl(radfds[i], F_SETFL, flags | O_NONBLOCK);
52 }
53 }
54
55 void radiusclear(uint16_t r, sessionidt s)
56 {
57 if (s) session[s].radius = 0;
58 memset(&radius[r], 0, sizeof(radius[r])); // radius[r].state = RADIUSNULL;
59 }
60
61
62 static uint16_t get_free_radius()
63 {
64 int count;
65 static uint32_t next_radius_id = 0;
66
67 for (count = MAXRADIUS; count > 0 ; --count)
68 {
69 ++next_radius_id; // Find the next ID to check.
70 if (next_radius_id >= MAXRADIUS)
71 next_radius_id = 1;
72
73 if (radius[next_radius_id].state == RADIUSNULL)
74 {
75 return next_radius_id;
76 }
77 }
78
79 LOG(0, 0, 0, "Can't find a free radius session! This is very bad!\n");
80 return 0;
81 }
82
83 uint16_t radiusnew(sessionidt s)
84 {
85 uint16_t r = session[s].radius;
86
87 /* re-use */
88 if (r)
89 {
90 LOG(3, s, session[s].tunnel, "Re-used radius %d\n", r);
91 return r;
92 }
93
94 if (!(r = get_free_radius()))
95 {
96 LOG(1, s, session[s].tunnel, "No free RADIUS sessions\n");
97 STAT(radius_overflow);
98 return 0;
99 };
100
101 memset(&radius[r], 0, sizeof(radius[r]));
102 session[s].radius = r;
103 radius[r].session = s;
104 radius[r].state = RADIUSWAIT;
105 radius[r].retry = TIME + 1200; // Wait at least 120 seconds to re-claim this.
106
107 LOG(3, s, session[s].tunnel, "Allocated radius %d\n", r);
108 return r;
109 }
110
111 // Send a RADIUS request
112 void radiussend(uint16_t r, uint8_t state)
113 {
114 struct sockaddr_in addr;
115 uint8_t b[4096]; // RADIUS packet
116 char pass[129];
117 int pl;
118 uint8_t *p;
119 sessionidt s;
120
121 CSTAT(call_radiussend);
122
123 s = radius[r].session;
124 if (!config->numradiusservers)
125 {
126 LOG(0, s, session[s].tunnel, "No RADIUS servers\n");
127 return;
128 }
129 if (!*config->radiussecret)
130 {
131 LOG(0, s, session[s].tunnel, "No RADIUS secret\n");
132 return;
133 }
134
135 if (state != RADIUSAUTH && !config->radius_accounting)
136 {
137 // Radius accounting is turned off
138 radiusclear(r, s);
139 return;
140 }
141
142 if (radius[r].state != state)
143 radius[r].try = 0;
144 radius[r].state = state;
145 radius[r].retry = backoff(radius[r].try++);
146 LOG(4, s, session[s].tunnel, "Send RADIUS id %d sock %d state %s try %d\n",
147 r >> RADIUS_SHIFT, r & RADIUS_MASK,
148 radius_state(radius[r].state), radius[r].try);
149
150 if (radius[r].try > config->numradiusservers * 2)
151 {
152 if (s)
153 {
154 if (state == RADIUSAUTH)
155 sessionshutdown(s, "RADIUS timeout");
156 else
157 {
158 LOG(1, s, session[s].tunnel, "RADIUS timeout, but in state %s so don't timeout session\n",
159 radius_states[state]);
160 radiusclear(r, s);
161 }
162 STAT(radius_timeout);
163 }
164 else
165 {
166 STAT(radius_retries);
167 radius[r].state = RADIUSWAIT;
168 radius[r].retry = 100;
169 }
170 return ;
171 }
172 // contruct RADIUS access request
173 switch (state)
174 {
175 case RADIUSAUTH:
176 b[0] = 1; // access request
177 break;
178 case RADIUSSTART:
179 case RADIUSSTOP:
180 b[0] = 4; // accounting request
181 break;
182 default:
183 LOG(0, 0, 0, "Unknown radius state %d\n", state);
184 }
185 b[1] = r >> RADIUS_SHIFT; // identifier
186 memcpy(b + 4, radius[r].auth, 16);
187 p = b + 20;
188 if (s)
189 {
190 *p = 1; // user name
191 p[1] = strlen(session[s].user) + 2;
192 strcpy(p + 2, session[s].user);
193 p += p[1];
194 }
195 if (state == RADIUSAUTH)
196 {
197 if (radius[r].chap)
198 {
199 *p = 3; // CHAP password
200 p[1] = 19; // length
201 p[2] = radius[r].id; // ID
202 memcpy(p + 3, radius[r].pass, 16); // response from CHAP request
203 p += p[1];
204 *p = 60; // CHAP Challenge
205 p[1] = 18; // length
206 memcpy(p + 2, radius[r].auth, 16);
207 p += p[1];
208 }
209 else
210 {
211 strcpy(pass, radius[r].pass);
212 pl = strlen(pass);
213 while (pl & 15)
214 pass[pl++] = 0; // pad
215 if (pl)
216 { // encrypt
217 hasht hash;
218 int p = 0;
219 while (p < pl)
220 {
221 MD5_CTX ctx;
222 MD5Init(&ctx);
223 MD5Update(&ctx, config->radiussecret, strlen(config->radiussecret));
224 if (p)
225 MD5Update(&ctx, pass + p - 16, 16);
226 else
227 MD5Update(&ctx, radius[r].auth, 16);
228 MD5Final(hash, &ctx);
229 do
230 {
231 pass[p] ^= hash[p & 15];
232 p++;
233 }
234 while (p & 15);
235 }
236 }
237 *p = 2; // password
238 p[1] = pl + 2;
239 if (pl)
240 memcpy(p + 2, pass, pl);
241 p += p[1];
242 }
243 }
244 else if (state == RADIUSSTART || state == RADIUSSTOP)
245 { // accounting
246 *p = 40; // accounting type
247 p[1] = 6;
248 *(uint32_t *) (p + 2) = htonl((state == RADIUSSTART) ? 1 : 2);
249 p += p[1];
250 if (s)
251 {
252 *p = 44; // session ID
253 p[1] = 18;
254 sprintf(p + 2, "%08X%08X", session[s].id, session[s].opened);
255 p += p[1];
256 if (state == RADIUSSTOP)
257 { // stop
258 *p = 42; // input octets
259 p[1] = 6;
260 *(uint32_t *) (p + 2) = htonl(session[s].cin);
261 p += p[1];
262 *p = 43; // output octets
263 p[1] = 6;
264 *(uint32_t *) (p + 2) = htonl(session[s].cout);
265 p += p[1];
266 *p = 46; // session time
267 p[1] = 6;
268 *(uint32_t *) (p + 2) = htonl(time(NULL) - session[s].opened);
269 p += p[1];
270 *p = 47; // input packets
271 p[1] = 6;
272 *(uint32_t *) (p + 2) = htonl(session[s].pin);
273 p += p[1];
274 *p = 48; // output spackets
275 p[1] = 6;
276 *(uint32_t *) (p + 2) = htonl(session[s].pout);
277 p += p[1];
278 }
279 else
280 { // start
281 *p = 41; // delay
282 p[1] = 6;
283 *(uint32_t *) (p + 2) = htonl(time(NULL) - session[s].opened);
284 p += p[1];
285 }
286 }
287 }
288 if (s)
289 {
290 *p = 5; // NAS-Port
291 p[1] = 6;
292 *(uint32_t *) (p + 2) = htonl(s);
293 p += p[1];
294 }
295 if (s && session[s].ip)
296 {
297 *p = 8; // Framed-IP-Address
298 p[1] = 6;
299 *(uint32_t *) (p + 2) = htonl(session[s].ip);
300 p += p[1];
301 }
302 if (*session[s].called)
303 {
304 *p = 30; // called
305 p[1] = strlen(session[s].called) + 2;
306 strcpy(p + 2, session[s].called);
307 p += p[1];
308 }
309 if (*radius[r].calling)
310 {
311 *p = 31; // calling
312 p[1] = strlen(radius[r].calling) + 2;
313 strcpy(p + 2, radius[r].calling);
314 p += p[1];
315 }
316 else if (*session[s].calling)
317 {
318 *p = 31; // calling
319 p[1] = strlen(session[s].calling) + 2;
320 strcpy(p + 2, session[s].calling);
321 p += p[1];
322 }
323 // NAS-IP-Address
324 *p = 4;
325 p[1] = 6;
326 *(uint32_t *)(p + 2) = config->bind_address;
327 p += p[1];
328
329 // All AVpairs added
330 *(uint16_t *) (b + 2) = htons(p - b);
331 if (state != RADIUSAUTH)
332 {
333 // Build auth for accounting packet
334 char z[16] = {0};
335 char hash[16] = {0};
336 MD5_CTX ctx;
337 MD5Init(&ctx);
338 MD5Update(&ctx, b, 4);
339 MD5Update(&ctx, z, 16);
340 MD5Update(&ctx, b + 20, (p - b) - 20);
341 MD5Update(&ctx, config->radiussecret, strlen(config->radiussecret));
342 MD5Final(hash, &ctx);
343 memcpy(b + 4, hash, 16);
344 memcpy(radius[r].auth, hash, 16);
345 }
346 memset(&addr, 0, sizeof(addr));
347 addr.sin_family = AF_INET;
348 *(uint32_t *) & addr.sin_addr = config->radiusserver[(radius[r].try - 1) % config->numradiusservers];
349 {
350 // get radius port
351 uint16_t port = config->radiusport[(radius[r].try - 1) % config->numradiusservers];
352 // no need to define the accounting port for itself:
353 // the accounting port is as far as I know always one more
354 // than the auth port JK 20040713
355 addr.sin_port = htons((state == RADIUSAUTH) ? port : port+1);
356 }
357
358 LOG_HEX(5, "RADIUS Send", b, (p - b));
359 sendto(radfds[r & RADIUS_MASK], b, p - b, 0, (void *) &addr, sizeof(addr));
360 }
361
362 // process RADIUS response
363 void processrad(uint8_t *buf, int len, char socket_index)
364 {
365 uint8_t b[MAXCONTROL];
366 MD5_CTX ctx;
367 uint16_t r;
368 sessionidt s;
369 tunnelidt t = 0;
370 hasht hash;
371 uint8_t routes = 0;
372
373 int r_code, r_id ; // Radius code.
374
375 r_code = buf[0]; // First byte in radius packet.
376 r_id = buf[1]; // radius reply indentifier.
377
378
379 CSTAT(call_processrad);
380
381 LOG_HEX(5, "RADIUS Response", buf, len);
382 if (len < 20 || len < ntohs(*(uint16_t *) (buf + 2)))
383 {
384 LOG(1, 0, 0, "Duff RADIUS response length %d\n", len);
385 return ;
386 }
387 len = ntohs(*(uint16_t *) (buf + 2));
388 r = socket_index | (r_id << RADIUS_SHIFT);
389 s = radius[r].session;
390 LOG(3, s, session[s].tunnel, "Received %s, radius %d response for session %u (code %d, id %d)\n",
391 radius_states[radius[r].state], r, s, r_code, r_id);
392 if (!s && radius[r].state != RADIUSSTOP)
393 {
394 LOG(1, s, session[s].tunnel, " Unexpected RADIUS response\n");
395 return;
396 }
397 if (radius[r].state != RADIUSAUTH && radius[r].state != RADIUSSTART && radius[r].state != RADIUSSTOP)
398 {
399 LOG(1, s, session[s].tunnel, " Unexpected RADIUS response\n");
400 return;
401 }
402 t = session[s].tunnel;
403 MD5Init(&ctx);
404 MD5Update(&ctx, buf, 4);
405 MD5Update(&ctx, radius[r].auth, 16);
406 MD5Update(&ctx, buf + 20, len - 20);
407 MD5Update(&ctx, config->radiussecret, strlen(config->radiussecret));
408 MD5Final(hash, &ctx);
409 do {
410 if (memcmp(hash, buf + 4, 16))
411 {
412 LOG(0, s, session[s].tunnel, " Incorrect auth on RADIUS response!! (wrong secret in radius config?)\n");
413 return; // Do nothing. On timeout, it will try the next radius server.
414 }
415 if ((radius[r].state == RADIUSAUTH && *buf != 2 && *buf != 3) ||
416 ((radius[r].state == RADIUSSTART || radius[r].state == RADIUSSTOP) && *buf != 5))
417 {
418 LOG(1, s, session[s].tunnel, " Unexpected RADIUS response %d\n", *buf);
419 return; // We got something we didn't expect. Let the timeouts take
420 // care off finishing the radius session if that's really correct.
421 }
422 if (radius[r].state == RADIUSAUTH)
423 {
424 LOG(4, s, session[s].tunnel, " Original response is \"%s\"\n", (*buf == 2) ? "accept" : "reject");
425 // process auth response
426 if (radius[r].chap)
427 {
428 // CHAP
429 uint8_t *p = makeppp(b, sizeof(b), 0, 0, t, s, PPPCHAP);
430 if (!p) return; // Abort!
431
432 {
433 struct param_post_auth packet = { &tunnel[t], &session[s], session[s].user, (*buf == 2), PPPCHAP };
434 run_plugins(PLUGIN_POST_AUTH, &packet);
435 *buf = packet.auth_allowed ? 2 : 3;
436 }
437
438 LOG(3, s, session[s].tunnel, " CHAP User %s authentication %s.\n", session[s].user,
439 (*buf == 2) ? "allowed" : "denied");
440 *p = (*buf == 2) ? 3 : 4; // ack/nak
441 p[1] = radius[r].id;
442 *(uint16_t *) (p + 2) = ntohs(4); // no message
443 tunnelsend(b, (p - b) + 4, t); // send it
444 }
445 else
446 {
447 // PAP
448 uint8_t *p = makeppp(b, sizeof(b), 0, 0, t, s, PPPPAP);
449 if (!p) return; // Abort!
450
451 {
452 struct param_post_auth packet = { &tunnel[t], &session[s], session[s].user, (*buf == 2), PPPPAP };
453 run_plugins(PLUGIN_POST_AUTH, &packet);
454 *buf = packet.auth_allowed ? 2 : 3;
455 }
456
457 LOG(3, s, session[s].tunnel, " PAP User %s authentication %s.\n", session[s].user,
458 (*buf == 2) ? "allowed" : "denied");
459 // ack/nak
460 *p = *buf;
461 p[1] = radius[r].id;
462 *(uint16_t *) (p + 2) = ntohs(5);
463 p[4] = 0; // no message
464 tunnelsend(b, (p - b) + 5, t); // send it
465 }
466
467 if (*buf == 2)
468 {
469 // Login successful
470 // Extract IP, routes, etc
471 uint8_t *p = buf + 20;
472 uint8_t *e = buf + len;
473 for (; p + 2 <= e && p[1] && p + p[1] <= e; p += p[1])
474 {
475 if (*p == 8)
476 {
477 // Framed-IP-Address
478 if (p[1] < 6) continue;
479 session[s].ip = ntohl(*(uint32_t *) (p + 2));
480 session[s].ip_pool_index = -1;
481 LOG(3, s, session[s].tunnel, " Radius reply contains IP address %s\n",
482 fmtaddr(htonl(session[s].ip), 0));
483 }
484 else if (*p == 135)
485 {
486 // DNS address
487 if (p[1] < 6) continue;
488 session[s].dns1 = ntohl(*(uint32_t *) (p + 2));
489 LOG(3, s, session[s].tunnel, " Radius reply contains primary DNS address %s\n",
490 fmtaddr(htonl(session[s].dns1), 0));
491 }
492 else if (*p == 136)
493 {
494 // DNS address
495 if (p[1] < 6) continue;
496 session[s].dns2 = ntohl(*(uint32_t *) (p + 2));
497 LOG(3, s, session[s].tunnel, " Radius reply contains secondary DNS address %s\n",
498 fmtaddr(htonl(session[s].dns2), 0));
499 }
500 else if (*p == 22)
501 {
502 // Framed-Route
503 in_addr_t ip = 0, mask = 0;
504 uint8_t u = 0;
505 uint8_t bits = 0;
506 uint8_t *n = p + 2;
507 uint8_t *e = p + p[1];
508 while (n < e && (isdigit(*n) || *n == '.'))
509 {
510 if (*n == '.')
511 {
512 ip = (ip << 8) + u;
513 u = 0;
514 }
515 else
516 u = u * 10 + *n - '0';
517 n++;
518 }
519 ip = (ip << 8) + u;
520 if (*n == '/')
521 {
522 n++;
523 while (n < e && isdigit(*n))
524 bits = bits * 10 + *n++ - '0';
525 mask = (( -1) << (32 - bits));
526 }
527 else if ((ip >> 24) < 128)
528 mask = 0xFF0000;
529 else if ((ip >> 24) < 192)
530 mask = 0xFFFF0000;
531 else
532 mask = 0xFFFFFF00;
533
534 if (routes == MAXROUTE)
535 {
536 LOG(1, s, session[s].tunnel, " Too many routes\n");
537 }
538 else if (ip)
539 {
540 LOG(3, s, session[s].tunnel, " Radius reply contains route for %s/%s\n",
541 fmtaddr(htonl(ip), 0), fmtaddr(htonl(mask), 1));
542
543 session[s].route[routes].ip = ip;
544 session[s].route[routes].mask = mask;
545 routes++;
546 }
547 }
548 else if (*p == 11)
549 {
550 // Filter-Id
551 char *filter = p + 2;
552 int l = p[1] - 2;
553 char *suffix;
554 uint8_t *f = 0;
555 int i;
556
557 LOG(3, s, session[s].tunnel, " Radius reply contains Filter-Id \"%.*s\"\n", l, filter);
558 if ((suffix = memchr(filter, '.', l)))
559 {
560 int b = suffix - filter;
561 if (l - b == 3 && !memcmp("in", suffix+1, 2))
562 f = &session[s].filter_in;
563 else if (l - b == 4 && !memcmp("out", suffix+1, 3))
564 f = &session[s].filter_out;
565
566 l = b;
567 }
568
569 if (!f)
570 {
571 LOG(3, s, session[s].tunnel, " Invalid filter\n");
572 continue;
573 }
574
575 for (*f = 0, i = 0; !*f && i < MAXFILTER; i++)
576 if (strlen(ip_filters[i].name) == l &&
577 !strncmp(ip_filters[i].name, filter, l))
578 *f = i + 1;
579
580 if (*f)
581 ip_filters[*f - 1].used++;
582 else
583 LOG(3, s, session[s].tunnel, " Unknown filter\n");
584
585 }
586 else if (*p == 26 && p[1] >= 7)
587 {
588 // Vendor-Specific Attribute
589 int vendor = ntohl(*(int *)(p + 2));
590 char attrib = *(p + 6);
591 char attrib_length = *(p + 7) - 2;
592 char *avpair, *value, *key, *newp;
593
594 LOG(3, s, session[s].tunnel, " Radius reply contains Vendor-Specific. Vendor=%d Attrib=%d Length=%d\n", vendor, attrib, attrib_length);
595 if (vendor != 9 || attrib != 1)
596 {
597 LOG(3, s, session[s].tunnel, " Unknown vendor-specific\n");
598 continue;
599 }
600
601 if (attrib_length < 0) continue;
602
603 avpair = key = calloc(attrib_length + 1, 1);
604 memcpy(avpair, p + 8, attrib_length);
605 LOG(3, s, session[s].tunnel, " Cisco-Avpair value: %s\n", avpair);
606 do {
607 value = strchr(key, '=');
608 if (!value) break;
609 *value++ = 0;
610
611 // Trim quotes off reply string
612 if (*value == '\'' || *value == '\"')
613 {
614 char *x;
615 value++;
616 x = value + strlen(value) - 1;
617 if (*x == '\'' || *x == '\"')
618 *x = 0;
619 }
620
621 // Run hooks
622 newp = strchr(value, ',');
623 if (newp) *newp++ = 0;
624 {
625 struct param_radius_response p = { &tunnel[session[s].tunnel], &session[s], key, value };
626 run_plugins(PLUGIN_RADIUS_RESPONSE, &p);
627 }
628 key = newp;
629 } while (newp);
630 free(avpair);
631 }
632 }
633 }
634 else if (*buf == 3)
635 {
636 LOG(2, s, session[s].tunnel, " Authentication denied for %s\n", session[s].user);
637 //FIXME: We should tear down the session here!
638 break;
639 }
640
641 if (!session[s].dns1 && config->default_dns1)
642 {
643 session[s].dns1 = htonl(config->default_dns1);
644 LOG(3, s, t, " Sending dns1 = %s\n", fmtaddr(config->default_dns1, 0));
645 }
646 if (!session[s].dns2 && config->default_dns2)
647 {
648 session[s].dns2 = htonl(config->default_dns2);
649 LOG(3, s, t, " Sending dns2 = %s\n", fmtaddr(config->default_dns2, 0));
650 }
651
652 // Valid Session, set it up
653 session[s].unique_id = 0;
654 sessionsetup(t, s);
655 }
656 else
657 {
658 // An ack for a stop or start record.
659 LOG(3, s, t, " RADIUS accounting ack recv in state %s\n", radius_states[radius[r].state]);
660 break;
661 }
662 } while (0);
663
664 // finished with RADIUS
665 radiusclear(r, s);
666 }
667
668 // Send a retry for RADIUS/CHAP message
669 void radiusretry(uint16_t r)
670 {
671 sessionidt s = radius[r].session;
672 tunnelidt t = 0;
673
674 CSTAT(call_radiusretry);
675
676 if (s)
677 t = session[s].tunnel;
678 radius[r].retry = backoff(radius[r].try + 1);
679 switch (radius[r].state)
680 {
681 case RADIUSCHAP: // sending CHAP down PPP
682 sendchap(t, s);
683 break;
684 case RADIUSIPCP:
685 sendipcp(t, s); // send IPCP
686 break;
687 case RADIUSAUTH: // sending auth to RADIUS server
688 radiussend(r, RADIUSAUTH);
689 break;
690 case RADIUSSTART: // sending start accounting to RADIUS server
691 radiussend(r, RADIUSSTART);
692 break;
693 case RADIUSSTOP: // sending stop accounting to RADIUS server
694 radiussend(r, RADIUSSTOP);
695 break;
696 default:
697 case RADIUSNULL: // Not in use
698 case RADIUSWAIT: // waiting timeout before available, in case delayed reply from RADIUS server
699 // free up RADIUS task
700 radiusclear(r, s);
701 LOG(3, s, session[s].tunnel, "Freeing up radius session %d\n", r);
702 break;
703 }
704 }