The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
base.c
Go to the documentation of this file.
1/*
2 * This library is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2.1 of the License, or (at your option) any later version.
6 *
7 * This library is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
11 *
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with this library; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17/**
18 * $Id: 4a496e6bdb92b7220b53399c7d3ac29eec58ae1b $
19 *
20 * @file protocols/radius/base.c
21 * @brief Functions to send/receive radius packets.
22 *
23 * @copyright 2000-2003,2006 The FreeRADIUS server project
24 */
25RCSID("$Id: 4a496e6bdb92b7220b53399c7d3ac29eec58ae1b $")
26
27#include <fcntl.h>
28#include <ctype.h>
29
30#include "attrs.h"
31#include "radius.h"
32
33#include <freeradius-devel/io/pair.h>
34#include <freeradius-devel/util/md5.h>
35#include <freeradius-devel/util/net.h>
36#include <freeradius-devel/util/proto.h>
37#include <freeradius-devel/util/table.h>
38#include <freeradius-devel/util/udp.h>
39#include <freeradius-devel/protocol/radius/freeradius.internal.h>
40
42
45
48 { .out = &dict_freeradius, .proto = "freeradius" },
49 { .out = &dict_radius, .proto = "radius" },
50 { NULL }
51};
52
62
65 { .out = &attr_packet_type, .name = "Packet-Type", .type = FR_TYPE_UINT32, .dict = &dict_radius },
66 { .out = &attr_packet_authentication_vector, .name = "Packet-Authentication-Vector", .type = FR_TYPE_OCTETS, .dict = &dict_radius },
67 { .out = &attr_chap_challenge, .name = "CHAP-Challenge", .type = FR_TYPE_OCTETS, .dict = &dict_radius },
68 { .out = &attr_chargeable_user_identity, .name = "Chargeable-User-Identity", .type = FR_TYPE_OCTETS, .dict = &dict_radius },
69
70 { .out = &attr_eap_message, .name = "EAP-Message", .type = FR_TYPE_OCTETS, .dict = &dict_radius },
71 { .out = &attr_message_authenticator, .name = "Message-Authenticator", .type = FR_TYPE_OCTETS, .dict = &dict_radius },
72 { .out = &attr_state, .name = "State", .type = FR_TYPE_OCTETS, .dict = &dict_radius },
73 { .out = &attr_vendor_specific, .name = "Vendor-Specific", .type = FR_TYPE_VSA, .dict = &dict_radius },
74 { .out = &attr_nas_filter_rule, .name = "NAS-Filter-Rule", .type = FR_TYPE_STRING, .dict = &dict_radius },
75 { NULL }
76};
77
78/*
79 * Some messages get printed out only in debugging mode.
80 */
81#define FR_DEBUG_STRERROR_PRINTF if (fr_debug_lvl) fr_strerror_printf_push
82
91
100
111
113 "", //!< 0
114 "Access-Request",
115 "Access-Accept",
116 "Access-Reject",
117 "Accounting-Request",
118 "Accounting-Response",
119 "Accounting-Status",
120 "Password-Request",
121 "Password-Accept",
122 "Password-Reject",
123 "Accounting-Message", //!< 10
124 "Access-Challenge",
125 "Status-Server",
126 "Status-Client",
127 "14",
128 "15",
129 "16",
130 "17",
131 "18",
132 "19",
133 "20", //!< 20
134 "Resource-Free-Request",
135 "Resource-Free-Response",
136 "Resource-Query-Request",
137 "Resource-Query-Response",
138 "Alternate-Resource-Reclaim-Request",
139 "NAS-Reboot-Request",
140 "NAS-Reboot-Response",
141 "28",
142 "Next-Passcode",
143 "New-Pin", //!< 30
144 "Terminate-Session",
145 "Password-Expired",
146 "Event-Request",
147 "Event-Response",
148 "35",
149 "36",
150 "37",
151 "38",
152 "39",
153 "Disconnect-Request", //!< 40
154 "Disconnect-ACK",
155 "Disconnect-NAK",
156 "CoA-Request",
157 "CoA-ACK",
158 "CoA-NAK",
159 "46",
160 "47",
161 "48",
162 "49",
163 "IP-Address-Allocate", //!< 50
164 "IP-Address-Release",
165 "Protocol-Error",
166};
167
168
169/** If we get a reply, the request must come from one of a small
170 * number of packet types.
171 */
187
190
191static int dict_flag_encrypt(fr_dict_attr_t **da_p, char const *value, UNUSED fr_dict_flag_parser_rule_t const *rules)
192{
193 static fr_table_num_sorted_t const encrypted[] = {
194 { L("Ascend-Secret"), RADIUS_FLAG_ENCRYPT_ASCEND_SECRET },
195 { L("Tunnel-Password"), RADIUS_FLAG_ENCRYPT_TUNNEL_PASSWORD },
196 { L("User-Password"), RADIUS_FLAG_ENCRYPT_USER_PASSWORD}
197 };
198 static size_t encrypted_len = NUM_ELEMENTS(encrypted);
199
202
204 if (encrypt == RADIUS_FLAG_ENCRYPT_INVALID) {
205 fr_strerror_printf("Unknown encryption type '%s'", value);
206 return -1;
207 }
208
209 flags->encrypt = encrypt;
210
211 return 0;
212}
213
217
219 { L("abinary"), { .func = dict_flag_abinary } },
220 { L("concat"), { .func = dict_flag_concat } },
221 { L("encrypt"), { .func = dict_flag_encrypt, .needs_value = true } },
222 { L("extended"), { .func = dict_flag_extended } },
223 { L("has_tag"), { .func = dict_flag_has_tag } },
224 { L("long_extended"), { .func = dict_flag_long_extended } }
225};
226
227int fr_radius_allow_reply(int code, bool allowed[static FR_RADIUS_CODE_MAX])
228{
229 int i;
230
231 if ((code <= 0) || (code >= FR_RADIUS_CODE_MAX)) return -1;
232
233 for (i = 1; i < FR_RADIUS_CODE_MAX; i++) {
234 allowed[i] |= (allowed_replies[i] == (fr_radius_packet_code_t) code);
235 }
236
237 return 0;
238}
239
240/** Do Ascend-Send / Recv-Secret calculation.
241 *
242 * The secret is hidden by xoring with a MD5 digest created from
243 * the RADIUS shared secret and the authentication vector.
244 * We put them into MD5 in the reverse order from that used when
245 * encrypting passwords to RADIUS.
246 */
248 char const *secret, uint8_t const *vector)
249{
250 fr_md5_ctx_t *md5_ctx;
251 size_t i;
253 fr_dbuff_t work_dbuff = FR_DBUFF(dbuff);
254
255 FR_DBUFF_EXTEND_LOWAT_OR_RETURN(&work_dbuff, sizeof(digest));
256
257 md5_ctx = fr_md5_ctx_alloc_from_list();
259 fr_md5_update(md5_ctx, (uint8_t const *) secret, talloc_array_length(secret) - 1);
260 fr_md5_final(digest, md5_ctx);
262
263 if (inlen > sizeof(digest)) inlen = sizeof(digest);
264 for (i = 0; i < inlen; i++) digest[i] ^= in[i];
265
266 fr_dbuff_in_memcpy(&work_dbuff, digest, sizeof(digest));
267
268 return fr_dbuff_set(dbuff, &work_dbuff);
269}
270
271/** Basic validation of RADIUS packet header
272 *
273 * @note fr_strerror errors are only available if fr_debug_lvl > 0. This is to reduce CPU time
274 * consumed when discarding malformed packet.
275 *
276 * @param[in] sockfd we're reading from.
277 * @param[out] src_ipaddr of the packet.
278 * @param[out] src_port of the packet.
279 * @param[out] code Pointer to where to write the packet code.
280 * @return
281 * - -1 on failure.
282 * - 1 on decode error.
283 * - >= RADIUS_HEADER_LENGTH on success. This is the packet length as specified in the header.
284 */
285ssize_t fr_radius_recv_header(int sockfd, fr_ipaddr_t *src_ipaddr, uint16_t *src_port, unsigned int *code)
286{
287 ssize_t data_len, packet_len;
288 uint8_t header[4];
289
290 data_len = udp_recv_peek(sockfd, header, sizeof(header), UDP_FLAGS_PEEK, src_ipaddr, src_port);
291 if (data_len < 0) {
292 if ((errno == EAGAIN) || (errno == EINTR)) return 0;
293 return -1;
294 }
295
296 /*
297 * Too little data is available, discard the packet.
298 */
299 if (data_len < 4) {
300 char buffer[INET6_ADDRSTRLEN];
301
302 FR_DEBUG_STRERROR_PRINTF("Expected at least 4 bytes of header data, got %zd bytes", data_len);
303invalid:
304 FR_DEBUG_STRERROR_PRINTF("Invalid data from %s",
305 inet_ntop(src_ipaddr->af, &src_ipaddr->addr, buffer, sizeof(buffer)));
306 (void) udp_recv_discard(sockfd);
307
308 return 0;
309 }
310
311 /*
312 * See how long the packet says it is.
313 */
314 packet_len = (header[2] * 256) + header[3];
315
316 /*
317 * The length in the packet says it's less than
318 * a RADIUS header length: discard it.
319 */
320 if (packet_len < RADIUS_HEADER_LENGTH) {
321 FR_DEBUG_STRERROR_PRINTF("Expected at least " STRINGIFY(RADIUS_HEADER_LENGTH) " bytes of packet "
322 "data, got %zd bytes", packet_len);
323 goto invalid;
324 }
325
326 /*
327 * Enforce RFC requirements, for sanity.
328 * Anything after 4k will be discarded.
329 */
330 if (packet_len > MAX_PACKET_LEN) {
331 FR_DEBUG_STRERROR_PRINTF("Length field value too large, expected maximum of "
332 STRINGIFY(MAX_PACKET_LEN) " bytes, got %zd bytes", packet_len);
333 goto invalid;
334 }
335
336 *code = header[0];
337
338 /*
339 * The packet says it's this long, but the actual UDP
340 * size could still be smaller.
341 */
342 return packet_len;
343}
344
345/** Sign a previously encoded packet
346 *
347 * Calculates the request/response authenticator for packets which need it, and fills
348 * in the message-authenticator value if the attribute is present in the encoded packet.
349 *
350 * @param[in,out] packet (request or response).
351 * @param[in] vector original packet vector to use
352 * @param[in] secret to sign the packet with.
353 * @param[in] secret_len The length of the secret.
354 * @return
355 * - <0 on error
356 * - 0 on success
357 */
358int fr_radius_sign(uint8_t *packet, uint8_t const *vector,
359 uint8_t const *secret, size_t secret_len)
360{
361 uint8_t *msg, *end;
362 size_t packet_len = fr_nbo_to_uint16(packet + 2);
363
364 /*
365 * No real limit on secret length, this is just
366 * to catch uninitialised fields.
367 */
368 if (!fr_cond_assert(secret_len <= UINT16_MAX)) {
369 fr_strerror_printf("Secret is too long. Expected <= %u, got %zu",
370 (unsigned int) UINT16_MAX, secret_len);
371 return -1;
372 }
373
374 if (packet_len < RADIUS_HEADER_LENGTH) {
375 fr_strerror_const("Packet must be encoded before calling fr_radius_sign()");
376 return -1;
377 }
378
379 /*
380 * Find Message-Authenticator. Its value has to be
381 * calculated before we calculate the Request
382 * Authenticator or the Response Authenticator.
383 */
384 msg = packet + RADIUS_HEADER_LENGTH;
385 end = packet + packet_len;
386
387 while (msg < end) {
388 if ((end - msg) < 2) goto invalid_attribute;
389
390 if (msg[0] != FR_MESSAGE_AUTHENTICATOR) {
391 if (msg[1] < 2) goto invalid_attribute;
392
393 if ((msg + msg[1]) > end) {
394 invalid_attribute:
395 fr_strerror_printf("Invalid attribute at offset %zd", msg - packet);
396 return -1;
397 }
398 msg += msg[1];
399 continue;
400 }
401
402 if (msg[1] < 18) {
403 fr_strerror_const("Message-Authenticator is too small");
404 return -1;
405 }
406
407 switch (packet[0]) {
411 memset(packet + 4, 0, RADIUS_AUTH_VECTOR_LENGTH);
412 break;
413
422 if (!vector) goto need_original;
423 memcpy(packet + 4, vector, RADIUS_AUTH_VECTOR_LENGTH);
424 break;
425
428 /* packet + 4 MUST be the Request Authenticator filled with random data */
429 break;
430
431 default:
432 goto bad_packet;
433 }
434
435 /*
436 * Force Message-Authenticator to be zero,
437 * calculate the HMAC, and put it into the
438 * Message-Authenticator attribute.
439 */
440 memset(msg + 2, 0, RADIUS_AUTH_VECTOR_LENGTH);
441 fr_hmac_md5(msg + 2, packet, packet_len, secret, secret_len);
442 break;
443 }
444
445 /*
446 * Initialize the request authenticator.
447 */
448 switch (packet[0]) {
452 memset(packet + 4, 0, RADIUS_AUTH_VECTOR_LENGTH);
453 break;
454
464 if (!vector) {
465 need_original:
466 fr_strerror_const("Cannot sign response packet without a request packet");
467 return -1;
468 }
469 memcpy(packet + 4, vector, RADIUS_AUTH_VECTOR_LENGTH);
470 break;
471
472 /*
473 * The Request Authenticator is random numbers.
474 * We don't need to sign anything else, so
475 * return.
476 */
479 return 0;
480
481 default:
482 bad_packet:
483 fr_strerror_printf("Cannot sign unknown packet code %u", packet[0]);
484 return -1;
485 }
486
487 /*
488 * Request / Response Authenticator = MD5(packet + secret)
489 */
490 {
491 fr_md5_ctx_t *md5_ctx;
492
493 md5_ctx = fr_md5_ctx_alloc_from_list();
494 fr_md5_update(md5_ctx, packet, packet_len);
495 fr_md5_update(md5_ctx, secret, secret_len);
496 fr_md5_final(packet + 4, md5_ctx);
498 }
499
500 return 0;
501}
502
503
504/** See if the data pointed to by PTR is a valid RADIUS packet.
505 *
506 * @param[in] packet to check.
507 * @param[in,out] packet_len_p The size of the packet data.
508 * @param[in] max_attributes to allow in the packet.
509 * @param[in] require_message_authenticator whether we require Message-Authenticator.
510 * @param[in] reason if not NULL, will have the failure reason written to where it points.
511 * @return
512 * - True on success.
513 * - False on failure.
514 */
515bool fr_radius_ok(uint8_t const *packet, size_t *packet_len_p,
516 uint32_t max_attributes, bool require_message_authenticator, fr_radius_decode_fail_t *reason)
517{
518 uint8_t const *attr, *end;
519 size_t totallen;
520 bool seen_ma = false;
521 uint32_t num_attributes;
523 size_t packet_len = *packet_len_p;
524
525 /*
526 * Check for packets smaller than the packet header.
527 *
528 * RFC 2865, Section 3., subsection 'length' says:
529 *
530 * "The minimum length is 20 ..."
531 */
532 if (packet_len < RADIUS_HEADER_LENGTH) {
533 FR_DEBUG_STRERROR_PRINTF("packet is too short (received %zu < minimum 20)",
534 packet_len);
536 goto finish;
537 }
538
539
540 /*
541 * Check for packets with mismatched size.
542 * i.e. We've received 128 bytes, and the packet header
543 * says it's 256 bytes long.
544 */
545 totallen = fr_nbo_to_uint16(packet + 2);
546
547 /*
548 * Code of 0 is not understood.
549 * Code of 16 or greater is not understood.
550 */
551 if ((packet[0] == 0) ||
552 (packet[0] >= FR_RADIUS_CODE_MAX)) {
553 FR_DEBUG_STRERROR_PRINTF("unknown packet code %d", packet[0]);
555 goto finish;
556 }
557
558 /*
559 * Message-Authenticator is required in Status-Server
560 * packets, otherwise they can be trivially forged.
561 */
562 if (packet[0] == FR_RADIUS_CODE_STATUS_SERVER) require_message_authenticator = true;
563
564 /*
565 * Repeat the length checks. This time, instead of
566 * looking at the data we received, look at the value
567 * of the 'length' field inside of the packet.
568 *
569 * Check for packets smaller than the packet header.
570 *
571 * RFC 2865, Section 3., subsection 'length' says:
572 *
573 * "The minimum length is 20 ..."
574 */
575 if (totallen < RADIUS_HEADER_LENGTH) {
576 FR_DEBUG_STRERROR_PRINTF("length in header is too small (length %zu < minimum 20)",
577 totallen);
579 goto finish;
580 }
581
582 /*
583 * And again, for the value of the 'length' field.
584 *
585 * RFC 2865, Section 3., subsection 'length' says:
586 *
587 * " ... and maximum length is 4096."
588 *
589 * HOWEVER. This requirement is for the network layer.
590 * If the code gets here, we assume that a well-formed
591 * packet is an OK packet.
592 *
593 * We allow both the UDP data length, and the RADIUS
594 * "length" field to contain up to 64K of data.
595 */
596
597 /*
598 * RFC 2865, Section 3., subsection 'length' says:
599 *
600 * "If the packet is shorter than the Length field
601 * indicates, it MUST be silently discarded."
602 *
603 * i.e. No response to the NAS.
604 */
605 if (totallen > packet_len) {
606 FR_DEBUG_STRERROR_PRINTF("packet is truncated (received %zu < packet header length of %zu)",
607 packet_len, totallen);
609 goto finish;
610 }
611
612 /*
613 * RFC 2865, Section 3., subsection 'length' says:
614 *
615 * "Octets outside the range of the Length field MUST be
616 * treated as padding and ignored on reception."
617 */
618 if (totallen < packet_len) {
619 *packet_len_p = packet_len = totallen;
620 }
621
622 /*
623 * Walk through the packet's attributes, ensuring that
624 * they add up EXACTLY to the size of the packet.
625 *
626 * If they don't, then the attributes either under-fill
627 * or over-fill the packet. Any parsing of the packet
628 * is impossible, and will result in unknown side effects.
629 *
630 * This would ONLY happen with buggy RADIUS implementations,
631 * or with an intentional attack. Either way, we do NOT want
632 * to be vulnerable to this problem.
633 */
634 attr = packet + RADIUS_HEADER_LENGTH;
635 end = packet + packet_len;
636 num_attributes = 0;
637
638 while (attr < end) {
639 /*
640 * We need at least 2 bytes to check the
641 * attribute header.
642 */
643 if ((end - attr) < 2) {
644 FR_DEBUG_STRERROR_PRINTF("attribute header overflows the packet");
646 goto finish;
647 }
648
649 /*
650 * Attribute number zero is NOT defined.
651 */
652 if (attr[0] == 0) {
653 FR_DEBUG_STRERROR_PRINTF("invalid attribute 0 at offset %zd", attr - packet);
655 goto finish;
656 }
657
658 /*
659 * Attributes are at LEAST as long as the ID & length
660 * fields. Anything shorter is an invalid attribute.
661 */
662 if (attr[1] < 2) {
663 FR_DEBUG_STRERROR_PRINTF("attribute %u is too short at offset %zd",
664 attr[0], attr - packet);
666 goto finish;
667 }
668
669 /*
670 * If there are fewer bytes in the packet than in the
671 * attribute, it's a bad packet.
672 */
673 if ((attr + attr[1]) > end) {
674 FR_DEBUG_STRERROR_PRINTF("attribute %u data overflows the packet starting at offset %zd",
675 attr[0], attr - packet);
677 goto finish;
678 }
679
680 /*
681 * Sanity check the attributes for length.
682 */
683 switch (attr[0]) {
684 default: /* don't do anything by default */
685 break;
686
687 /*
688 * If there's an EAP-Message, we require
689 * a Message-Authenticator.
690 */
691 case FR_EAP_MESSAGE:
692 require_message_authenticator = true;
693 break;
694
695 case FR_MESSAGE_AUTHENTICATOR:
696 if (attr[1] != 2 + RADIUS_AUTH_VECTOR_LENGTH) {
697 FR_DEBUG_STRERROR_PRINTF("Message-Authenticator has invalid length (%d != 18) at offset %zd",
698 attr[1] - 2, attr - packet);
700 goto finish;
701 }
702 seen_ma = true;
703 break;
704 }
705
706 attr += attr[1];
707 num_attributes++; /* seen one more attribute */
708 }
709
710 /*
711 * If the attributes add up to a packet, it's allowed.
712 *
713 * If not, we complain, and throw the packet away.
714 */
715 if (attr != end) {
716 FR_DEBUG_STRERROR_PRINTF("attributes do NOT exactly fill the packet");
718 goto finish;
719 }
720
721 /*
722 * If we're configured to look for a maximum number of
723 * attributes, and we've seen more than that maximum,
724 * then throw the packet away, as a possible DoS.
725 */
726 if ((max_attributes > 0) &&
727 (num_attributes > max_attributes)) {
728 FR_DEBUG_STRERROR_PRINTF("Possible DoS attack - too many attributes in request (received %u, max %u are allowed).",
729 num_attributes, max_attributes);
731 goto finish;
732 }
733
734 /*
735 * http://www.freeradius.org/rfc/rfc2869.html#EAP-Message
736 *
737 * A packet with an EAP-Message attribute MUST also have
738 * a Message-Authenticator attribute.
739 *
740 * A Message-Authenticator all by itself is OK, though.
741 *
742 * Similarly, Status-Server packets MUST contain
743 * Message-Authenticator attributes.
744 */
745 if (require_message_authenticator && !seen_ma) {
746 FR_DEBUG_STRERROR_PRINTF("we require Message-Authenticator attribute, but it is not in the packet");
747 failure = DECODE_FAIL_MA_MISSING;
748 goto finish;
749 }
750
751finish:
752
753 if (reason) {
754 *reason = failure;
755 }
756 return (failure == DECODE_FAIL_NONE);
757}
758
759
760/** Verify a request / response packet
761 *
762 * This function does its work by calling fr_radius_sign(), and then
763 * comparing the signature in the packet with the one we calculated.
764 * If they differ, there's a problem.
765 *
766 * @param[in] packet the raw RADIUS packet (request or response)
767 * @param[in] vector the original packet vector
768 * @param[in] secret the shared secret
769 * @param[in] secret_len the length of the secret
770 * @param[in] require_message_authenticator whether we require Message-Authenticator.
771 * @param[in] limit_proxy_state whether we allow Proxy-State without Message-Authenticator.
772 * @return
773 * < <0 on error (negative fr_radius_decode_fail_t)
774 * - 0 on success.
775 */
776int fr_radius_verify(uint8_t *packet, uint8_t const *vector,
777 uint8_t const *secret, size_t secret_len,
778 bool require_message_authenticator, bool limit_proxy_state)
779{
780 bool found_message_authenticator = false;
781 bool found_proxy_state = false;
782 int rcode;
783 int code;
784 uint8_t *msg, *end;
785 size_t packet_len = fr_nbo_to_uint16(packet + 2);
786 uint8_t request_authenticator[RADIUS_AUTH_VECTOR_LENGTH];
787 uint8_t message_authenticator[RADIUS_AUTH_VECTOR_LENGTH];
788
789 if (packet_len < RADIUS_HEADER_LENGTH) {
790 fr_strerror_printf("invalid packet length %zu", packet_len);
792 }
793
794 code = packet[0];
795 if (!code || (code >= FR_RADIUS_CODE_MAX)) {
796 fr_strerror_printf("Unknown reply code %d", code);
798 }
799
800 memcpy(request_authenticator, packet + 4, sizeof(request_authenticator));
801
802 /*
803 * Find Message-Authenticator. Its value has to be
804 * calculated before we calculate the Request
805 * Authenticator or the Response Authenticator.
806 */
807 msg = packet + RADIUS_HEADER_LENGTH;
808 end = packet + packet_len;
809
810 while (msg < end) {
811 if ((end - msg) < 2) goto invalid_attribute;
812
813 if (msg[0] != FR_MESSAGE_AUTHENTICATOR) {
814 if (msg[1] < 2) goto invalid_attribute;
815
816 /*
817 * If we're not allowing Proxy-State without
818 * Message-authenticator, we need to record
819 * the fact we found Proxy-State.
820 */
821 if (limit_proxy_state && (msg[0] == FR_PROXY_STATE)) found_proxy_state = true;
822
823 if ((msg + msg[1]) > end) {
824 invalid_attribute:
825 fr_strerror_printf("invalid attribute at offset %zd", msg - packet);
827 }
828 msg += msg[1];
829 continue;
830 }
831
832 if (msg[1] < 18) {
833 fr_strerror_const("too small Message-Authenticator");
835 }
836
837 /*
838 * Found it, save a copy.
839 */
840 memcpy(message_authenticator, msg + 2, sizeof(message_authenticator));
841 found_message_authenticator = true;
842 break;
843 }
844
845 if (packet[0] == FR_RADIUS_CODE_ACCESS_REQUEST) {
846 if (limit_proxy_state && found_proxy_state && !found_message_authenticator) {
847 fr_strerror_const("Proxy-State is not allowed without Message-Authenticator");
849 }
850
851 if (require_message_authenticator && !found_message_authenticator) {
852 fr_strerror_const("Access-Request is missing the required Message-Authenticator attribute");
854 }
855 }
856
857 /*
858 * Overwrite the contents of Message-Authenticator
859 * with the one we calculate.
860 */
861 rcode = fr_radius_sign(packet, vector, secret, secret_len);
862 if (rcode < 0) {
863 fr_strerror_const_push("Failed calculating correct authenticator");
864 return -DECODE_FAIL_VERIFY;
865 }
866
867 /*
868 * Check the Message-Authenticator first.
869 *
870 * If it's invalid, restore the original
871 * Message-Authenticator and Request Authenticator
872 * fields.
873 *
874 * If it's valid the original and calculated
875 * message authenticators are the same, so we don't
876 * need to do anything.
877 */
878 if ((msg < end) &&
879 (fr_digest_cmp(message_authenticator, msg + 2, sizeof(message_authenticator)) != 0)) {
880 memcpy(msg + 2, message_authenticator, sizeof(message_authenticator));
881 memcpy(packet + 4, request_authenticator, sizeof(request_authenticator));
882
883 fr_strerror_const("invalid Message-Authenticator (shared secret is incorrect)");
885 }
886
887 /*
888 * These are random numbers, so there's no point in
889 * comparing them.
890 */
891 if ((packet[0] == FR_RADIUS_CODE_ACCESS_REQUEST) || (packet[0] == FR_RADIUS_CODE_STATUS_SERVER)) {
892 return 0;
893 }
894
895 /*
896 * Check the Request Authenticator.
897 */
898 if (fr_digest_cmp(request_authenticator, packet + 4, sizeof(request_authenticator)) != 0) {
899 memcpy(packet + 4, request_authenticator, sizeof(request_authenticator));
900 if (vector) {
901 fr_strerror_const("invalid Response Authenticator (shared secret is incorrect)");
902 } else {
903 fr_strerror_const("invalid Request Authenticator (shared secret is incorrect)");
904 }
905 return -DECODE_FAIL_VERIFY;
906 }
907
908 return 0;
909}
910
911void *fr_radius_next_encodable(fr_dlist_head_t *list, void *current, void *uctx);
912
913void *fr_radius_next_encodable(fr_dlist_head_t *list, void *current, void *uctx)
914{
915 fr_pair_t *c = current;
916 fr_dict_t *dict = talloc_get_type_abort(uctx, fr_dict_t);
917
918 while ((c = fr_dlist_next(list, c))) {
919 PAIR_VERIFY(c);
920 if ((c->da->dict == dict) &&
921 (!c->da->flags.internal || ((c->da->attr > FR_TAG_BASE) && (c->da->attr < (FR_TAG_BASE + 0x20))))) {
922 break;
923 }
924 }
925
926 return c;
927}
928
929
932 // can be in Access-Accept
935
938
940
941 [ FR_RADIUS_CODE_COA_ACK ] = true,
942 [ FR_RADIUS_CODE_COA_NAK ] = true,
943
947
949};
950
952{
953 ssize_t slen;
954 fr_pair_t const *vp;
955 fr_dcursor_t cursor;
956 fr_dbuff_t work_dbuff, length_dbuff;
957
959
960 /*
961 * The RADIUS header can't do more than 64K of data.
962 */
963 work_dbuff = FR_DBUFF_MAX(dbuff, 65535);
964
965 FR_DBUFF_IN_BYTES_RETURN(&work_dbuff, packet_ctx->code, packet_ctx->id);
966 length_dbuff = FR_DBUFF(&work_dbuff);
968
969 switch (packet_ctx->code) {
972 packet_ctx->request_authenticator = fr_dbuff_current(&work_dbuff);
973
974 /*
975 * Allow over-rides of the authentication vector for testing.
976 */
978 if (vp && (vp->vp_length >= RADIUS_AUTH_VECTOR_LENGTH)) {
980 } else {
981 int i;
982
983 for (i = 0; i < 4; i++) {
984 FR_DBUFF_IN_RETURN(&work_dbuff, (uint32_t) fr_rand());
985 }
986 }
987 break;
988
998 if (!packet_ctx->request_authenticator) {
999 fr_strerror_const("Cannot encode response without request");
1000 return -1;
1001 }
1003 break;
1004
1007 /*
1008 * Tunnel-Password encoded attributes are allowed
1009 * in CoA-Request packets, by RFC 5176 Section
1010 * 3.6. HOWEVER, the tunnel passwords are
1011 * "encrypted" using the Request Authenticator,
1012 * which is all zeros! That makes them much
1013 * easier to decrypt. The only solution here is
1014 * to say "don't do that!"
1015 */
1017 packet_ctx->request_authenticator = fr_dbuff_current(&work_dbuff);
1018
1020 break;
1021
1022 default:
1023 fr_strerror_printf("Cannot encode unknown packet code %d", packet_ctx->code);
1024 return -1;
1025 }
1026
1027 /*
1028 * Always add Message-Authenticator after the packet
1029 * header for insecure transport protocols.
1030 */
1031 if (!packet_ctx->common->secure_transport) switch (packet_ctx->code) {
1037 FR_DBUFF_IN_BYTES_RETURN(&work_dbuff, FR_MESSAGE_AUTHENTICATOR, 0x12,
1038 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1039 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
1040 packet_ctx->seen_message_authenticator = true;
1041 }
1042
1043 /*
1044 * If we're sending Protocol-Error, add in
1045 * Original-Packet-Code manually. If the user adds it
1046 * later themselves, well, too bad.
1047 */
1048 if (packet_ctx->code == FR_RADIUS_CODE_PROTOCOL_ERROR) {
1049 FR_DBUFF_IN_BYTES_RETURN(&work_dbuff, FR_EXTENDED_ATTRIBUTE_1, 0x07, 0x04 /* Original-Packet-Code */,
1050 0x00, 0x00, 0x00, packet_ctx->request_code);
1051 }
1052
1053 /*
1054 * Loop over the reply attributes for the packet.
1055 */
1057 while ((vp = fr_dcursor_current(&cursor))) {
1058 PAIR_VERIFY(vp);
1059
1060 /*
1061 * Encode an individual VP
1062 */
1063 slen = fr_radius_encode_pair(&work_dbuff, &cursor, packet_ctx);
1064 if (slen < 0) return slen;
1065 } /* done looping over all attributes */
1066
1067 /*
1068 * Add Proxy-State to the end of the packet if the caller requested it.
1069 */
1070 if (packet_ctx->add_proxy_state) {
1071 FR_DBUFF_IN_BYTES_RETURN(&work_dbuff, FR_PROXY_STATE, (uint8_t) (2 + sizeof(packet_ctx->common->proxy_state)));
1072 FR_DBUFF_IN_RETURN(&work_dbuff, packet_ctx->common->proxy_state);
1073 }
1074
1075 /*
1076 * Fill in the length field we zeroed out earlier.
1077 *
1078 */
1079 fr_dbuff_in(&length_dbuff, (uint16_t) (fr_dbuff_used(&work_dbuff)));
1080
1081 FR_PROTO_HEX_DUMP(fr_dbuff_start(&work_dbuff), fr_dbuff_used(&work_dbuff), "%s encoded packet", __FUNCTION__);
1082
1083 return fr_dbuff_set(dbuff, &work_dbuff);
1084}
1085
1087 uint8_t *packet, size_t packet_len,
1088 fr_radius_decode_ctx_t *decode_ctx)
1089{
1090 ssize_t slen;
1091 uint8_t const *attr, *end;
1092 static const uint8_t zeros[RADIUS_AUTH_VECTOR_LENGTH] = {};
1093
1094 if (!decode_ctx->request_authenticator) {
1095 switch (packet[0]) {
1098 decode_ctx->request_authenticator = packet + 4;
1099 break;
1100
1104 decode_ctx->request_authenticator = zeros;
1105 break;
1106
1107 default:
1108 fr_strerror_const("No authentication vector passed for packet decode");
1109 return -1;
1110 }
1111 }
1112
1113 if (decode_ctx->request_code) {
1114 unsigned int code = packet[0];
1115
1116 if (code >= FR_RADIUS_CODE_MAX) {
1118 }
1119 if (decode_ctx->request_code >= FR_RADIUS_CODE_MAX) {
1121 }
1122
1123 if (!allowed_replies[code]) {
1124 fr_strerror_printf("%s packet received unknown reply code %s",
1127 }
1128
1129 /*
1130 * Protocol error can reply to any packet.
1131 *
1132 * Status-Server can get any reply.
1133 *
1134 * Otherwise the reply code must be associated with the request code we sent.
1135 */
1137 (allowed_replies[code] != decode_ctx->request_code)) {
1138 fr_strerror_printf("%s packet received invalid reply code %s",
1141 }
1142 }
1143
1144 /*
1145 * We can skip verification for dynamic client checks, and where packets are unsigned as with
1146 * RADIUS/1.1.
1147 */
1148 if (decode_ctx->verify) {
1149 if (!decode_ctx->request_authenticator) decode_ctx->request_authenticator = zeros;
1150
1151 if (fr_radius_verify(packet, decode_ctx->request_authenticator,
1152 (uint8_t const *) decode_ctx->common->secret, decode_ctx->common->secret_length,
1153 decode_ctx->require_message_authenticator, decode_ctx->limit_proxy_state) < 0) {
1154 return -1;
1155 }
1156 }
1157
1158 attr = packet + 20;
1159 end = packet + packet_len;
1160
1161 /*
1162 * The caller MUST have called fr_radius_ok() first. If
1163 * he doesn't, all hell breaks loose.
1164 */
1165 while (attr < end) {
1166 slen = fr_radius_decode_pair(ctx, out, attr, (end - attr), decode_ctx);
1167 if (slen < 0) return slen;
1168
1169 /*
1170 * If slen is larger than the room in the packet,
1171 * all kinds of bad things happen.
1172 */
1173 if (!fr_cond_assert(slen <= (end - attr))) {
1174 return -slen;
1175 }
1176
1177 attr += slen;
1178 talloc_free_children(decode_ctx->tmp_ctx);
1179 }
1180
1181 /*
1182 * We've parsed the whole packet, return that.
1183 */
1184 return packet_len;
1185}
1186
1187/** Simple wrapper for callers who just need a shared secret
1188 *
1189 */
1191 uint8_t *packet, size_t packet_len,
1192 uint8_t const *vector, char const *secret)
1193{
1194 ssize_t rcode;
1195 fr_radius_ctx_t common_ctx = {};
1196 fr_radius_decode_ctx_t packet_ctx = {};
1197
1198 common_ctx.secret = secret;
1199 common_ctx.secret_length = strlen(secret);
1200
1201 packet_ctx.common = &common_ctx;
1202 packet_ctx.tmp_ctx = talloc(ctx, uint8_t);
1203 packet_ctx.request_authenticator = vector;
1204 packet_ctx.end = packet + packet_len;
1205
1206 rcode = fr_radius_decode(ctx, out, packet, packet_len, &packet_ctx);
1207 talloc_free(packet_ctx.tmp_ctx);
1208
1209 return rcode;
1210}
1211
1213{
1214 if (instance_count > 0) {
1216 return 0;
1217 }
1218
1220
1222 fail:
1224 return -1;
1225 }
1226
1229 goto fail;
1230 }
1231
1232 return 0;
1233}
1234
1236{
1237 if (--instance_count != 0) return;
1238
1240}
1241
1243{
1245
1246 if (da->parent->type == FR_TYPE_STRUCT) {
1247 if (flags->extended) {
1248 fr_strerror_const("Attributes of type 'extended' cannot be used inside of a 'struct'");
1249 return false;
1250 }
1251
1252 if (flags->long_extended) {
1253 fr_strerror_const("Attributes of type 'long_extended' cannot be used inside of a 'struct'");
1254 return false;
1255 }
1256
1257
1258 if (flags->concat) {
1259 fr_strerror_const("Attributes of type 'concat' cannot be used inside of a 'struct'");
1260 return false;
1261 }
1262
1263 if (flags->has_tag) {
1264 fr_strerror_const("Attributes of type 'concat' cannot be used inside of a 'struct'");
1265 return false;
1266 }
1267
1268 if (flags->abinary) {
1269 fr_strerror_const("Attributes of type 'abinary' cannot be used inside of a 'struct'");
1270 return false;
1271 }
1272
1273 if (flags->encrypt > 0) {
1274 fr_strerror_const("Attributes of type 'encrypt' cannot be used inside of a 'struct'");
1275 return false;
1276 }
1277
1278 return true;
1279 }
1280
1281 if (da->flags.length > 253) {
1282 fr_strerror_printf("Attributes cannot be more than 253 octets in length");
1283 return false;
1284 }
1285 /*
1286 * Secret things are secret.
1287 */
1288 if (flags->encrypt != 0) da->flags.secret = true;
1289
1290 if (flags->concat) {
1291 if (!da->parent->flags.is_root) {
1292 fr_strerror_const("Attributes with the 'concat' flag MUST be at the root of the dictionary");
1293 return false;
1294 }
1295
1296 if (da->type != FR_TYPE_OCTETS) {
1297 fr_strerror_const("Attributes with the 'concat' flag MUST be of data type 'octets'");
1298 return false;
1299 }
1300
1301 return true; /* can't use any other flag */
1302 }
1303
1304 /*
1305 * Tagged attributes can only be of two data types. They
1306 * can, however, be VSAs.
1307 */
1308 if (flags->has_tag) {
1309 if ((da->type != FR_TYPE_UINT32) && (da->type != FR_TYPE_STRING)) {
1310 fr_strerror_printf("The 'has_tag' flag can only be used for attributes of type 'integer' "
1311 "or 'string'");
1312 return false;
1313 }
1314
1315 if (!(da->parent->flags.is_root ||
1316 ((da->parent->type == FR_TYPE_VENDOR) &&
1317 (da->parent->parent && da->parent->parent->type == FR_TYPE_VSA)))) {
1318 fr_strerror_const("The 'has_tag' flag can only be used with RFC and VSA attributes");
1319 return false;
1320 }
1321
1322 return true;
1323 }
1324
1325 if (flags->extended) {
1326 if (da->type != FR_TYPE_TLV) {
1327 fr_strerror_const("The 'long' or 'extended' flag can only be used for attributes of type 'tlv'");
1328 return false;
1329 }
1330
1331 if (!da->parent->flags.is_root) {
1332 fr_strerror_const("The 'long' flag can only be used for top-level RFC attributes");
1333 return false;
1334 }
1335
1336 return true;
1337 }
1338
1339 /*
1340 * Stupid hacks for MS-CHAP-MPPE-Keys. The User-Password
1341 * encryption method has no provisions for encoding the
1342 * length of the data. For User-Password, the data is
1343 * (presumably) all printable non-zero data. For
1344 * MS-CHAP-MPPE-Keys, the data is binary crap. So... we
1345 * MUST specify a length in the dictionary.
1346 */
1347 if ((flags->encrypt == RADIUS_FLAG_ENCRYPT_USER_PASSWORD) && (da->type != FR_TYPE_STRING)) {
1348 if (da->type != FR_TYPE_OCTETS) {
1349 fr_strerror_printf("The 'encrypt=User-Password' flag can only be used with "
1350 "attributes of type 'string'");
1351 return false;
1352 }
1353
1354 if (da->flags.length == 0) {
1355 fr_strerror_printf("The 'encrypt=User-Password' flag MUST be used with an explicit length for "
1356 "'octets' data types");
1357 return false;
1358 }
1359 }
1360
1361 switch (da->type) {
1362 case FR_TYPE_STRING:
1363 break;
1364
1365 case FR_TYPE_TLV:
1366 case FR_TYPE_IPV4_ADDR:
1367 case FR_TYPE_UINT32:
1368 case FR_TYPE_OCTETS:
1369 if (flags->encrypt != RADIUS_FLAG_ENCRYPT_ASCEND_SECRET) break;
1371
1372 default:
1373 if (flags->encrypt) {
1374 fr_strerror_printf("The 'encrypt' flag cannot be used with attributes of type '%s'",
1375 fr_type_to_str(da->type));
1376 return false;
1377 }
1378 }
1379
1380 return true;
1381}
1382
1385 .name = "radius",
1386 .default_type_size = 1,
1387 .default_type_length = 1,
1388 .attr = {
1389 .flags = {
1390 .table = radius_flags,
1391 .table_len = NUM_ELEMENTS(radius_flags),
1392 .len = sizeof(fr_radius_attr_flags_t),
1393 },
1394 .valid = attr_valid,
1395 },
1396
1397 .init = fr_radius_global_init,
1398 .free = fr_radius_global_free,
1399
1400 .decode = fr_radius_decode_foreign,
1401 .encode = fr_radius_encode_foreign,
1402};
static int const char char buffer[256]
Definition acutest.h:576
log_entry msg
Definition acutest.h:794
#define RCSID(id)
Definition build.h:485
#define L(_str)
Helper for initialising arrays of string literals.
Definition build.h:209
#define FALL_THROUGH
clang 10 doesn't recognised the FALL-THROUGH comment anymore
Definition build.h:324
#define STRINGIFY(x)
Definition build.h:197
#define UNUSED
Definition build.h:317
#define NUM_ELEMENTS(_t)
Definition build.h:339
#define fr_dbuff_used(_dbuff_or_marker)
Return the number of bytes remaining between the start of the dbuff or marker and the current positio...
Definition dbuff.h:767
#define FR_DBUFF_EXTEND_LOWAT_OR_RETURN(_dbuff_or_marker, _lowat)
Extend if we're below _lowat and return if we can't extend above _lowat.
Definition dbuff.h:673
#define fr_dbuff_current(_dbuff_or_marker)
Return the 'current' position of a dbuff or marker.
Definition dbuff.h:911
#define fr_dbuff_set(_dst, _src)
Set the 'current' position in a dbuff or marker using another dbuff or marker, a char pointer,...
Definition dbuff.h:1004
#define fr_dbuff_start(_dbuff_or_marker)
Return the 'start' position of a dbuff or marker.
Definition dbuff.h:898
#define FR_DBUFF_MEMSET_RETURN(_dbuff_or_marker, _c, _inlen)
Set _inlen bytes of a dbuff or marker to _c returning if there is insufficient space.
Definition dbuff.h:1508
#define FR_DBUFF_IN_MEMCPY_RETURN(_dbuff_or_marker, _in, _inlen)
Copy exactly _inlen bytes into dbuff or marker returning if there's insufficient space.
Definition dbuff.h:1382
#define fr_dbuff_in_memcpy(_dbuff_or_marker, _in, _inlen)
Copy exactly _inlen bytes into a dbuff or marker.
Definition dbuff.h:1350
#define fr_dbuff_in(_dbuff_or_marker, _in)
Copy data from a fixed sized C type into a dbuff or marker.
Definition dbuff.h:1567
#define FR_DBUFF_IN_RETURN(_dbuff_or_marker, _in)
Copy data from a fixed sized C type into a dbuff returning if there is insufficient space.
Definition dbuff.h:1585
#define FR_DBUFF(_dbuff_or_marker)
Create a new dbuff pointing to the same underlying buffer.
Definition dbuff.h:222
#define FR_DBUFF_MAX(_dbuff_or_marker, _max)
Limit the maximum number of bytes available in the dbuff when passing it to another function.
Definition dbuff.h:301
#define FR_DBUFF_IN_BYTES_RETURN(_dbuff_or_marker,...)
Copy a byte sequence into a dbuff or marker returning if there's insufficient space.
Definition dbuff.h:1472
static void * fr_dcursor_current(fr_dcursor_t *cursor)
Return the item the cursor current points to.
Definition dcursor.h:337
#define fr_cond_assert(_x)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
Definition debug.h:139
fr_radius_packet_code_t
RADIUS packet codes.
Definition defs.h:31
@ FR_RADIUS_CODE_ACCESS_CHALLENGE
RFC2865 - Access-Challenge.
Definition defs.h:43
@ FR_RADIUS_CODE_ACCESS_REQUEST
RFC2865 - Access-Request.
Definition defs.h:33
@ FR_RADIUS_CODE_DISCONNECT_REQUEST
RFC3575/RFC5176 - Disconnect-Request.
Definition defs.h:46
@ FR_RADIUS_CODE_MAX
Maximum possible protocol code.
Definition defs.h:53
@ FR_RADIUS_CODE_DISCONNECT_ACK
RFC3575/RFC5176 - Disconnect-Ack (positive)
Definition defs.h:47
@ FR_RADIUS_CODE_STATUS_SERVER
RFC2865/RFC5997 - Status Server (request)
Definition defs.h:44
@ FR_RADIUS_CODE_COA_REQUEST
RFC3575/RFC5176 - CoA-Request.
Definition defs.h:49
@ FR_RADIUS_CODE_ACCESS_ACCEPT
RFC2865 - Access-Accept.
Definition defs.h:34
@ FR_RADIUS_CODE_ACCOUNTING_RESPONSE
RFC2866 - Accounting-Response.
Definition defs.h:37
@ FR_RADIUS_CODE_COA_NAK
RFC3575/RFC5176 - CoA-Nak (not willing to perform)
Definition defs.h:51
@ FR_RADIUS_CODE_UNDEFINED
Packet code has not been set.
Definition defs.h:32
@ FR_RADIUS_CODE_COA_ACK
RFC3575/RFC5176 - CoA-Ack (positive)
Definition defs.h:50
@ FR_RADIUS_CODE_DISCONNECT_NAK
RFC3575/RFC5176 - Disconnect-Nak (not willing to perform)
Definition defs.h:48
@ FR_RADIUS_CODE_PROTOCOL_ERROR
RFC7930 - Protocol-Error (generic NAK)
Definition defs.h:52
@ FR_RADIUS_CODE_ACCOUNTING_REQUEST
RFC2866 - Accounting-Request.
Definition defs.h:36
@ FR_RADIUS_CODE_ACCESS_REJECT
RFC2865 - Access-Reject.
Definition defs.h:35
#define MAX_PACKET_LEN
Definition defs.h:68
static int sockfd
Definition dhcpclient.c:56
#define fr_dict_autofree(_to_free)
Definition dict.h:860
fr_dict_attr_t const ** out
Where to write a pointer to the resolved fr_dict_attr_t.
Definition dict.h:272
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
Definition dict.h:285
int fr_dict_attr_autoload(fr_dict_attr_autoload_t const *to_load)
Process a dict_attr_autoload element to load/verify a dictionary attribute.
Definition dict_util.c:4097
@ FR_DICT_ATTR_EXT_PROTOCOL_SPECIFIC
Protocol specific extensions.
Definition dict.h:175
#define fr_dict_autoload(_to_load)
Definition dict.h:857
static fr_slen_t in
Definition dict.h:831
char const * name
name of this protocol
Definition dict.h:433
#define FR_DICT_ATTR_FLAG_FUNC(_struct, _name)
Define a flag setting function, which sets one bit in a fr_dict_attr_flags_t.
Definition dict.h:412
Specifies an attribute which must be present for the module to function.
Definition dict.h:271
Specifies a dictionary which must be loaded/loadable for the module to function.
Definition dict.h:284
Protocol specific custom flag definitnion.
Definition dict.h:402
Protocol-specific callbacks in libfreeradius-PROTOCOL.
Definition dict.h:432
static void * fr_dict_attr_ext(fr_dict_attr_t const *da, fr_dict_attr_ext_t ext)
Definition dict_ext.h:140
Test enumeration values.
Definition dict_test.h:92
static void * fr_dlist_next(fr_dlist_head_t const *list_head, void const *ptr)
Get the next item in a list.
Definition dlist.h:555
Head of a doubly linked list.
Definition dlist.h:51
int fr_hmac_md5(uint8_t digest[MD5_DIGEST_LENGTH], uint8_t const *in, size_t inlen, uint8_t const *key, size_t key_len)
Calculate HMAC using internal MD5 implementation.
Definition hmac_md5.c:119
int af
Address family.
Definition inet.h:64
union fr_ipaddr_t::@131 addr
IPv4/6 prefix.
static fr_dict_t const * dict_freeradius
Definition base.c:37
fr_dict_attr_t const * attr_packet_type
Definition base.c:93
fr_dict_attr_t const * attr_state
Definition base.c:103
fr_dict_attr_t const * attr_eap_message
Definition base.c:96
fr_dict_t const * dict_radius
Definition base.c:78
fr_dict_attr_t const * attr_message_authenticator
Definition base.c:94
static int dict_flag_encrypt(fr_dict_attr_t **da_p, char const *value, UNUSED fr_dict_flag_parser_rule_t const *rules)
Definition base.c:227
static uint32_t instance_count
Definition base.c:44
talloc_free(reap)
int udp_recv_discard(int sockfd)
Discard the next UDP packet.
Definition udp.c:76
ssize_t udp_recv_peek(int sockfd, void *data, size_t data_len, int flags, fr_ipaddr_t *src_ipaddr, uint16_t *src_port)
Peek at the header of a UDP packet.
Definition udp.c:96
fr_md5_update_t fr_md5_update
Definition md5.c:442
fr_md5_final_t fr_md5_final
Definition md5.c:443
void fr_md5_ctx_free_from_list(fr_md5_ctx_t **ctx)
Definition md5.c:522
fr_md5_ctx_t * fr_md5_ctx_alloc_from_list(void)
Definition md5.c:477
void fr_md5_ctx_t
Definition md5.h:28
#define MD5_DIGEST_LENGTH
unsigned short uint16_t
@ FR_TYPE_IPV4_ADDR
32 Bit IPv4 Address.
@ FR_TYPE_TLV
Contains nested attributes.
@ FR_TYPE_STRING
String of printable characters.
@ FR_TYPE_UINT32
32 Bit unsigned integer.
@ FR_TYPE_STRUCT
like TLV, but without T or L, and fixed-width children
@ FR_TYPE_VENDOR
Attribute that represents a vendor in the attribute tree.
@ FR_TYPE_VSA
Vendor-Specific, for RADIUS attribute 26.
@ FR_TYPE_OCTETS
Raw octets.
unsigned int uint32_t
long int ssize_t
unsigned char uint8_t
int fr_digest_cmp(uint8_t const *a, uint8_t const *b, size_t length)
Do a comparison of two authentication digests by comparing the FULL data.
Definition misc.c:472
char const * inet_ntop(int af, void const *src, char *dst, size_t cnt)
Definition missing.c:443
static uint16_t fr_nbo_to_uint16(uint8_t const data[static sizeof(uint16_t)])
Read an unsigned 16bit integer from wire format (big endian)
Definition nbo.h:146
#define RADIUS_HEADER_LENGTH
Definition net.h:80
#define RADIUS_AUTH_VECTOR_LENGTH
Definition net.h:89
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the first pair with a matching da.
Definition pair.c:695
static uint8_t const zeros[6]
Definition base.c:93
static bool attr_valid(fr_dict_attr_t *da)
Definition base.c:443
fr_dict_protocol_t libfreeradius_radius_dict_protocol
Definition base.c:1384
fr_dict_autoload_t libfreeradius_radius_dict[]
Definition base.c:47
fr_dict_attr_t const * attr_nas_filter_rule
Definition base.c:61
static const bool disallow_tunnel_passwords[FR_RADIUS_CODE_MAX]
Definition base.c:930
void * fr_radius_next_encodable(fr_dlist_head_t *list, void *current, void *uctx)
Definition base.c:913
static fr_dict_flag_parser_t const radius_flags[]
Definition base.c:218
fr_dict_attr_t const * attr_packet_authentication_vector
Definition base.c:54
static const fr_radius_packet_code_t allowed_replies[FR_RADIUS_CODE_MAX]
If we get a reply, the request must come from one of a small number of packet types.
Definition base.c:172
ssize_t fr_radius_ascend_secret(fr_dbuff_t *dbuff, uint8_t const *in, size_t inlen, char const *secret, uint8_t const *vector)
Do Ascend-Send / Recv-Secret calculation.
Definition base.c:247
ssize_t fr_radius_decode(TALLOC_CTX *ctx, fr_pair_list_t *out, uint8_t *packet, size_t packet_len, fr_radius_decode_ctx_t *decode_ctx)
Definition base.c:1086
size_t fr_radius_limit_proxy_state_table_len
Definition base.c:99
int fr_radius_sign(uint8_t *packet, uint8_t const *vector, uint8_t const *secret, size_t secret_len)
Sign a previously encoded packet.
Definition base.c:358
int fr_radius_verify(uint8_t *packet, uint8_t const *vector, uint8_t const *secret, size_t secret_len, bool require_message_authenticator, bool limit_proxy_state)
Verify a request / response packet.
Definition base.c:776
fr_dict_attr_autoload_t libfreeradius_radius_dict_attr[]
Definition base.c:64
size_t fr_radius_require_ma_table_len
Definition base.c:90
fr_dict_attr_t const * attr_chap_challenge
Definition base.c:55
fr_dict_attr_t const * attr_vendor_specific
Definition base.c:60
int fr_radius_global_init(void)
Definition base.c:1212
size_t fr_radius_request_name_table_len
Definition base.c:110
#define FR_DEBUG_STRERROR_PRINTF
Definition base.c:81
fr_dict_attr_t const * attr_chargeable_user_identity
Definition base.c:56
ssize_t fr_radius_decode_simple(TALLOC_CTX *ctx, fr_pair_list_t *out, uint8_t *packet, size_t packet_len, uint8_t const *vector, char const *secret)
Simple wrapper for callers who just need a shared secret.
Definition base.c:1190
void fr_radius_global_free(void)
Definition base.c:1235
fr_table_num_sorted_t const fr_radius_limit_proxy_state_table[]
Definition base.c:92
fr_table_num_sorted_t const fr_radius_request_name_table[]
Definition base.c:101
fr_table_num_sorted_t const fr_radius_require_ma_table[]
Definition base.c:83
bool fr_radius_ok(uint8_t const *packet, size_t *packet_len_p, uint32_t max_attributes, bool require_message_authenticator, fr_radius_decode_fail_t *reason)
See if the data pointed to by PTR is a valid RADIUS packet.
Definition base.c:515
ssize_t fr_radius_encode(fr_dbuff_t *dbuff, fr_pair_list_t *vps, fr_radius_encode_ctx_t *packet_ctx)
Definition base.c:951
char const * fr_radius_packet_name[FR_RADIUS_CODE_MAX]
Definition base.c:112
ssize_t fr_radius_recv_header(int sockfd, fr_ipaddr_t *src_ipaddr, uint16_t *src_port, unsigned int *code)
Basic validation of RADIUS packet header.
Definition base.c:285
int fr_radius_allow_reply(int code, bool allowed[static FR_RADIUS_CODE_MAX])
Definition base.c:227
ssize_t fr_radius_decode_foreign(TALLOC_CTX *ctx, fr_pair_list_t *out, uint8_t const *data, size_t data_len)
Definition decode.c:2092
ssize_t fr_radius_decode_pair(TALLOC_CTX *ctx, fr_pair_list_t *out, uint8_t const *data, size_t data_len, fr_radius_decode_ctx_t *packet_ctx)
Create a "normal" fr_pair_t from the given data.
Definition decode.c:1985
ssize_t fr_radius_encode_pair(fr_dbuff_t *dbuff, fr_dcursor_t *cursor, void *encode_ctx)
Encode a data structure into a RADIUS attribute.
Definition encode.c:1515
ssize_t fr_radius_encode_foreign(fr_dbuff_t *dbuff, fr_pair_list_t const *list)
Definition encode.c:1680
VQP attributes.
static rc_request_t * current
static char * secret
unsigned int has_tag
Attribute has a tag.
Definition radius.h:156
bool secure_transport
for TLS
Definition radius.h:98
@ FR_RADIUS_REQUIRE_MA_NO
Do not require Message-Authenticator.
Definition radius.h:63
@ FR_RADIUS_REQUIRE_MA_YES
Require Message-Authenticator.
Definition radius.h:64
@ FR_RADIUS_REQUIRE_MA_AUTO
Only require Message-Authenticator if we've previously received a packet from this client with Messag...
Definition radius.h:65
fr_radius_ctx_t const * common
Definition radius.h:104
uint8_t request_code
original code for the request.
Definition radius.h:132
uint8_t const * request_authenticator
Definition radius.h:127
unsigned int abinary
Attribute is in "abinary" format.
Definition radius.h:157
fr_radius_decode_fail_t
Failure reasons.
Definition radius.h:162
@ DECODE_FAIL_INVALID_ATTRIBUTE
Definition radius.h:170
@ DECODE_FAIL_ATTRIBUTE_UNDERFLOW
Definition radius.h:174
@ DECODE_FAIL_MIN_LENGTH_FIELD
Definition radius.h:166
@ DECODE_FAIL_HEADER_OVERFLOW
Definition radius.h:168
@ DECODE_FAIL_ATTRIBUTE_TOO_SHORT
Definition radius.h:171
@ DECODE_FAIL_MA_INVALID
Definition radius.h:177
@ DECODE_FAIL_ATTRIBUTE_OVERFLOW
Definition radius.h:172
@ DECODE_FAIL_TOO_MANY_ATTRIBUTES
Definition radius.h:175
@ DECODE_FAIL_NONE
Definition radius.h:163
@ DECODE_FAIL_MIN_LENGTH_PACKET
Definition radius.h:164
@ DECODE_FAIL_MIN_LENGTH_MISMATCH
Definition radius.h:167
@ DECODE_FAIL_VERIFY
Definition radius.h:178
@ DECODE_FAIL_MA_INVALID_LENGTH
Definition radius.h:173
@ DECODE_FAIL_MA_MISSING
Definition radius.h:176
@ DECODE_FAIL_UNKNOWN_PACKET_CODE
Definition radius.h:169
bool disallow_tunnel_passwords
not all packets can have tunnel passwords
Definition radius.h:120
char const * secret
Definition radius.h:95
unsigned int concat
Attribute is concatenated.
Definition radius.h:155
uint8_t const * end
end of the packet
Definition radius.h:130
bool limit_proxy_state
Don't allow Proxy-State in requests.
Definition radius.h:137
uint64_t proxy_state
Definition radius.h:100
uint8_t const * request_authenticator
Definition radius.h:106
unsigned int extended
Attribute is an extended attribute.
Definition radius.h:154
fr_radius_attr_flags_encrypt_t encrypt
Attribute is encrypted.
Definition radius.h:158
bool require_message_authenticator
Definition radius.h:136
size_t secret_length
Definition radius.h:96
bool verify
can skip verify for dynamic clients
Definition radius.h:135
fr_radius_ctx_t const * common
Definition radius.h:125
@ FR_RADIUS_LIMIT_PROXY_STATE_NO
Do not limit Proxy-State.
Definition radius.h:77
@ FR_RADIUS_LIMIT_PROXY_STATE_AUTO
Do not allow Proxy-State unless:
Definition radius.h:82
@ FR_RADIUS_LIMIT_PROXY_STATE_YES
Limit Proxy-State.
Definition radius.h:79
unsigned int long_extended
Attribute is a long extended attribute.
Definition radius.h:153
fr_radius_attr_flags_encrypt_t
Definition radius.h:144
@ RADIUS_FLAG_ENCRYPT_INVALID
Invalid encryption flag.
Definition radius.h:145
@ RADIUS_FLAG_ENCRYPT_USER_PASSWORD
Encrypt attribute RFC 2865 style.
Definition radius.h:147
@ RADIUS_FLAG_ENCRYPT_ASCEND_SECRET
Encrypt attribute ascend style.
Definition radius.h:149
@ RADIUS_FLAG_ENCRYPT_TUNNEL_PASSWORD
Encrypt attribute RFC 2868 style.
Definition radius.h:148
static fr_radius_attr_flags_t const * fr_radius_attr_flags(fr_dict_attr_t const *da)
Return RADIUS-specific flags for a given attribute.
Definition radius.h:187
bool add_proxy_state
do we add a Proxy-State?
Definition radius.h:119
bool seen_message_authenticator
Definition radius.h:121
TALLOC_CTX * tmp_ctx
for temporary things cleaned up during decoding
Definition radius.h:129
uint32_t fr_rand(void)
Return a 32-bit random number.
Definition rand.c:105
fr_pair_t * vp
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
Definition pair.h:69
#define fr_table_value_by_str(_table, _name, _def)
Convert a string to a value using a sorted or ordered table.
Definition table.h:653
An element in a lexicographically sorted array of name to num mappings.
Definition table.h:49
#define UDP_FLAGS_PEEK
Definition udp.h:39
#define fr_pair_dcursor_iter_init(_cursor, _list, _iter, _uctx)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
Definition pair.h:569
#define PAIR_VERIFY(_x)
Definition pair.h:191
#define FR_PROTO_HEX_DUMP(_data, _data_len, _fmt,...)
Definition proto.h:41
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
#define fr_strerror_const_push(_msg)
Definition strerror.h:227
#define fr_strerror_const(_msg)
Definition strerror.h:223
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
Definition types.h:433
static size_t char fr_sbuff_t size_t inlen
Definition value.h:1012
static size_t char ** out
Definition value.h:1012