common.c 17 KB

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