linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv4] mac80211: fix A-MSDU outer SA/DA
@ 2016-10-13  5:41 Michael Braun
  2016-10-13  6:56 ` Johannes Berg
  2016-10-13  7:19 ` Felix Fietkau
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Braun @ 2016-10-13  5:41 UTC (permalink / raw)
  To: johannes; +Cc: Michael Braun, linux-wireless, projekt-wlan, Felix Fietkau

According to IEEE 802.11-2012 section 8.3.2 table 8-19, the outer SA/DA
of A-MSDU frames need to be changed depending on FromDS/ToDS values.

Signed-off-by: Michael Braun <michael-dev@fami-braun.de>

--
v4:
 - h_80211_src/dst has been memmove'd and thus needs to be fixed
v3:
 - write to outer 802.11 header instead of inner amsdu subframe header
v2:
 - avoid the extra write to amsdu_hdr
 - avoid copy of asmdu_hdr into skb, use ptr instead
---
 net/mac80211/tx.c | 46 ++++++++++++++++++++++++++++++++++++----------
 1 file changed, 36 insertions(+), 10 deletions(-)

diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index 5023966..5f80b94 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -3046,11 +3046,12 @@ static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
 	struct ieee80211_local *local = sdata->local;
 	struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
 	struct ieee80211_hdr *hdr;
-	struct ethhdr amsdu_hdr;
+	struct ethhdr *amsdu_hdr;
 	int hdr_len = fast_tx->hdr_len - sizeof(rfc1042_header);
 	int subframe_len = skb->len - hdr_len;
 	void *data;
-	u8 *qc;
+	u8 *qc, *h_80211_src, *h_80211_dst;
+	const u8 *bssid;
 
 	if (info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE)
 		return false;
@@ -3058,19 +3059,44 @@ static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
 	if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
 		return true;
 
-	if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(amsdu_hdr),
+	if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(*amsdu_hdr),
 					 &subframe_len))
 		return false;
 
-	amsdu_hdr.h_proto = cpu_to_be16(subframe_len);
-	memcpy(amsdu_hdr.h_source, skb->data + fast_tx->sa_offs, ETH_ALEN);
-	memcpy(amsdu_hdr.h_dest, skb->data + fast_tx->da_offs, ETH_ALEN);
+	data = skb_push(skb, sizeof(*amsdu_hdr));
+	memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
+	hdr = data;
+	amsdu_hdr = data + hdr_len;
+	/* h_80211_src/dst is addr* field within hdr */
+	h_80211_src = data + fast_tx->sa_offs;
+	h_80211_dst = data + fast_tx->da_offs;
+
+	amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
+	memcpy(amsdu_hdr->h_source, h_80211_src, ETH_ALEN);
+	memcpy(amsdu_hdr->h_dest, h_80211_dst, ETH_ALEN);
+
+	/* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA
+	 * fields needs to be changed to BSSID for A-MSDU frames depending
+	 * on FromDS/ToDS values.
+	 */
+	switch (sdata->vif.type) {
+	case NL80211_IFTYPE_STATION:
+		bssid = sdata->u.mgd.bssid;
+		break;
+	case NL80211_IFTYPE_AP:
+	case NL80211_IFTYPE_AP_VLAN:
+		bssid = sdata->vif.addr;
+		break;
+	default:
+		bssid = NULL;
+	}
 
-	data = skb_push(skb, sizeof(amsdu_hdr));
-	memmove(data, data + sizeof(amsdu_hdr), hdr_len);
-	memcpy(data + hdr_len, &amsdu_hdr, sizeof(amsdu_hdr));
+	if (bssid && ieee80211_has_fromds(hdr->frame_control))
+		memcpy(h_80211_src, bssid, ETH_ALEN);
+
+	if (bssid && ieee80211_has_tods(hdr->frame_control))
+		memcpy(h_80211_dst, bssid, ETH_ALEN);
 
-	hdr = data;
 	qc = ieee80211_get_qos_ctl(hdr);
 	*qc |= IEEE80211_QOS_CTL_A_MSDU_PRESENT;
 
-- 
2.1.4

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

* Re: [PATCHv4] mac80211: fix A-MSDU outer SA/DA
  2016-10-13  5:41 [PATCHv4] mac80211: fix A-MSDU outer SA/DA Michael Braun
@ 2016-10-13  6:56 ` Johannes Berg
  2016-10-13  7:19 ` Felix Fietkau
  1 sibling, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2016-10-13  6:56 UTC (permalink / raw)
  To: Michael Braun; +Cc: linux-wireless, projekt-wlan, Felix Fietkau

Hi,

I think this looks good now. I'd prefer, however, doing the reorg that
gets rid of the memcpy() separately, that's now more or less orthogonal
to the changes you're making. I suspect it's due to you having just
edited the original, rather than starting from scratch, but I think it
makes sense to split it.

> +	memcpy(amsdu_hdr->h_source, h_80211_src, ETH_ALEN);
> +	memcpy(amsdu_hdr->h_dest, h_80211_dst, ETH_ALEN);

ether_addr_copy()? Alignment should be OK here.

johannes

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

* Re: [PATCHv4] mac80211: fix A-MSDU outer SA/DA
  2016-10-13  5:41 [PATCHv4] mac80211: fix A-MSDU outer SA/DA Michael Braun
  2016-10-13  6:56 ` Johannes Berg
@ 2016-10-13  7:19 ` Felix Fietkau
  2016-10-13  7:23   ` Johannes Berg
  1 sibling, 1 reply; 4+ messages in thread
From: Felix Fietkau @ 2016-10-13  7:19 UTC (permalink / raw)
  To: Michael Braun, johannes; +Cc: linux-wireless, projekt-wlan

On 2016-10-13 07:41, Michael Braun wrote:
> According to IEEE 802.11-2012 section 8.3.2 table 8-19, the outer SA/DA
> of A-MSDU frames need to be changed depending on FromDS/ToDS values.
> 
> Signed-off-by: Michael Braun <michael-dev@fami-braun.de>
> 
> --
> v4:
>  - h_80211_src/dst has been memmove'd and thus needs to be fixed
> v3:
>  - write to outer 802.11 header instead of inner amsdu subframe header
> v2:
>  - avoid the extra write to amsdu_hdr
>  - avoid copy of asmdu_hdr into skb, use ptr instead
> ---
>  net/mac80211/tx.c | 46 ++++++++++++++++++++++++++++++++++++----------
>  1 file changed, 36 insertions(+), 10 deletions(-)
> 
> diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
> index 5023966..5f80b94 100644
> --- a/net/mac80211/tx.c
> +++ b/net/mac80211/tx.c
> @@ -3058,19 +3059,44 @@ static bool ieee80211_amsdu_prepare_head(struct ieee80211_sub_if_data *sdata,
>  	if (info->control.flags & IEEE80211_TX_CTRL_AMSDU)
>  		return true;
>  
> -	if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(amsdu_hdr),
> +	if (!ieee80211_amsdu_realloc_pad(local, skb, sizeof(*amsdu_hdr),
>  					 &subframe_len))
>  		return false;
>  
> -	amsdu_hdr.h_proto = cpu_to_be16(subframe_len);
> -	memcpy(amsdu_hdr.h_source, skb->data + fast_tx->sa_offs, ETH_ALEN);
> -	memcpy(amsdu_hdr.h_dest, skb->data + fast_tx->da_offs, ETH_ALEN);
> +	data = skb_push(skb, sizeof(*amsdu_hdr));
> +	memmove(data, data + sizeof(*amsdu_hdr), hdr_len);
> +	hdr = data;
> +	amsdu_hdr = data + hdr_len;
> +	/* h_80211_src/dst is addr* field within hdr */
> +	h_80211_src = data + fast_tx->sa_offs;
> +	h_80211_dst = data + fast_tx->da_offs;
> +
> +	amsdu_hdr->h_proto = cpu_to_be16(subframe_len);
> +	memcpy(amsdu_hdr->h_source, h_80211_src, ETH_ALEN);
> +	memcpy(amsdu_hdr->h_dest, h_80211_dst, ETH_ALEN);
> +
> +	/* according to IEEE 802.11-2012 8.3.2 table 8-19, the outer SA/DA
> +	 * fields needs to be changed to BSSID for A-MSDU frames depending
> +	 * on FromDS/ToDS values.
> +	 */
> +	switch (sdata->vif.type) {
> +	case NL80211_IFTYPE_STATION:
> +		bssid = sdata->u.mgd.bssid;
> +		break;
> +	case NL80211_IFTYPE_AP:
> +	case NL80211_IFTYPE_AP_VLAN:
> +		bssid = sdata->vif.addr;
> +		break;
> +	default:
> +		bssid = NULL;
> +	}
>  
> -	data = skb_push(skb, sizeof(amsdu_hdr));
> -	memmove(data, data + sizeof(amsdu_hdr), hdr_len);
> -	memcpy(data + hdr_len, &amsdu_hdr, sizeof(amsdu_hdr));
> +	if (bssid && ieee80211_has_fromds(hdr->frame_control))
> +		memcpy(h_80211_src, bssid, ETH_ALEN);
> +
> +	if (bssid && ieee80211_has_tods(hdr->frame_control))
> +		memcpy(h_80211_dst, bssid, ETH_ALEN);
I think this is probably wrong for 4-addr, since there both FromDS and
ToDS are set. Maybe you should use !ieee80211_has_tods instead of
ieee80211_has_fromds and vice versa.

- Felix

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

* Re: [PATCHv4] mac80211: fix A-MSDU outer SA/DA
  2016-10-13  7:19 ` Felix Fietkau
@ 2016-10-13  7:23   ` Johannes Berg
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2016-10-13  7:23 UTC (permalink / raw)
  To: Felix Fietkau, Michael Braun; +Cc: linux-wireless, projekt-wlan


> > +     /* h_80211_src/dst is addr* field within hdr */
> > +     h_80211_src = data + fast_tx->sa_offs;
> > +     h_80211_dst = data + fast_tx->da_offs;

[...]

> > +	if (bssid && ieee80211_has_fromds(hdr->frame_control))
> > +		memcpy(h_80211_src, bssid, ETH_ALEN);
> > +
> > +	if (bssid && ieee80211_has_tods(hdr->frame_control))
> > +		memcpy(h_80211_dst, bssid, ETH_ALEN);

> I think this is probably wrong for 4-addr, since there both FromDS
> and ToDS are set. Maybe you should use !ieee80211_has_tods instead of
> ieee80211_has_fromds and vice versa.

It helps to look at the spec ;-)

For 4-addr frames, dest/src are addr 3/4 respectively, and in the spec
both *should* actually be set to the BSSID.

It's kinda pointless to be doing that and using a 4-addr frame here,
but I suppose it would be expected by the receiver in 4-addr mode, so
makes some sense.

johannes

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

end of thread, other threads:[~2016-10-13  7:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-13  5:41 [PATCHv4] mac80211: fix A-MSDU outer SA/DA Michael Braun
2016-10-13  6:56 ` Johannes Berg
2016-10-13  7:19 ` Felix Fietkau
2016-10-13  7:23   ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).