blob: 841df93807fc86fa0178cf282f4d9ce11b1c7317 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/kernel.h>
Johannes Bergff688082007-07-27 15:43:23 +020012#include <linux/rtnetlink.h>
Johannes Berg2c8dccc2008-04-08 15:14:40 -040013#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070014#include "ieee80211_i.h"
15
16struct rate_control_alg {
17 struct list_head list;
18 struct rate_control_ops *ops;
19};
20
21static LIST_HEAD(rate_ctrl_algs);
22static DEFINE_MUTEX(rate_ctrl_mutex);
23
Stefano Brivioc21b39a2007-12-19 01:26:16 +010024static char *ieee80211_default_rc_algo = CONFIG_MAC80211_RC_DEFAULT;
25module_param(ieee80211_default_rc_algo, charp, 0644);
26MODULE_PARM_DESC(ieee80211_default_rc_algo,
27 "Default rate control algorithm for mac80211 to use");
28
Jiri Bencf0706e82007-05-05 11:45:53 -070029int ieee80211_rate_control_register(struct rate_control_ops *ops)
30{
31 struct rate_control_alg *alg;
32
Johannes Bergac71c692007-10-28 14:17:44 +010033 if (!ops->name)
34 return -EINVAL;
35
Johannes Berg999acd92007-10-28 14:49:33 +010036 mutex_lock(&rate_ctrl_mutex);
37 list_for_each_entry(alg, &rate_ctrl_algs, list) {
38 if (!strcmp(alg->ops->name, ops->name)) {
39 /* don't register an algorithm twice */
40 WARN_ON(1);
Cyrill Gorcunovb808ab12007-12-13 15:52:11 -080041 mutex_unlock(&rate_ctrl_mutex);
Johannes Berg999acd92007-10-28 14:49:33 +010042 return -EALREADY;
43 }
44 }
45
Yoann Padioleaudd00cc42007-07-19 01:49:03 -070046 alg = kzalloc(sizeof(*alg), GFP_KERNEL);
Jiri Bencf0706e82007-05-05 11:45:53 -070047 if (alg == NULL) {
Johannes Berg999acd92007-10-28 14:49:33 +010048 mutex_unlock(&rate_ctrl_mutex);
Jiri Bencf0706e82007-05-05 11:45:53 -070049 return -ENOMEM;
50 }
Jiri Bencf0706e82007-05-05 11:45:53 -070051 alg->ops = ops;
52
Jiri Bencf0706e82007-05-05 11:45:53 -070053 list_add_tail(&alg->list, &rate_ctrl_algs);
54 mutex_unlock(&rate_ctrl_mutex);
55
56 return 0;
57}
58EXPORT_SYMBOL(ieee80211_rate_control_register);
59
60void ieee80211_rate_control_unregister(struct rate_control_ops *ops)
61{
62 struct rate_control_alg *alg;
63
64 mutex_lock(&rate_ctrl_mutex);
65 list_for_each_entry(alg, &rate_ctrl_algs, list) {
66 if (alg->ops == ops) {
67 list_del(&alg->list);
Cyrill Gorcunov20880e82007-12-13 16:17:03 -080068 kfree(alg);
Jiri Bencf0706e82007-05-05 11:45:53 -070069 break;
70 }
71 }
72 mutex_unlock(&rate_ctrl_mutex);
Jiri Bencf0706e82007-05-05 11:45:53 -070073}
74EXPORT_SYMBOL(ieee80211_rate_control_unregister);
75
76static struct rate_control_ops *
77ieee80211_try_rate_control_ops_get(const char *name)
78{
79 struct rate_control_alg *alg;
80 struct rate_control_ops *ops = NULL;
81
Johannes Bergac71c692007-10-28 14:17:44 +010082 if (!name)
83 return NULL;
84
Jiri Bencf0706e82007-05-05 11:45:53 -070085 mutex_lock(&rate_ctrl_mutex);
86 list_for_each_entry(alg, &rate_ctrl_algs, list) {
Johannes Bergac71c692007-10-28 14:17:44 +010087 if (!strcmp(alg->ops->name, name))
Jiri Bencf0706e82007-05-05 11:45:53 -070088 if (try_module_get(alg->ops->module)) {
89 ops = alg->ops;
90 break;
91 }
92 }
93 mutex_unlock(&rate_ctrl_mutex);
94 return ops;
95}
96
Stefano Brivioc21b39a2007-12-19 01:26:16 +010097/* Get the rate control algorithm. */
Jiri Bencf0706e82007-05-05 11:45:53 -070098static struct rate_control_ops *
99ieee80211_rate_control_ops_get(const char *name)
100{
101 struct rate_control_ops *ops;
Stefano Brivioc21b39a2007-12-19 01:26:16 +0100102 const char *alg_name;
Jiri Bencf0706e82007-05-05 11:45:53 -0700103
Johannes Bergac71c692007-10-28 14:17:44 +0100104 if (!name)
Stefano Brivioc21b39a2007-12-19 01:26:16 +0100105 alg_name = ieee80211_default_rc_algo;
106 else
107 alg_name = name;
Johannes Bergac71c692007-10-28 14:17:44 +0100108
Stefano Brivioc21b39a2007-12-19 01:26:16 +0100109 ops = ieee80211_try_rate_control_ops_get(alg_name);
Jiri Bencf0706e82007-05-05 11:45:53 -0700110 if (!ops) {
Stefano Brivioc21b39a2007-12-19 01:26:16 +0100111 request_module("rc80211_%s", alg_name);
112 ops = ieee80211_try_rate_control_ops_get(alg_name);
Jiri Bencf0706e82007-05-05 11:45:53 -0700113 }
Stefano Brivioc21b39a2007-12-19 01:26:16 +0100114 if (!ops && name)
115 /* try default if specific alg requested but not found */
116 ops = ieee80211_try_rate_control_ops_get(ieee80211_default_rc_algo);
117
Johannes Berg4b475892008-01-02 15:17:03 +0100118 /* try built-in one if specific alg requested but not found */
119 if (!ops && strlen(CONFIG_MAC80211_RC_DEFAULT))
120 ops = ieee80211_try_rate_control_ops_get(CONFIG_MAC80211_RC_DEFAULT);
121
Jiri Bencf0706e82007-05-05 11:45:53 -0700122 return ops;
123}
124
125static void ieee80211_rate_control_ops_put(struct rate_control_ops *ops)
126{
127 module_put(ops->module);
128}
129
130struct rate_control_ref *rate_control_alloc(const char *name,
131 struct ieee80211_local *local)
132{
133 struct rate_control_ref *ref;
134
135 ref = kmalloc(sizeof(struct rate_control_ref), GFP_KERNEL);
136 if (!ref)
137 goto fail_ref;
138 kref_init(&ref->kref);
139 ref->ops = ieee80211_rate_control_ops_get(name);
140 if (!ref->ops)
141 goto fail_ops;
142 ref->priv = ref->ops->alloc(local);
143 if (!ref->priv)
144 goto fail_priv;
145 return ref;
146
147fail_priv:
148 ieee80211_rate_control_ops_put(ref->ops);
149fail_ops:
150 kfree(ref);
151fail_ref:
152 return NULL;
153}
154
155static void rate_control_release(struct kref *kref)
156{
157 struct rate_control_ref *ctrl_ref;
158
159 ctrl_ref = container_of(kref, struct rate_control_ref, kref);
160 ctrl_ref->ops->free(ctrl_ref->priv);
161 ieee80211_rate_control_ops_put(ctrl_ref->ops);
162 kfree(ctrl_ref);
163}
164
Mattias Nissler1abbe492007-12-20 13:50:07 +0100165void rate_control_get_rate(struct net_device *dev,
Johannes Berg8318d782008-01-24 19:38:38 +0100166 struct ieee80211_supported_band *sband,
167 struct sk_buff *skb,
Mattias Nissler1abbe492007-12-20 13:50:07 +0100168 struct rate_selection *sel)
169{
170 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
171 struct rate_control_ref *ref = local->rate_ctrl;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100172 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
Johannes Bergd0709a62008-02-25 16:27:46 +0100173 struct sta_info *sta;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100174 int i;
Mattias Nissler1abbe492007-12-20 13:50:07 +0100175
Johannes Bergd0709a62008-02-25 16:27:46 +0100176 rcu_read_lock();
177 sta = sta_info_get(local, hdr->addr1);
178
Mattias Nissler1abbe492007-12-20 13:50:07 +0100179 memset(sel, 0, sizeof(struct rate_selection));
180
Johannes Berg8318d782008-01-24 19:38:38 +0100181 ref->ops->get_rate(ref->priv, dev, sband, skb, sel);
Mattias Nissler1abbe492007-12-20 13:50:07 +0100182
183 /* Select a non-ERP backup rate. */
184 if (!sel->nonerp) {
Johannes Berg8318d782008-01-24 19:38:38 +0100185 for (i = 0; i < sband->n_bitrates; i++) {
186 struct ieee80211_rate *rate = &sband->bitrates[i];
187 if (sel->rate->bitrate < rate->bitrate)
Mattias Nissler1abbe492007-12-20 13:50:07 +0100188 break;
189
Johannes Berg8318d782008-01-24 19:38:38 +0100190 if (rate_supported(sta, sband->band, i) &&
191 !(rate->flags & IEEE80211_RATE_ERP_G))
Mattias Nissler1abbe492007-12-20 13:50:07 +0100192 sel->nonerp = rate;
193 }
194 }
195
Johannes Bergd0709a62008-02-25 16:27:46 +0100196 rcu_read_unlock();
Mattias Nissler1abbe492007-12-20 13:50:07 +0100197}
198
Jiri Bencf0706e82007-05-05 11:45:53 -0700199struct rate_control_ref *rate_control_get(struct rate_control_ref *ref)
200{
201 kref_get(&ref->kref);
202 return ref;
203}
204
205void rate_control_put(struct rate_control_ref *ref)
206{
207 kref_put(&ref->kref, rate_control_release);
208}
Johannes Bergff688082007-07-27 15:43:23 +0200209
210int ieee80211_init_rate_ctrl_alg(struct ieee80211_local *local,
211 const char *name)
212{
213 struct rate_control_ref *ref, *old;
214
215 ASSERT_RTNL();
Johannes Bergf9d540e2007-09-28 14:02:09 +0200216 if (local->open_count || netif_running(local->mdev))
Johannes Bergff688082007-07-27 15:43:23 +0200217 return -EBUSY;
218
219 ref = rate_control_alloc(name, local);
220 if (!ref) {
221 printk(KERN_WARNING "%s: Failed to select rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400222 "algorithm\n", wiphy_name(local->hw.wiphy));
Johannes Bergff688082007-07-27 15:43:23 +0200223 return -ENOENT;
224 }
225
226 old = local->rate_ctrl;
227 local->rate_ctrl = ref;
228 if (old) {
229 rate_control_put(old);
230 sta_info_flush(local, NULL);
231 }
232
233 printk(KERN_DEBUG "%s: Selected rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400234 "algorithm '%s'\n", wiphy_name(local->hw.wiphy),
Johannes Bergff688082007-07-27 15:43:23 +0200235 ref->ops->name);
236
237
238 return 0;
239}
240
241void rate_control_deinitialize(struct ieee80211_local *local)
242{
243 struct rate_control_ref *ref;
244
245 ref = local->rate_ctrl;
246 local->rate_ctrl = NULL;
247 rate_control_put(ref);
248}
Stefano Brivioc21b39a2007-12-19 01:26:16 +0100249