Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001 |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 4 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 6 | */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 7 | #include "common.h" |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 8 | |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 9 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 10 | unsigned dhcp_verbose; |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 11 | #endif |
| 12 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 13 | const uint8_t MAC_BCAST_ADDR[6] ALIGN2 = { |
| 14 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff |
| 15 | }; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 16 | |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 17 | #if ENABLE_UDHCPC || ENABLE_UDHCPD |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 18 | /* Supported options are easily added here, they need to be sorted. |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 19 | * See RFC2132 for more options. |
| 20 | * OPTION_REQ: these options are requested by udhcpc (unless -o). |
| 21 | */ |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 22 | const struct dhcp_optflag dhcp_optflags[] = { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 23 | /* 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 Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 33 | { OPTION_STRING_HOST | OPTION_REQ, 0x0c }, /* DHCP_HOST_NAME */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 34 | { OPTION_U16 , 0x0d }, /* DHCP_BOOT_SIZE */ |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 35 | { OPTION_STRING_HOST | OPTION_REQ, 0x0f }, /* DHCP_DOMAIN_NAME */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 36 | { 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 Vlasenko | cd4d78f | 2011-10-20 13:21:55 +0200 | [diff] [blame] | 40 | //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 Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 43 | { OPTION_IP | OPTION_REQ, 0x1c }, /* DHCP_BROADCAST */ |
Vladislav Grishenko | 7d3a48a | 2010-09-26 00:15:12 +0200 | [diff] [blame] | 44 | { OPTION_IP_PAIR | OPTION_LIST , 0x21 }, /* DHCP_ROUTES */ |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 45 | { OPTION_STRING_HOST , 0x28 }, /* DHCP_NIS_DOMAIN */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 46 | { 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 Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 53 | { OPTION_STRING_HOST , 0x42 }, /* DHCP_TFTP_SERVER_NAME */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 54 | { OPTION_STRING , 0x43 }, /* DHCP_BOOT_FILE */ |
| 55 | //TODO: not a string, but a set of LASCII strings: |
| 56 | // { OPTION_STRING , 0x4D }, /* DHCP_USER_CLASS */ |
Antoine Girard-Vallée | 0e7bd69 | 2019-03-08 09:24:42 -0500 | [diff] [blame] | 57 | { OPTION_STRING , 0x64 }, /* DHCP_PCODE */ |
| 58 | { OPTION_STRING , 0x65 }, /* DHCP_TCODE */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 59 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 60 | { OPTION_DNS_STRING | OPTION_LIST , 0x77 }, /* DHCP_DOMAIN_SEARCH */ |
| 61 | { OPTION_SIP_SERVERS , 0x78 }, /* DHCP_SIP_SERVERS */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 62 | #endif |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 63 | { OPTION_STATIC_ROUTES | OPTION_LIST , 0x79 }, /* DHCP_STATIC_ROUTES */ |
Nigel Hathaway | fb6b173 | 2011-04-26 02:50:00 +0200 | [diff] [blame] | 64 | #if ENABLE_FEATURE_UDHCP_8021Q |
| 65 | { OPTION_U16 , 0x84 }, /* DHCP_VLAN_ID */ |
| 66 | { OPTION_U8 , 0x85 }, /* DHCP_VLAN_PRIORITY */ |
| 67 | #endif |
Jeremy Kerr | d3092c9 | 2013-11-12 11:18:26 +0100 | [diff] [blame] | 68 | { OPTION_STRING , 0xd1 }, /* DHCP_PXE_CONF_FILE */ |
Jeremy Kerr | b8ffd11 | 2014-07-15 11:03:17 +0800 | [diff] [blame] | 69 | { OPTION_STRING , 0xd2 }, /* DHCP_PXE_PATH_PREFIX */ |
Jeremy Kerr | fc26721 | 2018-07-03 16:36:13 +1000 | [diff] [blame] | 70 | { OPTION_U32 , 0xd3 }, /* DHCP_REBOOT_TIME */ |
Denys Vlasenko | 1f56e51 | 2011-10-19 22:40:35 +0200 | [diff] [blame] | 71 | { OPTION_6RD , 0xd4 }, /* DHCP_6RD */ |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 72 | { OPTION_STATIC_ROUTES | OPTION_LIST , 0xf9 }, /* DHCP_MS_STATIC_ROUTES */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 73 | { OPTION_STRING , 0xfc }, /* DHCP_WPAD */ |
| 74 | |
| 75 | /* Options below have no match in dhcp_option_strings[], |
| 76 | * are not passed to dhcpc scripts, and cannot be specified |
| 77 | * with "option XXX YYY" syntax in dhcpd config file. |
| 78 | * These entries are only used internally by udhcp[cd] |
| 79 | * to correctly encode options into packets. |
| 80 | */ |
| 81 | |
| 82 | { OPTION_IP , 0x32 }, /* DHCP_REQUESTED_IP */ |
| 83 | { OPTION_U8 , 0x35 }, /* DHCP_MESSAGE_TYPE */ |
| 84 | { OPTION_U16 , 0x39 }, /* DHCP_MAX_SIZE */ |
Denys Vlasenko | d3c5ab7 | 2010-10-20 02:03:30 +0200 | [diff] [blame] | 85 | //looks like these opts will work just fine even without these defs: |
| 86 | // { OPTION_STRING , 0x3c }, /* DHCP_VENDOR */ |
| 87 | // /* not really a string: */ |
| 88 | // { OPTION_STRING , 0x3d }, /* DHCP_CLIENT_ID */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 89 | { 0, 0 } /* zeroed terminating entry */ |
| 90 | }; |
| 91 | |
| 92 | /* Used for converting options from incoming packets to env variables |
Denys Vlasenko | b181ca7 | 2017-01-29 18:48:58 +0100 | [diff] [blame] | 93 | * for udhcpc script, and for setting options for udhcpd via |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 94 | * "opt OPTION_NAME OPTION_VALUE" directives in udhcpd.conf file. |
| 95 | */ |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 96 | /* Must match dhcp_optflags[] order */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 97 | const char dhcp_option_strings[] ALIGN1 = |
Denys Vlasenko | 6d26744 | 2018-07-04 15:44:22 +0200 | [diff] [blame] | 98 | "subnet" "\0" /* DHCP_SUBNET */ |
| 99 | "timezone" "\0" /* DHCP_TIME_OFFSET */ |
| 100 | "router" "\0" /* DHCP_ROUTER */ |
| 101 | // "timesrv" "\0" /* DHCP_TIME_SERVER */ |
| 102 | // "namesrv" "\0" /* DHCP_NAME_SERVER */ |
| 103 | "dns" "\0" /* DHCP_DNS_SERVER */ |
| 104 | // "logsrv" "\0" /* DHCP_LOG_SERVER */ |
| 105 | // "cookiesrv" "\0" /* DHCP_COOKIE_SERVER */ |
| 106 | "lprsrv" "\0" /* DHCP_LPR_SERVER */ |
| 107 | "hostname" "\0" /* DHCP_HOST_NAME */ |
| 108 | "bootsize" "\0" /* DHCP_BOOT_SIZE */ |
| 109 | "domain" "\0" /* DHCP_DOMAIN_NAME */ |
| 110 | "swapsrv" "\0" /* DHCP_SWAP_SERVER */ |
| 111 | "rootpath" "\0" /* DHCP_ROOT_PATH */ |
| 112 | "ipttl" "\0" /* DHCP_IP_TTL */ |
| 113 | "mtu" "\0" /* DHCP_MTU */ |
| 114 | "broadcast" "\0" /* DHCP_BROADCAST */ |
| 115 | "routes" "\0" /* DHCP_ROUTES */ |
| 116 | "nisdomain" "\0" /* DHCP_NIS_DOMAIN */ |
| 117 | "nissrv" "\0" /* DHCP_NIS_SERVER */ |
| 118 | "ntpsrv" "\0" /* DHCP_NTP_SERVER */ |
| 119 | "wins" "\0" /* DHCP_WINS_SERVER */ |
| 120 | "lease" "\0" /* DHCP_LEASE_TIME */ |
| 121 | "serverid" "\0" /* DHCP_SERVER_ID */ |
| 122 | "message" "\0" /* DHCP_ERR_MESSAGE */ |
| 123 | "tftp" "\0" /* DHCP_TFTP_SERVER_NAME*/ |
| 124 | "bootfile" "\0" /* DHCP_BOOT_FILE */ |
| 125 | // "userclass" "\0" /* DHCP_USER_CLASS */ |
Antoine Girard-Vallée | 0e7bd69 | 2019-03-08 09:24:42 -0500 | [diff] [blame] | 126 | "tzstr" "\0" /* DHCP_PCODE */ |
| 127 | "tzdbstr" "\0" /* DHCP_TCODE */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 128 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 6d26744 | 2018-07-04 15:44:22 +0200 | [diff] [blame] | 129 | "search" "\0" /* DHCP_DOMAIN_SEARCH */ |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 130 | // doesn't work in udhcpd.conf since OPTION_SIP_SERVERS |
| 131 | // is not handled yet by "string->option" conversion code: |
Denys Vlasenko | 6d26744 | 2018-07-04 15:44:22 +0200 | [diff] [blame] | 132 | "sipsrv" "\0" /* DHCP_SIP_SERVERS */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 133 | #endif |
Denys Vlasenko | 6d26744 | 2018-07-04 15:44:22 +0200 | [diff] [blame] | 134 | "staticroutes" "\0" /* DHCP_STATIC_ROUTES */ |
Nigel Hathaway | fb6b173 | 2011-04-26 02:50:00 +0200 | [diff] [blame] | 135 | #if ENABLE_FEATURE_UDHCP_8021Q |
Denys Vlasenko | 6d26744 | 2018-07-04 15:44:22 +0200 | [diff] [blame] | 136 | "vlanid" "\0" /* DHCP_VLAN_ID */ |
| 137 | "vlanpriority" "\0" /* DHCP_VLAN_PRIORITY */ |
Nigel Hathaway | fb6b173 | 2011-04-26 02:50:00 +0200 | [diff] [blame] | 138 | #endif |
Denys Vlasenko | 6d26744 | 2018-07-04 15:44:22 +0200 | [diff] [blame] | 139 | "pxeconffile" "\0" /* DHCP_PXE_CONF_FILE */ |
| 140 | "pxepathprefix" "\0" /* DHCP_PXE_PATH_PREFIX */ |
| 141 | "reboottime" "\0" /* DHCP_REBOOT_TIME */ |
| 142 | "ip6rd" "\0" /* DHCP_6RD */ |
| 143 | "msstaticroutes" "\0" /* DHCP_MS_STATIC_ROUTES*/ |
| 144 | "wpad" "\0" /* DHCP_WPAD */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 145 | ; |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 146 | #endif |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 147 | |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 148 | /* Lengths of the option types in binary form. |
| 149 | * Used by: |
| 150 | * udhcp_str2optset: to determine how many bytes to allocate. |
| 151 | * xmalloc_optname_optval: to estimate string length |
| 152 | * from binary option length: (option[LEN] / dhcp_option_lengths[opt_type]) |
Denys Vlasenko | 352f79a | 2016-02-26 15:54:56 +0100 | [diff] [blame] | 153 | * is the number of elements, multiply it by one element's string width |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 154 | * (len_of_option_as_string[opt_type]) and you know how wide string you need. |
| 155 | */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 156 | const uint8_t dhcp_option_lengths[] ALIGN1 = { |
| 157 | [OPTION_IP] = 4, |
| 158 | [OPTION_IP_PAIR] = 8, |
| 159 | // [OPTION_BOOLEAN] = 1, |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 160 | [OPTION_STRING] = 1, /* ignored by udhcp_str2optset */ |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 161 | [OPTION_STRING_HOST] = 1, /* ignored by udhcp_str2optset */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 162 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 163 | [OPTION_DNS_STRING] = 1, /* ignored by both udhcp_str2optset and xmalloc_optname_optval */ |
| 164 | [OPTION_SIP_SERVERS] = 1, |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 165 | #endif |
| 166 | [OPTION_U8] = 1, |
| 167 | [OPTION_U16] = 2, |
| 168 | // [OPTION_S16] = 2, |
| 169 | [OPTION_U32] = 4, |
| 170 | [OPTION_S32] = 4, |
| 171 | /* Just like OPTION_STRING, we use minimum length here */ |
| 172 | [OPTION_STATIC_ROUTES] = 5, |
Denys Vlasenko | 352f79a | 2016-02-26 15:54:56 +0100 | [diff] [blame] | 173 | [OPTION_6RD] = 12, /* ignored by udhcp_str2optset */ |
| 174 | /* The above value was chosen as follows: |
| 175 | * len_of_option_as_string[] for this option is >60: it's a string of the form |
| 176 | * "32 128 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff 255.255.255.255 ". |
| 177 | * Each additional ipv4 address takes 4 bytes in binary option and appends |
| 178 | * another "255.255.255.255 " 16-byte string. We can set [OPTION_6RD] = 4 |
| 179 | * but this severely overestimates string length: instead of 16 bytes, |
| 180 | * it adds >60 for every 4 bytes in binary option. |
| 181 | * We cheat and declare here that option is in units of 12 bytes. |
| 182 | * This adds more than 60 bytes for every three ipv4 addresses - more than enough. |
| 183 | * (Even 16 instead of 12 should work, but let's be paranoid). |
| 184 | */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 185 | }; |
| 186 | |
| 187 | |
| 188 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 2 |
| 189 | static void log_option(const char *pfx, const uint8_t *opt) |
| 190 | { |
| 191 | if (dhcp_verbose >= 2) { |
| 192 | char buf[256 * 2 + 2]; |
| 193 | *bin2hex(buf, (void*) (opt + OPT_DATA), opt[OPT_LEN]) = '\0'; |
James Byrne | 253c4e7 | 2019-04-12 17:01:51 +0000 | [diff] [blame] | 194 | bb_info_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 195 | } |
| 196 | } |
| 197 | #else |
| 198 | # define log_option(pfx, opt) ((void)0) |
| 199 | #endif |
| 200 | |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 201 | unsigned FAST_FUNC udhcp_option_idx(const char *name, const char *option_strings) |
Denys Vlasenko | 9107b63 | 2010-03-27 23:23:41 +0100 | [diff] [blame] | 202 | { |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 203 | int n = index_in_strings(option_strings, name); |
Denys Vlasenko | 9107b63 | 2010-03-27 23:23:41 +0100 | [diff] [blame] | 204 | if (n >= 0) |
| 205 | return n; |
| 206 | |
| 207 | { |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 208 | char *buf, *d; |
| 209 | const char *s; |
| 210 | |
| 211 | s = option_strings; |
| 212 | while (*s) |
| 213 | s += strlen(s) + 1; |
| 214 | |
| 215 | d = buf = xzalloc(s - option_strings); |
| 216 | s = option_strings; |
| 217 | while (!(*s == '\0' && s[1] == '\0')) { |
Denys Vlasenko | 9107b63 | 2010-03-27 23:23:41 +0100 | [diff] [blame] | 218 | *d++ = (*s == '\0' ? ' ' : *s); |
| 219 | s++; |
| 220 | } |
Denys Vlasenko | 9107b63 | 2010-03-27 23:23:41 +0100 | [diff] [blame] | 221 | bb_error_msg_and_die("unknown option '%s', known options: %s", name, buf); |
| 222 | } |
| 223 | } |
| 224 | |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 225 | /* Initialize state to be used between subsequent udhcp_scan_options calls */ |
| 226 | void FAST_FUNC init_scan_state(struct dhcp_packet *packet, struct dhcp_scan_state *scan_state) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 227 | { |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 228 | scan_state->overload = 0; |
| 229 | scan_state->rem = sizeof(packet->options); |
| 230 | scan_state->optionptr = packet->options; |
| 231 | } |
| 232 | |
| 233 | /* Iterate over packet's options, each call returning the next option. |
| 234 | * scan_state needs to be initialized with init_scan_state beforehand. |
| 235 | * Warning, result is not aligned. */ |
| 236 | uint8_t* FAST_FUNC udhcp_scan_options(struct dhcp_packet *packet, struct dhcp_scan_state *scan_state) |
| 237 | { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 238 | int len; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 239 | enum { |
| 240 | FILE_FIELD101 = FILE_FIELD * 0x101, |
| 241 | SNAME_FIELD101 = SNAME_FIELD * 0x101, |
| 242 | }; |
| 243 | |
| 244 | /* option bytes: [code][len][data1][data2]..[dataLEN] */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 245 | while (1) { |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 246 | if (scan_state->rem <= 0) { |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 247 | complain: |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 248 | bb_simple_error_msg("bad packet, malformed option field"); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 249 | return NULL; |
| 250 | } |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 251 | |
| 252 | /* DHCP_PADDING and DHCP_END have no [len] byte */ |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 253 | if (scan_state->optionptr[OPT_CODE] == DHCP_PADDING) { |
| 254 | scan_state->rem--; |
| 255 | scan_state->optionptr++; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 256 | continue; |
| 257 | } |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 258 | if (scan_state->optionptr[OPT_CODE] == DHCP_END) { |
| 259 | if ((scan_state->overload & FILE_FIELD101) == FILE_FIELD) { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 260 | /* can use packet->file, and didn't look at it yet */ |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 261 | scan_state->overload |= FILE_FIELD101; /* "we looked at it" */ |
| 262 | scan_state->optionptr = packet->file; |
| 263 | scan_state->rem = sizeof(packet->file); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 264 | continue; |
| 265 | } |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 266 | if ((scan_state->overload & SNAME_FIELD101) == SNAME_FIELD) { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 267 | /* can use packet->sname, and didn't look at it yet */ |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 268 | scan_state->overload |= SNAME_FIELD101; /* "we looked at it" */ |
| 269 | scan_state->optionptr = packet->sname; |
| 270 | scan_state->rem = sizeof(packet->sname); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 271 | continue; |
| 272 | } |
| 273 | break; |
| 274 | } |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 275 | |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 276 | if (scan_state->rem <= OPT_LEN) |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 277 | goto complain; /* complain and return NULL */ |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 278 | len = 2 + scan_state->optionptr[OPT_LEN]; |
| 279 | scan_state->rem -= len; |
| 280 | /* So far no valid option with length 0 known. */ |
| 281 | if (scan_state->rem < 0 || scan_state->optionptr[OPT_LEN] == 0) |
Brian Foley | f9beeb2 | 2016-10-25 14:20:55 +0200 | [diff] [blame] | 282 | goto complain; /* complain and return NULL */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 283 | |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 284 | if (scan_state->optionptr[OPT_CODE] == DHCP_OPTION_OVERLOAD) { |
Denys Vlasenko | f11c698 | 2016-10-25 14:25:52 +0200 | [diff] [blame] | 285 | if (len >= 3) |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 286 | scan_state->overload |= scan_state->optionptr[OPT_DATA]; |
| 287 | } else { |
| 288 | uint8_t *return_ptr = scan_state->optionptr; |
| 289 | scan_state->optionptr += len; |
| 290 | return return_ptr; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 291 | } |
Martin Lewis | acdc8ee | 2020-06-23 15:25:08 -0500 | [diff] [blame] | 292 | scan_state->optionptr += len; |
| 293 | } |
| 294 | |
| 295 | return NULL; |
| 296 | } |
| 297 | |
| 298 | /* Get an option with bounds checking (warning, result is not aligned) */ |
| 299 | uint8_t* FAST_FUNC udhcp_get_option(struct dhcp_packet *packet, int code) |
| 300 | { |
| 301 | uint8_t *optptr; |
| 302 | struct dhcp_scan_state scan_state; |
| 303 | |
| 304 | init_scan_state(packet, &scan_state); |
| 305 | while ((optptr = udhcp_scan_options(packet, &scan_state)) != NULL) { |
| 306 | if (optptr[OPT_CODE] == code) { |
| 307 | log_option("option found", optptr); |
| 308 | return optptr + OPT_DATA; |
| 309 | } |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /* log3 because udhcpc uses it a lot - very noisy */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 313 | log3("option 0x%02x not found", code); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 314 | return NULL; |
| 315 | } |
| 316 | |
Denys Vlasenko | 6d3b4bb | 2018-12-17 18:07:18 +0100 | [diff] [blame] | 317 | uint8_t* FAST_FUNC udhcp_get_option32(struct dhcp_packet *packet, int code) |
| 318 | { |
| 319 | uint8_t *r = udhcp_get_option(packet, code); |
| 320 | if (r) { |
Denys Vlasenko | 74d9f1b | 2019-01-07 15:33:42 +0100 | [diff] [blame] | 321 | if (r[-OPT_DATA + OPT_LEN] != 4) |
Denys Vlasenko | 6d3b4bb | 2018-12-17 18:07:18 +0100 | [diff] [blame] | 322 | r = NULL; |
| 323 | } |
| 324 | return r; |
| 325 | } |
| 326 | |
Denys Vlasenko | b7d19cc | 2010-05-30 23:41:23 +0200 | [diff] [blame] | 327 | /* Return the position of the 'end' option (no bounds checking) */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 328 | int FAST_FUNC udhcp_end_option(uint8_t *optionptr) |
| 329 | { |
| 330 | int i = 0; |
| 331 | |
| 332 | while (optionptr[i] != DHCP_END) { |
| 333 | if (optionptr[i] != DHCP_PADDING) |
| 334 | i += optionptr[i + OPT_LEN] + OPT_DATA-1; |
| 335 | i++; |
| 336 | } |
| 337 | return i; |
| 338 | } |
| 339 | |
| 340 | /* Add an option (supplied in binary form) to the options. |
| 341 | * Option format: [code][len][data1][data2]..[dataLEN] |
| 342 | */ |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 343 | void FAST_FUNC udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addopt) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 344 | { |
| 345 | unsigned len; |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 346 | uint8_t *optionptr = packet->options; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 347 | unsigned end = udhcp_end_option(optionptr); |
| 348 | |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 349 | len = OPT_DATA + addopt[OPT_LEN]; |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 350 | /* end position + (option code/length + addopt length) + end option */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 351 | if (end + len + 1 >= DHCP_OPTIONS_BUFSIZE) { |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 352 | //TODO: learn how to use overflow option if we exhaust packet->options[] |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 353 | bb_error_msg("option 0x%02x did not fit into the packet", |
| 354 | addopt[OPT_CODE]); |
| 355 | return; |
| 356 | } |
Denys Vlasenko | f75a96d | 2016-03-30 18:49:45 +0200 | [diff] [blame] | 357 | log_option("adding option", addopt); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 358 | memcpy(optionptr + end, addopt, len); |
| 359 | optionptr[end + len] = DHCP_END; |
| 360 | } |
| 361 | |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 362 | #if ENABLE_UDHCPC || ENABLE_UDHCPD |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 363 | /* Add an one to four byte option to a packet */ |
| 364 | void FAST_FUNC udhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, uint32_t data) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 365 | { |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 366 | const struct dhcp_optflag *dh; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 367 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 368 | for (dh = dhcp_optflags; dh->code; dh++) { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 369 | if (dh->code == code) { |
| 370 | uint8_t option[6], len; |
| 371 | |
| 372 | option[OPT_CODE] = code; |
| 373 | len = dhcp_option_lengths[dh->flags & OPTION_TYPE_MASK]; |
| 374 | option[OPT_LEN] = len; |
| 375 | if (BB_BIG_ENDIAN) |
| 376 | data <<= 8 * (4 - len); |
| 377 | /* Assignment is unaligned! */ |
| 378 | move_to_unaligned32(&option[OPT_DATA], data); |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 379 | udhcp_add_binary_option(packet, option); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 380 | return; |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | bb_error_msg("can't add option 0x%02x", code); |
| 385 | } |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 386 | #endif |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 387 | |
| 388 | /* Find option 'code' in opt_list */ |
Denys Vlasenko | 7724c76 | 2010-03-26 09:32:09 +0100 | [diff] [blame] | 389 | struct option_set* FAST_FUNC udhcp_find_option(struct option_set *opt_list, uint8_t code) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 390 | { |
| 391 | while (opt_list && opt_list->data[OPT_CODE] < code) |
| 392 | opt_list = opt_list->next; |
| 393 | |
| 394 | if (opt_list && opt_list->data[OPT_CODE] == code) |
| 395 | return opt_list; |
| 396 | return NULL; |
| 397 | } |
| 398 | |
| 399 | /* Parse string to IP in network order */ |
| 400 | int FAST_FUNC udhcp_str2nip(const char *str, void *arg) |
| 401 | { |
| 402 | len_and_sockaddr *lsa; |
| 403 | |
| 404 | lsa = host_and_af2sockaddr(str, 0, AF_INET); |
| 405 | if (!lsa) |
| 406 | return 0; |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 407 | /* arg maybe unaligned */ |
| 408 | move_to_unaligned32((uint32_t*)arg, lsa->u.sin.sin_addr.s_addr); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 409 | free(lsa); |
| 410 | return 1; |
| 411 | } |
| 412 | |
| 413 | /* udhcp_str2optset: |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 414 | * Parse string option representation to binary form and add it to opt_list. |
| 415 | * Called to parse "udhcpc -x OPTNAME:OPTVAL" |
| 416 | * and to parse udhcpd.conf's "opt OPTNAME OPTVAL" directives. |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 417 | */ |
| 418 | /* helper: add an option to the opt_list */ |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 419 | #if !ENABLE_UDHCPC6 |
| 420 | #define attach_option(opt_list, optflag, buffer, length, dhcpv6) \ |
| 421 | attach_option(opt_list, optflag, buffer, length) |
| 422 | #endif |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 423 | static NOINLINE void attach_option( |
| 424 | struct option_set **opt_list, |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 425 | const struct dhcp_optflag *optflag, |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 426 | char *buffer, |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 427 | int length, |
| 428 | bool dhcpv6) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 429 | { |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 430 | IF_NOT_UDHCPC6(bool dhcpv6 = 0;) |
Denys Vlasenko | b443a37 | 2013-05-17 15:19:47 +0200 | [diff] [blame] | 431 | struct option_set *existing; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 432 | char *allocated = NULL; |
Denys Vlasenko | b443a37 | 2013-05-17 15:19:47 +0200 | [diff] [blame] | 433 | |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 434 | if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_BIN) { |
| 435 | const char *end; |
| 436 | allocated = xstrdup(buffer); /* more than enough */ |
| 437 | end = hex2bin(allocated, buffer, 255); |
| 438 | if (errno) |
| 439 | bb_error_msg_and_die("malformed hex string '%s'", buffer); |
| 440 | length = end - allocated; |
Denys Vlasenko | b80bdeb | 2019-01-07 15:23:18 +0100 | [diff] [blame] | 441 | buffer = allocated; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 442 | } |
Denys Vlasenko | b443a37 | 2013-05-17 15:19:47 +0200 | [diff] [blame] | 443 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
| 444 | if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_DNS_STRING) { |
| 445 | /* reuse buffer and length for RFC1035-formatted string */ |
Denys Vlasenko | 0cad5f9 | 2020-06-09 17:22:06 +0200 | [diff] [blame] | 446 | allocated = buffer = (char *)dname_enc(/*NULL, 0,*/ buffer, &length); |
Denys Vlasenko | b443a37 | 2013-05-17 15:19:47 +0200 | [diff] [blame] | 447 | } |
| 448 | #endif |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 449 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 450 | existing = udhcp_find_option(*opt_list, optflag->code); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 451 | if (!existing) { |
Denys Vlasenko | b443a37 | 2013-05-17 15:19:47 +0200 | [diff] [blame] | 452 | struct option_set *new, **curr; |
| 453 | |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 454 | /* make a new option */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 455 | log2("attaching option %02x to list", optflag->code); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 456 | new = xmalloc(sizeof(*new)); |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 457 | if (!dhcpv6) { |
| 458 | new->data = xmalloc(length + OPT_DATA); |
| 459 | new->data[OPT_CODE] = optflag->code; |
| 460 | new->data[OPT_LEN] = length; |
Denys Vlasenko | b80bdeb | 2019-01-07 15:23:18 +0100 | [diff] [blame] | 461 | memcpy(new->data + OPT_DATA, buffer, length); |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 462 | } else { |
| 463 | new->data = xmalloc(length + D6_OPT_DATA); |
| 464 | new->data[D6_OPT_CODE] = optflag->code >> 8; |
| 465 | new->data[D6_OPT_CODE + 1] = optflag->code & 0xff; |
| 466 | new->data[D6_OPT_LEN] = length >> 8; |
| 467 | new->data[D6_OPT_LEN + 1] = length & 0xff; |
Denys Vlasenko | b80bdeb | 2019-01-07 15:23:18 +0100 | [diff] [blame] | 468 | memcpy(new->data + D6_OPT_DATA, buffer, |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 469 | length); |
| 470 | } |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 471 | |
| 472 | curr = opt_list; |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 473 | while (*curr && (*curr)->data[OPT_CODE] < optflag->code) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 474 | curr = &(*curr)->next; |
| 475 | |
| 476 | new->next = *curr; |
| 477 | *curr = new; |
| 478 | goto ret; |
| 479 | } |
| 480 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 481 | if (optflag->flags & OPTION_LIST) { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 482 | unsigned old_len; |
| 483 | |
| 484 | /* add it to an existing option */ |
Denys Vlasenko | 8f2e99c | 2016-03-30 18:41:23 +0200 | [diff] [blame] | 485 | log2("attaching option %02x to existing member of list", optflag->code); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 486 | old_len = existing->data[OPT_LEN]; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 487 | if (old_len + length < 255) { |
| 488 | /* actually 255 is ok too, but adding a space can overlow it */ |
| 489 | |
| 490 | existing->data = xrealloc(existing->data, OPT_DATA + 1 + old_len + length); |
Denys Vlasenko | b80bdeb | 2019-01-07 15:23:18 +0100 | [diff] [blame] | 491 | // So far dhcp_optflags[] has no OPTION_STRING[_HOST] | OPTION_LIST items |
| 492 | #if 0 |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 493 | if ((optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING |
| 494 | || (optflag->flags & OPTION_TYPE_MASK) == OPTION_STRING_HOST |
| 495 | ) { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 496 | /* add space separator between STRING options in a list */ |
| 497 | existing->data[OPT_DATA + old_len] = ' '; |
| 498 | old_len++; |
| 499 | } |
Denys Vlasenko | b80bdeb | 2019-01-07 15:23:18 +0100 | [diff] [blame] | 500 | #endif |
| 501 | |
| 502 | memcpy(existing->data + OPT_DATA + old_len, buffer, length); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 503 | existing->data[OPT_LEN] = old_len + length; |
| 504 | } /* else, ignore the data, we could put this in a second option in the future */ |
| 505 | } /* else, ignore the new data */ |
| 506 | |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 507 | ret: |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 508 | free(allocated); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 509 | } |
| 510 | |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 511 | int FAST_FUNC udhcp_str2optset(const char *const_str, void *arg, |
| 512 | const struct dhcp_optflag *optflags, const char *option_strings, |
| 513 | bool dhcpv6) |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 514 | { |
| 515 | struct option_set **opt_list = arg; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 516 | char *opt; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 517 | char *str; |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 518 | const struct dhcp_optflag *optflag; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 519 | struct dhcp_optflag userdef_optflag; |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 520 | unsigned optcode; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 521 | int retval; |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 522 | /* IP_PAIR needs 8 bytes, STATIC_ROUTES needs 9 max */ |
| 523 | char buffer[9] ALIGNED(4); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 524 | uint16_t *result_u16 = (uint16_t *) buffer; |
| 525 | uint32_t *result_u32 = (uint32_t *) buffer; |
| 526 | |
| 527 | /* Cheat, the only *const* str possible is "" */ |
| 528 | str = (char *) const_str; |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 529 | opt = strtok_r(str, " \t=:", &str); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 530 | if (!opt) |
| 531 | return 0; |
| 532 | |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 533 | optcode = bb_strtou(opt, NULL, 0); |
| 534 | if (!errno && optcode < 255) { |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 535 | /* Raw (numeric) option code. |
| 536 | * Initially assume binary (hex-str), but if "str" or 'str' |
| 537 | * is seen later, switch to STRING. |
| 538 | */ |
| 539 | userdef_optflag.flags = OPTION_BIN; |
| 540 | userdef_optflag.code = optcode; |
| 541 | optflag = &userdef_optflag; |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 542 | } else { |
Denys Vlasenko | ba4fbca | 2017-06-28 19:18:17 +0200 | [diff] [blame] | 543 | optflag = &optflags[udhcp_option_idx(opt, option_strings)]; |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 544 | } |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 545 | |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 546 | /* Loop to handle OPTION_LIST case, else execute just once */ |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 547 | retval = 0; |
| 548 | do { |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 549 | int length; |
| 550 | char *val; |
| 551 | |
Samuel Mendoza-Jonas | 43b9235 | 2018-05-14 14:29:15 +1000 | [diff] [blame] | 552 | if (optflag->flags == OPTION_BIN) { |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 553 | val = strtok_r(NULL, "", &str); /* do not split "'q w e'" */ |
Michal Kazior | 1f1988d | 2019-09-25 14:03:13 +0200 | [diff] [blame] | 554 | if (val) trim(val); |
Samuel Mendoza-Jonas | 43b9235 | 2018-05-14 14:29:15 +1000 | [diff] [blame] | 555 | } else |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 556 | val = strtok_r(NULL, ", \t", &str); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 557 | if (!val) |
| 558 | break; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 559 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 560 | length = dhcp_option_lengths[optflag->flags & OPTION_TYPE_MASK]; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 561 | retval = 0; |
| 562 | opt = buffer; /* new meaning for variable opt */ |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 563 | |
Denys Vlasenko | c03602b | 2010-04-04 15:28:49 +0200 | [diff] [blame] | 564 | switch (optflag->flags & OPTION_TYPE_MASK) { |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 565 | case OPTION_IP: |
| 566 | retval = udhcp_str2nip(val, buffer); |
| 567 | break; |
| 568 | case OPTION_IP_PAIR: |
| 569 | retval = udhcp_str2nip(val, buffer); |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 570 | val = strtok_r(NULL, ", \t/-", &str); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 571 | if (!val) |
| 572 | retval = 0; |
| 573 | if (retval) |
| 574 | retval = udhcp_str2nip(val, buffer + 4); |
| 575 | break; |
Denys Vlasenko | b80bdeb | 2019-01-07 15:23:18 +0100 | [diff] [blame] | 576 | case_OPTION_STRING: |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 577 | case OPTION_STRING: |
Denys Vlasenko | 7280d20 | 2011-12-08 16:41:05 +0100 | [diff] [blame] | 578 | case OPTION_STRING_HOST: |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 579 | #if ENABLE_FEATURE_UDHCP_RFC3397 |
Denys Vlasenko | 243ddcb | 2010-04-03 17:34:52 +0200 | [diff] [blame] | 580 | case OPTION_DNS_STRING: |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 581 | #endif |
| 582 | length = strnlen(val, 254); |
| 583 | if (length > 0) { |
| 584 | opt = val; |
| 585 | retval = 1; |
| 586 | } |
| 587 | break; |
| 588 | // case OPTION_BOOLEAN: { |
Denys Vlasenko | 8a659f6 | 2010-04-03 00:52:16 +0200 | [diff] [blame] | 589 | // static const char no_yes[] ALIGN1 = "no\0yes\0"; |
| 590 | // buffer[0] = retval = index_in_strings(no_yes, val); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 591 | // retval++; /* 0 - bad; 1: "no" 2: "yes" */ |
| 592 | // break; |
| 593 | // } |
| 594 | case OPTION_U8: |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 595 | buffer[0] = bb_strtou32(val, NULL, 0); |
| 596 | retval = (errno == 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 597 | break; |
| 598 | /* htonX are macros in older libc's, using temp var |
| 599 | * in code below for safety */ |
| 600 | /* TODO: use bb_strtoX? */ |
| 601 | case OPTION_U16: { |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 602 | uint32_t tmp = bb_strtou32(val, NULL, 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 603 | *result_u16 = htons(tmp); |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 604 | retval = (errno == 0 /*&& tmp < 0x10000*/); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 605 | break; |
| 606 | } |
| 607 | // case OPTION_S16: { |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 608 | // long tmp = bb_strtoi32(val, NULL, 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 609 | // *result_u16 = htons(tmp); |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 610 | // retval = (errno == 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 611 | // break; |
| 612 | // } |
| 613 | case OPTION_U32: { |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 614 | uint32_t tmp = bb_strtou32(val, NULL, 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 615 | *result_u32 = htonl(tmp); |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 616 | retval = (errno == 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 617 | break; |
| 618 | } |
| 619 | case OPTION_S32: { |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 620 | int32_t tmp = bb_strtoi32(val, NULL, 0); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 621 | *result_u32 = htonl(tmp); |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 622 | retval = (errno == 0); |
| 623 | break; |
| 624 | } |
| 625 | case OPTION_STATIC_ROUTES: { |
| 626 | /* Input: "a.b.c.d/m" */ |
| 627 | /* Output: mask(1 byte),pfx(0-4 bytes),gw(4 bytes) */ |
| 628 | unsigned mask; |
| 629 | char *slash = strchr(val, '/'); |
| 630 | if (slash) { |
| 631 | *slash = '\0'; |
| 632 | retval = udhcp_str2nip(val, buffer + 1); |
| 633 | buffer[0] = mask = bb_strtou(slash + 1, NULL, 10); |
Denys Vlasenko | 2496616 | 2020-10-06 02:36:47 +0200 | [diff] [blame] | 634 | val = strtok_r(NULL, ", \t/-", &str); |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 635 | if (!val || mask > 32 || errno) |
| 636 | retval = 0; |
| 637 | if (retval) { |
| 638 | length = ((mask + 7) >> 3) + 5; |
| 639 | retval = udhcp_str2nip(val, buffer + (length - 4)); |
| 640 | } |
| 641 | } |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 642 | break; |
| 643 | } |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 644 | case OPTION_BIN: |
| 645 | /* Raw (numeric) option code. Is it a string? */ |
| 646 | if (val[0] == '"' || val[0] == '\'') { |
| 647 | char delim = val[0]; |
| 648 | char *end = last_char_is(val + 1, delim); |
| 649 | if (end) { |
| 650 | *end = '\0'; |
| 651 | val++; |
| 652 | userdef_optflag.flags = OPTION_STRING; |
| 653 | goto case_OPTION_STRING; |
| 654 | } |
| 655 | } |
| 656 | /* No: hex-str option, handled in attach_option() */ |
Denys Vlasenko | 4f3aa51 | 2010-04-04 15:31:12 +0200 | [diff] [blame] | 657 | opt = val; |
| 658 | retval = 1; |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 659 | break; |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 660 | default: |
| 661 | break; |
| 662 | } |
Denys Vlasenko | 266f6f1 | 2018-04-13 13:18:34 +0200 | [diff] [blame] | 663 | |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 664 | if (retval) |
Denys Vlasenko | 6027597 | 2018-05-14 11:06:35 +0200 | [diff] [blame] | 665 | attach_option(opt_list, optflag, opt, length, dhcpv6); |
Michael McTernan | ee0f444 | 2011-12-16 17:10:09 +0100 | [diff] [blame] | 666 | } while (retval && (optflag->flags & OPTION_LIST)); |
Denys Vlasenko | a8f6b99 | 2010-03-26 08:35:24 +0100 | [diff] [blame] | 667 | |
| 668 | return retval; |
| 669 | } |
Denys Vlasenko | a092a89 | 2011-11-16 20:17:12 +0100 | [diff] [blame] | 670 | |
| 671 | /* note: ip is a pointer to an IPv6 in network order, possibly misaliged */ |
| 672 | int FAST_FUNC sprint_nip6(char *dest, /*const char *pre,*/ const uint8_t *ip) |
| 673 | { |
| 674 | char hexstrbuf[16 * 2]; |
| 675 | bin2hex(hexstrbuf, (void*)ip, 16); |
| 676 | return sprintf(dest, /* "%s" */ |
| 677 | "%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s:%.4s", |
| 678 | /* pre, */ |
| 679 | hexstrbuf + 0 * 4, |
| 680 | hexstrbuf + 1 * 4, |
| 681 | hexstrbuf + 2 * 4, |
| 682 | hexstrbuf + 3 * 4, |
| 683 | hexstrbuf + 4 * 4, |
| 684 | hexstrbuf + 5 * 4, |
| 685 | hexstrbuf + 6 * 4, |
| 686 | hexstrbuf + 7 * 4 |
| 687 | ); |
| 688 | } |