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