Merge branches 'for-3.9/logitech', 'for-3.9/multitouch', 'for-3.9/ntrig', 'for-3...
[deliverable/linux.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;
a08c1c1a 141
2a519311
JB
142 /* must be last because of priv member */
143 struct cfg80211_bss pub;
144};
145
19957bb3
JB
146static inline struct cfg80211_internal_bss *bss_from_pub(struct cfg80211_bss *pub)
147{
148 return container_of(pub, struct cfg80211_internal_bss, pub);
149}
150
151static inline void cfg80211_hold_bss(struct cfg80211_internal_bss *bss)
152{
153 atomic_inc(&bss->hold);
154}
155
156static inline void cfg80211_unhold_bss(struct cfg80211_internal_bss *bss)
157{
158 int r = atomic_dec_return(&bss->hold);
159 WARN_ON(r < 0);
160}
161
162
79c97e97 163struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx);
806a9e39
LR
164int get_wiphy_idx(struct wiphy *wiphy);
165
79c97e97 166/* requires cfg80211_rdev_mutex to be held! */
806a9e39
LR
167struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx);
168
55682965
JB
169/* identical to cfg80211_get_dev_from_info but only operate on ifindex */
170extern struct cfg80211_registered_device *
463d0183
JB
171cfg80211_get_dev_from_ifindex(struct net *net, int ifindex);
172
173int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
174 struct net *net);
55682965 175
79c97e97 176static inline void cfg80211_lock_rdev(struct cfg80211_registered_device *rdev)
667503dd 177{
79c97e97 178 mutex_lock(&rdev->mtx);
667503dd
JB
179}
180
79c97e97 181static inline void cfg80211_unlock_rdev(struct cfg80211_registered_device *rdev)
4d0c8aea 182{
79c97e97
JB
183 BUG_ON(IS_ERR(rdev) || !rdev);
184 mutex_unlock(&rdev->mtx);
4d0c8aea 185}
55682965 186
667503dd
JB
187static inline void wdev_lock(struct wireless_dev *wdev)
188 __acquires(wdev)
189{
190 mutex_lock(&wdev->mtx);
191 __acquire(wdev->mtx);
192}
193
194static inline void wdev_unlock(struct wireless_dev *wdev)
195 __releases(wdev)
196{
197 __release(wdev->mtx);
198 mutex_unlock(&wdev->mtx);
199}
200
46a5ebaf
JB
201#define ASSERT_RDEV_LOCK(rdev) lockdep_assert_held(&(rdev)->mtx)
202#define ASSERT_WDEV_LOCK(wdev) lockdep_assert_held(&(wdev)->mtx)
667503dd 203
dbbae26a
MK
204static inline bool cfg80211_has_monitors_only(struct cfg80211_registered_device *rdev)
205{
c5a7e582 206 ASSERT_RTNL();
dbbae26a
MK
207
208 return rdev->num_running_ifaces == rdev->num_running_monitor_ifaces &&
209 rdev->num_running_ifaces > 0;
210}
211
667503dd
JB
212enum cfg80211_event_type {
213 EVENT_CONNECT_RESULT,
214 EVENT_ROAMED,
215 EVENT_DISCONNECTED,
216 EVENT_IBSS_JOINED,
217};
218
219struct cfg80211_event {
220 struct list_head list;
221 enum cfg80211_event_type type;
222
223 union {
224 struct {
225 u8 bssid[ETH_ALEN];
226 const u8 *req_ie;
227 const u8 *resp_ie;
228 size_t req_ie_len;
229 size_t resp_ie_len;
230 u16 status;
231 } cr;
232 struct {
667503dd
JB
233 const u8 *req_ie;
234 const u8 *resp_ie;
235 size_t req_ie_len;
236 size_t resp_ie_len;
adbde344 237 struct cfg80211_bss *bss;
667503dd
JB
238 } rm;
239 struct {
240 const u8 *ie;
241 size_t ie_len;
242 u16 reason;
243 } dc;
244 struct {
245 u8 bssid[ETH_ALEN];
246 } ij;
247 };
248};
249
fffd0934
JB
250struct cfg80211_cached_keys {
251 struct key_params params[6];
252 u8 data[6][WLAN_MAX_KEY_LEN];
253 int def, defmgmt;
254};
255
26ab9a0c
MK
256enum cfg80211_chan_mode {
257 CHAN_MODE_UNDEFINED,
258 CHAN_MODE_SHARED,
259 CHAN_MODE_EXCLUSIVE,
260};
261
37c73b5f
BG
262struct cfg80211_beacon_registration {
263 struct list_head list;
264 u32 nlportid;
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);
683b6d3b
JB
310int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev,
311 struct wireless_dev *wdev,
312 struct cfg80211_chan_def *chandef);
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,
e39e5b5e
JM
326 const u8 *key, int key_len, int key_idx,
327 const u8 *sae_data, int sae_data_len);
19957bb3
JB
328int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
329 struct net_device *dev, struct ieee80211_channel *chan,
330 enum nl80211_auth_type auth_type, const u8 *bssid,
331 const u8 *ssid, int ssid_len,
fffd0934 332 const u8 *ie, int ie_len,
e39e5b5e
JM
333 const u8 *key, int key_len, int key_idx,
334 const u8 *sae_data, int sae_data_len);
667503dd
JB
335int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
336 struct net_device *dev,
337 struct ieee80211_channel *chan,
338 const u8 *bssid, const u8 *prev_bssid,
339 const u8 *ssid, int ssid_len,
340 const u8 *ie, int ie_len, bool use_mfp,
7e7c8926
BG
341 struct cfg80211_crypto_settings *crypt,
342 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
343 struct ieee80211_ht_cap *ht_capa_mask);
19957bb3
JB
344int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
345 struct net_device *dev, struct ieee80211_channel *chan,
3e5d7649
JB
346 const u8 *bssid, const u8 *prev_bssid,
347 const u8 *ssid, int ssid_len,
19957bb3 348 const u8 *ie, int ie_len, bool use_mfp,
7e7c8926
BG
349 struct cfg80211_crypto_settings *crypt,
350 u32 assoc_flags, struct ieee80211_ht_cap *ht_capa,
351 struct ieee80211_ht_cap *ht_capa_mask);
667503dd
JB
352int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
353 struct net_device *dev, const u8 *bssid,
d5cdfacb
JM
354 const u8 *ie, int ie_len, u16 reason,
355 bool local_state_change);
19957bb3
JB
356int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
357 struct net_device *dev, const u8 *bssid,
d5cdfacb
JM
358 const u8 *ie, int ie_len, u16 reason,
359 bool local_state_change);
19957bb3
JB
360int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
361 struct net_device *dev, const u8 *bssid,
d5cdfacb
JM
362 const u8 *ie, int ie_len, u16 reason,
363 bool local_state_change);
19957bb3
JB
364void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
365 struct net_device *dev);
667503dd
JB
366void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
367 const u8 *req_ie, size_t req_ie_len,
368 const u8 *resp_ie, size_t resp_ie_len,
df7fc0f9
JB
369 u16 status, bool wextev,
370 struct cfg80211_bss *bss);
2e161f78
JB
371int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_pid,
372 u16 frame_type, const u8 *match_data,
373 int match_len);
374void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlpid);
375void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev);
376int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
71bbc994 377 struct wireless_dev *wdev,
f7ca38df 378 struct ieee80211_channel *chan, bool offchan,
42d97a59
JB
379 unsigned int wait, const u8 *buf, size_t len,
380 bool no_cck, 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);
1f6fc43e 432void cfg80211_process_wdev_events(struct wireless_dev *wdev);
08645126 433
d4e50c59
MK
434int cfg80211_can_use_iftype_chan(struct cfg80211_registered_device *rdev,
435 struct wireless_dev *wdev,
436 enum nl80211_iftype iftype,
437 struct ieee80211_channel *chan,
438 enum cfg80211_chan_mode chanmode);
439
440static inline int
441cfg80211_can_change_interface(struct cfg80211_registered_device *rdev,
442 struct wireless_dev *wdev,
443 enum nl80211_iftype iftype)
444{
445 return cfg80211_can_use_iftype_chan(rdev, wdev, iftype, NULL,
446 CHAN_MODE_UNDEFINED);
447}
7527a782
JB
448
449static inline int
450cfg80211_can_add_interface(struct cfg80211_registered_device *rdev,
451 enum nl80211_iftype iftype)
452{
453 return cfg80211_can_change_interface(rdev, NULL, iftype);
454}
455
d4e50c59
MK
456static inline int
457cfg80211_can_use_chan(struct cfg80211_registered_device *rdev,
458 struct wireless_dev *wdev,
459 struct ieee80211_channel *chan,
460 enum cfg80211_chan_mode chanmode)
461{
462 return cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
463 chan, chanmode);
464}
465
26ab9a0c 466void
8e95ea49 467cfg80211_get_chan_state(struct wireless_dev *wdev,
26ab9a0c
MK
468 struct ieee80211_channel **chan,
469 enum cfg80211_chan_mode *chanmode);
470
e8c9bd5b 471int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
683b6d3b 472 struct cfg80211_chan_def *chandef);
59bbb6f7 473
34850ab2
JB
474int ieee80211_get_ratemask(struct ieee80211_supported_band *sband,
475 const u8 *rates, unsigned int n_rates,
476 u32 *mask);
477
56d1893d
JB
478int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev,
479 u32 beacon_int);
480
dbbae26a
MK
481void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev,
482 enum nl80211_iftype iftype, int num);
483
d4e50c59
MK
484#define CFG80211_MAX_NUM_DIFFERENT_CHANNELS 10
485
f7969969
JB
486#ifdef CONFIG_CFG80211_DEVELOPER_WARNINGS
487#define CFG80211_DEV_WARN_ON(cond) WARN_ON(cond)
488#else
489/*
490 * Trick to enable using it as a condition,
491 * and also not give a warning when it's
492 * not used that way.
493 */
494#define CFG80211_DEV_WARN_ON(cond) ({bool __r = (cond); __r; })
495#endif
496
704232c2 497#endif /* __NET_WIRELESS_CORE_H */
This page took 0.469462 seconds and 5 git commands to generate.