blob: 9fcbc84748538ef5f3b171d40cfa1d975940bfc8 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/*
3 * options.c -- DHCP server option packet tools
4 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
5 */
6
Mike Frysinger7031f622006-05-08 03:20:50 +00007#include "common.h"
8#include "dhcpd.h"
9#include "options.h"
Mike Frysinger7031f622006-05-08 03:20:50 +000010
11
12/* supported options are easily added here */
13struct dhcp_option dhcp_options[] = {
14 /* name[10] flags code */
15 {"subnet", OPTION_IP | OPTION_REQ, 0x01},
16 {"timezone", OPTION_S32, 0x02},
17 {"router", OPTION_IP | OPTION_LIST | OPTION_REQ, 0x03},
18 {"timesvr", OPTION_IP | OPTION_LIST, 0x04},
19 {"namesvr", OPTION_IP | OPTION_LIST, 0x05},
20 {"dns", OPTION_IP | OPTION_LIST | OPTION_REQ, 0x06},
21 {"logsvr", OPTION_IP | OPTION_LIST, 0x07},
22 {"cookiesvr", OPTION_IP | OPTION_LIST, 0x08},
23 {"lprsvr", OPTION_IP | OPTION_LIST, 0x09},
24 {"hostname", OPTION_STRING | OPTION_REQ, 0x0c},
25 {"bootsize", OPTION_U16, 0x0d},
26 {"domain", OPTION_STRING | OPTION_REQ, 0x0f},
27 {"swapsvr", OPTION_IP, 0x10},
28 {"rootpath", OPTION_STRING, 0x11},
29 {"ipttl", OPTION_U8, 0x17},
30 {"mtu", OPTION_U16, 0x1a},
31 {"broadcast", OPTION_IP | OPTION_REQ, 0x1c},
32 {"nisdomain", OPTION_STRING | OPTION_REQ, 0x28},
33 {"nissrv", OPTION_IP | OPTION_LIST | OPTION_REQ, 0x29},
34 {"ntpsrv", OPTION_IP | OPTION_LIST | OPTION_REQ, 0x2a},
35 {"wins", OPTION_IP | OPTION_LIST, 0x2c},
36 {"requestip", OPTION_IP, 0x32},
37 {"lease", OPTION_U32, 0x33},
38 {"dhcptype", OPTION_U8, 0x35},
39 {"serverid", OPTION_IP, 0x36},
40 {"message", OPTION_STRING, 0x38},
Denis Vlasenkoe175ff22006-09-26 17:41:00 +000041 {"vendorclass", OPTION_STRING, 0x3C},
42 {"clientid", OPTION_STRING, 0x3D},
Mike Frysinger7031f622006-05-08 03:20:50 +000043 {"tftp", OPTION_STRING, 0x42},
44 {"bootfile", OPTION_STRING, 0x43},
Denis Vlasenkoe175ff22006-09-26 17:41:00 +000045 {"userclass", OPTION_STRING, 0x4D},
Mike Frysinger7031f622006-05-08 03:20:50 +000046 {"", 0x00, 0x00}
47};
48
49/* Lengths of the different option types */
50int option_lengths[] = {
51 [OPTION_IP] = 4,
52 [OPTION_IP_PAIR] = 8,
53 [OPTION_BOOLEAN] = 1,
54 [OPTION_STRING] = 1,
55 [OPTION_U8] = 1,
56 [OPTION_U16] = 2,
57 [OPTION_S16] = 2,
58 [OPTION_U32] = 4,
59 [OPTION_S32] = 4
60};
61
62
63/* get an option with bounds checking (warning, not aligned). */
64uint8_t *get_option(struct dhcpMessage *packet, int code)
65{
66 int i, length;
67 uint8_t *optionptr;
68 int over = 0, done = 0, curr = OPTION_FIELD;
69
70 optionptr = packet->options;
71 i = 0;
72 length = 308;
73 while (!done) {
74 if (i >= length) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000075 bb_error_msg("bogus packet, option fields too long");
Mike Frysinger7031f622006-05-08 03:20:50 +000076 return NULL;
77 }
78 if (optionptr[i + OPT_CODE] == code) {
79 if (i + 1 + optionptr[i + OPT_LEN] >= length) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000080 bb_error_msg("bogus packet, option fields too long");
Mike Frysinger7031f622006-05-08 03:20:50 +000081 return NULL;
82 }
83 return optionptr + i + 2;
84 }
85 switch (optionptr[i + OPT_CODE]) {
86 case DHCP_PADDING:
87 i++;
88 break;
89 case DHCP_OPTION_OVER:
90 if (i + 1 + optionptr[i + OPT_LEN] >= length) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +000091 bb_error_msg("bogus packet, option fields too long");
Mike Frysinger7031f622006-05-08 03:20:50 +000092 return NULL;
93 }
94 over = optionptr[i + 3];
95 i += optionptr[OPT_LEN] + 2;
96 break;
97 case DHCP_END:
98 if (curr == OPTION_FIELD && over & FILE_FIELD) {
99 optionptr = packet->file;
100 i = 0;
101 length = 128;
102 curr = FILE_FIELD;
103 } else if (curr == FILE_FIELD && over & SNAME_FIELD) {
104 optionptr = packet->sname;
105 i = 0;
106 length = 64;
107 curr = SNAME_FIELD;
108 } else done = 1;
109 break;
110 default:
111 i += optionptr[OPT_LEN + i] + 2;
112 }
113 }
114 return NULL;
115}
116
117
118/* return the position of the 'end' option (no bounds checking) */
119int end_option(uint8_t *optionptr)
120{
121 int i = 0;
122
123 while (optionptr[i] != DHCP_END) {
124 if (optionptr[i] == DHCP_PADDING) i++;
125 else i += optionptr[i + OPT_LEN] + 2;
126 }
127 return i;
128}
129
130
131/* add an option string to the options (an option string contains an option code,
132 * length, then data) */
133int add_option_string(uint8_t *optionptr, uint8_t *string)
134{
135 int end = end_option(optionptr);
136
137 /* end position + string length + option code/length + end option */
138 if (end + string[OPT_LEN] + 2 + 1 >= 308) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000139 bb_error_msg("option 0x%02x did not fit into the packet",
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000140 string[OPT_CODE]);
Mike Frysinger7031f622006-05-08 03:20:50 +0000141 return 0;
142 }
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000143 DEBUG("adding option 0x%02x", string[OPT_CODE]);
Mike Frysinger7031f622006-05-08 03:20:50 +0000144 memcpy(optionptr + end, string, string[OPT_LEN] + 2);
145 optionptr[end + string[OPT_LEN] + 2] = DHCP_END;
146 return string[OPT_LEN] + 2;
147}
148
149
150/* add a one to four byte option to a packet */
151int add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data)
152{
153 struct dhcp_option *dh;
154
155 for (dh=dhcp_options; dh->code; dh++) {
156 if (dh->code == code) {
157 uint8_t option[6], len;
158
159 option[OPT_CODE] = code;
160 len = option_lengths[dh->flags & TYPE_MASK];
161 option[OPT_LEN] = len;
Rob Landleyc8b360e2006-05-31 22:24:33 +0000162 if (BB_BIG_ENDIAN) data <<= 8 * (4 - len);
Mike Frysinger7031f622006-05-08 03:20:50 +0000163 /* This memcpy is for broken processors which can't
164 * handle a simple unaligned 32-bit assignment */
165 memcpy(&option[OPT_DATA], &data, 4);
166 return add_option_string(optionptr, option);
167 }
168 }
169
Denis Vlasenkoea620772006-10-14 02:23:43 +0000170 bb_error_msg("cannot add option 0x%02x", code);
Mike Frysinger7031f622006-05-08 03:20:50 +0000171 return 0;
172}