1163 lines
28 KiB
C
1163 lines
28 KiB
C
/** @file
|
|
* @brief DHCPv4 client related functions
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2017 ARM Ltd.
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_NET_DEBUG_DHCPV4)
|
|
#define SYS_LOG_DOMAIN "net/dhcpv4"
|
|
#define NET_LOG_ENABLED 1
|
|
#endif
|
|
|
|
#include <errno.h>
|
|
#include <inttypes.h>
|
|
#include <net/net_core.h>
|
|
#include <net/net_pkt.h>
|
|
#include <net/net_if.h>
|
|
#include <net/net_mgmt.h>
|
|
#include "net_private.h"
|
|
|
|
#include <net/udp.h>
|
|
#include "udp_internal.h"
|
|
#include <net/dhcpv4.h>
|
|
#include <net/dns_resolve.h>
|
|
|
|
#include "dhcpv4.h"
|
|
#include "ipv4.h"
|
|
|
|
#define PKT_WAIT_TIME K_SECONDS(1)
|
|
|
|
static sys_slist_t dhcpv4_ifaces;
|
|
static struct k_delayed_work timeout_work;
|
|
|
|
static struct net_mgmt_event_callback mgmt4_cb;
|
|
|
|
/* RFC 1497 [17] */
|
|
static const u8_t magic_cookie[4] = { 0x63, 0x82, 0x53, 0x63 };
|
|
|
|
static const char *dhcpv4_msg_type_name(enum dhcpv4_msg_type msg_type)
|
|
__attribute__((unused));
|
|
|
|
static const char *dhcpv4_msg_type_name(enum dhcpv4_msg_type msg_type)
|
|
{
|
|
static const char * const name[] = {
|
|
"discover",
|
|
"offer",
|
|
"request",
|
|
"decline",
|
|
"ack",
|
|
"nak",
|
|
"release",
|
|
"inform"
|
|
};
|
|
|
|
__ASSERT_NO_MSG(msg_type >= 1 && msg_type <= sizeof(name));
|
|
return name[msg_type - 1];
|
|
}
|
|
|
|
/* Add magic cookie to DCHPv4 messages */
|
|
static inline bool dhcpv4_add_cookie(struct net_pkt *pkt)
|
|
{
|
|
return net_pkt_append_all(pkt, sizeof(magic_cookie),
|
|
magic_cookie, K_FOREVER);
|
|
}
|
|
|
|
/* Add a an option with the form OPTION LENGTH VALUE. */
|
|
static bool dhcpv4_add_option_length_value(struct net_pkt *pkt, u8_t option,
|
|
u8_t size, const u8_t *value)
|
|
{
|
|
if (!net_pkt_append_u8(pkt, option)) {
|
|
return false;
|
|
}
|
|
|
|
if (!net_pkt_append_u8(pkt, size)) {
|
|
return false;
|
|
}
|
|
|
|
if (!net_pkt_append_all(pkt, size, value, K_FOREVER)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/* Add DHCPv4 message type */
|
|
static bool dhcpv4_add_msg_type(struct net_pkt *pkt, u8_t type)
|
|
{
|
|
return dhcpv4_add_option_length_value(pkt, DHCPV4_OPTIONS_MSG_TYPE,
|
|
1, &type);
|
|
}
|
|
|
|
/* Add DHCPv4 minimum required options for server to reply.
|
|
* Can be added more if needed.
|
|
*/
|
|
static bool dhcpv4_add_req_options(struct net_pkt *pkt)
|
|
{
|
|
static const u8_t data[5] = { DHCPV4_OPTIONS_REQ_LIST,
|
|
3, /* Length */
|
|
DHCPV4_OPTIONS_SUBNET_MASK,
|
|
DHCPV4_OPTIONS_ROUTER,
|
|
DHCPV4_OPTIONS_DNS_SERVER };
|
|
|
|
return net_pkt_append_all(pkt, sizeof(data), data, K_FOREVER);
|
|
}
|
|
|
|
static bool dhcpv4_add_server_id(struct net_pkt *pkt,
|
|
const struct in_addr *addr)
|
|
{
|
|
return dhcpv4_add_option_length_value(pkt, DHCPV4_OPTIONS_SERVER_ID,
|
|
4, addr->s4_addr);
|
|
}
|
|
|
|
static bool dhcpv4_add_req_ipaddr(struct net_pkt *pkt,
|
|
const struct in_addr *addr)
|
|
{
|
|
return dhcpv4_add_option_length_value(pkt, DHCPV4_OPTIONS_REQ_IPADDR,
|
|
4, addr->s4_addr);
|
|
}
|
|
|
|
/* Add DHCPv4 Options end, rest of the message can be padded wit zeros */
|
|
static inline bool dhcpv4_add_end(struct net_pkt *pkt)
|
|
{
|
|
return net_pkt_append_u8(pkt, DHCPV4_OPTIONS_END);
|
|
}
|
|
|
|
/* File is empty ATM */
|
|
static inline bool dhcpv4_add_file(struct net_pkt *pkt)
|
|
{
|
|
const u16_t size = SIZE_OF_FILE;
|
|
|
|
if (net_pkt_append_memset(pkt, size, 0, PKT_WAIT_TIME) != size) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/* SNAME is empty ATM */
|
|
static inline bool dhcpv4_add_sname(struct net_pkt *pkt)
|
|
{
|
|
const u16_t size = SIZE_OF_SNAME;
|
|
|
|
if (net_pkt_append_memset(pkt, size, 0, PKT_WAIT_TIME) != size) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/* Setup UDP header */
|
|
static bool dhcpv4_setup_udp_header(struct net_pkt *pkt)
|
|
{
|
|
struct net_udp_hdr hdr, *udp;
|
|
u16_t len;
|
|
|
|
udp = net_udp_get_hdr(pkt, &hdr);
|
|
if (!udp || udp == &hdr) {
|
|
NET_ERR("Could not get UDP header");
|
|
return false;
|
|
}
|
|
|
|
len = net_pkt_get_len(pkt) - NET_IPV4H_LEN;
|
|
|
|
/* Setup UDP header */
|
|
udp->src_port = htons(DHCPV4_CLIENT_PORT);
|
|
udp->dst_port = htons(DHCPV4_SERVER_PORT);
|
|
udp->len = htons(len);
|
|
|
|
net_udp_set_hdr(pkt, udp);
|
|
|
|
return true;
|
|
}
|
|
|
|
/* Prepare initial DHCPv4 message and add options as per message type */
|
|
static struct net_pkt *dhcpv4_prepare_message(struct net_if *iface, u8_t type,
|
|
const struct in_addr *ciaddr,
|
|
const struct in_addr *server_addr)
|
|
{
|
|
const struct in_addr src = INADDR_ANY_INIT;
|
|
struct net_pkt *pkt;
|
|
struct net_buf *frag;
|
|
struct dhcp_msg *msg;
|
|
|
|
pkt = net_pkt_get_reserve_tx(net_if_get_ll_reserve(iface, NULL),
|
|
K_FOREVER);
|
|
net_pkt_set_iface(pkt, iface);
|
|
net_pkt_set_ipv4_ttl(pkt, 0xFF);
|
|
|
|
net_ipv4_create(pkt, &src, server_addr, iface, IPPROTO_UDP);
|
|
|
|
frag = pkt->frags;
|
|
|
|
/* Leave room for UDP header which will be filled in later */
|
|
net_buf_add(frag, NET_UDPH_LEN);
|
|
|
|
if (net_buf_tailroom(frag) < sizeof(struct dhcp_msg)) {
|
|
goto fail;
|
|
}
|
|
|
|
msg = (struct dhcp_msg *)(frag->data + NET_IPV4UDPH_LEN);
|
|
(void)memset(msg, 0, sizeof(struct dhcp_msg));
|
|
|
|
msg->op = DHCPV4_MSG_BOOT_REQUEST;
|
|
|
|
msg->htype = HARDWARE_ETHERNET_TYPE;
|
|
msg->hlen = HARDWARE_ETHERNET_LEN;
|
|
|
|
msg->xid = htonl(iface->config.dhcpv4.xid);
|
|
msg->flags = htons(DHCPV4_MSG_BROADCAST);
|
|
|
|
if (ciaddr) {
|
|
/* The ciaddr field was zero'd out above, if we are
|
|
* asked to send a ciaddr then fill it in now
|
|
* otherwise leave it as all zeros.
|
|
*/
|
|
memcpy(msg->ciaddr, ciaddr, 4);
|
|
}
|
|
|
|
memcpy(msg->chaddr, net_if_get_link_addr(iface)->addr,
|
|
net_if_get_link_addr(iface)->len);
|
|
|
|
net_buf_add(frag, sizeof(struct dhcp_msg));
|
|
|
|
if (!dhcpv4_add_sname(pkt) ||
|
|
!dhcpv4_add_file(pkt) ||
|
|
!dhcpv4_add_cookie(pkt) ||
|
|
!dhcpv4_add_msg_type(pkt, type)) {
|
|
goto fail;
|
|
}
|
|
|
|
return pkt;
|
|
|
|
fail:
|
|
net_pkt_unref(pkt);
|
|
return NULL;
|
|
}
|
|
|
|
/* Prepare DHCPv4 Message request and send it to peer */
|
|
static u32_t dhcpv4_send_request(struct net_if *iface)
|
|
{
|
|
const struct in_addr *server_addr = net_ipv4_broadcast_address();
|
|
const struct in_addr *ciaddr = NULL;
|
|
bool with_server_id = false;
|
|
bool with_requested_ip = false;
|
|
struct net_pkt *pkt;
|
|
u32_t timeout;
|
|
|
|
iface->config.dhcpv4.xid++;
|
|
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
case NET_DHCPV4_INIT:
|
|
case NET_DHCPV4_SELECTING:
|
|
case NET_DHCPV4_BOUND:
|
|
/* Not possible */
|
|
NET_ASSERT_INFO(0, "Invalid state %s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
break;
|
|
case NET_DHCPV4_REQUESTING:
|
|
with_server_id = true;
|
|
with_requested_ip = true;
|
|
break;
|
|
case NET_DHCPV4_RENEWING:
|
|
/* Since we have an address populate the ciaddr field.
|
|
*/
|
|
ciaddr = &iface->config.dhcpv4.requested_ip;
|
|
|
|
/* UNICAST the DHCPREQUEST */
|
|
server_addr = &iface->config.dhcpv4.server_id;
|
|
|
|
/* RFC2131 4.4.5 Client MUST NOT include server
|
|
* identifier in the DHCPREQUEST.
|
|
*/
|
|
break;
|
|
case NET_DHCPV4_REBINDING:
|
|
/* Since we have an address populate the ciaddr field.
|
|
*/
|
|
ciaddr = &iface->config.dhcpv4.requested_ip;
|
|
|
|
server_addr = net_ipv4_broadcast_address();
|
|
break;
|
|
}
|
|
|
|
pkt = dhcpv4_prepare_message(iface, DHCPV4_MSG_TYPE_REQUEST,
|
|
ciaddr, server_addr);
|
|
if (!pkt) {
|
|
goto fail;
|
|
}
|
|
|
|
if (with_server_id &&
|
|
!dhcpv4_add_server_id(pkt, &iface->config.dhcpv4.server_id)) {
|
|
goto fail;
|
|
}
|
|
|
|
if (with_requested_ip &&
|
|
!dhcpv4_add_req_ipaddr(pkt, &iface->config.dhcpv4.requested_ip)) {
|
|
goto fail;
|
|
}
|
|
|
|
if (!dhcpv4_add_end(pkt)) {
|
|
goto fail;
|
|
}
|
|
|
|
if (!dhcpv4_setup_udp_header(pkt)) {
|
|
goto fail;
|
|
}
|
|
|
|
net_ipv4_finalize(pkt, IPPROTO_UDP);
|
|
|
|
if (net_send_data(pkt) < 0) {
|
|
goto fail;
|
|
}
|
|
|
|
timeout = DHCPV4_INITIAL_RETRY_TIMEOUT << iface->config.dhcpv4.attempts;
|
|
|
|
iface->config.dhcpv4.attempts++;
|
|
|
|
NET_DBG("send request dst=%s xid=0x%x ciaddr=%s%s%s timeout=%us",
|
|
net_sprint_ipv4_addr(server_addr),
|
|
iface->config.dhcpv4.xid,
|
|
ciaddr ? net_sprint_ipv4_addr(ciaddr) : "<unknown>",
|
|
with_server_id ? " +server-id" : "",
|
|
with_requested_ip ? " +requested-ip" : "",
|
|
timeout);
|
|
|
|
iface->config.dhcpv4.timer_start = k_uptime_get();
|
|
iface->config.dhcpv4.request_time = timeout;
|
|
|
|
return timeout;
|
|
|
|
fail:
|
|
NET_DBG("Message preparation failed");
|
|
|
|
if (pkt) {
|
|
net_pkt_unref(pkt);
|
|
}
|
|
|
|
return UINT32_MAX;
|
|
}
|
|
|
|
/* Prepare DHCPv4 Discover message and broadcast it */
|
|
static u32_t dhcpv4_send_discover(struct net_if *iface)
|
|
{
|
|
struct net_pkt *pkt;
|
|
u32_t timeout;
|
|
|
|
iface->config.dhcpv4.xid++;
|
|
|
|
pkt = dhcpv4_prepare_message(iface, DHCPV4_MSG_TYPE_DISCOVER,
|
|
NULL, net_ipv4_broadcast_address());
|
|
if (!pkt) {
|
|
goto fail;
|
|
}
|
|
|
|
if (!dhcpv4_add_req_options(pkt) || !dhcpv4_add_end(pkt)) {
|
|
goto fail;
|
|
}
|
|
|
|
if (!dhcpv4_setup_udp_header(pkt)) {
|
|
goto fail;
|
|
}
|
|
|
|
net_ipv4_finalize(pkt, IPPROTO_UDP);
|
|
|
|
if (net_send_data(pkt) < 0) {
|
|
goto fail;
|
|
}
|
|
|
|
timeout = DHCPV4_INITIAL_RETRY_TIMEOUT << iface->config.dhcpv4.attempts;
|
|
|
|
iface->config.dhcpv4.attempts++;
|
|
|
|
NET_DBG("send discover xid=0x%x timeout=%us",
|
|
iface->config.dhcpv4.xid, timeout);
|
|
|
|
iface->config.dhcpv4.timer_start = k_uptime_get();
|
|
iface->config.dhcpv4.request_time = timeout;
|
|
|
|
return timeout;
|
|
|
|
fail:
|
|
NET_DBG("Message preparation failed");
|
|
|
|
if (pkt) {
|
|
net_pkt_unref(pkt);
|
|
}
|
|
|
|
return UINT32_MAX;
|
|
}
|
|
|
|
static void dhcpv4_update_timeout_work(u32_t timeout)
|
|
{
|
|
if (!k_delayed_work_remaining_get(&timeout_work) ||
|
|
K_SECONDS(timeout) <
|
|
k_delayed_work_remaining_get(&timeout_work)) {
|
|
k_delayed_work_cancel(&timeout_work);
|
|
k_delayed_work_submit(&timeout_work, K_SECONDS(timeout));
|
|
}
|
|
}
|
|
|
|
static void dhcpv4_enter_selecting(struct net_if *iface)
|
|
{
|
|
iface->config.dhcpv4.attempts = 0;
|
|
|
|
iface->config.dhcpv4.lease_time = 0;
|
|
iface->config.dhcpv4.renewal_time = 0;
|
|
iface->config.dhcpv4.rebinding_time = 0;
|
|
|
|
iface->config.dhcpv4.state = NET_DHCPV4_SELECTING;
|
|
NET_DBG("enter state=%s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
}
|
|
|
|
static bool dhcpv4_check_timeout(s64_t start, u32_t time, s64_t timeout)
|
|
{
|
|
start += K_SECONDS(time);
|
|
if (start < 0) {
|
|
start = -start;
|
|
}
|
|
|
|
if (start > timeout) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool dhcpv4_request_timedout(struct net_if *iface, s64_t timeout)
|
|
{
|
|
return dhcpv4_check_timeout(iface->config.dhcpv4.timer_start,
|
|
iface->config.dhcpv4.request_time,
|
|
timeout);
|
|
}
|
|
|
|
static bool dhcpv4_renewal_timedout(struct net_if *iface, s64_t timeout)
|
|
{
|
|
if (!dhcpv4_check_timeout(iface->config.dhcpv4.timer_start,
|
|
iface->config.dhcpv4.renewal_time,
|
|
timeout)) {
|
|
return false;
|
|
}
|
|
|
|
iface->config.dhcpv4.state = NET_DHCPV4_RENEWING;
|
|
NET_DBG("enter state=%s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
iface->config.dhcpv4.attempts = 0;
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool dhcpv4_rebinding_timedout(struct net_if *iface, s64_t timeout)
|
|
{
|
|
if (!dhcpv4_check_timeout(iface->config.dhcpv4.timer_start,
|
|
iface->config.dhcpv4.rebinding_time,
|
|
timeout)) {
|
|
return false;
|
|
}
|
|
|
|
iface->config.dhcpv4.state = NET_DHCPV4_REBINDING;
|
|
NET_DBG("enter state=%s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
iface->config.dhcpv4.attempts = 0;
|
|
|
|
return true;
|
|
}
|
|
|
|
static void dhcpv4_enter_requesting(struct net_if *iface)
|
|
{
|
|
iface->config.dhcpv4.attempts = 0;
|
|
iface->config.dhcpv4.state = NET_DHCPV4_REQUESTING;
|
|
NET_DBG("enter state=%s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
|
|
dhcpv4_update_timeout_work(dhcpv4_send_request(iface));
|
|
}
|
|
|
|
static void dhcpv4_enter_bound(struct net_if *iface)
|
|
{
|
|
u32_t renewal_time;
|
|
u32_t rebinding_time;
|
|
|
|
renewal_time = iface->config.dhcpv4.renewal_time;
|
|
if (!renewal_time) {
|
|
/* The default renewal time rfc2131 4.4.5 */
|
|
renewal_time = iface->config.dhcpv4.lease_time / 2;
|
|
iface->config.dhcpv4.renewal_time = renewal_time;
|
|
}
|
|
|
|
rebinding_time = iface->config.dhcpv4.rebinding_time;
|
|
if (!rebinding_time) {
|
|
/* The default rebinding time rfc2131 4.4.5 */
|
|
rebinding_time = iface->config.dhcpv4.lease_time * 875 / 1000;
|
|
iface->config.dhcpv4.rebinding_time = rebinding_time;
|
|
}
|
|
|
|
iface->config.dhcpv4.state = NET_DHCPV4_BOUND;
|
|
NET_DBG("enter state=%s renewal=%us rebinding=%us",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state),
|
|
renewal_time, rebinding_time);
|
|
|
|
iface->config.dhcpv4.timer_start = k_uptime_get();
|
|
iface->config.dhcpv4.request_time = min(renewal_time, rebinding_time);
|
|
|
|
dhcpv4_update_timeout_work(iface->config.dhcpv4.request_time);
|
|
}
|
|
|
|
static u32_t dhcph4_manage_timers(struct net_if *iface, s64_t timeout)
|
|
{
|
|
NET_DBG("iface %p state=%s", iface,
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
|
|
if (!dhcpv4_request_timedout(iface, timeout)) {
|
|
return iface->config.dhcpv4.request_time;
|
|
}
|
|
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
break;
|
|
case NET_DHCPV4_INIT:
|
|
dhcpv4_enter_selecting(iface);
|
|
/* Fall through, as discover msg needs to be sent */
|
|
case NET_DHCPV4_SELECTING:
|
|
/* Failed to get OFFER message, send DISCOVER again */
|
|
return dhcpv4_send_discover(iface);
|
|
case NET_DHCPV4_REQUESTING:
|
|
/* Maximum number of renewal attempts failed, so start
|
|
* from the beginning.
|
|
*/
|
|
if (iface->config.dhcpv4.attempts >=
|
|
DHCPV4_MAX_NUMBER_OF_ATTEMPTS) {
|
|
NET_DBG("too many attempts, restart");
|
|
dhcpv4_enter_selecting(iface);
|
|
return dhcpv4_send_discover(iface);
|
|
}
|
|
|
|
return dhcpv4_send_request(iface);
|
|
case NET_DHCPV4_BOUND:
|
|
if (dhcpv4_renewal_timedout(iface, timeout) ||
|
|
dhcpv4_rebinding_timedout(iface, timeout)) {
|
|
return dhcpv4_send_request(iface);
|
|
}
|
|
|
|
return min(iface->config.dhcpv4.renewal_time,
|
|
iface->config.dhcpv4.rebinding_time);
|
|
case NET_DHCPV4_RENEWING:
|
|
case NET_DHCPV4_REBINDING:
|
|
if (iface->config.dhcpv4.attempts >=
|
|
DHCPV4_MAX_NUMBER_OF_ATTEMPTS) {
|
|
NET_DBG("too many attempts, restart");
|
|
|
|
if (!net_if_ipv4_addr_rm(iface,
|
|
&iface->config.dhcpv4.requested_ip)) {
|
|
NET_DBG("Failed to remove addr from iface");
|
|
}
|
|
|
|
/* Maximum number of renewal attempts failed, so start
|
|
* from the beginning.
|
|
*/
|
|
dhcpv4_enter_selecting(iface);
|
|
return dhcpv4_send_discover(iface);
|
|
} else {
|
|
return dhcpv4_send_request(iface);
|
|
}
|
|
}
|
|
|
|
return UINT32_MAX;
|
|
}
|
|
|
|
static void dhcpv4_timeout(struct k_work *work)
|
|
{
|
|
u32_t timeout_update = UINT32_MAX - 1;
|
|
s64_t timeout = k_uptime_get();
|
|
struct net_if_dhcpv4 *current, *next;
|
|
|
|
ARG_UNUSED(work);
|
|
|
|
SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&dhcpv4_ifaces, current, next, node) {
|
|
struct net_if *iface = CONTAINER_OF(
|
|
CONTAINER_OF(current, struct net_if_config, dhcpv4),
|
|
struct net_if, config);
|
|
u32_t next_timeout;
|
|
|
|
next_timeout = dhcph4_manage_timers(iface, timeout);
|
|
if (next_timeout < timeout_update) {
|
|
timeout_update = next_timeout;
|
|
}
|
|
}
|
|
|
|
if (timeout_update != UINT32_MAX) {
|
|
NET_DBG("Waiting for %us", timeout_update);
|
|
|
|
k_delayed_work_submit(&timeout_work,
|
|
K_SECONDS(timeout_update));
|
|
}
|
|
}
|
|
|
|
/* Parse DHCPv4 options and retrieve relavant information
|
|
* as per RFC 2132.
|
|
*/
|
|
static enum net_verdict dhcpv4_parse_options(struct net_if *iface,
|
|
struct net_buf *frag,
|
|
u16_t offset,
|
|
enum dhcpv4_msg_type *msg_type)
|
|
{
|
|
u8_t cookie[4];
|
|
u8_t length;
|
|
u8_t type;
|
|
u16_t pos;
|
|
|
|
frag = net_frag_read(frag, offset, &pos, sizeof(magic_cookie),
|
|
(u8_t *)cookie);
|
|
if (!frag || memcmp(magic_cookie, cookie, sizeof(magic_cookie))) {
|
|
|
|
NET_DBG("Incorrect magic cookie");
|
|
return NET_DROP;
|
|
}
|
|
|
|
while (frag) {
|
|
frag = net_frag_read_u8(frag, pos, &pos, &type);
|
|
|
|
if (type == DHCPV4_OPTIONS_END) {
|
|
NET_DBG("options_end");
|
|
return NET_OK;
|
|
}
|
|
|
|
frag = net_frag_read_u8(frag, pos, &pos, &length);
|
|
if (!frag) {
|
|
NET_ERR("option parsing, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
switch (type) {
|
|
case DHCPV4_OPTIONS_SUBNET_MASK: {
|
|
struct in_addr netmask;
|
|
|
|
if (length != 4) {
|
|
NET_ERR("options_subnet_mask, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read(frag, pos, &pos, length,
|
|
netmask.s4_addr);
|
|
if (!frag && pos) {
|
|
NET_ERR("options_subnet_mask, short packet");
|
|
return NET_DROP;
|
|
}
|
|
|
|
net_if_ipv4_set_netmask(iface, &netmask);
|
|
NET_DBG("options_subnet_mask %s",
|
|
net_sprint_ipv4_addr(&netmask));
|
|
break;
|
|
}
|
|
case DHCPV4_OPTIONS_ROUTER: {
|
|
struct in_addr router;
|
|
|
|
/* Router option may present 1 or more
|
|
* addresses for routers on the clients
|
|
* subnet. Routers should be listed in order
|
|
* of preference. Hence we choose the first
|
|
* and skip the rest.
|
|
*/
|
|
if (length % 4 != 0 || length < 4) {
|
|
NET_ERR("options_router, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read(frag, pos, &pos, 4, router.s4_addr);
|
|
frag = net_frag_skip(frag, pos, &pos, length - 4);
|
|
if (!frag && pos) {
|
|
NET_ERR("options_router, short packet");
|
|
return NET_DROP;
|
|
}
|
|
|
|
NET_DBG("options_router: %s",
|
|
net_sprint_ipv4_addr(&router));
|
|
net_if_ipv4_set_gw(iface, &router);
|
|
break;
|
|
}
|
|
#if defined(CONFIG_DNS_RESOLVER)
|
|
case DHCPV4_OPTIONS_DNS_SERVER: {
|
|
struct sockaddr_in dns;
|
|
const struct sockaddr *dns_servers[] = {
|
|
(struct sockaddr *)&dns, NULL
|
|
};
|
|
int status;
|
|
|
|
/* DNS server option may present 1 or more
|
|
* addresses. Each 4 bytes in length. DNS
|
|
* servers should be listed in order
|
|
* of preference. Hence we choose the first
|
|
* and skip the rest.
|
|
*/
|
|
if (length % 4 != 0) {
|
|
NET_ERR("options_dns, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
(void)memset(&dns, 0, sizeof(dns));
|
|
frag = net_frag_read(frag, pos, &pos, 4,
|
|
dns.sin_addr.s4_addr);
|
|
frag = net_frag_skip(frag, pos, &pos, length - 4);
|
|
if (!frag && pos) {
|
|
NET_ERR("options_dns, short packet");
|
|
return NET_DROP;
|
|
}
|
|
|
|
dns.sin_family = AF_INET;
|
|
dns_resolve_close(dns_resolve_get_default());
|
|
|
|
status = dns_resolve_init(dns_resolve_get_default(),
|
|
NULL, dns_servers);
|
|
if (status < 0) {
|
|
NET_DBG("options_dns, failed to set "
|
|
"resolve address: %d", status);
|
|
return NET_DROP;
|
|
}
|
|
|
|
break;
|
|
}
|
|
#endif
|
|
case DHCPV4_OPTIONS_LEASE_TIME:
|
|
if (length != 4) {
|
|
NET_ERR("options_lease_time, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read_be32(frag, pos, &pos,
|
|
&iface->config.dhcpv4.lease_time);
|
|
NET_DBG("options_lease_time: %u",
|
|
iface->config.dhcpv4.lease_time);
|
|
|
|
if (!iface->config.dhcpv4.lease_time) {
|
|
return NET_DROP;
|
|
}
|
|
|
|
break;
|
|
case DHCPV4_OPTIONS_RENEWAL:
|
|
if (length != 4) {
|
|
NET_DBG("options_renewal, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read_be32(frag, pos, &pos,
|
|
&iface->config.dhcpv4.renewal_time);
|
|
NET_DBG("options_renewal: %u",
|
|
iface->config.dhcpv4.renewal_time);
|
|
|
|
if (!iface->config.dhcpv4.renewal_time) {
|
|
return NET_DROP;
|
|
}
|
|
|
|
break;
|
|
case DHCPV4_OPTIONS_REBINDING:
|
|
if (length != 4) {
|
|
NET_DBG("options_rebinding, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read_be32(frag, pos, &pos,
|
|
&iface->config.dhcpv4.rebinding_time);
|
|
NET_DBG("options_rebinding: %u",
|
|
iface->config.dhcpv4.rebinding_time);
|
|
|
|
if (!iface->config.dhcpv4.rebinding_time) {
|
|
return NET_DROP;
|
|
}
|
|
|
|
break;
|
|
case DHCPV4_OPTIONS_SERVER_ID:
|
|
if (length != 4) {
|
|
NET_DBG("options_server_id, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read(frag, pos, &pos, length,
|
|
iface->config.dhcpv4.server_id.s4_addr);
|
|
NET_DBG("options_server_id: %s",
|
|
net_sprint_ipv4_addr(
|
|
&iface->config.dhcpv4.server_id));
|
|
break;
|
|
case DHCPV4_OPTIONS_MSG_TYPE: {
|
|
u8_t v;
|
|
|
|
if (length != 1) {
|
|
NET_DBG("options_msg_type, bad length");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = net_frag_read_u8(frag, pos, &pos, &v);
|
|
*msg_type = v;
|
|
break;
|
|
}
|
|
default:
|
|
NET_DBG("option unknown: %d", type);
|
|
frag = net_frag_skip(frag, pos, &pos, length);
|
|
break;
|
|
}
|
|
|
|
if (!frag && pos) {
|
|
return NET_DROP;
|
|
}
|
|
}
|
|
|
|
/* Invalid case: Options without DHCPV4_OPTIONS_END. */
|
|
return NET_DROP;
|
|
}
|
|
|
|
static inline void dhcpv4_handle_msg_offer(struct net_if *iface)
|
|
{
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
case NET_DHCPV4_INIT:
|
|
case NET_DHCPV4_REQUESTING:
|
|
case NET_DHCPV4_RENEWING:
|
|
case NET_DHCPV4_REBINDING:
|
|
case NET_DHCPV4_BOUND:
|
|
break;
|
|
case NET_DHCPV4_SELECTING:
|
|
dhcpv4_enter_requesting(iface);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void dhcpv4_handle_msg_ack(struct net_if *iface)
|
|
{
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
case NET_DHCPV4_INIT:
|
|
case NET_DHCPV4_SELECTING:
|
|
case NET_DHCPV4_BOUND:
|
|
break;
|
|
case NET_DHCPV4_REQUESTING:
|
|
NET_INFO("Received: %s",
|
|
net_sprint_ipv4_addr(
|
|
&iface->config.dhcpv4.requested_ip));
|
|
|
|
if (!net_if_ipv4_addr_add(iface,
|
|
&iface->config.dhcpv4.requested_ip,
|
|
NET_ADDR_DHCP,
|
|
iface->config.dhcpv4.lease_time)) {
|
|
NET_DBG("Failed to add IPv4 addr to iface %p", iface);
|
|
return;
|
|
}
|
|
|
|
dhcpv4_enter_bound(iface);
|
|
break;
|
|
|
|
case NET_DHCPV4_RENEWING:
|
|
case NET_DHCPV4_REBINDING:
|
|
/* TODO: If the renewal is success, update only
|
|
* vlifetime on iface.
|
|
*/
|
|
dhcpv4_enter_bound(iface);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void dhcpv4_handle_msg_nak(struct net_if *iface)
|
|
{
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
case NET_DHCPV4_INIT:
|
|
case NET_DHCPV4_SELECTING:
|
|
case NET_DHCPV4_RENEWING:
|
|
case NET_DHCPV4_BOUND:
|
|
break;
|
|
case NET_DHCPV4_REQUESTING:
|
|
case NET_DHCPV4_REBINDING:
|
|
/* Restart the configuration process. */
|
|
dhcpv4_enter_selecting(iface);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void dhcpv4_handle_reply(struct net_if *iface,
|
|
enum dhcpv4_msg_type msg_type)
|
|
{
|
|
NET_DBG("state=%s msg=%s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state),
|
|
dhcpv4_msg_type_name(msg_type));
|
|
|
|
switch (msg_type) {
|
|
case DHCPV4_MSG_TYPE_OFFER:
|
|
dhcpv4_handle_msg_offer(iface);
|
|
break;
|
|
case DHCPV4_MSG_TYPE_ACK:
|
|
dhcpv4_handle_msg_ack(iface);
|
|
break;
|
|
case DHCPV4_MSG_TYPE_NAK:
|
|
dhcpv4_handle_msg_nak(iface);
|
|
break;
|
|
default:
|
|
NET_DBG("ignore message");
|
|
break;
|
|
}
|
|
}
|
|
|
|
static enum net_verdict net_dhcpv4_input(struct net_conn *conn,
|
|
struct net_pkt *pkt,
|
|
void *user_data)
|
|
{
|
|
enum dhcpv4_msg_type msg_type = 0;
|
|
struct dhcp_msg *msg;
|
|
struct net_buf *frag;
|
|
struct net_if *iface;
|
|
u8_t min;
|
|
u16_t pos;
|
|
|
|
if (!conn) {
|
|
NET_DBG("Invalid connection");
|
|
return NET_DROP;
|
|
}
|
|
|
|
if (!pkt || !pkt->frags) {
|
|
NET_DBG("Invalid packet, no fragments");
|
|
return NET_DROP;
|
|
}
|
|
|
|
iface = net_pkt_iface(pkt);
|
|
if (!iface) {
|
|
NET_DBG("no iface");
|
|
return NET_DROP;
|
|
}
|
|
|
|
frag = pkt->frags;
|
|
min = NET_IPV4UDPH_LEN + sizeof(struct dhcp_msg);
|
|
|
|
/* If the message is not DHCP then continue passing to
|
|
* related handlers.
|
|
*/
|
|
if (net_pkt_get_len(pkt) < min) {
|
|
NET_DBG("Input msg is not related to DHCPv4");
|
|
return NET_CONTINUE;
|
|
|
|
}
|
|
|
|
msg = (struct dhcp_msg *)(frag->data + NET_IPV4UDPH_LEN);
|
|
|
|
NET_DBG("Received dhcp msg [op=0x%x htype=0x%x hlen=%u xid=0x%x "
|
|
"secs=%u flags=0x%x chaddr=%s",
|
|
msg->op, msg->htype, msg->hlen, ntohl(msg->xid),
|
|
msg->secs, msg->flags, net_sprint_ll_addr(msg->chaddr, 6));
|
|
NET_DBG(" ciaddr=%d.%d.%d.%d yiaddr=%d.%d.%d.%d",
|
|
msg->ciaddr[0], msg->ciaddr[1], msg->ciaddr[2], msg->ciaddr[3],
|
|
msg->yiaddr[0], msg->yiaddr[1], msg->yiaddr[2], msg->yiaddr[3]);
|
|
NET_DBG(" siaddr=%d.%d.%d.%d giaddr=%d.%d.%d.%d]",
|
|
msg->siaddr[0], msg->siaddr[1], msg->siaddr[2], msg->siaddr[3],
|
|
msg->giaddr[0], msg->giaddr[1], msg->giaddr[2], msg->giaddr[3]);
|
|
|
|
if (!(msg->op == DHCPV4_MSG_BOOT_REPLY &&
|
|
iface->config.dhcpv4.xid == ntohl(msg->xid) &&
|
|
!memcmp(msg->chaddr, net_if_get_link_addr(iface)->addr,
|
|
net_if_get_link_addr(iface)->len))) {
|
|
|
|
NET_DBG("Unexpected op (%d), xid (%x vs %x) or chaddr",
|
|
msg->op, iface->config.dhcpv4.xid, ntohl(msg->xid));
|
|
goto drop;
|
|
}
|
|
|
|
memcpy(iface->config.dhcpv4.requested_ip.s4_addr, msg->yiaddr,
|
|
sizeof(msg->yiaddr));
|
|
|
|
/* SNAME, FILE are not used at the moment, skip it */
|
|
frag = net_frag_skip(frag, min, &pos, SIZE_OF_SNAME + SIZE_OF_FILE);
|
|
if (!frag && pos) {
|
|
NET_DBG("short packet while skipping sname");
|
|
goto drop;
|
|
}
|
|
|
|
if (dhcpv4_parse_options(iface, frag, pos, &msg_type) == NET_DROP) {
|
|
NET_DBG("Invalid Options");
|
|
goto drop;
|
|
}
|
|
|
|
net_pkt_unref(pkt);
|
|
|
|
dhcpv4_handle_reply(iface, msg_type);
|
|
|
|
return NET_OK;
|
|
|
|
drop:
|
|
return NET_DROP;
|
|
}
|
|
|
|
static void dhcpv4_iface_event_handler(struct net_mgmt_event_callback *cb,
|
|
u32_t mgmt_event, struct net_if *iface)
|
|
{
|
|
if (mgmt_event == NET_EVENT_IF_DOWN) {
|
|
NET_DBG("Interface %p going down", iface);
|
|
|
|
if (iface->config.dhcpv4.state == NET_DHCPV4_BOUND) {
|
|
iface->config.dhcpv4.attempts = 0;
|
|
iface->config.dhcpv4.state = NET_DHCPV4_RENEWING;
|
|
NET_DBG("enter state=%s", net_dhcpv4_state_name(
|
|
iface->config.dhcpv4.state));
|
|
}
|
|
} else if (mgmt_event == NET_EVENT_IF_UP) {
|
|
NET_DBG("Interface %p coming up", iface);
|
|
|
|
/* We should not call dhcpv4_send_request() directly here as
|
|
* the CONFIG_NET_MGMT_EVENT_STACK_SIZE is not large
|
|
* enough. Instead we can force a request timeout
|
|
* which will then call dhcpv4_send_request() automatically.
|
|
*/
|
|
iface->config.dhcpv4.timer_start = k_uptime_get() - 1;
|
|
iface->config.dhcpv4.request_time = 0;
|
|
|
|
k_delayed_work_cancel(&timeout_work);
|
|
k_delayed_work_submit(&timeout_work, K_NO_WAIT);
|
|
}
|
|
}
|
|
|
|
const char *net_dhcpv4_state_name(enum net_dhcpv4_state state)
|
|
{
|
|
static const char * const name[] = {
|
|
"disabled",
|
|
"init",
|
|
"selecting",
|
|
"requesting",
|
|
"renewing",
|
|
"rebinding",
|
|
"bound",
|
|
};
|
|
|
|
__ASSERT_NO_MSG(state >= 0 && state < sizeof(name));
|
|
return name[state];
|
|
}
|
|
|
|
void net_dhcpv4_start(struct net_if *iface)
|
|
{
|
|
u32_t timeout;
|
|
u32_t entropy;
|
|
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
iface->config.dhcpv4.state = NET_DHCPV4_INIT;
|
|
NET_DBG("iface %p state=%s", iface,
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
|
|
iface->config.dhcpv4.attempts = 0;
|
|
iface->config.dhcpv4.lease_time = 0;
|
|
iface->config.dhcpv4.renewal_time = 0;
|
|
|
|
iface->config.dhcpv4.server_id.s_addr = 0;
|
|
iface->config.dhcpv4.requested_ip.s_addr = 0;
|
|
|
|
/* We need entropy for both an XID and a random delay
|
|
* before sending the initial discover message.
|
|
*/
|
|
entropy = sys_rand32_get();
|
|
|
|
/* A DHCP client MUST choose xid's in such a way as to
|
|
* minimize the change of using and xid identical to
|
|
* one used by another client. Choose a random xid st
|
|
* startup and increment it on each new request.
|
|
*/
|
|
iface->config.dhcpv4.xid = entropy;
|
|
|
|
|
|
/* RFC2131 4.1.1 requires we wait a random period
|
|
* between 1 and 10 seconds before sending the initial
|
|
* discover.
|
|
*/
|
|
timeout = entropy %
|
|
(DHCPV4_INITIAL_DELAY_MAX - DHCPV4_INITIAL_DELAY_MIN) +
|
|
DHCPV4_INITIAL_DELAY_MIN;
|
|
|
|
NET_DBG("wait timeout=%us", timeout);
|
|
|
|
sys_slist_append(&dhcpv4_ifaces,
|
|
&iface->config.dhcpv4.node);
|
|
|
|
iface->config.dhcpv4.timer_start = k_uptime_get();
|
|
iface->config.dhcpv4.request_time = timeout;
|
|
|
|
dhcpv4_update_timeout_work(timeout);
|
|
|
|
break;
|
|
case NET_DHCPV4_INIT:
|
|
case NET_DHCPV4_SELECTING:
|
|
case NET_DHCPV4_REQUESTING:
|
|
case NET_DHCPV4_RENEWING:
|
|
case NET_DHCPV4_REBINDING:
|
|
case NET_DHCPV4_BOUND:
|
|
break;
|
|
}
|
|
|
|
/* Catch network interface UP or DOWN events and renew the address
|
|
* if interface is coming back up again.
|
|
*/
|
|
net_mgmt_init_event_callback(&mgmt4_cb, dhcpv4_iface_event_handler,
|
|
NET_EVENT_IF_DOWN | NET_EVENT_IF_UP);
|
|
net_mgmt_add_event_callback(&mgmt4_cb);
|
|
}
|
|
|
|
void net_dhcpv4_stop(struct net_if *iface)
|
|
{
|
|
net_mgmt_del_event_callback(&mgmt4_cb);
|
|
|
|
switch (iface->config.dhcpv4.state) {
|
|
case NET_DHCPV4_DISABLED:
|
|
break;
|
|
|
|
case NET_DHCPV4_BOUND:
|
|
if (!net_if_ipv4_addr_rm(iface,
|
|
&iface->config.dhcpv4.requested_ip)) {
|
|
NET_DBG("Failed to remove addr from iface");
|
|
}
|
|
|
|
/* Fall through */
|
|
case NET_DHCPV4_INIT:
|
|
case NET_DHCPV4_SELECTING:
|
|
case NET_DHCPV4_REQUESTING:
|
|
case NET_DHCPV4_RENEWING:
|
|
case NET_DHCPV4_REBINDING:
|
|
iface->config.dhcpv4.state = NET_DHCPV4_DISABLED;
|
|
NET_DBG("state=%s",
|
|
net_dhcpv4_state_name(iface->config.dhcpv4.state));
|
|
|
|
sys_slist_find_and_remove(&dhcpv4_ifaces,
|
|
&iface->config.dhcpv4.node);
|
|
|
|
if (sys_slist_is_empty(&dhcpv4_ifaces)) {
|
|
k_delayed_work_cancel(&timeout_work);
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
int net_dhcpv4_init(void)
|
|
{
|
|
struct sockaddr local_addr;
|
|
int ret;
|
|
|
|
NET_DBG("");
|
|
|
|
net_ipaddr_copy(&net_sin(&local_addr)->sin_addr,
|
|
net_ipv4_unspecified_address());
|
|
local_addr.sa_family = AF_INET;
|
|
|
|
/* Register UDP input callback on
|
|
* DHCPV4_SERVER_PORT(67) and DHCPV4_CLIENT_PORT(68) for
|
|
* all dhcpv4 related incoming packets.
|
|
*/
|
|
ret = net_udp_register(NULL, &local_addr,
|
|
DHCPV4_SERVER_PORT,
|
|
DHCPV4_CLIENT_PORT,
|
|
net_dhcpv4_input, NULL, NULL);
|
|
if (ret < 0) {
|
|
NET_DBG("UDP callback registration failed");
|
|
return ret;
|
|
}
|
|
|
|
k_delayed_work_init(&timeout_work, dhcpv4_timeout);
|
|
|
|
return 0;
|
|
}
|