2 * Some IBSS support code for cfg80211.
7 #include <linux/etherdevice.h>
8 #include <linux/if_arp.h>
9 #include <linux/slab.h>
10 #include <linux/export.h>
11 #include <net/cfg80211.h>
12 #include "wext-compat.h"
17 void __cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid)
19 struct wireless_dev *wdev = dev->ieee80211_ptr;
20 struct cfg80211_bss *bss;
21 #ifdef CONFIG_CFG80211_WEXT
22 union iwreq_data wrqu;
25 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
31 bss = cfg80211_get_bss(wdev->wiphy, NULL, bssid,
32 wdev->ssid, wdev->ssid_len,
33 WLAN_CAPABILITY_IBSS, WLAN_CAPABILITY_IBSS);
38 if (wdev->current_bss) {
39 cfg80211_unhold_bss(wdev->current_bss);
40 cfg80211_put_bss(&wdev->current_bss->pub);
43 cfg80211_hold_bss(bss_from_pub(bss));
44 wdev->current_bss = bss_from_pub(bss);
46 wdev->sme_state = CFG80211_SME_CONNECTED;
47 cfg80211_upload_connect_keys(wdev);
49 nl80211_send_ibss_bssid(wiphy_to_dev(wdev->wiphy), dev, bssid,
51 #ifdef CONFIG_CFG80211_WEXT
52 memset(&wrqu, 0, sizeof(wrqu));
53 memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
54 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
58 void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp)
60 struct wireless_dev *wdev = dev->ieee80211_ptr;
61 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
62 struct cfg80211_event *ev;
65 trace_cfg80211_ibss_joined(dev, bssid);
67 CFG80211_DEV_WARN_ON(wdev->sme_state != CFG80211_SME_CONNECTING);
69 ev = kzalloc(sizeof(*ev), gfp);
73 ev->type = EVENT_IBSS_JOINED;
74 memcpy(ev->cr.bssid, bssid, ETH_ALEN);
76 spin_lock_irqsave(&wdev->event_lock, flags);
77 list_add_tail(&ev->list, &wdev->event_list);
78 spin_unlock_irqrestore(&wdev->event_lock, flags);
79 queue_work(cfg80211_wq, &rdev->event_work);
81 EXPORT_SYMBOL(cfg80211_ibss_joined);
83 int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
84 struct net_device *dev,
85 struct cfg80211_ibss_params *params,
86 struct cfg80211_cached_keys *connkeys)
88 struct wireless_dev *wdev = dev->ieee80211_ptr;
91 ASSERT_WDEV_LOCK(wdev);
96 if (!params->basic_rates) {
98 * If no rates were explicitly configured,
99 * use the mandatory rate set for 11b or
100 * 11a for maximum compatibility.
102 struct ieee80211_supported_band *sband =
103 rdev->wiphy.bands[params->chandef.chan->band];
105 u32 flag = params->chandef.chan->band == IEEE80211_BAND_5GHZ ?
106 IEEE80211_RATE_MANDATORY_A :
107 IEEE80211_RATE_MANDATORY_B;
109 for (j = 0; j < sband->n_bitrates; j++) {
110 if (sband->bitrates[j].flags & flag)
111 params->basic_rates |= BIT(j);
115 if (WARN_ON(wdev->connect_keys))
116 kfree(wdev->connect_keys);
117 wdev->connect_keys = connkeys;
119 wdev->ibss_fixed = params->channel_fixed;
120 #ifdef CONFIG_CFG80211_WEXT
121 wdev->wext.ibss.chandef = params->chandef;
123 wdev->sme_state = CFG80211_SME_CONNECTING;
125 err = cfg80211_can_use_chan(rdev, wdev, params->chandef.chan,
126 params->channel_fixed
128 : CHAN_MODE_EXCLUSIVE);
130 wdev->connect_keys = NULL;
134 err = rdev_join_ibss(rdev, dev, params);
136 wdev->connect_keys = NULL;
137 wdev->sme_state = CFG80211_SME_IDLE;
141 memcpy(wdev->ssid, params->ssid, params->ssid_len);
142 wdev->ssid_len = params->ssid_len;
147 int cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
148 struct net_device *dev,
149 struct cfg80211_ibss_params *params,
150 struct cfg80211_cached_keys *connkeys)
152 struct wireless_dev *wdev = dev->ieee80211_ptr;
155 mutex_lock(&rdev->devlist_mtx);
157 err = __cfg80211_join_ibss(rdev, dev, params, connkeys);
159 mutex_unlock(&rdev->devlist_mtx);
164 static void __cfg80211_clear_ibss(struct net_device *dev, bool nowext)
166 struct wireless_dev *wdev = dev->ieee80211_ptr;
167 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
170 ASSERT_WDEV_LOCK(wdev);
172 kfree(wdev->connect_keys);
173 wdev->connect_keys = NULL;
176 * Delete all the keys ... pairwise keys can't really
177 * exist any more anyway, but default keys might.
179 if (rdev->ops->del_key)
180 for (i = 0; i < 6; i++)
181 rdev_del_key(rdev, dev, i, false, NULL);
183 if (wdev->current_bss) {
184 cfg80211_unhold_bss(wdev->current_bss);
185 cfg80211_put_bss(&wdev->current_bss->pub);
188 wdev->current_bss = NULL;
189 wdev->sme_state = CFG80211_SME_IDLE;
191 #ifdef CONFIG_CFG80211_WEXT
193 wdev->wext.ibss.ssid_len = 0;
197 void cfg80211_clear_ibss(struct net_device *dev, bool nowext)
199 struct wireless_dev *wdev = dev->ieee80211_ptr;
202 __cfg80211_clear_ibss(dev, nowext);
206 int __cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
207 struct net_device *dev, bool nowext)
209 struct wireless_dev *wdev = dev->ieee80211_ptr;
212 ASSERT_WDEV_LOCK(wdev);
217 err = rdev_leave_ibss(rdev, dev);
222 __cfg80211_clear_ibss(dev, nowext);
227 int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
228 struct net_device *dev, bool nowext)
230 struct wireless_dev *wdev = dev->ieee80211_ptr;
234 err = __cfg80211_leave_ibss(rdev, dev, nowext);
240 #ifdef CONFIG_CFG80211_WEXT
241 int cfg80211_ibss_wext_join(struct cfg80211_registered_device *rdev,
242 struct wireless_dev *wdev)
244 struct cfg80211_cached_keys *ck = NULL;
245 enum ieee80211_band band;
248 ASSERT_WDEV_LOCK(wdev);
250 if (!wdev->wext.ibss.beacon_interval)
251 wdev->wext.ibss.beacon_interval = 100;
253 /* try to find an IBSS channel if none requested ... */
254 if (!wdev->wext.ibss.chandef.chan) {
255 wdev->wext.ibss.chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
257 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
258 struct ieee80211_supported_band *sband;
259 struct ieee80211_channel *chan;
261 sband = rdev->wiphy.bands[band];
265 for (i = 0; i < sband->n_channels; i++) {
266 chan = &sband->channels[i];
267 if (chan->flags & IEEE80211_CHAN_NO_IBSS)
269 if (chan->flags & IEEE80211_CHAN_DISABLED)
271 wdev->wext.ibss.chandef.chan = chan;
275 if (wdev->wext.ibss.chandef.chan)
279 if (!wdev->wext.ibss.chandef.chan)
283 /* don't join -- SSID is not there */
284 if (!wdev->wext.ibss.ssid_len)
287 if (!netif_running(wdev->netdev))
290 if (wdev->wext.keys) {
291 wdev->wext.keys->def = wdev->wext.default_key;
292 wdev->wext.keys->defmgmt = wdev->wext.default_mgmt_key;
295 wdev->wext.ibss.privacy = wdev->wext.default_key != -1;
297 if (wdev->wext.keys) {
298 ck = kmemdup(wdev->wext.keys, sizeof(*ck), GFP_KERNEL);
301 for (i = 0; i < 6; i++)
302 ck->params[i].key = ck->data[i];
304 err = __cfg80211_join_ibss(rdev, wdev->netdev,
305 &wdev->wext.ibss, ck);
312 int cfg80211_ibss_wext_siwfreq(struct net_device *dev,
313 struct iw_request_info *info,
314 struct iw_freq *wextfreq, char *extra)
316 struct wireless_dev *wdev = dev->ieee80211_ptr;
317 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
318 struct ieee80211_channel *chan = NULL;
321 /* call only for ibss! */
322 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
325 if (!rdev->ops->join_ibss)
328 freq = cfg80211_wext_freq(wdev->wiphy, wextfreq);
333 chan = ieee80211_get_channel(wdev->wiphy, freq);
336 if (chan->flags & IEEE80211_CHAN_NO_IBSS ||
337 chan->flags & IEEE80211_CHAN_DISABLED)
341 if (wdev->wext.ibss.chandef.chan == chan)
347 err = __cfg80211_leave_ibss(rdev, dev, true);
354 wdev->wext.ibss.chandef.chan = chan;
355 wdev->wext.ibss.chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
356 wdev->wext.ibss.channel_fixed = true;
358 /* cfg80211_ibss_wext_join will pick one if needed */
359 wdev->wext.ibss.channel_fixed = false;
362 mutex_lock(&rdev->devlist_mtx);
364 err = cfg80211_ibss_wext_join(rdev, wdev);
366 mutex_unlock(&rdev->devlist_mtx);
371 int cfg80211_ibss_wext_giwfreq(struct net_device *dev,
372 struct iw_request_info *info,
373 struct iw_freq *freq, char *extra)
375 struct wireless_dev *wdev = dev->ieee80211_ptr;
376 struct ieee80211_channel *chan = NULL;
378 /* call only for ibss! */
379 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
383 if (wdev->current_bss)
384 chan = wdev->current_bss->pub.channel;
385 else if (wdev->wext.ibss.chandef.chan)
386 chan = wdev->wext.ibss.chandef.chan;
390 freq->m = chan->center_freq;
395 /* no channel if not joining */
399 int cfg80211_ibss_wext_siwessid(struct net_device *dev,
400 struct iw_request_info *info,
401 struct iw_point *data, char *ssid)
403 struct wireless_dev *wdev = dev->ieee80211_ptr;
404 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
405 size_t len = data->length;
408 /* call only for ibss! */
409 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
412 if (!rdev->ops->join_ibss)
418 err = __cfg80211_leave_ibss(rdev, dev, true);
424 /* iwconfig uses nul termination in SSID.. */
425 if (len > 0 && ssid[len - 1] == '\0')
428 wdev->wext.ibss.ssid = wdev->ssid;
429 memcpy(wdev->wext.ibss.ssid, ssid, len);
430 wdev->wext.ibss.ssid_len = len;
432 mutex_lock(&rdev->devlist_mtx);
434 err = cfg80211_ibss_wext_join(rdev, wdev);
436 mutex_unlock(&rdev->devlist_mtx);
441 int cfg80211_ibss_wext_giwessid(struct net_device *dev,
442 struct iw_request_info *info,
443 struct iw_point *data, char *ssid)
445 struct wireless_dev *wdev = dev->ieee80211_ptr;
447 /* call only for ibss! */
448 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
454 if (wdev->ssid_len) {
456 data->length = wdev->ssid_len;
457 memcpy(ssid, wdev->ssid, data->length);
458 } else if (wdev->wext.ibss.ssid && wdev->wext.ibss.ssid_len) {
460 data->length = wdev->wext.ibss.ssid_len;
461 memcpy(ssid, wdev->wext.ibss.ssid, data->length);
468 int cfg80211_ibss_wext_siwap(struct net_device *dev,
469 struct iw_request_info *info,
470 struct sockaddr *ap_addr, char *extra)
472 struct wireless_dev *wdev = dev->ieee80211_ptr;
473 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
474 u8 *bssid = ap_addr->sa_data;
477 /* call only for ibss! */
478 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
481 if (!rdev->ops->join_ibss)
484 if (ap_addr->sa_family != ARPHRD_ETHER)
488 if (is_zero_ether_addr(bssid) || is_broadcast_ether_addr(bssid))
492 if (!bssid && !wdev->wext.ibss.bssid)
495 /* fixed already - and no change */
496 if (wdev->wext.ibss.bssid && bssid &&
497 ether_addr_equal(bssid, wdev->wext.ibss.bssid))
503 err = __cfg80211_leave_ibss(rdev, dev, true);
510 memcpy(wdev->wext.bssid, bssid, ETH_ALEN);
511 wdev->wext.ibss.bssid = wdev->wext.bssid;
513 wdev->wext.ibss.bssid = NULL;
515 mutex_lock(&rdev->devlist_mtx);
517 err = cfg80211_ibss_wext_join(rdev, wdev);
519 mutex_unlock(&rdev->devlist_mtx);
524 int cfg80211_ibss_wext_giwap(struct net_device *dev,
525 struct iw_request_info *info,
526 struct sockaddr *ap_addr, char *extra)
528 struct wireless_dev *wdev = dev->ieee80211_ptr;
530 /* call only for ibss! */
531 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
534 ap_addr->sa_family = ARPHRD_ETHER;
537 if (wdev->current_bss)
538 memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
539 else if (wdev->wext.ibss.bssid)
540 memcpy(ap_addr->sa_data, wdev->wext.ibss.bssid, ETH_ALEN);
542 memset(ap_addr->sa_data, 0, ETH_ALEN);