blob: 41b05b8555f1becbfeee52b2c6d34b2dd498d68f [file] [log] [blame]
Mike Frysinger7031f622006-05-08 03:20:50 +00001/* vi: set sw=4 ts=4: */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +01002/*
3 * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
Mike Frysinger7031f622006-05-08 03:20:50 +00004 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2, see file LICENSE in this source tree.
Mike Frysinger7031f622006-05-08 03:20:50 +00006 */
Mike Frysinger7031f622006-05-08 03:20:50 +00007#include "common.h"
Mike Frysinger7031f622006-05-08 03:20:50 +00008
Denys Vlasenkoac906fa2009-06-17 11:54:52 +02009#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
Denys Vlasenko6947d2c2009-06-17 13:24:03 +020010unsigned dhcp_verbose;
Denys Vlasenkoac906fa2009-06-17 11:54:52 +020011#endif
12
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000013const uint8_t MAC_BCAST_ADDR[6] ALIGN2 = {
14 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
15};
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010016
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +020017#if ENABLE_UDHCPC || ENABLE_UDHCPD
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010018/* Supported options are easily added here.
19 * See RFC2132 for more options.
20 * OPTION_REQ: these options are requested by udhcpc (unless -o).
21 */
Denys Vlasenkoc03602b2010-04-04 15:28:49 +020022const struct dhcp_optflag dhcp_optflags[] = {
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010023 /* flags code */
24 { OPTION_IP | OPTION_REQ, 0x01 }, /* DHCP_SUBNET */
25 { OPTION_S32 , 0x02 }, /* DHCP_TIME_OFFSET */
26 { OPTION_IP | OPTION_LIST | OPTION_REQ, 0x03 }, /* DHCP_ROUTER */
27// { OPTION_IP | OPTION_LIST , 0x04 }, /* DHCP_TIME_SERVER */
28// { OPTION_IP | OPTION_LIST , 0x05 }, /* DHCP_NAME_SERVER */
29 { OPTION_IP | OPTION_LIST | OPTION_REQ, 0x06 }, /* DHCP_DNS_SERVER */
30// { OPTION_IP | OPTION_LIST , 0x07 }, /* DHCP_LOG_SERVER */
31// { OPTION_IP | OPTION_LIST , 0x08 }, /* DHCP_COOKIE_SERVER */
32 { OPTION_IP | OPTION_LIST , 0x09 }, /* DHCP_LPR_SERVER */
Denys Vlasenko7280d202011-12-08 16:41:05 +010033 { OPTION_STRING_HOST | OPTION_REQ, 0x0c }, /* DHCP_HOST_NAME */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010034 { OPTION_U16 , 0x0d }, /* DHCP_BOOT_SIZE */
Denys Vlasenko7280d202011-12-08 16:41:05 +010035 { OPTION_STRING_HOST | OPTION_REQ, 0x0f }, /* DHCP_DOMAIN_NAME */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010036 { OPTION_IP , 0x10 }, /* DHCP_SWAP_SERVER */
37 { OPTION_STRING , 0x11 }, /* DHCP_ROOT_PATH */
38 { OPTION_U8 , 0x17 }, /* DHCP_IP_TTL */
39 { OPTION_U16 , 0x1a }, /* DHCP_MTU */
Denys Vlasenkocd4d78f2011-10-20 13:21:55 +020040//TODO: why do we request DHCP_BROADCAST? Can't we assume that
41//in the unlikely case it is different from typical N.N.255.255,
42//server would let us know anyway?
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010043 { OPTION_IP | OPTION_REQ, 0x1c }, /* DHCP_BROADCAST */
Vladislav Grishenko7d3a48a2010-09-26 00:15:12 +020044 { OPTION_IP_PAIR | OPTION_LIST , 0x21 }, /* DHCP_ROUTES */
Denys Vlasenko7280d202011-12-08 16:41:05 +010045 { OPTION_STRING_HOST , 0x28 }, /* DHCP_NIS_DOMAIN */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010046 { OPTION_IP | OPTION_LIST , 0x29 }, /* DHCP_NIS_SERVER */
47 { OPTION_IP | OPTION_LIST | OPTION_REQ, 0x2a }, /* DHCP_NTP_SERVER */
48 { OPTION_IP | OPTION_LIST , 0x2c }, /* DHCP_WINS_SERVER */
49 { OPTION_U32 , 0x33 }, /* DHCP_LEASE_TIME */
50 { OPTION_IP , 0x36 }, /* DHCP_SERVER_ID */
51 { OPTION_STRING , 0x38 }, /* DHCP_ERR_MESSAGE */
52//TODO: must be combined with 'sname' and 'file' handling:
Denys Vlasenko7280d202011-12-08 16:41:05 +010053 { OPTION_STRING_HOST , 0x42 }, /* DHCP_TFTP_SERVER_NAME */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010054 { OPTION_STRING , 0x43 }, /* DHCP_BOOT_FILE */
55//TODO: not a string, but a set of LASCII strings:
56// { OPTION_STRING , 0x4D }, /* DHCP_USER_CLASS */
57#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +020058 { OPTION_DNS_STRING | OPTION_LIST , 0x77 }, /* DHCP_DOMAIN_SEARCH */
59 { OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010060#endif
Michael McTernanee0f4442011-12-16 17:10:09 +010061 { OPTION_STATIC_ROUTES | OPTION_LIST , 0x79 }, /* DHCP_STATIC_ROUTES */
Nigel Hathawayfb6b1732011-04-26 02:50:00 +020062#if ENABLE_FEATURE_UDHCP_8021Q
63 { OPTION_U16 , 0x84 }, /* DHCP_VLAN_ID */
64 { OPTION_U8 , 0x85 }, /* DHCP_VLAN_PRIORITY */
65#endif
Jeremy Kerrd3092c92013-11-12 11:18:26 +010066 { OPTION_STRING , 0xd1 }, /* DHCP_PXE_CONF_FILE */
Jeremy Kerrb8ffd112014-07-15 11:03:17 +080067 { OPTION_STRING , 0xd2 }, /* DHCP_PXE_PATH_PREFIX */
Jeremy Kerrfc267212018-07-03 16:36:13 +100068 { OPTION_U32 , 0xd3 }, /* DHCP_REBOOT_TIME */
Denys Vlasenko1f56e512011-10-19 22:40:35 +020069 { OPTION_6RD , 0xd4 }, /* DHCP_6RD */
Michael McTernanee0f4442011-12-16 17:10:09 +010070 { OPTION_STATIC_ROUTES | OPTION_LIST , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010071 { OPTION_STRING , 0xfc }, /* DHCP_WPAD */
72
73 /* Options below have no match in dhcp_option_strings[],
74 * are not passed to dhcpc scripts, and cannot be specified
75 * with "option XXX YYY" syntax in dhcpd config file.
76 * These entries are only used internally by udhcp[cd]
77 * to correctly encode options into packets.
78 */
79
80 { OPTION_IP , 0x32 }, /* DHCP_REQUESTED_IP */
81 { OPTION_U8 , 0x35 }, /* DHCP_MESSAGE_TYPE */
82 { OPTION_U16 , 0x39 }, /* DHCP_MAX_SIZE */
Denys Vlasenkod3c5ab72010-10-20 02:03:30 +020083//looks like these opts will work just fine even without these defs:
84// { OPTION_STRING , 0x3c }, /* DHCP_VENDOR */
85// /* not really a string: */
86// { OPTION_STRING , 0x3d }, /* DHCP_CLIENT_ID */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010087 { 0, 0 } /* zeroed terminating entry */
88};
89
90/* Used for converting options from incoming packets to env variables
Denys Vlasenkob181ca72017-01-29 18:48:58 +010091 * for udhcpc script, and for setting options for udhcpd via
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010092 * "opt OPTION_NAME OPTION_VALUE" directives in udhcpd.conf file.
93 */
Denys Vlasenkoc03602b2010-04-04 15:28:49 +020094/* Must match dhcp_optflags[] order */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +010095const char dhcp_option_strings[] ALIGN1 =
Denys Vlasenko6d267442018-07-04 15:44:22 +020096 "subnet" "\0" /* DHCP_SUBNET */
97 "timezone" "\0" /* DHCP_TIME_OFFSET */
98 "router" "\0" /* DHCP_ROUTER */
99// "timesrv" "\0" /* DHCP_TIME_SERVER */
100// "namesrv" "\0" /* DHCP_NAME_SERVER */
101 "dns" "\0" /* DHCP_DNS_SERVER */
102// "logsrv" "\0" /* DHCP_LOG_SERVER */
103// "cookiesrv" "\0" /* DHCP_COOKIE_SERVER */
104 "lprsrv" "\0" /* DHCP_LPR_SERVER */
105 "hostname" "\0" /* DHCP_HOST_NAME */
106 "bootsize" "\0" /* DHCP_BOOT_SIZE */
107 "domain" "\0" /* DHCP_DOMAIN_NAME */
108 "swapsrv" "\0" /* DHCP_SWAP_SERVER */
109 "rootpath" "\0" /* DHCP_ROOT_PATH */
110 "ipttl" "\0" /* DHCP_IP_TTL */
111 "mtu" "\0" /* DHCP_MTU */
112 "broadcast" "\0" /* DHCP_BROADCAST */
113 "routes" "\0" /* DHCP_ROUTES */
114 "nisdomain" "\0" /* DHCP_NIS_DOMAIN */
115 "nissrv" "\0" /* DHCP_NIS_SERVER */
116 "ntpsrv" "\0" /* DHCP_NTP_SERVER */
117 "wins" "\0" /* DHCP_WINS_SERVER */
118 "lease" "\0" /* DHCP_LEASE_TIME */
119 "serverid" "\0" /* DHCP_SERVER_ID */
120 "message" "\0" /* DHCP_ERR_MESSAGE */
121 "tftp" "\0" /* DHCP_TFTP_SERVER_NAME*/
122 "bootfile" "\0" /* DHCP_BOOT_FILE */
123// "userclass" "\0" /* DHCP_USER_CLASS */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100124#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko6d267442018-07-04 15:44:22 +0200125 "search" "\0" /* DHCP_DOMAIN_SEARCH */
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200126// doesn't work in udhcpd.conf since OPTION_SIP_SERVERS
127// is not handled yet by "string->option" conversion code:
Denys Vlasenko6d267442018-07-04 15:44:22 +0200128 "sipsrv" "\0" /* DHCP_SIP_SERVERS */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100129#endif
Denys Vlasenko6d267442018-07-04 15:44:22 +0200130 "staticroutes" "\0" /* DHCP_STATIC_ROUTES */
Nigel Hathawayfb6b1732011-04-26 02:50:00 +0200131#if ENABLE_FEATURE_UDHCP_8021Q
Denys Vlasenko6d267442018-07-04 15:44:22 +0200132 "vlanid" "\0" /* DHCP_VLAN_ID */
133 "vlanpriority" "\0" /* DHCP_VLAN_PRIORITY */
Nigel Hathawayfb6b1732011-04-26 02:50:00 +0200134#endif
Denys Vlasenko6d267442018-07-04 15:44:22 +0200135 "pxeconffile" "\0" /* DHCP_PXE_CONF_FILE */
136 "pxepathprefix" "\0" /* DHCP_PXE_PATH_PREFIX */
137 "reboottime" "\0" /* DHCP_REBOOT_TIME */
138 "ip6rd" "\0" /* DHCP_6RD */
139 "msstaticroutes" "\0" /* DHCP_MS_STATIC_ROUTES*/
140 "wpad" "\0" /* DHCP_WPAD */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100141 ;
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200142#endif
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100143
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200144/* Lengths of the option types in binary form.
145 * Used by:
146 * udhcp_str2optset: to determine how many bytes to allocate.
147 * xmalloc_optname_optval: to estimate string length
148 * from binary option length: (option[LEN] / dhcp_option_lengths[opt_type])
Denys Vlasenko352f79a2016-02-26 15:54:56 +0100149 * is the number of elements, multiply it by one element's string width
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200150 * (len_of_option_as_string[opt_type]) and you know how wide string you need.
151 */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100152const uint8_t dhcp_option_lengths[] ALIGN1 = {
153 [OPTION_IP] = 4,
154 [OPTION_IP_PAIR] = 8,
155// [OPTION_BOOLEAN] = 1,
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200156 [OPTION_STRING] = 1, /* ignored by udhcp_str2optset */
Denys Vlasenko7280d202011-12-08 16:41:05 +0100157 [OPTION_STRING_HOST] = 1, /* ignored by udhcp_str2optset */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100158#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200159 [OPTION_DNS_STRING] = 1, /* ignored by both udhcp_str2optset and xmalloc_optname_optval */
160 [OPTION_SIP_SERVERS] = 1,
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100161#endif
162 [OPTION_U8] = 1,
163 [OPTION_U16] = 2,
164// [OPTION_S16] = 2,
165 [OPTION_U32] = 4,
166 [OPTION_S32] = 4,
167 /* Just like OPTION_STRING, we use minimum length here */
168 [OPTION_STATIC_ROUTES] = 5,
Denys Vlasenko352f79a2016-02-26 15:54:56 +0100169 [OPTION_6RD] = 12, /* ignored by udhcp_str2optset */
170 /* The above value was chosen as follows:
171 * len_of_option_as_string[] for this option is >60: it's a string of the form
172 * "32 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 ".
173 * Each additional ipv4 address takes 4 bytes in binary option and appends
174 * another "255.255.255.255 " 16-byte string. We can set [OPTION_6RD] = 4
175 * but this severely overestimates string length: instead of 16 bytes,
176 * it adds >60 for every 4 bytes in binary option.
177 * We cheat and declare here that option is in units of 12 bytes.
178 * This adds more than 60 bytes for every three ipv4 addresses - more than enough.
179 * (Even 16 instead of 12 should work, but let's be paranoid).
180 */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100181};
182
183
184#if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
185static void log_option(const char *pfx, const uint8_t *opt)
186{
187 if (dhcp_verbose >= 2) {
188 char buf[256 * 2 + 2];
189 *bin2hex(buf, (void*) (opt + OPT_DATA), opt[OPT_LEN]) = '\0';
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200190 bb_error_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100191 }
192}
193#else
194# define log_option(pfx, opt) ((void)0)
195#endif
196
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200197unsigned FAST_FUNC udhcp_option_idx(const char *name, const char *option_strings)
Denys Vlasenko9107b632010-03-27 23:23:41 +0100198{
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200199 int n = index_in_strings(option_strings, name);
Denys Vlasenko9107b632010-03-27 23:23:41 +0100200 if (n >= 0)
201 return n;
202
203 {
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200204 char *buf, *d;
205 const char *s;
206
207 s = option_strings;
208 while (*s)
209 s += strlen(s) + 1;
210
211 d = buf = xzalloc(s - option_strings);
212 s = option_strings;
213 while (!(*s == '\0' && s[1] == '\0')) {
Denys Vlasenko9107b632010-03-27 23:23:41 +0100214 *d++ = (*s == '\0' ? ' ' : *s);
215 s++;
216 }
Denys Vlasenko9107b632010-03-27 23:23:41 +0100217 bb_error_msg_and_die("unknown option '%s', known options: %s", name, buf);
218 }
219}
220
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200221/* Get an option with bounds checking (warning, result is not aligned) */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100222uint8_t* FAST_FUNC udhcp_get_option(struct dhcp_packet *packet, int code)
223{
224 uint8_t *optionptr;
225 int len;
226 int rem;
227 int overload = 0;
228 enum {
229 FILE_FIELD101 = FILE_FIELD * 0x101,
230 SNAME_FIELD101 = SNAME_FIELD * 0x101,
231 };
232
233 /* option bytes: [code][len][data1][data2]..[dataLEN] */
234 optionptr = packet->options;
235 rem = sizeof(packet->options);
236 while (1) {
237 if (rem <= 0) {
Brian Foleyf9beeb22016-10-25 14:20:55 +0200238 complain:
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100239 bb_error_msg("bad packet, malformed option field");
240 return NULL;
241 }
Brian Foleyf9beeb22016-10-25 14:20:55 +0200242
243 /* DHCP_PADDING and DHCP_END have no [len] byte */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100244 if (optionptr[OPT_CODE] == DHCP_PADDING) {
245 rem--;
246 optionptr++;
247 continue;
248 }
249 if (optionptr[OPT_CODE] == DHCP_END) {
250 if ((overload & FILE_FIELD101) == FILE_FIELD) {
251 /* can use packet->file, and didn't look at it yet */
252 overload |= FILE_FIELD101; /* "we looked at it" */
253 optionptr = packet->file;
254 rem = sizeof(packet->file);
255 continue;
256 }
257 if ((overload & SNAME_FIELD101) == SNAME_FIELD) {
258 /* can use packet->sname, and didn't look at it yet */
259 overload |= SNAME_FIELD101; /* "we looked at it" */
260 optionptr = packet->sname;
261 rem = sizeof(packet->sname);
262 continue;
263 }
264 break;
265 }
Brian Foleyf9beeb22016-10-25 14:20:55 +0200266
267 if (rem <= OPT_LEN)
268 goto complain; /* complain and return NULL */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100269 len = 2 + optionptr[OPT_LEN];
270 rem -= len;
271 if (rem < 0)
Brian Foleyf9beeb22016-10-25 14:20:55 +0200272 goto complain; /* complain and return NULL */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100273
274 if (optionptr[OPT_CODE] == code) {
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +0100275 if (optionptr[OPT_LEN] == 0) {
276 /* So far no valid option with length 0 known.
277 * Having this check means that searching
278 * for DHCP_MESSAGE_TYPE need not worry
279 * that returned pointer might be unsafe
280 * to dereference.
281 */
282 goto complain; /* complain and return NULL */
283 }
Denys Vlasenkof75a96d2016-03-30 18:49:45 +0200284 log_option("option found", optionptr);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100285 return optionptr + OPT_DATA;
286 }
287
288 if (optionptr[OPT_CODE] == DHCP_OPTION_OVERLOAD) {
Denys Vlasenkof11c6982016-10-25 14:25:52 +0200289 if (len >= 3)
290 overload |= optionptr[OPT_DATA];
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100291 /* fall through */
292 }
293 optionptr += len;
294 }
295
296 /* log3 because udhcpc uses it a lot - very noisy */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200297 log3("option 0x%02x not found", code);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100298 return NULL;
299}
300
Denys Vlasenko6d3b4bb2018-12-17 18:07:18 +0100301uint8_t* FAST_FUNC udhcp_get_option32(struct dhcp_packet *packet, int code)
302{
303 uint8_t *r = udhcp_get_option(packet, code);
304 if (r) {
305 if (r[-1] != 4)
306 r = NULL;
307 }
308 return r;
309}
310
Denys Vlasenkob7d19cc2010-05-30 23:41:23 +0200311/* Return the position of the 'end' option (no bounds checking) */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100312int FAST_FUNC udhcp_end_option(uint8_t *optionptr)
313{
314 int i = 0;
315
316 while (optionptr[i] != DHCP_END) {
317 if (optionptr[i] != DHCP_PADDING)
318 i += optionptr[i + OPT_LEN] + OPT_DATA-1;
319 i++;
320 }
321 return i;
322}
323
324/* Add an option (supplied in binary form) to the options.
325 * Option format: [code][len][data1][data2]..[dataLEN]
326 */
Denys Vlasenko7724c762010-03-26 09:32:09 +0100327void FAST_FUNC udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addopt)
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100328{
329 unsigned len;
Denys Vlasenko7724c762010-03-26 09:32:09 +0100330 uint8_t *optionptr = packet->options;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100331 unsigned end = udhcp_end_option(optionptr);
332
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100333 len = OPT_DATA + addopt[OPT_LEN];
Denys Vlasenko7724c762010-03-26 09:32:09 +0100334 /* end position + (option code/length + addopt length) + end option */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100335 if (end + len + 1 >= DHCP_OPTIONS_BUFSIZE) {
Denys Vlasenko7724c762010-03-26 09:32:09 +0100336//TODO: learn how to use overflow option if we exhaust packet->options[]
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100337 bb_error_msg("option 0x%02x did not fit into the packet",
338 addopt[OPT_CODE]);
339 return;
340 }
Denys Vlasenkof75a96d2016-03-30 18:49:45 +0200341 log_option("adding option", addopt);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100342 memcpy(optionptr + end, addopt, len);
343 optionptr[end + len] = DHCP_END;
344}
345
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200346#if ENABLE_UDHCPC || ENABLE_UDHCPD
Denys Vlasenko7724c762010-03-26 09:32:09 +0100347/* Add an one to four byte option to a packet */
348void FAST_FUNC udhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, uint32_t data)
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100349{
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200350 const struct dhcp_optflag *dh;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100351
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200352 for (dh = dhcp_optflags; dh->code; dh++) {
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100353 if (dh->code == code) {
354 uint8_t option[6], len;
355
356 option[OPT_CODE] = code;
357 len = dhcp_option_lengths[dh->flags & OPTION_TYPE_MASK];
358 option[OPT_LEN] = len;
359 if (BB_BIG_ENDIAN)
360 data <<= 8 * (4 - len);
361 /* Assignment is unaligned! */
362 move_to_unaligned32(&option[OPT_DATA], data);
Denys Vlasenko7724c762010-03-26 09:32:09 +0100363 udhcp_add_binary_option(packet, option);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100364 return;
365 }
366 }
367
368 bb_error_msg("can't add option 0x%02x", code);
369}
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200370#endif
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100371
372/* Find option 'code' in opt_list */
Denys Vlasenko7724c762010-03-26 09:32:09 +0100373struct option_set* FAST_FUNC udhcp_find_option(struct option_set *opt_list, uint8_t code)
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100374{
375 while (opt_list && opt_list->data[OPT_CODE] < code)
376 opt_list = opt_list->next;
377
378 if (opt_list && opt_list->data[OPT_CODE] == code)
379 return opt_list;
380 return NULL;
381}
382
383/* Parse string to IP in network order */
384int FAST_FUNC udhcp_str2nip(const char *str, void *arg)
385{
386 len_and_sockaddr *lsa;
387
388 lsa = host_and_af2sockaddr(str, 0, AF_INET);
389 if (!lsa)
390 return 0;
Michael McTernanee0f4442011-12-16 17:10:09 +0100391 /* arg maybe unaligned */
392 move_to_unaligned32((uint32_t*)arg, lsa->u.sin.sin_addr.s_addr);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100393 free(lsa);
394 return 1;
395}
396
397/* udhcp_str2optset:
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200398 * Parse string option representation to binary form and add it to opt_list.
399 * Called to parse "udhcpc -x OPTNAME:OPTVAL"
400 * and to parse udhcpd.conf's "opt OPTNAME OPTVAL" directives.
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100401 */
402/* helper: add an option to the opt_list */
Denys Vlasenko60275972018-05-14 11:06:35 +0200403#if !ENABLE_UDHCPC6
404#define attach_option(opt_list, optflag, buffer, length, dhcpv6) \
405 attach_option(opt_list, optflag, buffer, length)
406#endif
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100407static NOINLINE void attach_option(
408 struct option_set **opt_list,
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200409 const struct dhcp_optflag *optflag,
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100410 char *buffer,
Denys Vlasenko60275972018-05-14 11:06:35 +0200411 int length,
412 bool dhcpv6)
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100413{
Denys Vlasenko60275972018-05-14 11:06:35 +0200414 IF_NOT_UDHCPC6(bool dhcpv6 = 0;)
Denys Vlasenkob443a372013-05-17 15:19:47 +0200415 struct option_set *existing;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200416 char *allocated = NULL;
Denys Vlasenkob443a372013-05-17 15:19:47 +0200417
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200418 if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_BIN) {
419 const char *end;
420 allocated = xstrdup(buffer); /* more than enough */
421 end = hex2bin(allocated, buffer, 255);
422 if (errno)
423 bb_error_msg_and_die("malformed hex string '%s'", buffer);
424 length = end - allocated;
425 }
Denys Vlasenkob443a372013-05-17 15:19:47 +0200426#if ENABLE_FEATURE_UDHCP_RFC3397
427 if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_DNS_STRING) {
428 /* reuse buffer and length for RFC1035-formatted string */
429 allocated = buffer = (char *)dname_enc(NULL, 0, buffer, &length);
430 }
431#endif
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100432
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200433 existing = udhcp_find_option(*opt_list, optflag->code);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100434 if (!existing) {
Denys Vlasenkob443a372013-05-17 15:19:47 +0200435 struct option_set *new, **curr;
436
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100437 /* make a new option */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200438 log2("attaching option %02x to list", optflag->code);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100439 new = xmalloc(sizeof(*new));
Denys Vlasenko60275972018-05-14 11:06:35 +0200440 if (!dhcpv6) {
441 new->data = xmalloc(length + OPT_DATA);
442 new->data[OPT_CODE] = optflag->code;
443 new->data[OPT_LEN] = length;
444 memcpy(new->data + OPT_DATA, (allocated ? allocated : buffer),
445 length);
446 } else {
447 new->data = xmalloc(length + D6_OPT_DATA);
448 new->data[D6_OPT_CODE] = optflag->code >> 8;
449 new->data[D6_OPT_CODE + 1] = optflag->code & 0xff;
450 new->data[D6_OPT_LEN] = length >> 8;
451 new->data[D6_OPT_LEN + 1] = length & 0xff;
452 memcpy(new->data + D6_OPT_DATA, (allocated ? allocated : buffer),
453 length);
454 }
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100455
456 curr = opt_list;
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200457 while (*curr && (*curr)->data[OPT_CODE] < optflag->code)
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100458 curr = &(*curr)->next;
459
460 new->next = *curr;
461 *curr = new;
462 goto ret;
463 }
464
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200465 if (optflag->flags & OPTION_LIST) {
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100466 unsigned old_len;
467
468 /* add it to an existing option */
Denys Vlasenko8f2e99c2016-03-30 18:41:23 +0200469 log2("attaching option %02x to existing member of list", optflag->code);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100470 old_len = existing->data[OPT_LEN];
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100471 if (old_len + length < 255) {
472 /* actually 255 is ok too, but adding a space can overlow it */
473
474 existing->data = xrealloc(existing->data, OPT_DATA + 1 + old_len + length);
Denys Vlasenko7280d202011-12-08 16:41:05 +0100475 if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING
476 || (optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING_HOST
477 ) {
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100478 /* add space separator between STRING options in a list */
479 existing->data[OPT_DATA + old_len] = ' ';
480 old_len++;
481 }
Denys Vlasenkoc133fa62013-05-17 15:13:38 +0200482 memcpy(existing->data + OPT_DATA + old_len, (allocated ? allocated : buffer), length);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100483 existing->data[OPT_LEN] = old_len + length;
484 } /* else, ignore the data, we could put this in a second option in the future */
485 } /* else, ignore the new data */
486
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200487 ret:
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100488 free(allocated);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100489}
490
Denys Vlasenko60275972018-05-14 11:06:35 +0200491int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg,
492 const struct dhcp_optflag *optflags, const char *option_strings,
493 bool dhcpv6)
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100494{
495 struct option_set **opt_list = arg;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200496 char *opt;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100497 char *str;
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200498 const struct dhcp_optflag *optflag;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200499 struct dhcp_optflag userdef_optflag;
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200500 unsigned optcode;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200501 int retval;
Michael McTernanee0f4442011-12-16 17:10:09 +0100502 /* IP_PAIR needs 8 bytes, STATIC_ROUTES needs 9 max */
503 char buffer[9] ALIGNED(4);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100504 uint16_t *result_u16 = (uint16_t *) buffer;
505 uint32_t *result_u32 = (uint32_t *) buffer;
506
507 /* Cheat, the only *const* str possible is "" */
508 str = (char *) const_str;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200509 opt = strtok(str, " \t=:");
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100510 if (!opt)
511 return 0;
512
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200513 optcode = bb_strtou(opt, NULL, 0);
514 if (!errno && optcode < 255) {
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200515 /* Raw (numeric) option code.
516 * Initially assume binary (hex-str), but if "str" or 'str'
517 * is seen later, switch to STRING.
518 */
519 userdef_optflag.flags = OPTION_BIN;
520 userdef_optflag.code = optcode;
521 optflag = &userdef_optflag;
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200522 } else {
Denys Vlasenkoba4fbca2017-06-28 19:18:17 +0200523 optflag = &optflags[udhcp_option_idx(opt, option_strings)];
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200524 }
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100525
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200526 /* Loop to handle OPTION_LIST case, else execute just once */
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100527 retval = 0;
528 do {
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200529 int length;
530 char *val;
531
Samuel Mendoza-Jonas43b92352018-05-14 14:29:15 +1000532 if (optflag->flags == OPTION_BIN) {
533 val = strtok(NULL, ""); /* do not split "'q w e'" */
534 trim(val);
535 } else
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200536 val = strtok(NULL, ", \t");
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100537 if (!val)
538 break;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200539
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200540 length = dhcp_option_lengths[optflag->flags & OPTION_TYPE_MASK];
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100541 retval = 0;
542 opt = buffer; /* new meaning for variable opt */
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200543
Denys Vlasenkoc03602b2010-04-04 15:28:49 +0200544 switch (optflag->flags & OPTION_TYPE_MASK) {
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100545 case OPTION_IP:
546 retval = udhcp_str2nip(val, buffer);
547 break;
548 case OPTION_IP_PAIR:
549 retval = udhcp_str2nip(val, buffer);
550 val = strtok(NULL, ", \t/-");
551 if (!val)
552 retval = 0;
553 if (retval)
554 retval = udhcp_str2nip(val, buffer + 4);
555 break;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200556case_OPTION_STRING:
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100557 case OPTION_STRING:
Denys Vlasenko7280d202011-12-08 16:41:05 +0100558 case OPTION_STRING_HOST:
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100559#if ENABLE_FEATURE_UDHCP_RFC3397
Denys Vlasenko243ddcb2010-04-03 17:34:52 +0200560 case OPTION_DNS_STRING:
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100561#endif
562 length = strnlen(val, 254);
563 if (length > 0) {
564 opt = val;
565 retval = 1;
566 }
567 break;
568// case OPTION_BOOLEAN: {
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200569// static const char no_yes[] ALIGN1 = "no\0yes\0";
570// buffer[0] = retval = index_in_strings(no_yes, val);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100571// retval++; /* 0 - bad; 1: "no" 2: "yes" */
572// break;
573// }
574 case OPTION_U8:
Michael McTernanee0f4442011-12-16 17:10:09 +0100575 buffer[0] = bb_strtou32(val, NULL, 0);
576 retval = (errno == 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100577 break;
578 /* htonX are macros in older libc's, using temp var
579 * in code below for safety */
580 /* TODO: use bb_strtoX? */
581 case OPTION_U16: {
Michael McTernanee0f4442011-12-16 17:10:09 +0100582 uint32_t tmp = bb_strtou32(val, NULL, 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100583 *result_u16 = htons(tmp);
Michael McTernanee0f4442011-12-16 17:10:09 +0100584 retval = (errno == 0 /*&& tmp < 0x10000*/);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100585 break;
586 }
587// case OPTION_S16: {
Michael McTernanee0f4442011-12-16 17:10:09 +0100588// long tmp = bb_strtoi32(val, NULL, 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100589// *result_u16 = htons(tmp);
Michael McTernanee0f4442011-12-16 17:10:09 +0100590// retval = (errno == 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100591// break;
592// }
593 case OPTION_U32: {
Michael McTernanee0f4442011-12-16 17:10:09 +0100594 uint32_t tmp = bb_strtou32(val, NULL, 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100595 *result_u32 = htonl(tmp);
Michael McTernanee0f4442011-12-16 17:10:09 +0100596 retval = (errno == 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100597 break;
598 }
599 case OPTION_S32: {
Michael McTernanee0f4442011-12-16 17:10:09 +0100600 int32_t tmp = bb_strtoi32(val, NULL, 0);
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100601 *result_u32 = htonl(tmp);
Michael McTernanee0f4442011-12-16 17:10:09 +0100602 retval = (errno == 0);
603 break;
604 }
605 case OPTION_STATIC_ROUTES: {
606 /* Input: "a.b.c.d/m" */
607 /* Output: mask(1 byte),pfx(0-4 bytes),gw(4 bytes) */
608 unsigned mask;
609 char *slash = strchr(val, '/');
610 if (slash) {
611 *slash = '\0';
612 retval = udhcp_str2nip(val, buffer + 1);
613 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
614 val = strtok(NULL, ", \t/-");
615 if (!val || mask > 32 || errno)
616 retval = 0;
617 if (retval) {
618 length = ((mask + 7) >> 3) + 5;
619 retval = udhcp_str2nip(val, buffer + (length - 4));
620 }
621 }
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100622 break;
623 }
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200624 case OPTION_BIN:
625 /* Raw (numeric) option code. Is it a string? */
626 if (val[0] == '"' || val[0] == '\'') {
627 char delim = val[0];
628 char *end = last_char_is(val + 1, delim);
629 if (end) {
630 *end = '\0';
631 val++;
632 userdef_optflag.flags = OPTION_STRING;
633 goto case_OPTION_STRING;
634 }
635 }
636 /* No: hex-str option, handled in attach_option() */
Denys Vlasenko4f3aa512010-04-04 15:31:12 +0200637 opt = val;
638 retval = 1;
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200639 break;
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100640 default:
641 break;
642 }
Denys Vlasenko266f6f12018-04-13 13:18:34 +0200643
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100644 if (retval)
Denys Vlasenko60275972018-05-14 11:06:35 +0200645 attach_option(opt_list, optflag, opt, length, dhcpv6);
Michael McTernanee0f4442011-12-16 17:10:09 +0100646 } while (retval && (optflag->flags & OPTION_LIST));
Denys Vlasenkoa8f6b992010-03-26 08:35:24 +0100647
648 return retval;
649}
Denys Vlasenkoa092a892011-11-16 20:17:12 +0100650
651/* note: ip is a pointer to an IPv6 in network order, possibly misaliged */
652int FAST_FUNC sprint_nip6(char *dest, /*const char *pre,*/ const uint8_t *ip)
653{
654 char hexstrbuf[16 * 2];
655 bin2hex(hexstrbuf, (void*)ip, 16);
656 return sprintf(dest, /* "%s" */
657 "%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s",
658 /* pre, */
659 hexstrbuf + 0 * 4,
660 hexstrbuf + 1 * 4,
661 hexstrbuf + 2 * 4,
662 hexstrbuf + 3 * 4,
663 hexstrbuf + 4 * 4,
664 hexstrbuf + 5 * 4,
665 hexstrbuf + 6 * 4,
666 hexstrbuf + 7 * 4
667 );
668}