summaryrefslogtreecommitdiff
path: root/sys/net80211
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2007-07-13 19:32:54 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2007-07-13 19:32:54 +0000
commitd1608279c25e5a185077e76c9b6a0b8af112400b (patch)
treef88dbdca4901f2999842a5125fe12664b89d0400 /sys/net80211
parent8eedd09488df5668d39cb75ce6424c0c2a356ee9 (diff)
in ieee80211_recv_assoc_resp(), do not start updating the node
structure until the frame has been fully validated.
Diffstat (limited to 'sys/net80211')
-rw-r--r--sys/net80211/ieee80211_input.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/sys/net80211/ieee80211_input.c b/sys/net80211/ieee80211_input.c
index e867590efc2..b6160325a32 100644
--- a/sys/net80211/ieee80211_input.c
+++ b/sys/net80211/ieee80211_input.c
@@ -1,5 +1,5 @@
/* $NetBSD: ieee80211_input.c,v 1.24 2004/05/31 11:12:24 dyoung Exp $ */
-/* $OpenBSD: ieee80211_input.c,v 1.41 2007/07/13 19:26:09 damien Exp $ */
+/* $OpenBSD: ieee80211_input.c,v 1.42 2007/07/13 19:32:53 damien Exp $ */
/*-
* Copyright (c) 2001 Atsushi Onoe
* Copyright (c) 2002, 2003 Sam Leffler, Errno Consulting
@@ -1602,7 +1602,7 @@ ieee80211_recv_assoc_resp(struct ieee80211com *ic, struct mbuf *m0,
const struct ieee80211_frame *wh;
const u_int8_t *frm, *efrm;
const u_int8_t *rates, *xrates, *edca, *wmm;
- u_int16_t status;
+ u_int16_t capinfo, status, associd;
u_int8_t rate;
if (ic->ic_opmode != IEEE80211_M_STA ||
@@ -1617,11 +1617,8 @@ ieee80211_recv_assoc_resp(struct ieee80211com *ic, struct mbuf *m0,
IEEE80211_VERIFY_LENGTH(efrm - frm, 6);
ni = ic->ic_bss;
- ni->ni_capinfo = LE_READ_2(frm);
- frm += 2;
-
- status = LE_READ_2(frm);
- frm += 2;
+ capinfo = LE_READ_2(frm); frm += 2;
+ status = LE_READ_2(frm); frm += 2;
if (status != 0) {
if (ifp->if_flags & IFF_DEBUG)
printf("%s: %sassociation failed (reason %d)"
@@ -1633,8 +1630,7 @@ ieee80211_recv_assoc_resp(struct ieee80211com *ic, struct mbuf *m0,
ic->ic_stats.is_rx_auth_fail++;
return;
}
- ni->ni_associd = LE_READ_2(frm);
- frm += 2;
+ associd = LE_READ_2(frm); frm += 2;
rates = xrates = edca = wmm = NULL;
while (frm + 2 <= efrm) {
@@ -1676,6 +1672,8 @@ ieee80211_recv_assoc_resp(struct ieee80211com *ic, struct mbuf *m0,
ic->ic_stats.is_rx_assoc_norate++;
return;
}
+ ni->ni_capinfo = capinfo;
+ ni->ni_associd = associd;
if (edca != NULL || wmm != NULL) {
/* force update of EDCA parameters */
ic->ic_edca_updtcount = -1;