aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/udhcp/common.c3
-rw-r--r--networking/udhcp/dhcpc.c19
2 files changed, 13 insertions, 9 deletions
diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c
index ba41905cc..2e6113627 100644
--- a/networking/udhcp/common.c
+++ b/networking/udhcp/common.c
@@ -36,6 +36,9 @@ const struct dhcp_optflag dhcp_optflags[] = {
36 { OPTION_STRING , 0x11 }, /* DHCP_ROOT_PATH */ 36 { OPTION_STRING , 0x11 }, /* DHCP_ROOT_PATH */
37 { OPTION_U8 , 0x17 }, /* DHCP_IP_TTL */ 37 { OPTION_U8 , 0x17 }, /* DHCP_IP_TTL */
38 { OPTION_U16 , 0x1a }, /* DHCP_MTU */ 38 { OPTION_U16 , 0x1a }, /* DHCP_MTU */
39//TODO: why do we request DHCP_BROADCAST? Can't we assume that
40//in the unlikely case it is different from typical N.N.255.255,
41//server would let us know anyway?
39 { OPTION_IP | OPTION_REQ, 0x1c }, /* DHCP_BROADCAST */ 42 { OPTION_IP | OPTION_REQ, 0x1c }, /* DHCP_BROADCAST */
40 { OPTION_IP_PAIR | OPTION_LIST , 0x21 }, /* DHCP_ROUTES */ 43 { OPTION_IP_PAIR | OPTION_LIST , 0x21 }, /* DHCP_ROUTES */
41 { OPTION_STRING , 0x28 }, /* DHCP_NIS_DOMAIN */ 44 { OPTION_STRING , 0x28 }, /* DHCP_NIS_DOMAIN */
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index d9269f277..d67769e65 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -173,16 +173,13 @@ static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_
173 dest += sprintf(ret, "%s=", opt_name); 173 dest += sprintf(ret, "%s=", opt_name);
174 174
175 while (len >= optlen) { 175 while (len >= optlen) {
176 unsigned ip_ofs = 0;
177
178 switch (type) { 176 switch (type) {
177 case OPTION_IP:
179 case OPTION_IP_PAIR: 178 case OPTION_IP_PAIR:
180 dest += sprint_nip(dest, "", option); 179 dest += sprint_nip(dest, "", option);
181 *dest++ = '/'; 180 if (type == OPTION_IP)
182 ip_ofs = 4; 181 break;
183 /* fall through */ 182 dest += sprint_nip(dest, "/", option + 4);
184 case OPTION_IP:
185 dest += sprint_nip(dest, "", option + ip_ofs);
186 break; 183 break;
187// case OPTION_BOOLEAN: 184// case OPTION_BOOLEAN:
188// dest += sprintf(dest, *option ? "yes" : "no"); 185// dest += sprintf(dest, *option ? "yes" : "no");
@@ -204,10 +201,14 @@ static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_
204 dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32)); 201 dest += sprintf(dest, type == OPTION_U32 ? "%lu" : "%ld", (unsigned long) ntohl(val_u32));
205 break; 202 break;
206 } 203 }
204 /* Note: options which use 'return' instead of 'break'
205 * (for example, OPTION_STRING) skip the code which handles
206 * the case of list of options.
207 */
207 case OPTION_STRING: 208 case OPTION_STRING:
208 memcpy(dest, option, len); 209 memcpy(dest, option, len);
209 dest[len] = '\0'; 210 dest[len] = '\0';
210 return ret; /* Short circuit this case */ 211 return ret;
211 case OPTION_STATIC_ROUTES: { 212 case OPTION_STATIC_ROUTES: {
212 /* Option binary format: 213 /* Option binary format:
213 * mask [one byte, 0..32] 214 * mask [one byte, 0..32]
@@ -347,7 +348,7 @@ static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_
347// TODO: it can be a list only if (optflag->flags & OPTION_LIST). 348// TODO: it can be a list only if (optflag->flags & OPTION_LIST).
348// Should we bail out/warn if we see multi-ip option which is 349// Should we bail out/warn if we see multi-ip option which is
349// not allowed to be such (for example, DHCP_BROADCAST)? - 350// not allowed to be such (for example, DHCP_BROADCAST)? -
350 if (len <= 0 /* || !(optflag->flags & OPTION_LIST) */) 351 if (len < optlen /* || !(optflag->flags & OPTION_LIST) */)
351 break; 352 break;
352 *dest++ = ' '; 353 *dest++ = ' ';
353 *dest = '\0'; 354 *dest = '\0';