Changes for kernel and Busybox
[tomato.git] / release / src / router / busybox / networking / udhcp / common.c.20
blob889f3ebf5a4b9d20e378c9e593f547d3b8d2a308
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"
9 #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
10 unsigned dhcp_verbose;
11 #endif
13 const uint8_t MAC_BCAST_ADDR[6] ALIGN2 = {
14         0xff, 0xff, 0xff, 0xff, 0xff, 0xff
17 /* Supported options are easily added here.
18  * See RFC2132 for more options.
19  * OPTION_REQ: these options are requested by udhcpc (unless -o).
20  */
21 const struct dhcp_optflag dhcp_optflags[] = {
22         /* flags                                    code */
23         { OPTION_IP                   | OPTION_REQ, 0x01 }, /* DHCP_SUBNET        */
24         { OPTION_S32                              , 0x02 }, /* DHCP_TIME_OFFSET   */
25         { OPTION_IP | OPTION_LIST     | OPTION_REQ, 0x03 }, /* DHCP_ROUTER        */
26 //      { OPTION_IP | OPTION_LIST                 , 0x04 }, /* DHCP_TIME_SERVER   */
27 //      { OPTION_IP | OPTION_LIST                 , 0x05 }, /* DHCP_NAME_SERVER   */
28         { OPTION_IP | OPTION_LIST     | OPTION_REQ, 0x06 }, /* DHCP_DNS_SERVER    */
29 //      { OPTION_IP | OPTION_LIST                 , 0x07 }, /* DHCP_LOG_SERVER    */
30 //      { OPTION_IP | OPTION_LIST                 , 0x08 }, /* DHCP_COOKIE_SERVER */
31         { OPTION_IP | OPTION_LIST                 , 0x09 }, /* DHCP_LPR_SERVER    */
32         { OPTION_STRING_HOST          | OPTION_REQ, 0x0c }, /* DHCP_HOST_NAME     */
33         { OPTION_U16                              , 0x0d }, /* DHCP_BOOT_SIZE     */
34         { OPTION_STRING_HOST          | OPTION_REQ, 0x0f }, /* DHCP_DOMAIN_NAME   */
35         { OPTION_IP                               , 0x10 }, /* DHCP_SWAP_SERVER   */
36         { OPTION_STRING                           , 0x11 }, /* DHCP_ROOT_PATH     */
37         { OPTION_U8                               , 0x17 }, /* DHCP_IP_TTL        */
38         { OPTION_U16                              , 0x1a }, /* DHCP_MTU           */
39         { OPTION_IP                   | OPTION_REQ, 0x1c }, /* DHCP_BROADCAST     */
40         { OPTION_STRING_HOST                      , 0x28 }, /* DHCP_NIS_DOMAIN    */
41         { OPTION_IP | OPTION_LIST                 , 0x29 }, /* DHCP_NIS_SERVER    */
42         { OPTION_IP | OPTION_LIST     | OPTION_REQ, 0x2a }, /* DHCP_NTP_SERVER    */
43         { OPTION_IP | OPTION_LIST                 , 0x2c }, /* DHCP_WINS_SERVER   */
44         { OPTION_U32                              , 0x33 }, /* DHCP_LEASE_TIME    */
45         { OPTION_IP                               , 0x36 }, /* DHCP_SERVER_ID     */
46         { OPTION_STRING                           , 0x38 }, /* DHCP_ERR_MESSAGE   */
47 //TODO: must be combined with 'sname' and 'file' handling:
48         { OPTION_STRING_HOST                      , 0x42 }, /* DHCP_TFTP_SERVER_NAME */
49         { OPTION_STRING                           , 0x43 }, /* DHCP_BOOT_FILE     */
50 //TODO: not a string, but a set of LASCII strings:
51 //      { OPTION_STRING                           , 0x4D }, /* DHCP_USER_CLASS    */
52 #if ENABLE_FEATURE_UDHCP_RFC3397
53         { OPTION_DNS_STRING | OPTION_LIST         , 0x77 }, /* DHCP_DOMAIN_SEARCH */
54         { OPTION_SIP_SERVERS                      , 0x78 }, /* DHCP_SIP_SERVERS   */
55 #endif
56         { OPTION_STATIC_ROUTES | OPTION_LIST      , 0x79 }, /* DHCP_STATIC_ROUTES */
57 #if ENABLE_FEATURE_UDHCP_8021Q
58         { OPTION_U16                              , 0x84 }, /* DHCP_VLAN_ID       */
59         { OPTION_U8                               , 0x85 }, /* DHCP_VLAN_PRIORITY */
60 #endif
61         { OPTION_6RD                              , 0xd4 }, /* DHCP_6RD           */
62         { OPTION_STATIC_ROUTES | OPTION_LIST      , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */
63         { OPTION_STRING                           , 0xfc }, /* DHCP_WPAD          */
65         /* Options below have no match in dhcp_option_strings[],
66          * are not passed to dhcpc scripts, and cannot be specified
67          * with "option XXX YYY" syntax in dhcpd config file.
68          * These entries are only used internally by udhcp[cd]
69          * to correctly encode options into packets.
70          */
72         { OPTION_IP                               , 0x32 }, /* DHCP_REQUESTED_IP  */
73         { OPTION_U8                               , 0x35 }, /* DHCP_MESSAGE_TYPE  */
74         { OPTION_U16                              , 0x39 }, /* DHCP_MAX_SIZE      */
75 //looks like these opts will work just fine even without these defs:
76 //      { OPTION_STRING                           , 0x3c }, /* DHCP_VENDOR        */
77 //      /* not really a string: */
78 //      { OPTION_STRING                           , 0x3d }, /* DHCP_CLIENT_ID     */
79         { 0, 0 } /* zeroed terminating entry */
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         "ip6rd" "\0"       /* DHCP_6RD            */
128         "msstaticroutes""\0"/* DHCP_MS_STATIC_ROUTES */
129 #if ENABLE_FEATURE_UDHCP_RFC5969
130         "6rd" "\0"         /* DHCP_6RD            */
131         "comcast6rd" "\0"  /* DHCP_COMCAST_6RD    */
132 #endif
133         "wpad" "\0"        /* DHCP_WPAD           */
134         ;
136 /* Lengths of the option types in binary form.
137  * Used by:
138  * udhcp_str2optset: to determine how many bytes to allocate.
139  * xmalloc_optname_optval: to estimate string length
140  * from binary option length: (option[LEN] / dhcp_option_lengths[opt_type])
141  * is the number of elements, multiply in by one element's string width
142  * (len_of_option_as_string[opt_type]) and you know how wide string you need.
143  */
144 const uint8_t dhcp_option_lengths[] ALIGN1 = {
145         [OPTION_IP] =      4,
146         [OPTION_IP_PAIR] = 8,
147 //      [OPTION_BOOLEAN] = 1,
148         [OPTION_STRING] =  1,  /* ignored by udhcp_str2optset */
149         [OPTION_STRING_HOST] = 1,  /* ignored by udhcp_str2optset */
150 #if ENABLE_FEATURE_UDHCP_RFC3397
151         [OPTION_DNS_STRING] = 1,  /* ignored by both udhcp_str2optset and xmalloc_optname_optval */
152         [OPTION_SIP_SERVERS] = 1,
153 #endif
154         [OPTION_U8] =      1,
155         [OPTION_U16] =     2,
156 //      [OPTION_S16] =     2,
157         [OPTION_U32] =     4,
158         [OPTION_S32] =     4,
159         /* Just like OPTION_STRING, we use minimum length here */
160         [OPTION_STATIC_ROUTES] = 5,
161 #if ENABLE_FEATURE_UDHCP_RFC5969
162         [OPTION_6RD] =    22,
163 #endif
167 #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2
168 static void log_option(const char *pfx, const uint8_t *opt)
170         if (dhcp_verbose >= 2) {
171                 char buf[256 * 2 + 2];
172                 *bin2hex(buf, (void*) (opt + OPT_DATA), opt[OPT_LEN]) = '\0';
173                 bb_info_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf);
174         }
176 #else
177 # define log_option(pfx, opt) ((void)0)
178 #endif
180 unsigned FAST_FUNC udhcp_option_idx(const char *name)
182         int n = index_in_strings(dhcp_option_strings, name);
183         if (n >= 0)
184                 return n;
186         {
187                 char buf[sizeof(dhcp_option_strings)];
188                 char *d = buf;
189                 const char *s = dhcp_option_strings;
190                 while (s < dhcp_option_strings + sizeof(dhcp_option_strings) - 2) {
191                         *d++ = (*s == '\0' ? ' ' : *s);
192                         s++;
193                 }
194                 *d = '\0';
195                 bb_error_msg_and_die("unknown option '%s', known options: %s", name, buf);
196         }
199 /* Get an option with bounds checking (warning, result is not aligned) */
200 uint8_t* FAST_FUNC udhcp_get_option(struct dhcp_packet *packet, int code)
202         uint8_t *optionptr;
203         int len;
204         int rem;
205         int overload = 0;
206         enum {
207                 FILE_FIELD101  = FILE_FIELD  * 0x101,
208                 SNAME_FIELD101 = SNAME_FIELD * 0x101,
209         };
211         /* option bytes: [code][len][data1][data2]..[dataLEN] */
212         optionptr = packet->options;
213         rem = sizeof(packet->options);
214         while (1) {
215                 if (rem <= 0) {
216                         bb_error_msg("bad packet, malformed option field");
217                         return NULL;
218                 }
219                 if (optionptr[OPT_CODE] == DHCP_PADDING) {
220                         rem--;
221                         optionptr++;
222                         continue;
223                 }
224                 if (optionptr[OPT_CODE] == DHCP_END) {
225                         if ((overload & FILE_FIELD101) == FILE_FIELD) {
226                                 /* can use packet->file, and didn't look at it yet */
227                                 overload |= FILE_FIELD101; /* "we looked at it" */
228                                 optionptr = packet->file;
229                                 rem = sizeof(packet->file);
230                                 continue;
231                         }
232                         if ((overload & SNAME_FIELD101) == SNAME_FIELD) {
233                                 /* can use packet->sname, and didn't look at it yet */
234                                 overload |= SNAME_FIELD101; /* "we looked at it" */
235                                 optionptr = packet->sname;
236                                 rem = sizeof(packet->sname);
237                                 continue;
238                         }
239                         break;
240                 }
241                 len = 2 + optionptr[OPT_LEN];
242                 rem -= len;
243                 if (rem < 0)
244                         continue; /* complain and return NULL */
246                 if (optionptr[OPT_CODE] == code) {
247                         log_option("Option found", optionptr);
248                         return optionptr + OPT_DATA;
249                 }
251                 if (optionptr[OPT_CODE] == DHCP_OPTION_OVERLOAD) {
252                         overload |= optionptr[OPT_DATA];
253                         /* fall through */
254                 }
255                 optionptr += len;
256         }
258         /* log3 because udhcpc uses it a lot - very noisy */
259         log3("Option 0x%02x not found", code);
260         return NULL;
263 /* Return the position of the 'end' option (no bounds checking) */
264 int FAST_FUNC udhcp_end_option(uint8_t *optionptr)
266         int i = 0;
268         while (optionptr[i] != DHCP_END) {
269                 if (optionptr[i] != DHCP_PADDING)
270                         i += optionptr[i + OPT_LEN] + OPT_DATA-1;
271                 i++;
272         }
273         return i;
276 /* Add an option (supplied in binary form) to the options.
277  * Option format: [code][len][data1][data2]..[dataLEN]
278  */
279 void FAST_FUNC udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addopt)
281         unsigned len;
282         uint8_t *optionptr = packet->options;
283         unsigned end = udhcp_end_option(optionptr);
285         len = OPT_DATA + addopt[OPT_LEN];
286         /* end position + (option code/length + addopt length) + end option */
287         if (end + len + 1 >= DHCP_OPTIONS_BUFSIZE) {
288 //TODO: learn how to use overflow option if we exhaust packet->options[]
289                 bb_error_msg("option 0x%02x did not fit into the packet",
290                                 addopt[OPT_CODE]);
291                 return;
292         }
293         log_option("Adding option", addopt);
294         memcpy(optionptr + end, addopt, len);
295         optionptr[end + len] = DHCP_END;
298 /* Add an one to four byte option to a packet */
299 void FAST_FUNC udhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, uint32_t data)
301         const struct dhcp_optflag *dh;
303         for (dh = dhcp_optflags; dh->code; dh++) {
304                 if (dh->code == code) {
305                         uint8_t option[6], len;
307                         option[OPT_CODE] = code;
308                         len = dhcp_option_lengths[dh->flags & OPTION_TYPE_MASK];
309                         option[OPT_LEN] = len;
310                         if (BB_BIG_ENDIAN)
311                                 data <<= 8 * (4 - len);
312                         /* Assignment is unaligned! */
313                         move_to_unaligned32(&option[OPT_DATA], data);
314                         udhcp_add_binary_option(packet, option);
315                         return;
316                 }
317         }
319         bb_error_msg("can't add option 0x%02x", code);
322 /* Find option 'code' in opt_list */
323 struct option_set* FAST_FUNC udhcp_find_option(struct option_set *opt_list, uint8_t code)
325         while (opt_list && opt_list->data[OPT_CODE] < code)
326                 opt_list = opt_list->next;
328         if (opt_list && opt_list->data[OPT_CODE] == code)
329                 return opt_list;
330         return NULL;
333 /* Parse string to IP in network order */
334 int FAST_FUNC udhcp_str2nip(const char *str, void *arg)
336         len_and_sockaddr *lsa;
338         lsa = host_and_af2sockaddr(str, 0, AF_INET);
339         if (!lsa)
340                 return 0;
341         /* arg maybe unaligned */
342         move_to_unaligned32((uint32_t*)arg, lsa->u.sin.sin_addr.s_addr);
343         free(lsa);
344         return 1;
347 /* udhcp_str2optset:
348  * Parse string option representation to binary form and add it to opt_list.
349  * Called to parse "udhcpc -x OPTNAME:OPTVAL"
350  * and to parse udhcpd.conf's "opt OPTNAME OPTVAL" directives.
351  */
352 /* helper for the helper */
353 static char *allocate_tempopt_if_needed(
354                 const struct dhcp_optflag *optflag,
355                 char *buffer,
356                 int *length_p)
358         char *allocated = NULL;
359         if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_BIN) {
360                 const char *end;
361                 allocated = xstrdup(buffer); /* more than enough */
362                 end = hex2bin(allocated, buffer, 255);
363                 if (errno)
364                         bb_error_msg_and_die("malformed hex string '%s'", buffer);
365                 *length_p = end - allocated;
366         }
367         return allocated;
369 /* helper: add an option to the opt_list */
370 static NOINLINE void attach_option(
371                 struct option_set **opt_list,
372                 const struct dhcp_optflag *optflag,
373                 char *buffer,
374                 int length)
376         struct option_set *existing, *new, **curr;
377         char *allocated = NULL;
379         existing = udhcp_find_option(*opt_list, optflag->code);
380         if (!existing) {
381                 log2("Attaching option %02x to list", optflag->code);
382                 allocated = allocate_tempopt_if_needed(optflag, buffer, &length);
383 #if ENABLE_FEATURE_UDHCP_RFC3397
384                 if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_DNS_STRING) {
385                         /* reuse buffer and length for RFC1035-formatted string */
386                         allocated = buffer = (char *)dname_enc(NULL, 0, buffer, &length);
387                 }
388 #endif
389                 /* make a new option */
390                 new = xmalloc(sizeof(*new));
391                 new->data = xmalloc(length + OPT_DATA);
392                 new->data[OPT_CODE] = optflag->code;
393                 new->data[OPT_LEN] = length;
394                 memcpy(new->data + OPT_DATA, (allocated ? allocated : buffer), length);
396                 curr = opt_list;
397                 while (*curr && (*curr)->data[OPT_CODE] < optflag->code)
398                         curr = &(*curr)->next;
400                 new->next = *curr;
401                 *curr = new;
402                 goto ret;
403         }
405         if (optflag->flags & OPTION_LIST) {
406                 unsigned old_len;
408                 /* add it to an existing option */
409                 log2("Attaching option %02x to existing member of list", optflag->code);
410                 allocated = allocate_tempopt_if_needed(optflag, buffer, &length);
411                 old_len = existing->data[OPT_LEN];
412 #if ENABLE_FEATURE_UDHCP_RFC3397
413                 if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_DNS_STRING) {
414                         /* reuse buffer and length for RFC1035-formatted string */
415                         allocated = buffer = (char *)dname_enc(existing->data + OPT_DATA, old_len, buffer, &length);
416                 }
417 #endif
418                 if (old_len + length < 255) {
419                         /* actually 255 is ok too, but adding a space can overlow it */
421                         existing->data = xrealloc(existing->data, OPT_DATA + 1 + old_len + length);
422                         if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING
423                          || (optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING_HOST
424                         ) {
425                                 /* add space separator between STRING options in a list */
426                                 existing->data[OPT_DATA + old_len] = ' ';
427                                 old_len++;
428                         }
429                         memcpy(existing->data + OPT_DATA + old_len, buffer, length);
430                         existing->data[OPT_LEN] = old_len + length;
431                 } /* else, ignore the data, we could put this in a second option in the future */
432         } /* else, ignore the new data */
434  ret:
435         free(allocated);
438 int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg)
440         struct option_set **opt_list = arg;
441         char *opt, *val;
442         char *str;
443         const struct dhcp_optflag *optflag;
444         struct dhcp_optflag bin_optflag;
445         unsigned optcode;
446         int retval, length;
447         /* IP_PAIR needs 8 bytes, STATIC_ROUTES needs 9 max */
448         char buffer[9] ALIGNED(4);
449         uint16_t *result_u16 = (uint16_t *) buffer;
450         uint32_t *result_u32 = (uint32_t *) buffer;
452         /* Cheat, the only *const* str possible is "" */
453         str = (char *) const_str;
454         opt = strtok(str, " \t=");
455         if (!opt)
456                 return 0;
458         optcode = bb_strtou(opt, NULL, 0);
459         if (!errno && optcode < 255) {
460                 /* Raw (numeric) option code */
461                 bin_optflag.flags = OPTION_BIN;
462                 bin_optflag.code = optcode;
463                 optflag = &bin_optflag;
464         } else {
465                 optflag = &dhcp_optflags[udhcp_option_idx(opt)];
466         }
468         retval = 0;
469         do {
470                 val = strtok(NULL, ", \t");
471                 if (!val)
472                         break;
473                 length = dhcp_option_lengths[optflag->flags & OPTION_TYPE_MASK];
474                 retval = 0;
475                 opt = buffer; /* new meaning for variable opt */
476                 switch (optflag->flags & OPTION_TYPE_MASK) {
477                 case OPTION_IP:
478                         retval = udhcp_str2nip(val, buffer);
479                         break;
480                 case OPTION_IP_PAIR:
481                         retval = udhcp_str2nip(val, buffer);
482                         val = strtok(NULL, ", \t/-");
483                         if (!val)
484                                 retval = 0;
485                         if (retval)
486                                 retval = udhcp_str2nip(val, buffer + 4);
487                         break;
488                 case OPTION_STRING:
489                 case OPTION_STRING_HOST:
490 #if ENABLE_FEATURE_UDHCP_RFC3397
491                 case OPTION_DNS_STRING:
492 #endif
493                         length = strnlen(val, 254);
494                         if (length > 0) {
495                                 opt = val;
496                                 retval = 1;
497                         }
498                         break;
499 //              case OPTION_BOOLEAN: {
500 //                      static const char no_yes[] ALIGN1 = "no\0yes\0";
501 //                      buffer[0] = retval = index_in_strings(no_yes, val);
502 //                      retval++; /* 0 - bad; 1: "no" 2: "yes" */
503 //                      break;
504 //              }
505                 case OPTION_U8:
506                         buffer[0] = bb_strtou32(val, NULL, 0);
507                         retval = (errno == 0);
508                         break;
509                 /* htonX are macros in older libc's, using temp var
510                  * in code below for safety */
511                 /* TODO: use bb_strtoX? */
512                 case OPTION_U16: {
513                         uint32_t tmp = bb_strtou32(val, NULL, 0);
514                         *result_u16 = htons(tmp);
515                         retval = (errno == 0 /*&& tmp < 0x10000*/);
516                         break;
517                 }
518 //              case OPTION_S16: {
519 //                      long tmp = bb_strtoi32(val, NULL, 0);
520 //                      *result_u16 = htons(tmp);
521 //                      retval = (errno == 0);
522 //                      break;
523 //              }
524                 case OPTION_U32: {
525                         uint32_t tmp = bb_strtou32(val, NULL, 0);
526                         *result_u32 = htonl(tmp);
527                         retval = (errno == 0);
528                         break;
529                 }
530                 case OPTION_S32: {
531                         int32_t tmp = bb_strtoi32(val, NULL, 0);
532                         *result_u32 = htonl(tmp);
533                         retval = (errno == 0);
534                         break;
535                 }
536                 case OPTION_STATIC_ROUTES: {
537                         /* Input: "a.b.c.d/m" */
538                         /* Output: mask(1 byte),pfx(0-4 bytes),gw(4 bytes) */
539                         unsigned mask;
540                         char *slash = strchr(val, '/');
541                         if (slash) {
542                                 *slash = '\0';
543                                 retval = udhcp_str2nip(val, buffer + 1);
544                                 buffer[0] = mask = bb_strtou(slash + 1, NULL, 10);
545                                 val = strtok(NULL, ", \t/-");
546                                 if (!val || mask > 32 || errno)
547                                         retval = 0;
548                                 if (retval) {
549                                         length = ((mask + 7) >> 3) + 5;
550                                         retval = udhcp_str2nip(val, buffer + (length - 4));
551                                 }
552                         }
553                         break;
554                 }
555                 case OPTION_BIN: /* handled in attach_option() */
556                         opt = val;
557                         retval = 1;
558                 default:
559                         break;
560                 }
561                 if (retval)
562                         attach_option(opt_list, optflag, opt, length);
563         } while (retval && (optflag->flags & OPTION_LIST));
565         return retval;
568 /* note: ip is a pointer to an IPv6 in network order, possibly misaliged */
569 int FAST_FUNC sprint_nip6(char *dest, /*const char *pre,*/ const uint8_t *ip)
571         char hexstrbuf[16 * 2];
572         bin2hex(hexstrbuf, (void*)ip, 16);
573         return sprintf(dest, /* "%s" */
574                 "%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s",
575                 /* pre, */
576                 hexstrbuf + 0 * 4,
577                 hexstrbuf + 1 * 4,
578                 hexstrbuf + 2 * 4,
579                 hexstrbuf + 3 * 4,
580                 hexstrbuf + 4 * 4,
581                 hexstrbuf + 5 * 4,
582                 hexstrbuf + 6 * 4,
583                 hexstrbuf + 7 * 4
584         );