All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] mac80211_hwsim: check ATTR_FREQ for wmediumd (netlink) packets
@ 2015-12-01 22:13 arwelle
  2015-12-02  9:57 ` Johannes Berg
  0 siblings, 1 reply; 5+ messages in thread
From: arwelle @ 2015-12-01 22:13 UTC (permalink / raw)
  To: johannes; +Cc: linux-wireless

From: Adam Welle <arwelle@cert.org>

If a packet is received from netlink with the frequency value set it is
checked against the current radio's frequency and discarded if different.
The frequency is also checked against data2->tmp_chan if non-zero to support
the off-channel/scan case.

Signed-off-by: Adam Welle <arwelle@cert.org>
---
 drivers/net/wireless/mac80211_hwsim.c | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c
index 194264c..94c30cb 100644
--- a/drivers/net/wireless/mac80211_hwsim.c
+++ b/drivers/net/wireless/mac80211_hwsim.c
@@ -2876,10 +2876,19 @@ static int hwsim_cloned_frame_received_nl(struct sk_buff *skb_2,
 
 	/* A frame is received from user space */
 	memset(&rx_status, 0, sizeof(rx_status));
-	/* TODO: Check ATTR_FREQ if it exists, and maybe throw away off-channel
-	 * packets?
-	 */
-	rx_status.freq = data2->channel->center_freq;
+	/* Check ATTR_FREQ if it exists, and throw away off-channel packets */
+	if (info->attrs[HWSIM_ATTR_FREQ]) {
+		rx_status.freq = nla_get_u32(info->attrs[HWSIM_ATTR_FREQ]);
+		if (data2->tmp_chan) {
+			if (rx_status.freq != data2->tmp_chan->center_freq)
+				goto out;
+		}
+		if (rx_status.freq != data2->channel->center_freq)
+			goto out;
+	} else {
+			rx_status.freq = data2->channel->center_freq;
+	}
+
 	rx_status.band = data2->channel->band;
 	rx_status.rate_idx = nla_get_u32(info->attrs[HWSIM_ATTR_RX_RATE]);
 	rx_status.signal = nla_get_u32(info->attrs[HWSIM_ATTR_SIGNAL]);
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-12-03 14:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-01 22:13 [PATCH v2] mac80211_hwsim: check ATTR_FREQ for wmediumd (netlink) packets arwelle
2015-12-02  9:57 ` Johannes Berg
2015-12-02 19:30   ` Adam R. Welle
2015-12-03  9:10     ` Johannes Berg
2015-12-03 14:18       ` Adam R. Welle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.