xref: /OK3568_Linux_fs/kernel/net/wireless/core.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Wireless configuration interface internals.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * Copyright 2006-2010	Johannes Berg <johannes@sipsolutions.net>
6*4882a593Smuzhiyun  * Copyright (C) 2018-2020 Intel Corporation
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun #ifndef __NET_WIRELESS_CORE_H
9*4882a593Smuzhiyun #define __NET_WIRELESS_CORE_H
10*4882a593Smuzhiyun #include <linux/list.h>
11*4882a593Smuzhiyun #include <linux/netdevice.h>
12*4882a593Smuzhiyun #include <linux/rbtree.h>
13*4882a593Smuzhiyun #include <linux/debugfs.h>
14*4882a593Smuzhiyun #include <linux/rfkill.h>
15*4882a593Smuzhiyun #include <linux/workqueue.h>
16*4882a593Smuzhiyun #include <linux/rtnetlink.h>
17*4882a593Smuzhiyun #include <net/genetlink.h>
18*4882a593Smuzhiyun #include <net/cfg80211.h>
19*4882a593Smuzhiyun #include "reg.h"
20*4882a593Smuzhiyun 
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun #define WIPHY_IDX_INVALID	-1
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun struct cfg80211_registered_device {
25*4882a593Smuzhiyun 	const struct cfg80211_ops *ops;
26*4882a593Smuzhiyun 	struct list_head list;
27*4882a593Smuzhiyun 
28*4882a593Smuzhiyun 	/* rfkill support */
29*4882a593Smuzhiyun 	struct rfkill_ops rfkill_ops;
30*4882a593Smuzhiyun 	struct rfkill *rfkill;
31*4882a593Smuzhiyun 	struct work_struct rfkill_block;
32*4882a593Smuzhiyun 
33*4882a593Smuzhiyun 	/* ISO / IEC 3166 alpha2 for which this device is receiving
34*4882a593Smuzhiyun 	 * country IEs on, this can help disregard country IEs from APs
35*4882a593Smuzhiyun 	 * on the same alpha2 quickly. The alpha2 may differ from
36*4882a593Smuzhiyun 	 * cfg80211_regdomain's alpha2 when an intersection has occurred.
37*4882a593Smuzhiyun 	 * If the AP is reconfigured this can also be used to tell us if
38*4882a593Smuzhiyun 	 * the country on the country IE changed. */
39*4882a593Smuzhiyun 	char country_ie_alpha2[2];
40*4882a593Smuzhiyun 
41*4882a593Smuzhiyun 	/*
42*4882a593Smuzhiyun 	 * the driver requests the regulatory core to set this regulatory
43*4882a593Smuzhiyun 	 * domain as the wiphy's. Only used for %REGULATORY_WIPHY_SELF_MANAGED
44*4882a593Smuzhiyun 	 * devices using the regulatory_set_wiphy_regd() API
45*4882a593Smuzhiyun 	 */
46*4882a593Smuzhiyun 	const struct ieee80211_regdomain *requested_regd;
47*4882a593Smuzhiyun 
48*4882a593Smuzhiyun 	/* If a Country IE has been received this tells us the environment
49*4882a593Smuzhiyun 	 * which its telling us its in. This defaults to ENVIRON_ANY */
50*4882a593Smuzhiyun 	enum environment_cap env;
51*4882a593Smuzhiyun 
52*4882a593Smuzhiyun 	/* wiphy index, internal only */
53*4882a593Smuzhiyun 	int wiphy_idx;
54*4882a593Smuzhiyun 
55*4882a593Smuzhiyun 	/* protected by RTNL */
56*4882a593Smuzhiyun 	int devlist_generation, wdev_id;
57*4882a593Smuzhiyun 	int opencount;
58*4882a593Smuzhiyun 	wait_queue_head_t dev_wait;
59*4882a593Smuzhiyun 
60*4882a593Smuzhiyun 	struct list_head beacon_registrations;
61*4882a593Smuzhiyun 	spinlock_t beacon_registrations_lock;
62*4882a593Smuzhiyun 
63*4882a593Smuzhiyun 	/* protected by RTNL only */
64*4882a593Smuzhiyun 	int num_running_ifaces;
65*4882a593Smuzhiyun 	int num_running_monitor_ifaces;
66*4882a593Smuzhiyun 	u64 cookie_counter;
67*4882a593Smuzhiyun 
68*4882a593Smuzhiyun 	/* BSSes/scanning */
69*4882a593Smuzhiyun 	spinlock_t bss_lock;
70*4882a593Smuzhiyun 	struct list_head bss_list;
71*4882a593Smuzhiyun 	struct rb_root bss_tree;
72*4882a593Smuzhiyun 	u32 bss_generation;
73*4882a593Smuzhiyun 	u32 bss_entries;
74*4882a593Smuzhiyun 	struct cfg80211_scan_request *scan_req; /* protected by RTNL */
75*4882a593Smuzhiyun 	struct cfg80211_scan_request *int_scan_req;
76*4882a593Smuzhiyun 	struct sk_buff *scan_msg;
77*4882a593Smuzhiyun 	struct list_head sched_scan_req_list;
78*4882a593Smuzhiyun 	time64_t suspend_at;
79*4882a593Smuzhiyun 	struct work_struct scan_done_wk;
80*4882a593Smuzhiyun 
81*4882a593Smuzhiyun 	struct genl_info *cur_cmd_info;
82*4882a593Smuzhiyun 
83*4882a593Smuzhiyun 	struct work_struct conn_work;
84*4882a593Smuzhiyun 	struct work_struct event_work;
85*4882a593Smuzhiyun 
86*4882a593Smuzhiyun 	struct delayed_work dfs_update_channels_wk;
87*4882a593Smuzhiyun 
88*4882a593Smuzhiyun 	/* netlink port which started critical protocol (0 means not started) */
89*4882a593Smuzhiyun 	u32 crit_proto_nlportid;
90*4882a593Smuzhiyun 
91*4882a593Smuzhiyun 	struct cfg80211_coalesce *coalesce;
92*4882a593Smuzhiyun 
93*4882a593Smuzhiyun 	struct work_struct destroy_work;
94*4882a593Smuzhiyun 	struct work_struct sched_scan_stop_wk;
95*4882a593Smuzhiyun 	struct work_struct sched_scan_res_wk;
96*4882a593Smuzhiyun 
97*4882a593Smuzhiyun 	struct cfg80211_chan_def radar_chandef;
98*4882a593Smuzhiyun 	struct work_struct propagate_radar_detect_wk;
99*4882a593Smuzhiyun 
100*4882a593Smuzhiyun 	struct cfg80211_chan_def cac_done_chandef;
101*4882a593Smuzhiyun 	struct work_struct propagate_cac_done_wk;
102*4882a593Smuzhiyun 
103*4882a593Smuzhiyun 	struct work_struct mgmt_registrations_update_wk;
104*4882a593Smuzhiyun 	/* lock for all wdev lists */
105*4882a593Smuzhiyun 	spinlock_t mgmt_registrations_lock;
106*4882a593Smuzhiyun 
107*4882a593Smuzhiyun 	/* must be last because of the way we do wiphy_priv(),
108*4882a593Smuzhiyun 	 * and it should at least be aligned to NETDEV_ALIGN */
109*4882a593Smuzhiyun 	struct wiphy wiphy __aligned(NETDEV_ALIGN);
110*4882a593Smuzhiyun };
111*4882a593Smuzhiyun 
112*4882a593Smuzhiyun static inline
wiphy_to_rdev(struct wiphy * wiphy)113*4882a593Smuzhiyun struct cfg80211_registered_device *wiphy_to_rdev(struct wiphy *wiphy)
114*4882a593Smuzhiyun {
115*4882a593Smuzhiyun 	BUG_ON(!wiphy);
116*4882a593Smuzhiyun 	return container_of(wiphy, struct cfg80211_registered_device, wiphy);
117*4882a593Smuzhiyun }
118*4882a593Smuzhiyun 
119*4882a593Smuzhiyun static inline void
cfg80211_rdev_free_wowlan(struct cfg80211_registered_device * rdev)120*4882a593Smuzhiyun cfg80211_rdev_free_wowlan(struct cfg80211_registered_device *rdev)
121*4882a593Smuzhiyun {
122*4882a593Smuzhiyun #ifdef CONFIG_PM
123*4882a593Smuzhiyun 	int i;
124*4882a593Smuzhiyun 
125*4882a593Smuzhiyun 	if (!rdev->wiphy.wowlan_config)
126*4882a593Smuzhiyun 		return;
127*4882a593Smuzhiyun 	for (i = 0; i < rdev->wiphy.wowlan_config->n_patterns; i++)
128*4882a593Smuzhiyun 		kfree(rdev->wiphy.wowlan_config->patterns[i].mask);
129*4882a593Smuzhiyun 	kfree(rdev->wiphy.wowlan_config->patterns);
130*4882a593Smuzhiyun 	if (rdev->wiphy.wowlan_config->tcp &&
131*4882a593Smuzhiyun 	    rdev->wiphy.wowlan_config->tcp->sock)
132*4882a593Smuzhiyun 		sock_release(rdev->wiphy.wowlan_config->tcp->sock);
133*4882a593Smuzhiyun 	kfree(rdev->wiphy.wowlan_config->tcp);
134*4882a593Smuzhiyun 	kfree(rdev->wiphy.wowlan_config->nd_config);
135*4882a593Smuzhiyun 	kfree(rdev->wiphy.wowlan_config);
136*4882a593Smuzhiyun #endif
137*4882a593Smuzhiyun }
138*4882a593Smuzhiyun 
cfg80211_assign_cookie(struct cfg80211_registered_device * rdev)139*4882a593Smuzhiyun static inline u64 cfg80211_assign_cookie(struct cfg80211_registered_device *rdev)
140*4882a593Smuzhiyun {
141*4882a593Smuzhiyun 	u64 r = ++rdev->cookie_counter;
142*4882a593Smuzhiyun 
143*4882a593Smuzhiyun 	if (WARN_ON(r == 0))
144*4882a593Smuzhiyun 		r = ++rdev->cookie_counter;
145*4882a593Smuzhiyun 
146*4882a593Smuzhiyun 	return r;
147*4882a593Smuzhiyun }
148*4882a593Smuzhiyun 
149*4882a593Smuzhiyun extern struct workqueue_struct *cfg80211_wq;
150*4882a593Smuzhiyun extern struct list_head cfg80211_rdev_list;
151*4882a593Smuzhiyun extern int cfg80211_rdev_list_generation;
152*4882a593Smuzhiyun 
153*4882a593Smuzhiyun struct cfg80211_internal_bss {
154*4882a593Smuzhiyun 	struct list_head list;
155*4882a593Smuzhiyun 	struct list_head hidden_list;
156*4882a593Smuzhiyun 	struct rb_node rbn;
157*4882a593Smuzhiyun 	u64 ts_boottime;
158*4882a593Smuzhiyun 	unsigned long ts;
159*4882a593Smuzhiyun 	unsigned long refcount;
160*4882a593Smuzhiyun 	atomic_t hold;
161*4882a593Smuzhiyun 
162*4882a593Smuzhiyun 	/* time at the start of the reception of the first octet of the
163*4882a593Smuzhiyun 	 * timestamp field of the last beacon/probe received for this BSS.
164*4882a593Smuzhiyun 	 * The time is the TSF of the BSS specified by %parent_bssid.
165*4882a593Smuzhiyun 	 */
166*4882a593Smuzhiyun 	u64 parent_tsf;
167*4882a593Smuzhiyun 
168*4882a593Smuzhiyun 	/* the BSS according to which %parent_tsf is set. This is set to
169*4882a593Smuzhiyun 	 * the BSS that the interface that requested the scan was connected to
170*4882a593Smuzhiyun 	 * when the beacon/probe was received.
171*4882a593Smuzhiyun 	 */
172*4882a593Smuzhiyun 	u8 parent_bssid[ETH_ALEN] __aligned(2);
173*4882a593Smuzhiyun 
174*4882a593Smuzhiyun 	/* must be last because of priv member */
175*4882a593Smuzhiyun 	struct cfg80211_bss pub;
176*4882a593Smuzhiyun };
177*4882a593Smuzhiyun 
bss_from_pub(struct cfg80211_bss * pub)178*4882a593Smuzhiyun static inline struct cfg80211_internal_bss *bss_from_pub(struct cfg80211_bss *pub)
179*4882a593Smuzhiyun {
180*4882a593Smuzhiyun 	return container_of(pub, struct cfg80211_internal_bss, pub);
181*4882a593Smuzhiyun }
182*4882a593Smuzhiyun 
cfg80211_hold_bss(struct cfg80211_internal_bss * bss)183*4882a593Smuzhiyun static inline void cfg80211_hold_bss(struct cfg80211_internal_bss *bss)
184*4882a593Smuzhiyun {
185*4882a593Smuzhiyun 	atomic_inc(&bss->hold);
186*4882a593Smuzhiyun 	if (bss->pub.transmitted_bss) {
187*4882a593Smuzhiyun 		bss = container_of(bss->pub.transmitted_bss,
188*4882a593Smuzhiyun 				   struct cfg80211_internal_bss, pub);
189*4882a593Smuzhiyun 		atomic_inc(&bss->hold);
190*4882a593Smuzhiyun 	}
191*4882a593Smuzhiyun }
192*4882a593Smuzhiyun 
cfg80211_unhold_bss(struct cfg80211_internal_bss * bss)193*4882a593Smuzhiyun static inline void cfg80211_unhold_bss(struct cfg80211_internal_bss *bss)
194*4882a593Smuzhiyun {
195*4882a593Smuzhiyun 	int r = atomic_dec_return(&bss->hold);
196*4882a593Smuzhiyun 	WARN_ON(r < 0);
197*4882a593Smuzhiyun 	if (bss->pub.transmitted_bss) {
198*4882a593Smuzhiyun 		bss = container_of(bss->pub.transmitted_bss,
199*4882a593Smuzhiyun 				   struct cfg80211_internal_bss, pub);
200*4882a593Smuzhiyun 		r = atomic_dec_return(&bss->hold);
201*4882a593Smuzhiyun 		WARN_ON(r < 0);
202*4882a593Smuzhiyun 	}
203*4882a593Smuzhiyun }
204*4882a593Smuzhiyun 
205*4882a593Smuzhiyun 
206*4882a593Smuzhiyun struct cfg80211_registered_device *cfg80211_rdev_by_wiphy_idx(int wiphy_idx);
207*4882a593Smuzhiyun int get_wiphy_idx(struct wiphy *wiphy);
208*4882a593Smuzhiyun 
209*4882a593Smuzhiyun struct wiphy *wiphy_idx_to_wiphy(int wiphy_idx);
210*4882a593Smuzhiyun 
211*4882a593Smuzhiyun int cfg80211_switch_netns(struct cfg80211_registered_device *rdev,
212*4882a593Smuzhiyun 			  struct net *net);
213*4882a593Smuzhiyun 
214*4882a593Smuzhiyun void cfg80211_init_wdev(struct wireless_dev *wdev);
215*4882a593Smuzhiyun void cfg80211_register_wdev(struct cfg80211_registered_device *rdev,
216*4882a593Smuzhiyun 			    struct wireless_dev *wdev);
217*4882a593Smuzhiyun 
wdev_lock(struct wireless_dev * wdev)218*4882a593Smuzhiyun static inline void wdev_lock(struct wireless_dev *wdev)
219*4882a593Smuzhiyun 	__acquires(wdev)
220*4882a593Smuzhiyun {
221*4882a593Smuzhiyun 	mutex_lock(&wdev->mtx);
222*4882a593Smuzhiyun 	__acquire(wdev->mtx);
223*4882a593Smuzhiyun }
224*4882a593Smuzhiyun 
wdev_unlock(struct wireless_dev * wdev)225*4882a593Smuzhiyun static inline void wdev_unlock(struct wireless_dev *wdev)
226*4882a593Smuzhiyun 	__releases(wdev)
227*4882a593Smuzhiyun {
228*4882a593Smuzhiyun 	__release(wdev->mtx);
229*4882a593Smuzhiyun 	mutex_unlock(&wdev->mtx);
230*4882a593Smuzhiyun }
231*4882a593Smuzhiyun 
232*4882a593Smuzhiyun #define ASSERT_WDEV_LOCK(wdev) lockdep_assert_held(&(wdev)->mtx)
233*4882a593Smuzhiyun 
cfg80211_has_monitors_only(struct cfg80211_registered_device * rdev)234*4882a593Smuzhiyun static inline bool cfg80211_has_monitors_only(struct cfg80211_registered_device *rdev)
235*4882a593Smuzhiyun {
236*4882a593Smuzhiyun 	ASSERT_RTNL();
237*4882a593Smuzhiyun 
238*4882a593Smuzhiyun 	return rdev->num_running_ifaces == rdev->num_running_monitor_ifaces &&
239*4882a593Smuzhiyun 	       rdev->num_running_ifaces > 0;
240*4882a593Smuzhiyun }
241*4882a593Smuzhiyun 
242*4882a593Smuzhiyun enum cfg80211_event_type {
243*4882a593Smuzhiyun 	EVENT_CONNECT_RESULT,
244*4882a593Smuzhiyun 	EVENT_ROAMED,
245*4882a593Smuzhiyun 	EVENT_DISCONNECTED,
246*4882a593Smuzhiyun 	EVENT_IBSS_JOINED,
247*4882a593Smuzhiyun 	EVENT_STOPPED,
248*4882a593Smuzhiyun 	EVENT_PORT_AUTHORIZED,
249*4882a593Smuzhiyun };
250*4882a593Smuzhiyun 
251*4882a593Smuzhiyun struct cfg80211_event {
252*4882a593Smuzhiyun 	struct list_head list;
253*4882a593Smuzhiyun 	enum cfg80211_event_type type;
254*4882a593Smuzhiyun 
255*4882a593Smuzhiyun 	union {
256*4882a593Smuzhiyun 		struct cfg80211_connect_resp_params cr;
257*4882a593Smuzhiyun 		struct cfg80211_roam_info rm;
258*4882a593Smuzhiyun 		struct {
259*4882a593Smuzhiyun 			const u8 *ie;
260*4882a593Smuzhiyun 			size_t ie_len;
261*4882a593Smuzhiyun 			u16 reason;
262*4882a593Smuzhiyun 			bool locally_generated;
263*4882a593Smuzhiyun 		} dc;
264*4882a593Smuzhiyun 		struct {
265*4882a593Smuzhiyun 			u8 bssid[ETH_ALEN];
266*4882a593Smuzhiyun 			struct ieee80211_channel *channel;
267*4882a593Smuzhiyun 		} ij;
268*4882a593Smuzhiyun 		struct {
269*4882a593Smuzhiyun 			u8 bssid[ETH_ALEN];
270*4882a593Smuzhiyun 		} pa;
271*4882a593Smuzhiyun 	};
272*4882a593Smuzhiyun };
273*4882a593Smuzhiyun 
274*4882a593Smuzhiyun struct cfg80211_cached_keys {
275*4882a593Smuzhiyun 	struct key_params params[CFG80211_MAX_WEP_KEYS];
276*4882a593Smuzhiyun 	u8 data[CFG80211_MAX_WEP_KEYS][WLAN_KEY_LEN_WEP104];
277*4882a593Smuzhiyun 	int def;
278*4882a593Smuzhiyun };
279*4882a593Smuzhiyun 
280*4882a593Smuzhiyun enum cfg80211_chan_mode {
281*4882a593Smuzhiyun 	CHAN_MODE_UNDEFINED,
282*4882a593Smuzhiyun 	CHAN_MODE_SHARED,
283*4882a593Smuzhiyun 	CHAN_MODE_EXCLUSIVE,
284*4882a593Smuzhiyun };
285*4882a593Smuzhiyun 
286*4882a593Smuzhiyun struct cfg80211_beacon_registration {
287*4882a593Smuzhiyun 	struct list_head list;
288*4882a593Smuzhiyun 	u32 nlportid;
289*4882a593Smuzhiyun };
290*4882a593Smuzhiyun 
291*4882a593Smuzhiyun struct cfg80211_cqm_config {
292*4882a593Smuzhiyun 	u32 rssi_hyst;
293*4882a593Smuzhiyun 	s32 last_rssi_event_value;
294*4882a593Smuzhiyun 	int n_rssi_thresholds;
295*4882a593Smuzhiyun 	s32 rssi_thresholds[];
296*4882a593Smuzhiyun };
297*4882a593Smuzhiyun 
298*4882a593Smuzhiyun void cfg80211_destroy_ifaces(struct cfg80211_registered_device *rdev);
299*4882a593Smuzhiyun 
300*4882a593Smuzhiyun /* free object */
301*4882a593Smuzhiyun void cfg80211_dev_free(struct cfg80211_registered_device *rdev);
302*4882a593Smuzhiyun 
303*4882a593Smuzhiyun int cfg80211_dev_rename(struct cfg80211_registered_device *rdev,
304*4882a593Smuzhiyun 			char *newname);
305*4882a593Smuzhiyun 
306*4882a593Smuzhiyun void ieee80211_set_bitrate_flags(struct wiphy *wiphy);
307*4882a593Smuzhiyun 
308*4882a593Smuzhiyun void cfg80211_bss_expire(struct cfg80211_registered_device *rdev);
309*4882a593Smuzhiyun void cfg80211_bss_age(struct cfg80211_registered_device *rdev,
310*4882a593Smuzhiyun                       unsigned long age_secs);
311*4882a593Smuzhiyun void cfg80211_update_assoc_bss_entry(struct wireless_dev *wdev,
312*4882a593Smuzhiyun 				     struct ieee80211_channel *channel);
313*4882a593Smuzhiyun 
314*4882a593Smuzhiyun /* IBSS */
315*4882a593Smuzhiyun int __cfg80211_join_ibss(struct cfg80211_registered_device *rdev,
316*4882a593Smuzhiyun 			 struct net_device *dev,
317*4882a593Smuzhiyun 			 struct cfg80211_ibss_params *params,
318*4882a593Smuzhiyun 			 struct cfg80211_cached_keys *connkeys);
319*4882a593Smuzhiyun void cfg80211_clear_ibss(struct net_device *dev, bool nowext);
320*4882a593Smuzhiyun int __cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
321*4882a593Smuzhiyun 			  struct net_device *dev, bool nowext);
322*4882a593Smuzhiyun int cfg80211_leave_ibss(struct cfg80211_registered_device *rdev,
323*4882a593Smuzhiyun 			struct net_device *dev, bool nowext);
324*4882a593Smuzhiyun void __cfg80211_ibss_joined(struct net_device *dev, const u8 *bssid,
325*4882a593Smuzhiyun 			    struct ieee80211_channel *channel);
326*4882a593Smuzhiyun int cfg80211_ibss_wext_join(struct cfg80211_registered_device *rdev,
327*4882a593Smuzhiyun 			    struct wireless_dev *wdev);
328*4882a593Smuzhiyun 
329*4882a593Smuzhiyun /* mesh */
330*4882a593Smuzhiyun extern const struct mesh_config default_mesh_config;
331*4882a593Smuzhiyun extern const struct mesh_setup default_mesh_setup;
332*4882a593Smuzhiyun int __cfg80211_join_mesh(struct cfg80211_registered_device *rdev,
333*4882a593Smuzhiyun 			 struct net_device *dev,
334*4882a593Smuzhiyun 			 struct mesh_setup *setup,
335*4882a593Smuzhiyun 			 const struct mesh_config *conf);
336*4882a593Smuzhiyun int __cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
337*4882a593Smuzhiyun 			  struct net_device *dev);
338*4882a593Smuzhiyun int cfg80211_leave_mesh(struct cfg80211_registered_device *rdev,
339*4882a593Smuzhiyun 			struct net_device *dev);
340*4882a593Smuzhiyun int cfg80211_set_mesh_channel(struct cfg80211_registered_device *rdev,
341*4882a593Smuzhiyun 			      struct wireless_dev *wdev,
342*4882a593Smuzhiyun 			      struct cfg80211_chan_def *chandef);
343*4882a593Smuzhiyun 
344*4882a593Smuzhiyun /* OCB */
345*4882a593Smuzhiyun int __cfg80211_join_ocb(struct cfg80211_registered_device *rdev,
346*4882a593Smuzhiyun 			struct net_device *dev,
347*4882a593Smuzhiyun 			struct ocb_setup *setup);
348*4882a593Smuzhiyun int cfg80211_join_ocb(struct cfg80211_registered_device *rdev,
349*4882a593Smuzhiyun 		      struct net_device *dev,
350*4882a593Smuzhiyun 		      struct ocb_setup *setup);
351*4882a593Smuzhiyun int __cfg80211_leave_ocb(struct cfg80211_registered_device *rdev,
352*4882a593Smuzhiyun 			 struct net_device *dev);
353*4882a593Smuzhiyun int cfg80211_leave_ocb(struct cfg80211_registered_device *rdev,
354*4882a593Smuzhiyun 		       struct net_device *dev);
355*4882a593Smuzhiyun 
356*4882a593Smuzhiyun /* AP */
357*4882a593Smuzhiyun int __cfg80211_stop_ap(struct cfg80211_registered_device *rdev,
358*4882a593Smuzhiyun 		       struct net_device *dev, bool notify);
359*4882a593Smuzhiyun int cfg80211_stop_ap(struct cfg80211_registered_device *rdev,
360*4882a593Smuzhiyun 		     struct net_device *dev, bool notify);
361*4882a593Smuzhiyun 
362*4882a593Smuzhiyun /* MLME */
363*4882a593Smuzhiyun int cfg80211_mlme_auth(struct cfg80211_registered_device *rdev,
364*4882a593Smuzhiyun 		       struct net_device *dev,
365*4882a593Smuzhiyun 		       struct ieee80211_channel *chan,
366*4882a593Smuzhiyun 		       enum nl80211_auth_type auth_type,
367*4882a593Smuzhiyun 		       const u8 *bssid,
368*4882a593Smuzhiyun 		       const u8 *ssid, int ssid_len,
369*4882a593Smuzhiyun 		       const u8 *ie, int ie_len,
370*4882a593Smuzhiyun 		       const u8 *key, int key_len, int key_idx,
371*4882a593Smuzhiyun 		       const u8 *auth_data, int auth_data_len);
372*4882a593Smuzhiyun int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev,
373*4882a593Smuzhiyun 			struct net_device *dev,
374*4882a593Smuzhiyun 			struct ieee80211_channel *chan,
375*4882a593Smuzhiyun 			const u8 *bssid,
376*4882a593Smuzhiyun 			const u8 *ssid, int ssid_len,
377*4882a593Smuzhiyun 			struct cfg80211_assoc_request *req);
378*4882a593Smuzhiyun int cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev,
379*4882a593Smuzhiyun 			 struct net_device *dev, const u8 *bssid,
380*4882a593Smuzhiyun 			 const u8 *ie, int ie_len, u16 reason,
381*4882a593Smuzhiyun 			 bool local_state_change);
382*4882a593Smuzhiyun int cfg80211_mlme_disassoc(struct cfg80211_registered_device *rdev,
383*4882a593Smuzhiyun 			   struct net_device *dev, const u8 *bssid,
384*4882a593Smuzhiyun 			   const u8 *ie, int ie_len, u16 reason,
385*4882a593Smuzhiyun 			   bool local_state_change);
386*4882a593Smuzhiyun void cfg80211_mlme_down(struct cfg80211_registered_device *rdev,
387*4882a593Smuzhiyun 			struct net_device *dev);
388*4882a593Smuzhiyun int cfg80211_mlme_register_mgmt(struct wireless_dev *wdev, u32 snd_pid,
389*4882a593Smuzhiyun 				u16 frame_type, const u8 *match_data,
390*4882a593Smuzhiyun 				int match_len, bool multicast_rx,
391*4882a593Smuzhiyun 				struct netlink_ext_ack *extack);
392*4882a593Smuzhiyun void cfg80211_mgmt_registrations_update_wk(struct work_struct *wk);
393*4882a593Smuzhiyun void cfg80211_mlme_unregister_socket(struct wireless_dev *wdev, u32 nlpid);
394*4882a593Smuzhiyun void cfg80211_mlme_purge_registrations(struct wireless_dev *wdev);
395*4882a593Smuzhiyun int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev,
396*4882a593Smuzhiyun 			  struct wireless_dev *wdev,
397*4882a593Smuzhiyun 			  struct cfg80211_mgmt_tx_params *params,
398*4882a593Smuzhiyun 			  u64 *cookie);
399*4882a593Smuzhiyun void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa,
400*4882a593Smuzhiyun 			       const struct ieee80211_ht_cap *ht_capa_mask);
401*4882a593Smuzhiyun void cfg80211_oper_and_vht_capa(struct ieee80211_vht_cap *vht_capa,
402*4882a593Smuzhiyun 				const struct ieee80211_vht_cap *vht_capa_mask);
403*4882a593Smuzhiyun 
404*4882a593Smuzhiyun /* SME events */
405*4882a593Smuzhiyun int cfg80211_connect(struct cfg80211_registered_device *rdev,
406*4882a593Smuzhiyun 		     struct net_device *dev,
407*4882a593Smuzhiyun 		     struct cfg80211_connect_params *connect,
408*4882a593Smuzhiyun 		     struct cfg80211_cached_keys *connkeys,
409*4882a593Smuzhiyun 		     const u8 *prev_bssid);
410*4882a593Smuzhiyun void __cfg80211_connect_result(struct net_device *dev,
411*4882a593Smuzhiyun 			       struct cfg80211_connect_resp_params *params,
412*4882a593Smuzhiyun 			       bool wextev);
413*4882a593Smuzhiyun void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
414*4882a593Smuzhiyun 			     size_t ie_len, u16 reason, bool from_ap);
415*4882a593Smuzhiyun int cfg80211_disconnect(struct cfg80211_registered_device *rdev,
416*4882a593Smuzhiyun 			struct net_device *dev, u16 reason,
417*4882a593Smuzhiyun 			bool wextev);
418*4882a593Smuzhiyun void __cfg80211_roamed(struct wireless_dev *wdev,
419*4882a593Smuzhiyun 		       struct cfg80211_roam_info *info);
420*4882a593Smuzhiyun void __cfg80211_port_authorized(struct wireless_dev *wdev, const u8 *bssid);
421*4882a593Smuzhiyun int cfg80211_mgd_wext_connect(struct cfg80211_registered_device *rdev,
422*4882a593Smuzhiyun 			      struct wireless_dev *wdev);
423*4882a593Smuzhiyun void cfg80211_autodisconnect_wk(struct work_struct *work);
424*4882a593Smuzhiyun 
425*4882a593Smuzhiyun /* SME implementation */
426*4882a593Smuzhiyun void cfg80211_conn_work(struct work_struct *work);
427*4882a593Smuzhiyun void cfg80211_sme_scan_done(struct net_device *dev);
428*4882a593Smuzhiyun bool cfg80211_sme_rx_assoc_resp(struct wireless_dev *wdev, u16 status);
429*4882a593Smuzhiyun void cfg80211_sme_rx_auth(struct wireless_dev *wdev, const u8 *buf, size_t len);
430*4882a593Smuzhiyun void cfg80211_sme_disassoc(struct wireless_dev *wdev);
431*4882a593Smuzhiyun void cfg80211_sme_deauth(struct wireless_dev *wdev);
432*4882a593Smuzhiyun void cfg80211_sme_auth_timeout(struct wireless_dev *wdev);
433*4882a593Smuzhiyun void cfg80211_sme_assoc_timeout(struct wireless_dev *wdev);
434*4882a593Smuzhiyun void cfg80211_sme_abandon_assoc(struct wireless_dev *wdev);
435*4882a593Smuzhiyun 
436*4882a593Smuzhiyun /* internal helpers */
437*4882a593Smuzhiyun bool cfg80211_supported_cipher_suite(struct wiphy *wiphy, u32 cipher);
438*4882a593Smuzhiyun bool cfg80211_valid_key_idx(struct cfg80211_registered_device *rdev,
439*4882a593Smuzhiyun 			    int key_idx, bool pairwise);
440*4882a593Smuzhiyun int cfg80211_validate_key_settings(struct cfg80211_registered_device *rdev,
441*4882a593Smuzhiyun 				   struct key_params *params, int key_idx,
442*4882a593Smuzhiyun 				   bool pairwise, const u8 *mac_addr);
443*4882a593Smuzhiyun void __cfg80211_scan_done(struct work_struct *wk);
444*4882a593Smuzhiyun void ___cfg80211_scan_done(struct cfg80211_registered_device *rdev,
445*4882a593Smuzhiyun 			   bool send_message);
446*4882a593Smuzhiyun void cfg80211_add_sched_scan_req(struct cfg80211_registered_device *rdev,
447*4882a593Smuzhiyun 				 struct cfg80211_sched_scan_request *req);
448*4882a593Smuzhiyun int cfg80211_sched_scan_req_possible(struct cfg80211_registered_device *rdev,
449*4882a593Smuzhiyun 				     bool want_multi);
450*4882a593Smuzhiyun void cfg80211_sched_scan_results_wk(struct work_struct *work);
451*4882a593Smuzhiyun int cfg80211_stop_sched_scan_req(struct cfg80211_registered_device *rdev,
452*4882a593Smuzhiyun 				 struct cfg80211_sched_scan_request *req,
453*4882a593Smuzhiyun 				 bool driver_initiated);
454*4882a593Smuzhiyun int __cfg80211_stop_sched_scan(struct cfg80211_registered_device *rdev,
455*4882a593Smuzhiyun 			       u64 reqid, bool driver_initiated);
456*4882a593Smuzhiyun void cfg80211_upload_connect_keys(struct wireless_dev *wdev);
457*4882a593Smuzhiyun int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
458*4882a593Smuzhiyun 			  struct net_device *dev, enum nl80211_iftype ntype,
459*4882a593Smuzhiyun 			  struct vif_params *params);
460*4882a593Smuzhiyun void cfg80211_process_rdev_events(struct cfg80211_registered_device *rdev);
461*4882a593Smuzhiyun void cfg80211_process_wdev_events(struct wireless_dev *wdev);
462*4882a593Smuzhiyun 
463*4882a593Smuzhiyun bool cfg80211_does_bw_fit_range(const struct ieee80211_freq_range *freq_range,
464*4882a593Smuzhiyun 				u32 center_freq_khz, u32 bw_khz);
465*4882a593Smuzhiyun 
466*4882a593Smuzhiyun int cfg80211_scan(struct cfg80211_registered_device *rdev);
467*4882a593Smuzhiyun 
468*4882a593Smuzhiyun extern struct work_struct cfg80211_disconnect_work;
469*4882a593Smuzhiyun 
470*4882a593Smuzhiyun /**
471*4882a593Smuzhiyun  * cfg80211_chandef_dfs_usable - checks if chandef is DFS usable
472*4882a593Smuzhiyun  * @wiphy: the wiphy to validate against
473*4882a593Smuzhiyun  * @chandef: the channel definition to check
474*4882a593Smuzhiyun  *
475*4882a593Smuzhiyun  * Checks if chandef is usable and we can/need start CAC on such channel.
476*4882a593Smuzhiyun  *
477*4882a593Smuzhiyun  * Return: true if all channels available and at least
478*4882a593Smuzhiyun  *	   one channel requires CAC (NL80211_DFS_USABLE)
479*4882a593Smuzhiyun  */
480*4882a593Smuzhiyun bool cfg80211_chandef_dfs_usable(struct wiphy *wiphy,
481*4882a593Smuzhiyun 				 const struct cfg80211_chan_def *chandef);
482*4882a593Smuzhiyun 
483*4882a593Smuzhiyun void cfg80211_set_dfs_state(struct wiphy *wiphy,
484*4882a593Smuzhiyun 			    const struct cfg80211_chan_def *chandef,
485*4882a593Smuzhiyun 			    enum nl80211_dfs_state dfs_state);
486*4882a593Smuzhiyun 
487*4882a593Smuzhiyun void cfg80211_dfs_channels_update_work(struct work_struct *work);
488*4882a593Smuzhiyun 
489*4882a593Smuzhiyun unsigned int
490*4882a593Smuzhiyun cfg80211_chandef_dfs_cac_time(struct wiphy *wiphy,
491*4882a593Smuzhiyun 			      const struct cfg80211_chan_def *chandef);
492*4882a593Smuzhiyun 
493*4882a593Smuzhiyun void cfg80211_sched_dfs_chan_update(struct cfg80211_registered_device *rdev);
494*4882a593Smuzhiyun 
495*4882a593Smuzhiyun bool cfg80211_any_wiphy_oper_chan(struct wiphy *wiphy,
496*4882a593Smuzhiyun 				  struct ieee80211_channel *chan);
497*4882a593Smuzhiyun 
498*4882a593Smuzhiyun bool cfg80211_beaconing_iface_active(struct wireless_dev *wdev);
499*4882a593Smuzhiyun 
500*4882a593Smuzhiyun bool cfg80211_is_sub_chan(struct cfg80211_chan_def *chandef,
501*4882a593Smuzhiyun 			  struct ieee80211_channel *chan);
502*4882a593Smuzhiyun 
elapsed_jiffies_msecs(unsigned long start)503*4882a593Smuzhiyun static inline unsigned int elapsed_jiffies_msecs(unsigned long start)
504*4882a593Smuzhiyun {
505*4882a593Smuzhiyun 	unsigned long end = jiffies;
506*4882a593Smuzhiyun 
507*4882a593Smuzhiyun 	if (end >= start)
508*4882a593Smuzhiyun 		return jiffies_to_msecs(end - start);
509*4882a593Smuzhiyun 
510*4882a593Smuzhiyun 	return jiffies_to_msecs(end + (ULONG_MAX - start) + 1);
511*4882a593Smuzhiyun }
512*4882a593Smuzhiyun 
513*4882a593Smuzhiyun void
514*4882a593Smuzhiyun cfg80211_get_chan_state(struct wireless_dev *wdev,
515*4882a593Smuzhiyun 		        struct ieee80211_channel **chan,
516*4882a593Smuzhiyun 		        enum cfg80211_chan_mode *chanmode,
517*4882a593Smuzhiyun 		        u8 *radar_detect);
518*4882a593Smuzhiyun 
519*4882a593Smuzhiyun int cfg80211_set_monitor_channel(struct cfg80211_registered_device *rdev,
520*4882a593Smuzhiyun 				 struct cfg80211_chan_def *chandef);
521*4882a593Smuzhiyun 
522*4882a593Smuzhiyun int ieee80211_get_ratemask(struct ieee80211_supported_band *sband,
523*4882a593Smuzhiyun 			   const u8 *rates, unsigned int n_rates,
524*4882a593Smuzhiyun 			   u32 *mask);
525*4882a593Smuzhiyun 
526*4882a593Smuzhiyun int cfg80211_validate_beacon_int(struct cfg80211_registered_device *rdev,
527*4882a593Smuzhiyun 				 enum nl80211_iftype iftype, u32 beacon_int);
528*4882a593Smuzhiyun 
529*4882a593Smuzhiyun void cfg80211_update_iface_num(struct cfg80211_registered_device *rdev,
530*4882a593Smuzhiyun 			       enum nl80211_iftype iftype, int num);
531*4882a593Smuzhiyun 
532*4882a593Smuzhiyun void __cfg80211_leave(struct cfg80211_registered_device *rdev,
533*4882a593Smuzhiyun 		      struct wireless_dev *wdev);
534*4882a593Smuzhiyun void cfg80211_leave(struct cfg80211_registered_device *rdev,
535*4882a593Smuzhiyun 		    struct wireless_dev *wdev);
536*4882a593Smuzhiyun 
537*4882a593Smuzhiyun void cfg80211_stop_p2p_device(struct cfg80211_registered_device *rdev,
538*4882a593Smuzhiyun 			      struct wireless_dev *wdev);
539*4882a593Smuzhiyun 
540*4882a593Smuzhiyun void cfg80211_stop_nan(struct cfg80211_registered_device *rdev,
541*4882a593Smuzhiyun 		       struct wireless_dev *wdev);
542*4882a593Smuzhiyun 
543*4882a593Smuzhiyun struct cfg80211_internal_bss *
544*4882a593Smuzhiyun cfg80211_bss_update(struct cfg80211_registered_device *rdev,
545*4882a593Smuzhiyun 		    struct cfg80211_internal_bss *tmp,
546*4882a593Smuzhiyun 		    bool signal_valid, unsigned long ts);
547*4882a593Smuzhiyun #ifdef CONFIG_CFG80211_DEVELOPER_WARNINGS
548*4882a593Smuzhiyun #define CFG80211_DEV_WARN_ON(cond)	WARN_ON(cond)
549*4882a593Smuzhiyun #else
550*4882a593Smuzhiyun /*
551*4882a593Smuzhiyun  * Trick to enable using it as a condition,
552*4882a593Smuzhiyun  * and also not give a warning when it's
553*4882a593Smuzhiyun  * not used that way.
554*4882a593Smuzhiyun  */
555*4882a593Smuzhiyun #define CFG80211_DEV_WARN_ON(cond)	({bool __r = (cond); __r; })
556*4882a593Smuzhiyun #endif
557*4882a593Smuzhiyun 
558*4882a593Smuzhiyun void cfg80211_cqm_config_free(struct wireless_dev *wdev);
559*4882a593Smuzhiyun 
560*4882a593Smuzhiyun void cfg80211_release_pmsr(struct wireless_dev *wdev, u32 portid);
561*4882a593Smuzhiyun void cfg80211_pmsr_wdev_down(struct wireless_dev *wdev);
562*4882a593Smuzhiyun void cfg80211_pmsr_free_wk(struct work_struct *work);
563*4882a593Smuzhiyun 
564*4882a593Smuzhiyun #endif /* __NET_WIRELESS_CORE_H */
565