cfg80211: check vendor IE length to avoid overrun
[deliverable/linux.git] / net / mac80211 / rc80211_minstrel_ht_debugfs.c
CommitLineData
ec8aa669
FF
1/*
2 * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#include <linux/netdevice.h>
9#include <linux/types.h>
10#include <linux/skbuff.h>
11#include <linux/debugfs.h>
12#include <linux/ieee80211.h>
bc3b2d7f 13#include <linux/export.h>
ec8aa669
FF
14#include <net/mac80211.h>
15#include "rc80211_minstrel.h"
16#include "rc80211_minstrel_ht.h"
17
ec8aa669
FF
18static int
19minstrel_ht_stats_open(struct inode *inode, struct file *file)
20{
21 struct minstrel_ht_sta_priv *msp = inode->i_private;
22 struct minstrel_ht_sta *mi = &msp->ht;
23 struct minstrel_debugfs_info *ms;
24 unsigned int i, j, tp, prob, eprob;
25 char *p;
26 int ret;
27
28 if (!msp->is_ht) {
29 inode->i_private = &msp->legacy;
30 ret = minstrel_stats_open(inode, file);
31 inode->i_private = msp;
32 return ret;
33 }
34
35 ms = kmalloc(sizeof(*ms) + 8192, GFP_KERNEL);
36 if (!ms)
37 return -ENOMEM;
38
39 file->private_data = ms;
40 p = ms->buf;
7f4fe17b
FF
41 p += sprintf(p, "type rate throughput ewma prob this prob "
42 "retry this succ/attempt success attempts\n");
ec8aa669
FF
43 for (i = 0; i < MINSTREL_MAX_STREAMS * MINSTREL_STREAM_GROUPS; i++) {
44 char htmode = '2';
45 char gimode = 'L';
46
47 if (!mi->groups[i].supported)
48 continue;
49
50 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
51 htmode = '4';
52 if (minstrel_mcs_groups[i].flags & IEEE80211_TX_RC_SHORT_GI)
53 gimode = 'S';
54
55 for (j = 0; j < MCS_GROUP_RATES; j++) {
56 struct minstrel_rate_stats *mr = &mi->groups[i].rates[j];
57 int idx = i * MCS_GROUP_RATES + j;
58
59 if (!(mi->groups[i].supported & BIT(j)))
60 continue;
61
62 p += sprintf(p, "HT%c0/%cGI ", htmode, gimode);
63
64 *(p++) = (idx == mi->max_tp_rate) ? 'T' : ' ';
65 *(p++) = (idx == mi->max_tp_rate2) ? 't' : ' ';
66 *(p++) = (idx == mi->max_prob_rate) ? 'P' : ' ';
7f4fe17b 67 p += sprintf(p, " MCS%-2u", (minstrel_mcs_groups[i].streams - 1) *
ec8aa669
FF
68 MCS_GROUP_RATES + j);
69
70 tp = mr->cur_tp / 10;
71 prob = MINSTREL_TRUNC(mr->cur_prob * 1000);
72 eprob = MINSTREL_TRUNC(mr->probability * 1000);
73
7f4fe17b
FF
74 p += sprintf(p, " %6u.%1u %6u.%1u %6u.%1u "
75 "%3u %3u(%3u) %8llu %8llu\n",
ec8aa669
FF
76 tp / 10, tp % 10,
77 eprob / 10, eprob % 10,
78 prob / 10, prob % 10,
7f4fe17b 79 mr->retry_count,
ec8aa669
FF
80 mr->last_success,
81 mr->last_attempts,
82 (unsigned long long)mr->succ_hist,
83 (unsigned long long)mr->att_hist);
84 }
85 }
86 p += sprintf(p, "\nTotal packet count:: ideal %d "
87 "lookaround %d\n",
88 max(0, (int) mi->total_packets - (int) mi->sample_packets),
89 mi->sample_packets);
90 p += sprintf(p, "Average A-MPDU length: %d.%d\n",
91 MINSTREL_TRUNC(mi->avg_ampdu_len),
92 MINSTREL_TRUNC(mi->avg_ampdu_len * 10) % 10);
93 ms->len = p - ms->buf;
94
a0572d93 95 return nonseekable_open(inode, file);
ec8aa669
FF
96}
97
98static const struct file_operations minstrel_ht_stat_fops = {
99 .owner = THIS_MODULE,
100 .open = minstrel_ht_stats_open,
101 .read = minstrel_stats_read,
102 .release = minstrel_stats_release,
a0572d93 103 .llseek = no_llseek,
ec8aa669
FF
104};
105
106void
107minstrel_ht_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
108{
109 struct minstrel_ht_sta_priv *msp = priv_sta;
110
111 msp->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, msp,
112 &minstrel_ht_stat_fops);
113}
114
115void
116minstrel_ht_remove_sta_debugfs(void *priv, void *priv_sta)
117{
118 struct minstrel_ht_sta_priv *msp = priv_sta;
119
120 debugfs_remove(msp->dbg_stats);
121}
This page took 0.17093 seconds and 5 git commands to generate.