Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Wireless configuration interface internals. |
| 3 | * |
Johannes Berg | 5f2aa25 | 2010-01-17 15:49:02 +0100 | [diff] [blame] | 4 | * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 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> |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 11 | #include <linux/kref.h> |
| 12 | #include <linux/rbtree.h> |
Luis R. Rodriguez | 1ac6130 | 2009-05-02 00:37:21 -0400 | [diff] [blame] | 13 | #include <linux/debugfs.h> |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 14 | #include <linux/rfkill.h> |
| 15 | #include <linux/workqueue.h> |
Johannes Berg | c5a7e58 | 2012-07-04 13:28:18 +0200 | [diff] [blame] | 16 | #include <linux/rtnetlink.h> |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 17 | #include <net/genetlink.h> |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 18 | #include <net/cfg80211.h> |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 19 | #include "reg.h" |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 20 | |
Johannes Berg | f417376 | 2012-12-03 18:23:37 +0100 | [diff] [blame] | 21 | |
| 22 | #define WIPHY_IDX_INVALID -1 |
| 23 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 24 | struct cfg80211_registered_device { |
David Kilroy | 3dcf670 | 2009-05-16 23:13:46 +0100 | [diff] [blame] | 25 | const struct cfg80211_ops *ops; |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 26 | struct list_head list; |
| 27 | /* we hold this mutex during any call so that |
| 28 | * we cannot do multiple calls at once, and also |
| 29 | * to avoid the deregister call to proceed while |
| 30 | * any call is in progress */ |
| 31 | struct mutex mtx; |
| 32 | |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 33 | /* rfkill support */ |
| 34 | struct rfkill_ops rfkill_ops; |
| 35 | struct rfkill *rfkill; |
| 36 | struct work_struct rfkill_sync; |
| 37 | |
Luis R. Rodriguez | 3f2355c | 2008-11-12 14:22:02 -0800 | [diff] [blame] | 38 | /* ISO / IEC 3166 alpha2 for which this device is receiving |
| 39 | * country IEs on, this can help disregard country IEs from APs |
| 40 | * on the same alpha2 quickly. The alpha2 may differ from |
| 41 | * cfg80211_regdomain's alpha2 when an intersection has occurred. |
| 42 | * If the AP is reconfigured this can also be used to tell us if |
| 43 | * the country on the country IE changed. */ |
| 44 | char country_ie_alpha2[2]; |
| 45 | |
| 46 | /* If a Country IE has been received this tells us the environment |
| 47 | * which its telling us its in. This defaults to ENVIRON_ANY */ |
| 48 | enum environment_cap env; |
| 49 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 50 | /* wiphy index, internal only */ |
Luis R. Rodriguez | b5850a7 | 2009-02-21 00:04:19 -0500 | [diff] [blame] | 51 | int wiphy_idx; |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 52 | |
Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 53 | /* associated wireless interfaces */ |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 54 | struct mutex devlist_mtx; |
Johannes Berg | 5f2aa25 | 2010-01-17 15:49:02 +0100 | [diff] [blame] | 55 | /* protected by devlist_mtx or RCU */ |
Johannes Berg | 89a54e4 | 2012-06-15 14:33:17 +0200 | [diff] [blame] | 56 | struct list_head wdev_list; |
| 57 | int devlist_generation, wdev_id; |
Johannes Berg | ad00239 | 2009-08-18 19:51:57 +0200 | [diff] [blame] | 58 | int opencount; /* also protected by devlist_mtx */ |
| 59 | wait_queue_head_t dev_wait; |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 60 | |
Ben Greear | 37c73b5 | 2012-10-26 14:49:25 -0700 | [diff] [blame] | 61 | struct list_head beacon_registrations; |
| 62 | spinlock_t beacon_registrations_lock; |
Johannes Berg | 5e76023 | 2011-11-04 11:18:17 +0100 | [diff] [blame] | 63 | |
Johannes Berg | c5a7e58 | 2012-07-04 13:28:18 +0200 | [diff] [blame] | 64 | /* protected by RTNL only */ |
Michal Kazior | dbbae26 | 2012-06-29 12:47:01 +0200 | [diff] [blame] | 65 | int num_running_ifaces; |
| 66 | int num_running_monitor_ifaces; |
| 67 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 68 | /* BSSes/scanning */ |
| 69 | spinlock_t bss_lock; |
| 70 | struct list_head bss_list; |
| 71 | struct rb_root bss_tree; |
| 72 | u32 bss_generation; |
| 73 | struct cfg80211_scan_request *scan_req; /* protected by RTNL */ |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 74 | struct cfg80211_sched_scan_request *sched_scan_req; |
Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 75 | unsigned long suspend_at; |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 76 | struct work_struct scan_done_wk; |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 77 | struct work_struct sched_scan_results_wk; |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 78 | |
Luciano Coelho | c10841c | 2011-06-30 08:32:41 +0300 | [diff] [blame] | 79 | struct mutex sched_scan_mtx; |
| 80 | |
Johannes Berg | aff89a9 | 2009-07-01 21:26:51 +0200 | [diff] [blame] | 81 | #ifdef CONFIG_NL80211_TESTMODE |
| 82 | struct genl_info *testmode_info; |
| 83 | #endif |
| 84 | |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 85 | struct work_struct conn_work; |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 86 | struct work_struct event_work; |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 87 | |
Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 88 | struct cfg80211_wowlan *wowlan; |
| 89 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 90 | /* must be last because of the way we do wiphy_priv(), |
| 91 | * and it should at least be aligned to NETDEV_ALIGN */ |
Johannes Berg | 1c06ef9 | 2012-12-28 12:22:02 +0100 | [diff] [blame] | 92 | struct wiphy wiphy __aligned(NETDEV_ALIGN); |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | static inline |
| 96 | struct cfg80211_registered_device *wiphy_to_dev(struct wiphy *wiphy) |
| 97 | { |
| 98 | BUG_ON(!wiphy); |
| 99 | return container_of(wiphy, struct cfg80211_registered_device, wiphy); |
| 100 | } |
| 101 | |
Johannes Berg | ff1b6e6 | 2011-05-04 15:37:28 +0200 | [diff] [blame] | 102 | static inline void |
| 103 | cfg80211_rdev_free_wowlan(struct cfg80211_registered_device *rdev) |
| 104 | { |
| 105 | int i; |
| 106 | |
| 107 | if (!rdev->wowlan) |
| 108 | return; |
| 109 | for (i = 0; i < rdev->wowlan->n_patterns; i++) |
| 110 | kfree(rdev->wowlan->patterns[i].mask); |
| 111 | kfree(rdev->wowlan->patterns); |
| 112 | kfree(rdev->wowlan); |
| 113 | } |
Alban Browaeys | e60d744 | 2009-11-25 15:13:00 +0100 | [diff] [blame] | 114 | |
| 115 | extern struct workqueue_struct *cfg80211_wq; |
Luis R. Rodriguez | a179439 | 2009-02-21 00:04:21 -0500 | [diff] [blame] | 116 | extern struct mutex cfg80211_mutex; |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 117 | extern struct list_head cfg80211_rdev_list; |
Johannes Berg | f5ea912 | 2009-08-07 16:17:38 +0200 | [diff] [blame] | 118 | extern int cfg80211_rdev_list_generation; |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 119 | |
Johannes Berg | 46a5eba | 2010-09-15 13:28:15 +0200 | [diff] [blame] | 120 | static inline void assert_cfg80211_lock(void) |
| 121 | { |
| 122 | lockdep_assert_held(&cfg80211_mutex); |
| 123 | } |
Luis R. Rodriguez | 761cf7e | 2009-02-21 00:04:25 -0500 | [diff] [blame] | 124 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 125 | struct cfg80211_internal_bss { |
| 126 | struct list_head list; |
| 127 | struct rb_node rbn; |
| 128 | unsigned long ts; |
| 129 | struct kref ref; |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 130 | atomic_t hold; |
Kalle Valo | a08c1c1 | 2009-03-22 21:57:28 +0200 | [diff] [blame] | 131 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 132 | /* must be last because of priv member */ |
| 133 | struct cfg80211_bss pub; |
| 134 | }; |
| 135 | |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 136 | static inline struct cfg80211_internal_bss *bss_from_pub(struct cfg80211_bss *pub) |
| 137 | { |
| 138 | return container_of(pub, struct cfg80211_internal_bss, pub); |
| 139 | } |
| 140 | |
| 141 | static inline void cfg80211_hold_bss(struct cfg80211_internal_bss *bss) |
| 142 | { |
| 143 | atomic_inc(&bss->hold); |
| 144 | } |
| 145 | |
| 146 | static inline void cfg80211_unhold_bss(struct cfg80211_internal_bss *bss) |
| 147 | { |
| 148 | int r = atomic_dec_return(&bss->hold); |
| 149 | WARN_ON(r < 0); |
| 150 | } |
| 151 | |
| 152 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 153 | struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx); |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 154 | int get_wiphy_idx(struct wiphy *wiphy); |
| 155 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 156 | /* requires cfg80211_rdev_mutex to be held! */ |
Luis R. Rodriguez | 806a9e3 | 2009-02-21 00:04:26 -0500 | [diff] [blame] | 157 | struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx); |
| 158 | |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 159 | /* identical to cfg80211_get_dev_from_info but only operate on ifindex */ |
| 160 | extern struct cfg80211_registered_device * |
Johannes Berg | 463d018 | 2009-07-14 00:33:35 +0200 | [diff] [blame] | 161 | cfg80211_get_dev_from_ifindex(struct net *net, int ifindex); |
| 162 | |
| 163 | int cfg80211_switch_netns(struct cfg80211_registered_device *rdev, |
| 164 | struct net *net); |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 165 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 166 | static inline void cfg80211_lock_rdev(struct cfg80211_registered_device *rdev) |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 167 | { |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 168 | mutex_lock(&rdev->mtx); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 169 | } |
| 170 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 171 | static inline void cfg80211_unlock_rdev(struct cfg80211_registered_device *rdev) |
Johannes Berg | 4d0c8ae | 2009-07-07 03:56:09 +0200 | [diff] [blame] | 172 | { |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 173 | BUG_ON(IS_ERR(rdev) || !rdev); |
| 174 | mutex_unlock(&rdev->mtx); |
Johannes Berg | 4d0c8ae | 2009-07-07 03:56:09 +0200 | [diff] [blame] | 175 | } |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 176 | |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 177 | static inline void wdev_lock(struct wireless_dev *wdev) |
| 178 | __acquires(wdev) |
| 179 | { |
| 180 | mutex_lock(&wdev->mtx); |
| 181 | __acquire(wdev->mtx); |
| 182 | } |
| 183 | |
| 184 | static inline void wdev_unlock(struct wireless_dev *wdev) |
| 185 | __releases(wdev) |
| 186 | { |
| 187 | __release(wdev->mtx); |
| 188 | mutex_unlock(&wdev->mtx); |
| 189 | } |
| 190 | |
Johannes Berg | 46a5eba | 2010-09-15 13:28:15 +0200 | [diff] [blame] | 191 | #define ASSERT_RDEV_LOCK(rdev) lockdep_assert_held(&(rdev)->mtx) |
| 192 | #define ASSERT_WDEV_LOCK(wdev) lockdep_assert_held(&(wdev)->mtx) |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 193 | |
Michal Kazior | dbbae26 | 2012-06-29 12:47:01 +0200 | [diff] [blame] | 194 | static inline bool cfg80211_has_monitors_only(struct cfg80211_registered_device *rdev) |
| 195 | { |
Johannes Berg | c5a7e58 | 2012-07-04 13:28:18 +0200 | [diff] [blame] | 196 | ASSERT_RTNL(); |
Michal Kazior | dbbae26 | 2012-06-29 12:47:01 +0200 | [diff] [blame] | 197 | |
| 198 | return rdev->num_running_ifaces == rdev->num_running_monitor_ifaces && |
| 199 | rdev->num_running_ifaces > 0; |
| 200 | } |
| 201 | |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 202 | enum cfg80211_event_type { |
| 203 | EVENT_CONNECT_RESULT, |
| 204 | EVENT_ROAMED, |
| 205 | EVENT_DISCONNECTED, |
| 206 | EVENT_IBSS_JOINED, |
| 207 | }; |
| 208 | |
| 209 | struct cfg80211_event { |
| 210 | struct list_head list; |
| 211 | enum cfg80211_event_type type; |
| 212 | |
| 213 | union { |
| 214 | struct { |
| 215 | u8 bssid[ETH_ALEN]; |
| 216 | const u8 *req_ie; |
| 217 | const u8 *resp_ie; |
| 218 | size_t req_ie_len; |
| 219 | size_t resp_ie_len; |
| 220 | u16 status; |
| 221 | } cr; |
| 222 | struct { |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 223 | const u8 *req_ie; |
| 224 | const u8 *resp_ie; |
| 225 | size_t req_ie_len; |
| 226 | size_t resp_ie_len; |
Vasanthakumar Thiagarajan | adbde34 | 2011-12-08 14:28:47 +0530 | [diff] [blame] | 227 | struct cfg80211_bss *bss; |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 228 | } rm; |
| 229 | struct { |
| 230 | const u8 *ie; |
| 231 | size_t ie_len; |
| 232 | u16 reason; |
| 233 | } dc; |
| 234 | struct { |
| 235 | u8 bssid[ETH_ALEN]; |
| 236 | } ij; |
| 237 | }; |
| 238 | }; |
| 239 | |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 240 | struct cfg80211_cached_keys { |
| 241 | struct key_params params[6]; |
| 242 | u8 data[6][WLAN_MAX_KEY_LEN]; |
| 243 | int def, defmgmt; |
| 244 | }; |
| 245 | |
Michal Kazior | 26ab9a0 | 2012-06-29 12:47:00 +0200 | [diff] [blame] | 246 | enum cfg80211_chan_mode { |
| 247 | CHAN_MODE_UNDEFINED, |
| 248 | CHAN_MODE_SHARED, |
| 249 | CHAN_MODE_EXCLUSIVE, |
| 250 | }; |
| 251 | |
Ben Greear | 37c73b5 | 2012-10-26 14:49:25 -0700 | [diff] [blame] | 252 | struct cfg80211_beacon_registration { |
| 253 | struct list_head list; |
| 254 | u32 nlportid; |
| 255 | }; |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 256 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 257 | /* free object */ |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 258 | extern void cfg80211_dev_free(struct cfg80211_registered_device *rdev); |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 259 | |
Johannes Berg | 79c97e9 | 2009-07-07 03:56:12 +0200 | [diff] [blame] | 260 | extern int cfg80211_dev_rename(struct cfg80211_registered_device *rdev, |
Johannes Berg | 5568296 | 2007-09-20 13:09:35 -0400 | [diff] [blame] | 261 | char *newname); |
| 262 | |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 263 | void ieee80211_set_bitrate_flags(struct wiphy *wiphy); |
Johannes Berg | 8318d78 | 2008-01-24 19:38:38 +0100 | [diff] [blame] | 264 | |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 265 | void cfg80211_bss_expire(struct cfg80211_registered_device *dev); |
Dan Williams | cb3a8ee | 2009-02-11 17:14:43 -0500 | [diff] [blame] | 266 | void cfg80211_bss_age(struct cfg80211_registered_device *dev, |
| 267 | unsigned long age_secs); |
Johannes Berg | 2a51931 | 2009-02-10 21:25:55 +0100 | [diff] [blame] | 268 | |
Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 269 | /* IBSS */ |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 270 | int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev, |
| 271 | struct net_device *dev, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 272 | struct cfg80211_ibss_params *params, |
| 273 | struct cfg80211_cached_keys *connkeys); |
Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 274 | int cfg80211_join_ibss(struct cfg80211_registered_device *rdev, |
| 275 | struct net_device *dev, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 276 | struct cfg80211_ibss_params *params, |
| 277 | struct cfg80211_cached_keys *connkeys); |
Johannes Berg | 9d30842 | 2009-04-20 18:43:46 +0200 | [diff] [blame] | 278 | void cfg80211_clear_ibss(struct net_device *dev, bool nowext); |
Johannes Berg | 98d3a7c | 2009-11-18 13:03:43 +0100 | [diff] [blame] | 279 | int __cfg80211_leave_ibss(struct cfg80211_registered_device *rdev, |
| 280 | struct net_device *dev, bool nowext); |
Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 281 | int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev, |
Johannes Berg | 9d30842 | 2009-04-20 18:43:46 +0200 | [diff] [blame] | 282 | struct net_device *dev, bool nowext); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 283 | void __cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid); |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 284 | int cfg80211_ibss_wext_join(struct cfg80211_registered_device *rdev, |
| 285 | struct wireless_dev *wdev); |
Johannes Berg | 04a773a | 2009-04-19 21:24:32 +0200 | [diff] [blame] | 286 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 287 | /* mesh */ |
| 288 | extern const struct mesh_config default_mesh_config; |
Javier Cardona | c80d545 | 2010-12-16 17:37:49 -0800 | [diff] [blame] | 289 | extern const struct mesh_setup default_mesh_setup; |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 290 | int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev, |
| 291 | struct net_device *dev, |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 292 | struct mesh_setup *setup, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 293 | const struct mesh_config *conf); |
| 294 | int cfg80211_join_mesh(struct cfg80211_registered_device *rdev, |
| 295 | struct net_device *dev, |
Johannes Berg | cc1d280 | 2012-05-16 23:50:20 +0200 | [diff] [blame] | 296 | struct mesh_setup *setup, |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 297 | const struct mesh_config *conf); |
| 298 | int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev, |
| 299 | struct net_device *dev); |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 300 | int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev, |
| 301 | struct wireless_dev *wdev, |
| 302 | struct cfg80211_chan_def *chandef); |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 303 | |
Michal Kazior | 6077178 | 2012-06-29 12:46:56 +0200 | [diff] [blame] | 304 | /* AP */ |
| 305 | int cfg80211_stop_ap(struct cfg80211_registered_device *rdev, |
| 306 | struct net_device *dev); |
| 307 | |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 308 | /* MLME */ |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 309 | int __cfg80211_mlme_auth(struct cfg80211_registered_device *rdev, |
| 310 | struct net_device *dev, |
| 311 | struct ieee80211_channel *chan, |
| 312 | enum nl80211_auth_type auth_type, |
| 313 | const u8 *bssid, |
| 314 | const u8 *ssid, int ssid_len, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 315 | const u8 *ie, int ie_len, |
Jouni Malinen | e39e5b5 | 2012-09-30 19:29:39 +0300 | [diff] [blame] | 316 | const u8 *key, int key_len, int key_idx, |
| 317 | const u8 *sae_data, int sae_data_len); |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 318 | int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev, |
| 319 | struct net_device *dev, struct ieee80211_channel *chan, |
| 320 | enum nl80211_auth_type auth_type, const u8 *bssid, |
| 321 | const u8 *ssid, int ssid_len, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 322 | const u8 *ie, int ie_len, |
Jouni Malinen | e39e5b5 | 2012-09-30 19:29:39 +0300 | [diff] [blame] | 323 | const u8 *key, int key_len, int key_idx, |
| 324 | const u8 *sae_data, int sae_data_len); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 325 | int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev, |
| 326 | struct net_device *dev, |
| 327 | struct ieee80211_channel *chan, |
| 328 | const u8 *bssid, const u8 *prev_bssid, |
| 329 | const u8 *ssid, int ssid_len, |
| 330 | const u8 *ie, int ie_len, bool use_mfp, |
Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 331 | struct cfg80211_crypto_settings *crypt, |
| 332 | u32 assoc_flags, struct ieee80211_ht_cap *ht_capa, |
| 333 | struct ieee80211_ht_cap *ht_capa_mask); |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 334 | int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev, |
| 335 | struct net_device *dev, struct ieee80211_channel *chan, |
Johannes Berg | 3e5d764 | 2009-07-07 14:37:26 +0200 | [diff] [blame] | 336 | const u8 *bssid, const u8 *prev_bssid, |
| 337 | const u8 *ssid, int ssid_len, |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 338 | const u8 *ie, int ie_len, bool use_mfp, |
Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 339 | struct cfg80211_crypto_settings *crypt, |
| 340 | u32 assoc_flags, struct ieee80211_ht_cap *ht_capa, |
| 341 | struct ieee80211_ht_cap *ht_capa_mask); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 342 | int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev, |
| 343 | struct net_device *dev, const u8 *bssid, |
Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 344 | const u8 *ie, int ie_len, u16 reason, |
| 345 | bool local_state_change); |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 346 | int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev, |
| 347 | struct net_device *dev, const u8 *bssid, |
Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 348 | const u8 *ie, int ie_len, u16 reason, |
| 349 | bool local_state_change); |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 350 | int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev, |
| 351 | struct net_device *dev, const u8 *bssid, |
Jouni Malinen | d5cdfac | 2010-04-04 09:37:19 +0300 | [diff] [blame] | 352 | const u8 *ie, int ie_len, u16 reason, |
| 353 | bool local_state_change); |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 354 | void cfg80211_mlme_down(struct cfg80211_registered_device *rdev, |
| 355 | struct net_device *dev); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 356 | void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid, |
| 357 | const u8 *req_ie, size_t req_ie_len, |
| 358 | const u8 *resp_ie, size_t resp_ie_len, |
Johannes Berg | df7fc0f | 2009-07-29 11:23:49 +0200 | [diff] [blame] | 359 | u16 status, bool wextev, |
| 360 | struct cfg80211_bss *bss); |
Johannes Berg | 2e161f7 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 361 | int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_pid, |
| 362 | u16 frame_type, const u8 *match_data, |
| 363 | int match_len); |
| 364 | void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlpid); |
| 365 | void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev); |
| 366 | int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev, |
Johannes Berg | 71bbc99 | 2012-06-15 15:30:18 +0200 | [diff] [blame] | 367 | struct wireless_dev *wdev, |
Johannes Berg | f7ca38d | 2010-11-25 10:02:29 +0100 | [diff] [blame] | 368 | struct ieee80211_channel *chan, bool offchan, |
Johannes Berg | 42d97a5 | 2012-11-08 18:31:02 +0100 | [diff] [blame] | 369 | unsigned int wait, const u8 *buf, size_t len, |
| 370 | bool no_cck, bool dont_wait_for_ack, u64 *cookie); |
Ben Greear | 7e7c892 | 2011-11-18 11:31:59 -0800 | [diff] [blame] | 371 | void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa, |
| 372 | const struct ieee80211_ht_cap *ht_capa_mask); |
Johannes Berg | 19957bb | 2009-07-02 17:20:43 +0200 | [diff] [blame] | 373 | |
Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 374 | /* SME */ |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 375 | int __cfg80211_connect(struct cfg80211_registered_device *rdev, |
| 376 | struct net_device *dev, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 377 | struct cfg80211_connect_params *connect, |
Johannes Berg | f401a6f | 2009-08-07 14:51:05 +0200 | [diff] [blame] | 378 | struct cfg80211_cached_keys *connkeys, |
| 379 | const u8 *prev_bssid); |
Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 380 | int cfg80211_connect(struct cfg80211_registered_device *rdev, |
| 381 | struct net_device *dev, |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 382 | struct cfg80211_connect_params *connect, |
| 383 | struct cfg80211_cached_keys *connkeys); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 384 | int __cfg80211_disconnect(struct cfg80211_registered_device *rdev, |
| 385 | struct net_device *dev, u16 reason, |
| 386 | bool wextev); |
Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 387 | int cfg80211_disconnect(struct cfg80211_registered_device *rdev, |
Johannes Berg | f212935 | 2009-07-01 21:26:56 +0200 | [diff] [blame] | 388 | struct net_device *dev, u16 reason, |
| 389 | bool wextev); |
Jouni Malinen | ed9d010 | 2011-05-16 19:40:15 +0300 | [diff] [blame] | 390 | void __cfg80211_roamed(struct wireless_dev *wdev, |
Vasanthakumar Thiagarajan | adbde34 | 2011-12-08 14:28:47 +0530 | [diff] [blame] | 391 | struct cfg80211_bss *bss, |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 392 | const u8 *req_ie, size_t req_ie_len, |
| 393 | const u8 *resp_ie, size_t resp_ie_len); |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 394 | int cfg80211_mgd_wext_connect(struct cfg80211_registered_device *rdev, |
| 395 | struct wireless_dev *wdev); |
Samuel Ortiz | b23aa67 | 2009-07-01 21:26:54 +0200 | [diff] [blame] | 396 | |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 397 | void cfg80211_conn_work(struct work_struct *work); |
Johannes Berg | 7d930bc | 2009-10-20 15:08:53 +0900 | [diff] [blame] | 398 | void cfg80211_sme_failed_assoc(struct wireless_dev *wdev); |
Johannes Berg | f401a6f | 2009-08-07 14:51:05 +0200 | [diff] [blame] | 399 | bool cfg80211_sme_failed_reassoc(struct wireless_dev *wdev); |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 400 | |
Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 401 | /* internal helpers */ |
Jouni Malinen | 38ba3c5 | 2011-09-21 18:14:56 +0300 | [diff] [blame] | 402 | bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher); |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 403 | int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev, |
| 404 | struct key_params *params, int key_idx, |
Johannes Berg | e31b821 | 2010-10-05 19:39:30 +0200 | [diff] [blame] | 405 | bool pairwise, const u8 *mac_addr); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 406 | void __cfg80211_disconnected(struct net_device *dev, const u8 *ie, |
Johannes Berg | 6829c87 | 2009-07-02 09:13:27 +0200 | [diff] [blame] | 407 | size_t ie_len, u16 reason, bool from_ap); |
| 408 | void cfg80211_sme_scan_done(struct net_device *dev); |
| 409 | void cfg80211_sme_rx_auth(struct net_device *dev, const u8 *buf, size_t len); |
Johannes Berg | 95de817 | 2012-01-20 13:55:25 +0100 | [diff] [blame] | 410 | void cfg80211_sme_disassoc(struct net_device *dev, |
| 411 | struct cfg80211_internal_bss *bss); |
Johannes Berg | 667503d | 2009-07-07 03:56:11 +0200 | [diff] [blame] | 412 | void __cfg80211_scan_done(struct work_struct *wk); |
Johannes Berg | 01a0ac4 | 2009-08-20 21:36:16 +0200 | [diff] [blame] | 413 | void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev, bool leak); |
Luciano Coelho | 807f8a8 | 2011-05-11 17:09:35 +0300 | [diff] [blame] | 414 | void __cfg80211_sched_scan_results(struct work_struct *wk); |
| 415 | int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev, |
| 416 | bool driver_initiated); |
Johannes Berg | fffd093 | 2009-07-08 14:22:54 +0200 | [diff] [blame] | 417 | void cfg80211_upload_connect_keys(struct wireless_dev *wdev); |
Johannes Berg | 3d54d25 | 2009-08-21 14:51:05 +0200 | [diff] [blame] | 418 | int cfg80211_change_iface(struct cfg80211_registered_device *rdev, |
| 419 | struct net_device *dev, enum nl80211_iftype ntype, |
| 420 | u32 *flags, struct vif_params *params); |
| 421 | void cfg80211_process_rdev_events(struct cfg80211_registered_device *rdev); |
Daniel Drake | 1f6fc43 | 2012-08-02 18:41:48 +0100 | [diff] [blame] | 422 | void cfg80211_process_wdev_events(struct wireless_dev *wdev); |
Johannes Berg | 0864512 | 2009-05-11 13:54:58 +0200 | [diff] [blame] | 423 | |
Michal Kazior | d4e50c5 | 2012-06-29 12:47:07 +0200 | [diff] [blame] | 424 | int cfg80211_can_use_iftype_chan(struct cfg80211_registered_device *rdev, |
| 425 | struct wireless_dev *wdev, |
| 426 | enum nl80211_iftype iftype, |
| 427 | struct ieee80211_channel *chan, |
Simon Wunderlich | 11c4a07 | 2013-01-08 14:04:07 +0100 | [diff] [blame^] | 428 | enum cfg80211_chan_mode chanmode, |
| 429 | u8 radar_detect); |
Michal Kazior | d4e50c5 | 2012-06-29 12:47:07 +0200 | [diff] [blame] | 430 | |
| 431 | static inline int |
| 432 | cfg80211_can_change_interface(struct cfg80211_registered_device *rdev, |
| 433 | struct wireless_dev *wdev, |
| 434 | enum nl80211_iftype iftype) |
| 435 | { |
| 436 | return cfg80211_can_use_iftype_chan(rdev, wdev, iftype, NULL, |
Simon Wunderlich | 11c4a07 | 2013-01-08 14:04:07 +0100 | [diff] [blame^] | 437 | CHAN_MODE_UNDEFINED, 0); |
Michal Kazior | d4e50c5 | 2012-06-29 12:47:07 +0200 | [diff] [blame] | 438 | } |
Johannes Berg | 7527a78 | 2011-05-13 10:58:57 +0200 | [diff] [blame] | 439 | |
| 440 | static inline int |
| 441 | cfg80211_can_add_interface(struct cfg80211_registered_device *rdev, |
| 442 | enum nl80211_iftype iftype) |
| 443 | { |
| 444 | return cfg80211_can_change_interface(rdev, NULL, iftype); |
| 445 | } |
| 446 | |
Michal Kazior | d4e50c5 | 2012-06-29 12:47:07 +0200 | [diff] [blame] | 447 | static inline int |
| 448 | cfg80211_can_use_chan(struct cfg80211_registered_device *rdev, |
| 449 | struct wireless_dev *wdev, |
| 450 | struct ieee80211_channel *chan, |
| 451 | enum cfg80211_chan_mode chanmode) |
| 452 | { |
| 453 | return cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype, |
Simon Wunderlich | 11c4a07 | 2013-01-08 14:04:07 +0100 | [diff] [blame^] | 454 | chan, chanmode, 0); |
Michal Kazior | d4e50c5 | 2012-06-29 12:47:07 +0200 | [diff] [blame] | 455 | } |
| 456 | |
Michal Kazior | 26ab9a0 | 2012-06-29 12:47:00 +0200 | [diff] [blame] | 457 | void |
Johannes Berg | 8e95ea4 | 2012-07-10 19:39:02 +0200 | [diff] [blame] | 458 | cfg80211_get_chan_state(struct wireless_dev *wdev, |
Michal Kazior | 26ab9a0 | 2012-06-29 12:47:00 +0200 | [diff] [blame] | 459 | struct ieee80211_channel **chan, |
| 460 | enum cfg80211_chan_mode *chanmode); |
| 461 | |
Johannes Berg | e8c9bd5 | 2012-06-06 08:18:22 +0200 | [diff] [blame] | 462 | int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev, |
Johannes Berg | 683b6d3 | 2012-11-08 21:25:48 +0100 | [diff] [blame] | 463 | struct cfg80211_chan_def *chandef); |
Johannes Berg | 59bbb6f | 2009-08-07 17:22:35 +0200 | [diff] [blame] | 464 | |
Johannes Berg | 34850ab | 2011-07-18 18:08:35 +0200 | [diff] [blame] | 465 | int ieee80211_get_ratemask(struct ieee80211_supported_band *sband, |
| 466 | const u8 *rates, unsigned int n_rates, |
| 467 | u32 *mask); |
| 468 | |
Johannes Berg | 56d1893 | 2011-05-09 18:41:15 +0200 | [diff] [blame] | 469 | int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev, |
| 470 | u32 beacon_int); |
| 471 | |
Michal Kazior | dbbae26 | 2012-06-29 12:47:01 +0200 | [diff] [blame] | 472 | void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev, |
| 473 | enum nl80211_iftype iftype, int num); |
| 474 | |
Michal Kazior | d4e50c5 | 2012-06-29 12:47:07 +0200 | [diff] [blame] | 475 | #define CFG80211_MAX_NUM_DIFFERENT_CHANNELS 10 |
| 476 | |
Johannes Berg | f796996 | 2009-08-21 12:23:49 +0200 | [diff] [blame] | 477 | #ifdef CONFIG_CFG80211_DEVELOPER_WARNINGS |
| 478 | #define CFG80211_DEV_WARN_ON(cond) WARN_ON(cond) |
| 479 | #else |
| 480 | /* |
| 481 | * Trick to enable using it as a condition, |
| 482 | * and also not give a warning when it's |
| 483 | * not used that way. |
| 484 | */ |
| 485 | #define CFG80211_DEV_WARN_ON(cond) ({bool __r = (cond); __r; }) |
| 486 | #endif |
| 487 | |
Johannes Berg | 704232c | 2007-04-23 12:20:05 -0700 | [diff] [blame] | 488 | #endif /* __NET_WIRELESS_CORE_H */ |