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