common.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
  4. *
  5. * Licensed under GPLv2, see file LICENSE in this source tree.
  6. */
  7. #include "common.h"
  8. #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
  9. unsigned dhcp_verbose;
  10. #endif
  11. const uint8_t MAC_BCAST_ADDR[6] ALIGN2 = {
  12. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
  13. };
  14. /* Supported options are easily added here.
  15. * See RFC2132 for more options.
  16. * OPTION_REQ: these options are requested by udhcpc (unless -o).
  17. */
  18. const struct dhcp_optflag dhcp_optflags[] = {
  19. /* flags code */
  20. { OPTION_IP | OPTION_REQ, 0x01 }, /* DHCP_SUBNET */
  21. { OPTION_S32 , 0x02 }, /* DHCP_TIME_OFFSET */
  22. { OPTION_IP | OPTION_LIST | OPTION_REQ, 0x03 }, /* DHCP_ROUTER */
  23. // { OPTION_IP | OPTION_LIST , 0x04 }, /* DHCP_TIME_SERVER */
  24. // { OPTION_IP | OPTION_LIST , 0x05 }, /* DHCP_NAME_SERVER */
  25. { OPTION_IP | OPTION_LIST | OPTION_REQ, 0x06 }, /* DHCP_DNS_SERVER */
  26. // { OPTION_IP | OPTION_LIST , 0x07 }, /* DHCP_LOG_SERVER */
  27. // { OPTION_IP | OPTION_LIST , 0x08 }, /* DHCP_COOKIE_SERVER */
  28. { OPTION_IP | OPTION_LIST , 0x09 }, /* DHCP_LPR_SERVER */
  29. { OPTION_STRING_HOST | OPTION_REQ, 0x0c }, /* DHCP_HOST_NAME */
  30. { OPTION_U16 , 0x0d }, /* DHCP_BOOT_SIZE */
  31. { OPTION_STRING_HOST | OPTION_REQ, 0x0f }, /* DHCP_DOMAIN_NAME */
  32. { OPTION_IP , 0x10 }, /* DHCP_SWAP_SERVER */
  33. { OPTION_STRING , 0x11 }, /* DHCP_ROOT_PATH */
  34. { OPTION_U8 , 0x17 }, /* DHCP_IP_TTL */
  35. { OPTION_U16 , 0x1a }, /* DHCP_MTU */
  36. //TODO: why do we request DHCP_BROADCAST? Can't we assume that
  37. //in the unlikely case it is different from typical N.N.255.255,
  38. //server would let us know anyway?
  39. { OPTION_IP | OPTION_REQ, 0x1c }, /* DHCP_BROADCAST */
  40. { OPTION_IP_PAIR | OPTION_LIST , 0x21 }, /* DHCP_ROUTES */
  41. { OPTION_STRING_HOST , 0x28 }, /* DHCP_NIS_DOMAIN */
  42. { OPTION_IP | OPTION_LIST , 0x29 }, /* DHCP_NIS_SERVER */
  43. { OPTION_IP | OPTION_LIST | OPTION_REQ, 0x2a }, /* DHCP_NTP_SERVER */
  44. { OPTION_IP | OPTION_LIST , 0x2c }, /* DHCP_WINS_SERVER */
  45. { OPTION_U32 , 0x33 }, /* DHCP_LEASE_TIME */
  46. { OPTION_IP , 0x36 }, /* DHCP_SERVER_ID */
  47. { OPTION_STRING , 0x38 }, /* DHCP_ERR_MESSAGE */
  48. //TODO: must be combined with 'sname' and 'file' handling:
  49. { OPTION_STRING_HOST , 0x42 }, /* DHCP_TFTP_SERVER_NAME */
  50. { OPTION_STRING , 0x43 }, /* DHCP_BOOT_FILE */
  51. //TODO: not a string, but a set of LASCII strings:
  52. // { OPTION_STRING , 0x4D }, /* DHCP_USER_CLASS */
  53. #if ENABLE_FEATURE_UDHCP_RFC3397
  54. { OPTION_DNS_STRING | OPTION_LIST , 0x77 }, /* DHCP_DOMAIN_SEARCH */
  55. { OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */
  56. #endif
  57. { OPTION_STATIC_ROUTES | OPTION_LIST , 0x79 }, /* DHCP_STATIC_ROUTES */
  58. #if ENABLE_FEATURE_UDHCP_8021Q
  59. { OPTION_U16 , 0x84 }, /* DHCP_VLAN_ID */
  60. { OPTION_U8 , 0x85 }, /* DHCP_VLAN_PRIORITY */
  61. #endif
  62. { OPTION_STRING , 0xd1 }, /* DHCP_PXE_CONF_FILE */
  63. { OPTION_STRING , 0xd2 }, /* DHCP_PXE_PATH_PREFIX */
  64. { OPTION_6RD , 0xd4 }, /* DHCP_6RD */
  65. { OPTION_STATIC_ROUTES | OPTION_LIST , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */
  66. { OPTION_STRING , 0xfc }, /* DHCP_WPAD */
  67. /* Options below have no match in dhcp_option_strings[],
  68. * are not passed to dhcpc scripts, and cannot be specified
  69. * with "option XXX YYY" syntax in dhcpd config file.
  70. * These entries are only used internally by udhcp[cd]
  71. * to correctly encode options into packets.
  72. */
  73. { OPTION_IP , 0x32 }, /* DHCP_REQUESTED_IP */
  74. { OPTION_U8 , 0x35 }, /* DHCP_MESSAGE_TYPE */
  75. { OPTION_U16 , 0x39 }, /* DHCP_MAX_SIZE */
  76. //looks like these opts will work just fine even without these defs:
  77. // { OPTION_STRING , 0x3c }, /* DHCP_VENDOR */
  78. // /* not really a string: */
  79. // { OPTION_STRING , 0x3d }, /* DHCP_CLIENT_ID */
  80. { 0, 0 } /* zeroed terminating entry */
  81. };
  82. /* Used for converting options from incoming packets to env variables
  83. * for udhcpc stript, and for setting options for udhcpd via
  84. * "opt OPTION_NAME OPTION_VALUE" directives in udhcpd.conf file.
  85. */
  86. /* Must match dhcp_optflags[] order */
  87. const char dhcp_option_strings[] ALIGN1 =
  88. "subnet" "\0" /* DHCP_SUBNET */
  89. "timezone" "\0" /* DHCP_TIME_OFFSET */
  90. "router" "\0" /* DHCP_ROUTER */
  91. // "timesrv" "\0" /* DHCP_TIME_SERVER */
  92. // "namesrv" "\0" /* DHCP_NAME_SERVER */
  93. "dns" "\0" /* DHCP_DNS_SERVER */
  94. // "logsrv" "\0" /* DHCP_LOG_SERVER */
  95. // "cookiesrv" "\0" /* DHCP_COOKIE_SERVER */
  96. "lprsrv" "\0" /* DHCP_LPR_SERVER */
  97. "hostname" "\0" /* DHCP_HOST_NAME */
  98. "bootsize" "\0" /* DHCP_BOOT_SIZE */
  99. "domain" "\0" /* DHCP_DOMAIN_NAME */
  100. "swapsrv" "\0" /* DHCP_SWAP_SERVER */
  101. "rootpath" "\0" /* DHCP_ROOT_PATH */
  102. "ipttl" "\0" /* DHCP_IP_TTL */
  103. "mtu" "\0" /* DHCP_MTU */
  104. "broadcast" "\0" /* DHCP_BROADCAST */
  105. "routes" "\0" /* DHCP_ROUTES */
  106. "nisdomain" "\0" /* DHCP_NIS_DOMAIN */
  107. "nissrv" "\0" /* DHCP_NIS_SERVER */
  108. "ntpsrv" "\0" /* DHCP_NTP_SERVER */
  109. "wins" "\0" /* DHCP_WINS_SERVER */
  110. "lease" "\0" /* DHCP_LEASE_TIME */
  111. "serverid" "\0" /* DHCP_SERVER_ID */
  112. "message" "\0" /* DHCP_ERR_MESSAGE */
  113. "tftp" "\0" /* DHCP_TFTP_SERVER_NAME */
  114. "bootfile" "\0" /* DHCP_BOOT_FILE */
  115. // "userclass" "\0" /* DHCP_USER_CLASS */
  116. #if ENABLE_FEATURE_UDHCP_RFC3397
  117. "search" "\0" /* DHCP_DOMAIN_SEARCH */
  118. // doesn't work in udhcpd.conf since OPTION_SIP_SERVERS
  119. // is not handled yet by "string->option" conversion code:
  120. "sipsrv" "\0" /* DHCP_SIP_SERVERS */
  121. #endif
  122. "staticroutes" "\0"/* DHCP_STATIC_ROUTES */
  123. #if ENABLE_FEATURE_UDHCP_8021Q
  124. "vlanid" "\0" /* DHCP_VLAN_ID */
  125. "vlanpriority" "\0"/* DHCP_VLAN_PRIORITY */
  126. #endif
  127. "pxeconffile" "\0" /* DHCP_PXE_CONF_FILE */
  128. "pxepathprefix" "\0" /* DHCP_PXE_PATH_PREFIX */
  129. "ip6rd" "\0" /* DHCP_6RD */
  130. "msstaticroutes""\0"/* DHCP_MS_STATIC_ROUTES */
  131. "wpad" "\0" /* DHCP_WPAD */
  132. ;
  133. /* Lengths of the option types in binary form.
  134. * Used by:
  135. * udhcp_str2optset: to determine how many bytes to allocate.
  136. * xmalloc_optname_optval: to estimate string length
  137. * from binary option length: (option[LEN] / dhcp_option_lengths[opt_type])
  138. * is the number of elements, multiply in by one element's string width
  139. * (len_of_option_as_string[opt_type]) and you know how wide string you need.
  140. */
  141. const uint8_t dhcp_option_lengths[] ALIGN1 = {
  142. [OPTION_IP] = 4,
  143. [OPTION_IP_PAIR] = 8,
  144. // [OPTION_BOOLEAN] = 1,
  145. [OPTION_STRING] = 1, /* ignored by udhcp_str2optset */
  146. [OPTION_STRING_HOST] = 1, /* ignored by udhcp_str2optset */
  147. #if ENABLE_FEATURE_UDHCP_RFC3397
  148. [OPTION_DNS_STRING] = 1, /* ignored by both udhcp_str2optset and xmalloc_optname_optval */
  149. [OPTION_SIP_SERVERS] = 1,
  150. #endif
  151. [OPTION_U8] = 1,
  152. [OPTION_U16] = 2,
  153. // [OPTION_S16] = 2,
  154. [OPTION_U32] = 4,
  155. [OPTION_S32] = 4,
  156. /* Just like OPTION_STRING, we use minimum length here */
  157. [OPTION_STATIC_ROUTES] = 5,
  158. [OPTION_6RD] = 22, /* ignored by udhcp_str2optset */
  159. };
  160. #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
  161. static void log_option(const char *pfx, const uint8_t *opt)
  162. {
  163. if (dhcp_verbose >= 2) {
  164. char buf[256 * 2 + 2];
  165. *bin2hex(buf, (void*) (opt + OPT_DATA), opt[OPT_LEN]) = '\0';
  166. bb_info_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf);
  167. }
  168. }
  169. #else
  170. # define log_option(pfx, opt) ((void)0)
  171. #endif
  172. unsigned FAST_FUNC udhcp_option_idx(const char *name)
  173. {
  174. int n = index_in_strings(dhcp_option_strings, name);
  175. if (n >= 0)
  176. return n;
  177. {
  178. char buf[sizeof(dhcp_option_strings)];
  179. char *d = buf;
  180. const char *s = dhcp_option_strings;
  181. while (s < dhcp_option_strings + sizeof(dhcp_option_strings) - 2) {
  182. *d++ = (*s == '\0' ? ' ' : *s);
  183. s++;
  184. }
  185. *d = '\0';
  186. bb_error_msg_and_die("unknown option '%s', known options: %s", name, buf);
  187. }
  188. }
  189. /* Get an option with bounds checking (warning, result is not aligned) */
  190. uint8_t* FAST_FUNC udhcp_get_option(struct dhcp_packet *packet, int code)
  191. {
  192. uint8_t *optionptr;
  193. int len;
  194. int rem;
  195. int overload = 0;
  196. enum {
  197. FILE_FIELD101 = FILE_FIELD * 0x101,
  198. SNAME_FIELD101 = SNAME_FIELD * 0x101,
  199. };
  200. /* option bytes: [code][len][data1][data2]..[dataLEN] */
  201. optionptr = packet->options;
  202. rem = sizeof(packet->options);
  203. while (1) {
  204. if (rem <= 0) {
  205. bb_error_msg("bad packet, malformed option field");
  206. return NULL;
  207. }
  208. if (optionptr[OPT_CODE] == DHCP_PADDING) {
  209. rem--;
  210. optionptr++;
  211. continue;
  212. }
  213. if (optionptr[OPT_CODE] == DHCP_END) {
  214. if ((overload & FILE_FIELD101) == FILE_FIELD) {
  215. /* can use packet->file, and didn't look at it yet */
  216. overload |= FILE_FIELD101; /* "we looked at it" */
  217. optionptr = packet->file;
  218. rem = sizeof(packet->file);
  219. continue;
  220. }
  221. if ((overload & SNAME_FIELD101) == SNAME_FIELD) {
  222. /* can use packet->sname, and didn't look at it yet */
  223. overload |= SNAME_FIELD101; /* "we looked at it" */
  224. optionptr = packet->sname;
  225. rem = sizeof(packet->sname);
  226. continue;
  227. }
  228. break;
  229. }
  230. len = 2 + optionptr[OPT_LEN];
  231. rem -= len;
  232. if (rem < 0)
  233. continue; /* complain and return NULL */
  234. if (optionptr[OPT_CODE] == code) {
  235. log_option("Option found", optionptr);
  236. return optionptr + OPT_DATA;
  237. }
  238. if (optionptr[OPT_CODE] == DHCP_OPTION_OVERLOAD) {
  239. overload |= optionptr[OPT_DATA];
  240. /* fall through */
  241. }
  242. optionptr += len;
  243. }
  244. /* log3 because udhcpc uses it a lot - very noisy */
  245. log3("Option 0x%02x not found", code);
  246. return NULL;
  247. }
  248. /* Return the position of the 'end' option (no bounds checking) */
  249. int FAST_FUNC udhcp_end_option(uint8_t *optionptr)
  250. {
  251. int i = 0;
  252. while (optionptr[i] != DHCP_END) {
  253. if (optionptr[i] != DHCP_PADDING)
  254. i += optionptr[i + OPT_LEN] + OPT_DATA-1;
  255. i++;
  256. }
  257. return i;
  258. }
  259. /* Add an option (supplied in binary form) to the options.
  260. * Option format: [code][len][data1][data2]..[dataLEN]
  261. */
  262. void FAST_FUNC udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addopt)
  263. {
  264. unsigned len;
  265. uint8_t *optionptr = packet->options;
  266. unsigned end = udhcp_end_option(optionptr);
  267. len = OPT_DATA + addopt[OPT_LEN];
  268. /* end position + (option code/length + addopt length) + end option */
  269. if (end + len + 1 >= DHCP_OPTIONS_BUFSIZE) {
  270. //TODO: learn how to use overflow option if we exhaust packet->options[]
  271. bb_error_msg("option 0x%02x did not fit into the packet",
  272. addopt[OPT_CODE]);
  273. return;
  274. }
  275. log_option("Adding option", addopt);
  276. memcpy(optionptr + end, addopt, len);
  277. optionptr[end + len] = DHCP_END;
  278. }
  279. /* Add an one to four byte option to a packet */
  280. void FAST_FUNC udhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, uint32_t data)
  281. {
  282. const struct dhcp_optflag *dh;
  283. for (dh = dhcp_optflags; dh->code; dh++) {
  284. if (dh->code == code) {
  285. uint8_t option[6], len;
  286. option[OPT_CODE] = code;
  287. len = dhcp_option_lengths[dh->flags & OPTION_TYPE_MASK];
  288. option[OPT_LEN] = len;
  289. if (BB_BIG_ENDIAN)
  290. data <<= 8 * (4 - len);
  291. /* Assignment is unaligned! */
  292. move_to_unaligned32(&option[OPT_DATA], data);
  293. udhcp_add_binary_option(packet, option);
  294. return;
  295. }
  296. }
  297. bb_error_msg("can't add option 0x%02x", code);
  298. }
  299. /* Find option 'code' in opt_list */
  300. struct option_set* FAST_FUNC udhcp_find_option(struct option_set *opt_list, uint8_t code)
  301. {
  302. while (opt_list && opt_list->data[OPT_CODE] < code)
  303. opt_list = opt_list->next;
  304. if (opt_list && opt_list->data[OPT_CODE] == code)
  305. return opt_list;
  306. return NULL;
  307. }
  308. /* Parse string to IP in network order */
  309. int FAST_FUNC udhcp_str2nip(const char *str, void *arg)
  310. {
  311. len_and_sockaddr *lsa;
  312. lsa = host_and_af2sockaddr(str, 0, AF_INET);
  313. if (!lsa)
  314. return 0;
  315. /* arg maybe unaligned */
  316. move_to_unaligned32((uint32_t*)arg, lsa->u.sin.sin_addr.s_addr);
  317. free(lsa);
  318. return 1;
  319. }
  320. /* udhcp_str2optset:
  321. * Parse string option representation to binary form and add it to opt_list.
  322. * Called to parse "udhcpc -x OPTNAME:OPTVAL"
  323. * and to parse udhcpd.conf's "opt OPTNAME OPTVAL" directives.
  324. */
  325. /* helper for the helper */
  326. static char *allocate_tempopt_if_needed(
  327. const struct dhcp_optflag *optflag,
  328. char *buffer,
  329. int *length_p)
  330. {
  331. char *allocated = NULL;
  332. if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_BIN) {
  333. const char *end;
  334. allocated = xstrdup(buffer); /* more than enough */
  335. end = hex2bin(allocated, buffer, 255);
  336. if (errno)
  337. bb_error_msg_and_die("malformed hex string '%s'", buffer);
  338. *length_p = end - allocated;
  339. }
  340. return allocated;
  341. }
  342. /* helper: add an option to the opt_list */
  343. static NOINLINE void attach_option(
  344. struct option_set **opt_list,
  345. const struct dhcp_optflag *optflag,
  346. char *buffer,
  347. int length)
  348. {
  349. struct option_set *existing;
  350. char *allocated;
  351. allocated = allocate_tempopt_if_needed(optflag, buffer, &length);
  352. #if ENABLE_FEATURE_UDHCP_RFC3397
  353. if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_DNS_STRING) {
  354. /* reuse buffer and length for RFC1035-formatted string */
  355. allocated = buffer = (char *)dname_enc(NULL, 0, buffer, &length);
  356. }
  357. #endif
  358. existing = udhcp_find_option(*opt_list, optflag->code);
  359. if (!existing) {
  360. struct option_set *new, **curr;
  361. /* make a new option */
  362. log2("Attaching option %02x to list", optflag->code);
  363. new = xmalloc(sizeof(*new));
  364. new->data = xmalloc(length + OPT_DATA);
  365. new->data[OPT_CODE] = optflag->code;
  366. new->data[OPT_LEN] = length;
  367. memcpy(new->data + OPT_DATA, (allocated ? allocated : buffer), length);
  368. curr = opt_list;
  369. while (*curr && (*curr)->data[OPT_CODE] < optflag->code)
  370. curr = &(*curr)->next;
  371. new->next = *curr;
  372. *curr = new;
  373. goto ret;
  374. }
  375. if (optflag->flags & OPTION_LIST) {
  376. unsigned old_len;
  377. /* add it to an existing option */
  378. log2("Attaching option %02x to existing member of list", optflag->code);
  379. old_len = existing->data[OPT_LEN];
  380. if (old_len + length < 255) {
  381. /* actually 255 is ok too, but adding a space can overlow it */
  382. existing->data = xrealloc(existing->data, OPT_DATA + 1 + old_len + length);
  383. if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING
  384. || (optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING_HOST
  385. ) {
  386. /* add space separator between STRING options in a list */
  387. existing->data[OPT_DATA + old_len] = ' ';
  388. old_len++;
  389. }
  390. memcpy(existing->data + OPT_DATA + old_len, (allocated ? allocated : buffer), length);
  391. existing->data[OPT_LEN] = old_len + length;
  392. } /* else, ignore the data, we could put this in a second option in the future */
  393. } /* else, ignore the new data */
  394. ret:
  395. free(allocated);
  396. }
  397. int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg)
  398. {
  399. struct option_set **opt_list = arg;
  400. char *opt, *val;
  401. char *str;
  402. const struct dhcp_optflag *optflag;
  403. struct dhcp_optflag bin_optflag;
  404. unsigned optcode;
  405. int retval, length;
  406. /* IP_PAIR needs 8 bytes, STATIC_ROUTES needs 9 max */
  407. char buffer[9] ALIGNED(4);
  408. uint16_t *result_u16 = (uint16_t *) buffer;
  409. uint32_t *result_u32 = (uint32_t *) buffer;
  410. /* Cheat, the only *const* str possible is "" */
  411. str = (char *) const_str;
  412. opt = strtok(str, " \t=");
  413. if (!opt)
  414. return 0;
  415. optcode = bb_strtou(opt, NULL, 0);
  416. if (!errno && optcode < 255) {
  417. /* Raw (numeric) option code */
  418. bin_optflag.flags = OPTION_BIN;
  419. bin_optflag.code = optcode;
  420. optflag = &bin_optflag;
  421. } else {
  422. optflag = &dhcp_optflags[udhcp_option_idx(opt)];
  423. }
  424. retval = 0;
  425. do {
  426. val = strtok(NULL, ", \t");
  427. if (!val)
  428. break;
  429. length = dhcp_option_lengths[optflag->flags & OPTION_TYPE_MASK];
  430. retval = 0;
  431. opt = buffer; /* new meaning for variable opt */
  432. switch (optflag->flags & OPTION_TYPE_MASK) {
  433. case OPTION_IP:
  434. retval = udhcp_str2nip(val, buffer);
  435. break;
  436. case OPTION_IP_PAIR:
  437. retval = udhcp_str2nip(val, buffer);
  438. val = strtok(NULL, ", \t/-");
  439. if (!val)
  440. retval = 0;
  441. if (retval)
  442. retval = udhcp_str2nip(val, buffer + 4);
  443. break;
  444. case OPTION_STRING:
  445. case OPTION_STRING_HOST:
  446. #if ENABLE_FEATURE_UDHCP_RFC3397
  447. case OPTION_DNS_STRING:
  448. #endif
  449. length = strnlen(val, 254);
  450. if (length > 0) {
  451. opt = val;
  452. retval = 1;
  453. }
  454. break;
  455. // case OPTION_BOOLEAN: {
  456. // static const char no_yes[] ALIGN1 = "no\0yes\0";
  457. // buffer[0] = retval = index_in_strings(no_yes, val);
  458. // retval++; /* 0 - bad; 1: "no" 2: "yes" */
  459. // break;
  460. // }
  461. case OPTION_U8:
  462. buffer[0] = bb_strtou32(val, NULL, 0);
  463. retval = (errno == 0);
  464. break;
  465. /* htonX are macros in older libc's, using temp var
  466. * in code below for safety */
  467. /* TODO: use bb_strtoX? */
  468. case OPTION_U16: {
  469. uint32_t tmp = bb_strtou32(val, NULL, 0);
  470. *result_u16 = htons(tmp);
  471. retval = (errno == 0 /*&& tmp < 0x10000*/);
  472. break;
  473. }
  474. // case OPTION_S16: {
  475. // long tmp = bb_strtoi32(val, NULL, 0);
  476. // *result_u16 = htons(tmp);
  477. // retval = (errno == 0);
  478. // break;
  479. // }
  480. case OPTION_U32: {
  481. uint32_t tmp = bb_strtou32(val, NULL, 0);
  482. *result_u32 = htonl(tmp);
  483. retval = (errno == 0);
  484. break;
  485. }
  486. case OPTION_S32: {
  487. int32_t tmp = bb_strtoi32(val, NULL, 0);
  488. *result_u32 = htonl(tmp);
  489. retval = (errno == 0);
  490. break;
  491. }
  492. case OPTION_STATIC_ROUTES: {
  493. /* Input: "a.b.c.d/m" */
  494. /* Output: mask(1 byte),pfx(0-4 bytes),gw(4 bytes) */
  495. unsigned mask;
  496. char *slash = strchr(val, '/');
  497. if (slash) {
  498. *slash = '\0';
  499. retval = udhcp_str2nip(val, buffer + 1);
  500. buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
  501. val = strtok(NULL, ", \t/-");
  502. if (!val || mask > 32 || errno)
  503. retval = 0;
  504. if (retval) {
  505. length = ((mask + 7) >> 3) + 5;
  506. retval = udhcp_str2nip(val, buffer + (length - 4));
  507. }
  508. }
  509. break;
  510. }
  511. case OPTION_BIN: /* handled in attach_option() */
  512. opt = val;
  513. retval = 1;
  514. default:
  515. break;
  516. }
  517. if (retval)
  518. attach_option(opt_list, optflag, opt, length);
  519. } while (retval && (optflag->flags & OPTION_LIST));
  520. return retval;
  521. }
  522. /* note: ip is a pointer to an IPv6 in network order, possibly misaliged */
  523. int FAST_FUNC sprint_nip6(char *dest, /*const char *pre,*/ const uint8_t *ip)
  524. {
  525. char hexstrbuf[16 * 2];
  526. bin2hex(hexstrbuf, (void*)ip, 16);
  527. return sprintf(dest, /* "%s" */
  528. "%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s",
  529. /* pre, */
  530. hexstrbuf + 0 * 4,
  531. hexstrbuf + 1 * 4,
  532. hexstrbuf + 2 * 4,
  533. hexstrbuf + 3 * 4,
  534. hexstrbuf + 4 * 4,
  535. hexstrbuf + 5 * 4,
  536. hexstrbuf + 6 * 4,
  537. hexstrbuf + 7 * 4
  538. );
  539. }