summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPatrick Wildt <patrick@cvs.openbsd.org>2019-05-10 18:30:16 +0000
committerPatrick Wildt <patrick@cvs.openbsd.org>2019-05-10 18:30:16 +0000
commit42e496696dfadd6a97a9195ccc347411152aa4e0 (patch)
tree686b22b161e474d8a89db5f391edcec308188fd6 /sys
parent707532fe6b0a7dd7a091fbc69f4defd2ce1d258e (diff)
On the transmit path the ethernet and ip headers might not be
in contiguous memory. Taking the pointer to the data and simply looking at the IP header by adding an offset can lead to an out- of-bounds access. Make the ieee80211 classify function copy the ethernet and ip header into stack variables to fix it. Fixes a panic for florian@ Discussed with claudio@ ok stsp@
Diffstat (limited to 'sys')
-rw-r--r--sys/net80211/ieee80211_output.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/sys/net80211/ieee80211_output.c b/sys/net80211/ieee80211_output.c
index 2f6e0e77d2e..bead1117127 100644
--- a/sys/net80211/ieee80211_output.c
+++ b/sys/net80211/ieee80211_output.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ieee80211_output.c,v 1.123 2018/11/30 09:26:06 claudio Exp $ */
+/* $OpenBSD: ieee80211_output.c,v 1.124 2019/05/10 18:30:15 patrick Exp $ */
/* $NetBSD: ieee80211_output.c,v 1.13 2004/05/31 11:02:55 dyoung Exp $ */
/*-
@@ -392,25 +392,26 @@ ieee80211_up_to_ac(struct ieee80211com *ic, int up)
int
ieee80211_classify(struct ieee80211com *ic, struct mbuf *m)
{
- struct ether_header *eh;
+ struct ether_header eh;
u_int8_t ds_field;
#if NVLAN > 0
if (m->m_flags & M_VLANTAG) /* use VLAN 802.1D user-priority */
return EVL_PRIOFTAG(m->m_pkthdr.ether_vtag);
#endif
- eh = mtod(m, struct ether_header *);
- if (eh->ether_type == htons(ETHERTYPE_IP)) {
- struct ip *ip = (struct ip *)&eh[1];
- if (ip->ip_v != 4)
+ m_copydata(m, 0, sizeof(eh), (caddr_t)&eh);
+ if (eh.ether_type == htons(ETHERTYPE_IP)) {
+ struct ip ip;
+ m_copydata(m, sizeof(eh), sizeof(ip), (caddr_t)&ip);
+ if (ip.ip_v != 4)
return 0;
- ds_field = ip->ip_tos;
+ ds_field = ip.ip_tos;
}
#ifdef INET6
- else if (eh->ether_type == htons(ETHERTYPE_IPV6)) {
- struct ip6_hdr *ip6 = (struct ip6_hdr *)&eh[1];
+ else if (eh.ether_type == htons(ETHERTYPE_IPV6)) {
+ struct ip6_hdr ip6;
u_int32_t flowlabel;
-
- flowlabel = ntohl(ip6->ip6_flow);
+ m_copydata(m, sizeof(eh), sizeof(ip6), (caddr_t)&ip6);
+ flowlabel = ntohl(ip6.ip6_flow);
if ((flowlabel >> 28) != 6)
return 0;
ds_field = (flowlabel >> 20) & 0xff;