rc80211_minstrel.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571
  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/random.h>
  52. #include <linux/ieee80211.h>
  53. #include <linux/slab.h>
  54. #include <net/mac80211.h>
  55. #include "rate.h"
  56. #include "rc80211_minstrel.h"
  57. #define SAMPLE_COLUMNS 10
  58. #define SAMPLE_TBL(_mi, _idx, _col) \
  59. _mi->sample_table[(_idx * SAMPLE_COLUMNS) + _col]
  60. /* convert mac80211 rate index to local array index */
  61. static inline int
  62. rix_to_ndx(struct minstrel_sta_info *mi, int rix)
  63. {
  64. int i = rix;
  65. for (i = rix; i >= 0; i--)
  66. if (mi->r[i].rix == rix)
  67. break;
  68. WARN_ON(i < 0);
  69. return i;
  70. }
  71. static void
  72. minstrel_update_stats(struct minstrel_priv *mp, struct minstrel_sta_info *mi)
  73. {
  74. u32 max_tp = 0, index_max_tp = 0, index_max_tp2 = 0;
  75. u32 max_prob = 0, index_max_prob = 0;
  76. u32 usecs;
  77. u32 p;
  78. int i;
  79. mi->stats_update = jiffies;
  80. for (i = 0; i < mi->n_rates; i++) {
  81. struct minstrel_rate *mr = &mi->r[i];
  82. usecs = mr->perfect_tx_time;
  83. if (!usecs)
  84. usecs = 1000000;
  85. /* To avoid rounding issues, probabilities scale from 0 (0%)
  86. * to 18000 (100%) */
  87. if (mr->attempts) {
  88. p = (mr->success * 18000) / mr->attempts;
  89. mr->succ_hist += mr->success;
  90. mr->att_hist += mr->attempts;
  91. mr->cur_prob = p;
  92. p = ((p * (100 - mp->ewma_level)) + (mr->probability *
  93. mp->ewma_level)) / 100;
  94. mr->probability = p;
  95. mr->cur_tp = p * (1000000 / usecs);
  96. }
  97. mr->last_success = mr->success;
  98. mr->last_attempts = mr->attempts;
  99. mr->success = 0;
  100. mr->attempts = 0;
  101. /* Sample less often below the 10% chance of success.
  102. * Sample less often above the 95% chance of success. */
  103. if ((mr->probability > 17100) || (mr->probability < 1800)) {
  104. mr->adjusted_retry_count = mr->retry_count >> 1;
  105. if (mr->adjusted_retry_count > 2)
  106. mr->adjusted_retry_count = 2;
  107. mr->sample_limit = 4;
  108. } else {
  109. mr->sample_limit = -1;
  110. mr->adjusted_retry_count = mr->retry_count;
  111. }
  112. if (!mr->adjusted_retry_count)
  113. mr->adjusted_retry_count = 2;
  114. }
  115. for (i = 0; i < mi->n_rates; i++) {
  116. struct minstrel_rate *mr = &mi->r[i];
  117. if (max_tp < mr->cur_tp) {
  118. index_max_tp = i;
  119. max_tp = mr->cur_tp;
  120. }
  121. if (max_prob < mr->probability) {
  122. index_max_prob = i;
  123. max_prob = mr->probability;
  124. }
  125. }
  126. max_tp = 0;
  127. for (i = 0; i < mi->n_rates; i++) {
  128. struct minstrel_rate *mr = &mi->r[i];
  129. if (i == index_max_tp)
  130. continue;
  131. if (max_tp < mr->cur_tp) {
  132. index_max_tp2 = i;
  133. max_tp = mr->cur_tp;
  134. }
  135. }
  136. mi->max_tp_rate = index_max_tp;
  137. mi->max_tp_rate2 = index_max_tp2;
  138. mi->max_prob_rate = index_max_prob;
  139. }
  140. static void
  141. minstrel_tx_status(void *priv, struct ieee80211_supported_band *sband,
  142. struct ieee80211_sta *sta, void *priv_sta,
  143. struct sk_buff *skb)
  144. {
  145. struct minstrel_sta_info *mi = priv_sta;
  146. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  147. struct ieee80211_tx_rate *ar = info->status.rates;
  148. int i, ndx;
  149. int success;
  150. success = !!(info->flags & IEEE80211_TX_STAT_ACK);
  151. for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
  152. if (ar[i].idx < 0)
  153. break;
  154. ndx = rix_to_ndx(mi, ar[i].idx);
  155. if (ndx < 0)
  156. continue;
  157. mi->r[ndx].attempts += ar[i].count;
  158. if ((i != IEEE80211_TX_MAX_RATES - 1) && (ar[i + 1].idx < 0))
  159. mi->r[ndx].success += success;
  160. }
  161. if ((info->flags & IEEE80211_TX_CTL_RATE_CTRL_PROBE) && (i >= 0))
  162. mi->sample_count++;
  163. if (mi->sample_deferred > 0)
  164. mi->sample_deferred--;
  165. }
  166. static inline unsigned int
  167. minstrel_get_retry_count(struct minstrel_rate *mr,
  168. struct ieee80211_tx_info *info)
  169. {
  170. unsigned int retry = mr->adjusted_retry_count;
  171. if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
  172. retry = max(2U, min(mr->retry_count_rtscts, retry));
  173. else if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
  174. retry = max(2U, min(mr->retry_count_cts, retry));
  175. return retry;
  176. }
  177. static int
  178. minstrel_get_next_sample(struct minstrel_sta_info *mi)
  179. {
  180. unsigned int sample_ndx;
  181. sample_ndx = SAMPLE_TBL(mi, mi->sample_idx, mi->sample_column);
  182. mi->sample_idx++;
  183. if ((int) mi->sample_idx > (mi->n_rates - 2)) {
  184. mi->sample_idx = 0;
  185. mi->sample_column++;
  186. if (mi->sample_column >= SAMPLE_COLUMNS)
  187. mi->sample_column = 0;
  188. }
  189. return sample_ndx;
  190. }
  191. static void
  192. minstrel_get_rate(void *priv, struct ieee80211_sta *sta,
  193. void *priv_sta, struct ieee80211_tx_rate_control *txrc)
  194. {
  195. struct sk_buff *skb = txrc->skb;
  196. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  197. struct minstrel_sta_info *mi = priv_sta;
  198. struct minstrel_priv *mp = priv;
  199. struct ieee80211_tx_rate *ar = info->control.rates;
  200. unsigned int ndx, sample_ndx = 0;
  201. bool mrr;
  202. bool sample_slower = false;
  203. bool sample = false;
  204. int i, delta;
  205. int mrr_ndx[3];
  206. int sample_rate;
  207. if (rate_control_send_low(sta, priv_sta, txrc))
  208. return;
  209. mrr = mp->has_mrr && !txrc->rts && !txrc->bss_conf->use_cts_prot;
  210. if (time_after(jiffies, mi->stats_update + (mp->update_interval *
  211. HZ) / 1000))
  212. minstrel_update_stats(mp, mi);
  213. ndx = mi->max_tp_rate;
  214. if (mrr)
  215. sample_rate = mp->lookaround_rate_mrr;
  216. else
  217. sample_rate = mp->lookaround_rate;
  218. mi->packet_count++;
  219. delta = (mi->packet_count * sample_rate / 100) -
  220. (mi->sample_count + mi->sample_deferred / 2);
  221. /* delta > 0: sampling required */
  222. if ((delta > 0) && (mrr || !mi->prev_sample)) {
  223. struct minstrel_rate *msr;
  224. if (mi->packet_count >= 10000) {
  225. mi->sample_deferred = 0;
  226. mi->sample_count = 0;
  227. mi->packet_count = 0;
  228. } else if (delta > mi->n_rates * 2) {
  229. /* With multi-rate retry, not every planned sample
  230. * attempt actually gets used, due to the way the retry
  231. * chain is set up - [max_tp,sample,prob,lowest] for
  232. * sample_rate < max_tp.
  233. *
  234. * If there's too much sampling backlog and the link
  235. * starts getting worse, minstrel would start bursting
  236. * out lots of sampling frames, which would result
  237. * in a large throughput loss. */
  238. mi->sample_count += (delta - mi->n_rates * 2);
  239. }
  240. sample_ndx = minstrel_get_next_sample(mi);
  241. msr = &mi->r[sample_ndx];
  242. sample = true;
  243. sample_slower = mrr && (msr->perfect_tx_time >
  244. mi->r[ndx].perfect_tx_time);
  245. if (!sample_slower) {
  246. if (msr->sample_limit != 0) {
  247. ndx = sample_ndx;
  248. mi->sample_count++;
  249. if (msr->sample_limit > 0)
  250. msr->sample_limit--;
  251. } else {
  252. sample = false;
  253. }
  254. } else {
  255. /* Only use IEEE80211_TX_CTL_RATE_CTRL_PROBE to mark
  256. * packets that have the sampling rate deferred to the
  257. * second MRR stage. Increase the sample counter only
  258. * if the deferred sample rate was actually used.
  259. * Use the sample_deferred counter to make sure that
  260. * the sampling is not done in large bursts */
  261. info->flags |= IEEE80211_TX_CTL_RATE_CTRL_PROBE;
  262. mi->sample_deferred++;
  263. }
  264. }
  265. mi->prev_sample = sample;
  266. /* If we're not using MRR and the sampling rate already
  267. * has a probability of >95%, we shouldn't be attempting
  268. * to use it, as this only wastes precious airtime */
  269. if (!mrr && sample && (mi->r[ndx].probability > 17100))
  270. ndx = mi->max_tp_rate;
  271. ar[0].idx = mi->r[ndx].rix;
  272. ar[0].count = minstrel_get_retry_count(&mi->r[ndx], info);
  273. if (!mrr) {
  274. if (!sample)
  275. ar[0].count = mp->max_retry;
  276. ar[1].idx = mi->lowest_rix;
  277. ar[1].count = mp->max_retry;
  278. return;
  279. }
  280. /* MRR setup */
  281. if (sample) {
  282. if (sample_slower)
  283. mrr_ndx[0] = sample_ndx;
  284. else
  285. mrr_ndx[0] = mi->max_tp_rate;
  286. } else {
  287. mrr_ndx[0] = mi->max_tp_rate2;
  288. }
  289. mrr_ndx[1] = mi->max_prob_rate;
  290. mrr_ndx[2] = 0;
  291. for (i = 1; i < 4; i++) {
  292. ar[i].idx = mi->r[mrr_ndx[i - 1]].rix;
  293. ar[i].count = mi->r[mrr_ndx[i - 1]].adjusted_retry_count;
  294. }
  295. }
  296. static void
  297. calc_rate_durations(struct minstrel_sta_info *mi, struct ieee80211_local *local,
  298. struct minstrel_rate *d, struct ieee80211_rate *rate)
  299. {
  300. int erp = !!(rate->flags & IEEE80211_RATE_ERP_G);
  301. d->perfect_tx_time = ieee80211_frame_duration(local, 1200,
  302. rate->bitrate, erp, 1);
  303. d->ack_time = ieee80211_frame_duration(local, 10,
  304. rate->bitrate, erp, 1);
  305. }
  306. static void
  307. init_sample_table(struct minstrel_sta_info *mi)
  308. {
  309. unsigned int i, col, new_idx;
  310. unsigned int n_srates = mi->n_rates - 1;
  311. u8 rnd[8];
  312. mi->sample_column = 0;
  313. mi->sample_idx = 0;
  314. memset(mi->sample_table, 0, SAMPLE_COLUMNS * mi->n_rates);
  315. for (col = 0; col < SAMPLE_COLUMNS; col++) {
  316. for (i = 0; i < n_srates; i++) {
  317. get_random_bytes(rnd, sizeof(rnd));
  318. new_idx = (i + rnd[i & 7]) % n_srates;
  319. while (SAMPLE_TBL(mi, new_idx, col) != 0)
  320. new_idx = (new_idx + 1) % n_srates;
  321. /* Don't sample the slowest rate (i.e. slowest base
  322. * rate). We must presume that the slowest rate works
  323. * fine, or else other management frames will also be
  324. * failing and the link will break */
  325. SAMPLE_TBL(mi, new_idx, col) = i + 1;
  326. }
  327. }
  328. }
  329. static void
  330. minstrel_rate_init(void *priv, struct ieee80211_supported_band *sband,
  331. struct ieee80211_sta *sta, void *priv_sta)
  332. {
  333. struct minstrel_sta_info *mi = priv_sta;
  334. struct minstrel_priv *mp = priv;
  335. struct ieee80211_local *local = hw_to_local(mp->hw);
  336. struct ieee80211_rate *ctl_rate;
  337. unsigned int i, n = 0;
  338. unsigned int t_slot = 9; /* FIXME: get real slot time */
  339. mi->lowest_rix = rate_lowest_index(sband, sta);
  340. ctl_rate = &sband->bitrates[mi->lowest_rix];
  341. mi->sp_ack_dur = ieee80211_frame_duration(local, 10, ctl_rate->bitrate,
  342. !!(ctl_rate->flags & IEEE80211_RATE_ERP_G), 1);
  343. for (i = 0; i < sband->n_bitrates; i++) {
  344. struct minstrel_rate *mr = &mi->r[n];
  345. unsigned int tx_time = 0, tx_time_cts = 0, tx_time_rtscts = 0;
  346. unsigned int tx_time_single;
  347. unsigned int cw = mp->cw_min;
  348. if (!rate_supported(sta, sband->band, i))
  349. continue;
  350. n++;
  351. memset(mr, 0, sizeof(*mr));
  352. mr->rix = i;
  353. mr->bitrate = sband->bitrates[i].bitrate / 5;
  354. calc_rate_durations(mi, local, mr,
  355. &sband->bitrates[i]);
  356. /* calculate maximum number of retransmissions before
  357. * fallback (based on maximum segment size) */
  358. mr->sample_limit = -1;
  359. mr->retry_count = 1;
  360. mr->retry_count_cts = 1;
  361. mr->retry_count_rtscts = 1;
  362. tx_time = mr->perfect_tx_time + mi->sp_ack_dur;
  363. do {
  364. /* add one retransmission */
  365. tx_time_single = mr->ack_time + mr->perfect_tx_time;
  366. /* contention window */
  367. tx_time_single += t_slot + min(cw, mp->cw_max);
  368. cw = (cw << 1) | 1;
  369. tx_time += tx_time_single;
  370. tx_time_cts += tx_time_single + mi->sp_ack_dur;
  371. tx_time_rtscts += tx_time_single + 2 * mi->sp_ack_dur;
  372. if ((tx_time_cts < mp->segment_size) &&
  373. (mr->retry_count_cts < mp->max_retry))
  374. mr->retry_count_cts++;
  375. if ((tx_time_rtscts < mp->segment_size) &&
  376. (mr->retry_count_rtscts < mp->max_retry))
  377. mr->retry_count_rtscts++;
  378. } while ((tx_time < mp->segment_size) &&
  379. (++mr->retry_count < mp->max_retry));
  380. mr->adjusted_retry_count = mr->retry_count;
  381. }
  382. for (i = n; i < sband->n_bitrates; i++) {
  383. struct minstrel_rate *mr = &mi->r[i];
  384. mr->rix = -1;
  385. }
  386. mi->n_rates = n;
  387. mi->stats_update = jiffies;
  388. init_sample_table(mi);
  389. }
  390. static void *
  391. minstrel_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
  392. {
  393. struct ieee80211_supported_band *sband;
  394. struct minstrel_sta_info *mi;
  395. struct minstrel_priv *mp = priv;
  396. struct ieee80211_hw *hw = mp->hw;
  397. int max_rates = 0;
  398. int i;
  399. mi = kzalloc(sizeof(struct minstrel_sta_info), gfp);
  400. if (!mi)
  401. return NULL;
  402. for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
  403. sband = hw->wiphy->bands[i];
  404. if (sband && sband->n_bitrates > max_rates)
  405. max_rates = sband->n_bitrates;
  406. }
  407. mi->r = kzalloc(sizeof(struct minstrel_rate) * max_rates, gfp);
  408. if (!mi->r)
  409. goto error;
  410. mi->sample_table = kmalloc(SAMPLE_COLUMNS * max_rates, gfp);
  411. if (!mi->sample_table)
  412. goto error1;
  413. mi->stats_update = jiffies;
  414. return mi;
  415. error1:
  416. kfree(mi->r);
  417. error:
  418. kfree(mi);
  419. return NULL;
  420. }
  421. static void
  422. minstrel_free_sta(void *priv, struct ieee80211_sta *sta, void *priv_sta)
  423. {
  424. struct minstrel_sta_info *mi = priv_sta;
  425. kfree(mi->sample_table);
  426. kfree(mi->r);
  427. kfree(mi);
  428. }
  429. static void *
  430. minstrel_alloc(struct ieee80211_hw *hw, struct dentry *debugfsdir)
  431. {
  432. struct minstrel_priv *mp;
  433. mp = kzalloc(sizeof(struct minstrel_priv), GFP_ATOMIC);
  434. if (!mp)
  435. return NULL;
  436. /* contention window settings
  437. * Just an approximation. Using the per-queue values would complicate
  438. * the calculations and is probably unnecessary */
  439. mp->cw_min = 15;
  440. mp->cw_max = 1023;
  441. /* number of packets (in %) to use for sampling other rates
  442. * sample less often for non-mrr packets, because the overhead
  443. * is much higher than with mrr */
  444. mp->lookaround_rate = 5;
  445. mp->lookaround_rate_mrr = 10;
  446. /* moving average weight for EWMA */
  447. mp->ewma_level = 75;
  448. /* maximum time that the hw is allowed to stay in one MRR segment */
  449. mp->segment_size = 6000;
  450. if (hw->max_rate_tries > 0)
  451. mp->max_retry = hw->max_rate_tries;
  452. else
  453. /* safe default, does not necessarily have to match hw properties */
  454. mp->max_retry = 7;
  455. if (hw->max_rates >= 4)
  456. mp->has_mrr = true;
  457. mp->hw = hw;
  458. mp->update_interval = 100;
  459. return mp;
  460. }
  461. static void
  462. minstrel_free(void *priv)
  463. {
  464. kfree(priv);
  465. }
  466. struct rate_control_ops mac80211_minstrel = {
  467. .name = "minstrel",
  468. .tx_status = minstrel_tx_status,
  469. .get_rate = minstrel_get_rate,
  470. .rate_init = minstrel_rate_init,
  471. .alloc = minstrel_alloc,
  472. .free = minstrel_free,
  473. .alloc_sta = minstrel_alloc_sta,
  474. .free_sta = minstrel_free_sta,
  475. #ifdef CONFIG_MAC80211_DEBUGFS
  476. .add_sta_debugfs = minstrel_add_sta_debugfs,
  477. .remove_sta_debugfs = minstrel_remove_sta_debugfs,
  478. #endif
  479. };
  480. int __init
  481. rc80211_minstrel_init(void)
  482. {
  483. return ieee80211_rate_control_register(&mac80211_minstrel);
  484. }
  485. void
  486. rc80211_minstrel_exit(void)
  487. {
  488. ieee80211_rate_control_unregister(&mac80211_minstrel);
  489. }