Subject: [RFC v1] mac80211: Add support for per station rx stats histogram

From: Mohammed Shafi Shajakhan <[email protected]>

Enable a provision in mac80211 'MAC80211_DEBUG_PER_STA_RX_STATS'
to keep track and dump per station stats.

Dump rx pkts / bytes per {MCS, BW, NSS, GI} per station
in histogram format. Rx stats provides a history
of the receive stats of the stations connected to us.
Information such as how consistently we received the packet
in higher MCS index / Bandwidth is very useful to assess the
performance of us(AP) and the connected clients

By default this feature is disabled though there is no impact
in performance (based on our test results)

This change is based on the design of Yanbo Li and HT packet
rate table fix by Anil

Signed-off-by: Mohammed Shafi Shajakhan <[email protected]>
Signed-off-by: Anilkumar Kolli <[email protected]>
---
net/mac80211/Kconfig | 12 +++
net/mac80211/debugfs_sta.c | 225 ++++++++++++++++++++++++++++++++++++++++++++
net/mac80211/debugfs_sta.h | 5 +
net/mac80211/rx.c | 2 +
net/mac80211/sta_info.h | 23 +++++
5 files changed, 267 insertions(+)

diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig
index 3891cbd..89fb17c 100644
--- a/net/mac80211/Kconfig
+++ b/net/mac80211/Kconfig
@@ -309,6 +309,18 @@ config MAC80211_DEBUG_COUNTERS

If unsure, say N.

+config MAC80211_DEBUG_PER_STA_RX_STATS
+ bool "Per Station Receive Stats Histogram"
+ depends on MAC80211_DEBUG_MENU
+ depends on MAC80211_DEBUGFS
+ ---help---
+ Selecting this option causes mac80211 to keep track of
+ per station received packets, classify them based
+ on Bandwidth, Rate index (legacy, HT, VHT) and dump
+ a histogram of the same
+
+ If unsure, say N.
+
config MAC80211_STA_HASH_MAX_SIZE
int "Station hash table maximum size" if MAC80211_DEBUG_MENU
default 0
diff --git a/net/mac80211/debugfs_sta.c b/net/mac80211/debugfs_sta.c
index a39512f..ed095f3 100644
--- a/net/mac80211/debugfs_sta.c
+++ b/net/mac80211/debugfs_sta.c
@@ -289,6 +289,130 @@ static ssize_t sta_ht_capa_read(struct file *file, char __user *userbuf,
}
STA_OPS(ht_capa);

+static ssize_t sta_rx_stats_read(struct file *file, char __user *userbuf,
+ size_t count, loff_t *ppos)
+{
+#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
+#define RX_STATS_HIST_FMT(n) \
+ do { \
+ if ((i + 1) % n == 0) \
+ len += scnprintf(buf + len, size - len, "\n\t\t"); \
+ } while (0)
+ int retval = 0, len = 0;
+ char *buf;
+ const int size = 3072;
+ struct sta_info *sta = file->private_data;
+ struct ieee80211_local *local = sta->local;
+ int i;
+ char *bw_str[IEEE80211_BW_NUM] = {"20", "40", "80", "160"};
+ char *nss_str[IEEE80211_NSS_NUM] = {"1x1", "2x2", "3x3", "4x4"};
+ char *gi_str[IEEE80211_GI_NUM] = {"LGI", "SGI"};
+ char *legacy_str[IEEE80211_LEGACY_RATE_NUM] = {"1", "2", "5.5",
+ "11", "6", "9",
+ "12", "18", "24",
+ "36", "48", "54"};
+ buf = kzalloc(size, GFP_KERNEL);
+ if (!buf)
+ return -ENOMEM;
+
+ len += scnprintf(buf + len, size - len, "VHT MCS packets: ");
+ for (i = 0; i < IEEE80211_VHT_MCS_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
+ i, sta->rx_vht_pkt[i]);
+ RX_STATS_HIST_FMT(5);
+ }
+
+ len += scnprintf(buf + len, size - len, "\nHT MCS packets: ");
+ for (i = 0; i < IEEE80211_HT_MCS_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
+ i, sta->rx_ht_pkt[i]);
+ RX_STATS_HIST_FMT(5);
+ }
+
+ len += scnprintf(buf + len, size - len, "\n\nBW packets: ");
+ for (i = 0; i < IEEE80211_BW_NUM; i++)
+ len += scnprintf(buf + len, size - len, "\t%sMhz: %llu",
+ bw_str[i], sta->rx_bw_pkt[i]);
+
+ len += scnprintf(buf + len, size - len, "\n\nNSS packets: ");
+ for (i = 0; i < IEEE80211_NSS_NUM; i++)
+ len += scnprintf(buf + len, size - len, "\t%s: %llu",
+ nss_str[i], sta->rx_nss_pkt[i]);
+
+ len += scnprintf(buf + len, size - len, "\n\nGI packets: ");
+ for (i = 0; i < IEEE80211_GI_NUM; i++)
+ len += scnprintf(buf + len, size - len, "\t%s: %llu",
+ gi_str[i], sta->rx_gi_pkt[i]);
+
+ len += scnprintf(buf + len, size - len, "\n\nLegacy rate packets: ");
+ for (i = 0; i < IEEE80211_LEGACY_RATE_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "\t%sMbps: %llu",
+ legacy_str[i], sta->rx_legacy_pkt[i]);
+ RX_STATS_HIST_FMT(4);
+ }
+
+ len += scnprintf(buf + len, size - len, "\nRate table packets: ");
+ for (i = 0; i < IEEE80211_RATE_TABLE_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "\t%llu",
+ sta->rx_rate_pkt[i]);
+ RX_STATS_HIST_FMT(8);
+ }
+
+ len += scnprintf(buf + len, size - len, "\nVHT MCS bytes: ");
+ for (i = 0; i < IEEE80211_VHT_MCS_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
+ i, sta->rx_vht_byte[i]);
+ RX_STATS_HIST_FMT(5);
+ }
+
+ len += scnprintf(buf + len, size - len, "\nHT MCS bytes: ");
+ for (i = 0; i < IEEE80211_HT_MCS_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
+ i, sta->rx_ht_byte[i]);
+ RX_STATS_HIST_FMT(5);
+ }
+
+ len += scnprintf(buf + len, size - len, "\n\nNSS bytes: ");
+ for (i = 0; i < IEEE80211_NSS_NUM; i++)
+ len += scnprintf(buf + len, size - len, "\t%s: %llu",
+ nss_str[i], sta->rx_nss_byte[i]);
+
+ len += scnprintf(buf + len, size - len, "\n\nBW bytes: ");
+ for (i = 0; i < IEEE80211_BW_NUM; i++)
+ len += scnprintf(buf + len, size - len, "\t%sMhz: %llu",
+ bw_str[i], sta->rx_bw_byte[i]);
+
+ len += scnprintf(buf + len, size - len, "\n\nGI bytes: ");
+ for (i = 0; i < IEEE80211_GI_NUM; i++)
+ len += scnprintf(buf + len, size - len, "\t%s: %llu",
+ gi_str[i], sta->rx_gi_byte[i]);
+
+ len += scnprintf(buf + len, size - len, "\n\nLegacy rate bytes: ");
+ for (i = 0; i < IEEE80211_LEGACY_RATE_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "\t%sMbps: %llu",
+ legacy_str[i], sta->rx_legacy_byte[i]);
+ RX_STATS_HIST_FMT(4);
+ }
+
+ len += scnprintf(buf + len, size - len, "\nRate table bytes: ");
+ for (i = 0; i < IEEE80211_RATE_TABLE_NUM; i++) {
+ len += scnprintf(buf + len, size - len, "\t%llu",
+ sta->rx_rate_byte[i]);
+ RX_STATS_HIST_FMT(8);
+ }
+
+ if (len > size)
+ len = size;
+ retval = simple_read_from_buffer(userbuf, count, ppos, buf, len);
+ kfree(buf);
+
+#undef RX_STATS_HIST_FMT
+ return retval;
+#endif
+ return -EINVAL;
+}
+STA_OPS(rx_stats);
+
static ssize_t sta_vht_capa_read(struct file *file, char __user *userbuf,
size_t count, loff_t *ppos)
{
@@ -332,6 +456,106 @@ STA_OPS(vht_capa);
debugfs_create_u64(#name, 0400, sta->debugfs.dir, \
(u64 *) &sta->field);

+#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
+static int legacy_rate_to_index(u16 rate)
+{
+ int legacy_rate[] = {10, 20, 55, 110, 60, 90, 120,
+ 180, 240, 360, 480, 540};
+ int i;
+
+ for (i = 0; i < IEEE80211_LEGACY_RATE_NUM - 1; i++)
+ if (rate == legacy_rate[i])
+ return i;
+ return -1;
+}
+#endif
+
+void ieee80211_rx_h_sta_stats(struct sta_info *sta, struct sk_buff *skb)
+{
+#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
+ struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
+ unsigned int pkt_len = skb->len;
+ unsigned int bw_idx, gi_idx, mcs_idx = 0, nss_idx = 0, i;
+
+ /* Not support 5Mhz and 10Mhz currently */
+ if (status->flag & (RX_FLAG_5MHZ | RX_FLAG_10MHZ))
+ goto out;
+
+ if (status->vht_flag & RX_VHT_FLAG_160MHZ)
+ bw_idx = 3;
+ else if (status->vht_flag & RX_VHT_FLAG_80MHZ)
+ bw_idx = 2;
+ else if (status->flag & RX_FLAG_40MHZ)
+ bw_idx = 1;
+ else
+ bw_idx = 0;
+
+ if (status->flag & RX_FLAG_HT) {
+ mcs_idx = status->rate_idx;
+ nss_idx = (mcs_idx >> 3) - 1;
+
+ if (status->rate_idx > IEEE80211_HT_MCS_NUM - 1 ||
+ nss_idx > IEEE80211_NSS_NUM - 1)
+ goto out;
+
+ sta->rx_ht_pkt[mcs_idx]++;
+ sta->rx_ht_byte[mcs_idx] += pkt_len;
+ sta->rx_nss_pkt[nss_idx]++;
+ sta->rx_nss_byte[nss_idx] += pkt_len;
+ /* To fit into rate table for HT packets */
+ mcs_idx = mcs_idx % 8;
+ } else if (status->flag & RX_FLAG_VHT) {
+ mcs_idx = status->rate_idx;
+ nss_idx = status->vht_nss - 1;
+
+ if (nss_idx > IEEE80211_NSS_NUM - 1 ||
+ mcs_idx > (IEEE80211_VHT_MCS_NUM - 1))
+ goto out;
+
+ sta->rx_vht_pkt[mcs_idx]++;
+ sta->rx_vht_byte[mcs_idx] += pkt_len;
+ sta->rx_nss_pkt[nss_idx]++;
+ sta->rx_nss_byte[nss_idx] += pkt_len;
+ }
+
+ gi_idx = (status->flag & RX_FLAG_SHORT_GI) ? 1 : 0;
+ sta->rx_gi_pkt[gi_idx]++;
+ sta->rx_gi_byte[gi_idx] += pkt_len;
+ sta->rx_bw_pkt[bw_idx]++;
+ sta->rx_bw_byte[bw_idx] += pkt_len;
+
+ if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT)) {
+ /* Update Rate table based on http://mcsindex.com/ */
+ i = mcs_idx * 8 + 8 * 10 * nss_idx;
+ i += bw_idx * 2 + gi_idx;
+ sta->rx_rate_pkt[i]++;
+ sta->rx_rate_byte[i] += pkt_len;
+ } else {
+ struct ieee80211_local *local = sta->local;
+ struct ieee80211_sub_if_data *sdata = sta->sdata;
+ enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
+ struct ieee80211_supported_band *sband;
+ int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
+ u16 brate, legacy_rate;
+
+ if (status->rate_idx > IEEE80211_LEGACY_RATE_NUM - 1)
+ goto out;
+
+ sband = local->hw.wiphy->bands[band];
+ brate = sband->bitrates[status->rate_idx].bitrate;
+ legacy_rate = DIV_ROUND_UP(brate, 1 << shift);
+ i = legacy_rate_to_index(legacy_rate);
+ if (i < 0)
+ goto out;
+
+ sta->rx_legacy_pkt[i]++;
+ sta->rx_legacy_byte[i] += pkt_len;
+ }
+out:
+ return;
+#endif
+}
+
void ieee80211_sta_debugfs_add(struct sta_info *sta)
{
struct ieee80211_local *local = sta->local;
@@ -365,6 +589,7 @@ void ieee80211_sta_debugfs_add(struct sta_info *sta)
DEBUGFS_ADD(agg_status);
DEBUGFS_ADD(ht_capa);
DEBUGFS_ADD(vht_capa);
+ DEBUGFS_ADD(rx_stats);

DEBUGFS_ADD_COUNTER(rx_duplicates, rx_stats.num_duplicates);
DEBUGFS_ADD_COUNTER(rx_fragments, rx_stats.fragments);
diff --git a/net/mac80211/debugfs_sta.h b/net/mac80211/debugfs_sta.h
index 8b60890..c7a3424 100644
--- a/net/mac80211/debugfs_sta.h
+++ b/net/mac80211/debugfs_sta.h
@@ -6,9 +6,14 @@
#ifdef CONFIG_MAC80211_DEBUGFS
void ieee80211_sta_debugfs_add(struct sta_info *sta);
void ieee80211_sta_debugfs_remove(struct sta_info *sta);
+void ieee80211_rx_h_sta_stats(struct sta_info *sta, struct sk_buff *skb);
#else
static inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {}
static inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {}
+static inline void ieee80211_rx_h_sta_stats(struct sta_info *sta,
+ struct sk_buff *skb)
+{
+}
#endif

#endif /* __MAC80211_DEBUGFS_STA_H */
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index bc08185..c5e8559 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -31,6 +31,7 @@
#include "tkip.h"
#include "wme.h"
#include "rate.h"
+#include "debugfs_sta.h"

static inline void ieee80211_rx_stats(struct net_device *dev, u32 len)
{
@@ -1421,6 +1422,7 @@ ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
sta->rx_stats.last_rate_flag = status->flag;
sta->rx_stats.last_rate_vht_flag = status->vht_flag;
sta->rx_stats.last_rate_vht_nss = status->vht_nss;
+ ieee80211_rx_h_sta_stats(sta, skb);
}
}

diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
index d605162..2c0d806 100644
--- a/net/mac80211/sta_info.h
+++ b/net/mac80211/sta_info.h
@@ -248,6 +248,13 @@ struct sta_ampdu_mlme {

#define IEEE80211_FAST_XMIT_MAX_IV 18

+#define IEEE80211_HT_MCS_NUM 32
+#define IEEE80211_VHT_MCS_NUM 10
+#define IEEE80211_BW_NUM 4
+#define IEEE80211_NSS_NUM 4
+#define IEEE80211_GI_NUM 2
+#define IEEE80211_RATE_TABLE_NUM 320
+#define IEEE80211_LEGACY_RATE_NUM 12
/**
* struct ieee80211_fast_tx - TX fastpath information
* @key: key to use for hw crypto
@@ -495,6 +502,22 @@ struct sta_info {

struct cfg80211_chan_def tdls_chandef;

+#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
+ u64 rx_legacy_pkt[IEEE80211_LEGACY_RATE_NUM];
+ u64 rx_ht_pkt[IEEE80211_HT_MCS_NUM];
+ u64 rx_vht_pkt[IEEE80211_VHT_MCS_NUM];
+ u64 rx_bw_pkt[IEEE80211_BW_NUM];
+ u64 rx_nss_pkt[IEEE80211_NSS_NUM];
+ u64 rx_gi_pkt[IEEE80211_GI_NUM];
+ u64 rx_rate_pkt[IEEE80211_RATE_TABLE_NUM];
+ u64 rx_legacy_byte[IEEE80211_LEGACY_RATE_NUM];
+ u64 rx_ht_byte[IEEE80211_HT_MCS_NUM];
+ u64 rx_vht_byte[IEEE80211_VHT_MCS_NUM];
+ u64 rx_bw_byte[IEEE80211_BW_NUM];
+ u64 rx_nss_byte[IEEE80211_NSS_NUM];
+ u64 rx_gi_byte[IEEE80211_GI_NUM];
+ u64 rx_rate_byte[IEEE80211_RATE_TABLE_NUM];
+#endif
/* keep last! */
struct ieee80211_sta sta;
};
--
1.7.9.5



2016-03-09 17:27:53

by Johannes Berg

[permalink] [raw]
Subject: Re: [RFC v1] mac80211: Add support for per station rx stats histogram

On Wed, 2016-03-09 at 22:00 +0530, Mohammed Shafi Shajakhan wrote:

> I had started studying(understand) your patch. Please
> let me know if you have already added support for the same
> in userspace as well, we like to use your changes and possibly
> add any changes that addresses rx_stats histogram as well

I had a very minimal file in iw, but that's all:

https://p.sipsolutions.net/744c0854bc02c95f.txt

johannes


2016-03-10 06:19:17

by Mohammed Shafi Shajakhan

[permalink] [raw]
Subject: Re: [RFC v1] mac80211: Add support for per station rx stats histogram

On Wed, Mar 09, 2016 at 06:27:48PM +0100, Johannes Berg wrote:
> On Wed, 2016-03-09 at 22:00 +0530, Mohammed Shafi Shajakhan wrote:
> >?
> > I had started studying(understand) your patch. Please
> > let me know if you have already added support for the same
> > in userspace as well, we like to use your changes and possibly
> > add any changes that addresses rx_stats histogram as well
>
> I had a very minimal file in iw, but that's all:
>
> https://p.sipsolutions.net/744c0854bc02c95f.txt
>
[shafi] thank you for sharing this Johannes

-shafi

2016-03-07 16:28:38

by Mohammed Shafi Shajakhan

[permalink] [raw]
Subject: Re: [RFC v1] mac80211: Add support for per station rx stats histogram

Hi Johannes and all,

kindly share your thoughts regarding the draft change
(I can share the test results as well and sample dump).

This is an implementation of Rx statistics (histogram
for each of the clients connected under mac80211 station
debugfs).

Attached is a sample dump, tested in Openwrt distribution

regards,
shafi


On Mon, Mar 07, 2016 at 09:53:29PM +0530, Mohammed Shafi Shajakhan wrote:
> From: Mohammed Shafi Shajakhan <[email protected]>
>
> Enable a provision in mac80211 'MAC80211_DEBUG_PER_STA_RX_STATS'
> to keep track and dump per station stats.
>
> Dump rx pkts / bytes per {MCS, BW, NSS, GI} per station
> in histogram format. Rx stats provides a history
> of the receive stats of the stations connected to us.
> Information such as how consistently we received the packet
> in higher MCS index / Bandwidth is very useful to assess the
> performance of us(AP) and the connected clients
>
> By default this feature is disabled though there is no impact
> in performance (based on our test results)
>
> This change is based on the design of Yanbo Li and HT packet
> rate table fix by Anil
>
> Signed-off-by: Mohammed Shafi Shajakhan <[email protected]>
> Signed-off-by: Anilkumar Kolli <[email protected]>
> ---
> net/mac80211/Kconfig | 12 +++
> net/mac80211/debugfs_sta.c | 225 ++++++++++++++++++++++++++++++++++++++++++++
> net/mac80211/debugfs_sta.h | 5 +
> net/mac80211/rx.c | 2 +
> net/mac80211/sta_info.h | 23 +++++
> 5 files changed, 267 insertions(+)
>
> diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig
> index 3891cbd..89fb17c 100644
> --- a/net/mac80211/Kconfig
> +++ b/net/mac80211/Kconfig
> @@ -309,6 +309,18 @@ config MAC80211_DEBUG_COUNTERS
>
> If unsure, say N.
>
> +config MAC80211_DEBUG_PER_STA_RX_STATS
> + bool "Per Station Receive Stats Histogram"
> + depends on MAC80211_DEBUG_MENU
> + depends on MAC80211_DEBUGFS
> + ---help---
> + Selecting this option causes mac80211 to keep track of
> + per station received packets, classify them based
> + on Bandwidth, Rate index (legacy, HT, VHT) and dump
> + a histogram of the same
> +
> + If unsure, say N.
> +
> config MAC80211_STA_HASH_MAX_SIZE
> int "Station hash table maximum size" if MAC80211_DEBUG_MENU
> default 0
> diff --git a/net/mac80211/debugfs_sta.c b/net/mac80211/debugfs_sta.c
> index a39512f..ed095f3 100644
> --- a/net/mac80211/debugfs_sta.c
> +++ b/net/mac80211/debugfs_sta.c
> @@ -289,6 +289,130 @@ static ssize_t sta_ht_capa_read(struct file *file, char __user *userbuf,
> }
> STA_OPS(ht_capa);
>
> +static ssize_t sta_rx_stats_read(struct file *file, char __user *userbuf,
> + size_t count, loff_t *ppos)
> +{
> +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> +#define RX_STATS_HIST_FMT(n) \
> + do { \
> + if ((i + 1) % n == 0) \
> + len += scnprintf(buf + len, size - len, "\n\t\t"); \
> + } while (0)
> + int retval = 0, len = 0;
> + char *buf;
> + const int size = 3072;
> + struct sta_info *sta = file->private_data;
> + struct ieee80211_local *local = sta->local;
> + int i;
> + char *bw_str[IEEE80211_BW_NUM] = {"20", "40", "80", "160"};
> + char *nss_str[IEEE80211_NSS_NUM] = {"1x1", "2x2", "3x3", "4x4"};
> + char *gi_str[IEEE80211_GI_NUM] = {"LGI", "SGI"};
> + char *legacy_str[IEEE80211_LEGACY_RATE_NUM] = {"1", "2", "5.5",
> + "11", "6", "9",
> + "12", "18", "24",
> + "36", "48", "54"};
> + buf = kzalloc(size, GFP_KERNEL);
> + if (!buf)
> + return -ENOMEM;
> +
> + len += scnprintf(buf + len, size - len, "VHT MCS packets: ");
> + for (i = 0; i < IEEE80211_VHT_MCS_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
> + i, sta->rx_vht_pkt[i]);
> + RX_STATS_HIST_FMT(5);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\nHT MCS packets: ");
> + for (i = 0; i < IEEE80211_HT_MCS_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
> + i, sta->rx_ht_pkt[i]);
> + RX_STATS_HIST_FMT(5);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\n\nBW packets: ");
> + for (i = 0; i < IEEE80211_BW_NUM; i++)
> + len += scnprintf(buf + len, size - len, "\t%sMhz: %llu",
> + bw_str[i], sta->rx_bw_pkt[i]);
> +
> + len += scnprintf(buf + len, size - len, "\n\nNSS packets: ");
> + for (i = 0; i < IEEE80211_NSS_NUM; i++)
> + len += scnprintf(buf + len, size - len, "\t%s: %llu",
> + nss_str[i], sta->rx_nss_pkt[i]);
> +
> + len += scnprintf(buf + len, size - len, "\n\nGI packets: ");
> + for (i = 0; i < IEEE80211_GI_NUM; i++)
> + len += scnprintf(buf + len, size - len, "\t%s: %llu",
> + gi_str[i], sta->rx_gi_pkt[i]);
> +
> + len += scnprintf(buf + len, size - len, "\n\nLegacy rate packets: ");
> + for (i = 0; i < IEEE80211_LEGACY_RATE_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "\t%sMbps: %llu",
> + legacy_str[i], sta->rx_legacy_pkt[i]);
> + RX_STATS_HIST_FMT(4);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\nRate table packets: ");
> + for (i = 0; i < IEEE80211_RATE_TABLE_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "\t%llu",
> + sta->rx_rate_pkt[i]);
> + RX_STATS_HIST_FMT(8);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\nVHT MCS bytes: ");
> + for (i = 0; i < IEEE80211_VHT_MCS_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
> + i, sta->rx_vht_byte[i]);
> + RX_STATS_HIST_FMT(5);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\nHT MCS bytes: ");
> + for (i = 0; i < IEEE80211_HT_MCS_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "MCS %d: %llu, ",
> + i, sta->rx_ht_byte[i]);
> + RX_STATS_HIST_FMT(5);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\n\nNSS bytes: ");
> + for (i = 0; i < IEEE80211_NSS_NUM; i++)
> + len += scnprintf(buf + len, size - len, "\t%s: %llu",
> + nss_str[i], sta->rx_nss_byte[i]);
> +
> + len += scnprintf(buf + len, size - len, "\n\nBW bytes: ");
> + for (i = 0; i < IEEE80211_BW_NUM; i++)
> + len += scnprintf(buf + len, size - len, "\t%sMhz: %llu",
> + bw_str[i], sta->rx_bw_byte[i]);
> +
> + len += scnprintf(buf + len, size - len, "\n\nGI bytes: ");
> + for (i = 0; i < IEEE80211_GI_NUM; i++)
> + len += scnprintf(buf + len, size - len, "\t%s: %llu",
> + gi_str[i], sta->rx_gi_byte[i]);
> +
> + len += scnprintf(buf + len, size - len, "\n\nLegacy rate bytes: ");
> + for (i = 0; i < IEEE80211_LEGACY_RATE_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "\t%sMbps: %llu",
> + legacy_str[i], sta->rx_legacy_byte[i]);
> + RX_STATS_HIST_FMT(4);
> + }
> +
> + len += scnprintf(buf + len, size - len, "\nRate table bytes: ");
> + for (i = 0; i < IEEE80211_RATE_TABLE_NUM; i++) {
> + len += scnprintf(buf + len, size - len, "\t%llu",
> + sta->rx_rate_byte[i]);
> + RX_STATS_HIST_FMT(8);
> + }
> +
> + if (len > size)
> + len = size;
> + retval = simple_read_from_buffer(userbuf, count, ppos, buf, len);
> + kfree(buf);
> +
> +#undef RX_STATS_HIST_FMT
> + return retval;
> +#endif
> + return -EINVAL;
> +}
> +STA_OPS(rx_stats);
> +
> static ssize_t sta_vht_capa_read(struct file *file, char __user *userbuf,
> size_t count, loff_t *ppos)
> {
> @@ -332,6 +456,106 @@ STA_OPS(vht_capa);
> debugfs_create_u64(#name, 0400, sta->debugfs.dir, \
> (u64 *) &sta->field);
>
> +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> +static int legacy_rate_to_index(u16 rate)
> +{
> + int legacy_rate[] = {10, 20, 55, 110, 60, 90, 120,
> + 180, 240, 360, 480, 540};
> + int i;
> +
> + for (i = 0; i < IEEE80211_LEGACY_RATE_NUM - 1; i++)
> + if (rate == legacy_rate[i])
> + return i;
> + return -1;
> +}
> +#endif
> +
> +void ieee80211_rx_h_sta_stats(struct sta_info *sta, struct sk_buff *skb)
> +{
> +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> + struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
> + unsigned int pkt_len = skb->len;
> + unsigned int bw_idx, gi_idx, mcs_idx = 0, nss_idx = 0, i;
> +
> + /* Not support 5Mhz and 10Mhz currently */
> + if (status->flag & (RX_FLAG_5MHZ | RX_FLAG_10MHZ))
> + goto out;
> +
> + if (status->vht_flag & RX_VHT_FLAG_160MHZ)
> + bw_idx = 3;
> + else if (status->vht_flag & RX_VHT_FLAG_80MHZ)
> + bw_idx = 2;
> + else if (status->flag & RX_FLAG_40MHZ)
> + bw_idx = 1;
> + else
> + bw_idx = 0;
> +
> + if (status->flag & RX_FLAG_HT) {
> + mcs_idx = status->rate_idx;
> + nss_idx = (mcs_idx >> 3) - 1;
> +
> + if (status->rate_idx > IEEE80211_HT_MCS_NUM - 1 ||
> + nss_idx > IEEE80211_NSS_NUM - 1)
> + goto out;
> +
> + sta->rx_ht_pkt[mcs_idx]++;
> + sta->rx_ht_byte[mcs_idx] += pkt_len;
> + sta->rx_nss_pkt[nss_idx]++;
> + sta->rx_nss_byte[nss_idx] += pkt_len;
> + /* To fit into rate table for HT packets */
> + mcs_idx = mcs_idx % 8;
> + } else if (status->flag & RX_FLAG_VHT) {
> + mcs_idx = status->rate_idx;
> + nss_idx = status->vht_nss - 1;
> +
> + if (nss_idx > IEEE80211_NSS_NUM - 1 ||
> + mcs_idx > (IEEE80211_VHT_MCS_NUM - 1))
> + goto out;
> +
> + sta->rx_vht_pkt[mcs_idx]++;
> + sta->rx_vht_byte[mcs_idx] += pkt_len;
> + sta->rx_nss_pkt[nss_idx]++;
> + sta->rx_nss_byte[nss_idx] += pkt_len;
> + }
> +
> + gi_idx = (status->flag & RX_FLAG_SHORT_GI) ? 1 : 0;
> + sta->rx_gi_pkt[gi_idx]++;
> + sta->rx_gi_byte[gi_idx] += pkt_len;
> + sta->rx_bw_pkt[bw_idx]++;
> + sta->rx_bw_byte[bw_idx] += pkt_len;
> +
> + if (status->flag & (RX_FLAG_HT | RX_FLAG_VHT)) {
> + /* Update Rate table based on http://mcsindex.com/ */
> + i = mcs_idx * 8 + 8 * 10 * nss_idx;
> + i += bw_idx * 2 + gi_idx;
> + sta->rx_rate_pkt[i]++;
> + sta->rx_rate_byte[i] += pkt_len;
> + } else {
> + struct ieee80211_local *local = sta->local;
> + struct ieee80211_sub_if_data *sdata = sta->sdata;
> + enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
> + struct ieee80211_supported_band *sband;
> + int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
> + u16 brate, legacy_rate;
> +
> + if (status->rate_idx > IEEE80211_LEGACY_RATE_NUM - 1)
> + goto out;
> +
> + sband = local->hw.wiphy->bands[band];
> + brate = sband->bitrates[status->rate_idx].bitrate;
> + legacy_rate = DIV_ROUND_UP(brate, 1 << shift);
> + i = legacy_rate_to_index(legacy_rate);
> + if (i < 0)
> + goto out;
> +
> + sta->rx_legacy_pkt[i]++;
> + sta->rx_legacy_byte[i] += pkt_len;
> + }
> +out:
> + return;
> +#endif
> +}
> +
> void ieee80211_sta_debugfs_add(struct sta_info *sta)
> {
> struct ieee80211_local *local = sta->local;
> @@ -365,6 +589,7 @@ void ieee80211_sta_debugfs_add(struct sta_info *sta)
> DEBUGFS_ADD(agg_status);
> DEBUGFS_ADD(ht_capa);
> DEBUGFS_ADD(vht_capa);
> + DEBUGFS_ADD(rx_stats);
>
> DEBUGFS_ADD_COUNTER(rx_duplicates, rx_stats.num_duplicates);
> DEBUGFS_ADD_COUNTER(rx_fragments, rx_stats.fragments);
> diff --git a/net/mac80211/debugfs_sta.h b/net/mac80211/debugfs_sta.h
> index 8b60890..c7a3424 100644
> --- a/net/mac80211/debugfs_sta.h
> +++ b/net/mac80211/debugfs_sta.h
> @@ -6,9 +6,14 @@
> #ifdef CONFIG_MAC80211_DEBUGFS
> void ieee80211_sta_debugfs_add(struct sta_info *sta);
> void ieee80211_sta_debugfs_remove(struct sta_info *sta);
> +void ieee80211_rx_h_sta_stats(struct sta_info *sta, struct sk_buff *skb);
> #else
> static inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {}
> static inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {}
> +static inline void ieee80211_rx_h_sta_stats(struct sta_info *sta,
> + struct sk_buff *skb)
> +{
> +}
> #endif
>
> #endif /* __MAC80211_DEBUGFS_STA_H */
> diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
> index bc08185..c5e8559 100644
> --- a/net/mac80211/rx.c
> +++ b/net/mac80211/rx.c
> @@ -31,6 +31,7 @@
> #include "tkip.h"
> #include "wme.h"
> #include "rate.h"
> +#include "debugfs_sta.h"
>
> static inline void ieee80211_rx_stats(struct net_device *dev, u32 len)
> {
> @@ -1421,6 +1422,7 @@ ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
> sta->rx_stats.last_rate_flag = status->flag;
> sta->rx_stats.last_rate_vht_flag = status->vht_flag;
> sta->rx_stats.last_rate_vht_nss = status->vht_nss;
> + ieee80211_rx_h_sta_stats(sta, skb);
> }
> }
>
> diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
> index d605162..2c0d806 100644
> --- a/net/mac80211/sta_info.h
> +++ b/net/mac80211/sta_info.h
> @@ -248,6 +248,13 @@ struct sta_ampdu_mlme {
>
> #define IEEE80211_FAST_XMIT_MAX_IV 18
>
> +#define IEEE80211_HT_MCS_NUM 32
> +#define IEEE80211_VHT_MCS_NUM 10
> +#define IEEE80211_BW_NUM 4
> +#define IEEE80211_NSS_NUM 4
> +#define IEEE80211_GI_NUM 2
> +#define IEEE80211_RATE_TABLE_NUM 320
> +#define IEEE80211_LEGACY_RATE_NUM 12
> /**
> * struct ieee80211_fast_tx - TX fastpath information
> * @key: key to use for hw crypto
> @@ -495,6 +502,22 @@ struct sta_info {
>
> struct cfg80211_chan_def tdls_chandef;
>
> +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> + u64 rx_legacy_pkt[IEEE80211_LEGACY_RATE_NUM];
> + u64 rx_ht_pkt[IEEE80211_HT_MCS_NUM];
> + u64 rx_vht_pkt[IEEE80211_VHT_MCS_NUM];
> + u64 rx_bw_pkt[IEEE80211_BW_NUM];
> + u64 rx_nss_pkt[IEEE80211_NSS_NUM];
> + u64 rx_gi_pkt[IEEE80211_GI_NUM];
> + u64 rx_rate_pkt[IEEE80211_RATE_TABLE_NUM];
> + u64 rx_legacy_byte[IEEE80211_LEGACY_RATE_NUM];
> + u64 rx_ht_byte[IEEE80211_HT_MCS_NUM];
> + u64 rx_vht_byte[IEEE80211_VHT_MCS_NUM];
> + u64 rx_bw_byte[IEEE80211_BW_NUM];
> + u64 rx_nss_byte[IEEE80211_NSS_NUM];
> + u64 rx_gi_byte[IEEE80211_GI_NUM];
> + u64 rx_rate_byte[IEEE80211_RATE_TABLE_NUM];
> +#endif
> /* keep last! */
> struct ieee80211_sta sta;
> };
> --
> 1.7.9.5
>


Attachments:
(No filename) (13.26 kB)
rx_stats (3.00 kB)
Download all attachments

2016-03-09 16:30:53

by Mohammed Shafi Shajakhan

[permalink] [raw]
Subject: Re: [RFC v1] mac80211: Add support for per station rx stats histogram

Hi Johannes,

I am able to apply both your patches in my local tree(with very very
minimal conflict)
http://thread.gmane.org/gmane.linux.kernel.wireless.general/133172

I had started studying(understand) your patch. Please
let me know if you have already added support for the same
in userspace as well, we like to use your changes and possibly
add any changes that addresses rx_stats histogram as well

I will keep you posted for any other queries/ clarification,
thanks !

-shafi

On Tue, Mar 08, 2016 at 03:12:50PM +0530, Mohammed Shafi Shajakhan wrote:
> Hi Johannes,
>
> On Tue, Mar 08, 2016 at 09:07:31AM +0100, Johannes Berg wrote:
> > On Mon, 2016-03-07 at 21:53 +0530, Mohammed Shafi Shajakhan wrote:
> > >?
> > > +#define IEEE80211_HT_MCS_NUM 32
> > > +#define IEEE80211_VHT_MCS_NUM 10
> > > +#define IEEE80211_BW_NUM 4
> > > +#define IEEE80211_NSS_NUM 4
> > > +#define IEEE80211_GI_NUM 2
> > > +#define IEEE80211_RATE_TABLE_NUM 320
> > > +#define IEEE80211_LEGACY_RATE_NUM 12
> >
> > > +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> > > + u64 rx_legacy_pkt[IEEE80211_LEGACY_RATE_NUM];
> > > + u64 rx_ht_pkt[IEEE80211_HT_MCS_NUM];
> > > + u64 rx_vht_pkt[IEEE80211_VHT_MCS_NUM];
> > > + u64 rx_bw_pkt[IEEE80211_BW_NUM];
> > > + u64 rx_nss_pkt[IEEE80211_NSS_NUM];
> > > + u64 rx_gi_pkt[IEEE80211_GI_NUM];
> > > + u64 rx_rate_pkt[IEEE80211_RATE_TABLE_NUM];
> > > + u64 rx_legacy_byte[IEEE80211_LEGACY_RATE_NUM];
> > > + u64 rx_ht_byte[IEEE80211_HT_MCS_NUM];
> > > + u64 rx_vht_byte[IEEE80211_VHT_MCS_NUM];
> > > + u64 rx_bw_byte[IEEE80211_BW_NUM];
> > > + u64 rx_nss_byte[IEEE80211_NSS_NUM];
> > > + u64 rx_gi_byte[IEEE80211_GI_NUM];
> > > + u64 rx_rate_byte[IEEE80211_RATE_TABLE_NUM];
> > > +#endif
> >
> > Do you know how much data this is?!
> >
> > Felix is going to kill both of us if I apply it.
>
> [shafi] :-(
>
> >
> > Please look at reviving my rate-statistics patch and do the remaining
> > work in userspace:
> >
> > http://thread.gmane.org/gmane.linux.kernel.wireless.general/133172
> >
>
> [shafi] thank you, I will check this out.
>
> regards,
> shafi
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html

2016-03-08 08:07:35

by Johannes Berg

[permalink] [raw]
Subject: Re: [RFC v1] mac80211: Add support for per station rx stats histogram

On Mon, 2016-03-07 at 21:53 +0530, Mohammed Shafi Shajakhan wrote:

> +#define IEEE80211_HT_MCS_NUM 32
> +#define IEEE80211_VHT_MCS_NUM 10
> +#define IEEE80211_BW_NUM 4
> +#define IEEE80211_NSS_NUM 4
> +#define IEEE80211_GI_NUM 2
> +#define IEEE80211_RATE_TABLE_NUM 320
> +#define IEEE80211_LEGACY_RATE_NUM 12

> +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> + u64 rx_legacy_pkt[IEEE80211_LEGACY_RATE_NUM];
> + u64 rx_ht_pkt[IEEE80211_HT_MCS_NUM];
> + u64 rx_vht_pkt[IEEE80211_VHT_MCS_NUM];
> + u64 rx_bw_pkt[IEEE80211_BW_NUM];
> + u64 rx_nss_pkt[IEEE80211_NSS_NUM];
> + u64 rx_gi_pkt[IEEE80211_GI_NUM];
> + u64 rx_rate_pkt[IEEE80211_RATE_TABLE_NUM];
> + u64 rx_legacy_byte[IEEE80211_LEGACY_RATE_NUM];
> + u64 rx_ht_byte[IEEE80211_HT_MCS_NUM];
> + u64 rx_vht_byte[IEEE80211_VHT_MCS_NUM];
> + u64 rx_bw_byte[IEEE80211_BW_NUM];
> + u64 rx_nss_byte[IEEE80211_NSS_NUM];
> + u64 rx_gi_byte[IEEE80211_GI_NUM];
> + u64 rx_rate_byte[IEEE80211_RATE_TABLE_NUM];
> +#endif

Do you know how much data this is?!

Felix is going to kill both of us if I apply it.

Please look at reviving my rate-statistics patch and do the remaining
work in userspace:

http://thread.gmane.org/gmane.linux.kernel.wireless.general/133172

johannes

2016-03-08 09:43:12

by Mohammed Shafi Shajakhan

[permalink] [raw]
Subject: Re: [RFC v1] mac80211: Add support for per station rx stats histogram

Hi Johannes,

On Tue, Mar 08, 2016 at 09:07:31AM +0100, Johannes Berg wrote:
> On Mon, 2016-03-07 at 21:53 +0530, Mohammed Shafi Shajakhan wrote:
> >?
> > +#define IEEE80211_HT_MCS_NUM 32
> > +#define IEEE80211_VHT_MCS_NUM 10
> > +#define IEEE80211_BW_NUM 4
> > +#define IEEE80211_NSS_NUM 4
> > +#define IEEE80211_GI_NUM 2
> > +#define IEEE80211_RATE_TABLE_NUM 320
> > +#define IEEE80211_LEGACY_RATE_NUM 12
>
> > +#ifdef CONFIG_MAC80211_DEBUG_PER_STA_RX_STATS
> > + u64 rx_legacy_pkt[IEEE80211_LEGACY_RATE_NUM];
> > + u64 rx_ht_pkt[IEEE80211_HT_MCS_NUM];
> > + u64 rx_vht_pkt[IEEE80211_VHT_MCS_NUM];
> > + u64 rx_bw_pkt[IEEE80211_BW_NUM];
> > + u64 rx_nss_pkt[IEEE80211_NSS_NUM];
> > + u64 rx_gi_pkt[IEEE80211_GI_NUM];
> > + u64 rx_rate_pkt[IEEE80211_RATE_TABLE_NUM];
> > + u64 rx_legacy_byte[IEEE80211_LEGACY_RATE_NUM];
> > + u64 rx_ht_byte[IEEE80211_HT_MCS_NUM];
> > + u64 rx_vht_byte[IEEE80211_VHT_MCS_NUM];
> > + u64 rx_bw_byte[IEEE80211_BW_NUM];
> > + u64 rx_nss_byte[IEEE80211_NSS_NUM];
> > + u64 rx_gi_byte[IEEE80211_GI_NUM];
> > + u64 rx_rate_byte[IEEE80211_RATE_TABLE_NUM];
> > +#endif
>
> Do you know how much data this is?!
>
> Felix is going to kill both of us if I apply it.

[shafi] :-(

>
> Please look at reviving my rate-statistics patch and do the remaining
> work in userspace:
>
> http://thread.gmane.org/gmane.linux.kernel.wireless.general/133172
>

[shafi] thank you, I will check this out.

regards,
shafi