blob: ed37fc8fe96a0110a1b15451725cdf9976029804 [file] [log] [blame]
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -08001/*
2 * DHCP snooping for Proxy ARP
3 * Copyright (c) 2014, Qualcomm Atheros, Inc.
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9#include "utils/includes.h"
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080010
11#include "utils/common.h"
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080012#include "common/dhcp.h"
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080013#include "l2_packet/l2_packet.h"
14#include "hostapd.h"
15#include "sta_info.h"
16#include "ap_drv_ops.h"
17#include "x_snoop.h"
18#include "dhcp_snoop.h"
19
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080020
Dmitry Shmidtaff761d2015-02-06 10:50:36 -080021static const char * ipaddr_str(u32 addr)
22{
23 static char buf[17];
24
25 os_snprintf(buf, sizeof(buf), "%u.%u.%u.%u",
26 (addr >> 24) & 0xff, (addr >> 16) & 0xff,
27 (addr >> 8) & 0xff, addr & 0xff);
28 return buf;
29}
30
31
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080032static void handle_dhcp(void *ctx, const u8 *src_addr, const u8 *buf,
33 size_t len)
34{
35 struct hostapd_data *hapd = ctx;
36 const struct bootp_pkt *b;
37 struct sta_info *sta;
38 int exten_len;
39 const u8 *end, *pos;
40 int res, msgtype = 0, prefixlen = 32;
41 u32 subnet_mask = 0;
42 u16 tot_len;
43
44 exten_len = len - ETH_HLEN - (sizeof(*b) - sizeof(b->exten));
45 if (exten_len < 4)
46 return;
47
48 b = (const struct bootp_pkt *) &buf[ETH_HLEN];
49 tot_len = ntohs(b->iph.tot_len);
50 if (tot_len > (unsigned int) (len - ETH_HLEN))
51 return;
52
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080053 if (WPA_GET_BE32(b->exten) != DHCP_MAGIC)
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080054 return;
55
56 /* Parse DHCP options */
57 end = (const u8 *) b + tot_len;
58 pos = &b->exten[4];
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080059 while (pos < end && *pos != DHCP_OPT_END) {
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080060 const u8 *opt = pos++;
61
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080062 if (*opt == DHCP_OPT_PAD)
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080063 continue;
64
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080065 if (pos >= end || 1 + *pos > end - pos)
66 break;
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080067 pos += *pos + 1;
68 if (pos >= end)
69 break;
70
71 switch (*opt) {
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080072 case DHCP_OPT_SUBNET_MASK:
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080073 if (opt[1] == 4)
74 subnet_mask = WPA_GET_BE32(&opt[2]);
75 if (subnet_mask == 0)
76 return;
77 while (!(subnet_mask & 0x1)) {
78 subnet_mask >>= 1;
79 prefixlen--;
80 }
81 break;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -080082 case DHCP_OPT_MSG_TYPE:
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -080083 if (opt[1])
84 msgtype = opt[2];
85 break;
86 default:
87 break;
88 }
89 }
90
Hai Shalom74f70d42019-02-11 14:42:39 -080091 if (hapd->conf->disable_dgaf && is_broadcast_ether_addr(buf)) {
92 for (sta = hapd->sta_list; sta; sta = sta->next) {
93 if (!(sta->flags & WLAN_STA_AUTHORIZED))
94 continue;
95 x_snoop_mcast_to_ucast_convert_send(hapd, sta,
96 (u8 *) buf, len);
97 }
98 }
99
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -0800100 if (msgtype == DHCPACK) {
101 if (b->your_ip == 0)
102 return;
103
104 /* DHCPACK for DHCPREQUEST */
105 sta = ap_get_sta(hapd, b->hw_addr);
106 if (!sta)
107 return;
108
109 wpa_printf(MSG_DEBUG, "dhcp_snoop: Found DHCPACK for " MACSTR
Dmitry Shmidtaff761d2015-02-06 10:50:36 -0800110 " @ IPv4 address %s/%d",
Dmitry Shmidt4ae50e62016-06-27 13:48:39 -0700111 MAC2STR(sta->addr),
112 ipaddr_str(be_to_host32(b->your_ip)),
Dmitry Shmidtaff761d2015-02-06 10:50:36 -0800113 prefixlen);
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -0800114
115 if (sta->ipaddr == b->your_ip)
116 return;
117
118 if (sta->ipaddr != 0) {
119 wpa_printf(MSG_DEBUG,
Dmitry Shmidtaff761d2015-02-06 10:50:36 -0800120 "dhcp_snoop: Removing IPv4 address %s from the ip neigh table",
121 ipaddr_str(be_to_host32(sta->ipaddr)));
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -0800122 hostapd_drv_br_delete_ip_neigh(hapd, 4,
123 (u8 *) &sta->ipaddr);
124 }
125
126 res = hostapd_drv_br_add_ip_neigh(hapd, 4, (u8 *) &b->your_ip,
127 prefixlen, sta->addr);
128 if (res) {
129 wpa_printf(MSG_DEBUG,
130 "dhcp_snoop: Adding ip neigh table failed: %d",
131 res);
132 return;
133 }
134 sta->ipaddr = b->your_ip;
135 }
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -0800136}
137
138
139int dhcp_snoop_init(struct hostapd_data *hapd)
140{
141 hapd->sock_dhcp = x_snoop_get_l2_packet(hapd, handle_dhcp,
142 L2_PACKET_FILTER_DHCP);
143 if (hapd->sock_dhcp == NULL) {
144 wpa_printf(MSG_DEBUG,
145 "dhcp_snoop: Failed to initialize L2 packet processing for DHCP packet: %s",
146 strerror(errno));
147 return -1;
148 }
149
150 return 0;
151}
152
153
154void dhcp_snoop_deinit(struct hostapd_data *hapd)
155{
156 l2_packet_deinit(hapd->sock_dhcp);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700157 hapd->sock_dhcp = NULL;
Dmitry Shmidtfb45fd52015-01-05 13:08:17 -0800158}