Fix Coverity #1216798 #1216797 #1216796 #1216795 #1216794
[freeradius.git] / src / modules / proto_dhcp / dhcp.c
1 /*
2  * dhcp.c       Functions to send/receive dhcp 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 2008 The FreeRADIUS server project
21  * Copyright 2008 Alan DeKok <aland@deployingradius.com>
22  */
23
24 RCSID("$Id$")
25
26 #include <freeradius-devel/libradius.h>
27 #include <freeradius-devel/udpfromto.h>
28 #include <freeradius-devel/dhcp.h>
29
30 #ifndef __MINGW32__
31 #include <sys/ioctl.h>
32 #endif
33
34 #ifdef HAVE_SYS_SOCKET_H
35 #include <sys/socket.h>
36 #endif
37 #ifdef HAVE_SYS_TYPES_H
38 #include <sys/types.h>
39 #endif
40
41 #ifndef __MINGW32__
42 #include <net/if_arp.h>
43 #endif
44
45 #define DHCP_CHADDR_LEN (16)
46 #define DHCP_SNAME_LEN  (64)
47 #define DHCP_FILE_LEN   (128)
48 #define DHCP_VEND_LEN   (308)
49 #define DHCP_OPTION_MAGIC_NUMBER (0x63825363)
50
51 #ifndef INADDR_BROADCAST
52 #define INADDR_BROADCAST INADDR_NONE
53 #endif
54
55 /* @todo: this is a hack */
56 #  define DEBUG                 if (fr_debug_flag && fr_log_fp) fr_printf_log
57 #  define debug_pair(vp)        do { if (fr_debug_flag && fr_log_fp) { \
58                                         vp_print(fr_log_fp, vp); \
59                                      } \
60                                 } while(0)
61
62 typedef struct dhcp_packet_t {
63         uint8_t         opcode;
64         uint8_t         htype;
65         uint8_t         hlen;
66         uint8_t         hops;
67         uint32_t        xid;    /* 4 */
68         uint16_t        secs;   /* 8 */
69         uint16_t        flags;
70         uint32_t        ciaddr; /* 12 */
71         uint32_t        yiaddr; /* 16 */
72         uint32_t        siaddr; /* 20 */
73         uint32_t        giaddr; /* 24 */
74         uint8_t         chaddr[DHCP_CHADDR_LEN]; /* 28 */
75         uint8_t         sname[DHCP_SNAME_LEN]; /* 44 */
76         uint8_t         file[DHCP_FILE_LEN]; /* 108 */
77         uint32_t        option_format; /* 236 */
78         uint8_t         options[DHCP_VEND_LEN];
79 } dhcp_packet_t;
80
81 typedef struct dhcp_option_t {
82         uint8_t         code;
83         uint8_t         length;
84 } dhcp_option_t;
85
86 /*
87  *      INADDR_ANY : 68 -> INADDR_BROADCAST : 67        DISCOVER
88  *      INADDR_BROADCAST : 68 <- SERVER_IP : 67         OFFER
89  *      INADDR_ANY : 68 -> INADDR_BROADCAST : 67        REQUEST
90  *      INADDR_BROADCAST : 68 <- SERVER_IP : 67         ACK
91  */
92 static char const *dhcp_header_names[] = {
93         "DHCP-Opcode",
94         "DHCP-Hardware-Type",
95         "DHCP-Hardware-Address-Length",
96         "DHCP-Hop-Count",
97         "DHCP-Transaction-Id",
98         "DHCP-Number-of-Seconds",
99         "DHCP-Flags",
100         "DHCP-Client-IP-Address",
101         "DHCP-Your-IP-Address",
102         "DHCP-Server-IP-Address",
103         "DHCP-Gateway-IP-Address",
104         "DHCP-Client-Hardware-Address",
105         "DHCP-Server-Host-Name",
106         "DHCP-Boot-Filename",
107
108         NULL
109 };
110
111 static char const *dhcp_message_types[] = {
112         "invalid",
113         "DHCP-Discover",
114         "DHCP-Offer",
115         "DHCP-Request",
116         "DHCP-Decline",
117         "DHCP-Ack",
118         "DHCP-NAK",
119         "DHCP-Release",
120         "DHCP-Inform",
121         "DHCP-Force-Renew",
122 };
123
124 static int dhcp_header_sizes[] = {
125         1, 1, 1, 1,
126         4, 2, 2, 4,
127         4, 4, 4,
128         DHCP_CHADDR_LEN,
129         DHCP_SNAME_LEN,
130         DHCP_FILE_LEN
131 };
132
133
134 /*
135  *      Some clients silently ignore responses less than 300 bytes.
136  */
137 #define MIN_PACKET_SIZE (244)
138 #define DEFAULT_PACKET_SIZE (300)
139 #define MAX_PACKET_SIZE (1500 - 40)
140
141 #define DHCP_OPTION_FIELD (0)
142 #define DHCP_FILE_FIELD   (1)
143 #define DHCP_SNAME_FIELD  (2)
144
145 static uint8_t *dhcp_get_option(dhcp_packet_t *packet, size_t packet_size,
146                                 unsigned int option)
147 {
148         int overload = 0;
149         int field = DHCP_OPTION_FIELD;
150         size_t where, size;
151         uint8_t *data;
152
153         where = 0;
154         size = packet_size - offsetof(dhcp_packet_t, options);
155         data = &packet->options[where];
156
157         while (where < size) {
158                 if (data[0] == 0) { /* padding */
159                         where++;
160                         continue;
161                 }
162
163                 if (data[0] == 255) { /* end of options */
164                         if ((field == DHCP_OPTION_FIELD) &&
165                             (overload & DHCP_FILE_FIELD)) {
166                                 data = packet->file;
167                                 where = 0;
168                                 size = sizeof(packet->file);
169                                 field = DHCP_FILE_FIELD;
170                                 continue;
171
172                         } else if ((field == DHCP_FILE_FIELD) &&
173                                    (overload & DHCP_SNAME_FIELD)) {
174                                 data = packet->sname;
175                                 where = 0;
176                                 size = sizeof(packet->sname);
177                                 field = DHCP_SNAME_FIELD;
178                                 continue;
179                         }
180
181                         return NULL;
182                 }
183
184                 /*
185                  *      We MUST have a real option here.
186                  */
187                 if ((where + 2) > size) {
188                         fr_strerror_printf("Options overflow field at %u",
189                                            (unsigned int) (data - (uint8_t *) packet));
190                         return NULL;
191                 }
192
193                 if ((where + 2 + data[1]) > size) {
194                         fr_strerror_printf("Option length overflows field at %u",
195                                            (unsigned int) (data - (uint8_t *) packet));
196                         return NULL;
197                 }
198
199                 if (data[0] == option) return data;
200
201                 if (data[0] == 52) { /* overload sname and/or file */
202                         overload = data[3];
203                 }
204
205                 where += data[1] + 2;
206                 data += data[1] + 2;
207         }
208
209         return NULL;
210 }
211
212 /*
213  *      DHCPv4 is only for IPv4.  Broadcast only works if udpfromto is
214  *      defined.
215  */
216 RADIUS_PACKET *fr_dhcp_recv(int sockfd)
217 {
218         uint32_t                magic;
219         struct sockaddr_storage src;
220         struct sockaddr_storage dst;
221         socklen_t               sizeof_src;
222         socklen_t               sizeof_dst;
223         RADIUS_PACKET           *packet;
224         uint16_t                port;
225         uint8_t                 *code;
226         ssize_t                 data_len;
227
228         packet = rad_alloc(NULL, 0);
229         if (!packet) {
230                 fr_strerror_printf("Failed allocating packet");
231                 return NULL;
232         }
233
234         packet->data = talloc_zero_array(packet, uint8_t, MAX_PACKET_SIZE);
235         if (!packet->data) {
236                 fr_strerror_printf("Out of memory");
237                 rad_free(&packet);
238                 return NULL;
239         }
240
241         packet->sockfd = sockfd;
242         sizeof_src = sizeof(src);
243 #ifdef WITH_UDPFROMTO
244         sizeof_dst = sizeof(dst);
245         data_len = recvfromto(sockfd, packet->data, MAX_PACKET_SIZE, 0,
246                               (struct sockaddr *)&src, &sizeof_src,
247                               (struct sockaddr *)&dst, &sizeof_dst);
248 #else
249         data_len = recvfrom(sockfd, packet->data, MAX_PACKET_SIZE, 0,
250                             (struct sockaddr *)&src, &sizeof_src);
251 #endif
252
253         if (data_len <= 0) {
254                 fr_strerror_printf("Failed reading DHCP socket: %s", fr_syserror(errno));
255                 rad_free(&packet);
256                 return NULL;
257         }
258
259         packet->data_len = data_len;
260         if (packet->data_len < MIN_PACKET_SIZE) {
261                 fr_strerror_printf("DHCP packet is too small (%zu < %d)",
262                                    packet->data_len, MIN_PACKET_SIZE);
263                 rad_free(&packet);
264                 return NULL;
265         }
266
267         if (packet->data_len > MAX_PACKET_SIZE) {
268                 fr_strerror_printf("DHCP packet is too large (%zx > %d)",
269                                    packet->data_len, MAX_PACKET_SIZE);
270                 rad_free(&packet);
271                 return NULL;
272         }
273
274         if (packet->data[1] != 1) {
275                 fr_strerror_printf("DHCP can only receive ethernet requests, not type %02x",
276                       packet->data[1]);
277                 rad_free(&packet);
278                 return NULL;
279         }
280
281         if (packet->data[2] != 6) {
282                 fr_strerror_printf("Ethernet HW length is wrong length %d",
283                         packet->data[2]);
284                 rad_free(&packet);
285                 return NULL;
286         }
287
288         memcpy(&magic, packet->data + 236, 4);
289         magic = ntohl(magic);
290         if (magic != DHCP_OPTION_MAGIC_NUMBER) {
291                 fr_strerror_printf("Cannot do BOOTP");
292                 rad_free(&packet);
293                 return NULL;
294         }
295
296         /*
297          *      Create unique keys for the packet.
298          */
299         memcpy(&magic, packet->data + 4, 4);
300         packet->id = ntohl(magic);
301
302         code = dhcp_get_option((dhcp_packet_t *) packet->data,
303                                packet->data_len, 53);
304         if (!code) {
305                 fr_strerror_printf("No message-type option was found in the packet");
306                 rad_free(&packet);
307                 return NULL;
308         }
309
310         if ((code[1] < 1) || (code[2] == 0) || (code[2] > 8)) {
311                 fr_strerror_printf("Unknown value for message-type option");
312                 rad_free(&packet);
313                 return NULL;
314         }
315
316         packet->code = code[2] | PW_DHCP_OFFSET;
317
318         /*
319          *      Create a unique vector from the MAC address and the
320          *      DHCP opcode.  This is a hack for the RADIUS
321          *      infrastructure in the rest of the server.
322          *
323          *      Note: packet->data[2] == 6, which is smaller than
324          *      sizeof(packet->vector)
325          *
326          *      FIXME:  Look for client-identifier in packet,
327          *      and use that, too?
328          */
329         memset(packet->vector, 0, sizeof(packet->vector));
330         memcpy(packet->vector, packet->data + 28, packet->data[2]);
331         packet->vector[packet->data[2]] = packet->code & 0xff;
332
333         /*
334          *      FIXME: for DISCOVER / REQUEST: src_port == dst_port + 1
335          *      FIXME: for OFFER / ACK       : src_port = dst_port - 1
336          */
337
338         /*
339          *      Unique keys are xid, client mac, and client ID?
340          */
341
342         /*
343          *      FIXME: More checks, like DHCP packet type?
344          */
345
346         sizeof_dst = sizeof(dst);
347
348 #ifndef WITH_UDPFROMTO
349         /*
350          *      This should never fail...
351          */
352         if (getsockname(sockfd, (struct sockaddr *) &dst, &sizeof_dst) < 0) {
353                 fr_strerror_printf("getsockname failed: %s", fr_syserror(errno));
354                 rad_free(&packet);
355                 return NULL;
356         }
357 #endif
358
359         fr_sockaddr2ipaddr(&dst, sizeof_dst, &packet->dst_ipaddr, &port);
360         packet->dst_port = port;
361
362         fr_sockaddr2ipaddr(&src, sizeof_src, &packet->src_ipaddr, &port);
363         packet->src_port = port;
364
365         if (fr_debug_flag > 1) {
366                 char type_buf[64];
367                 char const *name = type_buf;
368                 char src_ip_buf[256], dst_ip_buf[256];
369
370                 if ((packet->code >= PW_DHCP_DISCOVER) &&
371                     (packet->code <= PW_DHCP_INFORM)) {
372                         name = dhcp_message_types[packet->code - PW_DHCP_OFFSET];
373                 } else {
374                         snprintf(type_buf, sizeof(type_buf), "%d",
375                                  packet->code - PW_DHCP_OFFSET);
376                 }
377
378                 DEBUG("Received %s of Id %08x from %s:%d to %s:%d\n",
379                        name, (unsigned int) packet->id,
380                        inet_ntop(packet->src_ipaddr.af,
381                                  &packet->src_ipaddr.ipaddr,
382                                  src_ip_buf, sizeof(src_ip_buf)),
383                        packet->src_port,
384                        inet_ntop(packet->dst_ipaddr.af,
385                                  &packet->dst_ipaddr.ipaddr,
386                                  dst_ip_buf, sizeof(dst_ip_buf)),
387                        packet->dst_port);
388         }
389
390         return packet;
391 }
392
393
394 /*
395  *      Send a DHCP packet.
396  */
397 int fr_dhcp_send(RADIUS_PACKET *packet)
398 {
399         struct sockaddr_storage dst;
400         socklen_t               sizeof_dst;
401 #ifdef WITH_UDPFROMTO
402         struct sockaddr_storage src;
403         socklen_t               sizeof_src;
404
405         fr_ipaddr2sockaddr(&packet->src_ipaddr, packet->src_port,
406             &src, &sizeof_src);
407 #endif
408
409         fr_ipaddr2sockaddr(&packet->dst_ipaddr, packet->dst_port,
410                            &dst, &sizeof_dst);
411
412         if (packet->data_len == 0) {
413                 fr_strerror_printf("No data to send");
414                 return -1;
415         }
416
417         if (fr_debug_flag > 1) {
418                 char type_buf[64];
419                 char const *name = type_buf;
420 #ifdef WITH_UDPFROMTO
421                 char src_ip_buf[INET6_ADDRSTRLEN];
422 #endif
423                 char dst_ip_buf[INET6_ADDRSTRLEN];
424
425                 if ((packet->code >= PW_DHCP_DISCOVER) &&
426                     (packet->code <= PW_DHCP_INFORM)) {
427                         name = dhcp_message_types[packet->code - PW_DHCP_OFFSET];
428                 } else {
429                         snprintf(type_buf, sizeof(type_buf), "%d",
430                             packet->code - PW_DHCP_OFFSET);
431                 }
432
433                 DEBUG(
434 #ifdef WITH_UDPFROMTO
435                 "Sending %s Id %08x from %s:%d to %s:%d\n",
436 #else
437                 "Sending %s Id %08x to %s:%d\n",
438 #endif
439                    name, (unsigned int) packet->id,
440 #ifdef WITH_UDPFROMTO
441                    inet_ntop(packet->src_ipaddr.af, &packet->src_ipaddr.ipaddr, src_ip_buf, sizeof(src_ip_buf)),
442                    packet->src_port,
443 #endif
444                    inet_ntop(packet->dst_ipaddr.af, &packet->dst_ipaddr.ipaddr, dst_ip_buf, sizeof(dst_ip_buf)),
445                    packet->dst_port);
446         }
447
448 #ifndef WITH_UDPFROMTO
449         /*
450          *      Assume that the packet is encoded before sending it.
451          */
452         return sendto(packet->sockfd, packet->data, packet->data_len, 0,
453                       (struct sockaddr *)&dst, sizeof_dst);
454 #else
455
456         return sendfromto(packet->sockfd, packet->data, packet->data_len, 0,
457                           (struct sockaddr *)&src, sizeof_src,
458                           (struct sockaddr *)&dst, sizeof_dst);
459 #endif
460 }
461
462 static int fr_dhcp_attr2vp(RADIUS_PACKET *packet, VALUE_PAIR *vp, uint8_t const *p, size_t alen);
463
464 static int decode_tlv(RADIUS_PACKET *packet, VALUE_PAIR *tlv, uint8_t const *data, size_t data_len)
465 {
466         uint8_t const *p;
467         VALUE_PAIR *head, *vp;
468         vp_cursor_t cursor;
469
470         /*
471          *      Take a pass at parsing it.
472          */
473         p = data;
474         while (p < (data + data_len)) {
475                 if ((p + 2) > (data + data_len)) goto make_tlv;
476
477                 if ((p + p[1] + 2) > (data + data_len)) goto make_tlv;
478                 p += 2 + p[1];
479         }
480
481         /*
482          *      Got here... must be well formed.
483          */
484         head = NULL;
485         fr_cursor_init(&cursor, &head);
486
487         p = data;
488         while (p < (data + data_len)) {
489                 vp = paircreate(packet, tlv->da->attr | (p[0] << 8), DHCP_MAGIC_VENDOR);
490                 if (!vp) {
491                         pairfree(&head);
492                         goto make_tlv;
493                 }
494
495                 if (fr_dhcp_attr2vp(packet, vp, p + 2, p[1]) < 0) {
496                         pairfree(&head);
497                         goto make_tlv;
498                 }
499
500                 fr_cursor_insert(&cursor, vp);
501                 p += 2 + p[1];
502         }
503
504         /*
505          *      The caller allocated TLV, so we need to copy the FIRST
506          *      attribute over top of that.
507          *
508          *      This is a pretty awful hack, but we should be able to
509          *      clean it up when we get nested VPs so lets leave it for
510          *      now.
511          */
512         if (head) {
513                 /* Cleanup any old TLV data */
514                 talloc_free(tlv->vp_tlv);
515
516                 /* @fixme fragile */
517                 memcpy(tlv, head, sizeof(*tlv));
518
519                 /* If the VP has a talloced value we need to reparent it to the original TLV attribute */
520                 switch (head->da->type) {
521                         case PW_TYPE_STRING:
522                         case PW_TYPE_OCTETS:
523                         case PW_TYPE_TLV:
524                                 (void) talloc_steal(tlv, head->data.ptr);
525                         default:
526                                 break;
527                 }
528                 tlv->next = head->next;
529                 talloc_free(head);
530         }
531
532         return 0;
533
534 make_tlv:
535         tlv->vp_tlv = talloc_array(tlv, uint8_t, data_len);
536         if (!tlv->vp_tlv) {
537                 fr_strerror_printf("No memory");
538                 return -1;
539         }
540         memcpy(tlv->vp_tlv, data, data_len);
541         tlv->length = data_len;
542
543         return 0;
544 }
545
546
547 /*
548  *      Decode ONE value into a VP
549  */
550 static int fr_dhcp_attr2vp(RADIUS_PACKET *packet, VALUE_PAIR *vp, uint8_t const *p, size_t alen)
551 {
552         char *q;
553
554         switch (vp->da->type) {
555         case PW_TYPE_BYTE:
556                 if (alen != 1) goto raw;
557                 vp->vp_byte = p[0];
558                 break;
559
560         case PW_TYPE_SHORT:
561                 if (alen != 2) goto raw;
562                 memcpy(&vp->vp_short, p, 2);
563                 vp->vp_short = ntohs(vp->vp_short);
564                 break;
565
566         case PW_TYPE_INTEGER:
567                 if (alen != 4) goto raw;
568                 memcpy(&vp->vp_integer, p, 4);
569                 vp->vp_integer = ntohl(vp->vp_integer);
570                 break;
571
572         case PW_TYPE_IPADDR:
573                 if (alen != 4) goto raw;
574                 /*
575                  *      Keep value in Network Order!
576                  */
577                 memcpy(&vp->vp_ipaddr, p , 4);
578                 vp->length = 4;
579                 break;
580
581         case PW_TYPE_STRING:
582                 vp->vp_strvalue = q = talloc_array(vp, char, alen + 1);
583                 vp->type = VT_DATA;
584                 memcpy(q, p , alen);
585                 q[alen] = '\0';
586                 break;
587
588         case PW_TYPE_ETHERNET:
589                 memcpy(vp->vp_ether, p, sizeof(vp->vp_ether));
590                 vp->length = sizeof(vp->vp_ether);
591                 break;
592
593         /*
594          *      Value doesn't match up with attribute type, overwrite the
595          *      vp's original DICT_ATTR with an unknown one.
596          */
597         raw:
598                 if (pair2unknown(vp) < 0) return -1;
599
600         case PW_TYPE_OCTETS:
601                 if (alen > 253) return -1;
602                 pairmemcpy(vp, p, alen);
603                 break;
604
605         case PW_TYPE_TLV:
606                 return decode_tlv(packet, vp, p, alen);
607
608         default:
609                 fr_strerror_printf("Internal sanity check %d %d", vp->da->type, __LINE__);
610                 return -1;
611         } /* switch over type */
612
613         vp->length = alen;
614         return 0;
615 }
616
617 ssize_t fr_dhcp_decode_options(RADIUS_PACKET *packet,
618                                uint8_t const *data, size_t len, VALUE_PAIR **head)
619 {
620         int i;
621         VALUE_PAIR *vp;
622         vp_cursor_t cursor;
623         uint8_t const *p, *next;
624         next = data;
625
626         *head = NULL;
627         fr_cursor_init(&cursor, head);
628
629         /*
630          *      FIXME: This should also check sname && file fields.
631          *      See the dhcp_get_option() function above.
632          */
633         while (next < (data + len)) {
634                 int num_entries, alen;
635                 DICT_ATTR const *da;
636
637                 p = next;
638
639                 if (*p == 0) break;
640                 if (*p == 255) break; /* end of options signifier */
641                 if ((p + 2) > (data + len)) break;
642
643                 next = p + 2 + p[1];
644
645                 if (p[1] >= 253) {
646                         fr_strerror_printf("Attribute too long %u %u",
647                                            p[0], p[1]);
648                         continue;
649                 }
650
651                 da = dict_attrbyvalue(p[0], DHCP_MAGIC_VENDOR);
652                 if (!da) {
653                         fr_strerror_printf("Attribute not in our dictionary: %u",
654                                            p[0]);
655                         continue;
656                 }
657
658                 vp = NULL;
659                 num_entries = 1;
660                 alen = p[1];
661                 p += 2;
662
663                 /*
664                  *      Could be an array of bytes, integers, etc.
665                  */
666                 if (da->flags.array) {
667                         switch (da->type) {
668                         case PW_TYPE_BYTE:
669                                 num_entries = alen;
670                                 alen = 1;
671                                 break;
672
673                         case PW_TYPE_SHORT: /* ignore any trailing data */
674                                 num_entries = alen >> 1;
675                                 alen = 2;
676                                 break;
677
678                         case PW_TYPE_IPADDR:
679                         case PW_TYPE_INTEGER:
680                         case PW_TYPE_DATE: /* ignore any trailing data */
681                                 num_entries = alen >> 2;
682                                 alen = 4;
683                                 break;
684
685                         default:
686
687                                 break; /* really an internal sanity failure */
688                         }
689                 }
690
691                 /*
692                  *      Loop over all of the entries, building VPs
693                  */
694                 for (i = 0; i < num_entries; i++) {
695                         vp = pairmake(packet, NULL, da->name, NULL, T_OP_ADD);
696                         if (!vp) {
697                                 fr_strerror_printf("Cannot build attribute %s",
698                                         fr_strerror());
699                                 pairfree(head);
700                                 return -1;
701                         }
702
703                         /*
704                          *      Hack for ease of use.
705                          */
706                         if ((da->vendor == DHCP_MAGIC_VENDOR) &&
707                             (da->attr == 61) && !da->flags.array &&
708                             (alen == 7) && (*p == 1) && (num_entries == 1)) {
709                                 pairmemcpy(vp, p + 1, 6);
710
711                         } else if (fr_dhcp_attr2vp(packet, vp, p, alen) < 0) {
712                                 pairfree(&vp);
713                                 pairfree(head);
714                                 return -1;
715                         }
716
717                         fr_cursor_insert(&cursor, vp);
718
719                         for (vp = fr_cursor_current(&cursor);
720                              vp;
721                              vp = fr_cursor_next(&cursor)) {
722                                 debug_pair(vp);
723                         }
724                         p += alen;
725                 } /* loop over array entries */
726         } /* loop over the entire packet */
727
728         return next - data;
729 }
730
731 int fr_dhcp_decode(RADIUS_PACKET *packet)
732 {
733         size_t i;
734         uint8_t *p;
735         uint32_t giaddr;
736         vp_cursor_t cursor;
737         VALUE_PAIR *head = NULL, *vp;
738         VALUE_PAIR *maxms, *mtu;
739
740         fr_cursor_init(&cursor, &head);
741         p = packet->data;
742
743         if ((fr_debug_flag > 2) && fr_log_fp) {
744                 for (i = 0; i < packet->data_len; i++) {
745                         if ((i & 0x0f) == 0x00) fprintf(fr_log_fp, "%d: ", (int) i);
746                         fprintf(fr_log_fp, "%02x ", packet->data[i]);
747                         if ((i & 0x0f) == 0x0f) fprintf(fr_log_fp, "\n");
748                 }
749                 fprintf(fr_log_fp, "\n");
750         }
751
752         if (packet->data[1] != 1) {
753                 fr_strerror_printf("Packet is not Ethernet: %u",
754                       packet->data[1]);
755                 return -1;
756         }
757
758         /*
759          *      Decode the header.
760          */
761         for (i = 0; i < 14; i++) {
762                 char *q;
763
764                 vp = pairmake(packet, NULL, dhcp_header_names[i], NULL, T_OP_EQ);
765                 if (!vp) {
766                         char buffer[256];
767                         strlcpy(buffer, fr_strerror(), sizeof(buffer));
768                         fr_strerror_printf("Cannot decode packet due to internal error: %s", buffer);
769                         pairfree(&head);
770                         return -1;
771                 }
772
773                 /*
774                  *      If chaddr does != 6 bytes it's probably not ethernet, and we should store
775                  *      it as an opaque type (octets).
776                  */
777                 if ((i == 11) && (packet->data[1] == 1) && (packet->data[2] != sizeof(vp->vp_ether))) {
778                         DICT_ATTR const *da = dict_attrunknown(vp->da->attr, vp->da->vendor, true);
779                         if (!da) {
780                                 return -1;
781                         }
782                         vp->da = da;
783                 }
784
785                 switch (vp->da->type) {
786                 case PW_TYPE_BYTE:
787                         vp->vp_byte = p[0];
788                         vp->length = 1;
789                         break;
790
791                 case PW_TYPE_SHORT:
792                         vp->vp_short = (p[0] << 8) | p[1];
793                         vp->length = 2;
794                         break;
795
796                 case PW_TYPE_INTEGER:
797                         memcpy(&vp->vp_integer, p, 4);
798                         vp->vp_integer = ntohl(vp->vp_integer);
799                         vp->length = 4;
800                         break;
801
802                 case PW_TYPE_IPADDR:
803                         memcpy(&vp->vp_ipaddr, p, 4);
804                         vp->length = 4;
805                         break;
806
807                 case PW_TYPE_STRING:
808                         vp->vp_strvalue = q = talloc_array(vp, char, dhcp_header_sizes[i] + 1);
809                         vp->type = VT_DATA;
810                         memcpy(q, p, dhcp_header_sizes[i]);
811                         q[dhcp_header_sizes[i]] = '\0';
812                         vp->length = strlen(vp->vp_strvalue);
813                         if (vp->length == 0) {
814                                 pairfree(&vp);
815                         }
816                         break;
817
818                 case PW_TYPE_OCTETS:
819                         pairmemcpy(vp, p, packet->data[2]);
820                         break;
821
822                 case PW_TYPE_ETHERNET:
823                         memcpy(vp->vp_ether, p, sizeof(vp->vp_ether));
824                         vp->length = sizeof(vp->vp_ether);
825                         break;
826
827                 default:
828                         fr_strerror_printf("BAD TYPE %d", vp->da->type);
829                         pairfree(&vp);
830                         break;
831                 }
832                 p += dhcp_header_sizes[i];
833
834                 if (!vp) continue;
835
836                 debug_pair(vp);
837                 fr_cursor_insert(&cursor, vp);
838         }
839
840         /*
841          *      Loop over the options.
842          */
843
844         /*
845          *      Nothing uses tail after this call, if it does in the future
846          *      it'll need to find the new tail...
847          */
848         {
849                 VALUE_PAIR *options = NULL;
850
851                 if (fr_dhcp_decode_options(packet,
852                                            packet->data + 240, packet->data_len - 240,
853                                            &options) < 0) {
854                         return -1;
855                 }
856
857                 if (options) {
858                         fr_cursor_insert(&cursor, options);
859                 }
860         }
861
862         /*
863          *      If DHCP request, set ciaddr to zero.
864          */
865
866         /*
867          *      Set broadcast flag for broken vendors, but only if
868          *      giaddr isn't set.
869          */
870         memcpy(&giaddr, packet->data + 24, sizeof(giaddr));
871         if (giaddr == htonl(INADDR_ANY)) {
872                 /*
873                  *      DHCP Opcode is request
874                  */
875                 vp = pairfind(head, 256, DHCP_MAGIC_VENDOR, TAG_ANY);
876                 if (vp && vp->vp_integer == 3) {
877                         /*
878                          *      Vendor is "MSFT 98"
879                          */
880                         vp = pairfind(head, 63, DHCP_MAGIC_VENDOR, TAG_ANY);
881                         if (vp && (strcmp(vp->vp_strvalue, "MSFT 98") == 0)) {
882                                 vp = pairfind(head, 262, DHCP_MAGIC_VENDOR, TAG_ANY);
883
884                                 /*
885                                  *      Reply should be broadcast.
886                                  */
887                                 if (vp) vp->vp_integer |= 0x8000;
888                                 packet->data[10] |= 0x80;
889                         }
890                 }
891         }
892
893         /*
894          *      FIXME: Nuke attributes that aren't used in the normal
895          *      header for discover/requests.
896          */
897         packet->vps = head;
898
899         /*
900          *      Client can request a LARGER size, but not a smaller
901          *      one.  They also cannot request a size larger than MTU.
902          */
903         maxms = pairfind(packet->vps, 57, DHCP_MAGIC_VENDOR, TAG_ANY);
904         mtu = pairfind(packet->vps, 26, DHCP_MAGIC_VENDOR, TAG_ANY);
905
906         if (mtu && (mtu->vp_integer < DEFAULT_PACKET_SIZE)) {
907                 fr_strerror_printf("DHCP Fatal: Client says MTU is smaller than minimum permitted by the specification");
908                 return -1;
909         }
910
911         if (maxms && (maxms->vp_integer < DEFAULT_PACKET_SIZE)) {
912                 fr_strerror_printf("DHCP WARNING: Client says maximum message size is smaller than minimum permitted by the specification: fixing it");
913                 maxms->vp_integer = DEFAULT_PACKET_SIZE;
914         }
915
916         if (maxms && mtu && (maxms->vp_integer > mtu->vp_integer)) {
917                 fr_strerror_printf("DHCP WARNING: Client says MTU is smaller than maximum message size: fixing it");
918                 maxms->vp_integer = mtu->vp_integer;
919         }
920
921         if (fr_debug_flag) fflush(stdout);
922
923         return 0;
924 }
925
926
927 int8_t fr_dhcp_attr_cmp(void const *a, void const *b)
928 {
929         VALUE_PAIR const *my_a = a;
930         VALUE_PAIR const *my_b = b;
931
932         VERIFY_VP(my_a);
933         VERIFY_VP(my_b);
934
935         /*
936          *      DHCP-Message-Type is first, for simplicity.
937          */
938         if ((my_a->da->attr == 53) && (my_b->da->attr != 53)) return -1;
939
940         /*
941          *      Relay-Agent is last
942          */
943         if ((my_a->da->attr == 82) && (my_b->da->attr != 82)) return 1;
944
945         if (my_a->da->attr < my_b->da->attr) return -1;
946         if (my_a->da->attr > my_b->da->attr) return 1;
947
948         return 0;
949 }
950
951 /** Write DHCP option value into buffer
952  *
953  * Does not include DHCP option length or number.
954  *
955  * @param out where to write the DHCP option.
956  * @param outlen length of output buffer.
957  * @param vp option to encode.
958  * @return the length of data writen, -1 if out of buffer, -2 if unsupported type.
959  */
960 static ssize_t fr_dhcp_vp2attr(uint8_t *out, size_t outlen, VALUE_PAIR *vp)
961 {
962         uint32_t lvalue;
963         uint8_t *p = out;
964
965         if (outlen < vp->length) {
966                 return -1;
967         }
968
969         switch (vp->da->type) {
970         case PW_TYPE_BYTE:
971                 *p = vp->vp_byte;
972                 break;
973
974         case PW_TYPE_SHORT:
975                 p[0] = (vp->vp_short >> 8) & 0xff;
976                 p[1] = vp->vp_short & 0xff;
977                 break;
978
979         case PW_TYPE_INTEGER:
980                 lvalue = htonl(vp->vp_integer);
981                 memcpy(p, &lvalue, 4);
982                 break;
983
984         case PW_TYPE_IPADDR:
985                 memcpy(p, &vp->vp_ipaddr, 4);
986                 break;
987
988         case PW_TYPE_ETHERNET:
989                 memcpy(p, &vp->vp_ether, 6);
990                 break;
991
992         case PW_TYPE_STRING:
993                 memcpy(p, vp->vp_strvalue, vp->length);
994                 break;
995
996         case PW_TYPE_TLV:       /* FIXME: split it on 255? */
997                 memcpy(p, vp->vp_tlv, vp->length);
998                 break;
999
1000         case PW_TYPE_OCTETS:
1001                 memcpy(p, vp->vp_octets, vp->length);
1002                 break;
1003
1004         default:
1005                 fr_strerror_printf("Unsupported option type %d", vp->da->type);
1006                 return -2;
1007         }
1008
1009         return vp->length;
1010 }
1011
1012 /** Create a new TLV attribute from multiple sub options
1013  *
1014  * @param[in,out] ctx to allocate new attribute in.
1015  * @param[in,out] cursor should be set to the start of the list of TLV attributes.
1016  *   Will be advanced to the first non-TLV attribute.
1017  * @return attribute holding the concatenation of the values of the sub options.
1018  */
1019 static VALUE_PAIR *fr_dhcp_vp2suboption(TALLOC_CTX *ctx, vp_cursor_t *cursor)
1020 {
1021         ssize_t length;
1022         unsigned int parent;    /* Parent attribute of suboption */
1023         uint8_t attr = 0;
1024         uint8_t *p, *opt_len = NULL;
1025         vp_cursor_t to_pack;
1026         VALUE_PAIR *vp, *tlv;
1027
1028 #define SUBOPTION_PARENT(_x) (_x & 0xffff00ff)
1029 #define SUBOPTION_ATTR(_x) ((_x & 0xff00) >> 8)
1030
1031         vp = fr_cursor_current(cursor);
1032         if (!vp) return NULL;
1033
1034         parent = SUBOPTION_PARENT(vp->da->attr);
1035         tlv = paircreate(ctx, parent, DHCP_MAGIC_VENDOR);
1036         if (!tlv) return NULL;
1037
1038         fr_cursor_copy(&to_pack, cursor);
1039
1040         /*
1041          *  Loop over TLVs to determine how much memory we need to allocate
1042          *
1043          *  We advanced the cursor we were passed, so if we fail encoding,
1044          *  the cursor is at the right position for the next potentially
1045          *  encodable attr.
1046          */
1047         for (vp = fr_cursor_current(cursor);
1048              vp && vp->da->flags.is_tlv && !vp->da->flags.extended && (SUBOPTION_PARENT(vp->da->attr) == parent);
1049              vp = fr_cursor_next(cursor)) {
1050                 /*
1051                  *  If it's not an array type or is an array type, but is not the same
1052                  *  as the previous attribute, we add 2 for the additional sub-option
1053                  *  header bytes.
1054                  */
1055                 if (!vp->da->flags.array || (SUBOPTION_ATTR(vp->da->attr) != attr)) {
1056                         attr = SUBOPTION_ATTR(vp->da->attr);
1057                         tlv->length += 2;
1058                 }
1059                 tlv->length += vp->length;
1060         }
1061
1062         tlv->vp_tlv = talloc_array(tlv, uint8_t, tlv->length);
1063         if (!tlv->vp_tlv) {
1064                 talloc_free(tlv);
1065                 return NULL;
1066         }
1067         p = tlv->vp_tlv;
1068
1069         attr = 0;
1070         for (vp = fr_cursor_current(&to_pack);
1071              vp && vp->da->flags.is_tlv && !vp->da->flags.extended && (SUBOPTION_PARENT(vp->da->attr) == parent);
1072              vp = fr_cursor_next(&to_pack)) {
1073                 if (SUBOPTION_ATTR(vp->da->attr) == 0) {
1074                         fr_strerror_printf("Invalid attribute number 0");
1075                         return NULL;
1076                 }
1077
1078                 /* Don't write out the header, were packing array options */
1079                 if (!vp->da->flags.array || (attr != SUBOPTION_ATTR(vp->da->attr))) {
1080                         attr = SUBOPTION_ATTR(vp->da->attr);
1081                         *p++ = attr;
1082                         opt_len = p++;
1083                 }
1084
1085                 length = fr_dhcp_vp2attr(p, (tlv->vp_tlv + tlv->length) - p, vp);
1086                 if ((length < 0) || (length > 255)) {
1087                         talloc_free(tlv);
1088                         return NULL;
1089                 }
1090
1091                 fr_assert(opt_len);
1092                 *opt_len += length;
1093                 p += length;
1094         };
1095
1096         return tlv;
1097 }
1098
1099 /** Encode a DHCP option and any sub-options.
1100  *
1101  * @param out Where to write encoded DHCP attributes.
1102  * @param outlen Length of out buffer.
1103  * @param ctx to use for any allocated memory.
1104  * @param cursor with current VP set to the option to be encoded. Will be advanced to the next option to encode.
1105  * @return > 0 length of data written, < 0 error, 0 not valid option (skipping).
1106  */
1107 ssize_t fr_dhcp_encode_option(uint8_t *out, size_t outlen, TALLOC_CTX *ctx, vp_cursor_t *cursor)
1108 {
1109         VALUE_PAIR *vp;
1110         DICT_ATTR const *previous;
1111         uint8_t *opt_len, *p = out;
1112         size_t freespace = outlen;
1113         ssize_t len;
1114
1115         vp = fr_cursor_current(cursor);
1116         if (!vp) return -1;
1117
1118         if (vp->da->vendor != DHCP_MAGIC_VENDOR) goto next; /* not a DHCP option */
1119         if (vp->da->attr == 53) goto next; /* already done */
1120         if ((vp->da->attr > 255) && (DHCP_BASE_ATTR(vp->da->attr) != PW_DHCP_OPTION_82)) goto next;
1121
1122         if (vp->da->flags.extended) {
1123         next:
1124                 fr_strerror_printf("Attribute \"%s\" is not a DHCP option", vp->da->name);
1125                 fr_cursor_next(cursor);
1126                 return 0;
1127         }
1128
1129         /* Write out the option number */
1130         *(p++) = vp->da->attr & 0xff;
1131
1132         /* Pointer to the length field of the option */
1133         opt_len = p++;
1134
1135         /* Zero out the option's length field */
1136         *opt_len = 0;
1137
1138         /* We just consumed two bytes for the header */
1139         freespace -= 2;
1140
1141         /* DHCP options with the same number get coalesced into a single option */
1142         do {
1143                 VALUE_PAIR *tlv = NULL;
1144
1145                 /* Sub option */
1146                 if (vp->da->flags.is_tlv) {
1147                         /*
1148                          *  Coalesce TLVs into one sub-option.
1149                          *  Cursor will be advanced to next non-TLV attribute.
1150                          */
1151                         tlv = vp = fr_dhcp_vp2suboption(ctx, cursor);
1152
1153                         /*
1154                          *  Skip if there's an issue coalescing the sub-options.
1155                          *  Cursor will still have been advanced to next non-TLV attribute.
1156                          */
1157                         if (!tlv) return 0;
1158                 /*
1159                  *  If not calling fr_dhcp_vp2suboption() advance the cursor, so fr_cursor_current()
1160                  *  returns the next attribute.
1161                  */
1162                 } else {
1163                         fr_cursor_next(cursor);
1164                 }
1165
1166                 if ((*opt_len + vp->length) > 255) {
1167                         fr_strerror_printf("Skipping \"%s\": Option splitting not supported "
1168                                            "(option > 255 bytes)", vp->da->name);
1169                         talloc_free(tlv);
1170                         return 0;
1171                 }
1172
1173                 len = fr_dhcp_vp2attr(p, freespace, vp);
1174                 talloc_free(tlv);
1175                 if (len < 0) {
1176                         /* Failed encoding option */
1177                         return len;
1178                 }
1179
1180                 p += len;
1181                 *opt_len += len;
1182                 freespace -= len;
1183
1184                 previous = vp->da;
1185         } while ((vp = fr_cursor_current(cursor)) && (previous == vp->da) && vp->da->flags.array);
1186
1187         return p - out;
1188 }
1189
1190 int fr_dhcp_encode(RADIUS_PACKET *packet)
1191 {
1192         unsigned int i;
1193         uint8_t *p;
1194         vp_cursor_t cursor;
1195         VALUE_PAIR *vp;
1196         uint32_t lvalue;
1197         size_t dhcp_size;
1198         ssize_t len;
1199 #ifndef NDEBUG
1200         char const *name;
1201 #  ifdef WITH_UDPFROMTO
1202         char src_ip_buf[256];
1203 #  endif
1204         char dst_ip_buf[256];
1205 #endif
1206
1207         if (packet->data) return 0;
1208
1209         packet->data_len = MAX_PACKET_SIZE;
1210         packet->data = talloc_zero_array(packet, uint8_t, packet->data_len);
1211
1212         /* XXX Ugly ... should be set by the caller */
1213         if (packet->code == 0) packet->code = PW_DHCP_NAK;
1214
1215 #ifndef NDEBUG
1216         if ((packet->code >= PW_DHCP_DISCOVER) &&
1217             (packet->code <= PW_DHCP_INFORM)) {
1218                 name = dhcp_message_types[packet->code - PW_DHCP_OFFSET];
1219         } else {
1220                 name = "?Unknown?";
1221         }
1222
1223         DEBUG(
1224 #  ifdef WITH_UDPFROMTO
1225               "Encoding %s of id %08x from %s:%d to %s:%d\n",
1226 #  else
1227               "Encoding %s of id %08x to %s:%d\n",
1228 #  endif
1229               name, (unsigned int) packet->id,
1230 #  ifdef WITH_UDPFROMTO
1231               inet_ntop(packet->src_ipaddr.af,
1232                         &packet->src_ipaddr.ipaddr,
1233                         src_ip_buf, sizeof(src_ip_buf)),
1234               packet->src_port,
1235 #  endif
1236               inet_ntop(packet->dst_ipaddr.af,
1237                         &packet->dst_ipaddr.ipaddr,
1238                      dst_ip_buf, sizeof(dst_ip_buf)),
1239               packet->dst_port);
1240 #endif
1241
1242         p = packet->data;
1243
1244         /*
1245          *      @todo: Make this work again.
1246          */
1247 #if 0
1248         mms = DEFAULT_PACKET_SIZE; /* maximum message size */
1249
1250         /*
1251          *      Clients can request a LARGER size, but not a
1252          *      smaller one.  They also cannot request a size
1253          *      larger than MTU.
1254          */
1255
1256         /* DHCP-DHCP-Maximum-Msg-Size */
1257         vp = pairfind(packet->vps, 57, DHCP_MAGIC_VENDOR, TAG_ANY);
1258         if (vp && (vp->vp_integer > mms)) {
1259                 mms = vp->vp_integer;
1260
1261                 if (mms > MAX_PACKET_SIZE) mms = MAX_PACKET_SIZE;
1262         }
1263 #endif
1264
1265         vp = pairfind(packet->vps, 256, DHCP_MAGIC_VENDOR, TAG_ANY);
1266         if (vp) {
1267                 *p++ = vp->vp_integer & 0xff;
1268         } else {
1269                 *p++ = 1;       /* client message */
1270         }
1271
1272         /* DHCP-Hardware-Type */
1273         if ((vp = pairfind(packet->vps, 257, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1274                 *p++ = vp->vp_integer & 0xFF;
1275         } else {
1276                 *p++ = 1;               /* hardware type = ethernet */
1277         }
1278
1279         /* DHCP-Hardware-Address-Length */
1280         if ((vp = pairfind(packet->vps, 258, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1281                 *p++ = vp->vp_integer & 0xFF;
1282         } else {
1283                 *p++ = 6;               /* 6 bytes of ethernet */
1284         }
1285
1286         /* DHCP-Hop-Count */
1287         if ((vp = pairfind(packet->vps, 259, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1288                 *p = vp->vp_integer & 0xff;
1289         }
1290         p++;
1291
1292         /* DHCP-Transaction-Id */
1293         if ((vp = pairfind(packet->vps, 260, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1294                 lvalue = htonl(vp->vp_integer);
1295         } else {
1296                 lvalue = fr_rand();
1297         }
1298         memcpy(p, &lvalue, 4);
1299         p += 4;
1300
1301         /* DHCP-Number-of-Seconds */
1302         if ((vp = pairfind(packet->vps, 261, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1303                 lvalue = htonl(vp->vp_integer);
1304                 memcpy(p, &lvalue, 2);
1305         }
1306         p += 2;
1307
1308         /* DHCP-Flags */
1309         if ((vp = pairfind(packet->vps, 262, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1310                 lvalue = htons(vp->vp_integer);
1311                 memcpy(p, &lvalue, 2);
1312         }
1313         p += 2;
1314
1315         /* DHCP-Client-IP-Address */
1316         if ((vp = pairfind(packet->vps, 263, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1317                 memcpy(p, &vp->vp_ipaddr, 4);
1318         }
1319         p += 4;
1320
1321         /* DHCP-Your-IP-address */
1322         if ((vp = pairfind(packet->vps, 264, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1323                 lvalue = vp->vp_ipaddr;
1324         } else {
1325                 lvalue = htonl(INADDR_ANY);
1326         }
1327         memcpy(p, &lvalue, 4);
1328         p += 4;
1329
1330         /* DHCP-Server-IP-Address */
1331         vp = pairfind(packet->vps, 265, DHCP_MAGIC_VENDOR, TAG_ANY);
1332
1333         /* DHCP-DHCP-Server-Identifier */
1334         if (!vp && (vp = pairfind(packet->vps, 54, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1335                 lvalue = vp->vp_ipaddr;
1336         } else {
1337                 lvalue = htonl(INADDR_ANY);
1338         }
1339         memcpy(p, &lvalue, 4);
1340         p += 4;
1341
1342         /*
1343          *      DHCP-Gateway-IP-Address
1344          */
1345         if ((vp = pairfind(packet->vps, 266, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1346                 lvalue = vp->vp_ipaddr;
1347         } else {
1348                 lvalue = htonl(INADDR_ANY);
1349         }
1350         memcpy(p, &lvalue, 4);
1351         p += 4;
1352
1353         /* DHCP-Client-Hardware-Address */
1354         if ((vp = pairfind(packet->vps, 267, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1355                 if (vp->length == sizeof(vp->vp_ether)) {
1356                         memcpy(p, vp->vp_ether, vp->length);
1357                 } /* else ignore it */
1358         }
1359         p += DHCP_CHADDR_LEN;
1360
1361         /* DHCP-Server-Host-Name */
1362         if ((vp = pairfind(packet->vps, 268, DHCP_MAGIC_VENDOR, TAG_ANY))) {
1363                 if (vp->length > DHCP_SNAME_LEN) {
1364                         memcpy(p, vp->vp_strvalue, DHCP_SNAME_LEN);
1365                 } else {
1366                         memcpy(p, vp->vp_strvalue, vp->length);
1367                 }
1368         }
1369         p += DHCP_SNAME_LEN;
1370
1371         /*
1372          *      Copy over DHCP-Boot-Filename.
1373          *
1374          *      FIXME: This copy should be delayed until AFTER the options
1375          *      have been processed.  If there are too many options for
1376          *      the packet, then they go into the sname && filename fields.
1377          *      When that happens, the boot filename is passed as an option,
1378          *      instead of being placed verbatim in the filename field.
1379          */
1380
1381         /* DHCP-Boot-Filename */
1382         vp = pairfind(packet->vps, 269, DHCP_MAGIC_VENDOR, TAG_ANY);
1383         if (vp) {
1384                 if (vp->length > DHCP_FILE_LEN) {
1385                         memcpy(p, vp->vp_strvalue, DHCP_FILE_LEN);
1386                 } else {
1387                         memcpy(p, vp->vp_strvalue, vp->length);
1388                 }
1389         }
1390         p += DHCP_FILE_LEN;
1391
1392         /* DHCP magic number */
1393         lvalue = htonl(DHCP_OPTION_MAGIC_NUMBER);
1394         memcpy(p, &lvalue, 4);
1395         p += 4;
1396
1397         /*
1398          *      Print the header.
1399          */
1400         if (fr_debug_flag > 1) {
1401                 uint8_t *pp = p;
1402
1403                 p = packet->data;
1404
1405                 for (i = 0; i < 14; i++) {
1406                         char *q;
1407
1408                         vp = pairmake(packet, NULL,
1409                                       dhcp_header_names[i], NULL, T_OP_EQ);
1410                         if (!vp) {
1411                                 char buffer[256];
1412                                 strlcpy(buffer, fr_strerror(), sizeof(buffer));
1413                                 fr_strerror_printf("Cannot decode packet due to internal error: %s", buffer);
1414                                 return -1;
1415                         }
1416
1417                         switch (vp->da->type) {
1418                         case PW_TYPE_BYTE:
1419                                 vp->vp_byte = p[0];
1420                                 break;
1421
1422                         case PW_TYPE_SHORT:
1423                                 vp->vp_short = (p[0] << 8) | p[1];
1424                                 break;
1425
1426                         case PW_TYPE_INTEGER:
1427                                 memcpy(&vp->vp_integer, p, 4);
1428                                 vp->vp_integer = ntohl(vp->vp_integer);
1429                                 break;
1430
1431                         case PW_TYPE_IPADDR:
1432                                 memcpy(&vp->vp_ipaddr, p, 4);
1433                                 break;
1434
1435                         case PW_TYPE_STRING:
1436                                 vp->vp_strvalue = q = talloc_array(vp, char, dhcp_header_sizes[i] + 1);
1437                                 vp->type = VT_DATA;
1438                                 memcpy(q, p, dhcp_header_sizes[i]);
1439                                 q[dhcp_header_sizes[i]] = '\0';
1440                                 vp->length = strlen(vp->vp_strvalue);
1441                                 break;
1442
1443                         case PW_TYPE_OCTETS: /* only for Client HW Address */
1444                                 pairmemcpy(vp, p, packet->data[2]);
1445                                 break;
1446
1447                         case PW_TYPE_ETHERNET: /* only for Client HW Address */
1448                                 memcpy(vp->vp_ether, p, sizeof(vp->vp_ether));
1449                                 break;
1450
1451                         default:
1452                                 fr_strerror_printf("Internal sanity check failed %d %d", vp->da->type, __LINE__);
1453                                 pairfree(&vp);
1454                                 break;
1455                         }
1456
1457                         p += dhcp_header_sizes[i];
1458
1459                         debug_pair(vp);
1460                         pairfree(&vp);
1461                 }
1462
1463                 /*
1464                  *      Jump over DHCP magic number, response, etc.
1465                  */
1466                 p = pp;
1467         }
1468
1469         p[0] = 0x35;            /* DHCP-Message-Type */
1470         p[1] = 1;
1471         p[2] = packet->code - PW_DHCP_OFFSET;
1472         p += 3;
1473
1474
1475         /*
1476          *  Pre-sort attributes into contiguous blocks so that fr_dhcp_encode_option
1477          *  operates correctly. This changes the order of the list, but never mind...
1478          */
1479         pairsort(&packet->vps, fr_dhcp_attr_cmp);
1480         fr_cursor_init(&cursor, &packet->vps);
1481
1482         /*
1483          *  Each call to fr_dhcp_encode_option will encode one complete DHCP option,
1484          *  and sub options.
1485          */
1486         while ((vp = fr_cursor_current(&cursor))) {
1487                 len = fr_dhcp_encode_option(p, packet->data_len - (p - packet->data), packet, &cursor);
1488                 if (len < 0) break;
1489                 if (len > 0) debug_pair(vp);
1490                 p += len;
1491         };
1492
1493         p[0] = 0xff;            /* end of option option */
1494         p[1] = 0x00;
1495         p += 2;
1496         dhcp_size = p - packet->data;
1497
1498         /*
1499          *      FIXME: if (dhcp_size > mms),
1500          *        then we put the extra options into the "sname" and "file"
1501          *        fields, AND set the "end option option" in the "options"
1502          *        field.  We also set the "overload option",
1503          *        and put options into the "file" field, followed by
1504          *        the "sname" field.  Where each option is completely
1505          *        enclosed in the "file" and/or "sname" field, AND
1506          *        followed by the "end of option", and MUST be followed
1507          *        by padding option.
1508          *
1509          *      Yuck.  That sucks...
1510          */
1511         packet->data_len = dhcp_size;
1512
1513         if (packet->data_len < DEFAULT_PACKET_SIZE) {
1514                 memset(packet->data + packet->data_len, 0,
1515                        DEFAULT_PACKET_SIZE - packet->data_len);
1516                 packet->data_len = DEFAULT_PACKET_SIZE;
1517         }
1518
1519         if ((fr_debug_flag > 2) && fr_log_fp) {
1520                 fprintf(fr_log_fp, "DHCP Sending %zu bytes\n", packet->data_len);
1521                 for (i = 0; i < packet->data_len; i++) {
1522                         if ((i & 0x0f) == 0x00) fprintf(fr_log_fp, "%d: ", i);
1523                         fprintf(fr_log_fp, "%02x ", packet->data[i]);
1524                         if ((i & 0x0f) == 0x0f) fprintf(fr_log_fp, "\n");
1525                 }
1526                 fprintf(fr_log_fp, "\n");
1527         }
1528
1529         return 0;
1530 }
1531
1532 #ifdef SIOCSARP
1533 int fr_dhcp_add_arp_entry(int fd, char const *interface,
1534                           VALUE_PAIR *macaddr, VALUE_PAIR *ip)
1535 {
1536         struct sockaddr_in *sin;
1537         struct arpreq req;
1538
1539         if (!interface) {
1540                 fr_strerror_printf("No interface specified.  Cannot update ARP table");
1541                 return -1;
1542         }
1543
1544         if (!fr_assert(macaddr) ||
1545             !fr_assert((macaddr->da->type == PW_TYPE_ETHERNET) || (macaddr->da->type == PW_TYPE_OCTETS))) {
1546                 fr_strerror_printf("Wrong VP type (%s) for chaddr",
1547                                    fr_int2str(dict_attr_types, macaddr->da->type, "<invalid>"));
1548                 return -1;
1549         }
1550
1551         if (macaddr->length > sizeof(req.arp_ha.sa_data)) {
1552                 fr_strerror_printf("arp sa_data field too small (%zu octets) to contain chaddr (%zu octets)",
1553                                    sizeof(req.arp_ha.sa_data), macaddr->length);
1554                 return -1;
1555         }
1556
1557         memset(&req, 0, sizeof(req));
1558         sin = (struct sockaddr_in *) &req.arp_pa;
1559         sin->sin_family = AF_INET;
1560         sin->sin_addr.s_addr = ip->vp_ipaddr;
1561
1562         strlcpy(req.arp_dev, interface, sizeof(req.arp_dev));
1563
1564         if (macaddr->da->type == PW_TYPE_ETHERNET) {
1565                 memcpy(&req.arp_ha.sa_data, &macaddr->vp_ether, sizeof(macaddr->vp_ether));
1566         } else {
1567                 memcpy(&req.arp_ha.sa_data, macaddr->vp_octets, macaddr->length);
1568         }
1569
1570         req.arp_flags = ATF_COM;
1571         if (ioctl(fd, SIOCSARP, &req) < 0) {
1572                 fr_strerror_printf("Failed to add entry in ARP cache: %s (%d)", fr_syserror(errno), errno);
1573                 return -1;
1574         }
1575
1576         return 0;
1577 }
1578 #else
1579 int fr_dhcp_add_arp_entry(UNUSED int fd, UNUSED char const *interface,
1580                           UNUSED VALUE_PAIR *macaddr, UNUSED VALUE_PAIR *ip)
1581 {
1582         fr_strerror_printf("Adding ARP entry is unsupported on this system");
1583         return -1;
1584 }
1585 #endif