common.c 17 KB

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