dhcp: Make dhcp_msg_to_string() support a multiline format also.
[openvswitch] / lib / dhcp.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  *
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  *
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include <config.h>
35 #include "dhcp.h"
36 #include <arpa/inet.h>
37 #include <assert.h>
38 #include <ctype.h>
39 #include <errno.h>
40 #include <inttypes.h>
41 #include <stdlib.h>
42 #include "buffer.h"
43 #include "dynamic-string.h"
44
45 #define THIS_MODULE VLM_dhcp
46 #include "vlog.h"
47
48 /* Information about a DHCP argument type. */
49 struct arg_type {
50     const char *name;           /* Name. */
51     size_t size;                /* Number of bytes per argument. */
52 };
53
54 static struct arg_type types[] = {
55 #define DHCP_ARG(NAME, SIZE) [DHCP_ARG_##NAME] = {#NAME, SIZE},
56     DHCP_ARGS
57 #undef DHCP_ARG
58 };
59
60 /* Information about a DHCP option. */
61 struct option_class {
62     const char *name;           /* Name. */
63     enum dhcp_arg_type type;    /* Argument type. */
64     size_t min_args;            /* Minimum number of arguments. */
65     size_t max_args;            /* Maximum number of arguments. */
66 };
67
68 static struct option_class classes[DHCP_N_OPTIONS] = {
69     [0 ... 255] = {NULL, DHCP_ARG_UINT8, 0, SIZE_MAX},
70 #define DHCP_OPT(NAME, CODE, TYPE, MIN, MAX) \
71     [CODE] = {#NAME, DHCP_ARG_##TYPE, MIN, MAX},
72     DHCP_OPTS
73 #undef DHCP_OPT
74 };
75
76 static void copy_data(struct dhcp_msg *);
77
78 const char *
79 dhcp_type_name(enum dhcp_msg_type type)
80 {
81     switch (type) {
82 #define DHCP_MSG(NAME, VALUE) case NAME: return #NAME;
83         DHCP_MSGS
84 #undef DHCP_MSG
85     }
86     return "<<unknown DHCP message type>>";
87 }
88
89 /* Initializes 'msg' as a DHCP message.  The message should be freed with
90  * dhcp_msg_uninit() when it is no longer needed. */
91 void
92 dhcp_msg_init(struct dhcp_msg *msg)
93 {
94     memset(msg, 0, sizeof *msg);
95 }
96
97 /* Frees the contents of 'msg'.  The caller is responsible for freeing 'msg',
98  * if necessary. */
99 void
100 dhcp_msg_uninit(struct dhcp_msg *msg)
101 {
102     if (msg) {
103         free(msg->data);
104     }
105 }
106
107 /* Initializes 'dst' as a copy of 'src'.  'dst' (and 'src') should be freed
108  * with dhcp_msg_uninit() when it is no longer needed. */
109 void
110 dhcp_msg_copy(struct dhcp_msg *dst, const struct dhcp_msg *src)
111 {
112     *dst = *src;
113     dst->data_allocated = src->data_used;
114     dst->data_used = 0;
115     dst->data = xmalloc(dst->data_allocated);
116     copy_data(dst);
117 }
118
119 static void
120 prealloc_data(struct dhcp_msg *msg, size_t n)
121 {
122     size_t needed = msg->data_used + n;
123     if (needed > msg->data_allocated) {
124         uint8_t *old_data = msg->data;
125         msg->data_allocated = MAX(needed * 2, 64);
126         msg->data = xmalloc(msg->data_allocated);
127         if (old_data) {
128             copy_data(msg);
129             free(old_data);
130         }
131     }
132 }
133
134 static void *
135 append_data(struct dhcp_msg *msg, const void *data, size_t n)
136 {
137     uint8_t *p = &msg->data[msg->data_used];
138     memcpy(p, data, n);
139     msg->data_used += n;
140     return p;
141 }
142
143 static void
144 copy_data(struct dhcp_msg *msg)
145 {
146     int code;
147
148     msg->data_used = 0;
149     for (code = 0; code < DHCP_N_OPTIONS; code++) {
150         struct dhcp_option *opt = &msg->options[code];
151         if (opt->data) {
152             assert(msg->data_used + opt->n <= msg->data_allocated);
153             opt->data = append_data(msg, opt->data, opt->n);
154         }
155     }
156 }
157
158 /* Appends the 'n' bytes in 'data' to the DHCP option in 'msg' represented by
159  * 'code' (which must be in the range 0...DHCP_N_OPTIONS). */
160 void
161 dhcp_msg_put(struct dhcp_msg *msg, int code,
162              const void *data, size_t n)
163 {
164     struct dhcp_option *opt;
165     if (code == DHCP_CODE_PAD || code == DHCP_CODE_END) {
166         return;
167     }
168
169     opt = &msg->options[code];
170     prealloc_data(msg, n + opt->n);
171     if (opt->n) {
172         if (&msg->data[msg->data_used - opt->n] != opt->data) {
173             opt->data = append_data(msg, opt->data, opt->n);
174         }
175         append_data(msg, data, n);
176     } else {
177         opt->data = append_data(msg, data, n);
178     }
179     opt->n += n;
180 }
181
182 /* Appends the boolean value 'b', as a octet with value 0 (false) or 1 (true),
183  * to the DHCP option in 'msg' represented by 'code' (which must be in the
184  * range 0...DHCP_N_OPTIONS). */
185 void
186 dhcp_msg_put_bool(struct dhcp_msg *msg, int code, bool b_)
187 {
188     char b = !!b_;
189     dhcp_msg_put(msg, code, &b, 1);
190 }
191
192 /* Appends the number of seconds 'secs', as a 32-bit number in network byte
193  * order, to the DHCP option in 'msg' represented by 'code' (which must be in
194  * the range 0...DHCP_N_OPTIONS). */
195 void
196 dhcp_msg_put_secs(struct dhcp_msg *msg, int code, uint32_t secs_)
197 {
198     uint32_t secs = htonl(secs_);
199     dhcp_msg_put(msg, code, &secs, sizeof secs);
200 }
201
202 /* Appends the IP address 'ip', as a 32-bit number in network byte order, to
203  * the DHCP option in 'msg' represented by 'code' (which must be in the range
204  * 0...DHCP_N_OPTIONS). */
205 void
206 dhcp_msg_put_ip(struct dhcp_msg *msg, int code, uint32_t ip)
207 {
208     dhcp_msg_put(msg, code, &ip, sizeof ip);
209 }
210
211 /* Appends the ASCII string 'string', to the DHCP option in 'msg' represented
212  * by 'code' (which must be in the range 0...DHCP_N_OPTIONS). */
213 void
214 dhcp_msg_put_string(struct dhcp_msg *msg, int code, const char *string)
215 {
216     dhcp_msg_put(msg, code, string, strlen(string));
217 }
218
219 /* Appends octet 'x' to DHCP option in 'msg' represented by 'code' (which must
220  * be in the range 0...DHCP_N_OPTIONS). */
221 void
222 dhcp_msg_put_uint8(struct dhcp_msg *msg, int code, uint8_t x)
223 {
224     dhcp_msg_put(msg, code, &x, sizeof x);
225 }
226
227 /* Appends the 'n' octets in 'data' to DHCP option in 'msg' represented by
228  * 'code' (which must be in the range 0...DHCP_N_OPTIONS). */
229 void dhcp_msg_put_uint8_array(struct dhcp_msg *msg, int code,
230                               const uint8_t data[], size_t n)
231 {
232     dhcp_msg_put(msg, code, data, n);
233 }
234
235 /* Appends the 16-bit value in 'x', in network byte order, to DHCP option in
236  * 'msg' represented by 'code' (which must be in the range
237  * 0...DHCP_N_OPTIONS). */
238 void
239 dhcp_msg_put_uint16(struct dhcp_msg *msg, int code, uint16_t x_)
240 {
241     uint16_t x = htons(x_);
242     dhcp_msg_put(msg, code, &x, sizeof x);
243 }
244
245
246 /* Appends the 'n' 16-bit values in 'data', in network byte order, to DHCP
247  * option in 'msg' represented by 'code' (which must be in the range
248  * 0...DHCP_N_OPTIONS). */
249 void
250 dhcp_msg_put_uint16_array(struct dhcp_msg *msg, int code,
251                           const uint16_t data[], size_t n)
252 {
253     size_t i;
254
255     for (i = 0; i < n; i++) {
256         dhcp_msg_put_uint16(msg, code, data[i]);
257     }
258 }
259
260 /* Returns a pointer to the 'size' bytes starting at byte offset 'offset' in
261  * the DHCP option in 'msg' represented by 'code' (which must be in the range
262  * 0...DHCP_N_OPTIONS).  If the option has fewer than 'offset + size' bytes,
263  * returns a null pointer. */
264 const void *
265 dhcp_msg_get(const struct dhcp_msg *msg, int code,
266              size_t offset, size_t size)
267 {
268     const struct dhcp_option *opt = &msg->options[code];
269     return offset + size <= opt->n ? (const char *) opt->data + offset : NULL;
270 }
271
272 /* Stores in '*out' the boolean value at byte offset 'offset' in the DHCP
273  * option in 'msg' represented by 'code' (which must be in the range
274  * 0...DHCP_N_OPTIONS).  Returns true if successful, false if the option has
275  * fewer than 'offset + 1' bytes. */
276 bool
277 dhcp_msg_get_bool(const struct dhcp_msg *msg, int code, size_t offset,
278                   bool *out)
279 {
280     const uint8_t *uint8 = dhcp_msg_get(msg, code, offset, sizeof *uint8);
281     if (uint8) {
282         *out = *uint8 != 0;
283         return true;
284     } else {
285         return false;
286     }
287 }
288
289 /* Stores in '*out' the 32-bit count of seconds at offset 'offset' (in
290  * 4-byte increments) in the DHCP option in 'msg' represented by 'code'
291  * (which must be in the range 0...DHCP_N_OPTIONS).  The value is converted to
292  * native byte order.  Returns true if successful, false if the option has
293  * fewer than '4 * (offset + 1)' bytes. */
294 bool
295 dhcp_msg_get_secs(const struct dhcp_msg *msg, int code, size_t offset,
296                   uint32_t *out)
297 {
298     const uint32_t *uint32 = dhcp_msg_get(msg, code, offset * sizeof *uint32,
299                                           sizeof *uint32);
300     if (uint32) {
301         *out = ntohl(*uint32);
302         return true;
303     } else {
304         return false;
305     }
306 }
307
308 /* Stores in '*out' the IP address at offset 'offset' (in 4-byte increments) in
309  * the DHCP option in 'msg' represented by 'code' (which must be in the range
310  * 0...DHCP_N_OPTIONS).  The IP address is stored in network byte order.
311  * Returns true if successful, false if the option has fewer than '4 * (offset
312  * + 1)' bytes. */
313 bool
314 dhcp_msg_get_ip(const struct dhcp_msg *msg, int code,
315                 size_t offset, uint32_t *out)
316 {
317     const uint32_t *uint32 = dhcp_msg_get(msg, code, offset * sizeof *uint32,
318                                           sizeof *uint32);
319     if (uint32) {
320         *out = *uint32;
321         return true;
322     } else {
323         return false;
324     }
325 }
326
327 /* Returns the string in the DHCP option in 'msg' represented by 'code' (which
328  * must be in the range 0...DHCP_N_OPTIONS).  The caller is responsible for
329  * freeing the string with free().
330  *
331  * If 'msg' has no option represented by 'code', returns a null pointer.  (If
332  * the option was specified but had no content, then an empty string is
333  * returned, not a null pointer.) */
334 char *
335 dhcp_msg_get_string(const struct dhcp_msg *msg, int code)
336 {
337     const struct dhcp_option *opt = &msg->options[code];
338     return opt->data ? xmemdup0(opt->data, opt->n) : NULL;
339 }
340
341 /* Stores in '*out' the octet at byte offset 'offset' in the DHCP option in
342  * 'msg' represented by 'code' (which must be in the range 0...DHCP_N_OPTIONS).
343  * Returns true if successful, false if the option has fewer than 'offset + 1'
344  * bytes. */
345 bool
346 dhcp_msg_get_uint8(const struct dhcp_msg *msg, int code,
347                    size_t offset, uint8_t *out)
348 {
349     const uint8_t *uint8 = dhcp_msg_get(msg, code, offset, sizeof *uint8);
350     if (uint8) {
351         *out = *uint8;
352         return true;
353     } else {
354         return false;
355     }
356 }
357
358 /* Stores in '*out' the 16-bit value at offset 'offset' (in 2-byte units) in
359  * the DHCP option in 'msg' represented by 'code' (which must be in the range
360  * 0...DHCP_N_OPTIONS).  The value is converted to native byte order.  Returns
361  * true if successful, false if the option has fewer than '2 * (offset + 1)'
362  * bytes. */
363 bool
364 dhcp_msg_get_uint16(const struct dhcp_msg *msg, int code,
365                     size_t offset, uint16_t *out)
366 {
367     const uint16_t *uint16 = dhcp_msg_get(msg, code, offset * sizeof *uint16,
368                                           sizeof *uint16);
369     if (uint16) {
370         *out = ntohs(*uint16);
371         return true;
372     } else {
373         return false;
374     }
375 }
376
377 /* Appends a string representation of 'opt', which has the given 'code', to
378  * 'ds'. */
379 const char *
380 dhcp_option_to_string(const struct dhcp_option *opt, int code, struct ds *ds)
381 {
382     struct option_class *class = &classes[code];
383     const struct arg_type *type = &types[class->type];
384     size_t offset;
385
386     if (class->name) {
387         const char *cp;
388         for (cp = class->name; *cp; cp++) {
389             unsigned char c = *cp;
390             ds_put_char(ds, c == '_' ? '-' : tolower(c));
391         }
392     } else {
393         ds_put_format(ds, "option-%d", code);
394     }
395     ds_put_char(ds, '=');
396
397     if (class->type == DHCP_ARG_STRING) {
398         ds_put_char(ds, '"');
399     }
400     for (offset = 0; offset + type->size <= opt->n; offset += type->size) {
401         const void *p = (const char *) opt->data + offset;
402         const uint8_t *uint8 = p;
403         const uint32_t *uint32 = p;
404         const uint16_t *uint16 = p;
405         const char *cp = p;
406         unsigned char c;
407         unsigned int secs;
408
409         if (offset && class->type != DHCP_ARG_STRING) {
410             ds_put_cstr(ds, class->type == DHCP_ARG_UINT8 ? ":" : ", ");
411         }
412         switch (class->type) {
413         case DHCP_ARG_FIXED:
414             NOT_REACHED();
415         case DHCP_ARG_IP:
416             ds_put_format(ds, IP_FMT, IP_ARGS(uint32));
417             break;
418         case DHCP_ARG_UINT8:
419             ds_put_format(ds, "%02"PRIx8, *uint8);
420             break;
421         case DHCP_ARG_UINT16:
422             ds_put_format(ds, "%"PRIu16, ntohs(*uint16));
423             break;
424         case DHCP_ARG_UINT32:
425             ds_put_format(ds, "%"PRIu32, ntohl(*uint32));
426             break;
427         case DHCP_ARG_SECS:
428             secs = ntohl(*uint32);
429             if (secs >= 86400) {
430                 ds_put_format(ds, "%ud", secs / 86400);
431                 secs %= 86400;
432             }
433             if (secs >= 3600) {
434                 ds_put_format(ds, "%uh", secs / 3600);
435                 secs %= 3600;
436             }
437             if (secs >= 60) {
438                 ds_put_format(ds, "%umin", secs / 60);
439                 secs %= 60;
440             }
441             if (secs > 0 || *uint32 == 0) {
442                 ds_put_format(ds, "%us", secs);
443             }
444             break;
445         case DHCP_ARG_STRING:
446             c = *cp;
447             if (isprint(c) && (!isspace(c) || c == ' ') && c != '\\') {
448                 ds_put_char(ds, *cp);
449             } else {
450                 ds_put_format(ds, "\\%03o", (int) c);
451             }
452             break;
453         case DHCP_ARG_BOOLEAN:
454             if (*uint8 == 0) {
455                 ds_put_cstr(ds, "false");
456             } else if (*uint8 == 1) {
457                 ds_put_cstr(ds, "true");
458             } else {
459                 ds_put_format(ds, "**%"PRIu8"**", *uint8);
460             }
461             break;
462         }
463     }
464     if (class->type == DHCP_ARG_STRING) {
465         ds_put_char(ds, '"');
466     }
467     if (offset != opt->n) {
468         if (offset) {
469             ds_put_cstr(ds, ", ");
470         }
471         ds_put_cstr(ds, "**leftovers:");
472         for (; offset < opt->n; offset++) {
473             const void *p = (const char *) opt->data + offset;
474             const uint8_t *uint8 = p;
475             ds_put_format(ds, " %"PRIu8, *uint8);
476         }
477         ds_put_cstr(ds, "**");
478     }
479     return ds_cstr(ds);
480 }
481
482 /* Replaces 'ds' by a string representation of 'msg'.  If 'multiline' is
483  * false, 'ds' receives a single-line representation of 'msg', otherwise a
484  * multiline representation. */
485 const char *
486 dhcp_msg_to_string(const struct dhcp_msg *msg, bool multiline, struct ds *ds)
487 {
488     char separator = multiline ? '\n' : ' ';
489     int code;
490
491     ds_clear(ds);
492     ds_put_format(ds, "%s%c%s%cxid=%08"PRIx32"%csecs=%"PRIu16,
493                   (msg->op == DHCP_BOOTREQUEST ? "BOOTREQUEST"
494                    : msg->op == DHCP_BOOTREPLY ? "BOOTREPLY"
495                    : "<<bad DHCP op>>"),
496                   separator, dhcp_type_name(msg->type),
497                   separator, msg->xid,
498                   separator, msg->secs);
499     if (msg->flags) {
500         ds_put_format(ds, "%cflags=", separator);
501         if (msg->flags & DHCP_FLAGS_BROADCAST) {
502             ds_put_cstr(ds, "[BROADCAST]");
503         }
504         if (msg->flags & DHCP_FLAGS_MBZ) {
505             ds_put_format(ds, "[0x%04"PRIx16"]", msg->flags & DHCP_FLAGS_MBZ);
506         }
507     }
508     if (msg->ciaddr) {
509         ds_put_format(ds, "%cciaddr="IP_FMT, separator, IP_ARGS(&msg->ciaddr));
510     }
511     if (msg->yiaddr) {
512         ds_put_format(ds, "%cyiaddr="IP_FMT, separator, IP_ARGS(&msg->yiaddr));
513     }
514     if (msg->siaddr) {
515         ds_put_format(ds, "%csiaddr="IP_FMT, separator, IP_ARGS(&msg->siaddr));
516     }
517     if (msg->giaddr) {
518         ds_put_format(ds, "%cgiaddr="IP_FMT, separator, IP_ARGS(&msg->giaddr));
519     }
520     ds_put_format(ds, "%cchaddr="ETH_ADDR_FMT,
521                   separator, ETH_ADDR_ARGS(msg->chaddr));
522
523     for (code = 0; code < DHCP_N_OPTIONS; code++) {
524         const struct dhcp_option *opt = &msg->options[code];
525         if (opt->data) {
526             ds_put_char(ds, separator);
527             dhcp_option_to_string(opt, code, ds);
528         }
529     }
530     if (multiline) {
531         ds_put_char(ds, separator);
532     }
533     return ds_cstr(ds);
534 }
535
536 static void
537 parse_options(struct dhcp_msg *msg, const char *name, void *data, size_t size,
538               int option_offset)
539 {
540     struct buffer b;
541
542     b.data = data;
543     b.size = size;
544     for (;;) {
545         uint8_t *code, *len;
546         void *payload;
547
548         code = buffer_try_pull(&b, 1);
549         if (!code || *code == DHCP_CODE_END) {
550             break;
551         } else if (*code == DHCP_CODE_PAD) {
552             continue;
553         }
554
555         len = buffer_try_pull(&b, 1);
556         if (!len) {
557             VLOG_DBG("reached end of %s expecting length byte", name);
558             break;
559         }
560
561         payload = buffer_try_pull(&b, *len);
562         if (!payload) {
563             VLOG_DBG("expected %"PRIu8" bytes of option-%"PRIu8" payload "
564                      "with only %zu bytes of %s left",
565                      *len, *code, b.size, name);
566             break;
567         }
568         dhcp_msg_put(msg, *code + option_offset, payload, *len);
569     }
570 }
571
572 static void
573 validate_options(struct dhcp_msg *msg)
574 {
575     int code;
576
577     for (code = 0; code < DHCP_N_OPTIONS; code++) {
578         struct dhcp_option *opt = &msg->options[code];
579         struct option_class *class = &classes[code];
580         struct arg_type *type = &types[class->type];
581         if (opt->data) {
582             size_t n_elems = opt->n / type->size;
583             size_t remainder = opt->n % type->size;
584             bool ok = true;
585             if (remainder) {
586                 VLOG_DBG("%s option has %zu %zu-byte %s arguments with "
587                          "%zu bytes left over",
588                          class->name, n_elems, type->size,
589                          type->name, remainder);
590                 ok = false;
591             }
592             if (n_elems < class->min_args || n_elems > class->max_args) {
593                 VLOG_DBG("%s option has %zu %zu-byte %s arguments but "
594                          "between %zu and %zu are required",
595                          class->name, n_elems, type->size, type->name,
596                          class->min_args, class->max_args);
597                 ok = false;
598             }
599             if (!ok) {
600                 struct ds ds = DS_EMPTY_INITIALIZER;
601                 VLOG_DBG("%s option contains: %s",
602                          class->name, dhcp_option_to_string(opt, code, &ds));
603                 ds_destroy(&ds);
604
605                 opt->n = 0;
606                 opt->data = NULL;
607             }
608         }
609     }
610 }
611
612 /* Attempts to parse 'b' as a DHCP message.  If successful, initializes '*msg'
613  * to the parsed message and returns 0.  Otherwise, returns a positive errno
614  * value and '*msg' is indeterminate. */
615 int
616 dhcp_parse(struct dhcp_msg *msg, const struct buffer *b_)
617 {
618     struct buffer b = *b_;
619     struct dhcp_header *dhcp;
620     uint32_t *cookie;
621     uint8_t type;
622     char *vendor_class;
623
624     dhcp = buffer_try_pull(&b, sizeof *dhcp);
625     if (!dhcp) {
626         VLOG_DBG("buffer too small for DHCP header (%zu bytes)", b.size);
627         goto error;
628     }
629
630     if (dhcp->op != DHCP_BOOTREPLY && dhcp->op != DHCP_BOOTREQUEST) {
631         VLOG_DBG("invalid DHCP op (%"PRIu8")", dhcp->op);
632         goto error;
633     }
634     if (dhcp->htype != ARP_HRD_ETHERNET) {
635         VLOG_DBG("invalid DHCP htype (%"PRIu8")", dhcp->htype);
636         goto error;
637     }
638     if (dhcp->hlen != ETH_ADDR_LEN) {
639         VLOG_DBG("invalid DHCP hlen (%"PRIu8")", dhcp->hlen);
640         goto error;
641     }
642
643     dhcp_msg_init(msg);
644     msg->op = dhcp->op;
645     msg->xid = ntohl(dhcp->xid);
646     msg->secs = ntohs(dhcp->secs);
647     msg->flags = ntohs(dhcp->flags);
648     msg->ciaddr = dhcp->ciaddr;
649     msg->yiaddr = dhcp->yiaddr;
650     msg->siaddr = dhcp->siaddr;
651     msg->giaddr = dhcp->giaddr;
652     memcpy(msg->chaddr, dhcp->chaddr, ETH_ADDR_LEN);
653
654     cookie = buffer_try_pull(&b, sizeof cookie);
655     if (cookie) {
656         if (ntohl(*cookie) == DHCP_OPTS_COOKIE) {
657             uint8_t overload;
658
659             parse_options(msg, "options", b.data, b.size, 0);
660             if (dhcp_msg_get_uint8(msg, DHCP_CODE_OPTION_OVERLOAD,
661                                    0, &overload)) {
662                 if (overload & 1) {
663                     parse_options(msg, "file", dhcp->file, sizeof dhcp->file,
664                                   0);
665                 }
666                 if (overload & 2) {
667                     parse_options(msg, "sname",
668                                   dhcp->sname, sizeof dhcp->sname, 0);
669                 }
670             }
671         } else {
672             VLOG_DBG("bad DHCP options cookie: %08"PRIx32, ntohl(*cookie));
673         }
674     } else {
675         VLOG_DBG("DHCP packet has no options");
676     }
677
678     vendor_class = dhcp_msg_get_string(msg, DHCP_CODE_VENDOR_CLASS);
679     if (vendor_class && !strcmp(vendor_class, "OpenFlow")) {
680         parse_options(msg, "vendor-specific",
681                       msg->options[DHCP_CODE_VENDOR_SPECIFIC].data,
682                       msg->options[DHCP_CODE_VENDOR_SPECIFIC].n,
683                       DHCP_VENDOR_OFS);
684     }
685     free(vendor_class);
686
687     validate_options(msg);
688     if (!dhcp_msg_get_uint8(msg, DHCP_CODE_DHCP_MSG_TYPE, 0, &type)) {
689         VLOG_DBG("missing DHCP message type");
690         dhcp_msg_uninit(msg);
691         goto error;
692     }
693     msg->type = type;
694     return 0;
695
696 error:
697     if (VLOG_IS_DBG_ENABLED()) {
698         struct ds ds;
699
700         ds_init(&ds);
701         ds_put_hex_dump(&ds, b_->data, b_->size, 0, true);
702         VLOG_DBG("invalid DHCP message dump:\n%s", ds_cstr(&ds));
703
704         ds_clear(&ds);
705         dhcp_msg_to_string(msg, false, &ds);
706         VLOG_DBG("partially dissected DHCP message: %s", ds_cstr(&ds));
707
708         ds_destroy(&ds);
709     }
710     return EPROTO;
711 }
712
713 static void
714 put_option_chunk(struct buffer *b, uint8_t code, void *data, size_t n)
715 {
716     uint8_t header[2];
717
718     assert(n < 256);
719     header[0] = code;
720     header[1] = n;
721     buffer_put(b, header, sizeof header);
722     buffer_put(b, data, n);
723 }
724
725 static void
726 put_option(struct buffer *b, uint8_t code, void *data, size_t n)
727 {
728     if (data) {
729         if (n) {
730             /* Divide the data into chunks of 255 bytes or less.  Make
731              * intermediate chunks multiples of 8 bytes in case the
732              * recipient validates a chunk at a time instead of the
733              * concatenated value. */
734             uint8_t *p = data;
735             while (n) {
736                 size_t chunk = n > 255 ? 248 : n;
737                 put_option_chunk(b, code, p, chunk);
738                 p += chunk;
739                 n -= chunk;
740             }
741         } else {
742             /* Option should be present but carry no data. */
743             put_option_chunk(b, code, NULL, 0);
744         }
745     }
746 }
747
748 /* Appends to 'b' the DHCP message represented by 'msg'. */
749 void
750 dhcp_assemble(const struct dhcp_msg *msg, struct buffer *b)
751 {
752     const uint8_t end = DHCP_CODE_END;
753     uint32_t cookie = htonl(DHCP_OPTS_COOKIE);
754     struct buffer vnd_data;
755     struct dhcp_header dhcp;
756     int i;
757
758     memset(&dhcp, 0, sizeof dhcp);
759     dhcp.op = msg->op;
760     dhcp.htype = ARP_HRD_ETHERNET;
761     dhcp.hlen = ETH_ADDR_LEN;
762     dhcp.hops = 0;
763     dhcp.xid = htonl(msg->xid);
764     dhcp.secs = htons(msg->secs);
765     dhcp.flags = htons(msg->flags);
766     dhcp.ciaddr = msg->ciaddr;
767     dhcp.yiaddr = msg->yiaddr;
768     dhcp.siaddr = msg->siaddr;
769     dhcp.giaddr = msg->giaddr;
770     memcpy(dhcp.chaddr, msg->chaddr, ETH_ADDR_LEN);
771     buffer_put(b, &dhcp, sizeof dhcp);
772     buffer_put(b, &cookie, sizeof cookie);
773
774     /* Put DHCP message type first.  (The ordering is not required but it
775      * seems polite.) */
776     if (msg->type) {
777         uint8_t type = msg->type;
778         put_option(b, DHCP_CODE_DHCP_MSG_TYPE, &type, 1);
779     }
780
781     /* Put the standard options. */
782     for (i = 0; i < DHCP_VENDOR_OFS; i++) {
783         const struct dhcp_option *option = &msg->options[i];
784         put_option(b, i, option->data, option->n);
785     }
786
787     /* Assemble vendor specific option and put it. */
788     buffer_init(&vnd_data, 0);
789     for (i = DHCP_VENDOR_OFS; i < DHCP_N_OPTIONS; i++) {
790         const struct dhcp_option *option = &msg->options[i];
791         put_option(&vnd_data, i - DHCP_VENDOR_OFS, option->data, option->n);
792     }
793     if (vnd_data.size) {
794         put_option(b, DHCP_CODE_VENDOR_SPECIFIC, vnd_data.data, vnd_data.size);
795     }
796     buffer_uninit(&vnd_data);
797
798     /* Put end-of-options option. */
799     buffer_put(b, &end, sizeof end);
800 }
801