blob: 617b81f72226d0ce024119435ffb4cb3a30f1579 [file] [log] [blame]
Felix Fietkaucccf1292008-10-05 18:07:45 +02001/*
2 * Copyright (C) 2008 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 * Based on minstrel.c:
9 * Copyright (C) 2005-2007 Derek Smithies <derek@indranet.co.nz>
10 * Sponsored by Indranet Technologies Ltd
11 *
12 * Based on sample.c:
13 * Copyright (c) 2005 John Bicket
14 * All rights reserved.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer,
21 * without modification.
22 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
23 * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
24 * redistribution must be conditioned upon including a substantially
25 * similar Disclaimer requirement for further binary redistribution.
26 * 3. Neither the names of the above-listed copyright holders nor the names
27 * of any contributors may be used to endorse or promote products derived
28 * from this software without specific prior written permission.
29 *
30 * Alternatively, this software may be distributed under the terms of the
31 * GNU General Public License ("GPL") version 2 as published by the Free
32 * Software Foundation.
33 *
34 * NO WARRANTY
35 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37 * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
38 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
39 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
40 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
41 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
42 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
43 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
44 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
45 * THE POSSIBILITY OF SUCH DAMAGES.
46 */
47#include <linux/netdevice.h>
48#include <linux/types.h>
49#include <linux/skbuff.h>
50#include <linux/debugfs.h>
51#include <linux/ieee80211.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040053#include <linux/export.h>
Felix Fietkaucccf1292008-10-05 18:07:45 +020054#include <net/mac80211.h>
55#include "rc80211_minstrel.h"
56
Thomas Huehn6d488512015-03-24 21:09:36 +010057ssize_t
58minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *ppos)
59{
60 struct minstrel_debugfs_info *ms;
61
62 ms = file->private_data;
63 return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len);
64}
65
66int
67minstrel_stats_release(struct inode *inode, struct file *file)
68{
69 kfree(file->private_data);
70 return 0;
71}
72
Felix Fietkaueae44752010-03-01 22:21:40 +010073int
Felix Fietkaucccf1292008-10-05 18:07:45 +020074minstrel_stats_open(struct inode *inode, struct file *file)
75{
76 struct minstrel_sta_info *mi = inode->i_private;
Felix Fietkau44ac91e2010-03-01 22:17:38 +010077 struct minstrel_debugfs_info *ms;
Thomas Huehn50e55a82015-03-24 21:09:41 +010078 unsigned int i, tp_max, tp_avg, prob, eprob;
Felix Fietkaucccf1292008-10-05 18:07:45 +020079 char *p;
80
Karl Beldan11b23572014-10-20 10:54:36 +020081 ms = kmalloc(2048, GFP_KERNEL);
Felix Fietkaucccf1292008-10-05 18:07:45 +020082 if (!ms)
83 return -ENOMEM;
84
85 file->private_data = ms;
86 p = ms->buf;
Thomas Huehne161f7f2015-03-24 21:09:34 +010087 p += sprintf(p, "\n");
Thomas Huehn50e55a82015-03-24 21:09:41 +010088 p += sprintf(p, "best __________rate_________ __statistics__ "
Thomas Huehne161f7f2015-03-24 21:09:34 +010089 "________last_______ ______sum-of________\n");
Thomas Huehn50e55a82015-03-24 21:09:41 +010090 p += sprintf(p, "rate [name idx airtime max_tp] [ ø(tp) ø(prob)] "
Thomas Huehne161f7f2015-03-24 21:09:34 +010091 "[prob.|retry|suc|att] [#success | #attempts]\n");
92
Felix Fietkaucccf1292008-10-05 18:07:45 +020093 for (i = 0; i < mi->n_rates; i++) {
94 struct minstrel_rate *mr = &mi->r[i];
Thomas Huehnca12c0c2014-09-09 23:22:13 +020095 struct minstrel_rate_stats *mrs = &mi->r[i].stats;
Felix Fietkaucccf1292008-10-05 18:07:45 +020096
Thomas Huehn2ff2b692013-03-04 23:30:07 +010097 *(p++) = (i == mi->max_tp_rate[0]) ? 'A' : ' ';
98 *(p++) = (i == mi->max_tp_rate[1]) ? 'B' : ' ';
99 *(p++) = (i == mi->max_tp_rate[2]) ? 'C' : ' ';
100 *(p++) = (i == mi->max_tp_rate[3]) ? 'D' : ' ';
Felix Fietkaucccf1292008-10-05 18:07:45 +0200101 *(p++) = (i == mi->max_prob_rate) ? 'P' : ' ';
Thomas Huehne161f7f2015-03-24 21:09:34 +0100102
103 p += sprintf(p, " %3u%s ", mr->bitrate / 2,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200104 (mr->bitrate & 1 ? ".5" : " "));
Thomas Huehne161f7f2015-03-24 21:09:34 +0100105 p += sprintf(p, "%3u ", i);
Thomas Huehn50e55a82015-03-24 21:09:41 +0100106 p += sprintf(p, "%6u ", mr->perfect_tx_time);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200107
Thomas Huehn50e55a82015-03-24 21:09:41 +0100108 tp_max = minstrel_get_tp_avg(mr, MINSTREL_FRAC(100,100));
109 tp_avg = minstrel_get_tp_avg(mr, mrs->prob_ewma);
Thomas Huehnca12c0c2014-09-09 23:22:13 +0200110 prob = MINSTREL_TRUNC(mrs->cur_prob * 1000);
Thomas Huehn91340732015-03-24 21:09:39 +0100111 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200112
Thomas Huehn50e55a82015-03-24 21:09:41 +0100113 p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u %3u.%1u %3u"
Thomas Huehne161f7f2015-03-24 21:09:34 +0100114 " %3u %-3u %9llu %-9llu\n",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100115 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100116 tp_avg / 10, tp_avg % 10,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200117 eprob / 10, eprob % 10,
118 prob / 10, prob % 10,
Thomas Huehne161f7f2015-03-24 21:09:34 +0100119 mrs->retry_count,
Thomas Huehnca12c0c2014-09-09 23:22:13 +0200120 mrs->last_success,
121 mrs->last_attempts,
122 (unsigned long long)mrs->succ_hist,
123 (unsigned long long)mrs->att_hist);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200124 }
125 p += sprintf(p, "\nTotal packet count:: ideal %d "
126 "lookaround %d\n\n",
Thomas Huehnca12c0c2014-09-09 23:22:13 +0200127 mi->total_packets - mi->sample_packets,
128 mi->sample_packets);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200129 ms->len = p - ms->buf;
130
Karl Beldan11b23572014-10-20 10:54:36 +0200131 WARN_ON(ms->len + sizeof(*ms) > 2048);
132
Felix Fietkaucccf1292008-10-05 18:07:45 +0200133 return 0;
134}
135
Stephen Hemminger5ca1b992009-09-01 19:25:05 +0000136static const struct file_operations minstrel_stat_fops = {
Felix Fietkaucccf1292008-10-05 18:07:45 +0200137 .owner = THIS_MODULE,
138 .open = minstrel_stats_open,
139 .read = minstrel_stats_read,
140 .release = minstrel_stats_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200141 .llseek = default_llseek,
Felix Fietkaucccf1292008-10-05 18:07:45 +0200142};
143
Thomas Huehn6d488512015-03-24 21:09:36 +0100144int
145minstrel_stats_csv_open(struct inode *inode, struct file *file)
146{
147 struct minstrel_sta_info *mi = inode->i_private;
148 struct minstrel_debugfs_info *ms;
Thomas Huehn50e55a82015-03-24 21:09:41 +0100149 unsigned int i, tp_max, tp_avg, prob, eprob;
Thomas Huehn6d488512015-03-24 21:09:36 +0100150 char *p;
151
152 ms = kmalloc(2048, GFP_KERNEL);
153 if (!ms)
154 return -ENOMEM;
155
156 file->private_data = ms;
157 p = ms->buf;
158
159 for (i = 0; i < mi->n_rates; i++) {
160 struct minstrel_rate *mr = &mi->r[i];
161 struct minstrel_rate_stats *mrs = &mi->r[i].stats;
162
163 p += sprintf(p, "%s" ,((i == mi->max_tp_rate[0]) ? "A" : ""));
164 p += sprintf(p, "%s" ,((i == mi->max_tp_rate[1]) ? "B" : ""));
165 p += sprintf(p, "%s" ,((i == mi->max_tp_rate[2]) ? "C" : ""));
166 p += sprintf(p, "%s" ,((i == mi->max_tp_rate[3]) ? "D" : ""));
167 p += sprintf(p, "%s" ,((i == mi->max_prob_rate) ? "P" : ""));
168
169 p += sprintf(p, ",%u%s", mr->bitrate / 2,
170 (mr->bitrate & 1 ? ".5," : ","));
171 p += sprintf(p, "%u,", i);
172 p += sprintf(p, "%u,",mr->perfect_tx_time);
173
Thomas Huehn50e55a82015-03-24 21:09:41 +0100174 tp_max = minstrel_get_tp_avg(mr, MINSTREL_FRAC(100,100));
175 tp_avg = minstrel_get_tp_avg(mr, mrs->prob_ewma);
Thomas Huehn6d488512015-03-24 21:09:36 +0100176 prob = MINSTREL_TRUNC(mrs->cur_prob * 1000);
Thomas Huehn91340732015-03-24 21:09:39 +0100177 eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
Thomas Huehn6d488512015-03-24 21:09:36 +0100178
Thomas Huehn50e55a82015-03-24 21:09:41 +0100179 p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u.%u,%u,%u,%u,"
Thomas Huehn6d488512015-03-24 21:09:36 +0100180 "%llu,%llu,%d,%d\n",
Thomas Huehn50e55a82015-03-24 21:09:41 +0100181 tp_max / 10, tp_max % 10,
Thomas Huehn6a27b2c402015-03-24 21:09:40 +0100182 tp_avg / 10, tp_avg % 10,
Thomas Huehn6d488512015-03-24 21:09:36 +0100183 eprob / 10, eprob % 10,
184 prob / 10, prob % 10,
185 mrs->retry_count,
186 mrs->last_success,
187 mrs->last_attempts,
188 (unsigned long long)mrs->succ_hist,
189 (unsigned long long)mrs->att_hist,
190 mi->total_packets - mi->sample_packets,
191 mi->sample_packets);
192
193 }
194 ms->len = p - ms->buf;
195
196 WARN_ON(ms->len + sizeof(*ms) > 2048);
197
198 return 0;
199}
200
201static const struct file_operations minstrel_stat_csv_fops = {
202 .owner = THIS_MODULE,
203 .open = minstrel_stats_csv_open,
204 .read = minstrel_stats_read,
205 .release = minstrel_stats_release,
206 .llseek = default_llseek,
207};
208
Felix Fietkaucccf1292008-10-05 18:07:45 +0200209void
210minstrel_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
211{
212 struct minstrel_sta_info *mi = priv_sta;
213
214 mi->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, mi,
215 &minstrel_stat_fops);
Thomas Huehn6d488512015-03-24 21:09:36 +0100216
217 mi->dbg_stats_csv = debugfs_create_file("rc_stats_csv", S_IRUGO, dir,
218 mi, &minstrel_stat_csv_fops);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200219}
220
221void
222minstrel_remove_sta_debugfs(void *priv, void *priv_sta)
223{
224 struct minstrel_sta_info *mi = priv_sta;
225
226 debugfs_remove(mi->dbg_stats);
Thomas Huehn6d488512015-03-24 21:09:36 +0100227
228 debugfs_remove(mi->dbg_stats_csv);
Felix Fietkaucccf1292008-10-05 18:07:45 +0200229}