Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 3 | * Copyright 2005, Devicescape Software, Inc. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | */ |
| 9 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 10 | #include <linux/init.h> |
| 11 | #include <linux/netdevice.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/skbuff.h> |
| 15 | #include <linux/compiler.h> |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 16 | #include <linux/module.h> |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 17 | |
| 18 | #include <net/mac80211.h> |
| 19 | #include "ieee80211_i.h" |
| 20 | #include "ieee80211_rate.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 21 | #include "debugfs.h" |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 22 | |
| 23 | |
| 24 | /* This is a minimal implementation of TX rate controlling that can be used |
| 25 | * as the default when no improved mechanisms are available. */ |
| 26 | |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 27 | #define RATE_CONTROL_NUM_DOWN 20 |
| 28 | #define RATE_CONTROL_NUM_UP 15 |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 29 | |
| 30 | #define RATE_CONTROL_EMERG_DEC 2 |
| 31 | #define RATE_CONTROL_INTERVAL (HZ / 20) |
| 32 | #define RATE_CONTROL_MIN_TX 10 |
| 33 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 34 | static void rate_control_rate_inc(struct ieee80211_local *local, |
| 35 | struct sta_info *sta) |
| 36 | { |
| 37 | struct ieee80211_sub_if_data *sdata; |
| 38 | struct ieee80211_hw_mode *mode; |
| 39 | int i = sta->txrate; |
| 40 | int maxrate; |
| 41 | |
| 42 | sdata = IEEE80211_DEV_TO_SUB_IF(sta->dev); |
| 43 | if (sdata->bss && sdata->bss->force_unicast_rateidx > -1) { |
| 44 | /* forced unicast rate - do not change STA rate */ |
| 45 | return; |
| 46 | } |
| 47 | |
| 48 | mode = local->oper_hw_mode; |
| 49 | maxrate = sdata->bss ? sdata->bss->max_ratectrl_rateidx : -1; |
| 50 | |
| 51 | if (i > mode->num_rates) |
| 52 | i = mode->num_rates - 2; |
| 53 | |
| 54 | while (i + 1 < mode->num_rates) { |
| 55 | i++; |
| 56 | if (sta->supp_rates & BIT(i) && |
| 57 | mode->rates[i].flags & IEEE80211_RATE_SUPPORTED && |
| 58 | (maxrate < 0 || i <= maxrate)) { |
| 59 | sta->txrate = i; |
| 60 | break; |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | |
| 66 | static void rate_control_rate_dec(struct ieee80211_local *local, |
| 67 | struct sta_info *sta) |
| 68 | { |
| 69 | struct ieee80211_sub_if_data *sdata; |
| 70 | struct ieee80211_hw_mode *mode; |
| 71 | int i = sta->txrate; |
| 72 | |
| 73 | sdata = IEEE80211_DEV_TO_SUB_IF(sta->dev); |
| 74 | if (sdata->bss && sdata->bss->force_unicast_rateidx > -1) { |
| 75 | /* forced unicast rate - do not change STA rate */ |
| 76 | return; |
| 77 | } |
| 78 | |
| 79 | mode = local->oper_hw_mode; |
| 80 | if (i > mode->num_rates) |
| 81 | i = mode->num_rates; |
| 82 | |
| 83 | while (i > 0) { |
| 84 | i--; |
| 85 | if (sta->supp_rates & BIT(i) && |
| 86 | mode->rates[i].flags & IEEE80211_RATE_SUPPORTED) { |
| 87 | sta->txrate = i; |
| 88 | break; |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 93 | struct global_rate_control { |
| 94 | int dummy; |
| 95 | }; |
| 96 | |
| 97 | struct sta_rate_control { |
| 98 | unsigned long last_rate_change; |
| 99 | u32 tx_num_failures; |
| 100 | u32 tx_num_xmit; |
| 101 | |
| 102 | unsigned long avg_rate_update; |
| 103 | u32 tx_avg_rate_sum; |
| 104 | u32 tx_avg_rate_num; |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 105 | |
| 106 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 107 | struct dentry *tx_avg_rate_sum_dentry; |
| 108 | struct dentry *tx_avg_rate_num_dentry; |
| 109 | #endif |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | |
| 113 | static void rate_control_simple_tx_status(void *priv, struct net_device *dev, |
| 114 | struct sk_buff *skb, |
| 115 | struct ieee80211_tx_status *status) |
| 116 | { |
| 117 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
| 118 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
| 119 | struct sta_info *sta; |
| 120 | struct sta_rate_control *srctrl; |
| 121 | |
| 122 | sta = sta_info_get(local, hdr->addr1); |
| 123 | |
| 124 | if (!sta) |
| 125 | return; |
| 126 | |
| 127 | srctrl = sta->rate_ctrl_priv; |
| 128 | srctrl->tx_num_xmit++; |
| 129 | if (status->excessive_retries) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 130 | srctrl->tx_num_failures++; |
| 131 | sta->tx_retry_failed++; |
| 132 | sta->tx_num_consecutive_failures++; |
| 133 | sta->tx_num_mpdu_fail++; |
| 134 | } else { |
| 135 | sta->last_ack_rssi[0] = sta->last_ack_rssi[1]; |
| 136 | sta->last_ack_rssi[1] = sta->last_ack_rssi[2]; |
| 137 | sta->last_ack_rssi[2] = status->ack_signal; |
| 138 | sta->tx_num_consecutive_failures = 0; |
| 139 | sta->tx_num_mpdu_ok++; |
| 140 | } |
| 141 | sta->tx_retry_count += status->retry_count; |
| 142 | sta->tx_num_mpdu_fail += status->retry_count; |
| 143 | |
| 144 | if (time_after(jiffies, |
| 145 | srctrl->last_rate_change + RATE_CONTROL_INTERVAL) && |
| 146 | srctrl->tx_num_xmit > RATE_CONTROL_MIN_TX) { |
| 147 | u32 per_failed; |
| 148 | srctrl->last_rate_change = jiffies; |
| 149 | |
| 150 | per_failed = (100 * sta->tx_num_mpdu_fail) / |
| 151 | (sta->tx_num_mpdu_fail + sta->tx_num_mpdu_ok); |
| 152 | /* TODO: calculate average per_failed to make adjusting |
| 153 | * parameters easier */ |
| 154 | #if 0 |
| 155 | if (net_ratelimit()) { |
| 156 | printk(KERN_DEBUG "MPDU fail=%d ok=%d per_failed=%d\n", |
| 157 | sta->tx_num_mpdu_fail, sta->tx_num_mpdu_ok, |
| 158 | per_failed); |
| 159 | } |
| 160 | #endif |
| 161 | |
Johannes Berg | 3ef8bed | 2007-07-10 19:32:09 +0200 | [diff] [blame] | 162 | /* |
| 163 | * XXX: Make these configurable once we have an |
| 164 | * interface to the rate control algorithms |
| 165 | */ |
| 166 | if (per_failed > RATE_CONTROL_NUM_DOWN) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 167 | rate_control_rate_dec(local, sta); |
Johannes Berg | 3ef8bed | 2007-07-10 19:32:09 +0200 | [diff] [blame] | 168 | } else if (per_failed < RATE_CONTROL_NUM_UP) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 169 | rate_control_rate_inc(local, sta); |
| 170 | } |
| 171 | srctrl->tx_avg_rate_sum += status->control.rate->rate; |
| 172 | srctrl->tx_avg_rate_num++; |
| 173 | srctrl->tx_num_failures = 0; |
| 174 | srctrl->tx_num_xmit = 0; |
| 175 | } else if (sta->tx_num_consecutive_failures >= |
| 176 | RATE_CONTROL_EMERG_DEC) { |
| 177 | rate_control_rate_dec(local, sta); |
| 178 | } |
| 179 | |
| 180 | if (srctrl->avg_rate_update + 60 * HZ < jiffies) { |
| 181 | srctrl->avg_rate_update = jiffies; |
| 182 | if (srctrl->tx_avg_rate_num > 0) { |
| 183 | #ifdef CONFIG_MAC80211_VERBOSE_DEBUG |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 184 | DECLARE_MAC_BUF(mac); |
| 185 | printk(KERN_DEBUG "%s: STA %s Average rate: " |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 186 | "%d (%d/%d)\n", |
Joe Perches | 0795af5 | 2007-10-03 17:59:30 -0700 | [diff] [blame] | 187 | dev->name, print_mac(mac, sta->addr), |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 188 | srctrl->tx_avg_rate_sum / |
| 189 | srctrl->tx_avg_rate_num, |
| 190 | srctrl->tx_avg_rate_sum, |
| 191 | srctrl->tx_avg_rate_num); |
| 192 | #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ |
| 193 | srctrl->tx_avg_rate_sum = 0; |
| 194 | srctrl->tx_avg_rate_num = 0; |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | sta_info_put(sta); |
| 199 | } |
| 200 | |
| 201 | |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 202 | static void |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 203 | rate_control_simple_get_rate(void *priv, struct net_device *dev, |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 204 | struct ieee80211_hw_mode *mode, |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 205 | struct sk_buff *skb, |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 206 | struct rate_selection *sel) |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 207 | { |
| 208 | struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 209 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 210 | struct sta_info *sta; |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 211 | int rateidx; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 212 | |
| 213 | sta = sta_info_get(local, hdr->addr1); |
| 214 | |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 215 | if (!sta) { |
| 216 | sel->rate = rate_lowest(local, mode, NULL); |
| 217 | return; |
| 218 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 219 | |
| 220 | rateidx = sta->txrate; |
| 221 | |
| 222 | if (rateidx >= mode->num_rates) |
| 223 | rateidx = mode->num_rates - 1; |
| 224 | |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 225 | sta_info_put(sta); |
| 226 | |
Mattias Nissler | 1abbe49 | 2007-12-20 13:50:07 +0100 | [diff] [blame] | 227 | sel->rate = &mode->rates[rateidx]; |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | |
| 231 | static void rate_control_simple_rate_init(void *priv, void *priv_sta, |
| 232 | struct ieee80211_local *local, |
| 233 | struct sta_info *sta) |
| 234 | { |
| 235 | struct ieee80211_hw_mode *mode; |
| 236 | int i; |
| 237 | sta->txrate = 0; |
| 238 | mode = local->oper_hw_mode; |
Larry Finger | eef6caf | 2007-07-02 22:36:38 -0700 | [diff] [blame] | 239 | /* TODO: This routine should consider using RSSI from previous packets |
| 240 | * as we need to have IEEE 802.1X auth succeed immediately after assoc.. |
| 241 | * Until that method is implemented, we will use the lowest supported rate |
| 242 | * as a workaround, */ |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 243 | for (i = 0; i < mode->num_rates; i++) { |
| 244 | if ((sta->supp_rates & BIT(i)) && |
Larry Finger | eef6caf | 2007-07-02 22:36:38 -0700 | [diff] [blame] | 245 | (mode->rates[i].flags & IEEE80211_RATE_SUPPORTED)) { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 246 | sta->txrate = i; |
Larry Finger | eef6caf | 2007-07-02 22:36:38 -0700 | [diff] [blame] | 247 | break; |
| 248 | } |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 249 | } |
| 250 | } |
| 251 | |
| 252 | |
| 253 | static void * rate_control_simple_alloc(struct ieee80211_local *local) |
| 254 | { |
| 255 | struct global_rate_control *rctrl; |
| 256 | |
| 257 | rctrl = kzalloc(sizeof(*rctrl), GFP_ATOMIC); |
| 258 | |
| 259 | return rctrl; |
| 260 | } |
| 261 | |
| 262 | |
| 263 | static void rate_control_simple_free(void *priv) |
| 264 | { |
| 265 | struct global_rate_control *rctrl = priv; |
| 266 | kfree(rctrl); |
| 267 | } |
| 268 | |
| 269 | |
| 270 | static void rate_control_simple_clear(void *priv) |
| 271 | { |
| 272 | } |
| 273 | |
| 274 | |
| 275 | static void * rate_control_simple_alloc_sta(void *priv, gfp_t gfp) |
| 276 | { |
| 277 | struct sta_rate_control *rctrl; |
| 278 | |
| 279 | rctrl = kzalloc(sizeof(*rctrl), gfp); |
| 280 | |
| 281 | return rctrl; |
| 282 | } |
| 283 | |
| 284 | |
| 285 | static void rate_control_simple_free_sta(void *priv, void *priv_sta) |
| 286 | { |
| 287 | struct sta_rate_control *rctrl = priv_sta; |
| 288 | kfree(rctrl); |
| 289 | } |
| 290 | |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 291 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 292 | |
| 293 | static int open_file_generic(struct inode *inode, struct file *file) |
| 294 | { |
| 295 | file->private_data = inode->i_private; |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | static ssize_t sta_tx_avg_rate_sum_read(struct file *file, |
| 300 | char __user *userbuf, |
| 301 | size_t count, loff_t *ppos) |
| 302 | { |
| 303 | struct sta_rate_control *srctrl = file->private_data; |
| 304 | char buf[20]; |
| 305 | |
| 306 | sprintf(buf, "%d\n", srctrl->tx_avg_rate_sum); |
| 307 | return simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf)); |
| 308 | } |
| 309 | |
| 310 | static const struct file_operations sta_tx_avg_rate_sum_ops = { |
| 311 | .read = sta_tx_avg_rate_sum_read, |
| 312 | .open = open_file_generic, |
| 313 | }; |
| 314 | |
| 315 | static ssize_t sta_tx_avg_rate_num_read(struct file *file, |
| 316 | char __user *userbuf, |
| 317 | size_t count, loff_t *ppos) |
| 318 | { |
| 319 | struct sta_rate_control *srctrl = file->private_data; |
| 320 | char buf[20]; |
| 321 | |
| 322 | sprintf(buf, "%d\n", srctrl->tx_avg_rate_num); |
| 323 | return simple_read_from_buffer(userbuf, count, ppos, buf, strlen(buf)); |
| 324 | } |
| 325 | |
| 326 | static const struct file_operations sta_tx_avg_rate_num_ops = { |
| 327 | .read = sta_tx_avg_rate_num_read, |
| 328 | .open = open_file_generic, |
| 329 | }; |
| 330 | |
| 331 | static void rate_control_simple_add_sta_debugfs(void *priv, void *priv_sta, |
| 332 | struct dentry *dir) |
| 333 | { |
| 334 | struct sta_rate_control *srctrl = priv_sta; |
| 335 | |
| 336 | srctrl->tx_avg_rate_num_dentry = |
| 337 | debugfs_create_file("rc_simple_sta_tx_avg_rate_num", 0400, |
| 338 | dir, srctrl, &sta_tx_avg_rate_num_ops); |
| 339 | srctrl->tx_avg_rate_sum_dentry = |
| 340 | debugfs_create_file("rc_simple_sta_tx_avg_rate_sum", 0400, |
| 341 | dir, srctrl, &sta_tx_avg_rate_sum_ops); |
| 342 | } |
| 343 | |
| 344 | static void rate_control_simple_remove_sta_debugfs(void *priv, void *priv_sta) |
| 345 | { |
| 346 | struct sta_rate_control *srctrl = priv_sta; |
| 347 | |
| 348 | debugfs_remove(srctrl->tx_avg_rate_sum_dentry); |
| 349 | debugfs_remove(srctrl->tx_avg_rate_num_dentry); |
| 350 | } |
| 351 | #endif |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 352 | |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 353 | static struct rate_control_ops mac80211_rcsimple = { |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 354 | .name = "simple", |
| 355 | .tx_status = rate_control_simple_tx_status, |
| 356 | .get_rate = rate_control_simple_get_rate, |
| 357 | .rate_init = rate_control_simple_rate_init, |
| 358 | .clear = rate_control_simple_clear, |
| 359 | .alloc = rate_control_simple_alloc, |
| 360 | .free = rate_control_simple_free, |
| 361 | .alloc_sta = rate_control_simple_alloc_sta, |
| 362 | .free_sta = rate_control_simple_free_sta, |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 363 | #ifdef CONFIG_MAC80211_DEBUGFS |
| 364 | .add_sta_debugfs = rate_control_simple_add_sta_debugfs, |
| 365 | .remove_sta_debugfs = rate_control_simple_remove_sta_debugfs, |
| 366 | #endif |
Jiri Benc | f0706e82 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 367 | }; |
Johannes Berg | 4b47589 | 2008-01-02 15:17:03 +0100 | [diff] [blame] | 368 | |
| 369 | MODULE_LICENSE("GPL"); |
| 370 | MODULE_DESCRIPTION("Simple rate control algorithm"); |
| 371 | |
| 372 | int __init rc80211_simple_init(void) |
| 373 | { |
| 374 | return ieee80211_rate_control_register(&mac80211_rcsimple); |
| 375 | } |
| 376 | |
| 377 | void __exit rc80211_simple_exit(void) |
| 378 | { |
| 379 | ieee80211_rate_control_unregister(&mac80211_rcsimple); |
| 380 | } |
| 381 | |
| 382 | #ifdef CONFIG_MAC80211_RC_SIMPLE_MODULE |
| 383 | module_init(rc80211_simple_init); |
| 384 | module_exit(rc80211_simple_exit); |
| 385 | #endif |