rc80211_minstrel.c 16 KB

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