nl80211: don't assume wdev->netdev exists
[linux-2.6-block.git] / net / wireless / core.h
CommitLineData
704232c2
JB
1/*
2 * Wireless configuration interface internals.
3 *
5f2aa25e 4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
704232c2
JB
5 */
6#ifndef __NET_WIRELESS_CORE_H
7#define __NET_WIRELESS_CORE_H
8#include <linux/mutex.h>
9#include <linux/list.h>
10#include <linux/netdevice.h>
2a519311
JB
11#include <linux/kref.h>
12#include <linux/rbtree.h>
1ac61302 13#include <linux/debugfs.h>
1f87f7d3
JB
14#include <linux/rfkill.h>
15#include <linux/workqueue.h>
c5a7e582 16#include <linux/rtnetlink.h>
704232c2 17#include <net/genetlink.h>
704232c2 18#include <net/cfg80211.h>
3f2355cb 19#include "reg.h"
704232c2
JB
20
21struct cfg80211_registered_device {
3dcf670b 22 const struct cfg80211_ops *ops;
704232c2
JB
23 struct list_head list;
24 /* we hold this mutex during any call so that
25 * we cannot do multiple calls at once, and also
26 * to avoid the deregister call to proceed while
27 * any call is in progress */
28 struct mutex mtx;
29
1f87f7d3
JB
30 /* rfkill support */
31 struct rfkill_ops rfkill_ops;
32 struct rfkill *rfkill;
33 struct work_struct rfkill_sync;
34
3f2355cb
LR
35 /* ISO / IEC 3166 alpha2 for which this device is receiving
36 * country IEs on, this can help disregard country IEs from APs
37 * on the same alpha2 quickly. The alpha2 may differ from
38 * cfg80211_regdomain's alpha2 when an intersection has occurred.
39 * If the AP is reconfigured this can also be used to tell us if
40 * the country on the country IE changed. */
41 char country_ie_alpha2[2];
42
43 /* If a Country IE has been received this tells us the environment
44 * which its telling us its in. This defaults to ENVIRON_ANY */
45 enum environment_cap env;
46
704232c2 47 /* wiphy index, internal only */
b5850a7a 48 int wiphy_idx;
704232c2 49
89a54e48 50 /* associated wireless interfaces */
704232c2 51 struct mutex devlist_mtx;
5f2aa25e 52 /* protected by devlist_mtx or RCU */
89a54e48
JB
53 struct list_head wdev_list;
54 int devlist_generation, wdev_id;
ad002395
JB
55 int opencount; /* also protected by devlist_mtx */
56 wait_queue_head_t dev_wait;
704232c2 57
5e760230
JB
58 u32 ap_beacons_nlpid;
59
c5a7e582 60 /* protected by RTNL only */
dbbae26a
MK
61 int num_running_ifaces;
62 int num_running_monitor_ifaces;
63
b78e8cea
MK
64 struct ieee80211_channel *monitor_channel;
65 enum nl80211_channel_type monitor_channel_type;
66
2a519311
JB
67 /* BSSes/scanning */
68 spinlock_t bss_lock;
69 struct list_head bss_list;
70 struct rb_root bss_tree;
71 u32 bss_generation;
72 struct cfg80211_scan_request *scan_req; /* protected by RTNL */
807f8a8c 73 struct cfg80211_sched_scan_request *sched_scan_req;
cb3a8eec 74 unsigned long suspend_at;
667503dd 75 struct work_struct scan_done_wk;
807f8a8c 76 struct work_struct sched_scan_results_wk;
2a519311 77
c10841ca
LC
78 struct mutex sched_scan_mtx;
79
aff89a9b
JB
80#ifdef CONFIG_NL80211_TESTMODE
81 struct genl_info *testmode_info;
82#endif
83
6829c878 84 struct work_struct conn_work;
667503dd 85 struct work_struct event_work;
6829c878 86
ff1b6e69
JB
87 struct cfg80211_wowlan *wowlan;
88
704232c2
JB
89 /* must be last because of the way we do wiphy_priv(),
90 * and it should at least be aligned to NETDEV_ALIGN */
91 struct wiphy wiphy __attribute__((__aligned__(NETDEV_ALIGN)));
92};
93
94static inline
95struct cfg80211_registered_device *wiphy_to_dev(struct wiphy *wiphy)
96{
97 BUG_ON(!wiphy);
98 return container_of(wiphy, struct cfg80211_registered_device, wiphy);
99}
100
85fd129a
LR
101/* Note 0 is valid, hence phy0 */
102static inline
103bool wiphy_idx_valid(int wiphy_idx)
104{
a02cec21 105 return wiphy_idx >= 0;
85fd129a
LR
106}
107
ff1b6e69
JB
108static inline void
109cfg80211_rdev_free_wowlan(struct cfg80211_registered_device *rdev)
110{
111 int i;
112
113 if (!rdev->wowlan)
114 return;
115 for (i = 0; i < rdev->wowlan->n_patterns; i++)
116 kfree(rdev->wowlan->patterns[i].mask);
117 kfree(rdev->wowlan->patterns);
118 kfree(rdev->wowlan);
119}
e60d7443
AB
120
121extern struct workqueue_struct *cfg80211_wq;
a1794390 122extern struct mutex cfg80211_mutex;
79c97e97 123extern struct list_head cfg80211_rdev_list;
f5ea9120 124extern int cfg80211_rdev_list_generation;
704232c2 125
46a5ebaf
JB
126static inline void assert_cfg80211_lock(void)
127{
128 lockdep_assert_held(&cfg80211_mutex);
129}
761cf7ec 130
806a9e39
LR
131/*
132 * You can use this to mark a wiphy_idx as not having an associated wiphy.
79c97e97 133 * It guarantees cfg80211_rdev_by_wiphy_idx(wiphy_idx) will return NULL
806a9e39
LR
134 */
135#define WIPHY_IDX_STALE -1
136
2a519311
JB
137struct cfg80211_internal_bss {
138 struct list_head list;
139 struct rb_node rbn;
140 unsigned long ts;
141 struct kref ref;
19957bb3 142 atomic_t hold;
34a6eddb
JM
143 bool beacon_ies_allocated;
144 bool proberesp_ies_allocated;
a08c1c1a 145
2a519311
JB
146 /* must be last because of priv member */
147 struct cfg80211_bss pub;
148};
149
19957bb3
JB
150static inline struct cfg80211_internal_bss *bss_from_pub(struct cfg80211_bss *pub)
151{
152 return container_of(pub, struct cfg80211_internal_bss, pub);
153}
154
155static inline void cfg80211_hold_bss(struct cfg80211_internal_bss *bss)
156{
157 atomic_inc(&bss->hold);
158}
159
160static inline void cfg80211_unhold_bss(struct cfg80211_internal_bss *bss)
161{
162 int r = atomic_dec_return(&bss->hold);
163 WARN_ON(r < 0);
164}
165
166
79c97e97 167struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx);
806a9e39
LR
168int get_wiphy_idx(struct wiphy *wiphy);
169
79c97e97 170/* requires cfg80211_rdev_mutex to be held! */
806a9e39
LR
171struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx);
172
55682965
JB
173/* identical to cfg80211_get_dev_from_info but only operate on ifindex */
174extern struct cfg80211_registered_device *
463d0183
JB
175cfg80211_get_dev_from_ifindex(struct net *net, int ifindex);
176
177int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
178 struct net *net);
55682965 179
79c97e97 180static inline void cfg80211_lock_rdev(struct cfg80211_registered_device *rdev)
667503dd 181{
79c97e97 182 mutex_lock(&rdev->mtx);
667503dd
JB
183}
184
79c97e97 185static inline void cfg80211_unlock_rdev(struct cfg80211_registered_device *rdev)
4d0c8aea 186{
79c97e97
JB
187 BUG_ON(IS_ERR(rdev) || !rdev);
188 mutex_unlock(&rdev->mtx);
4d0c8aea 189}
55682965 190
667503dd
JB
191static inline void wdev_lock(struct wireless_dev *wdev)
192 __acquires(wdev)
193{
194 mutex_lock(&wdev->mtx);
195 __acquire(wdev->mtx);
196}
197
198static inline void wdev_unlock(struct wireless_dev *wdev)
199 __releases(wdev)
200{
201 __release(wdev->mtx);
202 mutex_unlock(&wdev->mtx);
203}
204
46a5ebaf
JB
205#define ASSERT_RDEV_LOCK(rdev) lockdep_assert_held(&(rdev)->mtx)
206#define ASSERT_WDEV_LOCK(wdev) lockdep_assert_held(&(wdev)->mtx)
667503dd 207
dbbae26a
MK
208static inline bool cfg80211_has_monitors_only(struct cfg80211_registered_device *rdev)
209{
c5a7e582 210 ASSERT_RTNL();
dbbae26a
MK
211
212 return rdev->num_running_ifaces == rdev->num_running_monitor_ifaces &&
213 rdev->num_running_ifaces > 0;
214}
215
667503dd
JB
216enum cfg80211_event_type {
217 EVENT_CONNECT_RESULT,
218 EVENT_ROAMED,
219 EVENT_DISCONNECTED,
220 EVENT_IBSS_JOINED,
221};
222
223struct cfg80211_event {
224 struct list_head list;
225 enum cfg80211_event_type type;
226
227 union {
228 struct {
229 u8 bssid[ETH_ALEN];
230 const u8 *req_ie;
231 const u8 *resp_ie;
232 size_t req_ie_len;
233 size_t resp_ie_len;
234 u16 status;
235 } cr;
236 struct {
667503dd
JB
237 const u8 *req_ie;
238 const u8 *resp_ie;
239 size_t req_ie_len;
240 size_t resp_ie_len;
adbde344 241 struct cfg80211_bss *bss;
667503dd
JB
242 } rm;
243 struct {
244 const u8 *ie;
245 size_t ie_len;
246 u16 reason;
247 } dc;
248 struct {
249 u8 bssid[ETH_ALEN];
250 } ij;
251 };
252};
253
fffd0934
JB
254struct cfg80211_cached_keys {
255 struct key_params params[6];
256 u8 data[6][WLAN_MAX_KEY_LEN];
257 int def, defmgmt;
258};
259
26ab9a0c
MK
260enum cfg80211_chan_mode {
261 CHAN_MODE_UNDEFINED,
262 CHAN_MODE_SHARED,
263 CHAN_MODE_EXCLUSIVE,
264};
265
667503dd 266
704232c2 267/* free object */
79c97e97 268extern void cfg80211_dev_free(struct cfg80211_registered_device *rdev);
704232c2 269
79c97e97 270extern int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
55682965
JB
271 char *newname);
272
8318d78a 273void ieee80211_set_bitrate_flags(struct wiphy *wiphy);
8318d78a 274
2a519311 275void cfg80211_bss_expire(struct cfg80211_registered_device *dev);
cb3a8eec
DW
276void cfg80211_bss_age(struct cfg80211_registered_device *dev,
277 unsigned long age_secs);
2a519311 278
04a773ad 279/* IBSS */
667503dd
JB
280int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
281 struct net_device *dev,
fffd0934
JB
282 struct cfg80211_ibss_params *params,
283 struct cfg80211_cached_keys *connkeys);
04a773ad
JB
284int cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
285 struct net_device *dev,
fffd0934
JB
286 struct cfg80211_ibss_params *params,
287 struct cfg80211_cached_keys *connkeys);
9d308429 288void cfg80211_clear_ibss(struct net_device *dev, bool nowext);
98d3a7ca
JB
289int __cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
290 struct net_device *dev, bool nowext);
04a773ad 291int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
9d308429 292 struct net_device *dev, bool nowext);
667503dd 293void __cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid);
fffd0934
JB
294int cfg80211_ibss_wext_join(struct cfg80211_registered_device *rdev,
295 struct wireless_dev *wdev);
04a773ad 296
29cbe68c
JB
297/* mesh */
298extern const struct mesh_config default_mesh_config;
c80d545d 299extern const struct mesh_setup default_mesh_setup;
29cbe68c
JB
300int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
301 struct net_device *dev,
cc1d2806 302 struct mesh_setup *setup,
29cbe68c
JB
303 const struct mesh_config *conf);
304int cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
305 struct net_device *dev,
cc1d2806 306 struct mesh_setup *setup,
29cbe68c
JB
307 const struct mesh_config *conf);
308int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
309 struct net_device *dev);
cc1d2806
JB
310int cfg80211_set_mesh_freq(struct cfg80211_registered_device *rdev,
311 struct wireless_dev *wdev, int freq,
312 enum nl80211_channel_type channel_type);
29cbe68c 313
60771780
MK
314/* AP */
315int cfg80211_stop_ap(struct cfg80211_registered_device *rdev,
316 struct net_device *dev);
317
19957bb3 318/* MLME */
667503dd
JB
319int __cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
320 struct net_device *dev,
321 struct ieee80211_channel *chan,
322 enum nl80211_auth_type auth_type,
323 const u8 *bssid,
324 const u8 *ssid, int ssid_len,
fffd0934 325 const u8 *ie, int ie_len,
95de817b 326 const u8 *key, int key_len, int key_idx);
19957bb3
JB
327int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
328 struct net_device *dev, struct ieee80211_channel *chan,
329 enum nl80211_auth_type auth_type, const u8 *bssid,
330 const u8 *ssid, int ssid_len,
fffd0934 331 const u8 *ie, int ie_len,
95de817b 332 const u8 *key, int key_len, int key_idx);
667503dd
JB
333int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
334 struct net_device *dev,
335 struct ieee80211_channel *chan,
336 const u8 *bssid, const u8 *prev_bssid,
337 const u8 *ssid, int ssid_len,
338 const u8 *ie, int ie_len, bool use_mfp,
7e7c8926
BG
339 struct cfg80211_crypto_settings *crypt,
340 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
341 struct ieee80211_ht_cap *ht_capa_mask);
19957bb3
JB
342int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
343 struct net_device *dev, struct ieee80211_channel *chan,
3e5d7649
JB
344 const u8 *bssid, const u8 *prev_bssid,
345 const u8 *ssid, int ssid_len,
19957bb3 346 const u8 *ie, int ie_len, bool use_mfp,
7e7c8926
BG
347 struct cfg80211_crypto_settings *crypt,
348 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
349 struct ieee80211_ht_cap *ht_capa_mask);
667503dd
JB
350int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
351 struct net_device *dev, const u8 *bssid,
d5cdfacb
JM
352 const u8 *ie, int ie_len, u16 reason,
353 bool local_state_change);
19957bb3
JB
354int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
355 struct net_device *dev, const u8 *bssid,
d5cdfacb
JM
356 const u8 *ie, int ie_len, u16 reason,
357 bool local_state_change);
19957bb3
JB
358int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
359 struct net_device *dev, const u8 *bssid,
d5cdfacb
JM
360 const u8 *ie, int ie_len, u16 reason,
361 bool local_state_change);
19957bb3
JB
362void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
363 struct net_device *dev);
667503dd
JB
364void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
365 const u8 *req_ie, size_t req_ie_len,
366 const u8 *resp_ie, size_t resp_ie_len,
df7fc0f9
JB
367 u16 status, bool wextev,
368 struct cfg80211_bss *bss);
2e161f78
JB
369int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_pid,
370 u16 frame_type, const u8 *match_data,
371 int match_len);
372void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlpid);
373void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev);
374int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
375 struct net_device *dev,
f7ca38df 376 struct ieee80211_channel *chan, bool offchan,
2e161f78 377 enum nl80211_channel_type channel_type,
f7ca38df 378 bool channel_type_valid, unsigned int wait,
e9f935e3 379 const u8 *buf, size_t len, bool no_cck,
e247bd90 380 bool dont_wait_for_ack, u64 *cookie);
7e7c8926
BG
381void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa,
382 const struct ieee80211_ht_cap *ht_capa_mask);
19957bb3 383
b23aa676 384/* SME */
667503dd
JB
385int __cfg80211_connect(struct cfg80211_registered_device *rdev,
386 struct net_device *dev,
fffd0934 387 struct cfg80211_connect_params *connect,
f401a6f7
JB
388 struct cfg80211_cached_keys *connkeys,
389 const u8 *prev_bssid);
b23aa676
SO
390int cfg80211_connect(struct cfg80211_registered_device *rdev,
391 struct net_device *dev,
fffd0934
JB
392 struct cfg80211_connect_params *connect,
393 struct cfg80211_cached_keys *connkeys);
667503dd
JB
394int __cfg80211_disconnect(struct cfg80211_registered_device *rdev,
395 struct net_device *dev, u16 reason,
396 bool wextev);
b23aa676 397int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
f2129354
JB
398 struct net_device *dev, u16 reason,
399 bool wextev);
ed9d0102 400void __cfg80211_roamed(struct wireless_dev *wdev,
adbde344 401 struct cfg80211_bss *bss,
667503dd
JB
402 const u8 *req_ie, size_t req_ie_len,
403 const u8 *resp_ie, size_t resp_ie_len);
fffd0934
JB
404int cfg80211_mgd_wext_connect(struct cfg80211_registered_device *rdev,
405 struct wireless_dev *wdev);
b23aa676 406
6829c878 407void cfg80211_conn_work(struct work_struct *work);
7d930bc3 408void cfg80211_sme_failed_assoc(struct wireless_dev *wdev);
f401a6f7 409bool cfg80211_sme_failed_reassoc(struct wireless_dev *wdev);
6829c878 410
08645126 411/* internal helpers */
38ba3c57 412bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher);
fffd0934
JB
413int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev,
414 struct key_params *params, int key_idx,
e31b8213 415 bool pairwise, const u8 *mac_addr);
667503dd 416void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
6829c878
JB
417 size_t ie_len, u16 reason, bool from_ap);
418void cfg80211_sme_scan_done(struct net_device *dev);
419void cfg80211_sme_rx_auth(struct net_device *dev, const u8 *buf, size_t len);
95de817b
JB
420void cfg80211_sme_disassoc(struct net_device *dev,
421 struct cfg80211_internal_bss *bss);
667503dd 422void __cfg80211_scan_done(struct work_struct *wk);
01a0ac41 423void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, bool leak);
807f8a8c
LC
424void __cfg80211_sched_scan_results(struct work_struct *wk);
425int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
426 bool driver_initiated);
fffd0934 427void cfg80211_upload_connect_keys(struct wireless_dev *wdev);
3d54d255
JB
428int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
429 struct net_device *dev, enum nl80211_iftype ntype,
430 u32 *flags, struct vif_params *params);
431void cfg80211_process_rdev_events(struct cfg80211_registered_device *rdev);
08645126 432
d4e50c59
MK
433int cfg80211_can_use_iftype_chan(struct cfg80211_registered_device *rdev,
434 struct wireless_dev *wdev,
435 enum nl80211_iftype iftype,
436 struct ieee80211_channel *chan,
437 enum cfg80211_chan_mode chanmode);
438
439static inline int
440cfg80211_can_change_interface(struct cfg80211_registered_device *rdev,
441 struct wireless_dev *wdev,
442 enum nl80211_iftype iftype)
443{
444 return cfg80211_can_use_iftype_chan(rdev, wdev, iftype, NULL,
445 CHAN_MODE_UNDEFINED);
446}
7527a782
JB
447
448static inline int
449cfg80211_can_add_interface(struct cfg80211_registered_device *rdev,
450 enum nl80211_iftype iftype)
451{
452 return cfg80211_can_change_interface(rdev, NULL, iftype);
453}
454
d4e50c59
MK
455static inline int
456cfg80211_can_use_chan(struct cfg80211_registered_device *rdev,
457 struct wireless_dev *wdev,
458 struct ieee80211_channel *chan,
459 enum cfg80211_chan_mode chanmode)
460{
461 return cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
462 chan, chanmode);
463}
464
26ab9a0c
MK
465void
466cfg80211_get_chan_state(struct cfg80211_registered_device *rdev,
467 struct wireless_dev *wdev,
468 struct ieee80211_channel **chan,
469 enum cfg80211_chan_mode *chanmode);
470
9588bbd5
JM
471struct ieee80211_channel *
472rdev_freq_to_chan(struct cfg80211_registered_device *rdev,
473 int freq, enum nl80211_channel_type channel_type);
e8c9bd5b
JB
474int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
475 int freq, enum nl80211_channel_type chantype);
59bbb6f7 476
34850ab2
JB
477int ieee80211_get_ratemask(struct ieee80211_supported_band *sband,
478 const u8 *rates, unsigned int n_rates,
479 u32 *mask);
480
56d1893d
JB
481int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev,
482 u32 beacon_int);
483
dbbae26a
MK
484void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev,
485 enum nl80211_iftype iftype, int num);
486
d4e50c59
MK
487#define CFG80211_MAX_NUM_DIFFERENT_CHANNELS 10
488
f7969969
JB
489#ifdef CONFIG_CFG80211_DEVELOPER_WARNINGS
490#define CFG80211_DEV_WARN_ON(cond) WARN_ON(cond)
491#else
492/*
493 * Trick to enable using it as a condition,
494 * and also not give a warning when it's
495 * not used that way.
496 */
497#define CFG80211_DEV_WARN_ON(cond) ({bool __r = (cond); __r; })
498#endif
499
704232c2 500#endif /* __NET_WIRELESS_CORE_H */