rc80211_minstrel.c 16 KB

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