2 * Some IBSS support code for cfg80211.
4 * Copyright 2009 Johannes Berg <johannes@sipsolutions.net>
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->wiphy, &wdev->current_bss->pub);
43 cfg80211_hold_bss(bss_from_pub(bss));
44 wdev->current_bss = bss_from_pub(bss);
46 cfg80211_upload_connect_keys(wdev);
48 nl80211_send_ibss_bssid(wiphy_to_dev(wdev->wiphy), dev, bssid,
50 #ifdef CONFIG_CFG80211_WEXT
51 memset(&wrqu, 0, sizeof(wrqu));
52 memcpy(wrqu.ap_addr.sa_data, bssid, ETH_ALEN);
53 wireless_send_event(dev, SIOCGIWAP, &wrqu, NULL);
57 void cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid, gfp_t gfp)
59 struct wireless_dev *wdev = dev->ieee80211_ptr;
60 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
61 struct cfg80211_event *ev;
64 trace_cfg80211_ibss_joined(dev, bssid);
66 ev = kzalloc(sizeof(*ev), gfp);
70 ev->type = EVENT_IBSS_JOINED;
71 memcpy(ev->cr.bssid, bssid, ETH_ALEN);
73 spin_lock_irqsave(&wdev->event_lock, flags);
74 list_add_tail(&ev->list, &wdev->event_list);
75 spin_unlock_irqrestore(&wdev->event_lock, flags);
76 queue_work(cfg80211_wq, &rdev->event_work);
78 EXPORT_SYMBOL(cfg80211_ibss_joined);
80 int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
81 struct net_device *dev,
82 struct cfg80211_ibss_params *params,
83 struct cfg80211_cached_keys *connkeys)
85 struct wireless_dev *wdev = dev->ieee80211_ptr;
86 struct ieee80211_channel *check_chan;
87 u8 radar_detect_width = 0;
90 ASSERT_WDEV_LOCK(wdev);
95 if (!params->basic_rates) {
97 * If no rates were explicitly configured,
98 * use the mandatory rate set for 11b or
99 * 11a for maximum compatibility.
101 struct ieee80211_supported_band *sband =
102 rdev->wiphy.bands[params->chandef.chan->band];
104 u32 flag = params->chandef.chan->band == IEEE80211_BAND_5GHZ ?
105 IEEE80211_RATE_MANDATORY_A :
106 IEEE80211_RATE_MANDATORY_B;
108 for (j = 0; j < sband->n_bitrates; j++) {
109 if (sband->bitrates[j].flags & flag)
110 params->basic_rates |= BIT(j);
114 if (WARN_ON(wdev->connect_keys))
115 kfree(wdev->connect_keys);
116 wdev->connect_keys = connkeys;
118 wdev->ibss_fixed = params->channel_fixed;
119 wdev->ibss_dfs_possible = params->userspace_handles_dfs;
120 #ifdef CONFIG_CFG80211_WEXT
121 wdev->wext.ibss.chandef = params->chandef;
123 check_chan = params->chandef.chan;
124 if (params->userspace_handles_dfs) {
125 /* use channel NULL to check for radar even if the current
126 * channel is not a radar channel - it might decide to change
127 * to DFS channel later.
129 radar_detect_width = BIT(params->chandef.width);
133 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
135 (params->channel_fixed &&
138 : CHAN_MODE_EXCLUSIVE,
142 wdev->connect_keys = NULL;
146 err = rdev_join_ibss(rdev, dev, params);
148 wdev->connect_keys = NULL;
152 memcpy(wdev->ssid, params->ssid, params->ssid_len);
153 wdev->ssid_len = params->ssid_len;
158 int cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
159 struct net_device *dev,
160 struct cfg80211_ibss_params *params,
161 struct cfg80211_cached_keys *connkeys)
163 struct wireless_dev *wdev = dev->ieee80211_ptr;
169 err = __cfg80211_join_ibss(rdev, dev, params, connkeys);
175 static void __cfg80211_clear_ibss(struct net_device *dev, bool nowext)
177 struct wireless_dev *wdev = dev->ieee80211_ptr;
178 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
181 ASSERT_WDEV_LOCK(wdev);
183 kfree(wdev->connect_keys);
184 wdev->connect_keys = NULL;
187 * Delete all the keys ... pairwise keys can't really
188 * exist any more anyway, but default keys might.
190 if (rdev->ops->del_key)
191 for (i = 0; i < 6; i++)
192 rdev_del_key(rdev, dev, i, false, NULL);
194 if (wdev->current_bss) {
195 cfg80211_unhold_bss(wdev->current_bss);
196 cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
199 wdev->current_bss = NULL;
201 #ifdef CONFIG_CFG80211_WEXT
203 wdev->wext.ibss.ssid_len = 0;
207 void cfg80211_clear_ibss(struct net_device *dev, bool nowext)
209 struct wireless_dev *wdev = dev->ieee80211_ptr;
212 __cfg80211_clear_ibss(dev, nowext);
216 int __cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
217 struct net_device *dev, bool nowext)
219 struct wireless_dev *wdev = dev->ieee80211_ptr;
222 ASSERT_WDEV_LOCK(wdev);
227 err = rdev_leave_ibss(rdev, dev);
232 __cfg80211_clear_ibss(dev, nowext);
237 int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
238 struct net_device *dev, bool nowext)
240 struct wireless_dev *wdev = dev->ieee80211_ptr;
244 err = __cfg80211_leave_ibss(rdev, dev, nowext);
250 #ifdef CONFIG_CFG80211_WEXT
251 int cfg80211_ibss_wext_join(struct cfg80211_registered_device *rdev,
252 struct wireless_dev *wdev)
254 struct cfg80211_cached_keys *ck = NULL;
255 enum ieee80211_band band;
258 ASSERT_WDEV_LOCK(wdev);
260 if (!wdev->wext.ibss.beacon_interval)
261 wdev->wext.ibss.beacon_interval = 100;
263 /* try to find an IBSS channel if none requested ... */
264 if (!wdev->wext.ibss.chandef.chan) {
265 struct ieee80211_channel *new_chan = NULL;
267 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
268 struct ieee80211_supported_band *sband;
269 struct ieee80211_channel *chan;
271 sband = rdev->wiphy.bands[band];
275 for (i = 0; i < sband->n_channels; i++) {
276 chan = &sband->channels[i];
277 if (chan->flags & IEEE80211_CHAN_NO_IBSS)
279 if (chan->flags & IEEE80211_CHAN_DISABLED)
292 cfg80211_chandef_create(&wdev->wext.ibss.chandef, new_chan,
296 /* don't join -- SSID is not there */
297 if (!wdev->wext.ibss.ssid_len)
300 if (!netif_running(wdev->netdev))
303 if (wdev->wext.keys) {
304 wdev->wext.keys->def = wdev->wext.default_key;
305 wdev->wext.keys->defmgmt = wdev->wext.default_mgmt_key;
308 wdev->wext.ibss.privacy = wdev->wext.default_key != -1;
310 if (wdev->wext.keys) {
311 ck = kmemdup(wdev->wext.keys, sizeof(*ck), GFP_KERNEL);
314 for (i = 0; i < 6; i++)
315 ck->params[i].key = ck->data[i];
317 err = __cfg80211_join_ibss(rdev, wdev->netdev,
318 &wdev->wext.ibss, ck);
325 int cfg80211_ibss_wext_siwfreq(struct net_device *dev,
326 struct iw_request_info *info,
327 struct iw_freq *wextfreq, char *extra)
329 struct wireless_dev *wdev = dev->ieee80211_ptr;
330 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
331 struct ieee80211_channel *chan = NULL;
334 /* call only for ibss! */
335 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
338 if (!rdev->ops->join_ibss)
341 freq = cfg80211_wext_freq(wdev->wiphy, wextfreq);
346 chan = ieee80211_get_channel(wdev->wiphy, freq);
349 if (chan->flags & IEEE80211_CHAN_NO_IBSS ||
350 chan->flags & IEEE80211_CHAN_DISABLED)
354 if (wdev->wext.ibss.chandef.chan == chan)
360 err = __cfg80211_leave_ibss(rdev, dev, true);
367 cfg80211_chandef_create(&wdev->wext.ibss.chandef, chan,
369 wdev->wext.ibss.channel_fixed = true;
371 /* cfg80211_ibss_wext_join will pick one if needed */
372 wdev->wext.ibss.channel_fixed = false;
376 err = cfg80211_ibss_wext_join(rdev, wdev);
382 int cfg80211_ibss_wext_giwfreq(struct net_device *dev,
383 struct iw_request_info *info,
384 struct iw_freq *freq, char *extra)
386 struct wireless_dev *wdev = dev->ieee80211_ptr;
387 struct ieee80211_channel *chan = NULL;
389 /* call only for ibss! */
390 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
394 if (wdev->current_bss)
395 chan = wdev->current_bss->pub.channel;
396 else if (wdev->wext.ibss.chandef.chan)
397 chan = wdev->wext.ibss.chandef.chan;
401 freq->m = chan->center_freq;
406 /* no channel if not joining */
410 int cfg80211_ibss_wext_siwessid(struct net_device *dev,
411 struct iw_request_info *info,
412 struct iw_point *data, char *ssid)
414 struct wireless_dev *wdev = dev->ieee80211_ptr;
415 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
416 size_t len = data->length;
419 /* call only for ibss! */
420 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
423 if (!rdev->ops->join_ibss)
429 err = __cfg80211_leave_ibss(rdev, dev, true);
435 /* iwconfig uses nul termination in SSID.. */
436 if (len > 0 && ssid[len - 1] == '\0')
439 wdev->wext.ibss.ssid = wdev->ssid;
440 memcpy(wdev->wext.ibss.ssid, ssid, len);
441 wdev->wext.ibss.ssid_len = len;
444 err = cfg80211_ibss_wext_join(rdev, wdev);
450 int cfg80211_ibss_wext_giwessid(struct net_device *dev,
451 struct iw_request_info *info,
452 struct iw_point *data, char *ssid)
454 struct wireless_dev *wdev = dev->ieee80211_ptr;
456 /* call only for ibss! */
457 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
463 if (wdev->ssid_len) {
465 data->length = wdev->ssid_len;
466 memcpy(ssid, wdev->ssid, data->length);
467 } else if (wdev->wext.ibss.ssid && wdev->wext.ibss.ssid_len) {
469 data->length = wdev->wext.ibss.ssid_len;
470 memcpy(ssid, wdev->wext.ibss.ssid, data->length);
477 int cfg80211_ibss_wext_siwap(struct net_device *dev,
478 struct iw_request_info *info,
479 struct sockaddr *ap_addr, char *extra)
481 struct wireless_dev *wdev = dev->ieee80211_ptr;
482 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
483 u8 *bssid = ap_addr->sa_data;
486 /* call only for ibss! */
487 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
490 if (!rdev->ops->join_ibss)
493 if (ap_addr->sa_family != ARPHRD_ETHER)
497 if (is_zero_ether_addr(bssid) || is_broadcast_ether_addr(bssid))
501 if (!bssid && !wdev->wext.ibss.bssid)
504 /* fixed already - and no change */
505 if (wdev->wext.ibss.bssid && bssid &&
506 ether_addr_equal(bssid, wdev->wext.ibss.bssid))
512 err = __cfg80211_leave_ibss(rdev, dev, true);
519 memcpy(wdev->wext.bssid, bssid, ETH_ALEN);
520 wdev->wext.ibss.bssid = wdev->wext.bssid;
522 wdev->wext.ibss.bssid = NULL;
525 err = cfg80211_ibss_wext_join(rdev, wdev);
531 int cfg80211_ibss_wext_giwap(struct net_device *dev,
532 struct iw_request_info *info,
533 struct sockaddr *ap_addr, char *extra)
535 struct wireless_dev *wdev = dev->ieee80211_ptr;
537 /* call only for ibss! */
538 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_ADHOC))
541 ap_addr->sa_family = ARPHRD_ETHER;
544 if (wdev->current_bss)
545 memcpy(ap_addr->sa_data, wdev->current_bss->pub.bssid, ETH_ALEN);
546 else if (wdev->wext.ibss.bssid)
547 memcpy(ap_addr->sa_data, wdev->wext.ibss.bssid, ETH_ALEN);
549 memset(ap_addr->sa_data, 0, ETH_ALEN);