We can only decode attributes of 256 bytes or less
[freeradius.git] / src / lib / radius.c
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$
19  *
20  * @file radius.c
21  * @brief Functions to send/receive radius packets.
22  *
23  * @copyright 2000-2003,2006  The FreeRADIUS server project
24  */
25
26 RCSID("$Id$")
27
28 #include        <freeradius-devel/libradius.h>
29
30 #include        <freeradius-devel/md5.h>
31
32 #include        <fcntl.h>
33 #include        <ctype.h>
34
35 #ifdef WITH_UDPFROMTO
36 #include        <freeradius-devel/udpfromto.h>
37 #endif
38
39 #if 0
40 #define VP_TRACE if (fr_debug_flag) printf
41
42 static void VP_HEXDUMP(char const *msg, uint8_t const *data, size_t len)
43 {
44         size_t i;
45
46         printf("--- %s ---\n", msg);
47         for (i = 0; i < len; i++) {
48                 if ((i & 0x0f) == 0) printf("%04x: ", (unsigned int) i);
49                 printf("%02x ", data[i]);
50                 if ((i & 0x0f) == 0x0f) printf("\n");
51         }
52         if ((len == 0x0f) || ((len & 0x0f) != 0x0f)) printf("\n");
53 }
54
55 #else
56 #define VP_TRACE(_x, ...)
57 #define VP_HEXDUMP(_x, _y, _z)
58 #endif
59
60
61 /*
62  *  The RFC says 4096 octets max, and most packets are less than 256.
63  */
64 #define MAX_PACKET_LEN 4096
65
66 /*
67  *      The maximum number of attributes which we allow in an incoming
68  *      request.  If there are more attributes than this, the request
69  *      is rejected.
70  *
71  *      This helps to minimize the potential for a DoS, when an
72  *      attacker spoofs Access-Request packets, which don't have a
73  *      Message-Authenticator attribute.  This means that the packet
74  *      is unsigned, and the attacker can use resources on the server,
75  *      even if the end request is rejected.
76  */
77 int fr_max_attributes = 0;
78 FILE *fr_log_fp = NULL;
79
80 typedef struct radius_packet_t {
81   uint8_t       code;
82   uint8_t       id;
83   uint8_t       length[2];
84   uint8_t       vector[AUTH_VECTOR_LEN];
85   uint8_t       data[1];
86 } radius_packet_t;
87
88 static fr_randctx fr_rand_pool; /* across multiple calls */
89 static int fr_rand_initialized = 0;
90 static unsigned int salt_offset = 0;
91 static uint8_t nullvector[AUTH_VECTOR_LEN] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; /* for CoA decode */
92
93 char const *fr_packet_codes[FR_MAX_PACKET_CODE] = {
94   "",
95   "Access-Request",
96   "Access-Accept",
97   "Access-Reject",
98   "Accounting-Request",
99   "Accounting-Response",
100   "Accounting-Status",
101   "Password-Request",
102   "Password-Accept",
103   "Password-Reject",
104   "Accounting-Message",
105   "Access-Challenge",
106   "Status-Server",
107   "Status-Client",
108   "14",
109   "15",
110   "16",
111   "17",
112   "18",
113   "19",
114   "20",
115   "Resource-Free-Request",
116   "Resource-Free-Response",
117   "Resource-Query-Request",
118   "Resource-Query-Response",
119   "Alternate-Resource-Reclaim-Request",
120   "NAS-Reboot-Request",
121   "NAS-Reboot-Response",
122   "28",
123   "Next-Passcode",
124   "New-Pin",
125   "Terminate-Session",
126   "Password-Expired",
127   "Event-Request",
128   "Event-Response",
129   "35",
130   "36",
131   "37",
132   "38",
133   "39",
134   "Disconnect-Request",
135   "Disconnect-ACK",
136   "Disconnect-NAK",
137   "CoA-Request",
138   "CoA-ACK",
139   "CoA-NAK",
140   "46",
141   "47",
142   "48",
143   "49",
144   "IP-Address-Allocate",
145   "IP-Address-Release"
146 };
147
148
149 void fr_printf_log(char const *fmt, ...)
150 {
151         va_list ap;
152
153         va_start(ap, fmt);
154         if ((fr_debug_flag == 0) || !fr_log_fp) {
155                 va_end(ap);
156                 return;
157         }
158
159         vfprintf(fr_log_fp, fmt, ap);
160         va_end(ap);
161
162         return;
163 }
164
165 static char const *tabs = "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
166
167 static void print_hex_data(uint8_t const *ptr, int attrlen, int depth)
168 {
169         int i;
170
171         for (i = 0; i < attrlen; i++) {
172                 if ((i > 0) && ((i & 0x0f) == 0x00))
173                         fprintf(fr_log_fp, "%.*s", depth, tabs);
174                 fprintf(fr_log_fp, "%02x ", ptr[i]);
175                 if ((i & 0x0f) == 0x0f) fprintf(fr_log_fp, "\n");
176         }
177         if ((i & 0x0f) != 0) fprintf(fr_log_fp, "\n");
178 }
179
180
181 void rad_print_hex(RADIUS_PACKET *packet)
182 {
183         int i;
184
185         if (!packet->data || !fr_log_fp) return;
186
187         fprintf(fr_log_fp, "  Code:\t\t%u\n", packet->data[0]);
188         fprintf(fr_log_fp, "  Id:\t\t%u\n", packet->data[1]);
189         fprintf(fr_log_fp, "  Length:\t%u\n", ((packet->data[2] << 8) |
190                                    (packet->data[3])));
191         fprintf(fr_log_fp, "  Vector:\t");
192         for (i = 4; i < 20; i++) {
193                 fprintf(fr_log_fp, "%02x", packet->data[i]);
194         }
195         fprintf(fr_log_fp, "\n");
196
197         if (packet->data_len > 20) {
198                 int total;
199                 uint8_t const *ptr;
200                 fprintf(fr_log_fp, "  Data:");
201
202                 total = packet->data_len - 20;
203                 ptr = packet->data + 20;
204
205                 while (total > 0) {
206                         int attrlen;
207                         unsigned int vendor = 0;
208
209                         fprintf(fr_log_fp, "\t\t");
210                         if (total < 2) { /* too short */
211                                 fprintf(fr_log_fp, "%02x\n", *ptr);
212                                 break;
213                         }
214
215                         if (ptr[1] > total) { /* too long */
216                                 for (i = 0; i < total; i++) {
217                                         fprintf(fr_log_fp, "%02x ", ptr[i]);
218                                 }
219                                 break;
220                         }
221
222                         fprintf(fr_log_fp, "%02x  %02x  ", ptr[0], ptr[1]);
223                         attrlen = ptr[1] - 2;
224
225                         if ((ptr[0] == PW_VENDOR_SPECIFIC) &&
226                             (attrlen > 4)) {
227                                 vendor = (ptr[3] << 16) | (ptr[4] << 8) | ptr[5];
228                                 fprintf(fr_log_fp, "%02x%02x%02x%02x (%u)  ",
229                                        ptr[2], ptr[3], ptr[4], ptr[5], vendor);
230                                 attrlen -= 4;
231                                 ptr += 6;
232                                 total -= 6;
233
234                         } else {
235                                 ptr += 2;
236                                 total -= 2;
237                         }
238
239                         print_hex_data(ptr, attrlen, 3);
240
241                         ptr += attrlen;
242                         total -= attrlen;
243                 }
244         }
245         fflush(stdout);
246 }
247
248 /**
249  * @brief Wrapper for sendto which handles sendfromto, IPv6, and all
250  *      possible combinations.
251  */
252 static int rad_sendto(int sockfd, void *data, size_t data_len, int flags,
253 #ifdef WITH_UDPFROMTO
254                       fr_ipaddr_t *src_ipaddr, int src_port,
255 #else
256                       UNUSED fr_ipaddr_t *src_ipaddr, UNUSED int src_port,
257 #endif
258                       fr_ipaddr_t *dst_ipaddr, int dst_port)
259 {
260         int rcode;
261         struct sockaddr_storage dst;
262         socklen_t               sizeof_dst;
263
264 #ifdef WITH_UDPFROMTO
265         struct sockaddr_storage src;
266         socklen_t               sizeof_src;
267
268         fr_ipaddr2sockaddr(src_ipaddr, src_port, &src, &sizeof_src);
269 #endif
270
271         if (!fr_ipaddr2sockaddr(dst_ipaddr, dst_port, &dst, &sizeof_dst)) {
272                 return -1;
273         }
274
275 #ifdef WITH_UDPFROMTO
276         /*
277          *      And if they don't specify a source IP address, don't
278          *      use udpfromto.
279          */
280         if (((dst_ipaddr->af == AF_INET) || (dst_ipaddr->af == AF_INET6)) &&
281             (src_ipaddr->af != AF_UNSPEC) &&
282             !fr_inaddr_any(src_ipaddr)) {
283                 rcode = sendfromto(sockfd, data, data_len, flags,
284                                    (struct sockaddr *)&src, sizeof_src,
285                                    (struct sockaddr *)&dst, sizeof_dst);
286                 goto done;
287         }
288 #endif
289
290         /*
291          *      No udpfromto, fail gracefully.
292          */
293         rcode = sendto(sockfd, data, data_len, flags,
294                        (struct sockaddr *) &dst, sizeof_dst);
295 #ifdef WITH_UDPFROMTO
296 done:
297 #endif
298         if (rcode < 0) {
299                 DEBUG("rad_send() failed: %s\n", strerror(errno));
300         }
301
302         return rcode;
303 }
304
305
306 void rad_recv_discard(int sockfd)
307 {
308         uint8_t                 header[4];
309         struct sockaddr_storage src;
310         socklen_t               sizeof_src = sizeof(src);
311
312         (void) recvfrom(sockfd, header, sizeof(header), 0,
313                         (struct sockaddr *)&src, &sizeof_src);
314 }
315
316
317 ssize_t rad_recv_header(int sockfd, fr_ipaddr_t *src_ipaddr, int *src_port,
318                         int *code)
319 {
320         ssize_t                 data_len, packet_len;
321         uint8_t                 header[4];
322         struct sockaddr_storage src;
323         socklen_t               sizeof_src = sizeof(src);
324
325         data_len = recvfrom(sockfd, header, sizeof(header), MSG_PEEK,
326                             (struct sockaddr *)&src, &sizeof_src);
327         if (data_len < 0) {
328                 if ((errno == EAGAIN) || (errno == EINTR)) return 0;
329                 return -1;
330         }
331
332         /*
333          *      Too little data is available, discard the packet.
334          */
335         if (data_len < 4) {
336                 rad_recv_discard(sockfd);
337
338                 return 1;
339
340         } else {                /* we got 4 bytes of data. */
341                 /*
342                  *      See how long the packet says it is.
343                  */
344                 packet_len = (header[2] * 256) + header[3];
345
346                 /*
347                  *      The length in the packet says it's less than
348                  *      a RADIUS header length: discard it.
349                  */
350                 if (packet_len < AUTH_HDR_LEN) {
351                         rad_recv_discard(sockfd);
352
353                         return 1;
354
355                         /*
356                          *      Enforce RFC requirements, for sanity.
357                          *      Anything after 4k will be discarded.
358                          */
359                 } else if (packet_len > MAX_PACKET_LEN) {
360                         rad_recv_discard(sockfd);
361
362                         return 1;
363                 }
364         }
365
366         /*
367          *      Convert AF.  If unknown, discard packet.
368          */
369         if (!fr_sockaddr2ipaddr(&src, sizeof_src, src_ipaddr, src_port)) {
370                 rad_recv_discard(sockfd);
371
372                 return 1;
373         }
374
375         *code = header[0];
376
377         /*
378          *      The packet says it's this long, but the actual UDP
379          *      size could still be smaller.
380          */
381         return packet_len;
382 }
383
384
385 /**
386  * @brief wrapper for recvfrom, which handles recvfromto, IPv6, and all
387  *      possible combinations.
388  */
389 static ssize_t rad_recvfrom(int sockfd, RADIUS_PACKET *packet, int flags,
390                             fr_ipaddr_t *src_ipaddr, uint16_t *src_port,
391                             fr_ipaddr_t *dst_ipaddr, uint16_t *dst_port)
392 {
393         struct sockaddr_storage src;
394         struct sockaddr_storage dst;
395         socklen_t               sizeof_src = sizeof(src);
396         socklen_t               sizeof_dst = sizeof(dst);
397         ssize_t                 data_len;
398         uint8_t                 header[4];
399         size_t                  len;
400         int                     port;
401
402         memset(&src, 0, sizeof_src);
403         memset(&dst, 0, sizeof_dst);
404
405         /*
406          *      Read the length of the packet, from the packet.
407          *      This lets us allocate the buffer to use for
408          *      reading the rest of the packet.
409          */
410         data_len = recvfrom(sockfd, header, sizeof(header), MSG_PEEK,
411                             (struct sockaddr *)&src, &sizeof_src);
412         if (data_len < 0) {
413                 if ((errno == EAGAIN) || (errno == EINTR)) return 0;
414                 return -1;
415         }
416
417         /*
418          *      Too little data is available, discard the packet.
419          */
420         if (data_len < 4) {
421                 rad_recv_discard(sockfd);
422
423                 return 0;
424
425         } else {                /* we got 4 bytes of data. */
426                 /*
427                  *      See how long the packet says it is.
428                  */
429                 len = (header[2] * 256) + header[3];
430
431                 /*
432                  *      The length in the packet says it's less than
433                  *      a RADIUS header length: discard it.
434                  */
435                 if (len < AUTH_HDR_LEN) {
436                         recvfrom(sockfd, header, sizeof(header), flags,
437                                  (struct sockaddr *)&src, &sizeof_src);
438                         return 0;
439
440                         /*
441                          *      Enforce RFC requirements, for sanity.
442                          *      Anything after 4k will be discarded.
443                          */
444                 } else if (len > MAX_PACKET_LEN) {
445                         recvfrom(sockfd, header, sizeof(header), flags,
446                                  (struct sockaddr *)&src, &sizeof_src);
447                         return len;
448                 }
449         }
450
451         packet->data = talloc_array(packet, uint8_t, len);
452         if (!packet->data) return -1;
453
454         /*
455          *      Receive the packet.  The OS will discard any data in the
456          *      packet after "len" bytes.
457          */
458 #ifdef WITH_UDPFROMTO
459         data_len = recvfromto(sockfd, packet->data, len, flags,
460                               (struct sockaddr *)&src, &sizeof_src,
461                               (struct sockaddr *)&dst, &sizeof_dst);
462 #else
463         data_len = recvfrom(sockfd, packet->data, len, flags,
464                             (struct sockaddr *)&src, &sizeof_src);
465
466         /*
467          *      Get the destination address, too.
468          */
469         if (getsockname(sockfd, (struct sockaddr *)&dst,
470                         &sizeof_dst) < 0) return -1;
471 #endif
472         if (data_len < 0) {
473                 return data_len;
474         }
475
476         if (!fr_sockaddr2ipaddr(&src, sizeof_src, src_ipaddr, &port)) {
477                 return -1;      /* Unknown address family, Die Die Die! */
478         }
479         *src_port = port;
480
481         fr_sockaddr2ipaddr(&dst, sizeof_dst, dst_ipaddr, &port);
482         *dst_port = port;
483
484         /*
485          *      Different address families should never happen.
486          */
487         if (src.ss_family != dst.ss_family) {
488                 return -1;
489         }
490
491         return data_len;
492 }
493
494
495 #define AUTH_PASS_LEN (AUTH_VECTOR_LEN)
496 /**
497  * @brief Build an encrypted secret value to return in a reply packet
498  *
499  *             The secret is hidden by xoring with a MD5 digest
500  *             created from the shared secret and the authentication
501  *             vector.  We put them into MD5 in the reverse order from
502  *             that used when encrypting passwords to RADIUS.
503  *
504  */
505 static void make_secret(uint8_t *digest, uint8_t const *vector,
506                         char const *secret, uint8_t const *value)
507 {
508         FR_MD5_CTX context;
509         int          i;
510
511         fr_MD5Init(&context);
512         fr_MD5Update(&context, vector, AUTH_VECTOR_LEN);
513         fr_MD5Update(&context, (uint8_t const *) secret, strlen(secret));
514         fr_MD5Final(digest, &context);
515
516         for ( i = 0; i < AUTH_VECTOR_LEN; i++ ) {
517                 digest[i] ^= value[i];
518         }
519 }
520
521 #define MAX_PASS_LEN (128)
522 static void make_passwd(uint8_t *output, ssize_t *outlen,
523                         uint8_t const *input, size_t inlen,
524                         char const *secret, uint8_t const *vector)
525 {
526         FR_MD5_CTX context, old;
527         uint8_t digest[AUTH_VECTOR_LEN];
528         uint8_t passwd[MAX_PASS_LEN];
529         size_t  i, n;
530         size_t  len;
531
532         /*
533          *      If the length is zero, round it up.
534          */
535         len = inlen;
536
537         if (len > MAX_PASS_LEN) len = MAX_PASS_LEN;
538
539         memcpy(passwd, input, len);
540         if (len < sizeof(passwd)) memset(passwd + len, 0, sizeof(passwd) - len);
541
542         if (len == 0) {
543                 len = AUTH_PASS_LEN;
544         }
545
546         else if ((len & 0x0f) != 0) {
547                 len += 0x0f;
548                 len &= ~0x0f;
549         }
550         *outlen = len;
551
552         fr_MD5Init(&context);
553         fr_MD5Update(&context, (uint8_t const *) secret, strlen(secret));
554         old = context;
555
556         /*
557          *      Do first pass.
558          */
559         fr_MD5Update(&context, vector, AUTH_PASS_LEN);
560
561         for (n = 0; n < len; n += AUTH_PASS_LEN) {
562                 if (n > 0) {
563                         context = old;
564                         fr_MD5Update(&context,
565                                        passwd + n - AUTH_PASS_LEN,
566                                        AUTH_PASS_LEN);
567                 }
568
569                 fr_MD5Final(digest, &context);
570                 for (i = 0; i < AUTH_PASS_LEN; i++) {
571                         passwd[i + n] ^= digest[i];
572                 }
573         }
574
575         memcpy(output, passwd, len);
576 }
577
578 static void make_tunnel_passwd(uint8_t *output, ssize_t *outlen,
579                                uint8_t const *input, size_t inlen, size_t room,
580                                char const *secret, uint8_t const *vector)
581 {
582         FR_MD5_CTX context, old;
583         uint8_t digest[AUTH_VECTOR_LEN];
584         uint8_t passwd[MAX_STRING_LEN + AUTH_VECTOR_LEN];
585         int     i, n;
586         int     len;
587
588         /*
589          *      Be paranoid.
590          */
591         if (room > 253) room = 253;
592
593         /*
594          *      Account for 2 bytes of the salt, and round the room
595          *      available down to the nearest multiple of 16.  Then,
596          *      subtract one from that to account for the length byte,
597          *      and the resulting number is the upper bound on the data
598          *      to copy.
599          *
600          *      We could short-cut this calculation just be forcing
601          *      inlen to be no more than 239.  It would work for all
602          *      VSA's, as we don't pack multiple VSA's into one
603          *      attribute.
604          *
605          *      However, this calculation is more general, if a little
606          *      complex.  And it will work in the future for all possible
607          *      kinds of weird attribute packing.
608          */
609         room -= 2;
610         room -= (room & 0x0f);
611         room--;
612
613         if (inlen > room) inlen = room;
614
615         /*
616          *      Length of the encrypted data is password length plus
617          *      one byte for the length of the password.
618          */
619         len = inlen + 1;
620         if ((len & 0x0f) != 0) {
621                 len += 0x0f;
622                 len &= ~0x0f;
623         }
624         *outlen = len + 2;      /* account for the salt */
625
626         /*
627          *      Copy the password over.
628          */
629         memcpy(passwd + 3, input, inlen);
630         memset(passwd + 3 + inlen, 0, sizeof(passwd) - 3 - inlen);
631
632         /*
633          *      Generate salt.  The RFC's say:
634          *
635          *      The high bit of salt[0] must be set, each salt in a
636          *      packet should be unique, and they should be random
637          *
638          *      So, we set the high bit, add in a counter, and then
639          *      add in some CSPRNG data.  should be OK..
640          */
641         passwd[0] = (0x80 | ( ((salt_offset++) & 0x0f) << 3) |
642                      (fr_rand() & 0x07));
643         passwd[1] = fr_rand();
644         passwd[2] = inlen;      /* length of the password string */
645
646         fr_MD5Init(&context);
647         fr_MD5Update(&context, (uint8_t const *) secret, strlen(secret));
648         old = context;
649
650         fr_MD5Update(&context, vector, AUTH_VECTOR_LEN);
651         fr_MD5Update(&context, &passwd[0], 2);
652
653         for (n = 0; n < len; n += AUTH_PASS_LEN) {
654                 if (n > 0) {
655                         context = old;
656                         fr_MD5Update(&context,
657                                        passwd + 2 + n - AUTH_PASS_LEN,
658                                        AUTH_PASS_LEN);
659                 }
660
661                 fr_MD5Final(digest, &context);
662
663                 for (i = 0; i < AUTH_PASS_LEN; i++) {
664                         passwd[i + 2 + n] ^= digest[i];
665                 }
666         }
667         memcpy(output, passwd, len + 2);
668 }
669
670 extern int fr_attr_max_tlv;
671 extern int fr_attr_shift[];
672 extern int fr_attr_mask[];
673
674 static int do_next_tlv(VALUE_PAIR const *vp, VALUE_PAIR const *next, int nest)
675 {
676         unsigned int tlv1, tlv2;
677
678         if (nest > fr_attr_max_tlv) return 0;
679
680         if (!vp) return 0;
681
682         /*
683          *      Keep encoding TLVs which have the same scope.
684          *      e.g. two attributes of:
685          *              ATTR.TLV1.TLV2.TLV3 = data1
686          *              ATTR.TLV1.TLV2.TLV4 = data2
687          *      both get put into a container of "ATTR.TLV1.TLV2"
688          */
689
690         /*
691          *      Nothing to follow, we're done.
692          */
693         if (!next) return 0;
694
695         /*
696          *      Not from the same vendor, skip it.
697          */
698         if (vp->da->vendor != next->da->vendor) return 0;
699
700         /*
701          *      In a different TLV space, skip it.
702          */
703         tlv1 = vp->da->attr;
704         tlv2 = next->da->attr;
705
706         tlv1 &= ((1 << fr_attr_shift[nest]) - 1);
707         tlv2 &= ((1 << fr_attr_shift[nest]) - 1);
708
709         if (tlv1 != tlv2) return 0;
710
711         return 1;
712 }
713
714
715 static ssize_t vp2data_any(RADIUS_PACKET const *packet,
716                            RADIUS_PACKET const *original,
717                            char const *secret, int nest,
718                            VALUE_PAIR const **pvp,
719                            uint8_t *start, size_t room);
720
721 static ssize_t vp2attr_rfc(RADIUS_PACKET const *packet,
722                            RADIUS_PACKET const *original,
723                            char const *secret, VALUE_PAIR const **pvp,
724                            unsigned int attribute, uint8_t *ptr, size_t room);
725
726 /**
727  * @brief This is really a sub-function of vp2data_any().  It encodes
728  *      the *data* portion of the TLV, and assumes that the encapsulating
729  *      attribute has already been encoded.
730  */
731 static ssize_t vp2data_tlvs(RADIUS_PACKET const *packet,
732                             RADIUS_PACKET const *original,
733                             char const *secret, int nest,
734                             VALUE_PAIR const **pvp,
735                             uint8_t *start, size_t room)
736 {
737         ssize_t len;
738         size_t my_room;
739         uint8_t *ptr = start;
740         VALUE_PAIR const *vp = *pvp;
741         VALUE_PAIR const *svp = vp;
742
743         if (!svp) return 0;
744
745 #ifndef NDEBUG
746         if (nest > fr_attr_max_tlv) {
747                 fr_strerror_printf("vp2data_tlvs: attribute nesting overflow");
748                 return -1;
749         }
750 #endif
751
752         while (vp) {
753                 VERIFY_VP(vp);
754
755                 if (room <= 2) return ptr - start;
756
757                 ptr[0] = (vp->da->attr >> fr_attr_shift[nest]) & fr_attr_mask[nest];
758                 ptr[1] = 2;
759
760                 my_room = room;
761                 if (room > 255) my_room = 255;
762
763                 len = vp2data_any(packet, original, secret, nest,
764                                   &vp, ptr + 2, my_room - 2);
765                 if (len < 0) return len;
766                 if (len == 0) return ptr - start;
767                 /* len can NEVER be more than 253 */
768
769                 ptr[1] += len;
770
771 #ifndef NDEBUG
772                 if ((fr_debug_flag > 3) && fr_log_fp) {
773                         fprintf(fr_log_fp, "\t\t%02x %02x  ", ptr[0], ptr[1]);
774                         print_hex_data(ptr + 2, len, 3);
775                 }
776 #endif
777
778                 room -= ptr[1];
779                 ptr += ptr[1];
780                 *pvp = vp;
781
782                 if (!do_next_tlv(svp, vp, nest)) break;
783         }
784
785 #ifndef NDEBUG
786         if ((fr_debug_flag > 3) && fr_log_fp) {
787                 DICT_ATTR const *da;
788
789                 da = dict_attrbyvalue(svp->da->attr & ((1 << fr_attr_shift[nest ]) - 1), svp->da->vendor);
790                 if (da) fprintf(fr_log_fp, "\t%s = ...\n", da->name);
791         }
792 #endif
793
794         return ptr - start;
795 }
796
797 /**
798  * @brief Encodes the data portion of an attribute.
799  * @return -1 on error, or the length of the data portion.
800  */
801 static ssize_t vp2data_any(RADIUS_PACKET const *packet,
802                            RADIUS_PACKET const *original,
803                            char const *secret, int nest,
804                            VALUE_PAIR const **pvp,
805                            uint8_t *start, size_t room)
806 {
807         uint32_t lvalue;
808         ssize_t len;
809         uint8_t const *data;
810         uint8_t *ptr = start;
811         uint8_t array[4];
812         uint64_t lvalue64;
813         VALUE_PAIR const *vp = *pvp;
814
815         VERIFY_VP(vp);
816
817         /*
818          *      See if we need to encode a TLV.  The low portion of
819          *      the attribute has already been placed into the packer.
820          *      If there are still attribute bytes left, then go
821          *      encode them as TLVs.
822          *
823          *      If we cared about the stack, we could unroll the loop.
824          */
825         if (vp->da->flags.is_tlv && (nest < fr_attr_max_tlv) &&
826             ((vp->da->attr >> fr_attr_shift[nest + 1]) != 0)) {
827                 return vp2data_tlvs(packet, original, secret, nest + 1, pvp,
828                                     start, room);
829         }
830
831         debug_pair(vp);
832
833         /*
834          *      Set up the default sources for the data.
835          */
836         len = vp->length;
837
838         switch(vp->da->type) {
839         case PW_TYPE_STRING:
840         case PW_TYPE_OCTETS:
841         case PW_TYPE_TLV:
842                 data = vp->data.ptr;
843                 if (!data) {
844                         fr_strerror_printf("ERROR: Cannot encode NULL data");
845                         return -1;
846                 }
847                 break;
848
849         case PW_TYPE_IFID:
850         case PW_TYPE_IPADDR:
851         case PW_TYPE_IPV6ADDR:
852         case PW_TYPE_IPV6PREFIX:
853         case PW_TYPE_IPV4PREFIX:
854         case PW_TYPE_ABINARY:
855                 data = (uint8_t const *) &vp->data;
856                 break;
857
858         case PW_TYPE_BYTE:
859                 len = 1;        /* just in case */
860                 array[0] = vp->vp_integer & 0xff;
861                 data = array;
862                 break;
863
864         case PW_TYPE_SHORT:
865                 len = 2;        /* just in case */
866                 array[0] = (vp->vp_integer >> 8) & 0xff;
867                 array[1] = vp->vp_integer & 0xff;
868                 data = array;
869                 break;
870
871         case PW_TYPE_INTEGER:
872                 len = 4;        /* just in case */
873                 lvalue = htonl(vp->vp_integer);
874                 memcpy(array, &lvalue, sizeof(lvalue));
875                 data = array;
876                 break;
877
878         case PW_TYPE_INTEGER64:
879                 len = 8;        /* just in case */
880                 lvalue64 = htonll(vp->vp_integer64);
881                 data = (uint8_t *) &lvalue64;
882                 break;
883
884                 /*
885                  *  There are no tagged date attributes.
886                  */
887         case PW_TYPE_DATE:
888                 lvalue = htonl(vp->vp_date);
889                 data = (uint8_t const *) &lvalue;
890                 len = 4;        /* just in case */
891                 break;
892
893         case PW_TYPE_SIGNED:
894         {
895                 int32_t slvalue;
896
897                 len = 4;        /* just in case */
898                 slvalue = htonl(vp->vp_signed);
899                 memcpy(array, &slvalue, sizeof(slvalue));
900                 data = array;
901                 break;
902         }
903
904         default:                /* unknown type: ignore it */
905                 fr_strerror_printf("ERROR: Unknown attribute type %d",
906                                    vp->da->type);
907                 return -1;
908         }
909
910         /*
911          *      No data: skip it.
912          */
913         if (len == 0) {
914                 *pvp = vp->next;
915                 return 0;
916         }
917
918         /*
919          *      Bound the data to the calling size
920          */
921         if (len > (ssize_t) room) len = room;
922
923         /*
924          *      Encrypt the various password styles
925          *
926          *      Attributes with encrypted values MUST be less than
927          *      128 bytes long.
928          */
929         switch (vp->da->flags.encrypt) {
930         case FLAG_ENCRYPT_USER_PASSWORD:
931                 make_passwd(ptr, &len, data, len,
932                             secret, packet->vector);
933                 break;
934
935         case FLAG_ENCRYPT_TUNNEL_PASSWORD:
936                 lvalue = 0;
937                 if (vp->da->flags.has_tag) lvalue = 1;
938
939                 /*
940                  *      Check if there's enough room.  If there isn't,
941                  *      we discard the attribute.
942                  *
943                  *      This is ONLY a problem if we have multiple VSA's
944                  *      in one Vendor-Specific, though.
945                  */
946                 if (room < (18 + lvalue)) return 0;
947
948                 switch (packet->code) {
949                 case PW_AUTHENTICATION_ACK:
950                 case PW_AUTHENTICATION_REJECT:
951                 case PW_ACCESS_CHALLENGE:
952                 default:
953                         if (!original) {
954                                 fr_strerror_printf("ERROR: No request packet, cannot encrypt %s attribute in the vp.", vp->da->name);
955                                 return -1;
956                         }
957
958                         if (lvalue) ptr[0] = vp->tag;
959                         make_tunnel_passwd(ptr + lvalue, &len, data, len,
960                                            room - lvalue,
961                                            secret, original->vector);
962                         break;
963                 case PW_ACCOUNTING_REQUEST:
964                 case PW_DISCONNECT_REQUEST:
965                 case PW_COA_REQUEST:
966                         ptr[0] = vp->tag;
967                         make_tunnel_passwd(ptr + 1, &len, data, len - 1, room,
968                                            secret, packet->vector);
969                         break;
970                 }
971                 break;
972
973                 /*
974                  *      The code above ensures that this attribute
975                  *      always fits.
976                  */
977         case FLAG_ENCRYPT_ASCEND_SECRET:
978                 if (len != 16) return 0;
979                 make_secret(ptr, packet->vector, secret, data);
980                 len = AUTH_VECTOR_LEN;
981                 break;
982
983
984         default:
985                 if (vp->da->flags.has_tag && TAG_VALID(vp->tag)) {
986                         if (vp->da->type == PW_TYPE_STRING) {
987                                 if (len > ((ssize_t) (room - 1))) len = room - 1;
988                                 ptr[0] = vp->tag;
989                                 ptr++;
990                         } else if (vp->da->type == PW_TYPE_INTEGER) {
991                                 array[0] = vp->tag;
992                         } /* else it can't be any other type */
993                 }
994                 memcpy(ptr, data, len);
995                 break;
996         } /* switch over encryption flags */
997
998         *pvp = vp->next;
999         return len + (ptr - start);
1000 }
1001
1002 static ssize_t attr_shift(uint8_t const *start, uint8_t const *end,
1003                           uint8_t *ptr, int hdr_len, ssize_t len,
1004                           int flag_offset, int vsa_offset)
1005 {
1006         int check_len = len - ptr[1];
1007         int total = len + hdr_len;
1008
1009         /*
1010          *      Pass 1: Check if the addition of the headers
1011          *      overflows the available room.  If so, return
1012          *      what we were capable of encoding.
1013          */
1014
1015         while (check_len > (255 - hdr_len)) {
1016                 total += hdr_len;
1017                 check_len -= (255 - hdr_len);
1018         }
1019
1020         /*
1021          *      Note that this results in a number of attributes maybe
1022          *      being marked as "encoded", but which aren't in the
1023          *      packet.  Oh well.  The solution is to fix the
1024          *      "vp2data_any" function to take into account the header
1025          *      lengths.
1026          */
1027         if ((ptr + ptr[1] + total) > end) {
1028                 return (ptr + ptr[1]) - start;
1029         }
1030
1031         /*
1032          *      Pass 2: Now that we know there's enough room,
1033          *      re-arrange the data to form a set of valid
1034          *      RADIUS attributes.
1035          */
1036         while (1) {
1037                 int sublen = 255 - ptr[1];
1038
1039                 if (len <= sublen) {
1040                         break;
1041                 }
1042
1043                 len -= sublen;
1044                 memmove(ptr + 255 + hdr_len, ptr + 255, sublen);
1045                 memcpy(ptr + 255, ptr, hdr_len);
1046                 ptr[1] += sublen;
1047                 if (vsa_offset) ptr[vsa_offset] += sublen;
1048                 ptr[flag_offset] |= 0x80;
1049
1050                 ptr += 255;
1051                 ptr[1] = hdr_len;
1052                 if (vsa_offset) ptr[vsa_offset] = 3;
1053         }
1054
1055         ptr[1] += len;
1056         if (vsa_offset) ptr[vsa_offset] += len;
1057
1058         return (ptr + ptr[1]) - start;
1059 }
1060
1061
1062 /**
1063  * @brief Encode an "extended" attribute.
1064  */
1065 int rad_vp2extended(RADIUS_PACKET const *packet,
1066                     RADIUS_PACKET const *original,
1067                     char const *secret, VALUE_PAIR const **pvp,
1068                     uint8_t *ptr, size_t room)
1069 {
1070         int len;
1071         int hdr_len;
1072         uint8_t *start = ptr;
1073         VALUE_PAIR const *vp = *pvp;
1074
1075         VERIFY_VP(vp);
1076
1077         if (!vp->da->flags.extended) {
1078                 fr_strerror_printf("rad_vp2extended called for non-extended attribute");
1079                 return -1;
1080         }
1081
1082         /*
1083          *      The attribute number is encoded into the upper 8 bits
1084          *      of the vendor ID.
1085          */
1086         ptr[0] = (vp->da->vendor / FR_MAX_VENDOR) & 0xff;
1087
1088         if (!vp->da->flags.long_extended) {
1089                 if (room < 3) return 0;
1090
1091                 ptr[1] = 3;
1092                 ptr[2] = vp->da->attr & fr_attr_mask[0];
1093
1094         } else {
1095                 if (room < 4) return 0;
1096
1097                 ptr[1] = 4;
1098                 ptr[2] = vp->da->attr & fr_attr_mask[0];
1099                 ptr[3] = 0;
1100         }
1101
1102         /*
1103          *      Only "flagged" attributes can be longer than one
1104          *      attribute.
1105          */
1106         if (!vp->da->flags.long_extended && (room > 255)) {
1107                 room = 255;
1108         }
1109
1110         /*
1111          *      Handle EVS VSAs.
1112          */
1113         if (vp->da->flags.evs) {
1114                 uint8_t *evs = ptr + ptr[1];
1115
1116                 if (room < (size_t) (ptr[1] + 5)) return 0;
1117
1118                 ptr[2] = 26;
1119
1120                 evs[0] = 0;     /* always zero */
1121                 evs[1] = (vp->da->vendor >> 16) & 0xff;
1122                 evs[2] = (vp->da->vendor >> 8) & 0xff;
1123                 evs[3] = vp->da->vendor & 0xff;
1124                 evs[4] = vp->da->attr & fr_attr_mask[0];
1125
1126                 ptr[1] += 5;
1127         }
1128         hdr_len = ptr[1];
1129
1130         len = vp2data_any(packet, original, secret, 0,
1131                           pvp, ptr + ptr[1], room - hdr_len);
1132         if (len <= 0) return len;
1133
1134         /*
1135          *      There may be more than 252 octets of data encoded in
1136          *      the attribute.  If so, move the data up in the packet,
1137          *      and copy the existing header over.  Set the "M" flag ONLY
1138          *      after copying the rest of the data.
1139          */
1140         if (vp->da->flags.long_extended && (len > (255 - ptr[1]))) {
1141                 return attr_shift(start, start + room, ptr, 4, len, 3, 0);
1142         }
1143
1144         ptr[1] += len;
1145
1146 #ifndef NDEBUG
1147         if ((fr_debug_flag > 3) && fr_log_fp) {
1148                 int jump = 3;
1149
1150                 fprintf(fr_log_fp, "\t\t%02x %02x  ", ptr[0], ptr[1]);
1151                 if (!vp->da->flags.long_extended) {
1152                         fprintf(fr_log_fp, "%02x  ", ptr[2]);
1153
1154                 } else {
1155                         fprintf(fr_log_fp, "%02x %02x  ", ptr[2], ptr[3]);
1156                         jump = 4;
1157                 }
1158
1159                 if (vp->da->flags.evs) {
1160                         fprintf(fr_log_fp, "%02x%02x%02x%02x (%u)  %02x  ",
1161                                 ptr[jump], ptr[jump + 1],
1162                                 ptr[jump + 2], ptr[jump + 3],
1163                                 ((ptr[jump + 1] << 16) |
1164                                  (ptr[jump + 2] << 8) |
1165                                  ptr[jump + 3]),
1166                                 ptr[jump + 4]);
1167                         jump += 5;
1168                 }
1169
1170                 print_hex_data(ptr + jump, len, 3);
1171         }
1172 #endif
1173
1174         return (ptr + ptr[1]) - start;
1175 }
1176
1177
1178 /**
1179  * @brief Encode a WiMAX attribute.
1180  */
1181 int rad_vp2wimax(RADIUS_PACKET const *packet,
1182                  RADIUS_PACKET const *original,
1183                  char const *secret, VALUE_PAIR const **pvp,
1184                  uint8_t *ptr, size_t room)
1185 {
1186         int len;
1187         uint32_t lvalue;
1188         int hdr_len;
1189         uint8_t *start = ptr;
1190         VALUE_PAIR const *vp = *pvp;
1191
1192         VERIFY_VP(vp);
1193
1194         /*
1195          *      Double-check for WiMAX format.
1196          */
1197         if (!vp->da->flags.wimax) {
1198                 fr_strerror_printf("rad_vp2wimax called for non-WIMAX VSA");
1199                 return -1;
1200         }
1201
1202         /*
1203          *      Not enough room for:
1204          *              attr, len, vendor-id, vsa, vsalen, continuation
1205          */
1206         if (room < 9) return 0;
1207
1208         /*
1209          *      Build the Vendor-Specific header
1210          */
1211         ptr = start;
1212         ptr[0] = PW_VENDOR_SPECIFIC;
1213         ptr[1] = 9;
1214         lvalue = htonl(vp->da->vendor);
1215         memcpy(ptr + 2, &lvalue, 4);
1216         ptr[6] = (vp->da->attr & fr_attr_mask[1]);
1217         ptr[7] = 3;
1218         ptr[8] = 0;             /* continuation byte */
1219
1220         hdr_len = 9;
1221
1222         len = vp2data_any(packet, original, secret, 0, pvp, ptr + ptr[1],
1223                           room - hdr_len);
1224         if (len <= 0) return len;
1225
1226         /*
1227          *      There may be more than 252 octets of data encoded in
1228          *      the attribute.  If so, move the data up in the packet,
1229          *      and copy the existing header over.  Set the "C" flag
1230          *      ONLY after copying the rest of the data.
1231          */
1232         if (len > (255 - ptr[1])) {
1233                 return attr_shift(start, start + room, ptr, hdr_len, len, 8, 7);
1234         }
1235
1236         ptr[1] += len;
1237         ptr[7] += len;
1238
1239 #ifndef NDEBUG
1240         if ((fr_debug_flag > 3) && fr_log_fp) {
1241                 fprintf(fr_log_fp, "\t\t%02x %02x  %02x%02x%02x%02x (%u)  %02x %02x %02x   ",
1242                        ptr[0], ptr[1],
1243                        ptr[2], ptr[3], ptr[4], ptr[5],
1244                        (ptr[3] << 16) | (ptr[4] << 8) | ptr[5],
1245                        ptr[6], ptr[7], ptr[8]);
1246                 print_hex_data(ptr + 9, len, 3);
1247         }
1248 #endif
1249
1250         return (ptr + ptr[1]) - start;
1251 }
1252
1253 /**
1254  * @brief Encode an RFC format attribute, with the "concat" flag set.
1255  *
1256  *      If there isn't enough room in the packet, the data is
1257  *      truncated to fit.
1258  */
1259 static ssize_t vp2attr_concat(UNUSED RADIUS_PACKET const *packet,
1260                               UNUSED RADIUS_PACKET const *original,
1261                               UNUSED char const *secret, VALUE_PAIR const **pvp,
1262                               unsigned int attribute, uint8_t *start, size_t room)
1263 {
1264         uint8_t *ptr = start;
1265         uint8_t const *p;
1266         size_t len, left;
1267         VALUE_PAIR const *vp = *pvp;
1268
1269         VERIFY_VP(vp);
1270
1271         debug_pair(vp);
1272
1273         p = vp->vp_octets;
1274         len = vp->length;
1275
1276         while (len > 0) {
1277                 if (room <= 2) break;
1278
1279                 ptr[0] = attribute;
1280                 ptr[1] = 2;
1281
1282                 left = len;
1283
1284                 /* no more than 253 octets */
1285                 if (left > 253) left = 253;
1286
1287                 /* no more than "room" octets */
1288                 if (room < (left + 2)) left = room - 2;
1289
1290                 memcpy(ptr + 2, p, left);
1291
1292 #ifndef NDEBUG
1293                 if ((fr_debug_flag > 3) && fr_log_fp) {
1294                         fprintf(fr_log_fp, "\t\t%02x %02x  ", ptr[0], ptr[1]);
1295                         print_hex_data(ptr + 2, len, 3);
1296                 }
1297 #endif
1298                 ptr[1] += left;
1299                 ptr += ptr[1];
1300                 p += left;
1301                 room -= left;
1302                 len -= left;
1303         }
1304
1305         *pvp = vp->next;
1306         return ptr - start;
1307 }
1308
1309 /**
1310  * @brief Encode an RFC format TLV.
1311  *
1312  *      This could be a standard attribute,
1313  *      or a TLV data type.  If it's a standard attribute, then
1314  *      vp->da->attr == attribute.  Otherwise, attribute may be
1315  *      something else.
1316  */
1317 static ssize_t vp2attr_rfc(RADIUS_PACKET const *packet,
1318                            RADIUS_PACKET const *original,
1319                            char const *secret, VALUE_PAIR const **pvp,
1320                            unsigned int attribute, uint8_t *ptr, size_t room)
1321 {
1322         ssize_t len;
1323
1324         if (room <= 2) return 0;
1325
1326         ptr[0] = attribute & 0xff;
1327         ptr[1] = 2;
1328
1329         if (room > ((unsigned) 255 - ptr[1])) room = 255 - ptr[1];
1330
1331         len = vp2data_any(packet, original, secret, 0, pvp, ptr + ptr[1], room);
1332         if (len <= 0) return len;
1333
1334         ptr[1] += len;
1335
1336 #ifndef NDEBUG
1337         if ((fr_debug_flag > 3) && fr_log_fp) {
1338                 fprintf(fr_log_fp, "\t\t%02x %02x  ", ptr[0], ptr[1]);
1339                 print_hex_data(ptr + 2, len, 3);
1340         }
1341 #endif
1342
1343         return ptr[1];
1344 }
1345
1346
1347 /**
1348  * @brief Encode a VSA which is a TLV.  If it's in the RFC format, call
1349  *      vp2attr_rfc.  Otherwise, encode it here.
1350  */
1351 static ssize_t vp2attr_vsa(RADIUS_PACKET const *packet,
1352                            RADIUS_PACKET const *original,
1353                            char const *secret, VALUE_PAIR const **pvp,
1354                            unsigned int attribute, unsigned int vendor,
1355                            uint8_t *ptr, size_t room)
1356 {
1357         ssize_t len;
1358         DICT_VENDOR *dv;
1359         VALUE_PAIR const *vp = *pvp;
1360
1361         VERIFY_VP(vp);
1362         /*
1363          *      Unknown vendor: RFC format.
1364          *      Known vendor and RFC format: go do that.
1365          */
1366         dv = dict_vendorbyvalue(vendor);
1367         if (!dv ||
1368             (!vp->da->flags.is_tlv && (dv->type == 1) && (dv->length == 1))) {
1369                 return vp2attr_rfc(packet, original, secret, pvp,
1370                                    attribute, ptr, room);
1371         }
1372
1373         switch (dv->type) {
1374         default:
1375                 fr_strerror_printf("vp2attr_vsa: Internal sanity check failed,"
1376                                    " type %u", (unsigned) dv->type);
1377                 return -1;
1378
1379         case 4:
1380                 ptr[0] = 0;     /* attr must be 24-bit */
1381                 ptr[1] = (attribute >> 16) & 0xff;
1382                 ptr[2] = (attribute >> 8) & 0xff;
1383                 ptr[3] = attribute & 0xff;
1384                 break;
1385
1386         case 2:
1387                 ptr[0] = (attribute >> 8) & 0xff;
1388                 ptr[1] = attribute & 0xff;
1389                 break;
1390
1391         case 1:
1392                 ptr[0] = attribute & 0xff;
1393                 break;
1394         }
1395
1396         switch (dv->length) {
1397         default:
1398                 fr_strerror_printf("vp2attr_vsa: Internal sanity check failed,"
1399                                    " length %u", (unsigned) dv->length);
1400                 return -1;
1401
1402         case 0:
1403                 break;
1404
1405         case 2:
1406                 ptr[dv->type] = 0;
1407                 ptr[dv->type + 1] = dv->type + 2;
1408                 break;
1409
1410         case 1:
1411                 ptr[dv->type] = dv->type + 1;
1412                 break;
1413
1414         }
1415
1416         if (room > ((unsigned) 255 - (dv->type + dv->length))) {
1417                 room = 255 - (dv->type + dv->length);
1418         }
1419
1420         len = vp2data_any(packet, original, secret, 0, pvp,
1421                           ptr + dv->type + dv->length, room);
1422         if (len <= 0) return len;
1423
1424         if (dv->length) ptr[dv->type + dv->length - 1] += len;
1425
1426 #ifndef NDEBUG
1427         if ((fr_debug_flag > 3) && fr_log_fp) {
1428                 switch (dv->type) {
1429                 default:
1430                         break;
1431
1432                 case 4:
1433                         if ((fr_debug_flag > 3) && fr_log_fp)
1434                                 fprintf(fr_log_fp, "\t\t%02x%02x%02x%02x ",
1435                                         ptr[0], ptr[1], ptr[2], ptr[3]);
1436                         break;
1437
1438                 case 2:
1439                         if ((fr_debug_flag > 3) && fr_log_fp)
1440                                 fprintf(fr_log_fp, "\t\t%02x%02x ",
1441                                         ptr[0], ptr[1]);
1442                 break;
1443
1444                 case 1:
1445                         if ((fr_debug_flag > 3) && fr_log_fp)
1446                                 fprintf(fr_log_fp, "\t\t%02x ", ptr[0]);
1447                         break;
1448                 }
1449
1450                 switch (dv->length) {
1451                 default:
1452                         break;
1453
1454                 case 0:
1455                         fprintf(fr_log_fp, "  ");
1456                         break;
1457
1458                 case 1:
1459                         fprintf(fr_log_fp, "%02x  ",
1460                                 ptr[dv->type]);
1461                         break;
1462
1463                 case 2:
1464                         fprintf(fr_log_fp, "%02x%02x  ",
1465                                 ptr[dv->type], ptr[dv->type] + 1);
1466                         break;
1467                 }
1468
1469                 print_hex_data(ptr + dv->type + dv->length, len, 3);
1470         }
1471 #endif
1472
1473         return dv->type + dv->length + len;
1474 }
1475
1476
1477 /**
1478  * @brief Encode a Vendor-Specific attribute.
1479  */
1480 int rad_vp2vsa(RADIUS_PACKET const *packet, RADIUS_PACKET const *original,
1481                 char const *secret, VALUE_PAIR const **pvp, uint8_t *ptr,
1482                 size_t room)
1483 {
1484         ssize_t len;
1485         uint32_t lvalue;
1486         VALUE_PAIR const *vp = *pvp;
1487
1488         VERIFY_VP(vp);
1489         /*
1490          *      Double-check for WiMAX format.
1491          */
1492         if (vp->da->flags.wimax) {
1493                 return rad_vp2wimax(packet, original, secret, pvp,
1494                                     ptr, room);
1495         }
1496
1497         if (vp->da->vendor > FR_MAX_VENDOR) {
1498                 fr_strerror_printf("rad_vp2vsa: Invalid arguments");
1499                 return -1;
1500         }
1501
1502         /*
1503          *      Not enough room for:
1504          *              attr, len, vendor-id
1505          */
1506         if (room < 6) return 0;
1507
1508         /*
1509          *      Build the Vendor-Specific header
1510          */
1511         ptr[0] = PW_VENDOR_SPECIFIC;
1512         ptr[1] = 6;
1513         lvalue = htonl(vp->da->vendor);
1514         memcpy(ptr + 2, &lvalue, 4);
1515
1516         if (room > ((unsigned) 255 - ptr[1])) room = 255 - ptr[1];
1517
1518         len = vp2attr_vsa(packet, original, secret, pvp,
1519                           vp->da->attr, vp->da->vendor,
1520                           ptr + ptr[1], room);
1521         if (len < 0) return len;
1522
1523 #ifndef NDEBUG
1524         if ((fr_debug_flag > 3) && fr_log_fp) {
1525                 fprintf(fr_log_fp, "\t\t%02x %02x  %02x%02x%02x%02x (%u)  ",
1526                        ptr[0], ptr[1],
1527                        ptr[2], ptr[3], ptr[4], ptr[5],
1528                        (ptr[3] << 16) | (ptr[4] << 8) | ptr[5]);
1529                 print_hex_data(ptr + 6, len, 3);
1530         }
1531 #endif
1532
1533         ptr[1] += len;
1534
1535         return ptr[1];
1536 }
1537
1538
1539 /**
1540  * @brief Encode an RFC standard attribute 1..255
1541  */
1542 int rad_vp2rfc(RADIUS_PACKET const *packet,
1543                RADIUS_PACKET const *original,
1544                char const *secret, VALUE_PAIR const **pvp,
1545                uint8_t *ptr, size_t room)
1546 {
1547         VALUE_PAIR const *vp = *pvp;
1548
1549         VERIFY_VP(vp);
1550
1551         if (vp->da->vendor != 0) {
1552                 fr_strerror_printf("rad_vp2rfc called with VSA");
1553                 return -1;
1554         }
1555
1556         if ((vp->da->attr == 0) || (vp->da->attr > 255)) {
1557                 fr_strerror_printf("rad_vp2rfc called with non-standard attribute %u", vp->da->attr);
1558                 return -1;
1559         }
1560
1561         /*
1562          *      Only CUI is allowed to have zero length.
1563          *      Thank you, WiMAX!
1564          */
1565         if ((vp->length == 0) &&
1566             (vp->da->attr == PW_CHARGEABLE_USER_IDENTITY)) {
1567                 ptr[0] = PW_CHARGEABLE_USER_IDENTITY;
1568                 ptr[1] = 2;
1569
1570                 *pvp = vp->next;
1571                 return 2;
1572         }
1573
1574         /*
1575          *      Message-Authenticator is hard-coded.
1576          */
1577         if (vp->da->attr == PW_MESSAGE_AUTHENTICATOR) {
1578                 if (room < 18) return -1;
1579
1580                 debug_pair(vp);
1581                 ptr[0] = PW_MESSAGE_AUTHENTICATOR;
1582                 ptr[1] = 18;
1583                 memset(ptr + 2, 0, 16);
1584 #ifndef NDEBUG
1585                 if ((fr_debug_flag > 3) && fr_log_fp) {
1586                         fprintf(fr_log_fp, "\t\t50 12 ...\n");
1587                 }
1588 #endif
1589
1590                 *pvp = (*pvp)->next;
1591                 return 18;
1592         }
1593
1594         /*
1595          *      EAP-Message is special.
1596          */
1597         if (vp->da->flags.concat && (vp->length > 253)) {
1598                 return vp2attr_concat(packet, original, secret, pvp, vp->da->attr,
1599                                       ptr, room);
1600         }
1601
1602         return vp2attr_rfc(packet, original, secret, pvp, vp->da->attr,
1603                            ptr, room);
1604 }
1605
1606 static ssize_t rad_vp2rfctlv(RADIUS_PACKET const *packet,
1607                              RADIUS_PACKET const *original,
1608                              char const *secret, VALUE_PAIR const **pvp,
1609                              uint8_t *start, size_t room)
1610 {
1611         ssize_t len;
1612         VALUE_PAIR const *vp = *pvp;
1613
1614         VERIFY_VP(vp);
1615
1616         if (!vp->da->flags.is_tlv) {
1617                 fr_strerror_printf("rad_vp2rfctlv: attr is not a TLV");
1618                 return -1;
1619         }
1620
1621         if ((vp->da->vendor & (FR_MAX_VENDOR - 1)) != 0) {
1622                 fr_strerror_printf("rad_vp2rfctlv: attr is not an RFC TLV");
1623                 return -1;
1624         }
1625
1626         if (room < 5) return 0;
1627
1628         /*
1629          *      Encode the first level of TLVs
1630          */
1631         start[0] = (vp->da->vendor / FR_MAX_VENDOR) & 0xff;
1632         start[1] = 4;
1633         start[2] = vp->da->attr & fr_attr_mask[0];
1634         start[3] = 2;
1635
1636         len = vp2data_any(packet, original, secret, 0, pvp,
1637                           start + 4, room - 4);
1638         if (len <= 0) return len;
1639
1640         if (len > 253) {
1641                 return -1;
1642         }
1643
1644         start[1] += len;
1645         start[3] += len;
1646
1647         return start[1];
1648 }
1649
1650 /**
1651  * @brief Parse a data structure into a RADIUS attribute.
1652  */
1653 int rad_vp2attr(RADIUS_PACKET const *packet, RADIUS_PACKET const *original,
1654                 char const *secret, VALUE_PAIR const **pvp, uint8_t *start,
1655                 size_t room)
1656 {
1657         VALUE_PAIR const *vp;
1658
1659         if (!pvp || !*pvp || !start || (room <= 2)) return -1;
1660
1661         vp = *pvp;
1662
1663         VERIFY_VP(vp);
1664
1665         /*
1666          *      RFC format attributes take the fast path.
1667          */
1668         if (!vp->da->vendor) {
1669                 if (vp->da->attr > 255) return 0;
1670
1671                 return rad_vp2rfc(packet, original, secret, pvp,
1672                                   start, room);
1673         }
1674
1675         if (vp->da->flags.extended) {
1676                 return rad_vp2extended(packet, original, secret, pvp,
1677                                        start, room);
1678         }
1679
1680         /*
1681          *      The upper 8 bits of the vendor number are the standard
1682          *      space attribute which is a TLV.
1683          */
1684         if ((vp->da->vendor & (FR_MAX_VENDOR - 1)) == 0) {
1685                 return rad_vp2rfctlv(packet, original, secret, pvp,
1686                                      start, room);
1687         }
1688
1689         if (vp->da->flags.wimax) {
1690                 return rad_vp2wimax(packet, original, secret, pvp,
1691                                     start, room);
1692         }
1693
1694         return rad_vp2vsa(packet, original, secret, pvp,
1695                           start, room);
1696 }
1697
1698
1699 /**
1700  * @brief Encode a packet.
1701  */
1702 int rad_encode(RADIUS_PACKET *packet, RADIUS_PACKET const *original,
1703                char const *secret)
1704 {
1705         radius_packet_t         *hdr;
1706         uint8_t                 *ptr;
1707         uint16_t                total_length;
1708         int                     len;
1709         VALUE_PAIR const        *reply;
1710         char const              *what;
1711         char                    ip_src_buffer[INET6_ADDRSTRLEN];
1712         char                    ip_dst_buffer[INET6_ADDRSTRLEN];
1713
1714         /*
1715          *      A 4K packet, aligned on 64-bits.
1716          */
1717         uint64_t        data[MAX_PACKET_LEN / sizeof(uint64_t)];
1718
1719         if ((packet->code > 0) && (packet->code < FR_MAX_PACKET_CODE)) {
1720                 what = fr_packet_codes[packet->code];
1721         } else {
1722                 what = "Reply";
1723         }
1724
1725         DEBUG("Sending %s of id %d from %s port %u to %s port %u\n",
1726               what, packet->id,
1727               inet_ntop(packet->src_ipaddr.af,
1728                         &packet->src_ipaddr.ipaddr,
1729                         ip_src_buffer, sizeof(ip_src_buffer)),
1730               packet->src_port,
1731               inet_ntop(packet->dst_ipaddr.af,
1732                         &packet->dst_ipaddr.ipaddr,
1733                         ip_dst_buffer, sizeof(ip_dst_buffer)),
1734               packet->dst_port);
1735
1736         /*
1737          *      Double-check some things based on packet code.
1738          */
1739         switch (packet->code) {
1740         case PW_AUTHENTICATION_ACK:
1741         case PW_AUTHENTICATION_REJECT:
1742         case PW_ACCESS_CHALLENGE:
1743                 if (!original) {
1744                         fr_strerror_printf("ERROR: Cannot sign response packet without a request packet.");
1745                         return -1;
1746                 }
1747                 break;
1748
1749                 /*
1750                  *      These packet vectors start off as all zero.
1751                  */
1752         case PW_ACCOUNTING_REQUEST:
1753         case PW_DISCONNECT_REQUEST:
1754         case PW_COA_REQUEST:
1755                 memset(packet->vector, 0, sizeof(packet->vector));
1756                 break;
1757
1758         default:
1759                 break;
1760         }
1761
1762         /*
1763          *      Use memory on the stack, until we know how
1764          *      large the packet will be.
1765          */
1766         hdr = (radius_packet_t *) data;
1767
1768         /*
1769          *      Build standard header
1770          */
1771         hdr->code = packet->code;
1772         hdr->id = packet->id;
1773
1774         memcpy(hdr->vector, packet->vector, sizeof(hdr->vector));
1775
1776         total_length = AUTH_HDR_LEN;
1777
1778         /*
1779          *      Load up the configuration values for the user
1780          */
1781         ptr = hdr->data;
1782         packet->offset = 0;
1783
1784         /*
1785          *      FIXME: Loop twice over the reply list.  The first time,
1786          *      calculate the total length of data.  The second time,
1787          *      allocate the memory, and fill in the VP's.
1788          *
1789          *      Hmm... this may be slower than just doing a small
1790          *      memcpy.
1791          */
1792
1793         /*
1794          *      Loop over the reply attributes for the packet.
1795          */
1796         reply = packet->vps;
1797         while (reply) {
1798                 size_t last_len;
1799                 char const *last_name = NULL;
1800
1801                 VERIFY_VP(reply);
1802
1803                 /*
1804                  *      Ignore non-wire attributes, but allow extended
1805                  *      attributes.
1806                  */
1807                 if ((reply->da->vendor == 0) &&
1808                     ((reply->da->attr & 0xFFFF) >= 256) &&
1809                     !reply->da->flags.extended && !reply->da->flags.long_extended) {
1810 #ifndef NDEBUG
1811                         /*
1812                          *      Permit the admin to send BADLY formatted
1813                          *      attributes with a debug build.
1814                          */
1815                         if (reply->da->attr == PW_RAW_ATTRIBUTE) {
1816                                 memcpy(ptr, reply->vp_octets, reply->length);
1817                                 len = reply->length;
1818                                 reply = reply->next;
1819                                 goto next;
1820                         }
1821 #endif
1822                         reply = reply->next;
1823                         continue;
1824                 }
1825
1826                 /*
1827                  *      Set the Message-Authenticator to the correct
1828                  *      length and initial value.
1829                  */
1830                 if (reply->da->attr == PW_MESSAGE_AUTHENTICATOR) {
1831                         /*
1832                          *      Cache the offset to the
1833                          *      Message-Authenticator
1834                          */
1835                         packet->offset = total_length;
1836                         last_len = 16;
1837                 } else {
1838                         last_len = reply->length;
1839                 }
1840                 last_name = reply->da->name;
1841
1842                 len = rad_vp2attr(packet, original, secret, &reply, ptr,
1843                                   ((uint8_t *) data) + sizeof(data) - ptr);
1844                 if (len < 0) return -1;
1845
1846                 /*
1847                  *      Failed to encode the attribute, likely because
1848                  *      the packet is full.
1849                  */
1850                 if (len == 0) {
1851                         if (last_len != 0) {
1852                                 fr_strerror_printf("WARNING: Failed encoding attribute %s\n", last_name);
1853                                 break;
1854                         } else {
1855                                 fr_strerror_printf("WARNING: Skipping zero-length attribute %s\n", last_name);
1856                         }
1857                 }
1858
1859 #ifndef NDEBUG
1860         next:                   /* Used only for Raw-Attribute */
1861 #endif
1862                 ptr += len;
1863                 total_length += len;
1864         } /* done looping over all attributes */
1865
1866         /*
1867          *      Fill in the rest of the fields, and copy the data over
1868          *      from the local stack to the newly allocated memory.
1869          *
1870          *      Yes, all this 'memcpy' is slow, but it means
1871          *      that we only allocate the minimum amount of
1872          *      memory for a request.
1873          */
1874         packet->data_len = total_length;
1875         packet->data = talloc_array(packet, uint8_t, packet->data_len);
1876         if (!packet->data) {
1877                 fr_strerror_printf("Out of memory");
1878                 return -1;
1879         }
1880
1881         memcpy(packet->data, hdr, packet->data_len);
1882         hdr = (radius_packet_t *) packet->data;
1883
1884         total_length = htons(total_length);
1885         memcpy(hdr->length, &total_length, sizeof(total_length));
1886
1887         return 0;
1888 }
1889
1890
1891 /**
1892  * @brief Sign a previously encoded packet.
1893  */
1894 int rad_sign(RADIUS_PACKET *packet, RADIUS_PACKET const *original,
1895              char const *secret)
1896 {
1897         radius_packet_t *hdr = (radius_packet_t *)packet->data;
1898
1899         /*
1900          *      It wasn't assigned an Id, this is bad!
1901          */
1902         if (packet->id < 0) {
1903                 fr_strerror_printf("ERROR: RADIUS packets must be assigned an Id.");
1904                 return -1;
1905         }
1906
1907         if (!packet->data || (packet->data_len < AUTH_HDR_LEN) ||
1908             (packet->offset < 0)) {
1909                 fr_strerror_printf("ERROR: You must call rad_encode() before rad_sign()");
1910                 return -1;
1911         }
1912
1913         /*
1914          *      If there's a Message-Authenticator, update it
1915          *      now, BEFORE updating the authentication vector.
1916          */
1917         if (packet->offset > 0) {
1918                 uint8_t calc_auth_vector[AUTH_VECTOR_LEN];
1919
1920                 switch (packet->code) {
1921                 case PW_ACCOUNTING_RESPONSE:
1922                         if (original && original->code == PW_STATUS_SERVER) {
1923                                 goto do_ack;
1924                         }
1925
1926                 case PW_ACCOUNTING_REQUEST:
1927                 case PW_DISCONNECT_REQUEST:
1928                 case PW_DISCONNECT_ACK:
1929                 case PW_DISCONNECT_NAK:
1930                 case PW_COA_REQUEST:
1931                 case PW_COA_ACK:
1932                 case PW_COA_NAK:
1933                         memset(hdr->vector, 0, AUTH_VECTOR_LEN);
1934                         break;
1935
1936                 do_ack:
1937                 case PW_AUTHENTICATION_ACK:
1938                 case PW_AUTHENTICATION_REJECT:
1939                 case PW_ACCESS_CHALLENGE:
1940                         if (!original) {
1941                                 fr_strerror_printf("ERROR: Cannot sign response packet without a request packet.");
1942                                 return -1;
1943                         }
1944                         memcpy(hdr->vector, original->vector,
1945                                AUTH_VECTOR_LEN);
1946                         break;
1947
1948                 default:        /* others have vector already set to zero */
1949                         break;
1950
1951                 }
1952
1953                 /*
1954                  *      Set the authentication vector to zero,
1955                  *      calculate the HMAC, and put it
1956                  *      into the Message-Authenticator
1957                  *      attribute.
1958                  */
1959                 fr_hmac_md5(packet->data, packet->data_len,
1960                             (uint8_t const *) secret, strlen(secret),
1961                             calc_auth_vector);
1962                 memcpy(packet->data + packet->offset + 2,
1963                        calc_auth_vector, AUTH_VECTOR_LEN);
1964
1965                 /*
1966                  *      Copy the original request vector back
1967                  *      to the raw packet.
1968                  */
1969                 memcpy(hdr->vector, packet->vector, AUTH_VECTOR_LEN);
1970         }
1971
1972         /*
1973          *      Switch over the packet code, deciding how to
1974          *      sign the packet.
1975          */
1976         switch (packet->code) {
1977                 /*
1978                  *      Request packets are not signed, bur
1979                  *      have a random authentication vector.
1980                  */
1981         case PW_AUTHENTICATION_REQUEST:
1982         case PW_STATUS_SERVER:
1983                 break;
1984
1985                 /*
1986                  *      Reply packets are signed with the
1987                  *      authentication vector of the request.
1988                  */
1989         default:
1990                 {
1991                         uint8_t digest[16];
1992
1993                         FR_MD5_CTX      context;
1994                         fr_MD5Init(&context);
1995                         fr_MD5Update(&context, packet->data, packet->data_len);
1996                         fr_MD5Update(&context, (uint8_t const *) secret,
1997                                      strlen(secret));
1998                         fr_MD5Final(digest, &context);
1999
2000                         memcpy(hdr->vector, digest, AUTH_VECTOR_LEN);
2001                         memcpy(packet->vector, digest, AUTH_VECTOR_LEN);
2002                         break;
2003                 }
2004         }/* switch over packet codes */
2005
2006         return 0;
2007 }
2008
2009 /**
2010  * @brief Reply to the request.  Also attach
2011  *      reply attribute value pairs and any user message provided.
2012  */
2013 int rad_send(RADIUS_PACKET *packet, RADIUS_PACKET const *original,
2014              char const *secret)
2015 {
2016         VALUE_PAIR              *reply;
2017         char const              *what;
2018         char                    ip_src_buffer[128];
2019         char                    ip_dst_buffer[128];
2020
2021         /*
2022          *      Maybe it's a fake packet.  Don't send it.
2023          */
2024         if (!packet || (packet->sockfd < 0)) {
2025                 return 0;
2026         }
2027
2028         if ((packet->code > 0) && (packet->code < FR_MAX_PACKET_CODE)) {
2029                 what = fr_packet_codes[packet->code];
2030         } else {
2031                 what = "Reply";
2032         }
2033
2034         /*
2035          *  First time through, allocate room for the packet
2036          */
2037         if (!packet->data) {
2038                 /*
2039                  *      Encode the packet.
2040                  */
2041                 if (rad_encode(packet, original, secret) < 0) {
2042                         return -1;
2043                 }
2044
2045                 /*
2046                  *      Re-sign it, including updating the
2047                  *      Message-Authenticator.
2048                  */
2049                 if (rad_sign(packet, original, secret) < 0) {
2050                         return -1;
2051                 }
2052
2053                 /*
2054                  *      If packet->data points to data, then we print out
2055                  *      the VP list again only for debugging.
2056                  */
2057         } else if (fr_debug_flag) {
2058                 DEBUG("Sending %s of id %d from %s port %u to %s port %u\n", what,
2059                       packet->id,
2060                       inet_ntop(packet->src_ipaddr.af, &packet->src_ipaddr.ipaddr,
2061                                 ip_src_buffer, sizeof(ip_src_buffer)),
2062                       packet->src_port,
2063                       inet_ntop(packet->dst_ipaddr.af, &packet->dst_ipaddr.ipaddr,
2064                                 ip_dst_buffer, sizeof(ip_dst_buffer)),
2065                       packet->dst_port);
2066
2067                 for (reply = packet->vps; reply; reply = reply->next) {
2068                         if ((reply->da->vendor == 0) &&
2069                             ((reply->da->attr & 0xFFFF) > 0xff)) continue;
2070                         debug_pair(reply);
2071                 }
2072         }
2073
2074 #ifndef NDEBUG
2075         if ((fr_debug_flag > 3) && fr_log_fp) rad_print_hex(packet);
2076 #endif
2077
2078         /*
2079          *      And send it on it's way.
2080          */
2081         return rad_sendto(packet->sockfd, packet->data, packet->data_len, 0,
2082                           &packet->src_ipaddr, packet->src_port,
2083                           &packet->dst_ipaddr, packet->dst_port);
2084 }
2085
2086 /**
2087  * @brief Do a comparison of two authentication digests by comparing
2088  *      the FULL digest.
2089  *
2090  *      Otherwise, the server can be subject to
2091  *      timing attacks that allow attackers find a valid message
2092  *      authenticator.
2093  *
2094  *      http://www.cs.rice.edu/~dwallach/pub/crosby-timing2009.pdf
2095  */
2096 int rad_digest_cmp(uint8_t const *a, uint8_t const *b, size_t length)
2097 {
2098         int result = 0;
2099         size_t i;
2100
2101         for (i = 0; i < length; i++) {
2102                 result |= a[i] ^ b[i];
2103         }
2104
2105         return result;          /* 0 is OK, !0 is !OK, just like memcmp */
2106 }
2107
2108
2109 /**
2110  * @brief Validates the requesting client NAS.  Calculates the
2111  *      Request Authenticator based on the clients private key.
2112  */
2113 static int calc_acctdigest(RADIUS_PACKET *packet, char const *secret)
2114 {
2115         uint8_t         digest[AUTH_VECTOR_LEN];
2116         FR_MD5_CTX              context;
2117
2118         /*
2119          *      Zero out the auth_vector in the received packet.
2120          *      Then append the shared secret to the received packet,
2121          *      and calculate the MD5 sum. This must be the same
2122          *      as the original MD5 sum (packet->vector).
2123          */
2124         memset(packet->data + 4, 0, AUTH_VECTOR_LEN);
2125
2126         /*
2127          *  MD5(packet + secret);
2128          */
2129         fr_MD5Init(&context);
2130         fr_MD5Update(&context, packet->data, packet->data_len);
2131         fr_MD5Update(&context, (uint8_t const *) secret, strlen(secret));
2132         fr_MD5Final(digest, &context);
2133
2134         /*
2135          *      Return 0 if OK, 2 if not OK.
2136          */
2137         if (rad_digest_cmp(digest, packet->vector, AUTH_VECTOR_LEN) != 0) return 2;
2138         return 0;
2139 }
2140
2141
2142 /**
2143  * @brief Validates the requesting client NAS.  Calculates the
2144  *      Response Authenticator based on the clients private key.
2145  */
2146 static int calc_replydigest(RADIUS_PACKET *packet, RADIUS_PACKET *original,
2147                             char const *secret)
2148 {
2149         uint8_t         calc_digest[AUTH_VECTOR_LEN];
2150         FR_MD5_CTX              context;
2151
2152         /*
2153          *      Very bad!
2154          */
2155         if (original == NULL) {
2156                 return 3;
2157         }
2158
2159         /*
2160          *  Copy the original vector in place.
2161          */
2162         memcpy(packet->data + 4, original->vector, AUTH_VECTOR_LEN);
2163
2164         /*
2165          *  MD5(packet + secret);
2166          */
2167         fr_MD5Init(&context);
2168         fr_MD5Update(&context, packet->data, packet->data_len);
2169         fr_MD5Update(&context, (uint8_t const *) secret, strlen(secret));
2170         fr_MD5Final(calc_digest, &context);
2171
2172         /*
2173          *  Copy the packet's vector back to the packet.
2174          */
2175         memcpy(packet->data + 4, packet->vector, AUTH_VECTOR_LEN);
2176
2177         /*
2178          *      Return 0 if OK, 2 if not OK.
2179          */
2180         if (rad_digest_cmp(packet->vector, calc_digest, AUTH_VECTOR_LEN) != 0) return 2;
2181         return 0;
2182 }
2183
2184
2185 /**
2186  * @brief Check if a set of RADIUS formatted TLVs are OK.
2187  */
2188 int rad_tlv_ok(uint8_t const *data, size_t length,
2189                size_t dv_type, size_t dv_length)
2190 {
2191         uint8_t const *end = data + length;
2192
2193         if ((dv_length > 2) || (dv_type == 0) || (dv_type > 4)) {
2194                 fr_strerror_printf("rad_tlv_ok: Invalid arguments");
2195                 return -1;
2196         }
2197
2198         while (data < end) {
2199                 size_t attrlen;
2200
2201                 if ((data + dv_type + dv_length) > end) {
2202                         fr_strerror_printf("Attribute header overflow");
2203                         return -1;
2204                 }
2205
2206                 switch (dv_type) {
2207                 case 4:
2208                         if ((data[0] == 0) && (data[1] == 0) &&
2209                             (data[2] == 0) && (data[3] == 0)) {
2210                         zero:
2211                                 fr_strerror_printf("Invalid attribute 0");
2212                                 return -1;
2213                         }
2214
2215                         if (data[0] != 0) {
2216                                 fr_strerror_printf("Invalid attribute > 2^24");
2217                                 return -1;
2218                         }
2219                         break;
2220
2221                 case 2:
2222                         if ((data[0] == 0) && (data[1] == 0)) goto zero;
2223                         break;
2224
2225                 case 1:
2226                         if (data[0] == 0) goto zero;
2227                         break;
2228
2229                 default:
2230                         fr_strerror_printf("Internal sanity check failed");
2231                         return -1;
2232                 }
2233
2234                 switch (dv_length) {
2235                 case 0:
2236                         return 0;
2237
2238                 case 2:
2239                         if (data[dv_type + 1] != 0) {
2240                                 fr_strerror_printf("Attribute is longer than 256 octets");
2241                                 return -1;
2242                         }
2243                         /* FALL-THROUGH */
2244                 case 1:
2245                         attrlen = data[dv_type + dv_length - 1];
2246                         break;
2247
2248
2249                 default:
2250                         fr_strerror_printf("Internal sanity check failed");
2251                         return -1;
2252                 }
2253
2254                 if (attrlen < (dv_type + dv_length)) {
2255                         fr_strerror_printf("Attribute header has invalid length");
2256                         return -1;
2257                 }
2258
2259                 if (attrlen > length) {
2260                         fr_strerror_printf("Attribute overflows container");
2261                         return -1;
2262                 }
2263
2264                 data += attrlen;
2265                 length -= attrlen;
2266         }
2267
2268         return 0;
2269 }
2270
2271
2272 /**
2273  * @brief See if the data pointed to by PTR is a valid RADIUS packet.
2274  *
2275  *      packet is not 'const * const' because we may update data_len,
2276  *      if there's more data in the UDP packet than in the RADIUS packet.
2277  */
2278 int rad_packet_ok(RADIUS_PACKET *packet, int flags)
2279 {
2280         uint8_t                 *attr;
2281         size_t                  totallen;
2282         int                     count;
2283         radius_packet_t         *hdr;
2284         char                    host_ipaddr[128];
2285         int                     require_ma = 0;
2286         int                     seen_ma = 0;
2287         int                     num_attributes;
2288
2289         /*
2290          *      Check for packets smaller than the packet header.
2291          *
2292          *      RFC 2865, Section 3., subsection 'length' says:
2293          *
2294          *      "The minimum length is 20 ..."
2295          */
2296         if (packet->data_len < AUTH_HDR_LEN) {
2297                 fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: too short (received %zu < minimum %d)",
2298                            inet_ntop(packet->src_ipaddr.af,
2299                                      &packet->src_ipaddr.ipaddr,
2300                                      host_ipaddr, sizeof(host_ipaddr)),
2301                                      packet->data_len, AUTH_HDR_LEN);
2302                 return 0;
2303         }
2304
2305
2306         /*
2307          *      Check for packets with mismatched size.
2308          *      i.e. We've received 128 bytes, and the packet header
2309          *      says it's 256 bytes long.
2310          */
2311         totallen = (packet->data[2] << 8) | packet->data[3];
2312         hdr = (radius_packet_t *)packet->data;
2313
2314         /*
2315          *      Code of 0 is not understood.
2316          *      Code of 16 or greate is not understood.
2317          */
2318         if ((hdr->code == 0) ||
2319             (hdr->code >= FR_MAX_PACKET_CODE)) {
2320                 fr_strerror_printf("WARNING: Bad RADIUS packet from host %s: unknown packet code %d",
2321                            inet_ntop(packet->src_ipaddr.af,
2322                                      &packet->src_ipaddr.ipaddr,
2323                                      host_ipaddr, sizeof(host_ipaddr)),
2324                            hdr->code);
2325                 return 0;
2326         }
2327
2328         /*
2329          *      Message-Authenticator is required in Status-Server
2330          *      packets, otherwise they can be trivially forged.
2331          */
2332         if (hdr->code == PW_STATUS_SERVER) require_ma = 1;
2333
2334         /*
2335          *      It's also required if the caller asks for it.
2336          */
2337         if (flags) require_ma = 1;
2338
2339         /*
2340          *      Repeat the length checks.  This time, instead of
2341          *      looking at the data we received, look at the value
2342          *      of the 'length' field inside of the packet.
2343          *
2344          *      Check for packets smaller than the packet header.
2345          *
2346          *      RFC 2865, Section 3., subsection 'length' says:
2347          *
2348          *      "The minimum length is 20 ..."
2349          */
2350         if (totallen < AUTH_HDR_LEN) {
2351                 fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: too short (length %zu < minimum %d)",
2352                            inet_ntop(packet->src_ipaddr.af,
2353                                      &packet->src_ipaddr.ipaddr,
2354                                      host_ipaddr, sizeof(host_ipaddr)),
2355                                      totallen, AUTH_HDR_LEN);
2356                 return 0;
2357         }
2358
2359         /*
2360          *      And again, for the value of the 'length' field.
2361          *
2362          *      RFC 2865, Section 3., subsection 'length' says:
2363          *
2364          *      " ... and maximum length is 4096."
2365          *
2366          *      HOWEVER.  This requirement is for the network layer.
2367          *      If the code gets here, we assume that a well-formed
2368          *      packet is an OK packet.
2369          *
2370          *      We allow both the UDP data length, and the RADIUS
2371          *      "length" field to contain up to 64K of data.
2372          */
2373
2374         /*
2375          *      RFC 2865, Section 3., subsection 'length' says:
2376          *
2377          *      "If the packet is shorter than the Length field
2378          *      indicates, it MUST be silently discarded."
2379          *
2380          *      i.e. No response to the NAS.
2381          */
2382         if (packet->data_len < totallen) {
2383                 fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: received %zu octets, packet length says %zu",
2384                            inet_ntop(packet->src_ipaddr.af,
2385                                      &packet->src_ipaddr.ipaddr,
2386                                      host_ipaddr, sizeof(host_ipaddr)),
2387                                      packet->data_len, totallen);
2388                 return 0;
2389         }
2390
2391         /*
2392          *      RFC 2865, Section 3., subsection 'length' says:
2393          *
2394          *      "Octets outside the range of the Length field MUST be
2395          *      treated as padding and ignored on reception."
2396          */
2397         if (packet->data_len > totallen) {
2398                 /*
2399                  *      We're shortening the packet below, but just
2400                  *      to be paranoid, zero out the extra data.
2401                  */
2402                 memset(packet->data + totallen, 0, packet->data_len - totallen);
2403                 packet->data_len = totallen;
2404         }
2405
2406         /*
2407          *      Walk through the packet's attributes, ensuring that
2408          *      they add up EXACTLY to the size of the packet.
2409          *
2410          *      If they don't, then the attributes either under-fill
2411          *      or over-fill the packet.  Any parsing of the packet
2412          *      is impossible, and will result in unknown side effects.
2413          *
2414          *      This would ONLY happen with buggy RADIUS implementations,
2415          *      or with an intentional attack.  Either way, we do NOT want
2416          *      to be vulnerable to this problem.
2417          */
2418         attr = hdr->data;
2419         count = totallen - AUTH_HDR_LEN;
2420         num_attributes = 0;
2421
2422         while (count > 0) {
2423                 /*
2424                  *      We need at least 2 bytes to check the
2425                  *      attribute header.
2426                  */
2427                 if (count < 2) {
2428                         fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: attribute header overflows the packet",
2429                                    inet_ntop(packet->src_ipaddr.af,
2430                                              &packet->src_ipaddr.ipaddr,
2431                                              host_ipaddr, sizeof(host_ipaddr)));
2432                         return 0;
2433                 }
2434
2435                 /*
2436                  *      Attribute number zero is NOT defined.
2437                  */
2438                 if (attr[0] == 0) {
2439                         fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: Invalid attribute 0",
2440                                    inet_ntop(packet->src_ipaddr.af,
2441                                              &packet->src_ipaddr.ipaddr,
2442                                              host_ipaddr, sizeof(host_ipaddr)));
2443                         return 0;
2444                 }
2445
2446                 /*
2447                  *      Attributes are at LEAST as long as the ID & length
2448                  *      fields.  Anything shorter is an invalid attribute.
2449                  */
2450                 if (attr[1] < 2) {
2451                         fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: attribute %u too short",
2452                                    inet_ntop(packet->src_ipaddr.af,
2453                                              &packet->src_ipaddr.ipaddr,
2454                                              host_ipaddr, sizeof(host_ipaddr)),
2455                                    attr[0]);
2456                         return 0;
2457                 }
2458
2459                 /*
2460                  *      If there are fewer bytes in the packet than in the
2461                  *      attribute, it's a bad packet.
2462                  */
2463                 if (count < attr[1]) {
2464                         fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: attribute %u data overflows the packet",
2465                                    inet_ntop(packet->src_ipaddr.af,
2466                                              &packet->src_ipaddr.ipaddr,
2467                                              host_ipaddr, sizeof(host_ipaddr)),
2468                                            attr[0]);
2469                         return 0;
2470                 }
2471
2472                 /*
2473                  *      Sanity check the attributes for length.
2474                  */
2475                 switch (attr[0]) {
2476                 default:        /* don't do anything by default */
2477                         break;
2478
2479                         /*
2480                          *      If there's an EAP-Message, we require
2481                          *      a Message-Authenticator.
2482                          */
2483                 case PW_EAP_MESSAGE:
2484                         require_ma = 1;
2485                         break;
2486
2487                 case PW_MESSAGE_AUTHENTICATOR:
2488                         if (attr[1] != 2 + AUTH_VECTOR_LEN) {
2489                                 fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: Message-Authenticator has invalid length %d",
2490                                            inet_ntop(packet->src_ipaddr.af,
2491                                                      &packet->src_ipaddr.ipaddr,
2492                                                      host_ipaddr, sizeof(host_ipaddr)),
2493                                            attr[1] - 2);
2494                                 return 0;
2495                         }
2496                         seen_ma = 1;
2497                         break;
2498                 }
2499
2500                 /*
2501                  *      FIXME: Look up the base 255 attributes in the
2502                  *      dictionary, and switch over their type.  For
2503                  *      integer/date/ip, the attribute length SHOULD
2504                  *      be 6.
2505                  */
2506                 count -= attr[1];       /* grab the attribute length */
2507                 attr += attr[1];
2508                 num_attributes++;       /* seen one more attribute */
2509         }
2510
2511         /*
2512          *      If the attributes add up to a packet, it's allowed.
2513          *
2514          *      If not, we complain, and throw the packet away.
2515          */
2516         if (count != 0) {
2517                 fr_strerror_printf("WARNING: Malformed RADIUS packet from host %s: packet attributes do NOT exactly fill the packet",
2518                            inet_ntop(packet->src_ipaddr.af,
2519                                      &packet->src_ipaddr.ipaddr,
2520                                      host_ipaddr, sizeof(host_ipaddr)));
2521                 return 0;
2522         }
2523
2524         /*
2525          *      If we're configured to look for a maximum number of
2526          *      attributes, and we've seen more than that maximum,
2527          *      then throw the packet away, as a possible DoS.
2528          */
2529         if ((fr_max_attributes > 0) &&
2530             (num_attributes > fr_max_attributes)) {
2531                 fr_strerror_printf("WARNING: Possible DoS attack from host %s: Too many attributes in request (received %d, max %d are allowed).",
2532                            inet_ntop(packet->src_ipaddr.af,
2533                                      &packet->src_ipaddr.ipaddr,
2534                                      host_ipaddr, sizeof(host_ipaddr)),
2535                            num_attributes, fr_max_attributes);
2536                 return 0;
2537         }
2538
2539         /*
2540          *      http://www.freeradius.org/rfc/rfc2869.html#EAP-Message
2541          *
2542          *      A packet with an EAP-Message attribute MUST also have
2543          *      a Message-Authenticator attribute.
2544          *
2545          *      A Message-Authenticator all by itself is OK, though.
2546          *
2547          *      Similarly, Status-Server packets MUST contain
2548          *      Message-Authenticator attributes.
2549          */
2550         if (require_ma && ! seen_ma) {
2551                 fr_strerror_printf("WARNING: Insecure packet from host %s:  Packet does not contain required Message-Authenticator attribute",
2552                            inet_ntop(packet->src_ipaddr.af,
2553                                      &packet->src_ipaddr.ipaddr,
2554                                      host_ipaddr, sizeof(host_ipaddr)));
2555                 return 0;
2556         }
2557
2558         /*
2559          *      Fill RADIUS header fields
2560          */
2561         packet->code = hdr->code;
2562         packet->id = hdr->id;
2563         memcpy(packet->vector, hdr->vector, AUTH_VECTOR_LEN);
2564
2565         return 1;
2566 }
2567
2568
2569 /**
2570  * @brief Receive UDP client requests, and fill in
2571  *      the basics of a RADIUS_PACKET structure.
2572  */
2573 RADIUS_PACKET *rad_recv(int fd, int flags)
2574 {
2575         int sock_flags = 0;
2576         ssize_t data_len;
2577         RADIUS_PACKET           *packet;
2578
2579         /*
2580          *      Allocate the new request data structure
2581          */
2582         packet = rad_alloc(NULL, 0);
2583         if (!packet) {
2584                 fr_strerror_printf("out of memory");
2585                 return NULL;
2586         }
2587
2588         if (flags & 0x02) {
2589                 sock_flags = MSG_PEEK;
2590                 flags &= ~0x02;
2591         }
2592
2593         data_len = rad_recvfrom(fd, packet, sock_flags,
2594                                 &packet->src_ipaddr, &packet->src_port,
2595                                 &packet->dst_ipaddr, &packet->dst_port);
2596
2597         /*
2598          *      Check for socket errors.
2599          */
2600         if (data_len < 0) {
2601                 fr_strerror_printf("Error receiving packet: %s", strerror(errno));
2602                 /* packet->data is NULL */
2603                 rad_free(&packet);
2604                 return NULL;
2605         }
2606         packet->data_len = data_len; /* unsigned vs signed */
2607
2608         /*
2609          *      If the packet is too big, then rad_recvfrom did NOT
2610          *      allocate memory.  Instead, it just discarded the
2611          *      packet.
2612          */
2613         if (packet->data_len > MAX_PACKET_LEN) {
2614                 fr_strerror_printf("Discarding packet: Larger than RFC limitation of 4096 bytes.");
2615                 /* packet->data is NULL */
2616                 rad_free(&packet);
2617                 return NULL;
2618         }
2619
2620         /*
2621          *      Read no data.  Continue.
2622          *      This check is AFTER the MAX_PACKET_LEN check above, because
2623          *      if the packet is larger than MAX_PACKET_LEN, we also have
2624          *      packet->data == NULL
2625          */
2626         if ((packet->data_len == 0) || !packet->data) {
2627                 fr_strerror_printf("Empty packet: Socket is not ready.");
2628                 rad_free(&packet);
2629                 return NULL;
2630         }
2631
2632         /*
2633          *      See if it's a well-formed RADIUS packet.
2634          */
2635         if (!rad_packet_ok(packet, flags)) {
2636                 rad_free(&packet);
2637                 return NULL;
2638         }
2639
2640         /*
2641          *      Remember which socket we read the packet from.
2642          */
2643         packet->sockfd = fd;
2644
2645         /*
2646          *      FIXME: Do even more filtering by only permitting
2647          *      certain IP's.  The problem is that we don't know
2648          *      how to do this properly for all possible clients...
2649          */
2650
2651         /*
2652          *      Explicitely set the VP list to empty.
2653          */
2654         packet->vps = NULL;
2655
2656         if (fr_debug_flag) {
2657                 char host_ipaddr[128];
2658
2659                 if ((packet->code > 0) && (packet->code < FR_MAX_PACKET_CODE)) {
2660                         DEBUG("rad_recv: %s packet from host %s port %d",
2661                               fr_packet_codes[packet->code],
2662                               inet_ntop(packet->src_ipaddr.af,
2663                                         &packet->src_ipaddr.ipaddr,
2664                                         host_ipaddr, sizeof(host_ipaddr)),
2665                               packet->src_port);
2666                 } else {
2667                         DEBUG("rad_recv: Packet from host %s port %d code=%d",
2668                               inet_ntop(packet->src_ipaddr.af,
2669                                         &packet->src_ipaddr.ipaddr,
2670                                         host_ipaddr, sizeof(host_ipaddr)),
2671                               packet->src_port,
2672                               packet->code);
2673                 }
2674                 DEBUG(", id=%d, length=%d\n",
2675                       packet->id, (int) packet->data_len);
2676         }
2677
2678 #ifndef NDEBUG
2679         if ((fr_debug_flag > 3) && fr_log_fp) rad_print_hex(packet);
2680 #endif
2681
2682         return packet;
2683 }
2684
2685
2686 /**
2687  * @brief Verify the Request/Response Authenticator
2688  *      (and Message-Authenticator if present) of a packet.
2689  */
2690 int rad_verify(RADIUS_PACKET *packet, RADIUS_PACKET *original,
2691                char const *secret)
2692 {
2693         uint8_t                 *ptr;
2694         int                     length;
2695         int                     attrlen;
2696
2697         if (!packet || !packet->data) return -1;
2698
2699         /*
2700          *      Before we allocate memory for the attributes, do more
2701          *      sanity checking.
2702          */
2703         ptr = packet->data + AUTH_HDR_LEN;
2704         length = packet->data_len - AUTH_HDR_LEN;
2705         while (length > 0) {
2706                 uint8_t msg_auth_vector[AUTH_VECTOR_LEN];
2707                 uint8_t calc_auth_vector[AUTH_VECTOR_LEN];
2708
2709                 attrlen = ptr[1];
2710
2711                 switch (ptr[0]) {
2712                 default:        /* don't do anything. */
2713                         break;
2714
2715                         /*
2716                          *      Note that more than one Message-Authenticator
2717                          *      attribute is invalid.
2718                          */
2719                 case PW_MESSAGE_AUTHENTICATOR:
2720                         memcpy(msg_auth_vector, &ptr[2], sizeof(msg_auth_vector));
2721                         memset(&ptr[2], 0, AUTH_VECTOR_LEN);
2722
2723                         switch (packet->code) {
2724                         default:
2725                                 break;
2726
2727                         case PW_ACCOUNTING_RESPONSE:
2728                                 if (original &&
2729                                     (original->code == PW_STATUS_SERVER)) {
2730                                         goto do_ack;
2731                                 }
2732
2733                         case PW_ACCOUNTING_REQUEST:
2734                         case PW_DISCONNECT_REQUEST:
2735                         case PW_DISCONNECT_ACK:
2736                         case PW_DISCONNECT_NAK:
2737                         case PW_COA_REQUEST:
2738                         case PW_COA_ACK:
2739                         case PW_COA_NAK:
2740                                 memset(packet->data + 4, 0, AUTH_VECTOR_LEN);
2741                                 break;
2742
2743                         do_ack:
2744                         case PW_AUTHENTICATION_ACK:
2745                         case PW_AUTHENTICATION_REJECT:
2746                         case PW_ACCESS_CHALLENGE:
2747                                 if (!original) {
2748                                         fr_strerror_printf("ERROR: Cannot validate Message-Authenticator in response packet without a request packet.");
2749                                         return -1;
2750                                 }
2751                                 memcpy(packet->data + 4, original->vector, AUTH_VECTOR_LEN);
2752                                 break;
2753                         }
2754
2755                         fr_hmac_md5(packet->data, packet->data_len,
2756                                     (uint8_t const *) secret, strlen(secret),
2757                                     calc_auth_vector);
2758                         if (rad_digest_cmp(calc_auth_vector, msg_auth_vector,
2759                                    sizeof(calc_auth_vector)) != 0) {
2760                                 char buffer[32];
2761                                 fr_strerror_printf("Received packet from %s with invalid Message-Authenticator!  (Shared secret is incorrect.)",
2762                                            inet_ntop(packet->src_ipaddr.af,
2763                                                      &packet->src_ipaddr.ipaddr,
2764                                                      buffer, sizeof(buffer)));
2765                                 /* Silently drop packet, according to RFC 3579 */
2766                                 return -1;
2767                         } /* else the message authenticator was good */
2768
2769                         /*
2770                          *      Reinitialize Authenticators.
2771                          */
2772                         memcpy(&ptr[2], msg_auth_vector, AUTH_VECTOR_LEN);
2773                         memcpy(packet->data + 4, packet->vector, AUTH_VECTOR_LEN);
2774                         break;
2775                 } /* switch over the attributes */
2776
2777                 ptr += attrlen;
2778                 length -= attrlen;
2779         } /* loop over the packet, sanity checking the attributes */
2780
2781         /*
2782          *      It looks like a RADIUS packet, but we don't know what it is
2783          *      so can't validate the authenticators.
2784          */
2785         if ((packet->code == 0) || (packet->code >= FR_MAX_PACKET_CODE)) {
2786                 char buffer[32];
2787                 fr_strerror_printf("Received Unknown packet code %d "
2788                            "from client %s port %d: Cannot validate Request/Response Authenticator.",
2789                            packet->code,
2790                            inet_ntop(packet->src_ipaddr.af,
2791                                      &packet->src_ipaddr.ipaddr,
2792                                      buffer, sizeof(buffer)),
2793                            packet->src_port);
2794                 return -1;
2795         }
2796
2797         /*
2798          *      Calculate and/or verify Request or Response Authenticator.
2799          */
2800         switch(packet->code) {
2801                 int rcode;
2802                 char buffer[32];
2803
2804                 case PW_AUTHENTICATION_REQUEST:
2805                 case PW_STATUS_SERVER:
2806                         /*
2807                          *      The authentication vector is random
2808                          *      nonsense, invented by the client.
2809                          */
2810                         break;
2811
2812                 case PW_COA_REQUEST:
2813                 case PW_DISCONNECT_REQUEST:
2814                 case PW_ACCOUNTING_REQUEST:
2815                         if (calc_acctdigest(packet, secret) > 1) {
2816                                 fr_strerror_printf("Received %s packet "
2817                                            "from client %s with invalid Request Authenticator!  (Shared secret is incorrect.)",
2818                                            fr_packet_codes[packet->code],
2819                                            inet_ntop(packet->src_ipaddr.af,
2820                                                      &packet->src_ipaddr.ipaddr,
2821                                                      buffer, sizeof(buffer)));
2822                                 return -1;
2823                         }
2824                         break;
2825
2826                         /* Verify the reply digest */
2827                 case PW_AUTHENTICATION_ACK:
2828                 case PW_AUTHENTICATION_REJECT:
2829                 case PW_ACCESS_CHALLENGE:
2830                 case PW_ACCOUNTING_RESPONSE:
2831                 case PW_DISCONNECT_ACK:
2832                 case PW_DISCONNECT_NAK:
2833                 case PW_COA_ACK:
2834                 case PW_COA_NAK:
2835                         rcode = calc_replydigest(packet, original, secret);
2836                         if (rcode > 1) {
2837                                 fr_strerror_printf("Received %s packet "
2838                                            "from home server %s port %d with invalid Response Authenticator!  (Shared secret is incorrect.)",
2839                                            fr_packet_codes[packet->code],
2840                                            inet_ntop(packet->src_ipaddr.af,
2841                                                      &packet->src_ipaddr.ipaddr,
2842                                                      buffer, sizeof(buffer)),
2843                                            packet->src_port);
2844                                 return -1;
2845                         }
2846                         break;
2847
2848                 default:
2849                         fr_strerror_printf("Received Unknown packet code %d "
2850                                    "from client %s port %d: Cannot validate Request/Response Authenticator",
2851                                    packet->code,
2852                                    inet_ntop(packet->src_ipaddr.af,
2853                                              &packet->src_ipaddr.ipaddr,
2854                                                      buffer, sizeof(buffer)),
2855                                    packet->src_port);
2856                         return -1;
2857         }
2858
2859         return 0;
2860 }
2861
2862
2863 static ssize_t data2vp(RADIUS_PACKET *packet,
2864                        RADIUS_PACKET const *original,
2865                        char const *secret,
2866                        DICT_ATTR const *da, uint8_t const *start,
2867                        size_t const attrlen, size_t const packetlen,
2868                        VALUE_PAIR **pvp);
2869
2870 /**
2871  * @brief convert a "concatenated" attribute to one long VP.
2872  */
2873 static ssize_t data2vp_concat(RADIUS_PACKET *packet,
2874                               DICT_ATTR const *da, uint8_t const *start,
2875                               size_t const packetlen, VALUE_PAIR **pvp)
2876 {
2877         size_t total;
2878         uint8_t attr;
2879         uint8_t const *ptr = start;
2880         uint8_t const *end = start + packetlen;
2881         uint8_t *p;
2882         VALUE_PAIR *vp;
2883
2884         total = 0;
2885         attr = ptr[0];
2886
2887         /*
2888          *      The packet has already been sanity checked, so we
2889          *      don't care about walking off of the end of it.
2890          */
2891         while (ptr < end) {
2892                 total += ptr[1] - 2;
2893
2894                 ptr += ptr[1];
2895
2896                 /*
2897                  *      Attributes MUST be consecutive.
2898                  */
2899                 if (ptr[0] != attr) break;
2900         }
2901
2902         vp = pairalloc(packet, da);
2903         if (!vp) return -1;
2904
2905         vp->length = total;
2906         vp->vp_octets = p = talloc_array(vp, uint8_t, vp->length);
2907         if (!p) {
2908                 pairfree(&vp);
2909                 return -1;
2910         }
2911
2912         total = 0;
2913         ptr = start;
2914         while (total < vp->length) {
2915                 memcpy(p, ptr + 2, ptr[1] - 2);
2916                 p += ptr[1] - 2;
2917                 total += ptr[1] - 2;
2918                 ptr += ptr[1];
2919         }
2920
2921         *pvp = vp;
2922         return ptr - start;
2923 }
2924
2925
2926 /**
2927  * @brief convert TLVs to one or more VPs
2928  */
2929 static ssize_t data2vp_tlvs(RADIUS_PACKET *packet,
2930                             RADIUS_PACKET const *original,
2931                             char const *secret, DICT_ATTR const *da,
2932                             uint8_t const *start, size_t length,
2933                             VALUE_PAIR **pvp)
2934 {
2935         uint8_t const *data = start;
2936         DICT_ATTR const *child;
2937         VALUE_PAIR *head, **tail;
2938
2939         if (length < 3) return -1; /* type, length, value */
2940
2941         VP_HEXDUMP("tlvs", data, length);
2942
2943         if (rad_tlv_ok(data, length, 1, 1) < 0) return -1;
2944
2945         head = NULL;
2946         tail = &head;
2947
2948         while (data < (start + length)) {
2949                 ssize_t tlv_len;
2950
2951                 child = dict_attrbyparent(da, data[0], da->vendor);
2952                 if (!child) {
2953                         unsigned int my_attr, my_vendor;
2954
2955                         VP_TRACE("Failed to find child %u of TLV %s\n",
2956                                  data[0], da->name);
2957
2958                         /*
2959                          *      Get child attr/vendor so that
2960                          *      we can call unknown attr.
2961                          */
2962                         my_attr = data[0];
2963                         my_vendor = da->vendor;
2964
2965                         if (!dict_attr_child(da, &my_attr, &my_vendor)) {
2966                                 pairfree(&head);
2967                                 return -1;
2968                         }
2969
2970                         child = dict_attrunknown(my_attr, my_vendor, true);
2971                         if (!child) {
2972                                 pairfree(&head);
2973                                 return -1;
2974                         }
2975                 }
2976
2977                 tlv_len = data2vp(packet, original, secret, child,
2978                                   data + 2, data[1] - 2, data[1] - 2, tail);
2979                 if (tlv_len < 0) {
2980                         pairfree(&head);
2981                         return -1;
2982                 }
2983                 tail = &((*tail)->next);
2984                 data += data[1];
2985         }
2986
2987         *pvp = head;
2988         return length;
2989 }
2990
2991 /**
2992  * @brief Convert a top-level VSA to a VP.
2993  *
2994  *      "length" can be LONGER than just this sub-vsa
2995  */
2996 static ssize_t data2vp_vsa(RADIUS_PACKET *packet,
2997                            RADIUS_PACKET const *original,
2998                            char const *secret, DICT_VENDOR *dv,
2999                            uint8_t const *data, size_t length,
3000                            VALUE_PAIR **pvp)
3001 {
3002         unsigned int attribute;
3003         ssize_t attrlen, my_len;
3004         DICT_ATTR const *da;
3005
3006 #ifndef NDEBUG
3007         if (length <= (dv->type + dv->length)) {
3008                 fr_strerror_printf("data2vp_vsa: Failure to call rad_tlv_ok");
3009                 return -1;
3010         }
3011 #endif
3012
3013         switch (dv->type) {
3014         case 4:
3015                 /* data[0] must be zero */
3016                 attribute = data[1] << 16;
3017                 attribute |= data[2] << 8;
3018                 attribute |= data[3];
3019                 break;
3020
3021         case 2:
3022                 attribute = data[0] << 8;
3023                 attribute |= data[1];
3024                 break;
3025
3026         case 1:
3027                 attribute = data[0];
3028                 break;
3029
3030         default:
3031                 fr_strerror_printf("data2vp_vsa: Internal sanity check failed");
3032                 return -1;
3033         }
3034
3035         switch (dv->length) {
3036         case 2:
3037                 /* data[dv->type] must be zero, from rad_tlv_ok() */
3038                 attrlen = data[dv->type + 1];
3039                 break;
3040
3041         case 1:
3042                 attrlen = data[dv->type];
3043                 break;
3044
3045         case 0:
3046                 attrlen = length;
3047                 break;
3048
3049         default:
3050                 fr_strerror_printf("data2vp_vsa: Internal sanity check failed");
3051                 return -1;
3052         }
3053
3054 #ifndef NDEBUG
3055         if (attrlen <= (ssize_t) (dv->type + dv->length)) {
3056                 fr_strerror_printf("data2vp_vsa: Failure to call rad_tlv_ok");
3057                 return -1;
3058         }
3059 #endif
3060
3061         /*
3062          *      See if the VSA is known.
3063          */
3064         da = dict_attrbyvalue(attribute, dv->vendorpec);
3065         if (!da) da = dict_attrunknown(attribute, dv->vendorpec, true);
3066         if (!da) return -1;
3067
3068         my_len = data2vp(packet, original, secret, da,
3069                          data + dv->type + dv->length,
3070                          attrlen - (dv->type + dv->length),
3071                          attrlen - (dv->type + dv->length),
3072                          pvp);
3073         if (my_len < 0) return my_len;
3074
3075         return attrlen;
3076 }
3077
3078
3079 /**
3080  * @brief Convert a fragmented extended attr to a VP
3081  *
3082  *      Format is:
3083  *
3084  *      attr
3085  *      length
3086  *      extended-attr
3087  *      flag
3088  *      data...
3089  *
3090  *      But for the first fragment, we get passed a pointer to the
3091  *      "extended-attr".
3092  */
3093 static ssize_t data2vp_extended(RADIUS_PACKET *packet,
3094                                 RADIUS_PACKET const *original,
3095                                 char const *secret, DICT_ATTR const *da,
3096                                 uint8_t const *data,
3097                                 size_t attrlen, size_t packetlen,
3098                                 VALUE_PAIR **pvp)
3099 {
3100         ssize_t rcode;
3101         size_t fraglen;
3102         uint8_t *head, *tail;
3103         uint8_t const *frag, *end;
3104         uint8_t const *attr;
3105         int fragments;
3106         bool last_frag;
3107
3108         if (attrlen < 3) return -1;
3109
3110         /*
3111          *      Calculate the length of all of the fragments.  For
3112          *      now, they MUST be contiguous in the packet, and they
3113          *      MUST be all of the same TYPE and EXTENDED-TYPE
3114          */
3115         attr = data - 2;
3116         fraglen = attrlen - 2;
3117         frag = data + attrlen;
3118         end = data + packetlen;
3119         fragments = 1;
3120         last_frag = false;
3121
3122         while (frag < end) {
3123                 if (last_frag ||
3124                     (frag[0] != attr[0]) ||
3125                     (frag[1] < 4) ||                   /* too short for long-extended */
3126                     (frag[2] != attr[2]) ||
3127                     ((frag + frag[1]) > end)) {         /* overflow */
3128                         end = frag;
3129                         break;
3130                 }
3131
3132                 last_frag = ((frag[3] & 0x80) == 0);
3133
3134                 fraglen += frag[1] - 4;
3135                 frag += frag[1];
3136                 fragments++;
3137         }
3138
3139         head = tail = malloc(fraglen);
3140         if (!head) return -1;
3141
3142         VP_TRACE("Fragments %d, total length %d\n", fragments, (int) fraglen);
3143
3144         /*
3145          *      And again, but faster and looser.
3146          *
3147          *      We copy the first fragment, followed by the rest of
3148          *      the fragments.
3149          */
3150         frag = attr;
3151
3152         while (fragments >  0) {
3153                 memcpy(tail, frag + 4, frag[1] - 4);
3154                 tail += frag[1] - 4;
3155                 frag += frag[1];
3156                 fragments--;
3157         }
3158
3159         VP_HEXDUMP("long-extended fragments", head, fraglen);
3160
3161         rcode = data2vp(packet, original, secret, da,
3162                         head, fraglen, fraglen, pvp);
3163         free(head);
3164         if (rcode < 0) return rcode;
3165
3166         return end - data;
3167 }
3168
3169 /**
3170  * @brief Convert a Vendor-Specific WIMAX to vps
3171  *
3172  *      Called ONLY for Vendor-Specific
3173  */
3174 static ssize_t data2vp_wimax(RADIUS_PACKET *packet,
3175                              RADIUS_PACKET const *original,
3176                              char const *secret, uint32_t vendor,
3177                              uint8_t const *data,
3178                              size_t attrlen, size_t packetlen,
3179                              VALUE_PAIR **pvp)
3180 {
3181         ssize_t rcode;
3182         size_t fraglen;
3183         bool last_frag;
3184         uint8_t *head, *tail;
3185         uint8_t const *frag, *end;
3186         DICT_ATTR const *child;
3187
3188         if (attrlen < 8) return -1;
3189
3190         if (((size_t) (data[5] + 4)) != attrlen) return -1;
3191
3192         child = dict_attrbyvalue(data[4], vendor);
3193         if (!child) return -1;
3194
3195         if ((data[6] & 0x80) == 0) {
3196                 rcode = data2vp(packet, original, secret, child,
3197                                 data + 7, data[5] - 3, data[5] - 3,
3198                                 pvp);
3199                 if (rcode < 0) return -1;
3200                 return 7 + rcode;
3201         }
3202
3203         /*
3204          *      Calculate the length of all of the fragments.  For
3205          *      now, they MUST be contiguous in the packet, and they
3206          *      MUST be all of the same VSA, WiMAX, and WiMAX-attr.
3207          *
3208          *      The first fragment doesn't have a RADIUS attribute
3209          *      header, so it needs to be treated a little special.
3210          */
3211         fraglen = data[5] - 3;
3212         frag = data + attrlen;
3213         end = data + packetlen;
3214         last_frag = false;
3215
3216         while (frag < end) {
3217                 if (last_frag ||
3218                     (frag[0] != PW_VENDOR_SPECIFIC) ||
3219                     (frag[1] < 9) ||                   /* too short for wimax */
3220                     ((frag + frag[1]) > end) ||         /* overflow */
3221                     (memcmp(frag + 2, data, 4) != 0) || /* not wimax */
3222                     (frag[6] != data[4]) || /* not the same wimax attr */
3223                     ((frag[7] + 6) != frag[1])) { /* doesn't fill the attr */
3224                         end = frag;
3225                         break;
3226                 }
3227
3228                 last_frag = ((frag[8] & 0x80) == 0);
3229
3230                 fraglen += frag[7] - 3;
3231                 frag += frag[1];
3232         }
3233
3234         head = tail = malloc(fraglen);
3235         if (!head) return -1;
3236
3237         /*
3238          *      And again, but faster and looser.
3239          *
3240          *      We copy the first fragment, followed by the rest of
3241          *      the fragments.
3242          */
3243         frag = data;
3244
3245         memcpy(tail, frag + 4 + 3, frag[4 + 1] - 3);
3246         tail += frag[4 + 1] - 3;
3247         frag += attrlen;        /* should be frag[1] - 7 */
3248
3249         /*
3250          *      frag now points to RADIUS attributes
3251          */
3252         do {
3253                 memcpy(tail, frag + 2 + 4 + 3, frag[2 + 4 + 1] - 3);
3254                 tail += frag[2 + 4 + 1] - 3;
3255                 frag += frag[1];
3256         } while (frag < end);
3257
3258         VP_HEXDUMP("wimax fragments", head, fraglen);
3259
3260         rcode = data2vp(packet, original, secret, child,
3261                         head, fraglen, fraglen, pvp);
3262         free(head);
3263         if (rcode < 0) return rcode;
3264
3265         return end - data;
3266 }
3267
3268
3269 /**
3270  * @brief Convert a top-level VSA to one or more VPs
3271  */
3272 static ssize_t data2vp_vsas(RADIUS_PACKET *packet,
3273                             RADIUS_PACKET const *original,
3274                             char const *secret, uint8_t const *data,
3275                             size_t attrlen, size_t packetlen,
3276                             VALUE_PAIR **pvp)
3277 {
3278         size_t total;
3279         ssize_t rcode;
3280         uint32_t vendor;
3281         DICT_VENDOR *dv;
3282         VALUE_PAIR *head, **tail;
3283
3284         if (attrlen > packetlen) return -1;
3285         if (attrlen < 5) return -1; /* vid, value */
3286         if (data[0] != 0) return -1; /* we require 24-bit VIDs */
3287
3288         memcpy(&vendor, data, 4);
3289         vendor = ntohl(vendor);
3290         dv = dict_vendorbyvalue(vendor);
3291         if (!dv) return -1;
3292
3293         /*
3294          *      WiMAX craziness
3295          */
3296         if ((vendor == VENDORPEC_WIMAX) && dv->flags) {
3297                 rcode = data2vp_wimax(packet, original, secret, vendor,
3298                                       data, attrlen, packetlen, pvp);
3299                 return rcode;
3300         }
3301
3302         /*
3303          *      VSAs should normally be in TLV format.
3304          */
3305         if (rad_tlv_ok(data + 4, attrlen - 4,
3306                        dv->type, dv->length) < 0) return -1;
3307
3308         /*
3309          *      There may be more than one VSA in the
3310          *      Vendor-Specific.  If so, loop over them all.
3311          */
3312         data += 4;
3313         attrlen -= 4;
3314         packetlen -= 4;
3315         total = 4;
3316         head = NULL;
3317         tail = &head;
3318
3319         while (attrlen > 0) {
3320                 ssize_t vsa_len;
3321
3322                 vsa_len = data2vp_vsa(packet, original, secret, dv,
3323                                       data, attrlen, tail);
3324                 if (vsa_len < 0) {
3325                         pairfree(&head);
3326                         fr_strerror_printf("Internal sanity check %d", __LINE__);
3327                         return -1;
3328                 }
3329                 tail = &((*tail)->next);
3330                 data += vsa_len;
3331                 attrlen -= vsa_len;
3332                 packetlen -= vsa_len;
3333                 total += vsa_len;
3334         }
3335
3336         *pvp = head;
3337         return total;
3338 }
3339
3340
3341 /**
3342  * @brief Create any kind of VP from the attribute contents.
3343  *
3344  *      "length" is AT LEAST the length of this attribute, as we
3345  *      expect the caller to have verified the data with
3346  *      rad_packet_ok().  "length" may be up to the length of the
3347  *      packet.
3348  *
3349  * @return -1 on error, or "length".
3350  */
3351 static ssize_t data2vp(RADIUS_PACKET *packet,
3352                        RADIUS_PACKET const *original,
3353                        char const *secret,
3354                        DICT_ATTR const *da, uint8_t const *start,
3355                        size_t const attrlen, size_t const packetlen,
3356                        VALUE_PAIR **pvp)
3357 {
3358         int tag = 0;
3359         size_t datalen;
3360         ssize_t rcode;
3361         uint32_t vendor;
3362         DICT_ATTR const *child;
3363         DICT_VENDOR *dv;
3364         VALUE_PAIR *vp;
3365         uint8_t const *data = start;
3366         char *p;
3367         uint8_t buffer[256];
3368
3369         /*
3370          *      FIXME: Attrlen can be larger than 253 for extended attrs!
3371          */
3372         if (!da || (attrlen > packetlen) ||
3373             ((attrlen > 253) && (attrlen != packetlen)) ||
3374             (attrlen > 128*1024)) {
3375                 fr_strerror_printf("data2vp: invalid arguments");
3376                 return -1;
3377         }
3378
3379         VP_HEXDUMP("data2vp", start, attrlen);
3380
3381         VP_TRACE("parent %s len %zu ... %zu\n", da->name, attrlen, packetlen);
3382
3383         datalen = attrlen;
3384
3385         /*
3386          *      Hacks for CUI.  The WiMAX spec says that it can be
3387          *      zero length, even though this is forbidden by the
3388          *      RADIUS specs.  So... we make a special case for it.
3389          */
3390         if (attrlen == 0) {
3391                 if (!((da->vendor == 0) &&
3392                       (da->attr == PW_CHARGEABLE_USER_IDENTITY))) {
3393                         *pvp = NULL;
3394                         return 0;
3395                 }
3396
3397 #ifndef NDEBUG
3398                 /*
3399                  *      Hacks for Coverity.  Editing the dictionary
3400                  *      will break assumptions about CUI.  We know
3401                  *      this, but Coverity doesn't.
3402                  */
3403                 if (da->type != PW_TYPE_STRING) return -1;
3404 #endif
3405
3406                 data = (uint8_t const *) "";
3407                 datalen = 1;
3408                 goto alloc_cui; /* skip everything */
3409         }
3410
3411         /*
3412          *      Hacks for tags.  If the attribute is capable of
3413          *      encoding a tag, and there's room for the tag, and
3414          *      there is a tag, or it's encrypted with Tunnel-Password,
3415          *      then decode the tag.
3416          */
3417         if (da->flags.has_tag && (datalen > 1) &&
3418             ((data[0] < 0x20) ||
3419              (da->flags.encrypt == FLAG_ENCRYPT_TUNNEL_PASSWORD))) {
3420                 /*
3421                  *      Only "short" attributes can be encrypted.
3422                  */
3423                 if (datalen >= sizeof(buffer)) return -1;
3424
3425                 if (da->type == PW_TYPE_STRING) {
3426                         memcpy(buffer, data + 1, datalen - 1);
3427                         tag = data[0];
3428                         datalen -= 1;
3429
3430                 } else if (da->type == PW_TYPE_INTEGER) {
3431                         memcpy(buffer, data, attrlen);
3432                         tag = buffer[0];
3433                         buffer[0] = 0;
3434
3435                 } else {
3436                         return -1; /* only string and integer can have tags */
3437                 }
3438
3439                 data = buffer;
3440         }
3441
3442         /*
3443          *      Decrypt the attribute.
3444          */
3445         if (secret && packet && (da->flags.encrypt != FLAG_ENCRYPT_NONE)) {
3446                 if (data == start) {
3447                         if (attrlen < sizeof(buffer)) {
3448                                 memcpy(buffer, data, attrlen);
3449                         } else {
3450                                 memcpy(buffer, data, sizeof(buffer));
3451                         }
3452                 }
3453                 data = buffer;
3454
3455                 switch (da->flags.encrypt) { /* can't be tagged */
3456                 /*
3457                  *  User-Password
3458                  */
3459                 case FLAG_ENCRYPT_USER_PASSWORD:
3460                         if (original) {
3461                                 rad_pwdecode((char *) buffer,
3462                                              attrlen, secret,
3463                                              original->vector);
3464                         } else {
3465                                 rad_pwdecode((char *) buffer,
3466                                              attrlen, secret,
3467                                              packet->vector);
3468                         }
3469                         buffer[253] = '\0';
3470                         datalen = strlen((char *) buffer);
3471                         break;
3472
3473                 /*
3474                  *      Tunnel-Password's may go ONLY in response
3475                  *      packets.  They can have a tag, so datalen is
3476                  *      not the same as attrlen.
3477                  */
3478                 case FLAG_ENCRYPT_TUNNEL_PASSWORD:
3479                         if (rad_tunnel_pwdecode(buffer, &datalen, secret,
3480                                                 original ? original->vector : nullvector) < 0) {
3481                                 goto raw;
3482                         }
3483                         break;
3484
3485                 /*
3486                  *  Ascend-Send-Secret
3487                  *  Ascend-Receive-Secret
3488                  */
3489                 case FLAG_ENCRYPT_ASCEND_SECRET:
3490                         if (!original) {
3491                                 goto raw;
3492                         } else {
3493                                 uint8_t my_digest[AUTH_VECTOR_LEN];
3494                                 make_secret(my_digest,
3495                                             original->vector,
3496                                             secret, data);
3497                                 memcpy(buffer, my_digest,
3498                                        AUTH_VECTOR_LEN );
3499                                 buffer[AUTH_VECTOR_LEN] = '\0';
3500                                 datalen = strlen((char *) buffer);
3501                         }
3502                         break;
3503
3504                 default:
3505                         break;
3506                 } /* switch over encryption flags */
3507         }
3508
3509         /*
3510          *      Double-check the length after decrypting the
3511          *      attribute.
3512          */
3513         switch (da->type) {
3514         case PW_TYPE_STRING:
3515         case PW_TYPE_OCTETS:
3516                 break;
3517
3518         case PW_TYPE_ABINARY:
3519                 if (datalen > sizeof(vp->vp_filter)) goto raw;
3520                 break;
3521
3522         case PW_TYPE_INTEGER:
3523         case PW_TYPE_IPADDR:
3524         case PW_TYPE_DATE:
3525         case PW_TYPE_SIGNED:
3526                 if (datalen != 4) goto raw;
3527                 break;
3528
3529         case PW_TYPE_INTEGER64:
3530         case PW_TYPE_IFID:
3531                 if (datalen != 8) goto raw;
3532                 break;
3533
3534         case PW_TYPE_IPV6ADDR:
3535                 if (datalen != 16) goto raw;
3536                 break;
3537
3538         case PW_TYPE_IPV6PREFIX:
3539                 if ((datalen < 2) || (datalen > 18)) goto raw;
3540                 if (data[1] > 128) goto raw;
3541                 break;
3542
3543         case PW_TYPE_BYTE:
3544                 if (datalen != 1) goto raw;
3545                 break;
3546
3547         case PW_TYPE_SHORT:
3548                 if (datalen != 2) goto raw;
3549                 break;
3550
3551         case PW_TYPE_ETHERNET:
3552                 if (datalen != 6) goto raw;
3553                 break;
3554
3555         case PW_TYPE_COMBO_IP:
3556                 if (datalen == 4) {
3557                         child = dict_attrbytype(da->attr, da->vendor,
3558                                                 PW_TYPE_IPADDR);
3559                 } else if (datalen == 16) {
3560                         child = dict_attrbytype(da->attr, da->vendor,
3561                                              PW_TYPE_IPV6ADDR);
3562                 } else {
3563                         goto raw;
3564                 }
3565                 if (!child) goto raw;
3566                 da = child;     /* re-write it */
3567                 break;
3568
3569         case PW_TYPE_IPV4PREFIX:
3570                 if (datalen != 6) goto raw;
3571                 if ((data[1] & 0x3f) > 32) goto raw;
3572                 break;
3573
3574                 /*
3575                  *      The rest of the data types can cause
3576                  *      recursion!  Ask yourself, "is recursion OK?"
3577                  */
3578
3579         case PW_TYPE_EXTENDED:
3580                 if (datalen < 2) goto raw; /* etype, value */
3581
3582                 child = dict_attrbyparent(da, data[0], 0);
3583                 if (!child) goto raw;
3584
3585                 /*
3586                  *      Recurse to decode the contents, which could be
3587                  *      a TLV, IPaddr, etc.  Note that we decode only
3588                  *      the current attribute, and we ignore any extra
3589                  *      data after it.
3590                  */
3591                 rcode = data2vp(packet, original, secret, child,
3592                                 data + 1, attrlen - 1, attrlen - 1, pvp);
3593                 if (rcode < 0) goto raw;
3594                 return 1 + rcode;
3595
3596         case PW_TYPE_LONG_EXTENDED:
3597                 if (datalen < 3) goto raw; /* etype, flags, value */
3598
3599                 child = dict_attrbyparent(da, data[0], 0);
3600                 if (!child) {
3601                         if ((data[0] != PW_VENDOR_SPECIFIC) ||
3602                             (datalen < (3 + 4 + 1))) {
3603                                 /* da->attr < 255, da->vendor == 0 */
3604                                 child = dict_attrunknown(data[0], da->attr * FR_MAX_VENDOR, true);
3605                         } else {
3606                                 /*
3607                                  *      Try to find the VSA.
3608                                  */
3609                                 memcpy(&vendor, data + 3, 4);
3610                                 vendor = ntohl(vendor);
3611
3612                                 if (vendor == 0) goto raw;
3613
3614                                 child = dict_attrunknown(data[7], vendor | (da->attr * FR_MAX_VENDOR), true);
3615                         }
3616
3617                         if (!child) {
3618                                 fr_strerror_printf("Internal sanity check %d", __LINE__);
3619                                 return -1;
3620                         }
3621                 }
3622
3623                 /*
3624                  *      If there no more fragments, then the contents
3625                  *      have to be a well-known data type.
3626                  *
3627                  */
3628                 if ((data[1] & 0x80) == 0) {
3629                         rcode = data2vp(packet, original, secret, child,
3630                                         data + 2, attrlen - 2, attrlen - 2,
3631                                         pvp);
3632                         if (rcode < 0) goto raw;
3633                         return 2 + rcode;
3634                 }
3635
3636                 /*
3637                  *      This requires a whole lot more work.
3638                  */
3639                 return data2vp_extended(packet, original, secret, child,
3640                                         start, attrlen, packetlen, pvp);
3641
3642         case PW_TYPE_EVS:
3643                 if (datalen < 6) goto raw; /* vid, vtype, value */
3644
3645                 if (data[0] != 0) goto raw; /* we require 24-bit VIDs */
3646
3647                 memcpy(&vendor, data, 4);
3648                 vendor = ntohl(vendor);
3649                 dv = dict_vendorbyvalue(vendor);
3650                 if (!dv) {
3651                         child = dict_attrunknown(data[4], da->vendor | vendor, true);
3652                 } else {
3653                         child = dict_attrbyparent(da, data[4], vendor);
3654                         if (!child) {
3655                                 child = dict_attrunknown(data[4], da->vendor | vendor, true);
3656                         }
3657                 }
3658                 if (!child) goto raw;
3659
3660                 rcode = data2vp(packet, original, secret, child,
3661                                 data + 5, attrlen - 5, attrlen - 5, pvp);
3662                 if (rcode < 0) goto raw;
3663                 return 5 + rcode;
3664
3665         case PW_TYPE_TLV:
3666                 /*
3667                  *      We presume that the TLVs all fit into one
3668                  *      attribute, OR they've already been grouped
3669                  *      into a contiguous memory buffer.
3670                  */
3671                 rcode = data2vp_tlvs(packet, original, secret, da,
3672                                      data, attrlen, pvp);
3673                 if (rcode < 0) goto raw;
3674                 return rcode;
3675
3676         case PW_TYPE_VSA:
3677                 /*
3678                  *      VSAs can be WiMAX, in which case they don't
3679                  *      fit into one attribute.
3680                  */
3681                 rcode = data2vp_vsas(packet, original, secret,
3682                                      data, attrlen, packetlen, pvp);
3683                 if (rcode < 0) goto raw;
3684                 return rcode;
3685
3686         default:
3687         raw:
3688                 /*
3689                  *      Re-write the attribute to be "raw".  It is
3690                  *      therefore of type "octets", and will be
3691                  *      handled below.
3692                  */
3693                 da = dict_attrunknown(da->attr, da->vendor, true);
3694                 if (!da) {
3695                         fr_strerror_printf("Internal sanity check %d", __LINE__);
3696                         return -1;
3697                 }
3698                 tag = 0;
3699 #ifndef NDEBUG
3700                 /*
3701                  *      Fix for Coverity.
3702                  */
3703                 if (da->type != PW_TYPE_OCTETS) {
3704                         dict_attr_free(&da);
3705                         return -1;
3706                 }
3707 #endif
3708                 break;
3709         }
3710
3711         /*
3712          *      And now that we've verified the basic type
3713          *      information, decode the actual data.
3714          */
3715  alloc_cui:
3716         vp = pairalloc(packet, da);
3717         if (!vp) return -1;
3718
3719         vp->length = datalen;
3720         vp->tag = tag;
3721
3722         switch (da->type) {
3723         case PW_TYPE_STRING:
3724                 p = talloc_array(vp, char, vp->length + 1);
3725                 memcpy(p, data, vp->length);
3726                 p[vp->length] = '\0';
3727                 vp->vp_strvalue = p;
3728                 break;
3729
3730         case PW_TYPE_OCTETS:
3731                 vp->vp_octets = talloc_memdup(vp, data, vp->length);
3732                 break;
3733
3734         case PW_TYPE_ABINARY:
3735                 if (vp->length > sizeof(vp->vp_filter)) {
3736                         vp->length = sizeof(vp->vp_filter);
3737                 }
3738                 memcpy(vp->vp_filter, data, vp->length);
3739                 break;
3740
3741         case PW_TYPE_BYTE:
3742                 vp->vp_integer = data[0];
3743                 break;
3744
3745         case PW_TYPE_SHORT:
3746                 vp->vp_integer = (data[0] << 8) | data[1];
3747                 break;
3748
3749         case PW_TYPE_INTEGER:
3750                 memcpy(&vp->vp_integer, data, 4);
3751                 vp->vp_integer = ntohl(vp->vp_integer);
3752                 break;
3753
3754         case PW_TYPE_INTEGER64:
3755                 memcpy(&vp->vp_integer64, data, 8);
3756                 vp->vp_integer64 = ntohll(vp->vp_integer64);
3757                 break;
3758
3759         case PW_TYPE_DATE:
3760                 memcpy(&vp->vp_date, data, 4);
3761                 vp->vp_date = ntohl(vp->vp_date);
3762                 break;
3763
3764         case PW_TYPE_ETHERNET:
3765                 memcpy(&vp->vp_ether, data, 6);
3766                 break;
3767
3768         case PW_TYPE_IPADDR:
3769                 memcpy(&vp->vp_ipaddr, data, 4);
3770                 break;
3771
3772         case PW_TYPE_IFID:
3773                 memcpy(&vp->vp_ifid, data, 8);
3774                 break;
3775
3776         case PW_TYPE_IPV6ADDR:
3777                 memcpy(&vp->vp_ipv6addr, data, 16);
3778                 break;
3779
3780         case PW_TYPE_IPV6PREFIX:
3781                 /*
3782                  *      FIXME: double-check that
3783                  *      (vp->vp_octets[1] >> 3) matches vp->length + 2
3784                  */
3785                 memcpy(&vp->vp_ipv6prefix, data, vp->length);
3786                 if (vp->length < 18) {
3787                         memset(((uint8_t *)vp->vp_ipv6prefix) + vp->length, 0,
3788                                18 - vp->length);
3789                 }
3790                 break;
3791
3792         case PW_TYPE_IPV4PREFIX:
3793                 /* FIXME: do the same double-check as for IPv6Prefix */
3794                 memcpy(&vp->vp_ipv4prefix, buffer, sizeof(vp->vp_ipv4prefix));
3795
3796                 /*
3797                  *      /32 means "keep all bits".  Otherwise, mask
3798                  *      them out.
3799                  */
3800                 if ((data[1] & 0x3f) > 32) {
3801                         uint32_t addr, mask;
3802
3803                         memcpy(&addr, vp->vp_octets + 2, sizeof(addr));
3804                         mask = 1;
3805                         mask <<= (32 - (buffer[1] & 0x3f));
3806                         mask--;
3807                         mask = ~mask;
3808                         mask = htonl(mask);
3809                         addr &= mask;
3810                         memcpy(vp->vp_ipv4prefix + 2, &addr, sizeof(addr));
3811                 }
3812                 break;
3813
3814         case PW_TYPE_SIGNED:    /* overloaded with vp_integer */
3815                 memcpy(&vp->vp_integer, buffer, 4);
3816                 vp->vp_integer = ntohl(vp->vp_integer);
3817                 break;
3818
3819         default:
3820                 pairfree(&vp);
3821                 fr_strerror_printf("Internal sanity check %d", __LINE__);
3822                 return -1;
3823         }
3824         vp->type = VT_DATA;
3825         *pvp = vp;
3826
3827         return attrlen;
3828 }
3829
3830
3831 /**
3832  * @brief Create a "normal" VALUE_PAIR from the given data.
3833  */
3834 ssize_t rad_attr2vp(RADIUS_PACKET *packet,
3835                     RADIUS_PACKET const *original,
3836                     char const *secret,
3837                     uint8_t const *data, size_t length,
3838                     VALUE_PAIR **pvp)
3839 {
3840         ssize_t rcode;
3841
3842         DICT_ATTR const *da;
3843
3844         if ((length < 2) || (data[1] < 2) || (data[1] > length)) {
3845                 fr_strerror_printf("rad_attr2vp: Insufficient data");
3846                 return -1;
3847         }
3848
3849         da = dict_attrbyvalue(data[0], 0);
3850         if (!da) da = dict_attrunknown(data[0], 0, true);
3851         if (!da) return -1;
3852
3853         /*
3854          *      Pass the entire thing to the decoding function
3855          */
3856         if (da->flags.concat) {
3857                 return data2vp_concat(packet, da, data, length, pvp);
3858         }
3859
3860         /*
3861          *      Note that we pass the entire length, not just the
3862          *      length of this attribute.  The Extended or WiMAX
3863          *      attributes may have the "continuation" bit set, and
3864          *      will thus be more than one attribute in length.
3865          */
3866         rcode = data2vp(packet, original, secret, da,
3867                         data + 2, data[1] - 2, length - 2, pvp);
3868         if (rcode < 0) return rcode;
3869
3870         return 2 + rcode;
3871 }
3872
3873
3874 /**
3875  * @brief Converts data in network byte order to a VP
3876  * @return -1 on error, or the length of the data read
3877  */
3878 ssize_t  rad_data2vp(unsigned int attribute, unsigned int vendor,
3879                      uint8_t const *data, size_t length,
3880                      VALUE_PAIR **pvp)
3881 {
3882         DICT_ATTR const *da;
3883
3884         if (!data || (length == 0) || !pvp) return -1;
3885
3886         da = dict_attrbyvalue(attribute, vendor);
3887         if (!da) da = dict_attrunknown(attribute, vendor, true);
3888         if (!da) return -1;
3889
3890         return data2vp(NULL, NULL, NULL, da,
3891                        data, length, length, pvp);
3892 }
3893
3894 /**
3895  * @brief Converts vp_data to network byte order
3896  * @return -1 on error, or the length of the value
3897  */
3898 ssize_t rad_vp2data(VALUE_PAIR const *vp, uint8_t *out, size_t outlen)
3899 {
3900         size_t          len = 0;
3901         uint32_t        lvalue;
3902         uint64_t        lvalue64;
3903
3904         VERIFY_VP(vp);
3905
3906         len = vp->length;
3907         if (outlen < len) {
3908                 fr_strerror_printf("ERROR: rad_vp2data buffer passed too small");
3909                 return -1;
3910         }
3911
3912         switch(vp->da->type) {
3913                 case PW_TYPE_STRING:
3914                 case PW_TYPE_OCTETS:
3915                 case PW_TYPE_TLV:
3916                         memcpy(out, vp->data.ptr, len);
3917                         break;
3918
3919                         /*
3920                          *      All of this data is at the same
3921                          *      location.
3922                          */
3923                 case PW_TYPE_IFID:
3924                 case PW_TYPE_IPADDR:
3925                 case PW_TYPE_IPV6ADDR:
3926                 case PW_TYPE_IPV6PREFIX:
3927                 case PW_TYPE_IPV4PREFIX:
3928                 case PW_TYPE_ABINARY:
3929                         memcpy(out, &vp->data, len);
3930                         break;
3931
3932                 case PW_TYPE_BYTE:
3933                         out[0] = vp->vp_integer & 0xff;
3934                         break;
3935
3936                 case PW_TYPE_SHORT:
3937                         out[0] = (vp->vp_integer >> 8) & 0xff;
3938                         out[1] = vp->vp_integer & 0xff;
3939                         break;
3940
3941                 case PW_TYPE_INTEGER:
3942                         lvalue = htonl(vp->vp_integer);
3943                         memcpy(out, &lvalue, sizeof(lvalue));
3944                         break;
3945
3946                 case PW_TYPE_INTEGER64:
3947                         lvalue64 = htonll(vp->vp_integer64);
3948                         memcpy(out, &lvalue64, sizeof(lvalue64));
3949                         break;
3950
3951                 case PW_TYPE_DATE:
3952                         lvalue = htonl(vp->vp_date);
3953                         memcpy(out, &lvalue, sizeof(lvalue));
3954                         break;
3955
3956                 case PW_TYPE_SIGNED:
3957                 {
3958                         int32_t slvalue;
3959
3960                         slvalue = htonl(vp->vp_signed);
3961                         memcpy(out, &slvalue, sizeof(slvalue));
3962                         break;
3963                 }
3964                 /* unknown type: ignore it */
3965                 default:
3966                         fr_strerror_printf("ERROR: Unknown attribute type %d",
3967                                            vp->da->type);
3968                         return -1;
3969         }
3970
3971         return len;
3972 }
3973
3974 /**
3975  * @brief Calculate/check digest, and decode radius attributes.
3976  * @return -1 on decoding error, 0 on success
3977  */
3978 int rad_decode(RADIUS_PACKET *packet, RADIUS_PACKET *original,
3979                char const *secret)
3980 {
3981         int                     packet_length;
3982         int                     num_attributes;
3983         uint8_t                 *ptr;
3984         radius_packet_t         *hdr;
3985         VALUE_PAIR *head, **tail, *vp;
3986
3987         /*
3988          *      Extract attribute-value pairs
3989          */
3990         hdr = (radius_packet_t *)packet->data;
3991         ptr = hdr->data;
3992         packet_length = packet->data_len - AUTH_HDR_LEN;
3993
3994         head = NULL;
3995         tail = &head;
3996         num_attributes = 0;
3997
3998         /*
3999          *      Loop over the attributes, decoding them into VPs.
4000          */
4001         while (packet_length > 0) {
4002                 ssize_t my_len;
4003
4004                 /*
4005                  *      This may return many VPs
4006                  */
4007                 my_len = rad_attr2vp(packet, original, secret,
4008                                      ptr, packet_length, &vp);
4009                 if (my_len < 0) {
4010                         pairfree(&head);
4011                         return -1;
4012                 }
4013
4014                 *tail = vp;
4015                 while (vp) {
4016                         num_attributes++;
4017                         debug_pair(vp);
4018                         tail = &(vp->next);
4019                         vp = vp->next;
4020                 }
4021
4022                 /*
4023                  *      VSA's may not have been counted properly in
4024                  *      rad_packet_ok() above, as it is hard to count
4025                  *      then without using the dictionary.  We
4026                  *      therefore enforce the limits here, too.
4027                  */
4028                 if ((fr_max_attributes > 0) &&
4029                     (num_attributes > fr_max_attributes)) {
4030                         char host_ipaddr[128];
4031
4032                         pairfree(&head);
4033                         fr_strerror_printf("WARNING: Possible DoS attack from host %s: Too many attributes in request (received %d, max %d are allowed).",
4034                                    inet_ntop(packet->src_ipaddr.af,
4035                                              &packet->src_ipaddr.ipaddr,
4036                                              host_ipaddr, sizeof(host_ipaddr)),
4037                                    num_attributes, fr_max_attributes);
4038                         return -1;
4039                 }
4040
4041                 ptr += my_len;
4042                 packet_length -= my_len;
4043         }
4044
4045         /*
4046          *      Merge information from the outside world into our
4047          *      random pool.
4048          */
4049         fr_rand_seed(packet->data, AUTH_HDR_LEN);
4050
4051         /*
4052          *      There may be VP's already in the packet.  Don't
4053          *      destroy them.  Instead, add the decoded attributes to
4054          *      the tail of the list.
4055          */
4056         for (tail = &packet->vps; *tail != NULL; tail = &((*tail)->next)) {
4057                 /* nothing */
4058         }
4059         *tail = head;
4060
4061         return 0;
4062 }
4063
4064
4065 /**
4066  * @brief Encode password.
4067  *
4068  *      We assume that the passwd buffer passed is big enough.
4069  *      RFC2138 says the password is max 128 chars, so the size
4070  *      of the passwd buffer must be at least 129 characters.
4071  *      Preferably it's just MAX_STRING_LEN.
4072  *
4073  *      int *pwlen is updated to the new length of the encrypted
4074  *      password - a multiple of 16 bytes.
4075  */
4076 int rad_pwencode(char *passwd, size_t *pwlen, char const *secret,
4077                  uint8_t const *vector)
4078 {
4079         FR_MD5_CTX context, old;
4080         uint8_t digest[AUTH_VECTOR_LEN];
4081         int     i, n, secretlen;
4082         int     len;
4083
4084         /*
4085          *      RFC maximum is 128 bytes.
4086          *
4087          *      If length is zero, pad it out with zeros.
4088          *
4089          *      If the length isn't aligned to 16 bytes,
4090          *      zero out the extra data.
4091          */
4092         len = *pwlen;
4093
4094         if (len > 128) len = 128;
4095
4096         if (len == 0) {
4097                 memset(passwd, 0, AUTH_PASS_LEN);
4098                 len = AUTH_PASS_LEN;
4099         } else if ((len % AUTH_PASS_LEN) != 0) {
4100                 memset(&passwd[len], 0, AUTH_PASS_LEN - (len % AUTH_PASS_LEN));
4101                 len += AUTH_PASS_LEN - (len % AUTH_PASS_LEN);
4102         }
4103         *pwlen = len;
4104
4105         /*
4106          *      Use the secret to setup the decryption digest
4107          */
4108         secretlen = strlen(secret);
4109
4110         fr_MD5Init(&context);
4111         fr_MD5Update(&context, (uint8_t const *) secret, secretlen);
4112         old = context;          /* save intermediate work */
4113
4114         /*
4115          *      Encrypt it in place.  Don't bother checking
4116          *      len, as we've ensured above that it's OK.
4117          */
4118         for (n = 0; n < len; n += AUTH_PASS_LEN) {
4119                 if (n == 0) {
4120                         fr_MD5Update(&context, vector, AUTH_PASS_LEN);
4121                         fr_MD5Final(digest, &context);
4122                 } else {
4123                         context = old;
4124                         fr_MD5Update(&context,
4125                                      (uint8_t *) passwd + n - AUTH_PASS_LEN,
4126                                      AUTH_PASS_LEN);
4127                         fr_MD5Final(digest, &context);
4128                 }
4129
4130                 for (i = 0; i < AUTH_PASS_LEN; i++) {
4131                         passwd[i + n] ^= digest[i];
4132                 }
4133         }
4134
4135         return 0;
4136 }
4137
4138 /**
4139  * @brief Decode password.
4140  */
4141 int rad_pwdecode(char *passwd, size_t pwlen, char const *secret,
4142                  uint8_t const *vector)
4143 {
4144         FR_MD5_CTX context, old;
4145         uint8_t digest[AUTH_VECTOR_LEN];
4146         int     i;
4147         size_t  n, secretlen;
4148
4149         /*
4150          *      The RFC's say that the maximum is 128.
4151          *      The buffer we're putting it into above is 254, so
4152          *      we don't need to do any length checking.
4153          */
4154         if (pwlen > 128) pwlen = 128;
4155
4156         /*
4157          *      Catch idiots.
4158          */
4159         if (pwlen == 0) goto done;
4160
4161         /*
4162          *      Use the secret to setup the decryption digest
4163          */
4164         secretlen = strlen(secret);
4165
4166         fr_MD5Init(&context);
4167         fr_MD5Update(&context, (uint8_t const *) secret, secretlen);
4168         old = context;          /* save intermediate work */
4169
4170         /*
4171          *      The inverse of the code above.
4172          */
4173         for (n = 0; n < pwlen; n += AUTH_PASS_LEN) {
4174                 if (n == 0) {
4175                         fr_MD5Update(&context, vector, AUTH_VECTOR_LEN);
4176                         fr_MD5Final(digest, &context);
4177
4178                         context = old;
4179                         if (pwlen > AUTH_PASS_LEN) {
4180                                 fr_MD5Update(&context, (uint8_t *) passwd,
4181                                              AUTH_PASS_LEN);
4182                         }
4183                 } else {
4184                         fr_MD5Final(digest, &context);
4185
4186                         context = old;
4187                         if (pwlen > (n + AUTH_PASS_LEN)) {
4188                                 fr_MD5Update(&context, (uint8_t *) passwd + n,
4189                                              AUTH_PASS_LEN);
4190                         }
4191                 }
4192
4193                 for (i = 0; i < AUTH_PASS_LEN; i++) {
4194                         passwd[i + n] ^= digest[i];
4195                 }
4196         }
4197
4198  done:
4199         passwd[pwlen] = '\0';
4200         return strlen(passwd);
4201 }
4202
4203
4204 /**
4205  * @brief Encode Tunnel-Password attributes when sending them out on the wire.
4206  *
4207  *      int *pwlen is updated to the new length of the encrypted
4208  *      password - a multiple of 16 bytes.
4209  *
4210  *      This is per RFC-2868 which adds a two char SALT to the initial intermediate
4211  *      value MD5 hash.
4212  */
4213 int rad_tunnel_pwencode(char *passwd, size_t *pwlen, char const *secret,
4214                         uint8_t const *vector)
4215 {
4216         uint8_t buffer[AUTH_VECTOR_LEN + MAX_STRING_LEN + 3];
4217         unsigned char   digest[AUTH_VECTOR_LEN];
4218         char*   salt;
4219         int     i, n, secretlen;
4220         unsigned len, n2;
4221
4222         len = *pwlen;
4223
4224         if (len > 127) len = 127;
4225
4226         /*
4227          * Shift the password 3 positions right to place a salt and original
4228          * length, tag will be added automatically on packet send
4229          */
4230         for (n=len ; n>=0 ; n--) passwd[n+3] = passwd[n];
4231         salt = passwd;
4232         passwd += 2;
4233         /*
4234          * save original password length as first password character;
4235          */
4236         *passwd = len;
4237         len += 1;
4238
4239
4240         /*
4241          *      Generate salt.  The RFC's say:
4242          *
4243          *      The high bit of salt[0] must be set, each salt in a
4244          *      packet should be unique, and they should be random
4245          *
4246          *      So, we set the high bit, add in a counter, and then
4247          *      add in some CSPRNG data.  should be OK..
4248          */
4249         salt[0] = (0x80 | ( ((salt_offset++) & 0x0f) << 3) |
4250                    (fr_rand() & 0x07));
4251         salt[1] = fr_rand();
4252
4253         /*
4254          *      Padd password to multiple of AUTH_PASS_LEN bytes.
4255          */
4256         n = len % AUTH_PASS_LEN;
4257         if (n) {
4258                 n = AUTH_PASS_LEN - n;
4259                 for (; n > 0; n--, len++)
4260                         passwd[len] = 0;
4261         }
4262         /* set new password length */
4263         *pwlen = len + 2;
4264
4265         /*
4266          *      Use the secret to setup the decryption digest
4267          */
4268         secretlen = strlen(secret);
4269         memcpy(buffer, secret, secretlen);
4270
4271         for (n2 = 0; n2 < len; n2+=AUTH_PASS_LEN) {
4272                 if (!n2) {
4273                         memcpy(buffer + secretlen, vector, AUTH_VECTOR_LEN);
4274                         memcpy(buffer + secretlen + AUTH_VECTOR_LEN, salt, 2);
4275                         fr_md5_calc(digest, buffer, secretlen + AUTH_VECTOR_LEN + 2);
4276                 } else {
4277                         memcpy(buffer + secretlen, passwd + n2 - AUTH_PASS_LEN, AUTH_PASS_LEN);
4278                         fr_md5_calc(digest, buffer, secretlen + AUTH_PASS_LEN);
4279                 }
4280
4281                 for (i = 0; i < AUTH_PASS_LEN; i++) {
4282                         passwd[i + n2] ^= digest[i];
4283                 }
4284         }
4285         passwd[n2] = 0;
4286         return 0;
4287 }
4288
4289 /**
4290  * @brief Decode Tunnel-Password encrypted attributes.
4291  *
4292  *      Defined in RFC-2868, this uses a two char SALT along with the
4293  *      initial intermediate value, to differentiate it from the
4294  *      above.
4295  */
4296 int rad_tunnel_pwdecode(uint8_t *passwd, size_t *pwlen, char const *secret,
4297                         uint8_t const *vector)
4298 {
4299         FR_MD5_CTX  context, old;
4300         uint8_t         digest[AUTH_VECTOR_LEN];
4301         int             secretlen;
4302         unsigned        i, n, len, reallen;
4303
4304         len = *pwlen;
4305
4306         /*
4307          *      We need at least a salt.
4308          */
4309         if (len < 2) {
4310                 fr_strerror_printf("tunnel password is too short");
4311                 return -1;
4312         }
4313
4314         /*
4315          *      There's a salt, but no password.  Or, there's a salt
4316          *      and a 'data_len' octet.  It's wrong, but at least we
4317          *      can figure out what it means: the password is empty.
4318          *
4319          *      Note that this means we ignore the 'data_len' field,
4320          *      if the attribute length tells us that there's no
4321          *      more data.  So the 'data_len' field may be wrong,
4322          *      but that's ok...
4323          */
4324         if (len <= 3) {
4325                 passwd[0] = 0;
4326                 *pwlen = 0;
4327                 return 0;
4328         }
4329
4330         len -= 2;               /* discount the salt */
4331
4332         /*
4333          *      Use the secret to setup the decryption digest
4334          */
4335         secretlen = strlen(secret);
4336
4337         fr_MD5Init(&context);
4338         fr_MD5Update(&context, (uint8_t const *) secret, secretlen);
4339         old = context;          /* save intermediate work */
4340
4341         /*
4342          *      Set up the initial key:
4343          *
4344          *       b(1) = MD5(secret + vector + salt)
4345          */
4346         fr_MD5Update(&context, vector, AUTH_VECTOR_LEN);
4347         fr_MD5Update(&context, passwd, 2);
4348
4349         reallen = 0;
4350         for (n = 0; n < len; n += AUTH_PASS_LEN) {
4351                 int base = 0;
4352
4353                 if (n == 0) {
4354                         fr_MD5Final(digest, &context);
4355
4356                         context = old;
4357
4358                         /*
4359                          *      A quick check: decrypt the first octet
4360                          *      of the password, which is the
4361                          *      'data_len' field.  Ensure it's sane.
4362                          */
4363                         reallen = passwd[2] ^ digest[0];
4364                         if (reallen >= len) {
4365                                 fr_strerror_printf("tunnel password is too long for the attribute");
4366                                 return -1;
4367                         }
4368
4369                         fr_MD5Update(&context, passwd + 2, AUTH_PASS_LEN);
4370
4371                         base = 1;
4372                 } else {
4373                         fr_MD5Final(digest, &context);
4374
4375                         context = old;
4376                         fr_MD5Update(&context, passwd + n + 2, AUTH_PASS_LEN);
4377                 }
4378
4379                 for (i = base; i < AUTH_PASS_LEN; i++) {
4380                         passwd[n + i - 1] = passwd[n + i + 2] ^ digest[i];
4381                 }
4382         }
4383
4384         /*
4385          *      See make_tunnel_password, above.
4386          */
4387         if (reallen > 239) reallen = 239;
4388
4389         *pwlen = reallen;
4390         passwd[reallen] = 0;
4391
4392         return reallen;
4393 }
4394
4395 /**
4396  * @brief Encode a CHAP password
4397  *
4398  *      @bug FIXME: might not work with Ascend because
4399  *      we use vp->length, and Ascend gear likes
4400  *      to send an extra '\0' in the string!
4401  */
4402 int rad_chap_encode(RADIUS_PACKET *packet, uint8_t *output, int id,
4403                     VALUE_PAIR *password)
4404 {
4405         int             i;
4406         uint8_t         *ptr;
4407         uint8_t         string[MAX_STRING_LEN * 2 + 1];
4408         VALUE_PAIR      *challenge;
4409
4410         /*
4411          *      Sanity check the input parameters
4412          */
4413         if ((packet == NULL) || (password == NULL)) {
4414                 return -1;
4415         }
4416
4417         /*
4418          *      Note that the password VP can be EITHER
4419          *      a User-Password attribute (from a check-item list),
4420          *      or a CHAP-Password attribute (the client asking
4421          *      the library to encode it).
4422          */
4423
4424         i = 0;
4425         ptr = string;
4426         *ptr++ = id;
4427
4428         i++;
4429         memcpy(ptr, password->vp_strvalue, password->length);
4430         ptr += password->length;
4431         i += password->length;
4432
4433         /*
4434          *      Use Chap-Challenge pair if present,
4435          *      Request Authenticator otherwise.
4436          */
4437         challenge = pairfind(packet->vps, PW_CHAP_CHALLENGE, 0, TAG_ANY);
4438         if (challenge) {
4439                 memcpy(ptr, challenge->vp_strvalue, challenge->length);
4440                 i += challenge->length;
4441         } else {
4442                 memcpy(ptr, packet->vector, AUTH_VECTOR_LEN);
4443                 i += AUTH_VECTOR_LEN;
4444         }
4445
4446         *output = id;
4447         fr_md5_calc((uint8_t *)output + 1, (uint8_t *)string, i);
4448
4449         return 0;
4450 }
4451
4452
4453 /**
4454  * @brief Seed the random number generator.
4455  *
4456  *      May be called any number of times.
4457  */
4458 void fr_rand_seed(void const *data, size_t size)
4459 {
4460         uint32_t hash;
4461
4462         /*
4463          *      Ensure that the pool is initialized.
4464          */
4465         if (!fr_rand_initialized) {
4466                 int fd;
4467
4468                 memset(&fr_rand_pool, 0, sizeof(fr_rand_pool));
4469
4470                 fd = open("/dev/urandom", O_RDONLY);
4471                 if (fd >= 0) {
4472                         size_t total;
4473                         ssize_t this;
4474
4475                         total = 0;
4476                         while (total < sizeof(fr_rand_pool.randrsl)) {
4477                                 this = read(fd, fr_rand_pool.randrsl,
4478                                             sizeof(fr_rand_pool.randrsl) - total);
4479                                 if ((this < 0) && (errno != EINTR)) break;
4480                                 if (this > 0) total += this;
4481                         }
4482                         close(fd);
4483                 } else {
4484                         fr_rand_pool.randrsl[0] = fd;
4485                         fr_rand_pool.randrsl[1] = time(NULL);
4486                         fr_rand_pool.randrsl[2] = errno;
4487                 }
4488
4489                 fr_randinit(&fr_rand_pool, 1);
4490                 fr_rand_pool.randcnt = 0;
4491                 fr_rand_initialized = 1;
4492         }
4493
4494         if (!data) return;
4495
4496         /*
4497          *      Hash the user data
4498          */
4499         hash = fr_rand();
4500         if (!hash) hash = fr_rand();
4501         hash = fr_hash_update(data, size, hash);
4502
4503         fr_rand_pool.randmem[fr_rand_pool.randcnt] ^= hash;
4504 }
4505
4506
4507 /**
4508  * @brief Return a 32-bit random number.
4509  */
4510 uint32_t fr_rand(void)
4511 {
4512         uint32_t num;
4513
4514         /*
4515          *      Ensure that the pool is initialized.
4516          */
4517         if (!fr_rand_initialized) {
4518                 fr_rand_seed(NULL, 0);
4519         }
4520
4521         num = fr_rand_pool.randrsl[fr_rand_pool.randcnt++];
4522         if (fr_rand_pool.randcnt >= 256) {
4523                 fr_rand_pool.randcnt = 0;
4524                 fr_isaac(&fr_rand_pool);
4525         }
4526
4527         return num;
4528 }
4529
4530
4531 /** Allocate a new RADIUS_PACKET
4532  *
4533  * @param ctx the context in which the packet is allocated. May be NULL if
4534  *      the packet is not associated with a REQUEST.
4535  * @param newvector if true a new request authenticator will be generated.
4536  * @return a new RADIUS_PACKET or NULL on error.
4537  */
4538 RADIUS_PACKET *rad_alloc(TALLOC_CTX *ctx, int newvector)
4539 {
4540         RADIUS_PACKET   *rp;
4541
4542         rp = talloc_zero(ctx, RADIUS_PACKET);
4543         if (!rp) {
4544                 fr_strerror_printf("out of memory");
4545                 return NULL;
4546         }
4547         rp->id = -1;
4548         rp->offset = -1;
4549
4550         if (newvector) {
4551                 int i;
4552                 uint32_t hash, base;
4553
4554                 /*
4555                  *      Don't expose the actual contents of the random
4556                  *      pool.
4557                  */
4558                 base = fr_rand();
4559                 for (i = 0; i < AUTH_VECTOR_LEN; i += sizeof(uint32_t)) {
4560                         hash = fr_rand() ^ base;
4561                         memcpy(rp->vector + i, &hash, sizeof(hash));
4562                 }
4563         }
4564         fr_rand();              /* stir the pool again */
4565
4566         return rp;
4567 }
4568
4569 /** Allocate a new RADIUS_PACKET response
4570  *
4571  * @param ctx the context in which the packet is allocated. May be NULL if
4572  *      the packet is not associated with a REQUEST.
4573  * @param packet The request packet.
4574  * @return a new RADIUS_PACKET or NULL on error.
4575  */
4576 RADIUS_PACKET *rad_alloc_reply(TALLOC_CTX *ctx, RADIUS_PACKET *packet)
4577 {
4578         RADIUS_PACKET *reply;
4579
4580         if (!packet) return NULL;
4581
4582         reply = rad_alloc(ctx, 0);
4583         if (!reply) return NULL;
4584
4585         /*
4586          *      Initialize the fields from the request.
4587          */
4588         reply->sockfd = packet->sockfd;
4589         reply->dst_ipaddr = packet->src_ipaddr;
4590         reply->src_ipaddr = packet->dst_ipaddr;
4591         reply->dst_port = packet->src_port;
4592         reply->src_port = packet->dst_port;
4593         reply->id = packet->id;
4594         reply->code = 0; /* UNKNOWN code */
4595         memcpy(reply->vector, packet->vector,
4596                sizeof(reply->vector));
4597         reply->vps = NULL;
4598         reply->data = NULL;
4599         reply->data_len = 0;
4600
4601         return reply;
4602 }
4603
4604
4605 /**
4606  * @brief Free a RADIUS_PACKET
4607  */
4608 void rad_free(RADIUS_PACKET **radius_packet_ptr)
4609 {
4610         RADIUS_PACKET *radius_packet;
4611
4612         if (!radius_packet_ptr || !*radius_packet_ptr) return;
4613         radius_packet = *radius_packet_ptr;
4614
4615         pairfree(&radius_packet->vps);
4616
4617         talloc_free(radius_packet);
4618         *radius_packet_ptr = NULL;
4619 }