rc80211_minstrel.c 16 KB

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