1 /* $OpenBSD: src/sbin/dhclient/options.c,v 1.39 2011/05/11 14:38:36 krw Exp $ */
3 /* DHCP options parsing and reassembly. */
6 * Copyright (c) 1995, 1996, 1997, 1998 The Internet Software Consortium.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of The Internet Software Consortium nor the names
19 * of its contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
23 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
24 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
27 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
30 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * This software has been written for the Internet Software Consortium
37 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
38 * Enterprises. To learn more about the Internet Software Consortium,
39 * see ``http://www.vix.com/isc''. To learn more about Vixie
40 * Enterprises, see ``http://www.vix.com''.
47 int parse_option_buffer(struct option_data *, unsigned char *, int);
50 * Parse options out of the specified buffer, storing addresses of
51 * option values in options and setting client->options_valid if
52 * no errors are encountered.
55 parse_option_buffer(struct option_data *options, unsigned char *buffer,
58 unsigned char *s, *t, *end = buffer + length;
61 for (s = buffer; *s != DHO_END && s < end; ) {
64 /* Pad options don't have a length - just skip them. */
65 if (code == DHO_PAD) {
71 * All options other than DHO_PAD and DHO_END have a
72 * one-byte length field.
80 * If the option claims to extend beyond the end of the buffer
81 * then mark the options buffer bad.
83 if (s + len + 2 > end) {
84 warning("option %s (%d) larger than buffer.",
85 dhcp_options[code].name, len);
86 warning("rejecting bogus offer.");
90 * If we haven't seen this option before, just make
91 * space for it and copy it there.
93 if (!options[code].data) {
94 if (!(t = calloc(1, len + 1)))
95 error("Can't allocate storage for option %s.",
96 dhcp_options[code].name);
98 * Copy and NUL-terminate the option (in case
99 * it's an ASCII string).
101 memcpy(t, &s[2], len);
103 options[code].len = len;
104 options[code].data = t;
107 * If it's a repeat, concatenate it to whatever
108 * we last saw. This is really only required
109 * for clients, but what the heck...
111 t = calloc(1, len + options[code].len + 1);
113 error("Can't expand storage for option %s.",
114 dhcp_options[code].name);
115 memcpy(t, options[code].data, options[code].len);
116 memcpy(t + options[code].len, &s[2], len);
117 options[code].len += len;
118 t[options[code].len] = 0;
119 free(options[code].data);
120 options[code].data = t;
129 * Copy as many options as fit in buflen bytes of buf. Return the
130 * offset of the start of the last option copied. A caller can check
131 * to see if it's DHO_END to decide if all the options were copied.
134 cons_options(struct option_data *options)
136 unsigned char *buf = client->packet.options;
137 int buflen = 576 - DHCP_FIXED_LEN;
138 int ix, incr, length, bufix, code, lastopt = -1;
142 memcpy(buf, DHCP_OPTIONS_COOKIE, 4);
143 if (options[DHO_DHCP_MESSAGE_TYPE].data) {
144 memcpy(&buf[4], DHCP_OPTIONS_MESSAGE_TYPE, 3);
145 buf[6] = options[DHO_DHCP_MESSAGE_TYPE].data[0];
150 for (code = DHO_SUBNET_MASK; code < DHO_END; code++) {
151 if (!options[code].data || code == DHO_DHCP_MESSAGE_TYPE)
154 length = options[code].len;
155 if (bufix + length + 2*((length+254)/255) >= buflen)
162 incr = length > 255 ? 255 : length;
166 memcpy(buf + bufix, options[code].data + ix, incr);
174 if (bufix < buflen) {
175 buf[bufix] = DHO_END;
183 * Format the specified option so that a human can easily read it.
186 pretty_print_option(unsigned int code, unsigned char *data, int len,
187 int emit_commas, int emit_quotes)
189 static char optbuf[32768]; /* XXX */
190 int hunksize = 0, numhunk = -1, numelem = 0;
191 char fmtbuf[32], *op = optbuf;
192 int i, j, k, opleft = sizeof(optbuf);
193 unsigned char *dp = data;
197 /* Code should be between 0 and 255. */
199 error("pretty_print_option: bad code %d", code);
206 /* Figure out the size of the data. */
207 for (i = 0; dhcp_options[code].format[i]; i++) {
209 warning("%s: Excess information in format string: %s",
210 dhcp_options[code].name,
211 &(dhcp_options[code].format[i]));
215 fmtbuf[i] = dhcp_options[code].format[i];
216 switch (dhcp_options[code].format[i]) {
222 warning("%s: no size indicator before A"
223 " in format string: %s",
224 dhcp_options[code].name,
225 dhcp_options[code].format);
226 return ("<fmt error>");
230 for (k = 0; k < len; k++)
231 if (!isascii(data[k]) ||
267 warning("%s: garbage in format string: %s",
268 dhcp_options[code].name,
269 &(dhcp_options[code].format[i]));
274 /* Check for too few bytes... */
275 if (hunksize > len) {
276 warning("%s: expecting at least %d bytes; got %d",
277 dhcp_options[code].name, hunksize, len);
280 /* Check for too many bytes... */
281 if (numhunk == -1 && hunksize < len)
282 warning("%s: %d extra bytes",
283 dhcp_options[code].name, len - hunksize);
285 /* If this is an array, compute its size. */
287 numhunk = len / hunksize;
288 /* See if we got an exact number of hunks. */
289 if (numhunk > 0 && numhunk * hunksize < len)
290 warning("%s: %d extra bytes at end of array",
291 dhcp_options[code].name, len - numhunk * hunksize);
293 /* A one-hunk array prints the same as a single hunk. */
297 /* Cycle through the array (or hunk) printing the data. */
298 for (i = 0; i < numhunk; i++) {
299 for (j = 0; j < numelem; j++) {
308 for (; dp < data + len; dp++) {
311 if (dp + 1 != data + len ||
320 } else if (*dp == '"' ||
341 foo.s_addr = htonl(getULong(dp));
342 opcount = strlcpy(op, inet_ntoa(foo), opleft);
343 if (opcount >= opleft)
349 opcount = snprintf(op, opleft, "%ld",
351 if (opcount >= opleft || opcount == -1)
357 opcount = snprintf(op, opleft, "%ld",
358 (unsigned long)getULong(dp));
359 if (opcount >= opleft || opcount == -1)
365 opcount = snprintf(op, opleft, "%d",
367 if (opcount >= opleft || opcount == -1)
373 opcount = snprintf(op, opleft, "%d",
375 if (opcount >= opleft || opcount == -1)
381 opcount = snprintf(op, opleft, "%d",
383 if (opcount >= opleft || opcount == -1)
388 opcount = snprintf(op, opleft, "%d", *dp++);
389 if (opcount >= opleft || opcount == -1)
394 opcount = snprintf(op, opleft, "%x", *dp++);
395 if (opcount >= opleft || opcount == -1)
400 opcount = strlcpy(op,
401 *dp++ ? "true" : "false", opleft);
402 if (opcount >= opleft)
407 warning("Unexpected format code %c", fmtbuf[j]);
414 if (j + 1 < numelem && comma != ':') {
419 if (i + 1 < numhunk) {
429 warning("dhcp option too large");
434 do_packet(int len, unsigned int from_port, struct iaddr from,
435 struct hardware *hfrom)
437 struct dhcp_packet *packet = &client->packet;
438 struct option_data options[256];
439 struct iaddrlist *ap;
440 void (*handler)(struct iaddr, struct option_data *);
442 int i, options_valid = 1;
444 if (packet->hlen > sizeof(packet->chaddr)) {
445 note("Discarding packet with invalid hlen.");
450 * Silently drop the packet if the client hardware address in the
451 * packet is not the hardware address of the interface being managed.
453 if ((ifi->hw_address.hlen != packet->hlen) ||
454 (memcmp(ifi->hw_address.haddr, packet->chaddr, packet->hlen)))
457 memset(options, 0, sizeof(options));
459 if (memcmp(&packet->options, DHCP_OPTIONS_COOKIE, 4) == 0) {
460 /* Parse the BOOTP/DHCP options field. */
461 options_valid = parse_option_buffer(options,
462 &packet->options[4], sizeof(packet->options) - 4);
464 /* Only DHCP packets have overload areas for options. */
466 options[DHO_DHCP_MESSAGE_TYPE].data &&
467 options[DHO_DHCP_OPTION_OVERLOAD].data) {
468 if (options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 1)
469 options_valid = parse_option_buffer(options,
470 (unsigned char *)packet->file,
471 sizeof(packet->file));
473 options[DHO_DHCP_OPTION_OVERLOAD].data[0] & 2)
474 options_valid = parse_option_buffer(options,
475 (unsigned char *)packet->sname,
476 sizeof(packet->sname));
483 if (options[DHO_DHCP_MESSAGE_TYPE].data) {
484 /* Always try a DHCP packet, even if a bad option was seen. */
485 switch (options[DHO_DHCP_MESSAGE_TYPE].data[0]) {
501 } else if (options_valid && packet->op == BOOTREPLY) {
506 if (handler && client->xid == client->packet.xid) {
507 if (hfrom->hlen == 6)
508 note("%s from %s (%s)", type, piaddr(from),
509 ether_ntoa((struct ether_addr *)hfrom->haddr));
511 note("%s from %s", type, piaddr(from));
515 for (ap = config->reject_list; ap && handler; ap = ap->next)
516 if (addr_eq(from, ap->addr)) {
517 note("%s from %s rejected.", type, piaddr(from));
522 (*handler)(from, options);
524 for (i = 0; i < 256; i++)
525 if (options[i].len && options[i].data)
526 free(options[i].data);