rc80211_minstrel_debugfs.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /*
  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>
  52. #include <linux/slab.h>
  53. #include <linux/export.h>
  54. #include <net/mac80211.h>
  55. #include "rc80211_minstrel.h"
  56. ssize_t
  57. minstrel_stats_read(struct file *file, char __user *buf, size_t len, loff_t *ppos)
  58. {
  59. struct minstrel_debugfs_info *ms;
  60. ms = file->private_data;
  61. return simple_read_from_buffer(buf, len, ppos, ms->buf, ms->len);
  62. }
  63. int
  64. minstrel_stats_release(struct inode *inode, struct file *file)
  65. {
  66. kfree(file->private_data);
  67. return 0;
  68. }
  69. int
  70. minstrel_stats_open(struct inode *inode, struct file *file)
  71. {
  72. struct minstrel_sta_info *mi = inode->i_private;
  73. struct minstrel_debugfs_info *ms;
  74. unsigned int i, tp_max, tp_avg, prob, eprob;
  75. char *p;
  76. ms = kmalloc(2048, GFP_KERNEL);
  77. if (!ms)
  78. return -ENOMEM;
  79. file->private_data = ms;
  80. p = ms->buf;
  81. p += sprintf(p, "\n");
  82. p += sprintf(p,
  83. "best __________rate_________ ________statistics________ ________last_______ ______sum-of________\n");
  84. p += sprintf(p,
  85. "rate [name idx airtime max_tp] [avg(tp) avg(prob) sd(prob)] [prob.|retry|suc|att] [#success | #attempts]\n");
  86. for (i = 0; i < mi->n_rates; i++) {
  87. struct minstrel_rate *mr = &mi->r[i];
  88. struct minstrel_rate_stats *mrs = &mi->r[i].stats;
  89. *(p++) = (i == mi->max_tp_rate[0]) ? 'A' : ' ';
  90. *(p++) = (i == mi->max_tp_rate[1]) ? 'B' : ' ';
  91. *(p++) = (i == mi->max_tp_rate[2]) ? 'C' : ' ';
  92. *(p++) = (i == mi->max_tp_rate[3]) ? 'D' : ' ';
  93. *(p++) = (i == mi->max_prob_rate) ? 'P' : ' ';
  94. p += sprintf(p, " %3u%s ", mr->bitrate / 2,
  95. (mr->bitrate & 1 ? ".5" : " "));
  96. p += sprintf(p, "%3u ", i);
  97. p += sprintf(p, "%6u ", mr->perfect_tx_time);
  98. tp_max = minstrel_get_tp_avg(mr, MINSTREL_FRAC(100,100));
  99. tp_avg = minstrel_get_tp_avg(mr, mrs->prob_ewma);
  100. prob = MINSTREL_TRUNC(mrs->cur_prob * 1000);
  101. eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
  102. p += sprintf(p, "%4u.%1u %4u.%1u %3u.%1u %3u.%1u"
  103. " %3u.%1u %3u %3u %-3u "
  104. "%9llu %-9llu\n",
  105. tp_max / 10, tp_max % 10,
  106. tp_avg / 10, tp_avg % 10,
  107. eprob / 10, eprob % 10,
  108. mrs->prob_ewmsd / 10, mrs->prob_ewmsd % 10,
  109. prob / 10, prob % 10,
  110. mrs->retry_count,
  111. mrs->last_success,
  112. mrs->last_attempts,
  113. (unsigned long long)mrs->succ_hist,
  114. (unsigned long long)mrs->att_hist);
  115. }
  116. p += sprintf(p, "\nTotal packet count:: ideal %d "
  117. "lookaround %d\n\n",
  118. mi->total_packets - mi->sample_packets,
  119. mi->sample_packets);
  120. ms->len = p - ms->buf;
  121. WARN_ON(ms->len + sizeof(*ms) > 2048);
  122. return 0;
  123. }
  124. static const struct file_operations minstrel_stat_fops = {
  125. .owner = THIS_MODULE,
  126. .open = minstrel_stats_open,
  127. .read = minstrel_stats_read,
  128. .release = minstrel_stats_release,
  129. .llseek = default_llseek,
  130. };
  131. int
  132. minstrel_stats_csv_open(struct inode *inode, struct file *file)
  133. {
  134. struct minstrel_sta_info *mi = inode->i_private;
  135. struct minstrel_debugfs_info *ms;
  136. unsigned int i, tp_max, tp_avg, prob, eprob;
  137. char *p;
  138. ms = kmalloc(2048, GFP_KERNEL);
  139. if (!ms)
  140. return -ENOMEM;
  141. file->private_data = ms;
  142. p = ms->buf;
  143. for (i = 0; i < mi->n_rates; i++) {
  144. struct minstrel_rate *mr = &mi->r[i];
  145. struct minstrel_rate_stats *mrs = &mi->r[i].stats;
  146. p += sprintf(p, "%s" ,((i == mi->max_tp_rate[0]) ? "A" : ""));
  147. p += sprintf(p, "%s" ,((i == mi->max_tp_rate[1]) ? "B" : ""));
  148. p += sprintf(p, "%s" ,((i == mi->max_tp_rate[2]) ? "C" : ""));
  149. p += sprintf(p, "%s" ,((i == mi->max_tp_rate[3]) ? "D" : ""));
  150. p += sprintf(p, "%s" ,((i == mi->max_prob_rate) ? "P" : ""));
  151. p += sprintf(p, ",%u%s", mr->bitrate / 2,
  152. (mr->bitrate & 1 ? ".5," : ","));
  153. p += sprintf(p, "%u,", i);
  154. p += sprintf(p, "%u,",mr->perfect_tx_time);
  155. tp_max = minstrel_get_tp_avg(mr, MINSTREL_FRAC(100,100));
  156. tp_avg = minstrel_get_tp_avg(mr, mrs->prob_ewma);
  157. prob = MINSTREL_TRUNC(mrs->cur_prob * 1000);
  158. eprob = MINSTREL_TRUNC(mrs->prob_ewma * 1000);
  159. p += sprintf(p, "%u.%u,%u.%u,%u.%u,%u.%u,%u.%u,%u,%u,%u,"
  160. "%llu,%llu,%d,%d\n",
  161. tp_max / 10, tp_max % 10,
  162. tp_avg / 10, tp_avg % 10,
  163. eprob / 10, eprob % 10,
  164. mrs->prob_ewmsd / 10, mrs->prob_ewmsd % 10,
  165. prob / 10, prob % 10,
  166. mrs->retry_count,
  167. mrs->last_success,
  168. mrs->last_attempts,
  169. (unsigned long long)mrs->succ_hist,
  170. (unsigned long long)mrs->att_hist,
  171. mi->total_packets - mi->sample_packets,
  172. mi->sample_packets);
  173. }
  174. ms->len = p - ms->buf;
  175. WARN_ON(ms->len + sizeof(*ms) > 2048);
  176. return 0;
  177. }
  178. static const struct file_operations minstrel_stat_csv_fops = {
  179. .owner = THIS_MODULE,
  180. .open = minstrel_stats_csv_open,
  181. .read = minstrel_stats_read,
  182. .release = minstrel_stats_release,
  183. .llseek = default_llseek,
  184. };
  185. void
  186. minstrel_add_sta_debugfs(void *priv, void *priv_sta, struct dentry *dir)
  187. {
  188. struct minstrel_sta_info *mi = priv_sta;
  189. mi->dbg_stats = debugfs_create_file("rc_stats", S_IRUGO, dir, mi,
  190. &minstrel_stat_fops);
  191. mi->dbg_stats_csv = debugfs_create_file("rc_stats_csv", S_IRUGO, dir,
  192. mi, &minstrel_stat_csv_fops);
  193. }
  194. void
  195. minstrel_remove_sta_debugfs(void *priv, void *priv_sta)
  196. {
  197. struct minstrel_sta_info *mi = priv_sta;
  198. debugfs_remove(mi->dbg_stats);
  199. debugfs_remove(mi->dbg_stats_csv);
  200. }