vm: fix a null dereference on out-of-memory
[minix.git] / lib / liblwip / core / dhcp.c
blob37943ca6403b6430b6b407591f28aefe4a431787
1 /**
2 * @file
3 * Dynamic Host Configuration Protocol client
5 */
7 /*
9 * Copyright (c) 2001-2004 Leon Woestenberg <leon.woestenberg@gmx.net>
10 * Copyright (c) 2001-2004 Axon Digital Design B.V., The Netherlands.
11 * All rights reserved.
13 * Redistribution and use in source and binary forms, with or without modification,
14 * are permitted provided that the following conditions are met:
16 * 1. Redistributions of source code must retain the above copyright notice,
17 * this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright notice,
19 * this list of conditions and the following disclaimer in the documentation
20 * and/or other materials provided with the distribution.
21 * 3. The name of the author may not be used to endorse or promote products
22 * derived from this software without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
27 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
28 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
29 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
32 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
33 * OF SUCH DAMAGE.
35 * This file is a contribution to the lwIP TCP/IP stack.
36 * The Swedish Institute of Computer Science and Adam Dunkels
37 * are specifically granted permission to redistribute this
38 * source code.
40 * Author: Leon Woestenberg <leon.woestenberg@gmx.net>
42 * This is a DHCP client for the lwIP TCP/IP stack. It aims to conform
43 * with RFC 2131 and RFC 2132.
45 * TODO:
46 * - Support for interfaces other than Ethernet (SLIP, PPP, ...)
48 * Please coordinate changes and requests with Leon Woestenberg
49 * <leon.woestenberg@gmx.net>
51 * Integration with your code:
53 * In lwip/dhcp.h
54 * #define DHCP_COARSE_TIMER_SECS (recommended 60 which is a minute)
55 * #define DHCP_FINE_TIMER_MSECS (recommended 500 which equals TCP coarse timer)
57 * Then have your application call dhcp_coarse_tmr() and
58 * dhcp_fine_tmr() on the defined intervals.
60 * dhcp_start(struct netif *netif);
61 * starts a DHCP client instance which configures the interface by
62 * obtaining an IP address lease and maintaining it.
64 * Use dhcp_release(netif) to end the lease and use dhcp_stop(netif)
65 * to remove the DHCP client.
69 #include "lwip/opt.h"
71 #if LWIP_DHCP /* don't build if not configured for use in lwipopts.h */
73 #include "lwip/stats.h"
74 #include "lwip/mem.h"
75 #include "lwip/udp.h"
76 #include "lwip/ip_addr.h"
77 #include "lwip/netif.h"
78 #include "lwip/def.h"
79 #include "lwip/sys.h"
80 #include "lwip/dhcp.h"
81 #include "lwip/autoip.h"
82 #include "lwip/dns.h"
83 #include "netif/etharp.h"
85 #include <string.h>
87 /** Default for DHCP_GLOBAL_XID is 0xABCD0000
88 * This can be changed by defining DHCP_GLOBAL_XID and DHCP_GLOBAL_XID_HEADER, e.g.
89 * #define DHCP_GLOBAL_XID_HEADER "stdlib.h"
90 * #define DHCP_GLOBAL_XID rand()
92 #ifdef DHCP_GLOBAL_XID_HEADER
93 #include DHCP_GLOBAL_XID_HEADER /* include optional starting XID generation prototypes */
94 #endif
96 /** DHCP_OPTION_MAX_MSG_SIZE is set to the MTU
97 * MTU is checked to be big enough in dhcp_start */
98 #define DHCP_MAX_MSG_LEN(netif) (netif->mtu)
99 #define DHCP_MAX_MSG_LEN_MIN_REQUIRED 576
100 /** Minimum length for reply before packet is parsed */
101 #define DHCP_MIN_REPLY_LEN 44
103 #define REBOOT_TRIES 2
105 /** Option handling: options are parsed in dhcp_parse_reply
106 * and saved in an array where other functions can load them from.
107 * This might be moved into the struct dhcp (not necessarily since
108 * lwIP is single-threaded and the array is only used while in recv
109 * callback). */
110 #define DHCP_OPTION_IDX_OVERLOAD 0
111 #define DHCP_OPTION_IDX_MSG_TYPE 1
112 #define DHCP_OPTION_IDX_SERVER_ID 2
113 #define DHCP_OPTION_IDX_LEASE_TIME 3
114 #define DHCP_OPTION_IDX_T1 4
115 #define DHCP_OPTION_IDX_T2 5
116 #define DHCP_OPTION_IDX_SUBNET_MASK 6
117 #define DHCP_OPTION_IDX_ROUTER 7
118 #define DHCP_OPTION_IDX_DNS_SERVER 8
119 #define DHCP_OPTION_IDX_MAX (DHCP_OPTION_IDX_DNS_SERVER + DNS_MAX_SERVERS)
121 /** Holds the decoded option values, only valid while in dhcp_recv.
122 @todo: move this into struct dhcp? */
123 u32_t dhcp_rx_options_val[DHCP_OPTION_IDX_MAX];
124 /** Holds a flag which option was received and is contained in dhcp_rx_options_val,
125 only valid while in dhcp_recv.
126 @todo: move this into struct dhcp? */
127 u8_t dhcp_rx_options_given[DHCP_OPTION_IDX_MAX];
129 #define dhcp_option_given(dhcp, idx) (dhcp_rx_options_given[idx] != 0)
130 #define dhcp_got_option(dhcp, idx) (dhcp_rx_options_given[idx] = 1)
131 #define dhcp_clear_option(dhcp, idx) (dhcp_rx_options_given[idx] = 0)
132 #define dhcp_clear_all_options(dhcp) (memset(dhcp_rx_options_given, 0, sizeof(dhcp_rx_options_given)))
133 #define dhcp_get_option_value(dhcp, idx) (dhcp_rx_options_val[idx])
134 #define dhcp_set_option_value(dhcp, idx, val) (dhcp_rx_options_val[idx] = (val))
137 /* DHCP client state machine functions */
138 static err_t dhcp_discover(struct netif *netif);
139 static err_t dhcp_select(struct netif *netif);
140 static void dhcp_bind(struct netif *netif);
141 #if DHCP_DOES_ARP_CHECK
142 static err_t dhcp_decline(struct netif *netif);
143 #endif /* DHCP_DOES_ARP_CHECK */
144 static err_t dhcp_rebind(struct netif *netif);
145 static err_t dhcp_reboot(struct netif *netif);
146 static void dhcp_set_state(struct dhcp *dhcp, u8_t new_state);
148 /* receive, unfold, parse and free incoming messages */
149 static void dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port);
151 /* set the DHCP timers */
152 static void dhcp_timeout(struct netif *netif);
153 static void dhcp_t1_timeout(struct netif *netif);
154 static void dhcp_t2_timeout(struct netif *netif);
156 /* build outgoing messages */
157 /* create a DHCP message, fill in common headers */
158 static err_t dhcp_create_msg(struct netif *netif, struct dhcp *dhcp, u8_t message_type);
159 /* free a DHCP request */
160 static void dhcp_delete_msg(struct dhcp *dhcp);
161 /* add a DHCP option (type, then length in bytes) */
162 static void dhcp_option(struct dhcp *dhcp, u8_t option_type, u8_t option_len);
163 /* add option values */
164 static void dhcp_option_byte(struct dhcp *dhcp, u8_t value);
165 static void dhcp_option_short(struct dhcp *dhcp, u16_t value);
166 static void dhcp_option_long(struct dhcp *dhcp, u32_t value);
167 /* always add the DHCP options trailer to end and pad */
168 static void dhcp_option_trailer(struct dhcp *dhcp);
171 * Back-off the DHCP client (because of a received NAK response).
173 * Back-off the DHCP client because of a received NAK. Receiving a
174 * NAK means the client asked for something non-sensible, for
175 * example when it tries to renew a lease obtained on another network.
177 * We clear any existing set IP address and restart DHCP negotiation
178 * afresh (as per RFC2131 3.2.3).
180 * @param netif the netif under DHCP control
182 static void
183 dhcp_handle_nak(struct netif *netif)
185 struct dhcp *dhcp = netif->dhcp;
186 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_handle_nak(netif=%p) %c%c%"U16_F"\n",
187 (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num));
188 /* Set the interface down since the address must no longer be used, as per RFC2131 */
189 netif_set_down(netif);
190 /* remove IP address from interface */
191 netif_set_ipaddr(netif, IP_ADDR_ANY);
192 netif_set_gw(netif, IP_ADDR_ANY);
193 netif_set_netmask(netif, IP_ADDR_ANY);
194 /* Change to a defined state */
195 dhcp_set_state(dhcp, DHCP_BACKING_OFF);
196 /* We can immediately restart discovery */
197 dhcp_discover(netif);
200 #if DHCP_DOES_ARP_CHECK
202 * Checks if the offered IP address is already in use.
204 * It does so by sending an ARP request for the offered address and
205 * entering CHECKING state. If no ARP reply is received within a small
206 * interval, the address is assumed to be free for use by us.
208 * @param netif the netif under DHCP control
210 static void
211 dhcp_check(struct netif *netif)
213 struct dhcp *dhcp = netif->dhcp;
214 err_t result;
215 u16_t msecs;
216 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_check(netif=%p) %c%c\n", (void *)netif, (s16_t)netif->name[0],
217 (s16_t)netif->name[1]));
218 dhcp_set_state(dhcp, DHCP_CHECKING);
219 /* create an ARP query for the offered IP address, expecting that no host
220 responds, as the IP address should not be in use. */
221 result = etharp_query(netif, &dhcp->offered_ip_addr, NULL);
222 if (result != ERR_OK) {
223 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING, ("dhcp_check: could not perform ARP query\n"));
225 dhcp->tries++;
226 msecs = 500;
227 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
228 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_check(): set request timeout %"U16_F" msecs\n", msecs));
230 #endif /* DHCP_DOES_ARP_CHECK */
233 * Remember the configuration offered by a DHCP server.
235 * @param netif the netif under DHCP control
237 static void
238 dhcp_handle_offer(struct netif *netif)
240 struct dhcp *dhcp = netif->dhcp;
241 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_handle_offer(netif=%p) %c%c%"U16_F"\n",
242 (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num));
243 /* obtain the server address */
244 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_SERVER_ID)) {
245 ip4_addr_set_u32(&dhcp->server_ip_addr, htonl(dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_SERVER_ID)));
246 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_handle_offer(): server 0x%08"X32_F"\n",
247 ip4_addr_get_u32(&dhcp->server_ip_addr)));
248 /* remember offered address */
249 ip_addr_copy(dhcp->offered_ip_addr, dhcp->msg_in->yiaddr);
250 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_handle_offer(): offer for 0x%08"X32_F"\n",
251 ip4_addr_get_u32(&dhcp->offered_ip_addr)));
253 dhcp_select(netif);
254 } else {
255 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS,
256 ("dhcp_handle_offer(netif=%p) did not get server ID!\n", (void*)netif));
261 * Select a DHCP server offer out of all offers.
263 * Simply select the first offer received.
265 * @param netif the netif under DHCP control
266 * @return lwIP specific error (see error.h)
268 static err_t
269 dhcp_select(struct netif *netif)
271 struct dhcp *dhcp = netif->dhcp;
272 err_t result;
273 u16_t msecs;
275 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_select(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num));
276 dhcp_set_state(dhcp, DHCP_REQUESTING);
278 /* create and initialize the DHCP message header */
279 result = dhcp_create_msg(netif, dhcp, DHCP_REQUEST);
280 if (result == ERR_OK) {
281 dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);
282 dhcp_option_short(dhcp, DHCP_MAX_MSG_LEN(netif));
284 /* MUST request the offered IP address */
285 dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);
286 dhcp_option_long(dhcp, ntohl(ip4_addr_get_u32(&dhcp->offered_ip_addr)));
288 dhcp_option(dhcp, DHCP_OPTION_SERVER_ID, 4);
289 dhcp_option_long(dhcp, ntohl(ip4_addr_get_u32(&dhcp->server_ip_addr)));
291 dhcp_option(dhcp, DHCP_OPTION_PARAMETER_REQUEST_LIST, 4/*num options*/);
292 dhcp_option_byte(dhcp, DHCP_OPTION_SUBNET_MASK);
293 dhcp_option_byte(dhcp, DHCP_OPTION_ROUTER);
294 dhcp_option_byte(dhcp, DHCP_OPTION_BROADCAST);
295 dhcp_option_byte(dhcp, DHCP_OPTION_DNS_SERVER);
297 #if LWIP_NETIF_HOSTNAME
298 if (netif->hostname != NULL) {
299 const char *p = (const char*)netif->hostname;
300 u8_t namelen = (u8_t)strlen(p);
301 if (namelen > 0) {
302 LWIP_ASSERT("DHCP: hostname is too long!", namelen < 255);
303 dhcp_option(dhcp, DHCP_OPTION_HOSTNAME, namelen);
304 while (*p) {
305 dhcp_option_byte(dhcp, *p++);
309 #endif /* LWIP_NETIF_HOSTNAME */
311 dhcp_option_trailer(dhcp);
312 /* shrink the pbuf to the actual content length */
313 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
315 /* send broadcast to any DHCP server */
316 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
317 dhcp_delete_msg(dhcp);
318 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_select: REQUESTING\n"));
319 } else {
320 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING, ("dhcp_select: could not allocate DHCP request\n"));
322 dhcp->tries++;
323 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000;
324 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
325 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_select(): set request timeout %"U16_F" msecs\n", msecs));
326 return result;
330 * The DHCP timer that checks for lease renewal/rebind timeouts.
332 void
333 dhcp_coarse_tmr()
335 struct netif *netif = netif_list;
336 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_coarse_tmr()\n"));
337 /* iterate through all network interfaces */
338 while (netif != NULL) {
339 /* only act on DHCP configured interfaces */
340 if (netif->dhcp != NULL) {
341 /* timer is active (non zero), and triggers (zeroes) now? */
342 if (netif->dhcp->t2_timeout-- == 1) {
343 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_coarse_tmr(): t2 timeout\n"));
344 /* this clients' rebind timeout triggered */
345 dhcp_t2_timeout(netif);
346 /* timer is active (non zero), and triggers (zeroes) now */
347 } else if (netif->dhcp->t1_timeout-- == 1) {
348 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_coarse_tmr(): t1 timeout\n"));
349 /* this clients' renewal timeout triggered */
350 dhcp_t1_timeout(netif);
353 /* proceed to next netif */
354 netif = netif->next;
359 * DHCP transaction timeout handling
361 * A DHCP server is expected to respond within a short period of time.
362 * This timer checks whether an outstanding DHCP request is timed out.
364 void
365 dhcp_fine_tmr()
367 struct netif *netif = netif_list;
368 /* loop through netif's */
369 while (netif != NULL) {
370 /* only act on DHCP configured interfaces */
371 if (netif->dhcp != NULL) {
372 /* timer is active (non zero), and is about to trigger now */
373 if (netif->dhcp->request_timeout > 1) {
374 netif->dhcp->request_timeout--;
376 else if (netif->dhcp->request_timeout == 1) {
377 netif->dhcp->request_timeout--;
378 /* { netif->dhcp->request_timeout == 0 } */
379 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_fine_tmr(): request timeout\n"));
380 /* this client's request timeout triggered */
381 dhcp_timeout(netif);
384 /* proceed to next network interface */
385 netif = netif->next;
390 * A DHCP negotiation transaction, or ARP request, has timed out.
392 * The timer that was started with the DHCP or ARP request has
393 * timed out, indicating no response was received in time.
395 * @param netif the netif under DHCP control
397 static void
398 dhcp_timeout(struct netif *netif)
400 struct dhcp *dhcp = netif->dhcp;
401 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_timeout()\n"));
402 /* back-off period has passed, or server selection timed out */
403 if ((dhcp->state == DHCP_BACKING_OFF) || (dhcp->state == DHCP_SELECTING)) {
404 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_timeout(): restarting discovery\n"));
405 dhcp_discover(netif);
406 /* receiving the requested lease timed out */
407 } else if (dhcp->state == DHCP_REQUESTING) {
408 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_timeout(): REQUESTING, DHCP request timed out\n"));
409 if (dhcp->tries <= 5) {
410 dhcp_select(netif);
411 } else {
412 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_timeout(): REQUESTING, releasing, restarting\n"));
413 dhcp_release(netif);
414 dhcp_discover(netif);
416 #if DHCP_DOES_ARP_CHECK
417 /* received no ARP reply for the offered address (which is good) */
418 } else if (dhcp->state == DHCP_CHECKING) {
419 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_timeout(): CHECKING, ARP request timed out\n"));
420 if (dhcp->tries <= 1) {
421 dhcp_check(netif);
422 /* no ARP replies on the offered address,
423 looks like the IP address is indeed free */
424 } else {
425 /* bind the interface to the offered address */
426 dhcp_bind(netif);
428 #endif /* DHCP_DOES_ARP_CHECK */
430 /* did not get response to renew request? */
431 else if (dhcp->state == DHCP_RENEWING) {
432 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_timeout(): RENEWING, DHCP request timed out\n"));
433 /* just retry renewal */
434 /* note that the rebind timer will eventually time-out if renew does not work */
435 dhcp_renew(netif);
436 /* did not get response to rebind request? */
437 } else if (dhcp->state == DHCP_REBINDING) {
438 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_timeout(): REBINDING, DHCP request timed out\n"));
439 if (dhcp->tries <= 8) {
440 dhcp_rebind(netif);
441 } else {
442 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_timeout(): RELEASING, DISCOVERING\n"));
443 dhcp_release(netif);
444 dhcp_discover(netif);
446 } else if (dhcp->state == DHCP_REBOOTING) {
447 if (dhcp->tries < REBOOT_TRIES) {
448 dhcp_reboot(netif);
449 } else {
450 dhcp_discover(netif);
456 * The renewal period has timed out.
458 * @param netif the netif under DHCP control
460 static void
461 dhcp_t1_timeout(struct netif *netif)
463 struct dhcp *dhcp = netif->dhcp;
464 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_t1_timeout()\n"));
465 if ((dhcp->state == DHCP_REQUESTING) || (dhcp->state == DHCP_BOUND) ||
466 (dhcp->state == DHCP_RENEWING)) {
467 /* just retry to renew - note that the rebind timer (t2) will
468 * eventually time-out if renew tries fail. */
469 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE,
470 ("dhcp_t1_timeout(): must renew\n"));
471 /* This slightly different to RFC2131: DHCPREQUEST will be sent from state
472 DHCP_RENEWING, not DHCP_BOUND */
473 dhcp_renew(netif);
478 * The rebind period has timed out.
480 * @param netif the netif under DHCP control
482 static void
483 dhcp_t2_timeout(struct netif *netif)
485 struct dhcp *dhcp = netif->dhcp;
486 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_t2_timeout()\n"));
487 if ((dhcp->state == DHCP_REQUESTING) || (dhcp->state == DHCP_BOUND) ||
488 (dhcp->state == DHCP_RENEWING)) {
489 /* just retry to rebind */
490 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE,
491 ("dhcp_t2_timeout(): must rebind\n"));
492 /* This slightly different to RFC2131: DHCPREQUEST will be sent from state
493 DHCP_REBINDING, not DHCP_BOUND */
494 dhcp_rebind(netif);
499 * Handle a DHCP ACK packet
501 * @param netif the netif under DHCP control
503 static void
504 dhcp_handle_ack(struct netif *netif)
506 struct dhcp *dhcp = netif->dhcp;
507 #if LWIP_DNS
508 u8_t n;
509 #endif /* LWIP_DNS */
511 /* clear options we might not get from the ACK */
512 ip_addr_set_zero(&dhcp->offered_sn_mask);
513 ip_addr_set_zero(&dhcp->offered_gw_addr);
514 #if LWIP_DHCP_BOOTP_FILE
515 ip_addr_set_zero(&dhcp->offered_si_addr);
516 #endif /* LWIP_DHCP_BOOTP_FILE */
518 /* lease time given? */
519 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_LEASE_TIME)) {
520 /* remember offered lease time */
521 dhcp->offered_t0_lease = dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_LEASE_TIME);
523 /* renewal period given? */
524 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_T1)) {
525 /* remember given renewal period */
526 dhcp->offered_t1_renew = dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_T1);
527 } else {
528 /* calculate safe periods for renewal */
529 dhcp->offered_t1_renew = dhcp->offered_t0_lease / 2;
532 /* renewal period given? */
533 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_T2)) {
534 /* remember given rebind period */
535 dhcp->offered_t2_rebind = dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_T2);
536 } else {
537 /* calculate safe periods for rebinding */
538 dhcp->offered_t2_rebind = dhcp->offered_t0_lease;
541 /* (y)our internet address */
542 ip_addr_copy(dhcp->offered_ip_addr, dhcp->msg_in->yiaddr);
544 #if LWIP_DHCP_BOOTP_FILE
545 /* copy boot server address,
546 boot file name copied in dhcp_parse_reply if not overloaded */
547 ip_addr_copy(dhcp->offered_si_addr, dhcp->msg_in->siaddr);
548 #endif /* LWIP_DHCP_BOOTP_FILE */
550 /* subnet mask given? */
551 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_SUBNET_MASK)) {
552 /* remember given subnet mask */
553 ip4_addr_set_u32(&dhcp->offered_sn_mask, htonl(dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_SUBNET_MASK)));
554 dhcp->subnet_mask_given = 1;
555 } else {
556 dhcp->subnet_mask_given = 0;
559 /* gateway router */
560 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_ROUTER)) {
561 ip4_addr_set_u32(&dhcp->offered_gw_addr, htonl(dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_ROUTER)));
564 #if LWIP_DNS
565 /* DNS servers */
566 n = 0;
567 while(dhcp_option_given(dhcp, DHCP_OPTION_IDX_DNS_SERVER + n) && (n < DNS_MAX_SERVERS)) {
568 ip_addr_t dns_addr;
569 ip4_addr_set_u32(&dns_addr, htonl(dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_DNS_SERVER + n)));
570 dns_setserver(n, &dns_addr);
571 n++;
573 #endif /* LWIP_DNS */
576 /** Set a statically allocated struct dhcp to work with.
577 * Using this prevents dhcp_start to allocate it using mem_malloc.
579 * @param netif the netif for which to set the struct dhcp
580 * @param dhcp (uninitialised) dhcp struct allocated by the application
582 void
583 dhcp_set_struct(struct netif *netif, struct dhcp *dhcp)
585 LWIP_ASSERT("netif != NULL", netif != NULL);
586 LWIP_ASSERT("dhcp != NULL", dhcp != NULL);
587 LWIP_ASSERT("netif already has a struct dhcp set", netif->dhcp == NULL);
589 /* clear data structure */
590 memset(dhcp, 0, sizeof(struct dhcp));
591 /* dhcp_set_state(&dhcp, DHCP_OFF); */
592 netif->dhcp = dhcp;
596 * Start DHCP negotiation for a network interface.
598 * If no DHCP client instance was attached to this interface,
599 * a new client is created first. If a DHCP client instance
600 * was already present, it restarts negotiation.
602 * @param netif The lwIP network interface
603 * @return lwIP error code
604 * - ERR_OK - No error
605 * - ERR_MEM - Out of memory
607 err_t
608 dhcp_start(struct netif *netif)
610 struct dhcp *dhcp;
611 err_t result = ERR_OK;
613 LWIP_ERROR("netif != NULL", (netif != NULL), return ERR_ARG;);
614 dhcp = netif->dhcp;
615 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_start(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num));
616 /* Remove the flag that says this netif is handled by DHCP,
617 it is set when we succeeded starting. */
618 netif->flags &= ~NETIF_FLAG_DHCP;
620 /* check hwtype of the netif */
621 if ((netif->flags & NETIF_FLAG_ETHARP) == 0) {
622 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): No ETHARP netif\n"));
623 return ERR_ARG;
626 /* check MTU of the netif */
627 if (netif->mtu < DHCP_MAX_MSG_LEN_MIN_REQUIRED) {
628 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): Cannot use this netif with DHCP: MTU is too small\n"));
629 return ERR_MEM;
632 /* no DHCP client attached yet? */
633 if (dhcp == NULL) {
634 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): starting new DHCP client\n"));
635 dhcp = (struct dhcp *)mem_malloc(sizeof(struct dhcp));
636 if (dhcp == NULL) {
637 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): could not allocate dhcp\n"));
638 return ERR_MEM;
640 /* store this dhcp client in the netif */
641 netif->dhcp = dhcp;
642 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): allocated dhcp"));
643 /* already has DHCP client attached */
644 } else {
645 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_start(): restarting DHCP configuration\n"));
646 if (dhcp->pcb != NULL) {
647 udp_remove(dhcp->pcb);
649 LWIP_ASSERT("pbuf p_out wasn't freed", dhcp->p_out == NULL);
650 LWIP_ASSERT("reply wasn't freed", dhcp->msg_in == NULL );
653 /* clear data structure */
654 memset(dhcp, 0, sizeof(struct dhcp));
655 /* dhcp_set_state(&dhcp, DHCP_OFF); */
656 /* allocate UDP PCB */
657 dhcp->pcb = udp_new();
658 if (dhcp->pcb == NULL) {
659 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): could not obtain pcb\n"));
660 return ERR_MEM;
662 dhcp->pcb->so_options |= SOF_BROADCAST;
663 /* set up local and remote port for the pcb */
664 udp_bind(dhcp->pcb, IP_ADDR_ANY, DHCP_CLIENT_PORT);
665 udp_connect(dhcp->pcb, IP_ADDR_ANY, DHCP_SERVER_PORT);
666 /* set up the recv callback and argument */
667 udp_recv(dhcp->pcb, dhcp_recv, netif);
668 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_start(): starting DHCP configuration\n"));
669 /* (re)start the DHCP negotiation */
670 result = dhcp_discover(netif);
671 if (result != ERR_OK) {
672 /* free resources allocated above */
673 dhcp_stop(netif);
674 return ERR_MEM;
676 /* Set the flag that says this netif is handled by DHCP. */
677 netif->flags |= NETIF_FLAG_DHCP;
678 return result;
682 * Inform a DHCP server of our manual configuration.
684 * This informs DHCP servers of our fixed IP address configuration
685 * by sending an INFORM message. It does not involve DHCP address
686 * configuration, it is just here to be nice to the network.
688 * @param netif The lwIP network interface
690 void
691 dhcp_inform(struct netif *netif)
693 struct dhcp dhcp;
694 err_t result = ERR_OK;
695 struct udp_pcb *pcb;
697 LWIP_ERROR("netif != NULL", (netif != NULL), return;);
699 memset(&dhcp, 0, sizeof(struct dhcp));
700 dhcp_set_state(&dhcp, DHCP_INFORM);
702 if ((netif->dhcp != NULL) && (netif->dhcp->pcb != NULL)) {
703 /* re-use existing pcb */
704 pcb = netif->dhcp->pcb;
705 } else {
706 pcb = udp_new();
707 if (pcb == NULL) {
708 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_inform(): could not obtain pcb"));
709 return;
711 dhcp.pcb = pcb;
712 dhcp.pcb->so_options |= SOF_BROADCAST;
713 udp_bind(dhcp.pcb, IP_ADDR_ANY, DHCP_CLIENT_PORT);
714 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_inform(): created new udp pcb\n"));
716 /* create and initialize the DHCP message header */
717 result = dhcp_create_msg(netif, &dhcp, DHCP_INFORM);
718 if (result == ERR_OK) {
719 dhcp_option(&dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);
720 dhcp_option_short(&dhcp, DHCP_MAX_MSG_LEN(netif));
722 dhcp_option_trailer(&dhcp);
724 pbuf_realloc(dhcp.p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp.options_out_len);
726 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_inform: INFORMING\n"));
727 udp_sendto_if(pcb, dhcp.p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
728 dhcp_delete_msg(&dhcp);
729 } else {
730 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_inform: could not allocate DHCP request\n"));
733 if (dhcp.pcb != NULL) {
734 /* otherwise, the existing pcb was used */
735 udp_remove(dhcp.pcb);
739 /** Handle a possible change in the network configuration.
741 * This enters the REBOOTING state to verify that the currently bound
742 * address is still valid.
744 void
745 dhcp_network_changed(struct netif *netif)
747 struct dhcp *dhcp = netif->dhcp;
748 if (!dhcp)
749 return;
750 switch (dhcp->state) {
751 case DHCP_REBINDING:
752 case DHCP_RENEWING:
753 case DHCP_BOUND:
754 case DHCP_REBOOTING:
755 netif_set_down(netif);
756 dhcp->tries = 0;
757 dhcp_reboot(netif);
758 break;
759 case DHCP_OFF:
760 /* stay off */
761 break;
762 default:
763 dhcp->tries = 0;
764 #if LWIP_DHCP_AUTOIP_COOP
765 dhcp->autoip_coop_state = DHCP_AUTOIP_COOP_STATE_OFF;
766 #endif /* LWIP_DHCP_AUTOIP_COOP */
767 dhcp_discover(netif);
768 break;
772 #if DHCP_DOES_ARP_CHECK
774 * Match an ARP reply with the offered IP address.
776 * @param netif the network interface on which the reply was received
777 * @param addr The IP address we received a reply from
779 void dhcp_arp_reply(struct netif *netif, ip_addr_t *addr)
781 LWIP_ERROR("netif != NULL", (netif != NULL), return;);
782 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_arp_reply()\n"));
783 /* is a DHCP client doing an ARP check? */
784 if ((netif->dhcp != NULL) && (netif->dhcp->state == DHCP_CHECKING)) {
785 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_arp_reply(): CHECKING, arp reply for 0x%08"X32_F"\n",
786 ip4_addr_get_u32(addr)));
787 /* did a host respond with the address we
788 were offered by the DHCP server? */
789 if (ip_addr_cmp(addr, &netif->dhcp->offered_ip_addr)) {
790 /* we will not accept the offered address */
791 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE | LWIP_DBG_LEVEL_WARNING,
792 ("dhcp_arp_reply(): arp reply matched with offered address, declining\n"));
793 dhcp_decline(netif);
799 * Decline an offered lease.
801 * Tell the DHCP server we do not accept the offered address.
802 * One reason to decline the lease is when we find out the address
803 * is already in use by another host (through ARP).
805 * @param netif the netif under DHCP control
807 static err_t
808 dhcp_decline(struct netif *netif)
810 struct dhcp *dhcp = netif->dhcp;
811 err_t result = ERR_OK;
812 u16_t msecs;
813 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_decline()\n"));
814 dhcp_set_state(dhcp, DHCP_BACKING_OFF);
815 /* create and initialize the DHCP message header */
816 result = dhcp_create_msg(netif, dhcp, DHCP_DECLINE);
817 if (result == ERR_OK) {
818 dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);
819 dhcp_option_long(dhcp, ntohl(ip4_addr_get_u32(&dhcp->offered_ip_addr)));
821 dhcp_option_trailer(dhcp);
822 /* resize pbuf to reflect true size of options */
823 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
825 /* per section 4.4.4, broadcast DECLINE messages */
826 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
827 dhcp_delete_msg(dhcp);
828 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_decline: BACKING OFF\n"));
829 } else {
830 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS,
831 ("dhcp_decline: could not allocate DHCP request\n"));
833 dhcp->tries++;
834 msecs = 10*1000;
835 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
836 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_decline(): set request timeout %"U16_F" msecs\n", msecs));
837 return result;
839 #endif /* DHCP_DOES_ARP_CHECK */
843 * Start the DHCP process, discover a DHCP server.
845 * @param netif the netif under DHCP control
847 static err_t
848 dhcp_discover(struct netif *netif)
850 struct dhcp *dhcp = netif->dhcp;
851 err_t result = ERR_OK;
852 u16_t msecs;
853 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_discover()\n"));
854 ip_addr_set_any(&dhcp->offered_ip_addr);
855 dhcp_set_state(dhcp, DHCP_SELECTING);
856 /* create and initialize the DHCP message header */
857 result = dhcp_create_msg(netif, dhcp, DHCP_DISCOVER);
858 if (result == ERR_OK) {
859 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_discover: making request\n"));
861 dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);
862 dhcp_option_short(dhcp, DHCP_MAX_MSG_LEN(netif));
864 dhcp_option(dhcp, DHCP_OPTION_PARAMETER_REQUEST_LIST, 4/*num options*/);
865 dhcp_option_byte(dhcp, DHCP_OPTION_SUBNET_MASK);
866 dhcp_option_byte(dhcp, DHCP_OPTION_ROUTER);
867 dhcp_option_byte(dhcp, DHCP_OPTION_BROADCAST);
868 dhcp_option_byte(dhcp, DHCP_OPTION_DNS_SERVER);
870 dhcp_option_trailer(dhcp);
872 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_discover: realloc()ing\n"));
873 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
875 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_discover: sendto(DISCOVER, IP_ADDR_BROADCAST, DHCP_SERVER_PORT)\n"));
876 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
877 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_discover: deleting()ing\n"));
878 dhcp_delete_msg(dhcp);
879 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_discover: SELECTING\n"));
880 } else {
881 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_discover: could not allocate DHCP request\n"));
883 dhcp->tries++;
884 #if LWIP_DHCP_AUTOIP_COOP
885 if(dhcp->tries >= LWIP_DHCP_AUTOIP_COOP_TRIES && dhcp->autoip_coop_state == DHCP_AUTOIP_COOP_STATE_OFF) {
886 dhcp->autoip_coop_state = DHCP_AUTOIP_COOP_STATE_ON;
887 autoip_start(netif);
889 #endif /* LWIP_DHCP_AUTOIP_COOP */
890 msecs = (dhcp->tries < 6 ? 1 << dhcp->tries : 60) * 1000;
891 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
892 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_discover(): set request timeout %"U16_F" msecs\n", msecs));
893 return result;
898 * Bind the interface to the offered IP address.
900 * @param netif network interface to bind to the offered address
902 static void
903 dhcp_bind(struct netif *netif)
905 u32_t timeout;
906 struct dhcp *dhcp;
907 ip_addr_t sn_mask, gw_addr;
908 LWIP_ERROR("dhcp_bind: netif != NULL", (netif != NULL), return;);
909 dhcp = netif->dhcp;
910 LWIP_ERROR("dhcp_bind: dhcp != NULL", (dhcp != NULL), return;);
911 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_bind(netif=%p) %c%c%"U16_F"\n", (void*)netif, netif->name[0], netif->name[1], (u16_t)netif->num));
913 /* temporary DHCP lease? */
914 if (dhcp->offered_t1_renew != 0xffffffffUL) {
915 /* set renewal period timer */
916 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_bind(): t1 renewal timer %"U32_F" secs\n", dhcp->offered_t1_renew));
917 timeout = (dhcp->offered_t1_renew + DHCP_COARSE_TIMER_SECS / 2) / DHCP_COARSE_TIMER_SECS;
918 if(timeout > 0xffff) {
919 timeout = 0xffff;
921 dhcp->t1_timeout = (u16_t)timeout;
922 if (dhcp->t1_timeout == 0) {
923 dhcp->t1_timeout = 1;
925 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_bind(): set request timeout %"U32_F" msecs\n", dhcp->offered_t1_renew*1000));
927 /* set renewal period timer */
928 if (dhcp->offered_t2_rebind != 0xffffffffUL) {
929 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_bind(): t2 rebind timer %"U32_F" secs\n", dhcp->offered_t2_rebind));
930 timeout = (dhcp->offered_t2_rebind + DHCP_COARSE_TIMER_SECS / 2) / DHCP_COARSE_TIMER_SECS;
931 if(timeout > 0xffff) {
932 timeout = 0xffff;
934 dhcp->t2_timeout = (u16_t)timeout;
935 if (dhcp->t2_timeout == 0) {
936 dhcp->t2_timeout = 1;
938 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_bind(): set request timeout %"U32_F" msecs\n", dhcp->offered_t2_rebind*1000));
941 if (dhcp->subnet_mask_given) {
942 /* copy offered network mask */
943 ip_addr_copy(sn_mask, dhcp->offered_sn_mask);
944 } else {
945 /* subnet mask not given, choose a safe subnet mask given the network class */
946 u8_t first_octet = ip4_addr1(&dhcp->offered_ip_addr);
947 if (first_octet <= 127) {
948 ip4_addr_set_u32(&sn_mask, PP_HTONL(0xff000000));
949 } else if (first_octet >= 192) {
950 ip4_addr_set_u32(&sn_mask, PP_HTONL(0xffffff00));
951 } else {
952 ip4_addr_set_u32(&sn_mask, PP_HTONL(0xffff0000));
956 ip_addr_copy(gw_addr, dhcp->offered_gw_addr);
957 /* gateway address not given? */
958 if (ip_addr_isany(&gw_addr)) {
959 /* copy network address */
960 ip_addr_get_network(&gw_addr, &dhcp->offered_ip_addr, &sn_mask);
961 /* use first host address on network as gateway */
962 ip4_addr_set_u32(&gw_addr, ip4_addr_get_u32(&gw_addr) | PP_HTONL(0x00000001));
965 #if LWIP_DHCP_AUTOIP_COOP
966 if(dhcp->autoip_coop_state == DHCP_AUTOIP_COOP_STATE_ON) {
967 autoip_stop(netif);
968 dhcp->autoip_coop_state = DHCP_AUTOIP_COOP_STATE_OFF;
970 #endif /* LWIP_DHCP_AUTOIP_COOP */
972 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_bind(): IP: 0x%08"X32_F"\n",
973 ip4_addr_get_u32(&dhcp->offered_ip_addr)));
974 netif_set_ipaddr(netif, &dhcp->offered_ip_addr);
975 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_bind(): SN: 0x%08"X32_F"\n",
976 ip4_addr_get_u32(&sn_mask)));
977 netif_set_netmask(netif, &sn_mask);
978 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_STATE, ("dhcp_bind(): GW: 0x%08"X32_F"\n",
979 ip4_addr_get_u32(&gw_addr)));
980 netif_set_gw(netif, &gw_addr);
981 /* bring the interface up */
982 netif_set_up(netif);
983 /* netif is now bound to DHCP leased address */
984 dhcp_set_state(dhcp, DHCP_BOUND);
988 * Renew an existing DHCP lease at the involved DHCP server.
990 * @param netif network interface which must renew its lease
992 err_t
993 dhcp_renew(struct netif *netif)
995 struct dhcp *dhcp = netif->dhcp;
996 err_t result;
997 u16_t msecs;
998 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_renew()\n"));
999 dhcp_set_state(dhcp, DHCP_RENEWING);
1001 /* create and initialize the DHCP message header */
1002 result = dhcp_create_msg(netif, dhcp, DHCP_REQUEST);
1003 if (result == ERR_OK) {
1004 dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);
1005 dhcp_option_short(dhcp, DHCP_MAX_MSG_LEN(netif));
1007 #if LWIP_NETIF_HOSTNAME
1008 if (netif->hostname != NULL) {
1009 const char *p = (const char*)netif->hostname;
1010 u8_t namelen = (u8_t)strlen(p);
1011 if (namelen > 0) {
1012 LWIP_ASSERT("DHCP: hostname is too long!", namelen < 255);
1013 dhcp_option(dhcp, DHCP_OPTION_HOSTNAME, namelen);
1014 while (*p) {
1015 dhcp_option_byte(dhcp, *p++);
1019 #endif /* LWIP_NETIF_HOSTNAME */
1021 #if 0
1022 dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);
1023 dhcp_option_long(dhcp, ntohl(dhcp->offered_ip_addr.addr));
1024 #endif
1026 #if 0
1027 dhcp_option(dhcp, DHCP_OPTION_SERVER_ID, 4);
1028 dhcp_option_long(dhcp, ntohl(dhcp->server_ip_addr.addr));
1029 #endif
1030 /* append DHCP message trailer */
1031 dhcp_option_trailer(dhcp);
1033 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
1035 udp_sendto_if(dhcp->pcb, dhcp->p_out, &dhcp->server_ip_addr, DHCP_SERVER_PORT, netif);
1036 dhcp_delete_msg(dhcp);
1038 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_renew: RENEWING\n"));
1039 } else {
1040 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_renew: could not allocate DHCP request\n"));
1042 dhcp->tries++;
1043 /* back-off on retries, but to a maximum of 20 seconds */
1044 msecs = dhcp->tries < 10 ? dhcp->tries * 2000 : 20 * 1000;
1045 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
1046 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_renew(): set request timeout %"U16_F" msecs\n", msecs));
1047 return result;
1051 * Rebind with a DHCP server for an existing DHCP lease.
1053 * @param netif network interface which must rebind with a DHCP server
1055 static err_t
1056 dhcp_rebind(struct netif *netif)
1058 struct dhcp *dhcp = netif->dhcp;
1059 err_t result;
1060 u16_t msecs;
1061 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_rebind()\n"));
1062 dhcp_set_state(dhcp, DHCP_REBINDING);
1064 /* create and initialize the DHCP message header */
1065 result = dhcp_create_msg(netif, dhcp, DHCP_REQUEST);
1066 if (result == ERR_OK) {
1067 dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);
1068 dhcp_option_short(dhcp, DHCP_MAX_MSG_LEN(netif));
1070 #if LWIP_NETIF_HOSTNAME
1071 if (netif->hostname != NULL) {
1072 const char *p = (const char*)netif->hostname;
1073 u8_t namelen = (u8_t)strlen(p);
1074 if (namelen > 0) {
1075 LWIP_ASSERT("DHCP: hostname is too long!", namelen < 255);
1076 dhcp_option(dhcp, DHCP_OPTION_HOSTNAME, namelen);
1077 while (*p) {
1078 dhcp_option_byte(dhcp, *p++);
1082 #endif /* LWIP_NETIF_HOSTNAME */
1084 #if 0
1085 dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);
1086 dhcp_option_long(dhcp, ntohl(dhcp->offered_ip_addr.addr));
1088 dhcp_option(dhcp, DHCP_OPTION_SERVER_ID, 4);
1089 dhcp_option_long(dhcp, ntohl(dhcp->server_ip_addr.addr));
1090 #endif
1092 dhcp_option_trailer(dhcp);
1094 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
1096 /* broadcast to server */
1097 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
1098 dhcp_delete_msg(dhcp);
1099 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_rebind: REBINDING\n"));
1100 } else {
1101 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_rebind: could not allocate DHCP request\n"));
1103 dhcp->tries++;
1104 msecs = dhcp->tries < 10 ? dhcp->tries * 1000 : 10 * 1000;
1105 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
1106 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_rebind(): set request timeout %"U16_F" msecs\n", msecs));
1107 return result;
1111 * Enter REBOOTING state to verify an existing lease
1113 * @param netif network interface which must reboot
1115 static err_t
1116 dhcp_reboot(struct netif *netif)
1118 struct dhcp *dhcp = netif->dhcp;
1119 err_t result;
1120 u16_t msecs;
1121 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_reboot()\n"));
1122 dhcp_set_state(dhcp, DHCP_REBOOTING);
1124 /* create and initialize the DHCP message header */
1125 result = dhcp_create_msg(netif, dhcp, DHCP_REQUEST);
1126 if (result == ERR_OK) {
1127 dhcp_option(dhcp, DHCP_OPTION_MAX_MSG_SIZE, DHCP_OPTION_MAX_MSG_SIZE_LEN);
1128 dhcp_option_short(dhcp, 576);
1130 dhcp_option(dhcp, DHCP_OPTION_REQUESTED_IP, 4);
1131 dhcp_option_long(dhcp, ntohl(ip4_addr_get_u32(&dhcp->offered_ip_addr)));
1133 dhcp_option_trailer(dhcp);
1135 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
1137 /* broadcast to server */
1138 udp_sendto_if(dhcp->pcb, dhcp->p_out, IP_ADDR_BROADCAST, DHCP_SERVER_PORT, netif);
1139 dhcp_delete_msg(dhcp);
1140 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_reboot: REBOOTING\n"));
1141 } else {
1142 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_reboot: could not allocate DHCP request\n"));
1144 dhcp->tries++;
1145 msecs = dhcp->tries < 10 ? dhcp->tries * 1000 : 10 * 1000;
1146 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
1147 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_reboot(): set request timeout %"U16_F" msecs\n", msecs));
1148 return result;
1153 * Release a DHCP lease.
1155 * @param netif network interface which must release its lease
1157 err_t
1158 dhcp_release(struct netif *netif)
1160 struct dhcp *dhcp = netif->dhcp;
1161 err_t result;
1162 u16_t msecs;
1163 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_release()\n"));
1165 /* idle DHCP client */
1166 dhcp_set_state(dhcp, DHCP_OFF);
1167 /* clean old DHCP offer */
1168 ip_addr_set_zero(&dhcp->server_ip_addr);
1169 ip_addr_set_zero(&dhcp->offered_ip_addr);
1170 ip_addr_set_zero(&dhcp->offered_sn_mask);
1171 ip_addr_set_zero(&dhcp->offered_gw_addr);
1172 #if LWIP_DHCP_BOOTP_FILE
1173 ip_addr_set_zero(&dhcp->offered_si_addr);
1174 #endif /* LWIP_DHCP_BOOTP_FILE */
1175 dhcp->offered_t0_lease = dhcp->offered_t1_renew = dhcp->offered_t2_rebind = 0;
1177 /* create and initialize the DHCP message header */
1178 result = dhcp_create_msg(netif, dhcp, DHCP_RELEASE);
1179 if (result == ERR_OK) {
1180 dhcp_option_trailer(dhcp);
1182 pbuf_realloc(dhcp->p_out, sizeof(struct dhcp_msg) - DHCP_OPTIONS_LEN + dhcp->options_out_len);
1184 udp_sendto_if(dhcp->pcb, dhcp->p_out, &dhcp->server_ip_addr, DHCP_SERVER_PORT, netif);
1185 dhcp_delete_msg(dhcp);
1186 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_release: RELEASED, DHCP_OFF\n"));
1187 } else {
1188 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS, ("dhcp_release: could not allocate DHCP request\n"));
1190 dhcp->tries++;
1191 msecs = dhcp->tries < 10 ? dhcp->tries * 1000 : 10 * 1000;
1192 dhcp->request_timeout = (msecs + DHCP_FINE_TIMER_MSECS - 1) / DHCP_FINE_TIMER_MSECS;
1193 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_STATE, ("dhcp_release(): set request timeout %"U16_F" msecs\n", msecs));
1194 /* bring the interface down */
1195 netif_set_down(netif);
1196 /* remove IP address from interface */
1197 netif_set_ipaddr(netif, IP_ADDR_ANY);
1198 netif_set_gw(netif, IP_ADDR_ANY);
1199 netif_set_netmask(netif, IP_ADDR_ANY);
1201 return result;
1205 * Remove the DHCP client from the interface.
1207 * @param netif The network interface to stop DHCP on
1209 void
1210 dhcp_stop(struct netif *netif)
1212 struct dhcp *dhcp;
1213 LWIP_ERROR("dhcp_stop: netif != NULL", (netif != NULL), return;);
1214 dhcp = netif->dhcp;
1215 /* Remove the flag that says this netif is handled by DHCP. */
1216 netif->flags &= ~NETIF_FLAG_DHCP;
1218 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_stop()\n"));
1219 /* netif is DHCP configured? */
1220 if (dhcp != NULL) {
1221 #if LWIP_DHCP_AUTOIP_COOP
1222 if(dhcp->autoip_coop_state == DHCP_AUTOIP_COOP_STATE_ON) {
1223 autoip_stop(netif);
1224 dhcp->autoip_coop_state = DHCP_AUTOIP_COOP_STATE_OFF;
1226 #endif /* LWIP_DHCP_AUTOIP_COOP */
1228 if (dhcp->pcb != NULL) {
1229 udp_remove(dhcp->pcb);
1230 dhcp->pcb = NULL;
1232 LWIP_ASSERT("reply wasn't freed", dhcp->msg_in == NULL);
1233 dhcp_set_state(dhcp, DHCP_OFF);
1238 * Set the DHCP state of a DHCP client.
1240 * If the state changed, reset the number of tries.
1242 static void
1243 dhcp_set_state(struct dhcp *dhcp, u8_t new_state)
1245 if (new_state != dhcp->state) {
1246 dhcp->state = new_state;
1247 dhcp->tries = 0;
1248 dhcp->request_timeout = 0;
1253 * Concatenate an option type and length field to the outgoing
1254 * DHCP message.
1257 static void
1258 dhcp_option(struct dhcp *dhcp, u8_t option_type, u8_t option_len)
1260 LWIP_ASSERT("dhcp_option: dhcp->options_out_len + 2 + option_len <= DHCP_OPTIONS_LEN", dhcp->options_out_len + 2U + option_len <= DHCP_OPTIONS_LEN);
1261 dhcp->msg_out->options[dhcp->options_out_len++] = option_type;
1262 dhcp->msg_out->options[dhcp->options_out_len++] = option_len;
1265 * Concatenate a single byte to the outgoing DHCP message.
1268 static void
1269 dhcp_option_byte(struct dhcp *dhcp, u8_t value)
1271 LWIP_ASSERT("dhcp_option_byte: dhcp->options_out_len < DHCP_OPTIONS_LEN", dhcp->options_out_len < DHCP_OPTIONS_LEN);
1272 dhcp->msg_out->options[dhcp->options_out_len++] = value;
1275 static void
1276 dhcp_option_short(struct dhcp *dhcp, u16_t value)
1278 LWIP_ASSERT("dhcp_option_short: dhcp->options_out_len + 2 <= DHCP_OPTIONS_LEN", dhcp->options_out_len + 2U <= DHCP_OPTIONS_LEN);
1279 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0xff00U) >> 8);
1280 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t) (value & 0x00ffU);
1283 static void
1284 dhcp_option_long(struct dhcp *dhcp, u32_t value)
1286 LWIP_ASSERT("dhcp_option_long: dhcp->options_out_len + 4 <= DHCP_OPTIONS_LEN", dhcp->options_out_len + 4U <= DHCP_OPTIONS_LEN);
1287 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0xff000000UL) >> 24);
1288 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0x00ff0000UL) >> 16);
1289 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0x0000ff00UL) >> 8);
1290 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t)((value & 0x000000ffUL));
1294 * Extract the DHCP message and the DHCP options.
1296 * Extract the DHCP message and the DHCP options, each into a contiguous
1297 * piece of memory. As a DHCP message is variable sized by its options,
1298 * and also allows overriding some fields for options, the easy approach
1299 * is to first unfold the options into a conitguous piece of memory, and
1300 * use that further on.
1303 static err_t
1304 dhcp_parse_reply(struct dhcp *dhcp, struct pbuf *p)
1306 u8_t *options;
1307 u16_t offset;
1308 u16_t offset_max;
1309 u16_t options_idx;
1310 u16_t options_idx_max;
1311 struct pbuf *q;
1312 int parse_file_as_options = 0;
1313 int parse_sname_as_options = 0;
1315 /* clear received options */
1316 dhcp_clear_all_options(dhcp);
1317 /* check that beginning of dhcp_msg (up to and including chaddr) is in first pbuf */
1318 if (p->len < DHCP_SNAME_OFS) {
1319 return ERR_BUF;
1321 dhcp->msg_in = (struct dhcp_msg *)p->payload;
1322 #if LWIP_DHCP_BOOTP_FILE
1323 /* clear boot file name */
1324 dhcp->boot_file_name[0] = 0;
1325 #endif /* LWIP_DHCP_BOOTP_FILE */
1327 /* parse options */
1329 /* start with options field */
1330 options_idx = DHCP_OPTIONS_OFS;
1331 /* parse options to the end of the received packet */
1332 options_idx_max = p->tot_len;
1333 again:
1334 q = p;
1335 while((q != NULL) && (options_idx >= q->len)) {
1336 options_idx -= q->len;
1337 options_idx_max -= q->len;
1338 q = q->next;
1340 if (q == NULL) {
1341 return ERR_BUF;
1343 offset = options_idx;
1344 offset_max = options_idx_max;
1345 options = (u8_t*)q->payload;
1346 /* at least 1 byte to read and no end marker, then at least 3 bytes to read? */
1347 while((q != NULL) && (options[offset] != DHCP_OPTION_END) && (offset < offset_max)) {
1348 u8_t op = options[offset];
1349 u8_t len;
1350 u8_t decode_len = 0;
1351 int decode_idx = -1;
1352 u16_t val_offset = offset + 2;
1353 /* len byte might be in the next pbuf */
1354 if (offset + 1 < q->len) {
1355 len = options[offset + 1];
1356 } else {
1357 len = (q->next != NULL ? ((u8_t*)q->next->payload)[0] : 0);
1359 /* LWIP_DEBUGF(DHCP_DEBUG, ("msg_offset=%"U16_F", q->len=%"U16_F, msg_offset, q->len)); */
1360 decode_len = len;
1361 switch(op) {
1362 /* case(DHCP_OPTION_END): handled above */
1363 case(DHCP_OPTION_PAD):
1364 /* special option: no len encoded */
1365 decode_len = len = 0;
1366 /* will be increased below */
1367 offset--;
1368 break;
1369 case(DHCP_OPTION_SUBNET_MASK):
1370 LWIP_ASSERT("len == 4", len == 4);
1371 decode_idx = DHCP_OPTION_IDX_SUBNET_MASK;
1372 break;
1373 case(DHCP_OPTION_ROUTER):
1374 decode_len = 4; /* only copy the first given router */
1375 LWIP_ASSERT("len >= decode_len", len >= decode_len);
1376 decode_idx = DHCP_OPTION_IDX_ROUTER;
1377 break;
1378 case(DHCP_OPTION_DNS_SERVER):
1379 /* special case: there might be more than one server */
1380 LWIP_ASSERT("len % 4 == 0", len % 4 == 0);
1381 /* limit number of DNS servers */
1382 decode_len = LWIP_MIN(len, 4 * DNS_MAX_SERVERS);
1383 LWIP_ASSERT("len >= decode_len", len >= decode_len);
1384 decode_idx = DHCP_OPTION_IDX_DNS_SERVER;
1385 break;
1386 case(DHCP_OPTION_LEASE_TIME):
1387 LWIP_ASSERT("len == 4", len == 4);
1388 decode_idx = DHCP_OPTION_IDX_LEASE_TIME;
1389 break;
1390 case(DHCP_OPTION_OVERLOAD):
1391 LWIP_ASSERT("len == 1", len == 1);
1392 decode_idx = DHCP_OPTION_IDX_OVERLOAD;
1393 break;
1394 case(DHCP_OPTION_MESSAGE_TYPE):
1395 LWIP_ASSERT("len == 1", len == 1);
1396 decode_idx = DHCP_OPTION_IDX_MSG_TYPE;
1397 break;
1398 case(DHCP_OPTION_SERVER_ID):
1399 LWIP_ASSERT("len == 4", len == 4);
1400 decode_idx = DHCP_OPTION_IDX_SERVER_ID;
1401 break;
1402 case(DHCP_OPTION_T1):
1403 LWIP_ASSERT("len == 4", len == 4);
1404 decode_idx = DHCP_OPTION_IDX_T1;
1405 break;
1406 case(DHCP_OPTION_T2):
1407 LWIP_ASSERT("len == 4", len == 4);
1408 decode_idx = DHCP_OPTION_IDX_T2;
1409 break;
1410 default:
1411 decode_len = 0;
1412 LWIP_DEBUGF(DHCP_DEBUG, ("skipping option %"U16_F" in options\n", op));
1413 break;
1415 offset += len + 2;
1416 if (decode_len > 0) {
1417 u32_t value = 0;
1418 u16_t copy_len;
1419 decode_next:
1420 LWIP_ASSERT("check decode_idx", decode_idx >= 0 && decode_idx < DHCP_OPTION_IDX_MAX);
1421 LWIP_ASSERT("option already decoded", !dhcp_option_given(dhcp, decode_idx));
1422 copy_len = LWIP_MIN(decode_len, 4);
1423 pbuf_copy_partial(q, &value, copy_len, val_offset);
1424 if (decode_len > 4) {
1425 /* decode more than one u32_t */
1426 LWIP_ASSERT("decode_len % 4 == 0", decode_len % 4 == 0);
1427 dhcp_got_option(dhcp, decode_idx);
1428 dhcp_set_option_value(dhcp, decode_idx, htonl(value));
1429 decode_len -= 4;
1430 val_offset += 4;
1431 decode_idx++;
1432 goto decode_next;
1433 } else if (decode_len == 4) {
1434 value = ntohl(value);
1435 } else {
1436 LWIP_ASSERT("invalid decode_len", decode_len == 1);
1437 value = ((u8_t*)&value)[0];
1439 dhcp_got_option(dhcp, decode_idx);
1440 dhcp_set_option_value(dhcp, decode_idx, value);
1442 if (offset >= q->len) {
1443 offset -= q->len;
1444 offset_max -= q->len;
1445 q = q->next;
1446 options = (u8_t*)q->payload;
1449 /* is this an overloaded message? */
1450 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_OVERLOAD)) {
1451 u32_t overload = dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_OVERLOAD);
1452 dhcp_clear_option(dhcp, DHCP_OPTION_IDX_OVERLOAD);
1453 if (overload == DHCP_OVERLOAD_FILE) {
1454 parse_file_as_options = 1;
1455 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("overloaded file field\n"));
1456 } else if (overload == DHCP_OVERLOAD_SNAME) {
1457 parse_sname_as_options = 1;
1458 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("overloaded sname field\n"));
1459 } else if (overload == DHCP_OVERLOAD_SNAME_FILE) {
1460 parse_sname_as_options = 1;
1461 parse_file_as_options = 1;
1462 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("overloaded sname and file field\n"));
1463 } else {
1464 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("invalid overload option: %d\n", (int)overload));
1466 #if LWIP_DHCP_BOOTP_FILE
1467 if (!parse_file_as_options) {
1468 /* only do this for ACK messages */
1469 if (dhcp_option_given(dhcp, DHCP_OPTION_IDX_MSG_TYPE) &&
1470 (dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_MSG_TYPE) == DHCP_ACK))
1471 /* copy bootp file name, don't care for sname (server hostname) */
1472 pbuf_copy_partial(p, dhcp->boot_file_name, DHCP_FILE_LEN-1, DHCP_FILE_OFS);
1473 /* make sure the string is really NULL-terminated */
1474 dhcp->boot_file_name[DHCP_FILE_LEN-1] = 0;
1476 #endif /* LWIP_DHCP_BOOTP_FILE */
1478 if (parse_file_as_options) {
1479 /* if both are overloaded, parse file first and then sname (RFC 2131 ch. 4.1) */
1480 parse_file_as_options = 0;
1481 options_idx = DHCP_FILE_OFS;
1482 options_idx_max = DHCP_FILE_OFS + DHCP_FILE_LEN;
1483 goto again;
1484 } else if (parse_sname_as_options) {
1485 parse_sname_as_options = 0;
1486 options_idx = DHCP_SNAME_OFS;
1487 options_idx_max = DHCP_SNAME_OFS + DHCP_SNAME_LEN;
1488 goto again;
1490 return ERR_OK;
1494 * If an incoming DHCP message is in response to us, then trigger the state machine
1496 static void
1497 dhcp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, ip_addr_t *addr, u16_t port)
1499 struct netif *netif = (struct netif *)arg;
1500 struct dhcp *dhcp = netif->dhcp;
1501 struct dhcp_msg *reply_msg = (struct dhcp_msg *)p->payload;
1502 u8_t msg_type;
1503 u8_t i;
1504 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("dhcp_recv(pbuf = %p) from DHCP server %"U16_F".%"U16_F".%"U16_F".%"U16_F" port %"U16_F"\n", (void*)p,
1505 ip4_addr1_16(addr), ip4_addr2_16(addr), ip4_addr3_16(addr), ip4_addr4_16(addr), port));
1506 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("pbuf->len = %"U16_F"\n", p->len));
1507 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("pbuf->tot_len = %"U16_F"\n", p->tot_len));
1508 /* prevent warnings about unused arguments */
1509 LWIP_UNUSED_ARG(pcb);
1510 LWIP_UNUSED_ARG(addr);
1511 LWIP_UNUSED_ARG(port);
1513 LWIP_ASSERT("reply wasn't freed", dhcp->msg_in == NULL);
1515 if (p->len < DHCP_MIN_REPLY_LEN) {
1516 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING, ("DHCP reply message or pbuf too short\n"));
1517 goto free_pbuf_and_return;
1520 if (reply_msg->op != DHCP_BOOTREPLY) {
1521 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING, ("not a DHCP reply message, but type %"U16_F"\n", (u16_t)reply_msg->op));
1522 goto free_pbuf_and_return;
1524 /* iterate through hardware address and match against DHCP message */
1525 for (i = 0; i < netif->hwaddr_len; i++) {
1526 if (netif->hwaddr[i] != reply_msg->chaddr[i]) {
1527 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING,
1528 ("netif->hwaddr[%"U16_F"]==%02"X16_F" != reply_msg->chaddr[%"U16_F"]==%02"X16_F"\n",
1529 (u16_t)i, (u16_t)netif->hwaddr[i], (u16_t)i, (u16_t)reply_msg->chaddr[i]));
1530 goto free_pbuf_and_return;
1533 /* match transaction ID against what we expected */
1534 if (ntohl(reply_msg->xid) != dhcp->xid) {
1535 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING,
1536 ("transaction id mismatch reply_msg->xid(%"X32_F")!=dhcp->xid(%"X32_F")\n",ntohl(reply_msg->xid),dhcp->xid));
1537 goto free_pbuf_and_return;
1539 /* option fields could be unfold? */
1540 if (dhcp_parse_reply(dhcp, p) != ERR_OK) {
1541 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS,
1542 ("problem unfolding DHCP message - too short on memory?\n"));
1543 goto free_pbuf_and_return;
1546 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("searching DHCP_OPTION_MESSAGE_TYPE\n"));
1547 /* obtain pointer to DHCP message type */
1548 if (!dhcp_option_given(dhcp, DHCP_OPTION_IDX_MSG_TYPE)) {
1549 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_WARNING, ("DHCP_OPTION_MESSAGE_TYPE option not found\n"));
1550 goto free_pbuf_and_return;
1553 /* read DHCP message type */
1554 msg_type = (u8_t)dhcp_get_option_value(dhcp, DHCP_OPTION_IDX_MSG_TYPE);
1555 /* message type is DHCP ACK? */
1556 if (msg_type == DHCP_ACK) {
1557 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("DHCP_ACK received\n"));
1558 /* in requesting state? */
1559 if (dhcp->state == DHCP_REQUESTING) {
1560 dhcp_handle_ack(netif);
1561 #if DHCP_DOES_ARP_CHECK
1562 /* check if the acknowledged lease address is already in use */
1563 dhcp_check(netif);
1564 #else
1565 /* bind interface to the acknowledged lease address */
1566 dhcp_bind(netif);
1567 #endif
1569 /* already bound to the given lease address? */
1570 else if ((dhcp->state == DHCP_REBOOTING) || (dhcp->state == DHCP_REBINDING) || (dhcp->state == DHCP_RENEWING)) {
1571 dhcp_bind(netif);
1574 /* received a DHCP_NAK in appropriate state? */
1575 else if ((msg_type == DHCP_NAK) &&
1576 ((dhcp->state == DHCP_REBOOTING) || (dhcp->state == DHCP_REQUESTING) ||
1577 (dhcp->state == DHCP_REBINDING) || (dhcp->state == DHCP_RENEWING ))) {
1578 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("DHCP_NAK received\n"));
1579 dhcp_handle_nak(netif);
1581 /* received a DHCP_OFFER in DHCP_SELECTING state? */
1582 else if ((msg_type == DHCP_OFFER) && (dhcp->state == DHCP_SELECTING)) {
1583 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE, ("DHCP_OFFER received in DHCP_SELECTING state\n"));
1584 dhcp->request_timeout = 0;
1585 /* remember offered lease */
1586 dhcp_handle_offer(netif);
1588 free_pbuf_and_return:
1589 dhcp->msg_in = NULL;
1590 pbuf_free(p);
1594 * Create a DHCP request, fill in common headers
1596 * @param netif the netif under DHCP control
1597 * @param dhcp dhcp control struct
1598 * @param message_type message type of the request
1600 static err_t
1601 dhcp_create_msg(struct netif *netif, struct dhcp *dhcp, u8_t message_type)
1603 u16_t i;
1604 #ifndef DHCP_GLOBAL_XID
1605 /** default global transaction identifier starting value (easy to match
1606 * with a packet analyser). We simply increment for each new request.
1607 * Predefine DHCP_GLOBAL_XID to a better value or a function call to generate one
1608 * at runtime, any supporting function prototypes can be defined in DHCP_GLOBAL_XID_HEADER */
1609 static u32_t xid = 0xABCD0000;
1610 #else
1611 static u32_t xid;
1612 static u8_t xid_initialised = 0;
1613 if (!xid_initialised) {
1614 xid = DHCP_GLOBAL_XID;
1615 xid_initialised = !xid_initialised;
1617 #endif
1618 LWIP_ERROR("dhcp_create_msg: netif != NULL", (netif != NULL), return ERR_ARG;);
1619 LWIP_ERROR("dhcp_create_msg: dhcp != NULL", (dhcp != NULL), return ERR_VAL;);
1620 LWIP_ASSERT("dhcp_create_msg: dhcp->p_out == NULL", dhcp->p_out == NULL);
1621 LWIP_ASSERT("dhcp_create_msg: dhcp->msg_out == NULL", dhcp->msg_out == NULL);
1622 dhcp->p_out = pbuf_alloc(PBUF_TRANSPORT, sizeof(struct dhcp_msg), PBUF_RAM);
1623 if (dhcp->p_out == NULL) {
1624 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE | LWIP_DBG_LEVEL_SERIOUS,
1625 ("dhcp_create_msg(): could not allocate pbuf\n"));
1626 return ERR_MEM;
1628 LWIP_ASSERT("dhcp_create_msg: check that first pbuf can hold struct dhcp_msg",
1629 (dhcp->p_out->len >= sizeof(struct dhcp_msg)));
1631 /* reuse transaction identifier in retransmissions */
1632 if (dhcp->tries == 0) {
1633 xid++;
1635 dhcp->xid = xid;
1636 LWIP_DEBUGF(DHCP_DEBUG | LWIP_DBG_TRACE,
1637 ("transaction id xid(%"X32_F")\n", xid));
1639 dhcp->msg_out = (struct dhcp_msg *)dhcp->p_out->payload;
1641 dhcp->msg_out->op = DHCP_BOOTREQUEST;
1642 /* TODO: make link layer independent */
1643 dhcp->msg_out->htype = DHCP_HTYPE_ETH;
1644 dhcp->msg_out->hlen = netif->hwaddr_len;
1645 dhcp->msg_out->hops = 0;
1646 dhcp->msg_out->xid = htonl(dhcp->xid);
1647 dhcp->msg_out->secs = 0;
1648 /* we don't need the broadcast flag since we can receive unicast traffic
1649 before being fully configured! */
1650 dhcp->msg_out->flags = 0;
1651 ip_addr_set_zero(&dhcp->msg_out->ciaddr);
1652 /* set ciaddr to netif->ip_addr based on message_type and state */
1653 if ((message_type == DHCP_INFORM) || (message_type == DHCP_DECLINE) ||
1654 ((message_type == DHCP_REQUEST) && /* DHCP_BOUND not used for sending! */
1655 ((dhcp->state==DHCP_RENEWING) || dhcp->state==DHCP_REBINDING))) {
1656 ip_addr_copy(dhcp->msg_out->ciaddr, netif->ip_addr);
1658 ip_addr_set_zero(&dhcp->msg_out->yiaddr);
1659 ip_addr_set_zero(&dhcp->msg_out->siaddr);
1660 ip_addr_set_zero(&dhcp->msg_out->giaddr);
1661 for (i = 0; i < DHCP_CHADDR_LEN; i++) {
1662 /* copy netif hardware address, pad with zeroes */
1663 dhcp->msg_out->chaddr[i] = (i < netif->hwaddr_len) ? netif->hwaddr[i] : 0/* pad byte*/;
1665 for (i = 0; i < DHCP_SNAME_LEN; i++) {
1666 dhcp->msg_out->sname[i] = 0;
1668 for (i = 0; i < DHCP_FILE_LEN; i++) {
1669 dhcp->msg_out->file[i] = 0;
1671 dhcp->msg_out->cookie = PP_HTONL(DHCP_MAGIC_COOKIE);
1672 dhcp->options_out_len = 0;
1673 /* fill options field with an incrementing array (for debugging purposes) */
1674 for (i = 0; i < DHCP_OPTIONS_LEN; i++) {
1675 dhcp->msg_out->options[i] = (u8_t)i; /* for debugging only, no matter if truncated */
1677 /* Add option MESSAGE_TYPE */
1678 dhcp_option(dhcp, DHCP_OPTION_MESSAGE_TYPE, DHCP_OPTION_MESSAGE_TYPE_LEN);
1679 dhcp_option_byte(dhcp, message_type);
1680 return ERR_OK;
1684 * Free previously allocated memory used to send a DHCP request.
1686 * @param dhcp the dhcp struct to free the request from
1688 static void
1689 dhcp_delete_msg(struct dhcp *dhcp)
1691 LWIP_ERROR("dhcp_delete_msg: dhcp != NULL", (dhcp != NULL), return;);
1692 LWIP_ASSERT("dhcp_delete_msg: dhcp->p_out != NULL", dhcp->p_out != NULL);
1693 LWIP_ASSERT("dhcp_delete_msg: dhcp->msg_out != NULL", dhcp->msg_out != NULL);
1694 if (dhcp->p_out != NULL) {
1695 pbuf_free(dhcp->p_out);
1697 dhcp->p_out = NULL;
1698 dhcp->msg_out = NULL;
1702 * Add a DHCP message trailer
1704 * Adds the END option to the DHCP message, and if
1705 * necessary, up to three padding bytes.
1707 * @param dhcp DHCP state structure
1709 static void
1710 dhcp_option_trailer(struct dhcp *dhcp)
1712 LWIP_ERROR("dhcp_option_trailer: dhcp != NULL", (dhcp != NULL), return;);
1713 LWIP_ASSERT("dhcp_option_trailer: dhcp->msg_out != NULL\n", dhcp->msg_out != NULL);
1714 LWIP_ASSERT("dhcp_option_trailer: dhcp->options_out_len < DHCP_OPTIONS_LEN\n", dhcp->options_out_len < DHCP_OPTIONS_LEN);
1715 dhcp->msg_out->options[dhcp->options_out_len++] = DHCP_OPTION_END;
1716 /* packet is too small, or not 4 byte aligned? */
1717 while ((dhcp->options_out_len < DHCP_MIN_OPTIONS_LEN) || (dhcp->options_out_len & 3)) {
1718 /* LWIP_DEBUGF(DHCP_DEBUG,("dhcp_option_trailer:dhcp->options_out_len=%"U16_F", DHCP_OPTIONS_LEN=%"U16_F, dhcp->options_out_len, DHCP_OPTIONS_LEN)); */
1719 LWIP_ASSERT("dhcp_option_trailer: dhcp->options_out_len < DHCP_OPTIONS_LEN\n", dhcp->options_out_len < DHCP_OPTIONS_LEN);
1720 /* add a fill/padding byte */
1721 dhcp->msg_out->options[dhcp->options_out_len++] = 0;
1725 #endif /* LWIP_DHCP */