From: Wen Gong <wgong@codeaurora.org>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: Johannes Berg <johannes.berg@intel.com>,
kirtika@google.com, linux-wireless-owner@vger.kernel.org,
linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
ath11k@lists.infradead.org
Subject: Re: [PATCH v2] mac80211: reject/clear user rate mask if not usable
Date: Thu, 12 Nov 2020 18:55:08 +0800 [thread overview]
Message-ID: <07179008e9369bc81e152009ca85191d@codeaurora.org> (raw)
In-Reply-To: <20170308132022.4216-1-johannes@sipsolutions.net> (sfid-20170308_142122_587641_AAD67C42)
On 2017-03-08 21:20, Johannes Berg wrote:
> From: Johannes Berg <johannes.berg@intel.com>
>
> If the user rate mask results in no (basic) rates being usable,
> clear it. Also, if we're already operating when it's set, reject
> it instead.
>
> Technically, selecting basic rates as the criterion is a bit too
> restrictive, but calculating the usable rates over all stations
> (e.g. in AP mode) is harder, and all stations must support the
> basic rates. Similarly, in client mode, the basic rates will be
> used anyway for control frames.
>
> This fixes the "no supported rates (...) in rate_mask ..." warning
> that occurs on TX when you've selected a rate mask that's not
> compatible with the connection (e.g. an AP that enables only the
> rates 36, 48, 54 and you've selected only 6, 9, 12.)
>
> Reported-by: Kirtika Ruchandani <kirtika@google.com>
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> ---
> net/mac80211/cfg.c | 18 +++++++++++++++++-
> net/mac80211/mlme.c | 2 ++
> net/mac80211/rate.c | 27 +++++++++++++++++++++++++++
> net/mac80211/rate.h | 2 ++
> 4 files changed, 48 insertions(+), 1 deletion(-)
>
> diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
> index 9c7490cb2243..8bc3d3669348 100644
> --- a/net/mac80211/cfg.c
> +++ b/net/mac80211/cfg.c
> @@ -3,7 +3,7 @@
> *
> * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
> * Copyright 2013-2015 Intel Mobile Communications GmbH
> - * Copyright (C) 2015-2016 Intel Deutschland GmbH
> + * Copyright (C) 2015-2017 Intel Deutschland GmbH
> *
> * This file is GPLv2 as found in COPYING.
> */
> @@ -2042,6 +2042,7 @@ static int ieee80211_change_bss(struct wiphy
> *wiphy,
> params->basic_rates_len,
> &sdata->vif.bss_conf.basic_rates);
> changed |= BSS_CHANGED_BASIC_RATES;
> + ieee80211_check_rate_mask(sdata);
> }
>
> if (params->ap_isolate >= 0) {
> @@ -2685,6 +2686,21 @@ static int ieee80211_set_bitrate_mask(struct
> wiphy *wiphy,
> return ret;
> }
>
> + /*
> + * If active validate the setting and reject it if it doesn't leave
> + * at least one basic rate usable, since we really have to be able
> + * to send something, and if we're an AP we have to be able to do
> + * so at a basic rate so that all clients can receive it.
> + */
> + if (rcu_access_pointer(sdata->vif.chanctx_conf) &&
> + sdata->vif.bss_conf.chandef.chan) {
> + u32 basic_rates = sdata->vif.bss_conf.basic_rates;
> + enum nl80211_band band = sdata->vif.bss_conf.chandef.chan->band;
> +
> + if (!(mask->control[band].legacy & basic_rates))
> + return -EINVAL;
If user want to use “iw wlan0 set bitrates legacy-5 54” to set it to
fixed in 54M and 54M is
not basic rate in AP's becaon as example of below, then the iw command
will fail.
Tag: Supported Rates 6(B), 9, 12(B), 18, 24(B), 36, 48, 54, [Mbit/sec]
Tag Number: Supported Rates (1)
Tag length: 8
Supported Rates: 6(B) (0x8c)
Supported Rates: 9 (0x12)
Supported Rates: 12(B) (0x98)
Supported Rates: 18 (0x24)
Supported Rates: 24(B) (0xb0)
Supported Rates: 36 (0x48)
Supported Rates: 48 (0x60)
Supported Rates: 54 (0x6c)
> + }
> +
> for (i = 0; i < NUM_NL80211_BANDS; i++) {
> struct ieee80211_supported_band *sband = wiphy->bands[i];
> int j;
...
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Wen Gong <wgong@codeaurora.org>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: Johannes Berg <johannes.berg@intel.com>,
kirtika@google.com, linux-wireless-owner@vger.kernel.org,
linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
ath11k@lists.infradead.org
Subject: Re: [PATCH v2] mac80211: reject/clear user rate mask if not usable
Date: Thu, 12 Nov 2020 18:55:08 +0800 [thread overview]
Message-ID: <07179008e9369bc81e152009ca85191d@codeaurora.org> (raw)
In-Reply-To: <20170308132022.4216-1-johannes@sipsolutions.net> (sfid-20170308_142122_587641_AAD67C42)
On 2017-03-08 21:20, Johannes Berg wrote:
> From: Johannes Berg <johannes.berg@intel.com>
>
> If the user rate mask results in no (basic) rates being usable,
> clear it. Also, if we're already operating when it's set, reject
> it instead.
>
> Technically, selecting basic rates as the criterion is a bit too
> restrictive, but calculating the usable rates over all stations
> (e.g. in AP mode) is harder, and all stations must support the
> basic rates. Similarly, in client mode, the basic rates will be
> used anyway for control frames.
>
> This fixes the "no supported rates (...) in rate_mask ..." warning
> that occurs on TX when you've selected a rate mask that's not
> compatible with the connection (e.g. an AP that enables only the
> rates 36, 48, 54 and you've selected only 6, 9, 12.)
>
> Reported-by: Kirtika Ruchandani <kirtika@google.com>
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> ---
> net/mac80211/cfg.c | 18 +++++++++++++++++-
> net/mac80211/mlme.c | 2 ++
> net/mac80211/rate.c | 27 +++++++++++++++++++++++++++
> net/mac80211/rate.h | 2 ++
> 4 files changed, 48 insertions(+), 1 deletion(-)
>
> diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
> index 9c7490cb2243..8bc3d3669348 100644
> --- a/net/mac80211/cfg.c
> +++ b/net/mac80211/cfg.c
> @@ -3,7 +3,7 @@
> *
> * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
> * Copyright 2013-2015 Intel Mobile Communications GmbH
> - * Copyright (C) 2015-2016 Intel Deutschland GmbH
> + * Copyright (C) 2015-2017 Intel Deutschland GmbH
> *
> * This file is GPLv2 as found in COPYING.
> */
> @@ -2042,6 +2042,7 @@ static int ieee80211_change_bss(struct wiphy
> *wiphy,
> params->basic_rates_len,
> &sdata->vif.bss_conf.basic_rates);
> changed |= BSS_CHANGED_BASIC_RATES;
> + ieee80211_check_rate_mask(sdata);
> }
>
> if (params->ap_isolate >= 0) {
> @@ -2685,6 +2686,21 @@ static int ieee80211_set_bitrate_mask(struct
> wiphy *wiphy,
> return ret;
> }
>
> + /*
> + * If active validate the setting and reject it if it doesn't leave
> + * at least one basic rate usable, since we really have to be able
> + * to send something, and if we're an AP we have to be able to do
> + * so at a basic rate so that all clients can receive it.
> + */
> + if (rcu_access_pointer(sdata->vif.chanctx_conf) &&
> + sdata->vif.bss_conf.chandef.chan) {
> + u32 basic_rates = sdata->vif.bss_conf.basic_rates;
> + enum nl80211_band band = sdata->vif.bss_conf.chandef.chan->band;
> +
> + if (!(mask->control[band].legacy & basic_rates))
> + return -EINVAL;
If user want to use “iw wlan0 set bitrates legacy-5 54” to set it to
fixed in 54M and 54M is
not basic rate in AP's becaon as example of below, then the iw command
will fail.
Tag: Supported Rates 6(B), 9, 12(B), 18, 24(B), 36, 48, 54, [Mbit/sec]
Tag Number: Supported Rates (1)
Tag length: 8
Supported Rates: 6(B) (0x8c)
Supported Rates: 9 (0x12)
Supported Rates: 12(B) (0x98)
Supported Rates: 18 (0x24)
Supported Rates: 24(B) (0xb0)
Supported Rates: 36 (0x48)
Supported Rates: 48 (0x60)
Supported Rates: 54 (0x6c)
> + }
> +
> for (i = 0; i < NUM_NL80211_BANDS; i++) {
> struct ieee80211_supported_band *sband = wiphy->bands[i];
> int j;
...
--
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k
WARNING: multiple messages have this Message-ID (diff)
From: Wen Gong <wgong@codeaurora.org>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: linux-wireless@vger.kernel.org, kirtika@google.com,
Johannes Berg <johannes.berg@intel.com>,
linux-wireless-owner@vger.kernel.org, ath11k@lists.infradead.org,
ath10k@lists.infradead.org
Subject: Re: [PATCH v2] mac80211: reject/clear user rate mask if not usable
Date: Thu, 12 Nov 2020 18:55:08 +0800 [thread overview]
Message-ID: <07179008e9369bc81e152009ca85191d@codeaurora.org> (raw)
In-Reply-To: <20170308132022.4216-1-johannes@sipsolutions.net> (sfid-20170308_142122_587641_AAD67C42)
On 2017-03-08 21:20, Johannes Berg wrote:
> From: Johannes Berg <johannes.berg@intel.com>
>
> If the user rate mask results in no (basic) rates being usable,
> clear it. Also, if we're already operating when it's set, reject
> it instead.
>
> Technically, selecting basic rates as the criterion is a bit too
> restrictive, but calculating the usable rates over all stations
> (e.g. in AP mode) is harder, and all stations must support the
> basic rates. Similarly, in client mode, the basic rates will be
> used anyway for control frames.
>
> This fixes the "no supported rates (...) in rate_mask ..." warning
> that occurs on TX when you've selected a rate mask that's not
> compatible with the connection (e.g. an AP that enables only the
> rates 36, 48, 54 and you've selected only 6, 9, 12.)
>
> Reported-by: Kirtika Ruchandani <kirtika@google.com>
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> ---
> net/mac80211/cfg.c | 18 +++++++++++++++++-
> net/mac80211/mlme.c | 2 ++
> net/mac80211/rate.c | 27 +++++++++++++++++++++++++++
> net/mac80211/rate.h | 2 ++
> 4 files changed, 48 insertions(+), 1 deletion(-)
>
> diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
> index 9c7490cb2243..8bc3d3669348 100644
> --- a/net/mac80211/cfg.c
> +++ b/net/mac80211/cfg.c
> @@ -3,7 +3,7 @@
> *
> * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
> * Copyright 2013-2015 Intel Mobile Communications GmbH
> - * Copyright (C) 2015-2016 Intel Deutschland GmbH
> + * Copyright (C) 2015-2017 Intel Deutschland GmbH
> *
> * This file is GPLv2 as found in COPYING.
> */
> @@ -2042,6 +2042,7 @@ static int ieee80211_change_bss(struct wiphy
> *wiphy,
> params->basic_rates_len,
> &sdata->vif.bss_conf.basic_rates);
> changed |= BSS_CHANGED_BASIC_RATES;
> + ieee80211_check_rate_mask(sdata);
> }
>
> if (params->ap_isolate >= 0) {
> @@ -2685,6 +2686,21 @@ static int ieee80211_set_bitrate_mask(struct
> wiphy *wiphy,
> return ret;
> }
>
> + /*
> + * If active validate the setting and reject it if it doesn't leave
> + * at least one basic rate usable, since we really have to be able
> + * to send something, and if we're an AP we have to be able to do
> + * so at a basic rate so that all clients can receive it.
> + */
> + if (rcu_access_pointer(sdata->vif.chanctx_conf) &&
> + sdata->vif.bss_conf.chandef.chan) {
> + u32 basic_rates = sdata->vif.bss_conf.basic_rates;
> + enum nl80211_band band = sdata->vif.bss_conf.chandef.chan->band;
> +
> + if (!(mask->control[band].legacy & basic_rates))
> + return -EINVAL;
If user want to use “iw wlan0 set bitrates legacy-5 54” to set it to
fixed in 54M and 54M is
not basic rate in AP's becaon as example of below, then the iw command
will fail.
Tag: Supported Rates 6(B), 9, 12(B), 18, 24(B), 36, 48, 54, [Mbit/sec]
Tag Number: Supported Rates (1)
Tag length: 8
Supported Rates: 6(B) (0x8c)
Supported Rates: 9 (0x12)
Supported Rates: 12(B) (0x98)
Supported Rates: 18 (0x24)
Supported Rates: 24(B) (0xb0)
Supported Rates: 36 (0x48)
Supported Rates: 48 (0x60)
Supported Rates: 54 (0x6c)
> + }
> +
> for (i = 0; i < NUM_NL80211_BANDS; i++) {
> struct ieee80211_supported_band *sband = wiphy->bands[i];
> int j;
...
next prev parent reply other threads:[~2020-11-12 10:55 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-08 13:20 [PATCH v2] mac80211: reject/clear user rate mask if not usable Johannes Berg
2020-11-12 10:55 ` Wen Gong [this message]
2020-11-12 10:55 ` Wen Gong
2020-11-12 10:55 ` Wen Gong
2020-11-12 12:49 ` Arend Van Spriel
2020-11-12 12:49 ` Arend Van Spriel
2020-11-12 12:49 ` Arend Van Spriel
2020-11-13 2:08 ` Wen Gong
2020-11-13 2:08 ` Wen Gong
2020-11-13 2:08 ` Wen Gong
2020-11-13 7:38 ` Johannes Berg
2020-11-13 7:38 ` Johannes Berg
2020-11-13 7:38 ` Johannes Berg
2020-11-13 8:14 ` Wen Gong
2020-11-13 8:14 ` Wen Gong
2020-11-13 8:14 ` Wen Gong
2020-11-13 8:16 ` Johannes Berg
2020-11-13 8:16 ` Johannes Berg
2020-11-13 8:16 ` Johannes Berg
2020-11-13 8:35 ` Wen Gong
2020-11-13 8:35 ` Wen Gong
2020-11-13 8:35 ` Wen Gong
2020-11-13 8:35 ` Johannes Berg
2020-11-13 8:35 ` Johannes Berg
2020-11-13 8:35 ` Johannes Berg
2020-11-13 8:51 ` Wen Gong
2020-11-13 8:51 ` Wen Gong
2020-11-13 8:51 ` Wen Gong
2020-11-13 8:51 ` Johannes Berg
2020-11-13 8:51 ` Johannes Berg
2020-11-13 8:51 ` Johannes Berg
2020-11-13 9:09 ` Wen Gong
2020-11-13 9:09 ` Wen Gong
2020-11-13 9:09 ` Wen Gong
2020-11-13 9:10 ` Johannes Berg
2020-11-13 9:10 ` Johannes Berg
2020-11-13 9:10 ` Johannes Berg
2020-11-13 9:21 ` Wen Gong
2020-11-13 9:21 ` Wen Gong
2020-11-13 9:21 ` Wen Gong
2020-11-13 9:23 ` Johannes Berg
2020-11-13 9:23 ` Johannes Berg
2020-11-13 9:23 ` Johannes Berg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=07179008e9369bc81e152009ca85191d@codeaurora.org \
--to=wgong@codeaurora.org \
--cc=ath10k@lists.infradead.org \
--cc=ath11k@lists.infradead.org \
--cc=johannes.berg@intel.com \
--cc=johannes@sipsolutions.net \
--cc=kirtika@google.com \
--cc=linux-wireless-owner@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.