nl80211.c 262.1 KB
Newer Older
1 2 3
/*
 * This is the new netlink-based wireless configuration interface.
 *
4
 * Copyright 2006-2010	Johannes Berg <johannes@sipsolutions.net>
5 6 7 8 9
 */

#include <linux/if.h>
#include <linux/module.h>
#include <linux/err.h>
10
#include <linux/slab.h>
11 12 13 14 15 16
#include <linux/list.h>
#include <linux/if_ether.h>
#include <linux/ieee80211.h>
#include <linux/nl80211.h>
#include <linux/rtnetlink.h>
#include <linux/netlink.h>
17
#include <linux/etherdevice.h>
18
#include <net/net_namespace.h>
19 20
#include <net/genetlink.h>
#include <net/cfg80211.h>
21
#include <net/sock.h>
22
#include <net/inet_connection_sock.h>
23 24
#include "core.h"
#include "nl80211.h"
25
#include "reg.h"
26
#include "rdev-ops.h"
27

28 29 30 31 32
static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
				   struct genl_info *info,
				   struct cfg80211_crypto_settings *settings,
				   int cipher_limit);

33 34 35 36 37
static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
			    struct genl_info *info);
static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
			      struct genl_info *info);

38 39 40 41 42 43 44
/* the netlink family */
static struct genl_family nl80211_fam = {
	.id = GENL_ID_GENERATE,	/* don't bother with a hardcoded ID */
	.name = "nl80211",	/* have users key off the name instead */
	.hdrsize = 0,		/* no private header */
	.version = 1,		/* no particular meaning now */
	.maxattr = NL80211_ATTR_MAX,
45
	.netnsok = true,
46 47
	.pre_doit = nl80211_pre_doit,
	.post_doit = nl80211_post_doit,
48 49
};

50 51 52
/* returns ERR_PTR values */
static struct wireless_dev *
__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
53
{
54 55 56 57 58 59 60
	struct cfg80211_registered_device *rdev;
	struct wireless_dev *result = NULL;
	bool have_ifidx = attrs[NL80211_ATTR_IFINDEX];
	bool have_wdev_id = attrs[NL80211_ATTR_WDEV];
	u64 wdev_id;
	int wiphy_idx = -1;
	int ifidx = -1;
61

62
	assert_cfg80211_lock();
63

64 65
	if (!have_ifidx && !have_wdev_id)
		return ERR_PTR(-EINVAL);
66

67 68 69 70 71
	if (have_ifidx)
		ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
	if (have_wdev_id) {
		wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
		wiphy_idx = wdev_id >> 32;
72 73
	}

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
		struct wireless_dev *wdev;

		if (wiphy_net(&rdev->wiphy) != netns)
			continue;

		if (have_wdev_id && rdev->wiphy_idx != wiphy_idx)
			continue;

		mutex_lock(&rdev->devlist_mtx);
		list_for_each_entry(wdev, &rdev->wdev_list, list) {
			if (have_ifidx && wdev->netdev &&
			    wdev->netdev->ifindex == ifidx) {
				result = wdev;
				break;
			}
			if (have_wdev_id && wdev->identifier == (u32)wdev_id) {
				result = wdev;
				break;
			}
		}
		mutex_unlock(&rdev->devlist_mtx);

		if (result)
			break;
	}

	if (result)
		return result;
	return ERR_PTR(-ENODEV);
104 105
}

106
static struct cfg80211_registered_device *
107
__cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs)
108
{
109 110
	struct cfg80211_registered_device *rdev = NULL, *tmp;
	struct net_device *netdev;
111 112 113

	assert_cfg80211_lock();

114
	if (!attrs[NL80211_ATTR_WIPHY] &&
115 116
	    !attrs[NL80211_ATTR_IFINDEX] &&
	    !attrs[NL80211_ATTR_WDEV])
117 118
		return ERR_PTR(-EINVAL);

119
	if (attrs[NL80211_ATTR_WIPHY])
120
		rdev = cfg80211_rdev_by_wiphy_idx(
121
				nla_get_u32(attrs[NL80211_ATTR_WIPHY]));
122

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
	if (attrs[NL80211_ATTR_WDEV]) {
		u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
		struct wireless_dev *wdev;
		bool found = false;

		tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32);
		if (tmp) {
			/* make sure wdev exists */
			mutex_lock(&tmp->devlist_mtx);
			list_for_each_entry(wdev, &tmp->wdev_list, list) {
				if (wdev->identifier != (u32)wdev_id)
					continue;
				found = true;
				break;
			}
			mutex_unlock(&tmp->devlist_mtx);

			if (!found)
				tmp = NULL;

			if (rdev && tmp != rdev)
				return ERR_PTR(-EINVAL);
			rdev = tmp;
		}
	}

149 150
	if (attrs[NL80211_ATTR_IFINDEX]) {
		int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
J
Johannes Berg 已提交
151
		netdev = dev_get_by_index(netns, ifindex);
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
		if (netdev) {
			if (netdev->ieee80211_ptr)
				tmp = wiphy_to_dev(
						netdev->ieee80211_ptr->wiphy);
			else
				tmp = NULL;

			dev_put(netdev);

			/* not wireless device -- return error */
			if (!tmp)
				return ERR_PTR(-EINVAL);

			/* mismatch -- return error */
			if (rdev && tmp != rdev)
				return ERR_PTR(-EINVAL);

			rdev = tmp;
170 171 172
		}
	}

J
Johannes Berg 已提交
173 174
	if (!rdev)
		return ERR_PTR(-ENODEV);
175

J
Johannes Berg 已提交
176 177 178 179
	if (netns != wiphy_net(&rdev->wiphy))
		return ERR_PTR(-ENODEV);

	return rdev;
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
}

/*
 * This function returns a pointer to the driver
 * that the genl_info item that is passed refers to.
 * If successful, it returns non-NULL and also locks
 * the driver's mutex!
 *
 * This means that you need to call cfg80211_unlock_rdev()
 * before being allowed to acquire &cfg80211_mutex!
 *
 * This is necessary because we need to lock the global
 * mutex to get an item off the list safely, and then
 * we lock the rdev mutex so it doesn't go away under us.
 *
 * We don't want to keep cfg80211_mutex locked
 * for all the time in order to allow requests on
 * other interfaces to go through at the same time.
 *
 * The result of this can be a PTR_ERR and hence must
 * be checked with IS_ERR() for errors.
 */
static struct cfg80211_registered_device *
J
Johannes Berg 已提交
203
cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
204 205 206 207
{
	struct cfg80211_registered_device *rdev;

	mutex_lock(&cfg80211_mutex);
208
	rdev = __cfg80211_rdev_from_attrs(netns, info->attrs);
209 210 211 212 213 214 215 216 217 218 219 220

	/* if it is not an error we grab the lock on
	 * it to assure it won't be going away while
	 * we operate on it */
	if (!IS_ERR(rdev))
		mutex_lock(&rdev->mtx);

	mutex_unlock(&cfg80211_mutex);

	return rdev;
}

221
/* policy for the attributes */
A
Alexey Dobriyan 已提交
222
static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
223 224
	[NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
225
				      .len = 20-1 },
226
	[NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
227

228
	[NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
S
Sujith 已提交
229
	[NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
230 231 232 233
	[NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 },
	[NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 },
	[NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 },

234 235 236 237
	[NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
	[NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
	[NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
238
	[NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
239 240 241 242

	[NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
	[NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
	[NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
243

E
Eliad Peller 已提交
244 245
	[NL80211_ATTR_MAC] = { .len = ETH_ALEN },
	[NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
246

247
	[NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
248 249 250 251 252
	[NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
				    .len = WLAN_MAX_KEY_LEN },
	[NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
	[NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
	[NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
253
	[NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
254
	[NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
255 256 257 258 259 260 261

	[NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
	[NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
	[NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
				       .len = IEEE80211_MAX_DATA_LEN },
	[NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
				       .len = IEEE80211_MAX_DATA_LEN },
262 263 264 265 266
	[NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
	[NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
	[NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
	[NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
					       .len = NL80211_MAX_SUPP_RATES },
267
	[NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
268
	[NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
J
Johannes Berg 已提交
269
	[NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
270
	[NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
271
				   .len = IEEE80211_MAX_MESH_ID_LEN },
272
	[NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
273

274 275 276
	[NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
	[NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },

277 278 279
	[NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
	[NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
	[NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
280 281
	[NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
					   .len = NL80211_MAX_SUPP_RATES },
282
	[NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
283

284
	[NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
285
	[NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
286

287
	[NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
288 289 290 291

	[NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
	[NL80211_ATTR_IE] = { .type = NLA_BINARY,
			      .len = IEEE80211_MAX_DATA_LEN },
292 293
	[NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
	[NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
294 295 296 297 298

	[NL80211_ATTR_SSID] = { .type = NLA_BINARY,
				.len = IEEE80211_MAX_SSID_LEN },
	[NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
	[NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
J
Johannes Berg 已提交
299
	[NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
300
	[NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
301
	[NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
302 303 304
	[NL80211_ATTR_STA_FLAGS2] = {
		.len = sizeof(struct nl80211_sta_flag_update),
	},
305
	[NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
306 307
	[NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
	[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
S
Samuel Ortiz 已提交
308 309 310
	[NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
	[NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
	[NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
311
	[NL80211_ATTR_PID] = { .type = NLA_U32 },
312
	[NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
S
Samuel Ortiz 已提交
313 314
	[NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
				 .len = WLAN_PMKID_LEN },
315 316
	[NL80211_ATTR_DURATION] = { .type = NLA_U32 },
	[NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
317
	[NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
318 319 320
	[NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
				 .len = IEEE80211_MAX_DATA_LEN },
	[NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
K
Kalle Valo 已提交
321
	[NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
322
	[NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
323
	[NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
324
	[NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
325 326
	[NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
327
	[NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
328 329
	[NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
330
	[NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
331
	[NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
332
	[NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
J
Johannes Berg 已提交
333
	[NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
334
	[NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
335
	[NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
336
	[NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
337
	[NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
338
	[NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
339 340 341 342
	[NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY,
					 .len = IEEE80211_MAX_DATA_LEN },
	[NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY,
					 .len = IEEE80211_MAX_DATA_LEN },
343
	[NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
344
	[NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
345
	[NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
346 347 348 349 350
	[NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 },
	[NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 },
	[NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
	[NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
	[NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
351
	[NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
352 353
	[NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
				      .len = IEEE80211_MAX_DATA_LEN },
354
	[NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
355 356 357 358
	[NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
	[NL80211_ATTR_HT_CAPABILITY_MASK] = {
		.len = NL80211_HT_CAPABILITY_LEN
	},
359
	[NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
360
	[NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
361
	[NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
362
	[NL80211_ATTR_WDEV] = { .type = NLA_U64 },
363
	[NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
364
	[NL80211_ATTR_SAE_DATA] = { .type = NLA_BINARY, },
M
Mahesh Palivela 已提交
365
	[NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN },
366
	[NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 },
367 368
	[NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 },
	[NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 },
369 370
	[NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 },
	[NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED },
371 372
};

373
/* policy for the key attributes */
A
Alexey Dobriyan 已提交
374
static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
J
Johannes Berg 已提交
375
	[NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
376 377
	[NL80211_KEY_IDX] = { .type = NLA_U8 },
	[NL80211_KEY_CIPHER] = { .type = NLA_U32 },
378
	[NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
379 380
	[NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
	[NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
381
	[NL80211_KEY_TYPE] = { .type = NLA_U32 },
382 383 384 385 386 387 388 389
	[NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
};

/* policy for the key default flags */
static const struct nla_policy
nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = {
	[NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG },
	[NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG },
390 391
};

J
Johannes Berg 已提交
392 393 394 395 396 397 398
/* policy for WoWLAN attributes */
static const struct nla_policy
nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
	[NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
	[NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
	[NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
	[NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED },
399 400 401 402
	[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
	[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
	[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
	[NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
	[NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
};

static const struct nla_policy
nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = {
	[NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 },
	[NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 },
	[NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN },
	[NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 },
	[NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 },
	[NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 },
	[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = {
		.len = sizeof(struct nl80211_wowlan_tcp_data_seq)
	},
	[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = {
		.len = sizeof(struct nl80211_wowlan_tcp_data_token)
	},
	[NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 },
	[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 },
	[NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 },
J
Johannes Berg 已提交
423 424
};

425 426 427 428 429 430 431 432
/* policy for GTK rekey offload attributes */
static const struct nla_policy
nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = {
	[NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN },
	[NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN },
	[NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN },
};

433 434
static const struct nla_policy
nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
435
	[NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
436
						 .len = IEEE80211_MAX_SSID_LEN },
437
	[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
438 439
};

440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
/* ifidx get helper */
static int nl80211_get_ifidx(struct netlink_callback *cb)
{
	int res;

	res = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
			  nl80211_fam.attrbuf, nl80211_fam.maxattr,
			  nl80211_policy);
	if (res)
		return res;

	if (!nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX])
		return -EINVAL;

	res = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_IFINDEX]);
	if (!res)
		return -EINVAL;
	return res;
}

460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
static int nl80211_prepare_netdev_dump(struct sk_buff *skb,
				       struct netlink_callback *cb,
				       struct cfg80211_registered_device **rdev,
				       struct net_device **dev)
{
	int ifidx = cb->args[0];
	int err;

	if (!ifidx)
		ifidx = nl80211_get_ifidx(cb);
	if (ifidx < 0)
		return ifidx;

	cb->args[0] = ifidx;

	rtnl_lock();

	*dev = __dev_get_by_index(sock_net(skb->sk), ifidx);
	if (!*dev) {
		err = -ENODEV;
		goto out_rtnl;
	}

	*rdev = cfg80211_get_dev_from_ifindex(sock_net(skb->sk), ifidx);
484 485
	if (IS_ERR(*rdev)) {
		err = PTR_ERR(*rdev);
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
		goto out_rtnl;
	}

	return 0;
 out_rtnl:
	rtnl_unlock();
	return err;
}

static void nl80211_finish_netdev_dump(struct cfg80211_registered_device *rdev)
{
	cfg80211_unlock_rdev(rdev);
	rtnl_unlock();
}

501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
/* IE validation */
static bool is_valid_ie_attr(const struct nlattr *attr)
{
	const u8 *pos;
	int len;

	if (!attr)
		return true;

	pos = nla_data(attr);
	len = nla_len(attr);

	while (len) {
		u8 elemlen;

		if (len < 2)
			return false;
		len -= 2;

		elemlen = pos[1];
		if (elemlen > len)
			return false;

		len -= elemlen;
		pos += 2 + elemlen;
	}

	return true;
}

531
/* message building helper */
532
static inline void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
533 534 535
				   int flags, u8 cmd)
{
	/* since there is no private header just add the generic one */
536
	return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd);
537 538
}

539 540 541
static int nl80211_msg_put_channel(struct sk_buff *msg,
				   struct ieee80211_channel *chan)
{
542 543 544
	if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
			chan->center_freq))
		goto nla_put_failure;
545

546 547 548 549 550 551 552 553 554
	if ((chan->flags & IEEE80211_CHAN_DISABLED) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED))
		goto nla_put_failure;
	if ((chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN))
		goto nla_put_failure;
	if ((chan->flags & IEEE80211_CHAN_NO_IBSS) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IBSS))
		goto nla_put_failure;
555 556 557 558 559 560 561 562 563 564
	if (chan->flags & IEEE80211_CHAN_RADAR) {
		u32 time = elapsed_jiffies_msecs(chan->dfs_state_entered);
		if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
			goto nla_put_failure;
		if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE,
				chan->dfs_state))
			goto nla_put_failure;
		if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME, time))
			goto nla_put_failure;
	}
565 566 567 568 569 570 571 572 573 574 575 576
	if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS))
		goto nla_put_failure;
	if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS))
		goto nla_put_failure;
	if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ))
		goto nla_put_failure;
	if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ))
		goto nla_put_failure;
577

578 579 580
	if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
			DBM_TO_MBM(chan->max_power)))
		goto nla_put_failure;
581 582 583 584 585 586 587

	return 0;

 nla_put_failure:
	return -ENOBUFS;
}

588 589
/* netlink command implementations */

590 591 592
struct key_parse {
	struct key_params p;
	int idx;
593
	int type;
594
	bool def, defmgmt;
595
	bool def_uni, def_multi;
596 597 598 599 600 601 602 603 604 605 606 607 608
};

static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k)
{
	struct nlattr *tb[NL80211_KEY_MAX + 1];
	int err = nla_parse_nested(tb, NL80211_KEY_MAX, key,
				   nl80211_key_policy);
	if (err)
		return err;

	k->def = !!tb[NL80211_KEY_DEFAULT];
	k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT];

609 610 611 612 613 614 615
	if (k->def) {
		k->def_uni = true;
		k->def_multi = true;
	}
	if (k->defmgmt)
		k->def_multi = true;

616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
	if (tb[NL80211_KEY_IDX])
		k->idx = nla_get_u8(tb[NL80211_KEY_IDX]);

	if (tb[NL80211_KEY_DATA]) {
		k->p.key = nla_data(tb[NL80211_KEY_DATA]);
		k->p.key_len = nla_len(tb[NL80211_KEY_DATA]);
	}

	if (tb[NL80211_KEY_SEQ]) {
		k->p.seq = nla_data(tb[NL80211_KEY_SEQ]);
		k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]);
	}

	if (tb[NL80211_KEY_CIPHER])
		k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]);

632 633 634 635 636 637
	if (tb[NL80211_KEY_TYPE]) {
		k->type = nla_get_u32(tb[NL80211_KEY_TYPE]);
		if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
			return -EINVAL;
	}

638 639
	if (tb[NL80211_KEY_DEFAULT_TYPES]) {
		struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
640 641 642
		err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
				       tb[NL80211_KEY_DEFAULT_TYPES],
				       nl80211_key_default_policy);
643 644 645 646 647 648 649
		if (err)
			return err;

		k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
		k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
	}

650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
	return 0;
}

static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k)
{
	if (info->attrs[NL80211_ATTR_KEY_DATA]) {
		k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
		k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
	}

	if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
		k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
		k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
	}

	if (info->attrs[NL80211_ATTR_KEY_IDX])
		k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);

	if (info->attrs[NL80211_ATTR_KEY_CIPHER])
		k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);

	k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT];
	k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT];

674 675 676 677 678 679 680
	if (k->def) {
		k->def_uni = true;
		k->def_multi = true;
	}
	if (k->defmgmt)
		k->def_multi = true;

681 682 683 684 685 686
	if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
		k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
		if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
			return -EINVAL;
	}

687 688 689 690 691 692 693 694 695 696 697 698 699
	if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) {
		struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
		int err = nla_parse_nested(
				kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
				info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES],
				nl80211_key_default_policy);
		if (err)
			return err;

		k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
		k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
	}

700 701 702 703 704 705 706 707 708
	return 0;
}

static int nl80211_parse_key(struct genl_info *info, struct key_parse *k)
{
	int err;

	memset(k, 0, sizeof(*k));
	k->idx = -1;
709
	k->type = -1;
710 711 712 713 714 715 716 717 718 719 720 721

	if (info->attrs[NL80211_ATTR_KEY])
		err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k);
	else
		err = nl80211_parse_key_old(info, k);

	if (err)
		return err;

	if (k->def && k->defmgmt)
		return -EINVAL;

722 723 724 725 726
	if (k->defmgmt) {
		if (k->def_uni || !k->def_multi)
			return -EINVAL;
	}

727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
	if (k->idx != -1) {
		if (k->defmgmt) {
			if (k->idx < 4 || k->idx > 5)
				return -EINVAL;
		} else if (k->def) {
			if (k->idx < 0 || k->idx > 3)
				return -EINVAL;
		} else {
			if (k->idx < 0 || k->idx > 5)
				return -EINVAL;
		}
	}

	return 0;
}

J
Johannes Berg 已提交
743 744
static struct cfg80211_cached_keys *
nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
745
		       struct nlattr *keys, bool *no_ht)
J
Johannes Berg 已提交
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
{
	struct key_parse parse;
	struct nlattr *key;
	struct cfg80211_cached_keys *result;
	int rem, err, def = 0;

	result = kzalloc(sizeof(*result), GFP_KERNEL);
	if (!result)
		return ERR_PTR(-ENOMEM);

	result->def = -1;
	result->defmgmt = -1;

	nla_for_each_nested(key, keys, rem) {
		memset(&parse, 0, sizeof(parse));
		parse.idx = -1;

		err = nl80211_parse_key_new(key, &parse);
		if (err)
			goto error;
		err = -EINVAL;
		if (!parse.p.key)
			goto error;
		if (parse.idx < 0 || parse.idx > 4)
			goto error;
		if (parse.def) {
			if (def)
				goto error;
			def = 1;
			result->def = parse.idx;
776 777
			if (!parse.def_uni || !parse.def_multi)
				goto error;
J
Johannes Berg 已提交
778 779 780
		} else if (parse.defmgmt)
			goto error;
		err = cfg80211_validate_key_settings(rdev, &parse.p,
781
						     parse.idx, false, NULL);
J
Johannes Berg 已提交
782 783 784 785 786 787
		if (err)
			goto error;
		result->params[parse.idx].cipher = parse.p.cipher;
		result->params[parse.idx].key_len = parse.p.key_len;
		result->params[parse.idx].key = result->data[parse.idx];
		memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len);
788 789 790 791 792 793

		if (parse.p.cipher == WLAN_CIPHER_SUITE_WEP40 ||
		    parse.p.cipher == WLAN_CIPHER_SUITE_WEP104) {
			if (no_ht)
				*no_ht = true;
		}
J
Johannes Berg 已提交
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
	}

	return result;
 error:
	kfree(result);
	return ERR_PTR(err);
}

static int nl80211_key_allowed(struct wireless_dev *wdev)
{
	ASSERT_WDEV_LOCK(wdev);

	switch (wdev->iftype) {
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
809
	case NL80211_IFTYPE_P2P_GO:
810
	case NL80211_IFTYPE_MESH_POINT:
J
Johannes Berg 已提交
811 812 813 814 815 816
		break;
	case NL80211_IFTYPE_ADHOC:
		if (!wdev->current_bss)
			return -ENOLINK;
		break;
	case NL80211_IFTYPE_STATION:
817
	case NL80211_IFTYPE_P2P_CLIENT:
J
Johannes Berg 已提交
818 819 820 821 822 823 824 825 826 827
		if (wdev->sme_state != CFG80211_SME_CONNECTED)
			return -ENOLINK;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

828 829 830 831 832 833 834 835 836 837
static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes)
{
	struct nlattr *nl_modes = nla_nest_start(msg, attr);
	int i;

	if (!nl_modes)
		goto nla_put_failure;

	i = 0;
	while (ifmodes) {
838 839
		if ((ifmodes & 1) && nla_put_flag(msg, i))
			goto nla_put_failure;
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
		ifmodes >>= 1;
		i++;
	}

	nla_nest_end(msg, nl_modes);
	return 0;

nla_put_failure:
	return -ENOBUFS;
}

static int nl80211_put_iface_combinations(struct wiphy *wiphy,
					  struct sk_buff *msg)
{
	struct nlattr *nl_combis;
	int i, j;

	nl_combis = nla_nest_start(msg,
				NL80211_ATTR_INTERFACE_COMBINATIONS);
	if (!nl_combis)
		goto nla_put_failure;

	for (i = 0; i < wiphy->n_iface_combinations; i++) {
		const struct ieee80211_iface_combination *c;
		struct nlattr *nl_combi, *nl_limits;

		c = &wiphy->iface_combinations[i];

		nl_combi = nla_nest_start(msg, i + 1);
		if (!nl_combi)
			goto nla_put_failure;

		nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS);
		if (!nl_limits)
			goto nla_put_failure;

		for (j = 0; j < c->n_limits; j++) {
			struct nlattr *nl_limit;

			nl_limit = nla_nest_start(msg, j + 1);
			if (!nl_limit)
				goto nla_put_failure;
882 883 884
			if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
					c->limits[j].max))
				goto nla_put_failure;
885 886 887 888 889 890 891 892
			if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES,
						c->limits[j].types))
				goto nla_put_failure;
			nla_nest_end(msg, nl_limit);
		}

		nla_nest_end(msg, nl_limits);

893 894 895 896 897 898 899 900
		if (c->beacon_int_infra_match &&
		    nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH))
			goto nla_put_failure;
		if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS,
				c->num_different_channels) ||
		    nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM,
				c->max_interfaces))
			goto nla_put_failure;
901 902 903
		if (nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
				c->radar_detect_widths))
			goto nla_put_failure;
904 905 906 907 908 909 910 911 912 913 914

		nla_nest_end(msg, nl_combi);
	}

	nla_nest_end(msg, nl_combis);

	return 0;
nla_put_failure:
	return -ENOBUFS;
}

915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
#ifdef CONFIG_PM
static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev,
					struct sk_buff *msg)
{
	const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan.tcp;
	struct nlattr *nl_tcp;

	if (!tcp)
		return 0;

	nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
	if (!nl_tcp)
		return -ENOBUFS;

	if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
			tcp->data_payload_max))
		return -ENOBUFS;

	if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
			tcp->data_payload_max))
		return -ENOBUFS;

	if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ))
		return -ENOBUFS;

	if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
				sizeof(*tcp->tok), tcp->tok))
		return -ENOBUFS;

	if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
			tcp->data_interval_max))
		return -ENOBUFS;

	if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
			tcp->wake_payload_max))
		return -ENOBUFS;

	nla_nest_end(msg, nl_tcp);
	return 0;
}
#endif

957
static int nl80211_send_wiphy(struct sk_buff *msg, u32 portid, u32 seq, int flags,
958 959 960
			      struct cfg80211_registered_device *dev)
{
	void *hdr;
961 962 963
	struct nlattr *nl_bands, *nl_band;
	struct nlattr *nl_freqs, *nl_freq;
	struct nlattr *nl_rates, *nl_rate;
964
	struct nlattr *nl_cmds;
965 966 967 968
	enum ieee80211_band band;
	struct ieee80211_channel *chan;
	struct ieee80211_rate *rate;
	int i;
969 970
	const struct ieee80211_txrx_stypes *mgmt_stypes =
				dev->wiphy.mgmt_stypes;
971

972
	hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_WIPHY);
973 974 975
	if (!hdr)
		return -1;

976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, dev->wiphy_idx) ||
	    nla_put_string(msg, NL80211_ATTR_WIPHY_NAME, wiphy_name(&dev->wiphy)) ||
	    nla_put_u32(msg, NL80211_ATTR_GENERATION,
			cfg80211_rdev_list_generation) ||
	    nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
		       dev->wiphy.retry_short) ||
	    nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
		       dev->wiphy.retry_long) ||
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
			dev->wiphy.frag_threshold) ||
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
			dev->wiphy.rts_threshold) ||
	    nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS,
		       dev->wiphy.coverage_class) ||
	    nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
		       dev->wiphy.max_scan_ssids) ||
	    nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
		       dev->wiphy.max_sched_scan_ssids) ||
	    nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
			dev->wiphy.max_scan_ie_len) ||
	    nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,
			dev->wiphy.max_sched_scan_ie_len) ||
	    nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS,
		       dev->wiphy.max_match_sets))
		goto nla_put_failure;

	if ((dev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) &&
	    nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN))
		goto nla_put_failure;
	if ((dev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
	    nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH))
		goto nla_put_failure;
	if ((dev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
	    nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD))
		goto nla_put_failure;
	if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
	    nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT))
		goto nla_put_failure;
	if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
	    nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT))
		goto nla_put_failure;
	if ((dev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) &&
	    nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP))
		goto nla_put_failure;

	if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
		    sizeof(u32) * dev->wiphy.n_cipher_suites,
		    dev->wiphy.cipher_suites))
		goto nla_put_failure;

	if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS,
		       dev->wiphy.max_num_pmkids))
		goto nla_put_failure;

	if ((dev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
	    nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE))
		goto nla_put_failure;

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
			dev->wiphy.available_antennas_tx) ||
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
			dev->wiphy.available_antennas_rx))
		goto nla_put_failure;

	if ((dev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) &&
	    nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD,
			dev->wiphy.probe_resp_offload))
		goto nla_put_failure;
1044

1045 1046
	if ((dev->wiphy.available_antennas_tx ||
	     dev->wiphy.available_antennas_rx) && dev->ops->get_antenna) {
1047 1048
		u32 tx_ant = 0, rx_ant = 0;
		int res;
1049
		res = rdev_get_antenna(dev, &tx_ant, &rx_ant);
1050
		if (!res) {
1051 1052 1053 1054 1055
			if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_TX,
					tx_ant) ||
			    nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_RX,
					rx_ant))
				goto nla_put_failure;
1056 1057 1058
		}
	}

1059 1060
	if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
				dev->wiphy.interface_modes))
1061 1062
		goto nla_put_failure;

1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
	nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
	if (!nl_bands)
		goto nla_put_failure;

	for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
		if (!dev->wiphy.bands[band])
			continue;

		nl_band = nla_nest_start(msg, band);
		if (!nl_band)
			goto nla_put_failure;

J
Johannes Berg 已提交
1075
		/* add HT info */
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
		if (dev->wiphy.bands[band]->ht_cap.ht_supported &&
		    (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET,
			     sizeof(dev->wiphy.bands[band]->ht_cap.mcs),
			     &dev->wiphy.bands[band]->ht_cap.mcs) ||
		     nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA,
				 dev->wiphy.bands[band]->ht_cap.cap) ||
		     nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
				dev->wiphy.bands[band]->ht_cap.ampdu_factor) ||
		     nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
				dev->wiphy.bands[band]->ht_cap.ampdu_density)))
			goto nla_put_failure;
J
Johannes Berg 已提交
1087

1088 1089 1090 1091 1092 1093 1094 1095 1096
		/* add VHT info */
		if (dev->wiphy.bands[band]->vht_cap.vht_supported &&
		    (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET,
			     sizeof(dev->wiphy.bands[band]->vht_cap.vht_mcs),
			     &dev->wiphy.bands[band]->vht_cap.vht_mcs) ||
		     nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA,
				 dev->wiphy.bands[band]->vht_cap.cap)))
			goto nla_put_failure;

1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
		/* add frequencies */
		nl_freqs = nla_nest_start(msg, NL80211_BAND_ATTR_FREQS);
		if (!nl_freqs)
			goto nla_put_failure;

		for (i = 0; i < dev->wiphy.bands[band]->n_channels; i++) {
			nl_freq = nla_nest_start(msg, i);
			if (!nl_freq)
				goto nla_put_failure;

			chan = &dev->wiphy.bands[band]->channels[i];
1108 1109 1110

			if (nl80211_msg_put_channel(msg, chan))
				goto nla_put_failure;
1111

1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
			nla_nest_end(msg, nl_freq);
		}

		nla_nest_end(msg, nl_freqs);

		/* add bitrates */
		nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
		if (!nl_rates)
			goto nla_put_failure;

		for (i = 0; i < dev->wiphy.bands[band]->n_bitrates; i++) {
			nl_rate = nla_nest_start(msg, i);
			if (!nl_rate)
				goto nla_put_failure;

			rate = &dev->wiphy.bands[band]->bitrates[i];
1128 1129 1130 1131 1132 1133 1134
			if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE,
					rate->bitrate))
				goto nla_put_failure;
			if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
			    nla_put_flag(msg,
					 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE))
				goto nla_put_failure;
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144

			nla_nest_end(msg, nl_rate);
		}

		nla_nest_end(msg, nl_rates);

		nla_nest_end(msg, nl_band);
	}
	nla_nest_end(msg, nl_bands);

1145 1146 1147 1148 1149 1150 1151 1152 1153
	nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
	if (!nl_cmds)
		goto nla_put_failure;

	i = 0;
#define CMD(op, n)						\
	 do {							\
		if (dev->ops->op) {				\
			i++;					\
1154 1155
			if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
				goto nla_put_failure;		\
1156 1157 1158 1159 1160 1161
		}						\
	} while (0)

	CMD(add_virtual_intf, NEW_INTERFACE);
	CMD(change_virtual_intf, SET_INTERFACE);
	CMD(add_key, NEW_KEY);
1162
	CMD(start_ap, START_AP);
1163 1164
	CMD(add_station, NEW_STATION);
	CMD(add_mpath, NEW_MPATH);
1165
	CMD(update_mesh_config, SET_MESH_CONFIG);
1166
	CMD(change_bss, SET_BSS);
1167 1168 1169 1170
	CMD(auth, AUTHENTICATE);
	CMD(assoc, ASSOCIATE);
	CMD(deauth, DEAUTHENTICATE);
	CMD(disassoc, DISASSOCIATE);
J
Johannes Berg 已提交
1171
	CMD(join_ibss, JOIN_IBSS);
1172
	CMD(join_mesh, JOIN_MESH);
S
Samuel Ortiz 已提交
1173 1174 1175
	CMD(set_pmksa, SET_PMKSA);
	CMD(del_pmksa, DEL_PMKSA);
	CMD(flush_pmksa, FLUSH_PMKSA);
1176 1177
	if (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
		CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1178
	CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1179
	CMD(mgmt_tx, FRAME);
1180
	CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
J
Johannes Berg 已提交
1181
	if (dev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
1182
		i++;
1183 1184
		if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
			goto nla_put_failure;
1185
	}
1186
	if (dev->ops->set_monitor_channel || dev->ops->start_ap ||
1187
	    dev->ops->join_mesh) {
1188 1189 1190 1191
		i++;
		if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
			goto nla_put_failure;
	}
1192
	CMD(set_wds_peer, SET_WDS_PEER);
1193 1194 1195 1196
	if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
		CMD(tdls_mgmt, TDLS_MGMT);
		CMD(tdls_oper, TDLS_OPER);
	}
1197 1198
	if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
		CMD(sched_scan_start, START_SCHED_SCAN);
J
Johannes Berg 已提交
1199
	CMD(probe_client, PROBE_CLIENT);
1200
	CMD(set_noack_map, SET_NOACK_MAP);
1201 1202
	if (dev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
		i++;
1203 1204
		if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
			goto nla_put_failure;
1205
	}
1206
	CMD(start_p2p_device, START_P2P_DEVICE);
1207
	CMD(set_mcast_rate, SET_MCAST_RATE);
1208

1209 1210 1211 1212
#ifdef CONFIG_NL80211_TESTMODE
	CMD(testmode_cmd, TESTMODE);
#endif

1213
#undef CMD
S
Samuel Ortiz 已提交
1214

1215
	if (dev->ops->connect || dev->ops->auth) {
S
Samuel Ortiz 已提交
1216
		i++;
1217 1218
		if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
			goto nla_put_failure;
S
Samuel Ortiz 已提交
1219 1220
	}

1221
	if (dev->ops->disconnect || dev->ops->deauth) {
S
Samuel Ortiz 已提交
1222
		i++;
1223 1224
		if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
			goto nla_put_failure;
S
Samuel Ortiz 已提交
1225 1226
	}

1227 1228
	nla_nest_end(msg, nl_cmds);

1229
	if (dev->ops->remain_on_channel &&
1230 1231 1232 1233
	    (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
	    nla_put_u32(msg, NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,
			dev->wiphy.max_remain_on_channel_duration))
		goto nla_put_failure;
1234

1235 1236 1237
	if ((dev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
	    nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
		goto nla_put_failure;
1238

1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254
	if (mgmt_stypes) {
		u16 stypes;
		struct nlattr *nl_ftypes, *nl_ifs;
		enum nl80211_iftype ift;

		nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES);
		if (!nl_ifs)
			goto nla_put_failure;

		for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
			nl_ftypes = nla_nest_start(msg, ift);
			if (!nl_ftypes)
				goto nla_put_failure;
			i = 0;
			stypes = mgmt_stypes[ift].tx;
			while (stypes) {
1255 1256 1257 1258
				if ((stypes & 1) &&
				    nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
						(i << 4) | IEEE80211_FTYPE_MGMT))
					goto nla_put_failure;
1259 1260 1261 1262 1263 1264
				stypes >>= 1;
				i++;
			}
			nla_nest_end(msg, nl_ftypes);
		}

J
Johannes Berg 已提交
1265 1266
		nla_nest_end(msg, nl_ifs);

1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
		nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES);
		if (!nl_ifs)
			goto nla_put_failure;

		for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
			nl_ftypes = nla_nest_start(msg, ift);
			if (!nl_ftypes)
				goto nla_put_failure;
			i = 0;
			stypes = mgmt_stypes[ift].rx;
			while (stypes) {
1278 1279 1280 1281
				if ((stypes & 1) &&
				    nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
						(i << 4) | IEEE80211_FTYPE_MGMT))
					goto nla_put_failure;
1282 1283 1284 1285 1286 1287 1288 1289
				stypes >>= 1;
				i++;
			}
			nla_nest_end(msg, nl_ftypes);
		}
		nla_nest_end(msg, nl_ifs);
	}

1290
#ifdef CONFIG_PM
J
Johannes Berg 已提交
1291 1292 1293 1294 1295 1296 1297 1298
	if (dev->wiphy.wowlan.flags || dev->wiphy.wowlan.n_patterns) {
		struct nlattr *nl_wowlan;

		nl_wowlan = nla_nest_start(msg,
				NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED);
		if (!nl_wowlan)
			goto nla_put_failure;

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
		if (((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_ANY) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_DISCONNECT) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_MAGIC_PKT) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
		    ((dev->wiphy.wowlan.flags & WIPHY_WOWLAN_RFKILL_RELEASE) &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
		    goto nla_put_failure;
J
Johannes Berg 已提交
1316 1317 1318 1319 1320 1321 1322
		if (dev->wiphy.wowlan.n_patterns) {
			struct nl80211_wowlan_pattern_support pat = {
				.max_patterns = dev->wiphy.wowlan.n_patterns,
				.min_pattern_len =
					dev->wiphy.wowlan.pattern_min_len,
				.max_pattern_len =
					dev->wiphy.wowlan.pattern_max_len,
1323 1324
				.max_pkt_offset =
					dev->wiphy.wowlan.max_pkt_offset,
J
Johannes Berg 已提交
1325
			};
1326 1327 1328
			if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
				    sizeof(pat), &pat))
				goto nla_put_failure;
J
Johannes Berg 已提交
1329 1330
		}

1331 1332 1333
		if (nl80211_send_wowlan_tcp_caps(dev, msg))
			goto nla_put_failure;

J
Johannes Berg 已提交
1334 1335
		nla_nest_end(msg, nl_wowlan);
	}
1336
#endif
J
Johannes Berg 已提交
1337

1338 1339 1340 1341 1342 1343 1344
	if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
				dev->wiphy.software_iftypes))
		goto nla_put_failure;

	if (nl80211_put_iface_combinations(&dev->wiphy, msg))
		goto nla_put_failure;

1345 1346 1347 1348
	if ((dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
	    nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
			dev->wiphy.ap_sme_capa))
		goto nla_put_failure;
J
Johannes Berg 已提交
1349

1350 1351 1352
	if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS,
			dev->wiphy.features))
		goto nla_put_failure;
1353

1354 1355 1356 1357 1358
	if (dev->wiphy.ht_capa_mod_mask &&
	    nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK,
		    sizeof(*dev->wiphy.ht_capa_mod_mask),
		    dev->wiphy.ht_capa_mod_mask))
		goto nla_put_failure;
1359

1360 1361 1362 1363 1364 1365
	if (dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME &&
	    dev->wiphy.max_acl_mac_addrs &&
	    nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX,
			dev->wiphy.max_acl_mac_addrs))
		goto nla_put_failure;

1366 1367 1368
	return genlmsg_end(msg, hdr);

 nla_put_failure:
1369 1370
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
1371 1372 1373 1374 1375 1376 1377 1378
}

static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
{
	int idx = 0;
	int start = cb->args[0];
	struct cfg80211_registered_device *dev;

1379
	mutex_lock(&cfg80211_mutex);
1380
	list_for_each_entry(dev, &cfg80211_rdev_list, list) {
1381 1382
		if (!net_eq(wiphy_net(&dev->wiphy), sock_net(skb->sk)))
			continue;
1383
		if (++idx <= start)
1384
			continue;
1385
		if (nl80211_send_wiphy(skb, NETLINK_CB(cb->skb).portid,
1386
				       cb->nlh->nlmsg_seq, NLM_F_MULTI,
1387 1388
				       dev) < 0) {
			idx--;
1389
			break;
1390
		}
1391
	}
1392
	mutex_unlock(&cfg80211_mutex);
1393 1394 1395 1396 1397 1398 1399 1400 1401

	cb->args[0] = idx;

	return skb->len;
}

static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
{
	struct sk_buff *msg;
1402
	struct cfg80211_registered_device *dev = info->user_ptr[0];
1403

1404
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1405
	if (!msg)
1406
		return -ENOMEM;
1407

1408
	if (nl80211_send_wiphy(msg, info->snd_portid, info->snd_seq, 0, dev) < 0) {
1409 1410 1411
		nlmsg_free(msg);
		return -ENOBUFS;
	}
1412

J
Johannes Berg 已提交
1413
	return genlmsg_reply(msg, info);
1414 1415
}

1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
	[NL80211_TXQ_ATTR_QUEUE]		= { .type = NLA_U8 },
	[NL80211_TXQ_ATTR_TXOP]			= { .type = NLA_U16 },
	[NL80211_TXQ_ATTR_CWMIN]		= { .type = NLA_U16 },
	[NL80211_TXQ_ATTR_CWMAX]		= { .type = NLA_U16 },
	[NL80211_TXQ_ATTR_AIFS]			= { .type = NLA_U8 },
};

static int parse_txq_params(struct nlattr *tb[],
			    struct ieee80211_txq_params *txq_params)
{
1427
	if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
1428 1429 1430 1431
	    !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
	    !tb[NL80211_TXQ_ATTR_AIFS])
		return -EINVAL;

1432
	txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
1433 1434 1435 1436 1437
	txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
	txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
	txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
	txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);

1438 1439 1440
	if (txq_params->ac >= NL80211_NUM_ACS)
		return -EINVAL;

1441 1442 1443
	return 0;
}

1444 1445 1446
static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
{
	/*
1447 1448 1449 1450 1451 1452 1453 1454 1455
	 * You can only set the channel explicitly for WDS interfaces,
	 * all others have their channel managed via their respective
	 * "establish a connection" command (connect, join, ...)
	 *
	 * For AP/GO and mesh mode, the channel can be set with the
	 * channel userspace API, but is only stored and passed to the
	 * low-level driver when the AP starts or the mesh is joined.
	 * This is for backward compatibility, userspace can also give
	 * the channel in the start-ap or join-mesh commands instead.
1456 1457
	 *
	 * Monitors are special as they are normally slaved to
1458 1459
	 * whatever else is going on, so they have their own special
	 * operation to set the monitor channel if possible.
1460 1461 1462 1463
	 */
	return !wdev ||
		wdev->iftype == NL80211_IFTYPE_AP ||
		wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
1464 1465
		wdev->iftype == NL80211_IFTYPE_MONITOR ||
		wdev->iftype == NL80211_IFTYPE_P2P_GO;
1466 1467
}

1468 1469 1470 1471
static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
				 struct genl_info *info,
				 struct cfg80211_chan_def *chandef)
{
1472
	u32 control_freq;
1473 1474 1475 1476 1477 1478 1479

	if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
		return -EINVAL;

	control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);

	chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq);
1480 1481 1482
	chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
	chandef->center_freq1 = control_freq;
	chandef->center_freq2 = 0;
1483 1484 1485 1486 1487

	/* Primary channel not allowed */
	if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
		return -EINVAL;

1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
	if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
		enum nl80211_channel_type chantype;

		chantype = nla_get_u32(
				info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);

		switch (chantype) {
		case NL80211_CHAN_NO_HT:
		case NL80211_CHAN_HT20:
		case NL80211_CHAN_HT40PLUS:
		case NL80211_CHAN_HT40MINUS:
			cfg80211_chandef_create(chandef, chandef->chan,
						chantype);
			break;
		default:
			return -EINVAL;
		}
	} else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
		chandef->width =
			nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
		if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
			chandef->center_freq1 =
				nla_get_u32(
					info->attrs[NL80211_ATTR_CENTER_FREQ1]);
		if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
			chandef->center_freq2 =
				nla_get_u32(
					info->attrs[NL80211_ATTR_CENTER_FREQ2]);
	}

1518
	if (!cfg80211_chandef_valid(chandef))
1519 1520
		return -EINVAL;

1521 1522
	if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
				     IEEE80211_CHAN_DISABLED))
1523 1524
		return -EINVAL;

1525 1526 1527
	return 0;
}

1528 1529 1530 1531
static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
				 struct wireless_dev *wdev,
				 struct genl_info *info)
{
1532
	struct cfg80211_chan_def chandef;
1533
	int result;
1534 1535 1536 1537
	enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;

	if (wdev)
		iftype = wdev->iftype;
1538 1539 1540 1541

	if (!nl80211_can_set_dev_channel(wdev))
		return -EOPNOTSUPP;

1542 1543 1544
	result = nl80211_parse_chandef(rdev, info, &chandef);
	if (result)
		return result;
1545 1546

	mutex_lock(&rdev->devlist_mtx);
1547
	switch (iftype) {
1548 1549 1550 1551 1552 1553
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_P2P_GO:
		if (wdev->beacon_interval) {
			result = -EBUSY;
			break;
		}
1554
		if (!cfg80211_reg_can_beacon(&rdev->wiphy, &chandef)) {
1555 1556 1557
			result = -EINVAL;
			break;
		}
1558
		wdev->preset_chandef = chandef;
1559 1560
		result = 0;
		break;
1561
	case NL80211_IFTYPE_MESH_POINT:
1562
		result = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
1563
		break;
1564
	case NL80211_IFTYPE_MONITOR:
1565
		result = cfg80211_set_monitor_channel(rdev, &chandef);
1566
		break;
1567
	default:
1568
		result = -EINVAL;
1569 1570 1571 1572 1573 1574 1575 1576
	}
	mutex_unlock(&rdev->devlist_mtx);

	return result;
}

static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info)
{
1577 1578
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *netdev = info->user_ptr[1];
1579

1580
	return __nl80211_set_channel(rdev, netdev->ieee80211_ptr, info);
1581 1582
}

1583 1584
static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
{
1585 1586 1587
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;
J
Johannes Berg 已提交
1588
	const u8 *bssid;
1589 1590 1591 1592

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

1593 1594
	if (netif_running(dev))
		return -EBUSY;
1595

1596 1597
	if (!rdev->ops->set_wds_peer)
		return -EOPNOTSUPP;
1598

1599 1600
	if (wdev->iftype != NL80211_IFTYPE_WDS)
		return -EOPNOTSUPP;
1601 1602

	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
1603
	return rdev_set_wds_peer(rdev, dev, bssid);
1604 1605 1606
}


1607 1608 1609
static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev;
1610 1611
	struct net_device *netdev = NULL;
	struct wireless_dev *wdev;
B
Bill Jordan 已提交
1612
	int result = 0, rem_txq_params = 0;
1613
	struct nlattr *nl_txq_params;
1614 1615 1616
	u32 changed;
	u8 retry_short = 0, retry_long = 0;
	u32 frag_threshold = 0, rts_threshold = 0;
1617
	u8 coverage_class = 0;
1618

1619 1620 1621 1622 1623 1624 1625 1626 1627
	/*
	 * Try to find the wiphy and netdev. Normally this
	 * function shouldn't need the netdev, but this is
	 * done for backward compatibility -- previously
	 * setting the channel was done per wiphy, but now
	 * it is per netdev. Previous userland like hostapd
	 * also passed a netdev to set_wiphy, so that it is
	 * possible to let that go to the right netdev!
	 */
1628 1629
	mutex_lock(&cfg80211_mutex);

1630 1631 1632 1633 1634 1635 1636 1637 1638
	if (info->attrs[NL80211_ATTR_IFINDEX]) {
		int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);

		netdev = dev_get_by_index(genl_info_net(info), ifindex);
		if (netdev && netdev->ieee80211_ptr) {
			rdev = wiphy_to_dev(netdev->ieee80211_ptr->wiphy);
			mutex_lock(&rdev->mtx);
		} else
			netdev = NULL;
1639 1640
	}

1641
	if (!netdev) {
1642 1643
		rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
						  info->attrs);
1644 1645
		if (IS_ERR(rdev)) {
			mutex_unlock(&cfg80211_mutex);
1646
			return PTR_ERR(rdev);
1647 1648 1649 1650 1651 1652
		}
		wdev = NULL;
		netdev = NULL;
		result = 0;

		mutex_lock(&rdev->mtx);
1653
	} else
1654 1655 1656 1657 1658 1659
		wdev = netdev->ieee80211_ptr;

	/*
	 * end workaround code, by now the rdev is available
	 * and locked, and wdev may or may not be NULL.
	 */
1660 1661

	if (info->attrs[NL80211_ATTR_WIPHY_NAME])
1662 1663
		result = cfg80211_dev_rename(
			rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
1664 1665 1666 1667 1668

	mutex_unlock(&cfg80211_mutex);

	if (result)
		goto bad_res;
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678

	if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
		struct ieee80211_txq_params txq_params;
		struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];

		if (!rdev->ops->set_txq_params) {
			result = -EOPNOTSUPP;
			goto bad_res;
		}

1679 1680 1681 1682 1683
		if (!netdev) {
			result = -EINVAL;
			goto bad_res;
		}

1684 1685 1686 1687 1688 1689
		if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
		    netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
			result = -EINVAL;
			goto bad_res;
		}

1690 1691 1692 1693 1694
		if (!netif_running(netdev)) {
			result = -ENETDOWN;
			goto bad_res;
		}

1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
		nla_for_each_nested(nl_txq_params,
				    info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
				    rem_txq_params) {
			nla_parse(tb, NL80211_TXQ_ATTR_MAX,
				  nla_data(nl_txq_params),
				  nla_len(nl_txq_params),
				  txq_params_policy);
			result = parse_txq_params(tb, &txq_params);
			if (result)
				goto bad_res;

1706 1707
			result = rdev_set_txq_params(rdev, netdev,
						     &txq_params);
1708 1709 1710 1711
			if (result)
				goto bad_res;
		}
	}
1712

1713
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
1714 1715 1716
		result = __nl80211_set_channel(rdev,
				nl80211_can_set_dev_channel(wdev) ? wdev : NULL,
				info);
1717 1718 1719 1720
		if (result)
			goto bad_res;
	}

1721
	if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
1722
		struct wireless_dev *txp_wdev = wdev;
1723 1724 1725
		enum nl80211_tx_power_setting type;
		int idx, mbm = 0;

1726 1727 1728
		if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER))
			txp_wdev = NULL;

1729
		if (!rdev->ops->set_tx_power) {
1730
			result = -EOPNOTSUPP;
1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
			goto bad_res;
		}

		idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING;
		type = nla_get_u32(info->attrs[idx]);

		if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] &&
		    (type != NL80211_TX_POWER_AUTOMATIC)) {
			result = -EINVAL;
			goto bad_res;
		}

		if (type != NL80211_TX_POWER_AUTOMATIC) {
			idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL;
			mbm = nla_get_u32(info->attrs[idx]);
		}

1748
		result = rdev_set_tx_power(rdev, txp_wdev, type, mbm);
1749 1750 1751 1752
		if (result)
			goto bad_res;
	}

1753 1754 1755
	if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
	    info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
		u32 tx_ant, rx_ant;
1756 1757 1758
		if ((!rdev->wiphy.available_antennas_tx &&
		     !rdev->wiphy.available_antennas_rx) ||
		    !rdev->ops->set_antenna) {
1759 1760 1761 1762 1763 1764 1765
			result = -EOPNOTSUPP;
			goto bad_res;
		}

		tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]);
		rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]);

1766
		/* reject antenna configurations which don't match the
1767 1768 1769
		 * available antenna masks, except for the "all" mask */
		if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) ||
		    (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx))) {
1770 1771 1772 1773
			result = -EINVAL;
			goto bad_res;
		}

1774 1775
		tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
		rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
1776

1777
		result = rdev_set_antenna(rdev, tx_ant, rx_ant);
1778 1779 1780 1781
		if (result)
			goto bad_res;
	}

1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
	changed = 0;

	if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
		retry_short = nla_get_u8(
			info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
		if (retry_short == 0) {
			result = -EINVAL;
			goto bad_res;
		}
		changed |= WIPHY_PARAM_RETRY_SHORT;
	}

	if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
		retry_long = nla_get_u8(
			info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
		if (retry_long == 0) {
			result = -EINVAL;
			goto bad_res;
		}
		changed |= WIPHY_PARAM_RETRY_LONG;
	}

	if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
		frag_threshold = nla_get_u32(
			info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
		if (frag_threshold < 256) {
			result = -EINVAL;
			goto bad_res;
		}
		if (frag_threshold != (u32) -1) {
			/*
			 * Fragments (apart from the last one) are required to
			 * have even length. Make the fragmentation code
			 * simpler by stripping LSB should someone try to use
			 * odd threshold value.
			 */
			frag_threshold &= ~0x1;
		}
		changed |= WIPHY_PARAM_FRAG_THRESHOLD;
	}

	if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
		rts_threshold = nla_get_u32(
			info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
		changed |= WIPHY_PARAM_RTS_THRESHOLD;
	}

1829 1830 1831 1832 1833 1834
	if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
		coverage_class = nla_get_u8(
			info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
		changed |= WIPHY_PARAM_COVERAGE_CLASS;
	}

1835 1836 1837
	if (changed) {
		u8 old_retry_short, old_retry_long;
		u32 old_frag_threshold, old_rts_threshold;
1838
		u8 old_coverage_class;
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848

		if (!rdev->ops->set_wiphy_params) {
			result = -EOPNOTSUPP;
			goto bad_res;
		}

		old_retry_short = rdev->wiphy.retry_short;
		old_retry_long = rdev->wiphy.retry_long;
		old_frag_threshold = rdev->wiphy.frag_threshold;
		old_rts_threshold = rdev->wiphy.rts_threshold;
1849
		old_coverage_class = rdev->wiphy.coverage_class;
1850 1851 1852 1853 1854 1855 1856 1857 1858

		if (changed & WIPHY_PARAM_RETRY_SHORT)
			rdev->wiphy.retry_short = retry_short;
		if (changed & WIPHY_PARAM_RETRY_LONG)
			rdev->wiphy.retry_long = retry_long;
		if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
			rdev->wiphy.frag_threshold = frag_threshold;
		if (changed & WIPHY_PARAM_RTS_THRESHOLD)
			rdev->wiphy.rts_threshold = rts_threshold;
1859 1860
		if (changed & WIPHY_PARAM_COVERAGE_CLASS)
			rdev->wiphy.coverage_class = coverage_class;
1861

1862
		result = rdev_set_wiphy_params(rdev, changed);
1863 1864 1865 1866 1867
		if (result) {
			rdev->wiphy.retry_short = old_retry_short;
			rdev->wiphy.retry_long = old_retry_long;
			rdev->wiphy.frag_threshold = old_frag_threshold;
			rdev->wiphy.rts_threshold = old_rts_threshold;
1868
			rdev->wiphy.coverage_class = old_coverage_class;
1869 1870
		}
	}
1871

1872
 bad_res:
1873
	mutex_unlock(&rdev->mtx);
1874 1875
	if (netdev)
		dev_put(netdev);
1876 1877 1878
	return result;
}

1879 1880 1881 1882 1883
static inline u64 wdev_id(struct wireless_dev *wdev)
{
	return (u64)wdev->identifier |
	       ((u64)wiphy_to_dev(wdev->wiphy)->wiphy_idx << 32);
}
1884

1885 1886 1887
static int nl80211_send_chandef(struct sk_buff *msg,
				 struct cfg80211_chan_def *chandef)
{
1888
	WARN_ON(!cfg80211_chandef_valid(chandef));
1889

1890 1891 1892
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
			chandef->chan->center_freq))
		return -ENOBUFS;
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
	switch (chandef->width) {
	case NL80211_CHAN_WIDTH_20_NOHT:
	case NL80211_CHAN_WIDTH_20:
	case NL80211_CHAN_WIDTH_40:
		if (nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
				cfg80211_get_chandef_type(chandef)))
			return -ENOBUFS;
		break;
	default:
		break;
	}
	if (nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, chandef->width))
		return -ENOBUFS;
	if (nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ1, chandef->center_freq1))
		return -ENOBUFS;
	if (chandef->center_freq2 &&
	    nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ2, chandef->center_freq2))
1910 1911 1912 1913
		return -ENOBUFS;
	return 0;
}

1914
static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
1915
			      struct cfg80211_registered_device *rdev,
1916
			      struct wireless_dev *wdev)
1917
{
1918
	struct net_device *dev = wdev->netdev;
1919 1920
	void *hdr;

1921
	hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_INTERFACE);
1922 1923 1924
	if (!hdr)
		return -1;

1925 1926
	if (dev &&
	    (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
1927
	     nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
1928 1929 1930 1931
		goto nla_put_failure;

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
1932
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
1933
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
1934 1935 1936 1937
	    nla_put_u32(msg, NL80211_ATTR_GENERATION,
			rdev->devlist_generation ^
			(cfg80211_rdev_list_generation << 2)))
		goto nla_put_failure;
1938

1939
	if (rdev->ops->get_channel) {
1940 1941 1942 1943 1944 1945 1946 1947
		int ret;
		struct cfg80211_chan_def chandef;

		ret = rdev_get_channel(rdev, wdev, &chandef);
		if (ret == 0) {
			if (nl80211_send_chandef(msg, &chandef))
				goto nla_put_failure;
		}
1948 1949
	}

1950 1951 1952 1953 1954
	if (wdev->ssid_len) {
		if (nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid))
			goto nla_put_failure;
	}

1955 1956 1957
	return genlmsg_end(msg, hdr);

 nla_put_failure:
1958 1959
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
1960 1961 1962 1963 1964 1965 1966 1967
}

static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
{
	int wp_idx = 0;
	int if_idx = 0;
	int wp_start = cb->args[0];
	int if_start = cb->args[1];
1968
	struct cfg80211_registered_device *rdev;
1969 1970
	struct wireless_dev *wdev;

1971
	mutex_lock(&cfg80211_mutex);
1972 1973
	list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
		if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
1974
			continue;
J
Johannes Berg 已提交
1975 1976
		if (wp_idx < wp_start) {
			wp_idx++;
1977
			continue;
J
Johannes Berg 已提交
1978
		}
1979 1980
		if_idx = 0;

1981
		mutex_lock(&rdev->devlist_mtx);
1982
		list_for_each_entry(wdev, &rdev->wdev_list, list) {
J
Johannes Berg 已提交
1983 1984
			if (if_idx < if_start) {
				if_idx++;
1985
				continue;
J
Johannes Berg 已提交
1986
			}
1987
			if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).portid,
1988
					       cb->nlh->nlmsg_seq, NLM_F_MULTI,
1989
					       rdev, wdev) < 0) {
1990
				mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
1991 1992 1993
				goto out;
			}
			if_idx++;
1994
		}
1995
		mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
1996 1997

		wp_idx++;
1998
	}
J
Johannes Berg 已提交
1999
 out:
2000
	mutex_unlock(&cfg80211_mutex);
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010

	cb->args[0] = wp_idx;
	cb->args[1] = if_idx;

	return skb->len;
}

static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
{
	struct sk_buff *msg;
2011
	struct cfg80211_registered_device *dev = info->user_ptr[0];
2012
	struct wireless_dev *wdev = info->user_ptr[1];
2013

2014
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2015
	if (!msg)
2016
		return -ENOMEM;
2017

2018
	if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
2019
			       dev, wdev) < 0) {
2020 2021 2022
		nlmsg_free(msg);
		return -ENOBUFS;
	}
2023

J
Johannes Berg 已提交
2024
	return genlmsg_reply(msg, info);
2025 2026
}

2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055
static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
	[NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
	[NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
	[NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
	[NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
	[NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
};

static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
{
	struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
	int flag;

	*mntrflags = 0;

	if (!nla)
		return -EINVAL;

	if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
			     nla, mntr_flags_policy))
		return -EINVAL;

	for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
		if (flags[flag])
			*mntrflags |= (1<<flag);

	return 0;
}

2056
static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
2057 2058
			       struct net_device *netdev, u8 use_4addr,
			       enum nl80211_iftype iftype)
2059
{
2060
	if (!use_4addr) {
2061
		if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
2062
			return -EBUSY;
2063
		return 0;
2064
	}
2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081

	switch (iftype) {
	case NL80211_IFTYPE_AP_VLAN:
		if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP)
			return 0;
		break;
	case NL80211_IFTYPE_STATION:
		if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION)
			return 0;
		break;
	default:
		break;
	}

	return -EOPNOTSUPP;
}

2082 2083
static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
{
2084
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2085
	struct vif_params params;
2086
	int err;
J
Johannes Berg 已提交
2087
	enum nl80211_iftype otype, ntype;
2088
	struct net_device *dev = info->user_ptr[1];
2089
	u32 _flags, *flags = NULL;
2090
	bool change = false;
2091

2092 2093
	memset(&params, 0, sizeof(params));

J
Johannes Berg 已提交
2094
	otype = ntype = dev->ieee80211_ptr->iftype;
2095

2096
	if (info->attrs[NL80211_ATTR_IFTYPE]) {
2097
		ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
J
Johannes Berg 已提交
2098
		if (otype != ntype)
2099
			change = true;
2100 2101
		if (ntype > NL80211_IFTYPE_MAX)
			return -EINVAL;
2102 2103
	}

2104
	if (info->attrs[NL80211_ATTR_MESH_ID]) {
2105 2106
		struct wireless_dev *wdev = dev->ieee80211_ptr;

2107 2108
		if (ntype != NL80211_IFTYPE_MESH_POINT)
			return -EINVAL;
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119
		if (netif_running(dev))
			return -EBUSY;

		wdev_lock(wdev);
		BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
			     IEEE80211_MAX_MESH_ID_LEN);
		wdev->mesh_id_up_len =
			nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
		memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
		       wdev->mesh_id_up_len);
		wdev_unlock(wdev);
2120 2121
	}

2122 2123 2124
	if (info->attrs[NL80211_ATTR_4ADDR]) {
		params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
		change = true;
2125
		err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
2126
		if (err)
2127
			return err;
2128 2129 2130 2131
	} else {
		params.use_4addr = -1;
	}

2132
	if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
2133 2134
		if (ntype != NL80211_IFTYPE_MONITOR)
			return -EINVAL;
2135 2136
		err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
					  &_flags);
2137
		if (err)
2138
			return err;
2139 2140 2141

		flags = &_flags;
		change = true;
2142
	}
J
Johannes Berg 已提交
2143

2144
	if (change)
2145
		err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
2146 2147
	else
		err = 0;
J
Johannes Berg 已提交
2148

2149 2150 2151
	if (!err && params.use_4addr != -1)
		dev->ieee80211_ptr->use_4addr = params.use_4addr;

2152 2153 2154 2155 2156
	return err;
}

static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
{
2157
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2158
	struct vif_params params;
2159
	struct wireless_dev *wdev;
2160
	struct sk_buff *msg;
2161 2162
	int err;
	enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
2163
	u32 flags;
2164

2165 2166
	memset(&params, 0, sizeof(params));

2167 2168 2169 2170 2171 2172 2173 2174 2175
	if (!info->attrs[NL80211_ATTR_IFNAME])
		return -EINVAL;

	if (info->attrs[NL80211_ATTR_IFTYPE]) {
		type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
		if (type > NL80211_IFTYPE_MAX)
			return -EINVAL;
	}

2176
	if (!rdev->ops->add_virtual_intf ||
2177 2178
	    !(rdev->wiphy.interface_modes & (1 << type)))
		return -EOPNOTSUPP;
2179

2180 2181 2182 2183 2184 2185 2186
	if (type == NL80211_IFTYPE_P2P_DEVICE && info->attrs[NL80211_ATTR_MAC]) {
		nla_memcpy(params.macaddr, info->attrs[NL80211_ATTR_MAC],
			   ETH_ALEN);
		if (!is_valid_ether_addr(params.macaddr))
			return -EADDRNOTAVAIL;
	}

2187
	if (info->attrs[NL80211_ATTR_4ADDR]) {
2188
		params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2189
		err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
2190
		if (err)
2191
			return err;
2192
	}
2193

2194 2195 2196 2197
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (!msg)
		return -ENOMEM;

2198 2199 2200
	err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
				  info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
				  &flags);
2201 2202 2203
	wdev = rdev_add_virtual_intf(rdev,
				nla_data(info->attrs[NL80211_ATTR_IFNAME]),
				type, err ? NULL : &flags, &params);
2204 2205
	if (IS_ERR(wdev)) {
		nlmsg_free(msg);
2206
		return PTR_ERR(wdev);
2207
	}
2208

2209 2210 2211 2212
	switch (type) {
	case NL80211_IFTYPE_MESH_POINT:
		if (!info->attrs[NL80211_ATTR_MESH_ID])
			break;
2213 2214 2215 2216 2217 2218 2219 2220
		wdev_lock(wdev);
		BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
			     IEEE80211_MAX_MESH_ID_LEN);
		wdev->mesh_id_up_len =
			nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
		memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
		       wdev->mesh_id_up_len);
		wdev_unlock(wdev);
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
		break;
	case NL80211_IFTYPE_P2P_DEVICE:
		/*
		 * P2P Device doesn't have a netdev, so doesn't go
		 * through the netdev notifier and must be added here
		 */
		mutex_init(&wdev->mtx);
		INIT_LIST_HEAD(&wdev->event_list);
		spin_lock_init(&wdev->event_lock);
		INIT_LIST_HEAD(&wdev->mgmt_registrations);
		spin_lock_init(&wdev->mgmt_registrations_lock);

		mutex_lock(&rdev->devlist_mtx);
		wdev->identifier = ++rdev->wdev_id;
		list_add_rcu(&wdev->list, &rdev->wdev_list);
		rdev->devlist_generation++;
		mutex_unlock(&rdev->devlist_mtx);
		break;
	default:
		break;
2241 2242
	}

2243
	if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
2244 2245 2246 2247 2248 2249
			       rdev, wdev) < 0) {
		nlmsg_free(msg);
		return -ENOBUFS;
	}

	return genlmsg_reply(msg, info);
2250 2251 2252 2253
}

static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
{
2254
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2255
	struct wireless_dev *wdev = info->user_ptr[1];
2256

2257 2258
	if (!rdev->ops->del_virtual_intf)
		return -EOPNOTSUPP;
2259

2260 2261 2262 2263 2264 2265 2266 2267 2268 2269
	/*
	 * If we remove a wireless device without a netdev then clear
	 * user_ptr[1] so that nl80211_post_doit won't dereference it
	 * to check if it needs to do dev_put(). Otherwise it crashes
	 * since the wdev has been freed, unlike with a netdev where
	 * we need the dev_put() for the netdev to really be freed.
	 */
	if (!wdev->netdev)
		info->user_ptr[1] = NULL;

2270
	return rdev_del_virtual_intf(rdev, wdev);
2271 2272
}

2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286
static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	u16 noack_map;

	if (!info->attrs[NL80211_ATTR_NOACK_MAP])
		return -EINVAL;

	if (!rdev->ops->set_noack_map)
		return -EOPNOTSUPP;

	noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]);

2287
	return rdev_set_noack_map(rdev, dev, noack_map);
2288 2289
}

2290 2291 2292
struct get_key_cookie {
	struct sk_buff *msg;
	int error;
2293
	int idx;
2294 2295 2296 2297
};

static void get_key_callback(void *c, struct key_params *params)
{
2298
	struct nlattr *key;
2299 2300
	struct get_key_cookie *cookie = c;

2301 2302 2303 2304 2305 2306 2307 2308 2309 2310
	if ((params->key &&
	     nla_put(cookie->msg, NL80211_ATTR_KEY_DATA,
		     params->key_len, params->key)) ||
	    (params->seq &&
	     nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ,
		     params->seq_len, params->seq)) ||
	    (params->cipher &&
	     nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
			 params->cipher)))
		goto nla_put_failure;
2311

2312 2313 2314 2315
	key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
	if (!key)
		goto nla_put_failure;

2316 2317 2318 2319 2320 2321 2322 2323 2324 2325
	if ((params->key &&
	     nla_put(cookie->msg, NL80211_KEY_DATA,
		     params->key_len, params->key)) ||
	    (params->seq &&
	     nla_put(cookie->msg, NL80211_KEY_SEQ,
		     params->seq_len, params->seq)) ||
	    (params->cipher &&
	     nla_put_u32(cookie->msg, NL80211_KEY_CIPHER,
			 params->cipher)))
		goto nla_put_failure;
2326

2327 2328
	if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
		goto nla_put_failure;
2329 2330 2331

	nla_nest_end(cookie->msg, key);

2332 2333 2334 2335 2336 2337 2338
	return;
 nla_put_failure:
	cookie->error = 1;
}

static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
{
2339
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2340
	int err;
2341
	struct net_device *dev = info->user_ptr[1];
2342
	u8 key_idx = 0;
2343 2344
	const u8 *mac_addr = NULL;
	bool pairwise;
2345 2346 2347 2348 2349 2350 2351 2352 2353
	struct get_key_cookie cookie = {
		.error = 0,
	};
	void *hdr;
	struct sk_buff *msg;

	if (info->attrs[NL80211_ATTR_KEY_IDX])
		key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);

2354
	if (key_idx > 5)
2355 2356 2357 2358 2359
		return -EINVAL;

	if (info->attrs[NL80211_ATTR_MAC])
		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370
	pairwise = !!mac_addr;
	if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
		u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
		if (kt >= NUM_NL80211_KEYTYPES)
			return -EINVAL;
		if (kt != NL80211_KEYTYPE_GROUP &&
		    kt != NL80211_KEYTYPE_PAIRWISE)
			return -EINVAL;
		pairwise = kt == NL80211_KEYTYPE_PAIRWISE;
	}

2371 2372
	if (!rdev->ops->get_key)
		return -EOPNOTSUPP;
2373

2374
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2375 2376
	if (!msg)
		return -ENOMEM;
2377

2378
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
2379
			     NL80211_CMD_NEW_KEY);
2380 2381
	if (IS_ERR(hdr))
		return PTR_ERR(hdr);
2382 2383

	cookie.msg = msg;
2384
	cookie.idx = key_idx;
2385

2386 2387 2388 2389 2390 2391
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx))
		goto nla_put_failure;
	if (mac_addr &&
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
		goto nla_put_failure;
2392

2393 2394 2395 2396
	if (pairwise && mac_addr &&
	    !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
		return -ENOENT;

2397 2398
	err = rdev_get_key(rdev, dev, key_idx, pairwise, mac_addr, &cookie,
			   get_key_callback);
2399 2400

	if (err)
N
Niko Jokinen 已提交
2401
		goto free_msg;
2402 2403 2404 2405 2406

	if (cookie.error)
		goto nla_put_failure;

	genlmsg_end(msg, hdr);
2407
	return genlmsg_reply(msg, info);
2408 2409 2410

 nla_put_failure:
	err = -ENOBUFS;
N
Niko Jokinen 已提交
2411
 free_msg:
2412 2413 2414 2415 2416 2417
	nlmsg_free(msg);
	return err;
}

static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
{
2418
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2419
	struct key_parse key;
2420
	int err;
2421
	struct net_device *dev = info->user_ptr[1];
2422

2423 2424 2425
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;
2426

2427
	if (key.idx < 0)
2428 2429
		return -EINVAL;

2430 2431
	/* only support setting default key */
	if (!key.def && !key.defmgmt)
2432 2433
		return -EINVAL;

2434
	wdev_lock(dev->ieee80211_ptr);
2435

2436 2437 2438 2439 2440
	if (key.def) {
		if (!rdev->ops->set_default_key) {
			err = -EOPNOTSUPP;
			goto out;
		}
2441

2442 2443 2444 2445
		err = nl80211_key_allowed(dev->ieee80211_ptr);
		if (err)
			goto out;

2446
		err = rdev_set_default_key(rdev, dev, key.idx,
2447 2448 2449 2450
						 key.def_uni, key.def_multi);

		if (err)
			goto out;
J
Johannes Berg 已提交
2451

J
Johannes Berg 已提交
2452
#ifdef CONFIG_CFG80211_WEXT
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469
		dev->ieee80211_ptr->wext.default_key = key.idx;
#endif
	} else {
		if (key.def_uni || !key.def_multi) {
			err = -EINVAL;
			goto out;
		}

		if (!rdev->ops->set_default_mgmt_key) {
			err = -EOPNOTSUPP;
			goto out;
		}

		err = nl80211_key_allowed(dev->ieee80211_ptr);
		if (err)
			goto out;

2470
		err = rdev_set_default_mgmt_key(rdev, dev, key.idx);
2471 2472 2473 2474 2475
		if (err)
			goto out;

#ifdef CONFIG_CFG80211_WEXT
		dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
2476
#endif
2477 2478 2479
	}

 out:
J
Johannes Berg 已提交
2480
	wdev_unlock(dev->ieee80211_ptr);
2481 2482 2483 2484 2485 2486

	return err;
}

static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
{
2487
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
J
Johannes Berg 已提交
2488
	int err;
2489
	struct net_device *dev = info->user_ptr[1];
2490
	struct key_parse key;
2491
	const u8 *mac_addr = NULL;
2492

2493 2494 2495
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;
2496

2497
	if (!key.p.key)
2498 2499 2500 2501 2502
		return -EINVAL;

	if (info->attrs[NL80211_ATTR_MAC])
		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
	if (key.type == -1) {
		if (mac_addr)
			key.type = NL80211_KEYTYPE_PAIRWISE;
		else
			key.type = NL80211_KEYTYPE_GROUP;
	}

	/* for now */
	if (key.type != NL80211_KEYTYPE_PAIRWISE &&
	    key.type != NL80211_KEYTYPE_GROUP)
		return -EINVAL;

2515 2516
	if (!rdev->ops->add_key)
		return -EOPNOTSUPP;
2517

2518 2519 2520
	if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
					   key.type == NL80211_KEYTYPE_PAIRWISE,
					   mac_addr))
2521
		return -EINVAL;
2522

J
Johannes Berg 已提交
2523 2524 2525
	wdev_lock(dev->ieee80211_ptr);
	err = nl80211_key_allowed(dev->ieee80211_ptr);
	if (!err)
2526 2527 2528
		err = rdev_add_key(rdev, dev, key.idx,
				   key.type == NL80211_KEYTYPE_PAIRWISE,
				    mac_addr, &key.p);
J
Johannes Berg 已提交
2529
	wdev_unlock(dev->ieee80211_ptr);
2530 2531 2532 2533 2534 2535

	return err;
}

static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
{
2536
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2537
	int err;
2538
	struct net_device *dev = info->user_ptr[1];
2539
	u8 *mac_addr = NULL;
2540
	struct key_parse key;
2541

2542 2543 2544
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;
2545 2546 2547 2548

	if (info->attrs[NL80211_ATTR_MAC])
		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560
	if (key.type == -1) {
		if (mac_addr)
			key.type = NL80211_KEYTYPE_PAIRWISE;
		else
			key.type = NL80211_KEYTYPE_GROUP;
	}

	/* for now */
	if (key.type != NL80211_KEYTYPE_PAIRWISE &&
	    key.type != NL80211_KEYTYPE_GROUP)
		return -EINVAL;

2561 2562
	if (!rdev->ops->del_key)
		return -EOPNOTSUPP;
2563

J
Johannes Berg 已提交
2564 2565
	wdev_lock(dev->ieee80211_ptr);
	err = nl80211_key_allowed(dev->ieee80211_ptr);
2566 2567 2568 2569 2570

	if (key.type == NL80211_KEYTYPE_PAIRWISE && mac_addr &&
	    !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
		err = -ENOENT;

J
Johannes Berg 已提交
2571
	if (!err)
2572 2573 2574
		err = rdev_del_key(rdev, dev, key.idx,
				   key.type == NL80211_KEYTYPE_PAIRWISE,
				   mac_addr);
2575

J
Johannes Berg 已提交
2576
#ifdef CONFIG_CFG80211_WEXT
2577
	if (!err) {
2578
		if (key.idx == dev->ieee80211_ptr->wext.default_key)
2579
			dev->ieee80211_ptr->wext.default_key = -1;
2580
		else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
2581 2582 2583
			dev->ieee80211_ptr->wext.default_mgmt_key = -1;
	}
#endif
J
Johannes Berg 已提交
2584
	wdev_unlock(dev->ieee80211_ptr);
2585

2586 2587 2588
	return err;
}

2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679
/* This function returns an error or the number of nested attributes */
static int validate_acl_mac_addrs(struct nlattr *nl_attr)
{
	struct nlattr *attr;
	int n_entries = 0, tmp;

	nla_for_each_nested(attr, nl_attr, tmp) {
		if (nla_len(attr) != ETH_ALEN)
			return -EINVAL;

		n_entries++;
	}

	return n_entries;
}

/*
 * This function parses ACL information and allocates memory for ACL data.
 * On successful return, the calling function is responsible to free the
 * ACL buffer returned by this function.
 */
static struct cfg80211_acl_data *parse_acl_data(struct wiphy *wiphy,
						struct genl_info *info)
{
	enum nl80211_acl_policy acl_policy;
	struct nlattr *attr;
	struct cfg80211_acl_data *acl;
	int i = 0, n_entries, tmp;

	if (!wiphy->max_acl_mac_addrs)
		return ERR_PTR(-EOPNOTSUPP);

	if (!info->attrs[NL80211_ATTR_ACL_POLICY])
		return ERR_PTR(-EINVAL);

	acl_policy = nla_get_u32(info->attrs[NL80211_ATTR_ACL_POLICY]);
	if (acl_policy != NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED &&
	    acl_policy != NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
		return ERR_PTR(-EINVAL);

	if (!info->attrs[NL80211_ATTR_MAC_ADDRS])
		return ERR_PTR(-EINVAL);

	n_entries = validate_acl_mac_addrs(info->attrs[NL80211_ATTR_MAC_ADDRS]);
	if (n_entries < 0)
		return ERR_PTR(n_entries);

	if (n_entries > wiphy->max_acl_mac_addrs)
		return ERR_PTR(-ENOTSUPP);

	acl = kzalloc(sizeof(*acl) + (sizeof(struct mac_address) * n_entries),
		      GFP_KERNEL);
	if (!acl)
		return ERR_PTR(-ENOMEM);

	nla_for_each_nested(attr, info->attrs[NL80211_ATTR_MAC_ADDRS], tmp) {
		memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN);
		i++;
	}

	acl->n_acl_entries = n_entries;
	acl->acl_policy = acl_policy;

	return acl;
}

static int nl80211_set_mac_acl(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct cfg80211_acl_data *acl;
	int err;

	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EOPNOTSUPP;

	if (!dev->ieee80211_ptr->beacon_interval)
		return -EINVAL;

	acl = parse_acl_data(&rdev->wiphy, info);
	if (IS_ERR(acl))
		return PTR_ERR(acl);

	err = rdev_set_mac_acl(rdev, dev, acl);

	kfree(acl);

	return err;
}

2680 2681
static int nl80211_parse_beacon(struct genl_info *info,
				struct cfg80211_beacon_data *bcn)
2682
{
2683
	bool haveinfo = false;
2684

2685 2686 2687 2688
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_BEACON_TAIL]) ||
	    !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]) ||
	    !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE_PROBE_RESP]) ||
	    !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]))
2689 2690
		return -EINVAL;

2691
	memset(bcn, 0, sizeof(*bcn));
2692 2693

	if (info->attrs[NL80211_ATTR_BEACON_HEAD]) {
2694 2695 2696 2697 2698
		bcn->head = nla_data(info->attrs[NL80211_ATTR_BEACON_HEAD]);
		bcn->head_len = nla_len(info->attrs[NL80211_ATTR_BEACON_HEAD]);
		if (!bcn->head_len)
			return -EINVAL;
		haveinfo = true;
2699 2700 2701
	}

	if (info->attrs[NL80211_ATTR_BEACON_TAIL]) {
2702 2703
		bcn->tail = nla_data(info->attrs[NL80211_ATTR_BEACON_TAIL]);
		bcn->tail_len =
2704
		    nla_len(info->attrs[NL80211_ATTR_BEACON_TAIL]);
2705
		haveinfo = true;
2706 2707
	}

2708 2709
	if (!haveinfo)
		return -EINVAL;
J
Johannes Berg 已提交
2710

2711
	if (info->attrs[NL80211_ATTR_IE]) {
2712 2713
		bcn->beacon_ies = nla_data(info->attrs[NL80211_ATTR_IE]);
		bcn->beacon_ies_len = nla_len(info->attrs[NL80211_ATTR_IE]);
2714 2715 2716
	}

	if (info->attrs[NL80211_ATTR_IE_PROBE_RESP]) {
2717
		bcn->proberesp_ies =
2718
			nla_data(info->attrs[NL80211_ATTR_IE_PROBE_RESP]);
2719
		bcn->proberesp_ies_len =
2720 2721 2722 2723
			nla_len(info->attrs[NL80211_ATTR_IE_PROBE_RESP]);
	}

	if (info->attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
2724
		bcn->assocresp_ies =
2725
			nla_data(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]);
2726
		bcn->assocresp_ies_len =
2727 2728 2729
			nla_len(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]);
	}

2730
	if (info->attrs[NL80211_ATTR_PROBE_RESP]) {
2731
		bcn->probe_resp =
2732
			nla_data(info->attrs[NL80211_ATTR_PROBE_RESP]);
2733
		bcn->probe_resp_len =
2734 2735 2736
			nla_len(info->attrs[NL80211_ATTR_PROBE_RESP]);
	}

2737 2738 2739
	return 0;
}

2740 2741 2742 2743 2744 2745 2746 2747
static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev,
				   struct cfg80211_ap_settings *params)
{
	struct wireless_dev *wdev;
	bool ret = false;

	mutex_lock(&rdev->devlist_mtx);

2748
	list_for_each_entry(wdev, &rdev->wdev_list, list) {
2749 2750 2751 2752
		if (wdev->iftype != NL80211_IFTYPE_AP &&
		    wdev->iftype != NL80211_IFTYPE_P2P_GO)
			continue;

2753
		if (!wdev->preset_chandef.chan)
2754 2755
			continue;

2756
		params->chandef = wdev->preset_chandef;
2757 2758 2759 2760 2761 2762 2763 2764 2765
		ret = true;
		break;
	}

	mutex_unlock(&rdev->devlist_mtx);

	return ret;
}

2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789
static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
				    enum nl80211_auth_type auth_type,
				    enum nl80211_commands cmd)
{
	if (auth_type > NL80211_AUTHTYPE_MAX)
		return false;

	switch (cmd) {
	case NL80211_CMD_AUTHENTICATE:
		if (!(rdev->wiphy.features & NL80211_FEATURE_SAE) &&
		    auth_type == NL80211_AUTHTYPE_SAE)
			return false;
		return true;
	case NL80211_CMD_CONNECT:
	case NL80211_CMD_START_AP:
		/* SAE not supported yet */
		if (auth_type == NL80211_AUTHTYPE_SAE)
			return false;
		return true;
	default:
		return false;
	}
}

2790 2791 2792 2793 2794 2795 2796
static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_ap_settings params;
	int err;
2797
	u8 radar_detect_width = 0;
2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859

	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EOPNOTSUPP;

	if (!rdev->ops->start_ap)
		return -EOPNOTSUPP;

	if (wdev->beacon_interval)
		return -EALREADY;

	memset(&params, 0, sizeof(params));

	/* these are required for START_AP */
	if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
	    !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
	    !info->attrs[NL80211_ATTR_BEACON_HEAD])
		return -EINVAL;

	err = nl80211_parse_beacon(info, &params.beacon);
	if (err)
		return err;

	params.beacon_interval =
		nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
	params.dtim_period =
		nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);

	err = cfg80211_validate_beacon_int(rdev, params.beacon_interval);
	if (err)
		return err;

	/*
	 * In theory, some of these attributes should be required here
	 * but since they were not used when the command was originally
	 * added, keep them optional for old user space programs to let
	 * them continue to work with drivers that do not need the
	 * additional information -- drivers must check!
	 */
	if (info->attrs[NL80211_ATTR_SSID]) {
		params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
		params.ssid_len =
			nla_len(info->attrs[NL80211_ATTR_SSID]);
		if (params.ssid_len == 0 ||
		    params.ssid_len > IEEE80211_MAX_SSID_LEN)
			return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) {
		params.hidden_ssid = nla_get_u32(
			info->attrs[NL80211_ATTR_HIDDEN_SSID]);
		if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE &&
		    params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN &&
		    params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS)
			return -EINVAL;
	}

	params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];

	if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
		params.auth_type = nla_get_u32(
			info->attrs[NL80211_ATTR_AUTH_TYPE]);
2860 2861
		if (!nl80211_valid_auth_type(rdev, params.auth_type,
					     NL80211_CMD_START_AP))
2862 2863 2864 2865 2866 2867 2868 2869 2870
			return -EINVAL;
	} else
		params.auth_type = NL80211_AUTHTYPE_AUTOMATIC;

	err = nl80211_crypto_settings(rdev, info, &params.crypto,
				      NL80211_MAX_NR_CIPHER_SUITES);
	if (err)
		return err;

2871 2872 2873 2874 2875 2876 2877
	if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) {
		if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER))
			return -EOPNOTSUPP;
		params.inactivity_timeout = nla_get_u16(
			info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]);
	}

2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903
	if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
		if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
			return -EINVAL;
		params.p2p_ctwindow =
			nla_get_u8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
		if (params.p2p_ctwindow > 127)
			return -EINVAL;
		if (params.p2p_ctwindow != 0 &&
		    !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
			return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
		u8 tmp;

		if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
			return -EINVAL;
		tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
		if (tmp > 1)
			return -EINVAL;
		params.p2p_opp_ps = tmp;
		if (params.p2p_opp_ps != 0 &&
		    !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
			return -EINVAL;
	}

2904
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
2905 2906 2907 2908 2909
		err = nl80211_parse_chandef(rdev, info, &params.chandef);
		if (err)
			return err;
	} else if (wdev->preset_chandef.chan) {
		params.chandef = wdev->preset_chandef;
2910
	} else if (!nl80211_get_ap_channel(rdev, &params))
2911 2912
		return -EINVAL;

2913
	if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
2914 2915
		return -EINVAL;

2916 2917 2918 2919 2920 2921 2922 2923
	err = cfg80211_chandef_dfs_required(wdev->wiphy, &params.chandef);
	if (err < 0)
		return err;
	if (err) {
		radar_detect_width = BIT(params.chandef.width);
		params.radar_required = true;
	}

2924
	mutex_lock(&rdev->devlist_mtx);
2925 2926 2927 2928
	err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
					   params.chandef.chan,
					   CHAN_MODE_SHARED,
					   radar_detect_width);
2929 2930 2931 2932 2933
	mutex_unlock(&rdev->devlist_mtx);

	if (err)
		return err;

2934 2935 2936 2937 2938 2939
	if (info->attrs[NL80211_ATTR_ACL_POLICY]) {
		params.acl = parse_acl_data(&rdev->wiphy, info);
		if (IS_ERR(params.acl))
			return PTR_ERR(params.acl);
	}

2940
	err = rdev_start_ap(rdev, dev, &params);
2941
	if (!err) {
2942
		wdev->preset_chandef = params.chandef;
2943
		wdev->beacon_interval = params.beacon_interval;
2944
		wdev->channel = params.chandef.chan;
2945 2946
		wdev->ssid_len = params.ssid_len;
		memcpy(wdev->ssid, params.ssid, wdev->ssid_len);
2947
	}
2948 2949 2950

	kfree(params.acl);

2951
	return err;
2952 2953
}

2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975
static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_beacon_data params;
	int err;

	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EOPNOTSUPP;

	if (!rdev->ops->change_beacon)
		return -EOPNOTSUPP;

	if (!wdev->beacon_interval)
		return -EINVAL;

	err = nl80211_parse_beacon(info, &params);
	if (err)
		return err;

2976
	return rdev_change_beacon(rdev, dev, &params);
2977 2978 2979
}

static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
2980
{
2981 2982
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
2983

2984
	return cfg80211_stop_ap(rdev, dev);
2985 2986
}

2987 2988 2989 2990
static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
	[NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
	[NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
	[NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
2991
	[NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
2992
	[NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
2993
	[NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
2994 2995
};

2996
static int parse_station_flags(struct genl_info *info,
2997
			       enum nl80211_iftype iftype,
2998
			       struct station_parameters *params)
2999 3000
{
	struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
3001
	struct nlattr *nla;
3002 3003
	int flag;

3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021
	/*
	 * Try parsing the new attribute first so userspace
	 * can specify both for older kernels.
	 */
	nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
	if (nla) {
		struct nl80211_sta_flag_update *sta_flags;

		sta_flags = nla_data(nla);
		params->sta_flags_mask = sta_flags->mask;
		params->sta_flags_set = sta_flags->set;
		if ((params->sta_flags_mask |
		     params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
			return -EINVAL;
		return 0;
	}

	/* if present, parse the old attribute */
3022

3023
	nla = info->attrs[NL80211_ATTR_STA_FLAGS];
3024 3025 3026 3027 3028 3029 3030
	if (!nla)
		return 0;

	if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
			     nla, sta_flags_policy))
		return -EINVAL;

3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057
	/*
	 * Only allow certain flags for interface types so that
	 * other attributes are silently ignored. Remember that
	 * this is backward compatibility code with old userspace
	 * and shouldn't be hit in other cases anyway.
	 */
	switch (iftype) {
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
	case NL80211_IFTYPE_P2P_GO:
		params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
					 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
					 BIT(NL80211_STA_FLAG_WME) |
					 BIT(NL80211_STA_FLAG_MFP);
		break;
	case NL80211_IFTYPE_P2P_CLIENT:
	case NL80211_IFTYPE_STATION:
		params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
					 BIT(NL80211_STA_FLAG_TDLS_PEER);
		break;
	case NL80211_IFTYPE_MESH_POINT:
		params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
					 BIT(NL80211_STA_FLAG_MFP) |
					 BIT(NL80211_STA_FLAG_AUTHORIZED);
	default:
		return -EINVAL;
	}
3058

3059 3060
	for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
		if (flags[flag]) {
3061
			params->sta_flags_set |= (1<<flag);
3062

3063 3064 3065 3066 3067 3068
			/* no longer support new API additions in old API */
			if (flag > NL80211_STA_FLAG_MAX_OLD_API)
				return -EINVAL;
		}
	}

3069 3070 3071
	return 0;
}

3072 3073 3074 3075
static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
				 int attr)
{
	struct nlattr *rate;
3076 3077
	u32 bitrate;
	u16 bitrate_compat;
3078 3079 3080

	rate = nla_nest_start(msg, attr);
	if (!rate)
3081
		return false;
3082 3083 3084

	/* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
	bitrate = cfg80211_calculate_bitrate(info);
3085 3086
	/* report 16-bit bitrate only if we can */
	bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123
	if (bitrate > 0 &&
	    nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate))
		return false;
	if (bitrate_compat > 0 &&
	    nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat))
		return false;

	if (info->flags & RATE_INFO_FLAGS_MCS) {
		if (nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs))
			return false;
		if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
		    nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
			return false;
		if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
		    nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
			return false;
	} else if (info->flags & RATE_INFO_FLAGS_VHT_MCS) {
		if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_MCS, info->mcs))
			return false;
		if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_NSS, info->nss))
			return false;
		if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
		    nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
			return false;
		if (info->flags & RATE_INFO_FLAGS_80_MHZ_WIDTH &&
		    nla_put_flag(msg, NL80211_RATE_INFO_80_MHZ_WIDTH))
			return false;
		if (info->flags & RATE_INFO_FLAGS_80P80_MHZ_WIDTH &&
		    nla_put_flag(msg, NL80211_RATE_INFO_80P80_MHZ_WIDTH))
			return false;
		if (info->flags & RATE_INFO_FLAGS_160_MHZ_WIDTH &&
		    nla_put_flag(msg, NL80211_RATE_INFO_160_MHZ_WIDTH))
			return false;
		if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
		    nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
			return false;
	}
3124 3125 3126 3127 3128

	nla_nest_end(msg, rate);
	return true;
}

3129
static int nl80211_send_station(struct sk_buff *msg, u32 portid, u32 seq,
3130 3131 3132
				int flags,
				struct cfg80211_registered_device *rdev,
				struct net_device *dev,
3133
				const u8 *mac_addr, struct station_info *sinfo)
3134 3135
{
	void *hdr;
3136
	struct nlattr *sinfoattr, *bss_param;
3137

3138
	hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
3139 3140 3141
	if (!hdr)
		return -1;

3142 3143 3144 3145
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
	    nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation))
		goto nla_put_failure;
3146

3147 3148
	sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
	if (!sinfoattr)
3149
		goto nla_put_failure;
3150 3151 3152 3153 3154 3155 3156 3157
	if ((sinfo->filled & STATION_INFO_CONNECTED_TIME) &&
	    nla_put_u32(msg, NL80211_STA_INFO_CONNECTED_TIME,
			sinfo->connected_time))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_INACTIVE_TIME) &&
	    nla_put_u32(msg, NL80211_STA_INFO_INACTIVE_TIME,
			sinfo->inactive_time))
		goto nla_put_failure;
3158 3159
	if ((sinfo->filled & (STATION_INFO_RX_BYTES |
			      STATION_INFO_RX_BYTES64)) &&
3160
	    nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
3161
			(u32)sinfo->rx_bytes))
3162
		goto nla_put_failure;
3163 3164
	if ((sinfo->filled & (STATION_INFO_TX_BYTES |
			      NL80211_STA_INFO_TX_BYTES64)) &&
3165
	    nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
3166 3167 3168 3169 3170 3171 3172 3173
			(u32)sinfo->tx_bytes))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_RX_BYTES64) &&
	    nla_put_u64(msg, NL80211_STA_INFO_RX_BYTES64,
			sinfo->rx_bytes))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_TX_BYTES64) &&
	    nla_put_u64(msg, NL80211_STA_INFO_TX_BYTES64,
3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185
			sinfo->tx_bytes))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_LLID) &&
	    nla_put_u16(msg, NL80211_STA_INFO_LLID, sinfo->llid))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_PLID) &&
	    nla_put_u16(msg, NL80211_STA_INFO_PLID, sinfo->plid))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_PLINK_STATE) &&
	    nla_put_u8(msg, NL80211_STA_INFO_PLINK_STATE,
		       sinfo->plink_state))
		goto nla_put_failure;
3186 3187
	switch (rdev->wiphy.signal_type) {
	case CFG80211_SIGNAL_TYPE_MBM:
3188 3189 3190 3191 3192 3193 3194 3195
		if ((sinfo->filled & STATION_INFO_SIGNAL) &&
		    nla_put_u8(msg, NL80211_STA_INFO_SIGNAL,
			       sinfo->signal))
			goto nla_put_failure;
		if ((sinfo->filled & STATION_INFO_SIGNAL_AVG) &&
		    nla_put_u8(msg, NL80211_STA_INFO_SIGNAL_AVG,
			       sinfo->signal_avg))
			goto nla_put_failure;
3196 3197 3198 3199
		break;
	default:
		break;
	}
3200
	if (sinfo->filled & STATION_INFO_TX_BITRATE) {
3201 3202 3203 3204 3205 3206 3207
		if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
					  NL80211_STA_INFO_TX_BITRATE))
			goto nla_put_failure;
	}
	if (sinfo->filled & STATION_INFO_RX_BITRATE) {
		if (!nl80211_put_sta_rate(msg, &sinfo->rxrate,
					  NL80211_STA_INFO_RX_BITRATE))
3208 3209
			goto nla_put_failure;
	}
3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229
	if ((sinfo->filled & STATION_INFO_RX_PACKETS) &&
	    nla_put_u32(msg, NL80211_STA_INFO_RX_PACKETS,
			sinfo->rx_packets))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_TX_PACKETS) &&
	    nla_put_u32(msg, NL80211_STA_INFO_TX_PACKETS,
			sinfo->tx_packets))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_TX_RETRIES) &&
	    nla_put_u32(msg, NL80211_STA_INFO_TX_RETRIES,
			sinfo->tx_retries))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_TX_FAILED) &&
	    nla_put_u32(msg, NL80211_STA_INFO_TX_FAILED,
			sinfo->tx_failed))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_BEACON_LOSS_COUNT) &&
	    nla_put_u32(msg, NL80211_STA_INFO_BEACON_LOSS,
			sinfo->beacon_loss_count))
		goto nla_put_failure;
3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241
	if ((sinfo->filled & STATION_INFO_LOCAL_PM) &&
	    nla_put_u32(msg, NL80211_STA_INFO_LOCAL_PM,
			sinfo->local_pm))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_PEER_PM) &&
	    nla_put_u32(msg, NL80211_STA_INFO_PEER_PM,
			sinfo->peer_pm))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_NONPEER_PM) &&
	    nla_put_u32(msg, NL80211_STA_INFO_NONPEER_PM,
			sinfo->nonpeer_pm))
		goto nla_put_failure;
3242 3243 3244 3245 3246
	if (sinfo->filled & STATION_INFO_BSS_PARAM) {
		bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM);
		if (!bss_param)
			goto nla_put_failure;

3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257
		if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) &&
		     nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) ||
		    ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) &&
		     nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) ||
		    ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) &&
		     nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) ||
		    nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD,
			       sinfo->bss_param.dtim_period) ||
		    nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL,
				sinfo->bss_param.beacon_interval))
			goto nla_put_failure;
3258 3259 3260

		nla_nest_end(msg, bss_param);
	}
3261 3262 3263 3264 3265
	if ((sinfo->filled & STATION_INFO_STA_FLAGS) &&
	    nla_put(msg, NL80211_STA_INFO_STA_FLAGS,
		    sizeof(struct nl80211_sta_flag_update),
		    &sinfo->sta_flags))
		goto nla_put_failure;
3266 3267 3268 3269
	if ((sinfo->filled & STATION_INFO_T_OFFSET) &&
		nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET,
			    sinfo->t_offset))
		goto nla_put_failure;
3270
	nla_nest_end(msg, sinfoattr);
3271

3272 3273 3274 3275
	if ((sinfo->filled & STATION_INFO_ASSOC_REQ_IES) &&
	    nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len,
		    sinfo->assoc_req_ies))
		goto nla_put_failure;
3276

3277 3278 3279
	return genlmsg_end(msg, hdr);

 nla_put_failure:
3280 3281
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
3282 3283
}

3284
static int nl80211_dump_station(struct sk_buff *skb,
J
Johannes Berg 已提交
3285
				struct netlink_callback *cb)
3286 3287 3288
{
	struct station_info sinfo;
	struct cfg80211_registered_device *dev;
J
Johannes Berg 已提交
3289
	struct net_device *netdev;
3290
	u8 mac_addr[ETH_ALEN];
J
Johannes Berg 已提交
3291
	int sta_idx = cb->args[1];
3292 3293
	int err;

3294 3295 3296
	err = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev);
	if (err)
		return err;
J
Johannes Berg 已提交
3297 3298

	if (!dev->ops->dump_station) {
3299
		err = -EOPNOTSUPP;
J
Johannes Berg 已提交
3300 3301 3302 3303
		goto out_err;
	}

	while (1) {
3304
		memset(&sinfo, 0, sizeof(sinfo));
3305 3306
		err = rdev_dump_station(dev, netdev, sta_idx,
					mac_addr, &sinfo);
J
Johannes Berg 已提交
3307 3308 3309
		if (err == -ENOENT)
			break;
		if (err)
J
Johannes Berg 已提交
3310
			goto out_err;
J
Johannes Berg 已提交
3311 3312

		if (nl80211_send_station(skb,
3313
				NETLINK_CB(cb->skb).portid,
J
Johannes Berg 已提交
3314
				cb->nlh->nlmsg_seq, NLM_F_MULTI,
3315
				dev, netdev, mac_addr,
J
Johannes Berg 已提交
3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326
				&sinfo) < 0)
			goto out;

		sta_idx++;
	}


 out:
	cb->args[1] = sta_idx;
	err = skb->len;
 out_err:
3327
	nl80211_finish_netdev_dump(dev);
J
Johannes Berg 已提交
3328 3329

	return err;
3330
}
3331

3332 3333
static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
{
3334 3335
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3336
	struct station_info sinfo;
3337 3338
	struct sk_buff *msg;
	u8 *mac_addr = NULL;
3339
	int err;
3340

3341
	memset(&sinfo, 0, sizeof(sinfo));
3342 3343 3344 3345 3346 3347

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

3348 3349
	if (!rdev->ops->get_station)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
3350

3351
	err = rdev_get_station(rdev, dev, mac_addr, &sinfo);
3352
	if (err)
3353
		return err;
3354

3355
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3356
	if (!msg)
3357
		return -ENOMEM;
3358

3359
	if (nl80211_send_station(msg, info->snd_portid, info->snd_seq, 0,
3360
				 rdev, dev, mac_addr, &sinfo) < 0) {
3361 3362 3363
		nlmsg_free(msg);
		return -ENOBUFS;
	}
J
Johannes Berg 已提交
3364

3365
	return genlmsg_reply(msg, info);
3366 3367 3368
}

/*
3369
 * Get vlan interface making sure it is running and on the right wiphy.
3370
 */
3371 3372
static struct net_device *get_vlan(struct genl_info *info,
				   struct cfg80211_registered_device *rdev)
3373
{
3374
	struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387
	struct net_device *v;
	int ret;

	if (!vlanattr)
		return NULL;

	v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr));
	if (!v)
		return ERR_PTR(-ENODEV);

	if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) {
		ret = -EINVAL;
		goto error;
3388
	}
3389 3390 3391 3392 3393 3394 3395 3396 3397 3398

	if (!netif_running(v)) {
		ret = -ENETDOWN;
		goto error;
	}

	return v;
 error:
	dev_put(v);
	return ERR_PTR(ret);
3399 3400 3401 3402
}

static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
{
3403
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
3404
	int err;
3405
	struct net_device *dev = info->user_ptr[1];
3406 3407 3408 3409 3410 3411
	struct station_parameters params;
	u8 *mac_addr = NULL;

	memset(&params, 0, sizeof(params));

	params.listen_interval = -1;
3412
	params.plink_state = -1;
3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428

	if (info->attrs[NL80211_ATTR_STA_AID])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

	if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
		params.supported_rates =
			nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
		params.supported_rates_len =
			nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
	}

3429 3430 3431
	if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL] ||
	    info->attrs[NL80211_ATTR_HT_CAPABILITY])
		return -EINVAL;
3432

3433 3434 3435
	if (!rdev->ops->change_station)
		return -EOPNOTSUPP;

3436
	if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
3437 3438
		return -EINVAL;

3439 3440 3441 3442
	if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION])
		params.plink_action =
		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);

3443 3444 3445 3446
	if (info->attrs[NL80211_ATTR_STA_PLINK_STATE])
		params.plink_state =
		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);

3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457
	if (info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]) {
		enum nl80211_mesh_power_mode pm = nla_get_u32(
			info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]);

		if (pm <= NL80211_MESH_POWER_UNKNOWN ||
		    pm > NL80211_MESH_POWER_MAX)
			return -EINVAL;

		params.local_pm = pm;
	}

3458 3459 3460
	switch (dev->ieee80211_ptr->iftype) {
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
3461
	case NL80211_IFTYPE_P2P_GO:
3462 3463
		/* disallow mesh-specific things */
		if (params.plink_action)
3464
			return -EINVAL;
3465 3466
		if (params.local_pm)
			return -EINVAL;
3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480

		/* TDLS can't be set, ... */
		if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
			return -EINVAL;
		/*
		 * ... but don't bother the driver with it. This works around
		 * a hostapd/wpa_supplicant issue -- it always includes the
		 * TLDS_PEER flag in the mask even for AP mode.
		 */
		params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);

		/* accept only the listed bits */
		if (params.sta_flags_mask &
				~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3481 3482
				  BIT(NL80211_STA_FLAG_AUTHENTICATED) |
				  BIT(NL80211_STA_FLAG_ASSOCIATED) |
3483 3484 3485 3486 3487
				  BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
				  BIT(NL80211_STA_FLAG_WME) |
				  BIT(NL80211_STA_FLAG_MFP)))
			return -EINVAL;

3488 3489 3490 3491 3492 3493 3494 3495
		/* but authenticated/associated only if driver handles it */
		if (!(rdev->wiphy.features &
				NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
		    params.sta_flags_mask &
				(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
				 BIT(NL80211_STA_FLAG_ASSOCIATED)))
			return -EINVAL;

3496 3497 3498 3499
		/* reject other things that can't change */
		if (params.supported_rates)
			return -EINVAL;

3500 3501 3502 3503
		/* must be last in here for error handling */
		params.vlan = get_vlan(info, rdev);
		if (IS_ERR(params.vlan))
			return PTR_ERR(params.vlan);
3504
		break;
3505
	case NL80211_IFTYPE_P2P_CLIENT:
3506
	case NL80211_IFTYPE_STATION:
3507 3508 3509 3510 3511 3512 3513
		/*
		 * Don't allow userspace to change the TDLS_PEER flag,
		 * but silently ignore attempts to change it since we
		 * don't have state here to verify that it doesn't try
		 * to change the flag.
		 */
		params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3514 3515 3516 3517 3518
		/* fall through */
	case NL80211_IFTYPE_ADHOC:
		/* disallow things sta doesn't support */
		if (params.plink_action)
			return -EINVAL;
3519 3520
		if (params.local_pm)
			return -EINVAL;
3521 3522 3523
		/* reject any changes other than AUTHORIZED */
		if (params.sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
			return -EINVAL;
3524 3525 3526 3527
		break;
	case NL80211_IFTYPE_MESH_POINT:
		/* disallow things mesh doesn't support */
		if (params.vlan)
3528
			return -EINVAL;
3529
		if (params.supported_rates)
3530 3531 3532 3533 3534
			return -EINVAL;
		/*
		 * No special handling for TDLS here -- the userspace
		 * mesh code doesn't have this bug.
		 */
3535 3536
		if (params.sta_flags_mask &
				~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3537
				  BIT(NL80211_STA_FLAG_MFP) |
3538
				  BIT(NL80211_STA_FLAG_AUTHORIZED)))
3539
			return -EINVAL;
3540 3541
		break;
	default:
3542
		return -EOPNOTSUPP;
3543 3544
	}

3545
	/* be aware of params.vlan when changing code here */
3546

3547
	err = rdev_change_station(rdev, dev, mac_addr, &params);
3548 3549 3550

	if (params.vlan)
		dev_put(params.vlan);
J
Johannes Berg 已提交
3551

3552 3553 3554
	return err;
}

3555 3556 3557 3558 3559 3560
static struct nla_policy
nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] __read_mostly = {
	[NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 },
	[NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
};

3561 3562
static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
{
3563
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
3564
	int err;
3565
	struct net_device *dev = info->user_ptr[1];
3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579
	struct station_parameters params;
	u8 *mac_addr = NULL;

	memset(&params, 0, sizeof(params));

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
		return -EINVAL;

3580 3581 3582
	if (!info->attrs[NL80211_ATTR_STA_AID])
		return -EINVAL;

3583 3584 3585 3586 3587 3588 3589
	mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
	params.supported_rates =
		nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
	params.supported_rates_len =
		nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
	params.listen_interval =
		nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
3590

3591 3592 3593
	params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
	if (!params.aid || params.aid > IEEE80211_MAX_AID)
		return -EINVAL;
3594

3595 3596 3597
	if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
		params.ht_capa =
			nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
3598

M
Mahesh Palivela 已提交
3599 3600 3601 3602
	if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
		params.vht_capa =
			nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);

3603 3604 3605 3606
	if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION])
		params.plink_action =
		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);

3607 3608 3609
	if (!rdev->ops->add_station)
		return -EOPNOTSUPP;

3610
	if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
3611 3612
		return -EINVAL;

3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635
	switch (dev->ieee80211_ptr->iftype) {
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
	case NL80211_IFTYPE_P2P_GO:
		/* parse WME attributes if sta is WME capable */
		if ((rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
		    (params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)) &&
		    info->attrs[NL80211_ATTR_STA_WME]) {
			struct nlattr *tb[NL80211_STA_WME_MAX + 1];
			struct nlattr *nla;

			nla = info->attrs[NL80211_ATTR_STA_WME];
			err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla,
					       nl80211_sta_wme_policy);
			if (err)
				return err;

			if (tb[NL80211_STA_WME_UAPSD_QUEUES])
				params.uapsd_queues =
				     nla_get_u8(tb[NL80211_STA_WME_UAPSD_QUEUES]);
			if (params.uapsd_queues &
					~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
				return -EINVAL;
3636

3637 3638 3639
			if (tb[NL80211_STA_WME_MAX_SP])
				params.max_sp =
				     nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
3640

3641 3642 3643
			if (params.max_sp &
					~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
				return -EINVAL;
3644

3645 3646 3647 3648
			params.sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
		}
		/* TDLS peers cannot be added */
		if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
3649
			return -EINVAL;
3650 3651
		/* but don't bother the driver with it */
		params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3652

3653 3654 3655 3656 3657 3658 3659 3660
		/* allow authenticated/associated only if driver handles it */
		if (!(rdev->wiphy.features &
				NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
		    params.sta_flags_mask &
				(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
				 BIT(NL80211_STA_FLAG_ASSOCIATED)))
			return -EINVAL;

3661 3662 3663 3664 3665 3666
		/* must be last in here for error handling */
		params.vlan = get_vlan(info, rdev);
		if (IS_ERR(params.vlan))
			return PTR_ERR(params.vlan);
		break;
	case NL80211_IFTYPE_MESH_POINT:
3667 3668 3669
		/* associated is disallowed */
		if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
			return -EINVAL;
3670 3671 3672 3673 3674
		/* TDLS peers cannot be added */
		if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
			return -EINVAL;
		break;
	case NL80211_IFTYPE_STATION:
3675 3676 3677
		/* associated is disallowed */
		if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
			return -EINVAL;
3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689
		/* Only TDLS peers can be added */
		if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
			return -EINVAL;
		/* Can only add if TDLS ... */
		if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS))
			return -EOPNOTSUPP;
		/* ... with external setup is supported */
		if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
			return -EOPNOTSUPP;
		break;
	default:
		return -EOPNOTSUPP;
3690 3691
	}

3692
	/* be aware of params.vlan when changing code here */
3693

3694
	err = rdev_add_station(rdev, dev, mac_addr, &params);
3695 3696 3697 3698 3699 3700 3701 3702

	if (params.vlan)
		dev_put(params.vlan);
	return err;
}

static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
{
3703 3704
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3705 3706 3707 3708 3709
	u8 *mac_addr = NULL;

	if (info->attrs[NL80211_ATTR_MAC])
		mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

3710
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3711
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
3712
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
3713 3714
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EINVAL;
3715

3716 3717
	if (!rdev->ops->del_station)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
3718

3719
	return rdev_del_station(rdev, dev, mac_addr);
3720 3721
}

3722
static int nl80211_send_mpath(struct sk_buff *msg, u32 portid, u32 seq,
3723 3724 3725 3726 3727 3728 3729
				int flags, struct net_device *dev,
				u8 *dst, u8 *next_hop,
				struct mpath_info *pinfo)
{
	void *hdr;
	struct nlattr *pinfoattr;

3730
	hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
3731 3732 3733
	if (!hdr)
		return -1;

3734 3735 3736 3737 3738
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) ||
	    nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) ||
	    nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation))
		goto nla_put_failure;
3739

3740 3741 3742
	pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
	if (!pinfoattr)
		goto nla_put_failure;
3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764
	if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) &&
	    nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
			pinfo->frame_qlen))
		goto nla_put_failure;
	if (((pinfo->filled & MPATH_INFO_SN) &&
	     nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) ||
	    ((pinfo->filled & MPATH_INFO_METRIC) &&
	     nla_put_u32(msg, NL80211_MPATH_INFO_METRIC,
			 pinfo->metric)) ||
	    ((pinfo->filled & MPATH_INFO_EXPTIME) &&
	     nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME,
			 pinfo->exptime)) ||
	    ((pinfo->filled & MPATH_INFO_FLAGS) &&
	     nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS,
			pinfo->flags)) ||
	    ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) &&
	     nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
			 pinfo->discovery_timeout)) ||
	    ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) &&
	     nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
			pinfo->discovery_retries)))
		goto nla_put_failure;
3765 3766 3767 3768 3769 3770

	nla_nest_end(msg, pinfoattr);

	return genlmsg_end(msg, hdr);

 nla_put_failure:
3771 3772
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
3773 3774 3775
}

static int nl80211_dump_mpath(struct sk_buff *skb,
J
Johannes Berg 已提交
3776
			      struct netlink_callback *cb)
3777 3778 3779
{
	struct mpath_info pinfo;
	struct cfg80211_registered_device *dev;
J
Johannes Berg 已提交
3780
	struct net_device *netdev;
3781 3782
	u8 dst[ETH_ALEN];
	u8 next_hop[ETH_ALEN];
J
Johannes Berg 已提交
3783
	int path_idx = cb->args[1];
3784 3785
	int err;

3786 3787 3788
	err = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev);
	if (err)
		return err;
J
Johannes Berg 已提交
3789 3790

	if (!dev->ops->dump_mpath) {
3791
		err = -EOPNOTSUPP;
J
Johannes Berg 已提交
3792 3793 3794
		goto out_err;
	}

3795 3796
	if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
		err = -EOPNOTSUPP;
3797
		goto out_err;
3798 3799
	}

J
Johannes Berg 已提交
3800
	while (1) {
3801 3802
		err = rdev_dump_mpath(dev, netdev, path_idx, dst, next_hop,
				      &pinfo);
J
Johannes Berg 已提交
3803
		if (err == -ENOENT)
3804
			break;
J
Johannes Berg 已提交
3805
		if (err)
J
Johannes Berg 已提交
3806
			goto out_err;
3807

3808
		if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
J
Johannes Berg 已提交
3809 3810 3811 3812
				       cb->nlh->nlmsg_seq, NLM_F_MULTI,
				       netdev, dst, next_hop,
				       &pinfo) < 0)
			goto out;
3813

J
Johannes Berg 已提交
3814
		path_idx++;
3815 3816 3817
	}


J
Johannes Berg 已提交
3818 3819 3820 3821
 out:
	cb->args[1] = path_idx;
	err = skb->len;
 out_err:
3822
	nl80211_finish_netdev_dump(dev);
J
Johannes Berg 已提交
3823
	return err;
3824 3825 3826 3827
}

static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
{
3828
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
3829
	int err;
3830
	struct net_device *dev = info->user_ptr[1];
3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842
	struct mpath_info pinfo;
	struct sk_buff *msg;
	u8 *dst = NULL;
	u8 next_hop[ETH_ALEN];

	memset(&pinfo, 0, sizeof(pinfo));

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	dst = nla_data(info->attrs[NL80211_ATTR_MAC]);

3843 3844
	if (!rdev->ops->get_mpath)
		return -EOPNOTSUPP;
3845

3846 3847
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;
3848

3849
	err = rdev_get_mpath(rdev, dev, dst, next_hop, &pinfo);
3850
	if (err)
3851
		return err;
3852

3853
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3854
	if (!msg)
3855
		return -ENOMEM;
3856

3857
	if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
3858 3859 3860 3861
				 dev, dst, next_hop, &pinfo) < 0) {
		nlmsg_free(msg);
		return -ENOBUFS;
	}
J
Johannes Berg 已提交
3862

3863
	return genlmsg_reply(msg, info);
3864 3865 3866 3867
}

static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
{
3868 3869
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881
	u8 *dst = NULL;
	u8 *next_hop = NULL;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
		return -EINVAL;

	dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
	next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);

3882 3883
	if (!rdev->ops->change_mpath)
		return -EOPNOTSUPP;
3884

3885 3886
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;
3887

3888
	return rdev_change_mpath(rdev, dev, dst, next_hop);
3889
}
3890

3891 3892
static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
{
3893 3894
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906
	u8 *dst = NULL;
	u8 *next_hop = NULL;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
		return -EINVAL;

	dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
	next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);

3907 3908
	if (!rdev->ops->add_mpath)
		return -EOPNOTSUPP;
3909

3910 3911
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;
3912

3913
	return rdev_add_mpath(rdev, dev, dst, next_hop);
3914 3915 3916 3917
}

static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
{
3918 3919
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3920 3921 3922 3923 3924
	u8 *dst = NULL;

	if (info->attrs[NL80211_ATTR_MAC])
		dst = nla_data(info->attrs[NL80211_ATTR_MAC]);

3925 3926
	if (!rdev->ops->del_mpath)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
3927

3928
	return rdev_del_mpath(rdev, dev, dst);
3929 3930
}

3931 3932
static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
{
3933 3934
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3935 3936 3937 3938 3939 3940 3941
	struct bss_parameters params;

	memset(&params, 0, sizeof(params));
	/* default to not changing parameters */
	params.use_cts_prot = -1;
	params.use_short_preamble = -1;
	params.use_short_slot_time = -1;
3942
	params.ap_isolate = -1;
3943
	params.ht_opmode = -1;
3944 3945
	params.p2p_ctwindow = -1;
	params.p2p_opp_ps = -1;
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955

	if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
		params.use_cts_prot =
		    nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
	if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
		params.use_short_preamble =
		    nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
	if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
		params.use_short_slot_time =
		    nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
3956 3957 3958 3959 3960 3961
	if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
		params.basic_rates =
			nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
		params.basic_rates_len =
			nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
	}
3962 3963
	if (info->attrs[NL80211_ATTR_AP_ISOLATE])
		params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
3964 3965 3966
	if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
		params.ht_opmode =
			nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
3967

3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993
	if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
		if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
			return -EINVAL;
		params.p2p_ctwindow =
			nla_get_s8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
		if (params.p2p_ctwindow < 0)
			return -EINVAL;
		if (params.p2p_ctwindow != 0 &&
		    !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
			return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
		u8 tmp;

		if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
			return -EINVAL;
		tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
		if (tmp > 1)
			return -EINVAL;
		params.p2p_opp_ps = tmp;
		if (params.p2p_opp_ps &&
		    !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
			return -EINVAL;
	}

3994 3995
	if (!rdev->ops->change_bss)
		return -EOPNOTSUPP;
3996

3997
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3998 3999
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
4000

4001
	return rdev_change_bss(rdev, dev, &params);
4002 4003
}

A
Alexey Dobriyan 已提交
4004
static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052
	[NL80211_ATTR_REG_RULE_FLAGS]		= { .type = NLA_U32 },
	[NL80211_ATTR_FREQ_RANGE_START]		= { .type = NLA_U32 },
	[NL80211_ATTR_FREQ_RANGE_END]		= { .type = NLA_U32 },
	[NL80211_ATTR_FREQ_RANGE_MAX_BW]	= { .type = NLA_U32 },
	[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]	= { .type = NLA_U32 },
	[NL80211_ATTR_POWER_RULE_MAX_EIRP]	= { .type = NLA_U32 },
};

static int parse_reg_rule(struct nlattr *tb[],
	struct ieee80211_reg_rule *reg_rule)
{
	struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
	struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;

	if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
		return -EINVAL;
	if (!tb[NL80211_ATTR_FREQ_RANGE_START])
		return -EINVAL;
	if (!tb[NL80211_ATTR_FREQ_RANGE_END])
		return -EINVAL;
	if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
		return -EINVAL;
	if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
		return -EINVAL;

	reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);

	freq_range->start_freq_khz =
		nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
	freq_range->end_freq_khz =
		nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
	freq_range->max_bandwidth_khz =
		nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);

	power_rule->max_eirp =
		nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);

	if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
		power_rule->max_antenna_gain =
			nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);

	return 0;
}

static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
{
	int r;
	char *data = NULL;
4053
	enum nl80211_user_reg_hint_type user_reg_hint_type;
4054

4055 4056 4057 4058 4059 4060
	/*
	 * You should only get this when cfg80211 hasn't yet initialized
	 * completely when built-in to the kernel right between the time
	 * window between nl80211_init() and regulatory_init(), if that is
	 * even possible.
	 */
4061
	if (unlikely(!rcu_access_pointer(cfg80211_regdomain)))
4062
		return -EINPROGRESS;
4063

4064 4065
	if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
		return -EINVAL;
4066 4067 4068

	data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);

4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083
	if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE])
		user_reg_hint_type =
		  nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]);
	else
		user_reg_hint_type = NL80211_USER_REG_HINT_USER;

	switch (user_reg_hint_type) {
	case NL80211_USER_REG_HINT_USER:
	case NL80211_USER_REG_HINT_CELL_BASE:
		break;
	default:
		return -EINVAL;
	}

	r = regulatory_hint_user(data, user_reg_hint_type);
4084

4085 4086 4087
	return r;
}

4088
static int nl80211_get_mesh_config(struct sk_buff *skb,
4089
				   struct genl_info *info)
4090
{
4091 4092
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
4093 4094 4095
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct mesh_config cur_params;
	int err = 0;
4096 4097 4098 4099
	void *hdr;
	struct nlattr *pinfoattr;
	struct sk_buff *msg;

4100 4101 4102
	if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;

4103
	if (!rdev->ops->get_mesh_config)
4104
		return -EOPNOTSUPP;
4105

4106 4107 4108 4109 4110
	wdev_lock(wdev);
	/* If not connected, get default parameters */
	if (!wdev->mesh_id_len)
		memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
	else
4111
		err = rdev_get_mesh_config(rdev, dev, &cur_params);
4112 4113
	wdev_unlock(wdev);

4114
	if (err)
4115
		return err;
4116 4117

	/* Draw up a netlink message to send back */
4118
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
4119 4120
	if (!msg)
		return -ENOMEM;
4121
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
4122
			     NL80211_CMD_GET_MESH_CONFIG);
4123
	if (!hdr)
4124
		goto out;
4125
	pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
4126 4127
	if (!pinfoattr)
		goto nla_put_failure;
4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
			cur_params.dot11MeshRetryTimeout) ||
	    nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
			cur_params.dot11MeshConfirmTimeout) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
			cur_params.dot11MeshHoldingTimeout) ||
	    nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
			cur_params.dot11MeshMaxPeerLinks) ||
	    nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES,
		       cur_params.dot11MeshMaxRetries) ||
	    nla_put_u8(msg, NL80211_MESHCONF_TTL,
		       cur_params.dot11MeshTTL) ||
	    nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL,
		       cur_params.element_ttl) ||
	    nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
		       cur_params.auto_open_plinks) ||
4145 4146
	    nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
			cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169
	    nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
		       cur_params.dot11MeshHWMPmaxPREQretries) ||
	    nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
			cur_params.path_refresh_time) ||
	    nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
			cur_params.min_discovery_timeout) ||
	    nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
			cur_params.dot11MeshHWMPactivePathTimeout) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
			cur_params.dot11MeshHWMPpreqMinInterval) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
			cur_params.dot11MeshHWMPperrMinInterval) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
			cur_params.dot11MeshHWMPnetDiameterTraversalTime) ||
	    nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE,
		       cur_params.dot11MeshHWMPRootMode) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
			cur_params.dot11MeshHWMPRannInterval) ||
	    nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
		       cur_params.dot11MeshGateAnnouncementProtocol) ||
	    nla_put_u8(msg, NL80211_MESHCONF_FORWARDING,
		       cur_params.dot11MeshForwarding) ||
	    nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD,
4170 4171
			cur_params.rssi_threshold) ||
	    nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
4172 4173 4174 4175
			cur_params.ht_opmode) ||
	    nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
			cur_params.dot11MeshHWMPactivePathToRootTimeout) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
4176 4177
			cur_params.dot11MeshHWMProotInterval) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
4178 4179 4180 4181 4182
			cur_params.dot11MeshHWMPconfirmationInterval) ||
	    nla_put_u32(msg, NL80211_MESHCONF_POWER_MODE,
			cur_params.power_mode) ||
	    nla_put_u16(msg, NL80211_MESHCONF_AWAKE_WINDOW,
			cur_params.dot11MeshAwakeWindowDuration))
4183
		goto nla_put_failure;
4184 4185
	nla_nest_end(msg, pinfoattr);
	genlmsg_end(msg, hdr);
4186
	return genlmsg_reply(msg, info);
4187

J
Johannes Berg 已提交
4188
 nla_put_failure:
4189
	genlmsg_cancel(msg, hdr);
4190
 out:
Y
Yuri Ershov 已提交
4191
	nlmsg_free(msg);
4192
	return -ENOBUFS;
4193 4194
}

A
Alexey Dobriyan 已提交
4195
static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
4196 4197 4198 4199 4200 4201
	[NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
	[NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
	[NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
	[NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
	[NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
	[NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
4202
	[NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
4203
	[NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
4204
	[NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
4205 4206 4207 4208 4209
	[NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
	[NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
	[NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
	[NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
	[NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
4210
	[NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
4211
	[NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
4212
	[NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
4213
	[NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
4214
	[NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
4215
	[NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
4216 4217
	[NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
	[NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
4218 4219
	[NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
	[NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
4220
	[NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
4221 4222
	[NL80211_MESHCONF_POWER_MODE] = { .type = NLA_U32 },
	[NL80211_MESHCONF_AWAKE_WINDOW] = { .type = NLA_U16 },
4223 4224
};

4225 4226
static const struct nla_policy
	nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
4227
	[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
4228 4229
	[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
	[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
4230
	[NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
4231
	[NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
4232
				    .len = IEEE80211_MAX_DATA_LEN },
4233
	[NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
4234 4235
};

4236
static int nl80211_parse_mesh_config(struct genl_info *info,
4237 4238
				     struct mesh_config *cfg,
				     u32 *mask_out)
4239 4240
{
	struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
4241
	u32 mask = 0;
4242

4243 4244 4245 4246 4247 4248 4249 4250 4251
#define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
do {									    \
	if (tb[attr]) {							    \
		if (fn(tb[attr]) < min || fn(tb[attr]) > max)		    \
			return -EINVAL;					    \
		cfg->param = fn(tb[attr]);				    \
		mask |= (1 << (attr - 1));				    \
	}								    \
} while (0)
4252 4253


4254
	if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
4255 4256
		return -EINVAL;
	if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
4257
			     info->attrs[NL80211_ATTR_MESH_CONFIG],
4258
			     nl80211_meshconf_params_policy))
4259 4260 4261 4262 4263 4264 4265
		return -EINVAL;

	/* This makes sure that there aren't more than 32 mesh config
	 * parameters (otherwise our bitfield scheme would not work.) */
	BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);

	/* Fill in the params struct */
4266
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, 1, 255,
4267 4268
				  mask, NL80211_MESHCONF_RETRY_TIMEOUT,
				  nla_get_u16);
4269
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, 1, 255,
4270 4271
				  mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
				  nla_get_u16);
4272
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, 1, 255,
4273 4274
				  mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
				  nla_get_u16);
4275
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, 0, 255,
4276 4277
				  mask, NL80211_MESHCONF_MAX_PEER_LINKS,
				  nla_get_u16);
4278
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, 0, 16,
4279 4280
				  mask, NL80211_MESHCONF_MAX_RETRIES,
				  nla_get_u8);
4281
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, 1, 255,
4282
				  mask, NL80211_MESHCONF_TTL, nla_get_u8);
4283
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, 1, 255,
4284 4285
				  mask, NL80211_MESHCONF_ELEMENT_TTL,
				  nla_get_u8);
4286
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, 0, 1,
4287 4288
				  mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
				  nla_get_u8);
4289 4290
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor,
				  1, 255, mask,
4291 4292
				  NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
				  nla_get_u32);
4293
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, 0, 255,
4294 4295
				  mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
				  nla_get_u8);
4296
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, 1, 65535,
4297 4298
				  mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
				  nla_get_u32);
4299
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, 1, 65535,
4300 4301
				  mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
				  nla_get_u16);
4302 4303
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
				  1, 65535, mask,
4304 4305
				  NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
				  nla_get_u32);
4306
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
4307 4308
				  1, 65535, mask,
				  NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
4309
				  nla_get_u16);
4310
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
4311 4312
				  1, 65535, mask,
				  NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
4313
				  nla_get_u16);
4314
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
4315 4316
				  dot11MeshHWMPnetDiameterTraversalTime,
				  1, 65535, mask,
4317 4318
				  NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
				  nla_get_u16);
4319 4320 4321 4322 4323
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, 0, 4,
				  mask, NL80211_MESHCONF_HWMP_ROOTMODE,
				  nla_get_u8);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, 1, 65535,
				  mask, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
4324
				  nla_get_u16);
4325
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
4326 4327
				  dot11MeshGateAnnouncementProtocol, 0, 1,
				  mask, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
4328
				  nla_get_u8);
4329
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, 0, 1,
4330 4331
				  mask, NL80211_MESHCONF_FORWARDING,
				  nla_get_u8);
4332
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, 1, 255,
4333 4334
				  mask, NL80211_MESHCONF_RSSI_THRESHOLD,
				  nla_get_u32);
4335
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, 0, 16,
4336
				  mask, NL80211_MESHCONF_HT_OPMODE,
4337 4338
				  nla_get_u16);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
4339
				  1, 65535, mask,
4340 4341
				  NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
				  nla_get_u32);
4342
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, 1, 65535,
4343
				  mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
4344 4345
				  nla_get_u16);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
4346 4347
				  dot11MeshHWMPconfirmationInterval,
				  1, 65535, mask,
4348
				  NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
4349
				  nla_get_u16);
4350 4351 4352 4353 4354 4355 4356 4357
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, power_mode,
				  NL80211_MESH_POWER_ACTIVE,
				  NL80211_MESH_POWER_MAX,
				  mask, NL80211_MESHCONF_POWER_MODE,
				  nla_get_u32);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshAwakeWindowDuration,
				  0, 65535, mask,
				  NL80211_MESHCONF_AWAKE_WINDOW, nla_get_u16);
4358 4359
	if (mask_out)
		*mask_out = mask;
4360

4361 4362 4363 4364 4365
	return 0;

#undef FILL_IN_MESH_PARAM_IF_SET
}

4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377
static int nl80211_parse_mesh_setup(struct genl_info *info,
				     struct mesh_setup *setup)
{
	struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1];

	if (!info->attrs[NL80211_ATTR_MESH_SETUP])
		return -EINVAL;
	if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX,
			     info->attrs[NL80211_ATTR_MESH_SETUP],
			     nl80211_mesh_setup_params_policy))
		return -EINVAL;

4378 4379 4380 4381 4382 4383
	if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])
		setup->sync_method =
		(nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ?
		 IEEE80211_SYNC_METHOD_VENDOR :
		 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET;

4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395
	if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])
		setup->path_sel_proto =
		(nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ?
		 IEEE80211_PATH_PROTOCOL_VENDOR :
		 IEEE80211_PATH_PROTOCOL_HWMP;

	if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])
		setup->path_metric =
		(nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ?
		 IEEE80211_PATH_METRIC_VENDOR :
		 IEEE80211_PATH_METRIC_AIRTIME;

4396 4397

	if (tb[NL80211_MESH_SETUP_IE]) {
4398
		struct nlattr *ieattr =
4399
			tb[NL80211_MESH_SETUP_IE];
4400 4401
		if (!is_valid_ie_attr(ieattr))
			return -EINVAL;
4402 4403
		setup->ie = nla_data(ieattr);
		setup->ie_len = nla_len(ieattr);
4404
	}
4405 4406
	setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
	setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
4407 4408 4409 4410

	return 0;
}

4411
static int nl80211_update_mesh_config(struct sk_buff *skb,
4412
				      struct genl_info *info)
4413 4414 4415
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
4416
	struct wireless_dev *wdev = dev->ieee80211_ptr;
4417 4418 4419 4420
	struct mesh_config cfg;
	u32 mask;
	int err;

4421 4422 4423
	if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;

4424
	if (!rdev->ops->update_mesh_config)
4425 4426
		return -EOPNOTSUPP;

4427
	err = nl80211_parse_mesh_config(info, &cfg, &mask);
4428 4429 4430
	if (err)
		return err;

4431 4432 4433 4434 4435
	wdev_lock(wdev);
	if (!wdev->mesh_id_len)
		err = -ENOLINK;

	if (!err)
4436
		err = rdev_update_mesh_config(rdev, dev, mask, &cfg);
4437 4438 4439 4440

	wdev_unlock(wdev);

	return err;
4441 4442
}

4443 4444
static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
{
4445
	const struct ieee80211_regdomain *regdom;
4446 4447 4448 4449 4450 4451
	struct sk_buff *msg;
	void *hdr = NULL;
	struct nlattr *nl_reg_rules;
	unsigned int i;
	int err = -EINVAL;

4452
	mutex_lock(&cfg80211_mutex);
4453 4454 4455 4456

	if (!cfg80211_regdomain)
		goto out;

4457
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
4458 4459 4460 4461 4462
	if (!msg) {
		err = -ENOBUFS;
		goto out;
	}

4463
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
4464 4465
			     NL80211_CMD_GET_REG);
	if (!hdr)
4466
		goto put_failure;
4467

4468 4469 4470 4471 4472
	if (reg_last_request_cell_base() &&
	    nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
			NL80211_USER_REG_HINT_CELL_BASE))
		goto nla_put_failure;

4473 4474 4475 4476 4477 4478 4479 4480
	rcu_read_lock();
	regdom = rcu_dereference(cfg80211_regdomain);

	if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, regdom->alpha2) ||
	    (regdom->dfs_region &&
	     nla_put_u8(msg, NL80211_ATTR_DFS_REGION, regdom->dfs_region)))
		goto nla_put_failure_rcu;

4481 4482
	nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
	if (!nl_reg_rules)
4483
		goto nla_put_failure_rcu;
4484

4485
	for (i = 0; i < regdom->n_reg_rules; i++) {
4486 4487 4488 4489 4490
		struct nlattr *nl_reg_rule;
		const struct ieee80211_reg_rule *reg_rule;
		const struct ieee80211_freq_range *freq_range;
		const struct ieee80211_power_rule *power_rule;

4491
		reg_rule = &regdom->reg_rules[i];
4492 4493 4494 4495 4496
		freq_range = &reg_rule->freq_range;
		power_rule = &reg_rule->power_rule;

		nl_reg_rule = nla_nest_start(msg, i);
		if (!nl_reg_rule)
4497
			goto nla_put_failure_rcu;
4498

4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510
		if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS,
				reg_rule->flags) ||
		    nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START,
				freq_range->start_freq_khz) ||
		    nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END,
				freq_range->end_freq_khz) ||
		    nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
				freq_range->max_bandwidth_khz) ||
		    nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
				power_rule->max_antenna_gain) ||
		    nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
				power_rule->max_eirp))
4511
			goto nla_put_failure_rcu;
4512 4513 4514

		nla_nest_end(msg, nl_reg_rule);
	}
4515
	rcu_read_unlock();
4516 4517 4518 4519

	nla_nest_end(msg, nl_reg_rules);

	genlmsg_end(msg, hdr);
J
Johannes Berg 已提交
4520
	err = genlmsg_reply(msg, info);
4521 4522
	goto out;

4523 4524
nla_put_failure_rcu:
	rcu_read_unlock();
4525 4526
nla_put_failure:
	genlmsg_cancel(msg, hdr);
4527
put_failure:
Y
Yuri Ershov 已提交
4528
	nlmsg_free(msg);
4529 4530
	err = -EMSGSIZE;
out:
4531
	mutex_unlock(&cfg80211_mutex);
4532 4533 4534
	return err;
}

4535 4536 4537 4538 4539 4540 4541
static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
{
	struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
	struct nlattr *nl_reg_rule;
	char *alpha2 = NULL;
	int rem_reg_rules = 0, r = 0;
	u32 num_rules = 0, rule_idx = 0, size_of_regd;
4542
	u8 dfs_region = 0;
4543 4544 4545 4546 4547 4548 4549 4550 4551 4552
	struct ieee80211_regdomain *rd = NULL;

	if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_REG_RULES])
		return -EINVAL;

	alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);

4553 4554 4555
	if (info->attrs[NL80211_ATTR_DFS_REGION])
		dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);

4556
	nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
J
Johannes Berg 已提交
4557
			    rem_reg_rules) {
4558 4559
		num_rules++;
		if (num_rules > NL80211_MAX_SUPP_REG_RULES)
4560
			return -EINVAL;
4561 4562 4563
	}

	size_of_regd = sizeof(struct ieee80211_regdomain) +
J
Johannes Berg 已提交
4564
		       num_rules * sizeof(struct ieee80211_reg_rule);
4565 4566

	rd = kzalloc(size_of_regd, GFP_KERNEL);
4567 4568
	if (!rd)
		return -ENOMEM;
4569 4570 4571 4572 4573

	rd->n_reg_rules = num_rules;
	rd->alpha2[0] = alpha2[0];
	rd->alpha2[1] = alpha2[1];

4574 4575 4576 4577 4578 4579 4580
	/*
	 * Disable DFS master mode if the DFS region was
	 * not supported or known on this kernel.
	 */
	if (reg_supported_dfs_region(dfs_region))
		rd->dfs_region = dfs_region;

4581
	nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
J
Johannes Berg 已提交
4582
			    rem_reg_rules) {
4583
		nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
J
Johannes Berg 已提交
4584 4585
			  nla_data(nl_reg_rule), nla_len(nl_reg_rule),
			  reg_rule_policy);
4586 4587 4588 4589 4590 4591
		r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
		if (r)
			goto bad_reg;

		rule_idx++;

4592 4593
		if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
			r = -EINVAL;
4594
			goto bad_reg;
4595
		}
4596 4597
	}

4598 4599
	mutex_lock(&cfg80211_mutex);

4600
	r = set_regdom(rd);
4601
	/* set_regdom took ownership */
J
Johannes Berg 已提交
4602
	rd = NULL;
4603
	mutex_unlock(&cfg80211_mutex);
4604

4605
 bad_reg:
4606
	kfree(rd);
4607
	return r;
4608 4609
}

4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634
static int validate_scan_freqs(struct nlattr *freqs)
{
	struct nlattr *attr1, *attr2;
	int n_channels = 0, tmp1, tmp2;

	nla_for_each_nested(attr1, freqs, tmp1) {
		n_channels++;
		/*
		 * Some hardware has a limited channel list for
		 * scanning, and it is pretty much nonsensical
		 * to scan for a channel twice, so disallow that
		 * and don't require drivers to check that the
		 * channel list they get isn't longer than what
		 * they can scan, as long as they can scan all
		 * the channels they registered at once.
		 */
		nla_for_each_nested(attr2, freqs, tmp2)
			if (attr1 != attr2 &&
			    nla_get_u32(attr1) == nla_get_u32(attr2))
				return 0;
	}

	return n_channels;
}

4635 4636
static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
{
4637
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
J
Johannes Berg 已提交
4638
	struct wireless_dev *wdev = info->user_ptr[1];
4639 4640 4641
	struct cfg80211_scan_request *request;
	struct nlattr *attr;
	struct wiphy *wiphy;
4642
	int err, tmp, n_ssids = 0, n_channels, i;
4643
	size_t ie_len;
4644

4645 4646 4647
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

4648
	wiphy = &rdev->wiphy;
4649

4650 4651
	if (!rdev->ops->scan)
		return -EOPNOTSUPP;
4652

4653 4654
	if (rdev->scan_req)
		return -EBUSY;
4655 4656

	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
4657 4658
		n_channels = validate_scan_freqs(
				info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
4659 4660
		if (!n_channels)
			return -EINVAL;
4661
	} else {
4662
		enum ieee80211_band band;
4663 4664
		n_channels = 0;

4665 4666 4667 4668 4669 4670 4671 4672 4673
		for (band = 0; band < IEEE80211_NUM_BANDS; band++)
			if (wiphy->bands[band])
				n_channels += wiphy->bands[band]->n_channels;
	}

	if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
			n_ssids++;

4674 4675
	if (n_ssids > wiphy->max_scan_ssids)
		return -EINVAL;
4676

4677 4678 4679 4680 4681
	if (info->attrs[NL80211_ATTR_IE])
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
	else
		ie_len = 0;

4682 4683
	if (ie_len > wiphy->max_scan_ie_len)
		return -EINVAL;
4684

4685
	request = kzalloc(sizeof(*request)
4686 4687
			+ sizeof(*request->ssids) * n_ssids
			+ sizeof(*request->channels) * n_channels
4688
			+ ie_len, GFP_KERNEL);
4689 4690
	if (!request)
		return -ENOMEM;
4691 4692

	if (n_ssids)
4693
		request->ssids = (void *)&request->channels[n_channels];
4694
	request->n_ssids = n_ssids;
4695 4696 4697 4698 4699 4700
	if (ie_len) {
		if (request->ssids)
			request->ie = (void *)(request->ssids + n_ssids);
		else
			request->ie = (void *)(request->channels + n_channels);
	}
4701

J
Johannes Berg 已提交
4702
	i = 0;
4703 4704 4705
	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
		/* user specified, bail out if channel not found */
		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
J
Johannes Berg 已提交
4706 4707 4708 4709 4710
			struct ieee80211_channel *chan;

			chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));

			if (!chan) {
4711 4712 4713
				err = -EINVAL;
				goto out_free;
			}
J
Johannes Berg 已提交
4714 4715 4716 4717 4718 4719

			/* ignore disabled channels */
			if (chan->flags & IEEE80211_CHAN_DISABLED)
				continue;

			request->channels[i] = chan;
4720 4721 4722
			i++;
		}
	} else {
4723 4724
		enum ieee80211_band band;

4725 4726 4727 4728 4729 4730
		/* all channels */
		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
			int j;
			if (!wiphy->bands[band])
				continue;
			for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
J
Johannes Berg 已提交
4731 4732 4733 4734 4735 4736 4737 4738
				struct ieee80211_channel *chan;

				chan = &wiphy->bands[band]->channels[j];

				if (chan->flags & IEEE80211_CHAN_DISABLED)
					continue;

				request->channels[i] = chan;
4739 4740 4741 4742 4743
				i++;
			}
		}
	}

J
Johannes Berg 已提交
4744 4745 4746 4747 4748 4749 4750
	if (!i) {
		err = -EINVAL;
		goto out_free;
	}

	request->n_channels = i;

4751 4752 4753
	i = 0;
	if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
4754
			if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
4755 4756 4757
				err = -EINVAL;
				goto out_free;
			}
4758
			request->ssids[i].ssid_len = nla_len(attr);
4759 4760 4761 4762 4763
			memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
			i++;
		}
	}

4764 4765
	if (info->attrs[NL80211_ATTR_IE]) {
		request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
4766 4767
		memcpy((void *)request->ie,
		       nla_data(info->attrs[NL80211_ATTR_IE]),
4768 4769 4770
		       request->ie_len);
	}

4771
	for (i = 0; i < IEEE80211_NUM_BANDS; i++)
4772 4773 4774
		if (wiphy->bands[i])
			request->rates[i] =
				(1 << wiphy->bands[i]->n_bitrates) - 1;
4775 4776 4777 4778 4779 4780 4781

	if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) {
		nla_for_each_nested(attr,
				    info->attrs[NL80211_ATTR_SCAN_SUPP_RATES],
				    tmp) {
			enum ieee80211_band band = nla_type(attr);

4782
			if (band < 0 || band >= IEEE80211_NUM_BANDS) {
4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794
				err = -EINVAL;
				goto out_free;
			}
			err = ieee80211_get_ratemask(wiphy->bands[band],
						     nla_data(attr),
						     nla_len(attr),
						     &request->rates[band]);
			if (err)
				goto out_free;
		}
	}

4795
	if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
4796 4797
		request->flags = nla_get_u32(
			info->attrs[NL80211_ATTR_SCAN_FLAGS]);
4798 4799 4800 4801
		if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
		     !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
		    ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
		     !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
4802 4803 4804 4805
			err = -EOPNOTSUPP;
			goto out_free;
		}
	}
4806

4807 4808 4809
	request->no_cck =
		nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);

J
Johannes Berg 已提交
4810
	request->wdev = wdev;
4811
	request->wiphy = &rdev->wiphy;
4812
	request->scan_start = jiffies;
4813

4814
	rdev->scan_req = request;
4815
	err = rdev_scan(rdev, request);
4816

4817
	if (!err) {
J
Johannes Berg 已提交
4818 4819 4820
		nl80211_send_scan_start(rdev, wdev);
		if (wdev->netdev)
			dev_hold(wdev->netdev);
4821
	} else {
4822
 out_free:
4823
		rdev->scan_req = NULL;
4824 4825
		kfree(request);
	}
J
Johannes Berg 已提交
4826

4827 4828 4829
	return err;
}

4830 4831 4832 4833 4834 4835 4836 4837
static int nl80211_start_sched_scan(struct sk_buff *skb,
				    struct genl_info *info)
{
	struct cfg80211_sched_scan_request *request;
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct nlattr *attr;
	struct wiphy *wiphy;
4838
	int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i;
4839
	u32 interval;
4840 4841
	enum ieee80211_band band;
	size_t ie_len;
4842
	struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
4843 4844 4845 4846 4847 4848 4849 4850

	if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
	    !rdev->ops->sched_scan_start)
		return -EOPNOTSUPP;

	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

4851 4852 4853 4854 4855 4856 4857
	if (!info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
		return -EINVAL;

	interval = nla_get_u32(info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]);
	if (interval == 0)
		return -EINVAL;

4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877
	wiphy = &rdev->wiphy;

	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
		n_channels = validate_scan_freqs(
				info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
		if (!n_channels)
			return -EINVAL;
	} else {
		n_channels = 0;

		for (band = 0; band < IEEE80211_NUM_BANDS; band++)
			if (wiphy->bands[band])
				n_channels += wiphy->bands[band]->n_channels;
	}

	if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
				    tmp)
			n_ssids++;

4878
	if (n_ssids > wiphy->max_sched_scan_ssids)
4879 4880
		return -EINVAL;

4881 4882 4883 4884 4885 4886 4887 4888 4889
	if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH])
		nla_for_each_nested(attr,
				    info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
				    tmp)
			n_match_sets++;

	if (n_match_sets > wiphy->max_match_sets)
		return -EINVAL;

4890 4891 4892 4893 4894
	if (info->attrs[NL80211_ATTR_IE])
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
	else
		ie_len = 0;

4895
	if (ie_len > wiphy->max_sched_scan_ie_len)
4896 4897
		return -EINVAL;

4898 4899 4900 4901 4902 4903 4904
	mutex_lock(&rdev->sched_scan_mtx);

	if (rdev->sched_scan_req) {
		err = -EINPROGRESS;
		goto out;
	}

4905
	request = kzalloc(sizeof(*request)
4906
			+ sizeof(*request->ssids) * n_ssids
4907
			+ sizeof(*request->match_sets) * n_match_sets
4908
			+ sizeof(*request->channels) * n_channels
4909
			+ ie_len, GFP_KERNEL);
4910 4911 4912 4913
	if (!request) {
		err = -ENOMEM;
		goto out;
	}
4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924

	if (n_ssids)
		request->ssids = (void *)&request->channels[n_channels];
	request->n_ssids = n_ssids;
	if (ie_len) {
		if (request->ssids)
			request->ie = (void *)(request->ssids + n_ssids);
		else
			request->ie = (void *)(request->channels + n_channels);
	}

4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936
	if (n_match_sets) {
		if (request->ie)
			request->match_sets = (void *)(request->ie + ie_len);
		else if (request->ssids)
			request->match_sets =
				(void *)(request->ssids + n_ssids);
		else
			request->match_sets =
				(void *)(request->channels + n_channels);
	}
	request->n_match_sets = n_match_sets;

4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989
	i = 0;
	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
		/* user specified, bail out if channel not found */
		nla_for_each_nested(attr,
				    info->attrs[NL80211_ATTR_SCAN_FREQUENCIES],
				    tmp) {
			struct ieee80211_channel *chan;

			chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));

			if (!chan) {
				err = -EINVAL;
				goto out_free;
			}

			/* ignore disabled channels */
			if (chan->flags & IEEE80211_CHAN_DISABLED)
				continue;

			request->channels[i] = chan;
			i++;
		}
	} else {
		/* all channels */
		for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
			int j;
			if (!wiphy->bands[band])
				continue;
			for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
				struct ieee80211_channel *chan;

				chan = &wiphy->bands[band]->channels[j];

				if (chan->flags & IEEE80211_CHAN_DISABLED)
					continue;

				request->channels[i] = chan;
				i++;
			}
		}
	}

	if (!i) {
		err = -EINVAL;
		goto out_free;
	}

	request->n_channels = i;

	i = 0;
	if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
				    tmp) {
4990
			if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
4991 4992 4993
				err = -EINVAL;
				goto out_free;
			}
4994
			request->ssids[i].ssid_len = nla_len(attr);
4995 4996 4997 4998 4999 5000
			memcpy(request->ssids[i].ssid, nla_data(attr),
			       nla_len(attr));
			i++;
		}
	}

5001 5002 5003 5004 5005
	i = 0;
	if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
		nla_for_each_nested(attr,
				    info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
				    tmp) {
5006
			struct nlattr *ssid, *rssi;
5007 5008 5009 5010

			nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
				  nla_data(attr), nla_len(attr),
				  nl80211_match_policy);
5011
			ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
5012 5013 5014 5015 5016 5017 5018 5019 5020 5021
			if (ssid) {
				if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) {
					err = -EINVAL;
					goto out_free;
				}
				memcpy(request->match_sets[i].ssid.ssid,
				       nla_data(ssid), nla_len(ssid));
				request->match_sets[i].ssid.ssid_len =
					nla_len(ssid);
			}
5022 5023 5024 5025 5026 5027
			rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
			if (rssi)
				request->rssi_thold = nla_get_u32(rssi);
			else
				request->rssi_thold =
						   NL80211_SCAN_RSSI_THOLD_OFF;
5028 5029 5030 5031
			i++;
		}
	}

5032 5033 5034 5035 5036 5037 5038
	if (info->attrs[NL80211_ATTR_IE]) {
		request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
		memcpy((void *)request->ie,
		       nla_data(info->attrs[NL80211_ATTR_IE]),
		       request->ie_len);
	}

5039
	if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
5040 5041
		request->flags = nla_get_u32(
			info->attrs[NL80211_ATTR_SCAN_FLAGS]);
5042 5043 5044 5045
		if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
		     !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
		    ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
		     !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
5046 5047 5048 5049
			err = -EOPNOTSUPP;
			goto out_free;
		}
	}
5050

5051 5052
	request->dev = dev;
	request->wiphy = &rdev->wiphy;
5053
	request->interval = interval;
5054
	request->scan_start = jiffies;
5055

5056
	err = rdev_sched_scan_start(rdev, dev, request);
5057 5058 5059 5060 5061 5062 5063 5064 5065 5066
	if (!err) {
		rdev->sched_scan_req = request;
		nl80211_send_sched_scan(rdev, dev,
					NL80211_CMD_START_SCHED_SCAN);
		goto out;
	}

out_free:
	kfree(request);
out:
5067
	mutex_unlock(&rdev->sched_scan_mtx);
5068 5069 5070 5071 5072 5073 5074
	return err;
}

static int nl80211_stop_sched_scan(struct sk_buff *skb,
				   struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5075
	int err;
5076 5077 5078 5079 5080

	if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
	    !rdev->ops->sched_scan_stop)
		return -EOPNOTSUPP;

5081 5082 5083 5084 5085
	mutex_lock(&rdev->sched_scan_mtx);
	err = __cfg80211_stop_sched_scan(rdev, false);
	mutex_unlock(&rdev->sched_scan_mtx);

	return err;
5086 5087
}

5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135
static int nl80211_start_radar_detection(struct sk_buff *skb,
					 struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_chan_def chandef;
	int err;

	err = nl80211_parse_chandef(rdev, info, &chandef);
	if (err)
		return err;

	if (wdev->cac_started)
		return -EBUSY;

	err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef);
	if (err < 0)
		return err;

	if (err == 0)
		return -EINVAL;

	if (chandef.chan->dfs_state != NL80211_DFS_USABLE)
		return -EINVAL;

	if (!rdev->ops->start_radar_detection)
		return -EOPNOTSUPP;

	mutex_lock(&rdev->devlist_mtx);
	err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
					   chandef.chan, CHAN_MODE_SHARED,
					   BIT(chandef.width));
	if (err)
		goto err_locked;

	err = rdev->ops->start_radar_detection(&rdev->wiphy, dev, &chandef);
	if (!err) {
		wdev->channel = chandef.chan;
		wdev->cac_started = true;
		wdev->cac_start_time = jiffies;
	}
err_locked:
	mutex_unlock(&rdev->devlist_mtx);

	return err;
}

5136 5137
static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
			    u32 seq, int flags,
5138
			    struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
5139 5140
			    struct wireless_dev *wdev,
			    struct cfg80211_internal_bss *intbss)
5141
{
J
Johannes Berg 已提交
5142
	struct cfg80211_bss *res = &intbss->pub;
5143
	const struct cfg80211_bss_ies *ies;
5144 5145
	void *hdr;
	struct nlattr *bss;
J
Johannes Berg 已提交
5146
	bool tsf = false;
J
Johannes Berg 已提交
5147 5148

	ASSERT_WDEV_LOCK(wdev);
5149

5150
	hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
5151 5152 5153 5154
			     NL80211_CMD_NEW_SCAN_RESULTS);
	if (!hdr)
		return -1;

5155 5156
	genl_dump_check_consistent(cb, hdr, &nl80211_fam);

5157 5158 5159
	if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
		goto nla_put_failure;
5160 5161 5162 5163

	bss = nla_nest_start(msg, NL80211_ATTR_BSS);
	if (!bss)
		goto nla_put_failure;
5164
	if ((!is_zero_ether_addr(res->bssid) &&
5165
	     nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
5166
		goto nla_put_failure;
5167 5168 5169

	rcu_read_lock();
	ies = rcu_dereference(res->ies);
J
Johannes Berg 已提交
5170 5171 5172 5173 5174 5175 5176
	if (ies) {
		if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
			goto fail_unlock_rcu;
		tsf = true;
		if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
					ies->len, ies->data))
			goto fail_unlock_rcu;
5177 5178
	}
	ies = rcu_dereference(res->beacon_ies);
J
Johannes Berg 已提交
5179 5180 5181 5182 5183 5184
	if (ies) {
		if (!tsf && nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
			goto fail_unlock_rcu;
		if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
					ies->len, ies->data))
			goto fail_unlock_rcu;
5185 5186 5187
	}
	rcu_read_unlock();

5188 5189 5190 5191 5192 5193 5194 5195
	if (res->beacon_interval &&
	    nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
		goto nla_put_failure;
	if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
	    nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
	    nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
			jiffies_to_msecs(jiffies - intbss->ts)))
		goto nla_put_failure;
5196

J
Johannes Berg 已提交
5197
	switch (rdev->wiphy.signal_type) {
5198
	case CFG80211_SIGNAL_TYPE_MBM:
5199 5200
		if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
			goto nla_put_failure;
5201 5202
		break;
	case CFG80211_SIGNAL_TYPE_UNSPEC:
5203 5204
		if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
			goto nla_put_failure;
5205 5206 5207 5208 5209
		break;
	default:
		break;
	}

J
Johannes Berg 已提交
5210
	switch (wdev->iftype) {
5211
	case NL80211_IFTYPE_P2P_CLIENT:
J
Johannes Berg 已提交
5212
	case NL80211_IFTYPE_STATION:
5213 5214 5215 5216
		if (intbss == wdev->current_bss &&
		    nla_put_u32(msg, NL80211_BSS_STATUS,
				NL80211_BSS_STATUS_ASSOCIATED))
			goto nla_put_failure;
J
Johannes Berg 已提交
5217 5218
		break;
	case NL80211_IFTYPE_ADHOC:
5219 5220 5221 5222
		if (intbss == wdev->current_bss &&
		    nla_put_u32(msg, NL80211_BSS_STATUS,
				NL80211_BSS_STATUS_IBSS_JOINED))
			goto nla_put_failure;
J
Johannes Berg 已提交
5223 5224 5225 5226 5227
		break;
	default:
		break;
	}

5228 5229 5230 5231
	nla_nest_end(msg, bss);

	return genlmsg_end(msg, hdr);

J
Johannes Berg 已提交
5232 5233
 fail_unlock_rcu:
	rcu_read_unlock();
5234 5235 5236 5237 5238 5239 5240 5241
 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
}

static int nl80211_dump_scan(struct sk_buff *skb,
			     struct netlink_callback *cb)
{
J
Johannes Berg 已提交
5242 5243
	struct cfg80211_registered_device *rdev;
	struct net_device *dev;
5244
	struct cfg80211_internal_bss *scan;
J
Johannes Berg 已提交
5245
	struct wireless_dev *wdev;
5246 5247 5248
	int start = cb->args[1], idx = 0;
	int err;

5249 5250 5251
	err = nl80211_prepare_netdev_dump(skb, cb, &rdev, &dev);
	if (err)
		return err;
5252

J
Johannes Berg 已提交
5253
	wdev = dev->ieee80211_ptr;
5254

J
Johannes Berg 已提交
5255 5256 5257 5258
	wdev_lock(wdev);
	spin_lock_bh(&rdev->bss_lock);
	cfg80211_bss_expire(rdev);

5259 5260
	cb->seq = rdev->bss_generation;

J
Johannes Berg 已提交
5261
	list_for_each_entry(scan, &rdev->bss_list, list) {
5262 5263
		if (++idx <= start)
			continue;
5264
		if (nl80211_send_bss(skb, cb,
5265
				cb->nlh->nlmsg_seq, NLM_F_MULTI,
J
Johannes Berg 已提交
5266
				rdev, wdev, scan) < 0) {
5267
			idx--;
5268
			break;
5269 5270 5271
		}
	}

J
Johannes Berg 已提交
5272 5273
	spin_unlock_bh(&rdev->bss_lock);
	wdev_unlock(wdev);
5274 5275

	cb->args[1] = idx;
5276
	nl80211_finish_netdev_dump(rdev);
5277

5278
	return skb->len;
5279 5280
}

5281
static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
5282 5283 5284 5285 5286 5287
				int flags, struct net_device *dev,
				struct survey_info *survey)
{
	void *hdr;
	struct nlattr *infoattr;

5288
	hdr = nl80211hdr_put(msg, portid, seq, flags,
5289 5290 5291 5292
			     NL80211_CMD_NEW_SURVEY_RESULTS);
	if (!hdr)
		return -ENOMEM;

5293 5294
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
		goto nla_put_failure;
5295 5296 5297 5298 5299

	infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
	if (!infoattr)
		goto nla_put_failure;

5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329
	if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
			survey->channel->center_freq))
		goto nla_put_failure;

	if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
	    nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
		goto nla_put_failure;
	if ((survey->filled & SURVEY_INFO_IN_USE) &&
	    nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
		goto nla_put_failure;
	if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
	    nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
			survey->channel_time))
		goto nla_put_failure;
	if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
	    nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
			survey->channel_time_busy))
		goto nla_put_failure;
	if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
	    nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
			survey->channel_time_ext_busy))
		goto nla_put_failure;
	if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
	    nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
			survey->channel_time_rx))
		goto nla_put_failure;
	if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
	    nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
			survey->channel_time_tx))
		goto nla_put_failure;
5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348

	nla_nest_end(msg, infoattr);

	return genlmsg_end(msg, hdr);

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
}

static int nl80211_dump_survey(struct sk_buff *skb,
			struct netlink_callback *cb)
{
	struct survey_info survey;
	struct cfg80211_registered_device *dev;
	struct net_device *netdev;
	int survey_idx = cb->args[1];
	int res;

5349 5350 5351
	res = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev);
	if (res)
		return res;
5352 5353 5354 5355 5356 5357 5358

	if (!dev->ops->dump_survey) {
		res = -EOPNOTSUPP;
		goto out_err;
	}

	while (1) {
5359 5360
		struct ieee80211_channel *chan;

5361
		res = rdev_dump_survey(dev, netdev, survey_idx, &survey);
5362 5363 5364 5365 5366
		if (res == -ENOENT)
			break;
		if (res)
			goto out_err;

5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379
		/* Survey without a channel doesn't make sense */
		if (!survey.channel) {
			res = -EINVAL;
			goto out;
		}

		chan = ieee80211_get_channel(&dev->wiphy,
					     survey.channel->center_freq);
		if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
			survey_idx++;
			continue;
		}

5380
		if (nl80211_send_survey(skb,
5381
				NETLINK_CB(cb->skb).portid,
5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392
				cb->nlh->nlmsg_seq, NLM_F_MULTI,
				netdev,
				&survey) < 0)
			goto out;
		survey_idx++;
	}

 out:
	cb->args[1] = survey_idx;
	res = skb->len;
 out_err:
5393
	nl80211_finish_netdev_dump(dev);
5394 5395 5396
	return res;
}

S
Samuel Ortiz 已提交
5397 5398 5399 5400 5401 5402
static bool nl80211_valid_wpa_versions(u32 wpa_versions)
{
	return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
				  NL80211_WPA_VERSION_2));
}

5403 5404
static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
{
5405 5406
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5407
	struct ieee80211_channel *chan;
5408 5409
	const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
	int err, ssid_len, ie_len = 0, sae_data_len = 0;
J
Johannes Berg 已提交
5410
	enum nl80211_auth_type auth_type;
J
Johannes Berg 已提交
5411
	struct key_parse key;
5412
	bool local_state_change;
5413

5414 5415 5416 5417 5418 5419
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

5420 5421 5422
	if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
		return -EINVAL;

J
Johannes Berg 已提交
5423 5424 5425 5426 5427 5428
	if (!info->attrs[NL80211_ATTR_SSID])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
		return -EINVAL;

J
Johannes Berg 已提交
5429 5430 5431 5432 5433
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;

	if (key.idx >= 0) {
5434 5435
		if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
			return -EINVAL;
J
Johannes Berg 已提交
5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449
		if (!key.p.key || !key.p.key_len)
			return -EINVAL;
		if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
		     key.p.key_len != WLAN_KEY_LEN_WEP40) &&
		    (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
		     key.p.key_len != WLAN_KEY_LEN_WEP104))
			return -EINVAL;
		if (key.idx > 4)
			return -EINVAL;
	} else {
		key.p.key_len = 0;
		key.p.key = NULL;
	}

5450 5451 5452 5453 5454 5455 5456 5457 5458
	if (key.idx >= 0) {
		int i;
		bool ok = false;
		for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
			if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
				ok = true;
				break;
			}
		}
5459 5460
		if (!ok)
			return -EINVAL;
5461 5462
	}

5463 5464
	if (!rdev->ops->auth)
		return -EOPNOTSUPP;
5465

5466
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5467 5468
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5469

J
Johannes Berg 已提交
5470
	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
5471
	chan = ieee80211_get_channel(&rdev->wiphy,
J
Johannes Berg 已提交
5472
		nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
5473 5474
	if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
		return -EINVAL;
5475

J
Johannes Berg 已提交
5476 5477
	ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
	ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
5478 5479

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5480 5481
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5482 5483
	}

J
Johannes Berg 已提交
5484
	auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
5485
	if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
5486
		return -EINVAL;
5487

5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501
	if (auth_type == NL80211_AUTHTYPE_SAE &&
	    !info->attrs[NL80211_ATTR_SAE_DATA])
		return -EINVAL;

	if (info->attrs[NL80211_ATTR_SAE_DATA]) {
		if (auth_type != NL80211_AUTHTYPE_SAE)
			return -EINVAL;
		sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
		sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
		/* need to include at least Auth Transaction and Status Code */
		if (sae_data_len < 4)
			return -EINVAL;
	}

5502 5503
	local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];

5504 5505 5506 5507 5508 5509 5510
	/*
	 * Since we no longer track auth state, ignore
	 * requests to only change local state.
	 */
	if (local_state_change)
		return 0;

5511 5512
	return cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
				  ssid, ssid_len, ie, ie_len,
5513 5514
				  key.p.key, key.p.key_len, key.idx,
				  sae_data, sae_data_len);
5515 5516
}

5517 5518
static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
				   struct genl_info *info,
5519 5520
				   struct cfg80211_crypto_settings *settings,
				   int cipher_limit)
S
Samuel Ortiz 已提交
5521
{
5522 5523
	memset(settings, 0, sizeof(*settings));

S
Samuel Ortiz 已提交
5524 5525
	settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];

5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538
	if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
		u16 proto;
		proto = nla_get_u16(
			info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
		settings->control_port_ethertype = cpu_to_be16(proto);
		if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
		    proto != ETH_P_PAE)
			return -EINVAL;
		if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
			settings->control_port_no_encrypt = true;
	} else
		settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);

S
Samuel Ortiz 已提交
5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549
	if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
		void *data;
		int len, i;

		data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
		len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
		settings->n_ciphers_pairwise = len / sizeof(u32);

		if (len % sizeof(u32))
			return -EINVAL;

5550
		if (settings->n_ciphers_pairwise > cipher_limit)
S
Samuel Ortiz 已提交
5551 5552 5553 5554 5555
			return -EINVAL;

		memcpy(settings->ciphers_pairwise, data, len);

		for (i = 0; i < settings->n_ciphers_pairwise; i++)
5556 5557
			if (!cfg80211_supported_cipher_suite(
					&rdev->wiphy,
S
Samuel Ortiz 已提交
5558 5559 5560 5561 5562 5563 5564
					settings->ciphers_pairwise[i]))
				return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
		settings->cipher_group =
			nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
5565 5566
		if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
						     settings->cipher_group))
S
Samuel Ortiz 已提交
5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578
			return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
		settings->wpa_versions =
			nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
		if (!nl80211_valid_wpa_versions(settings->wpa_versions))
			return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
		void *data;
5579
		int len;
S
Samuel Ortiz 已提交
5580 5581 5582 5583 5584 5585 5586 5587

		data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
		len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
		settings->n_akm_suites = len / sizeof(u32);

		if (len % sizeof(u32))
			return -EINVAL;

5588 5589 5590
		if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
			return -EINVAL;

S
Samuel Ortiz 已提交
5591 5592 5593 5594 5595 5596
		memcpy(settings->akm_suites, data, len);
	}

	return 0;
}

5597 5598
static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
{
5599 5600
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5601
	struct cfg80211_crypto_settings crypto;
5602
	struct ieee80211_channel *chan;
5603
	const u8 *bssid, *ssid, *ie = NULL, *prev_bssid = NULL;
J
Johannes Berg 已提交
5604 5605
	int err, ssid_len, ie_len = 0;
	bool use_mfp = false;
5606 5607 5608
	u32 flags = 0;
	struct ieee80211_ht_cap *ht_capa = NULL;
	struct ieee80211_ht_cap *ht_capa_mask = NULL;
5609

5610 5611 5612 5613
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MAC] ||
J
Johannes Berg 已提交
5614 5615
	    !info->attrs[NL80211_ATTR_SSID] ||
	    !info->attrs[NL80211_ATTR_WIPHY_FREQ])
5616 5617
		return -EINVAL;

5618 5619
	if (!rdev->ops->assoc)
		return -EOPNOTSUPP;
5620

5621
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5622 5623
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5624

J
Johannes Berg 已提交
5625
	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
5626

J
Johannes Berg 已提交
5627 5628
	chan = ieee80211_get_channel(&rdev->wiphy,
		nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
5629 5630
	if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
		return -EINVAL;
5631

J
Johannes Berg 已提交
5632 5633
	ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
	ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
5634 5635

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5636 5637
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5638 5639
	}

5640
	if (info->attrs[NL80211_ATTR_USE_MFP]) {
5641
		enum nl80211_mfp mfp =
5642
			nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
5643
		if (mfp == NL80211_MFP_REQUIRED)
J
Johannes Berg 已提交
5644
			use_mfp = true;
5645 5646
		else if (mfp != NL80211_MFP_NO)
			return -EINVAL;
5647 5648
	}

5649 5650 5651
	if (info->attrs[NL80211_ATTR_PREV_BSSID])
		prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);

5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664
	if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
		flags |= ASSOC_REQ_DISABLE_HT;

	if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
		ht_capa_mask =
			nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]);

	if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
		if (!ht_capa_mask)
			return -EINVAL;
		ht_capa = nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
	}

5665
	err = nl80211_crypto_settings(rdev, info, &crypto, 1);
S
Samuel Ortiz 已提交
5666
	if (!err)
5667 5668
		err = cfg80211_mlme_assoc(rdev, dev, chan, bssid, prev_bssid,
					  ssid, ssid_len, ie, ie_len, use_mfp,
5669 5670
					  &crypto, flags, ht_capa,
					  ht_capa_mask);
5671 5672 5673 5674 5675 5676

	return err;
}

static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
{
5677 5678
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5679
	const u8 *ie = NULL, *bssid;
5680
	int ie_len = 0;
J
Johannes Berg 已提交
5681
	u16 reason_code;
5682
	bool local_state_change;
5683

5684 5685 5686 5687 5688 5689 5690 5691 5692
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_REASON_CODE])
		return -EINVAL;

5693 5694
	if (!rdev->ops->deauth)
		return -EOPNOTSUPP;
5695

5696
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5697 5698
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5699

J
Johannes Berg 已提交
5700
	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
5701

J
Johannes Berg 已提交
5702 5703
	reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
	if (reason_code == 0) {
5704
		/* Reason Code 0 is reserved */
5705
		return -EINVAL;
5706
	}
5707 5708

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5709 5710
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5711 5712
	}

5713 5714
	local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];

5715 5716
	return cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
				    local_state_change);
5717 5718 5719 5720
}

static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
{
5721 5722
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5723
	const u8 *ie = NULL, *bssid;
5724
	int ie_len = 0;
J
Johannes Berg 已提交
5725
	u16 reason_code;
5726
	bool local_state_change;
5727

5728 5729 5730 5731 5732 5733 5734 5735 5736
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_REASON_CODE])
		return -EINVAL;

5737 5738
	if (!rdev->ops->disassoc)
		return -EOPNOTSUPP;
5739

5740
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5741 5742
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5743

J
Johannes Berg 已提交
5744
	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
5745

J
Johannes Berg 已提交
5746 5747
	reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
	if (reason_code == 0) {
5748
		/* Reason Code 0 is reserved */
5749
		return -EINVAL;
5750
	}
5751 5752

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5753 5754
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5755 5756
	}

5757 5758
	local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];

5759 5760
	return cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
				      local_state_change);
5761 5762
}

5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790
static bool
nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
			 int mcast_rate[IEEE80211_NUM_BANDS],
			 int rateval)
{
	struct wiphy *wiphy = &rdev->wiphy;
	bool found = false;
	int band, i;

	for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
		struct ieee80211_supported_band *sband;

		sband = wiphy->bands[band];
		if (!sband)
			continue;

		for (i = 0; i < sband->n_bitrates; i++) {
			if (sband->bitrates[i].bitrate == rateval) {
				mcast_rate[band] = i + 1;
				found = true;
				break;
			}
		}
	}

	return found;
}

J
Johannes Berg 已提交
5791 5792
static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
{
5793 5794
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5795 5796
	struct cfg80211_ibss_params ibss;
	struct wiphy *wiphy;
J
Johannes Berg 已提交
5797
	struct cfg80211_cached_keys *connkeys = NULL;
J
Johannes Berg 已提交
5798 5799
	int err;

5800 5801
	memset(&ibss, 0, sizeof(ibss));

J
Johannes Berg 已提交
5802 5803 5804
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

5805
	if (!info->attrs[NL80211_ATTR_SSID] ||
J
Johannes Berg 已提交
5806 5807 5808
	    !nla_len(info->attrs[NL80211_ATTR_SSID]))
		return -EINVAL;

5809 5810 5811 5812 5813 5814 5815 5816 5817
	ibss.beacon_interval = 100;

	if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
		ibss.beacon_interval =
			nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
		if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
			return -EINVAL;
	}

5818 5819
	if (!rdev->ops->join_ibss)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5820

5821 5822
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5823

5824
	wiphy = &rdev->wiphy;
J
Johannes Berg 已提交
5825

J
Johannes Berg 已提交
5826
	if (info->attrs[NL80211_ATTR_MAC]) {
J
Johannes Berg 已提交
5827
		ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
J
Johannes Berg 已提交
5828 5829 5830 5831

		if (!is_valid_ether_addr(ibss.bssid))
			return -EINVAL;
	}
J
Johannes Berg 已提交
5832 5833 5834 5835 5836 5837 5838 5839
	ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
	ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);

	if (info->attrs[NL80211_ATTR_IE]) {
		ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
	}

5840 5841 5842
	err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
	if (err)
		return err;
J
Johannes Berg 已提交
5843

5844
	if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef))
5845 5846
		return -EINVAL;

5847 5848 5849 5850
	if (ibss.chandef.width > NL80211_CHAN_WIDTH_40)
		return -EINVAL;
	if (ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT &&
	    !(rdev->wiphy.features & NL80211_FEATURE_HT_IBSS))
5851
		return -EINVAL;
5852

J
Johannes Berg 已提交
5853
	ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
J
Johannes Berg 已提交
5854 5855
	ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];

5856 5857 5858 5859 5860 5861
	if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
		u8 *rates =
			nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
		int n_rates =
			nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
		struct ieee80211_supported_band *sband =
5862
			wiphy->bands[ibss.chandef.chan->band];
5863

5864 5865 5866 5867
		err = ieee80211_get_ratemask(sband, rates, n_rates,
					     &ibss.basic_rates);
		if (err)
			return err;
5868
	}
5869 5870 5871 5872 5873

	if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
	    !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
			nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
		return -EINVAL;
5874

5875
	if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
5876 5877
		bool no_ht = false;

5878
		connkeys = nl80211_parse_connkeys(rdev,
5879 5880
					  info->attrs[NL80211_ATTR_KEYS],
					  &no_ht);
5881 5882
		if (IS_ERR(connkeys))
			return PTR_ERR(connkeys);
5883

5884 5885
		if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
		    no_ht) {
5886 5887 5888
			kfree(connkeys);
			return -EINVAL;
		}
5889
	}
J
Johannes Berg 已提交
5890

5891 5892 5893
	ibss.control_port =
		nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);

5894
	err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
J
Johannes Berg 已提交
5895 5896
	if (err)
		kfree(connkeys);
J
Johannes Berg 已提交
5897 5898 5899 5900 5901
	return err;
}

static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
{
5902 5903
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5904

5905 5906
	if (!rdev->ops->leave_ibss)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5907

5908 5909
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5910

5911
	return cfg80211_leave_ibss(rdev, dev, false);
J
Johannes Berg 已提交
5912 5913
}

5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943
static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	int mcast_rate[IEEE80211_NUM_BANDS];
	u32 nla_rate;
	int err;

	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;

	if (!rdev->ops->set_mcast_rate)
		return -EOPNOTSUPP;

	memset(mcast_rate, 0, sizeof(mcast_rate));

	if (!info->attrs[NL80211_ATTR_MCAST_RATE])
		return -EINVAL;

	nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
	if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
		return -EINVAL;

	err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);

	return err;
}


5944 5945 5946 5947 5948 5949 5950
#ifdef CONFIG_NL80211_TESTMODE
static struct genl_multicast_group nl80211_testmode_mcgrp = {
	.name = "testmode",
};

static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
{
5951
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5952 5953 5954 5955 5956 5957 5958 5959
	int err;

	if (!info->attrs[NL80211_ATTR_TESTDATA])
		return -EINVAL;

	err = -EOPNOTSUPP;
	if (rdev->ops->testmode_cmd) {
		rdev->testmode_info = info;
5960
		err = rdev_testmode_cmd(rdev,
5961 5962 5963 5964 5965 5966 5967 5968
				nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
				nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
		rdev->testmode_info = NULL;
	}

	return err;
}

W
Wey-Yi Guy 已提交
5969 5970 5971
static int nl80211_testmode_dump(struct sk_buff *skb,
				 struct netlink_callback *cb)
{
5972
	struct cfg80211_registered_device *rdev;
W
Wey-Yi Guy 已提交
5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989
	int err;
	long phy_idx;
	void *data = NULL;
	int data_len = 0;

	if (cb->args[0]) {
		/*
		 * 0 is a valid index, but not valid for args[0],
		 * so we need to offset by 1.
		 */
		phy_idx = cb->args[0] - 1;
	} else {
		err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
				  nl80211_fam.attrbuf, nl80211_fam.maxattr,
				  nl80211_policy);
		if (err)
			return err;
5990

5991 5992 5993 5994 5995 5996
		mutex_lock(&cfg80211_mutex);
		rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
						  nl80211_fam.attrbuf);
		if (IS_ERR(rdev)) {
			mutex_unlock(&cfg80211_mutex);
			return PTR_ERR(rdev);
5997
		}
5998 5999 6000 6001
		phy_idx = rdev->wiphy_idx;
		rdev = NULL;
		mutex_unlock(&cfg80211_mutex);

W
Wey-Yi Guy 已提交
6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012
		if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
			cb->args[1] =
				(long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
	}

	if (cb->args[1]) {
		data = nla_data((void *)cb->args[1]);
		data_len = nla_len((void *)cb->args[1]);
	}

	mutex_lock(&cfg80211_mutex);
6013 6014
	rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
	if (!rdev) {
W
Wey-Yi Guy 已提交
6015 6016 6017
		mutex_unlock(&cfg80211_mutex);
		return -ENOENT;
	}
6018
	cfg80211_lock_rdev(rdev);
W
Wey-Yi Guy 已提交
6019 6020
	mutex_unlock(&cfg80211_mutex);

6021
	if (!rdev->ops->testmode_dump) {
W
Wey-Yi Guy 已提交
6022 6023 6024 6025 6026
		err = -EOPNOTSUPP;
		goto out_err;
	}

	while (1) {
6027
		void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
W
Wey-Yi Guy 已提交
6028 6029 6030 6031
					   cb->nlh->nlmsg_seq, NLM_F_MULTI,
					   NL80211_CMD_TESTMODE);
		struct nlattr *tmdata;

6032
		if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
W
Wey-Yi Guy 已提交
6033 6034 6035 6036 6037 6038 6039 6040 6041
			genlmsg_cancel(skb, hdr);
			break;
		}

		tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
		if (!tmdata) {
			genlmsg_cancel(skb, hdr);
			break;
		}
6042
		err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
W
Wey-Yi Guy 已提交
6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059
		nla_nest_end(skb, tmdata);

		if (err == -ENOBUFS || err == -ENOENT) {
			genlmsg_cancel(skb, hdr);
			break;
		} else if (err) {
			genlmsg_cancel(skb, hdr);
			goto out_err;
		}

		genlmsg_end(skb, hdr);
	}

	err = skb->len;
	/* see above */
	cb->args[0] = phy_idx + 1;
 out_err:
6060
	cfg80211_unlock_rdev(rdev);
W
Wey-Yi Guy 已提交
6061 6062 6063
	return err;
}

6064 6065
static struct sk_buff *
__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
6066
			      int approxlen, u32 portid, u32 seq, gfp_t gfp)
6067 6068 6069 6070 6071 6072 6073 6074 6075
{
	struct sk_buff *skb;
	void *hdr;
	struct nlattr *data;

	skb = nlmsg_new(approxlen + 100, gfp);
	if (!skb)
		return NULL;

6076
	hdr = nl80211hdr_put(skb, portid, seq, 0, NL80211_CMD_TESTMODE);
6077 6078 6079 6080 6081
	if (!hdr) {
		kfree_skb(skb);
		return NULL;
	}

6082 6083
	if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
		goto nla_put_failure;
6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105
	data = nla_nest_start(skb, NL80211_ATTR_TESTDATA);

	((void **)skb->cb)[0] = rdev;
	((void **)skb->cb)[1] = hdr;
	((void **)skb->cb)[2] = data;

	return skb;

 nla_put_failure:
	kfree_skb(skb);
	return NULL;
}

struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
						  int approxlen)
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);

	if (WARN_ON(!rdev->testmode_info))
		return NULL;

	return __cfg80211_testmode_alloc_skb(rdev, approxlen,
6106
				rdev->testmode_info->snd_portid,
6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149
				rdev->testmode_info->snd_seq,
				GFP_KERNEL);
}
EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb);

int cfg80211_testmode_reply(struct sk_buff *skb)
{
	struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
	void *hdr = ((void **)skb->cb)[1];
	struct nlattr *data = ((void **)skb->cb)[2];

	if (WARN_ON(!rdev->testmode_info)) {
		kfree_skb(skb);
		return -EINVAL;
	}

	nla_nest_end(skb, data);
	genlmsg_end(skb, hdr);
	return genlmsg_reply(skb, rdev->testmode_info);
}
EXPORT_SYMBOL(cfg80211_testmode_reply);

struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
						  int approxlen, gfp_t gfp)
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);

	return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp);
}
EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb);

void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
{
	void *hdr = ((void **)skb->cb)[1];
	struct nlattr *data = ((void **)skb->cb)[2];

	nla_nest_end(skb, data);
	genlmsg_end(skb, hdr);
	genlmsg_multicast(skb, 0, nl80211_testmode_mcgrp.id, gfp);
}
EXPORT_SYMBOL(cfg80211_testmode_event);
#endif

S
Samuel Ortiz 已提交
6150 6151
static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
{
6152 6153
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
6154 6155
	struct cfg80211_connect_params connect;
	struct wiphy *wiphy;
J
Johannes Berg 已提交
6156
	struct cfg80211_cached_keys *connkeys = NULL;
S
Samuel Ortiz 已提交
6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170
	int err;

	memset(&connect, 0, sizeof(connect));

	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_SSID] ||
	    !nla_len(info->attrs[NL80211_ATTR_SSID]))
		return -EINVAL;

	if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
		connect.auth_type =
			nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
6171 6172
		if (!nl80211_valid_auth_type(rdev, connect.auth_type,
					     NL80211_CMD_CONNECT))
S
Samuel Ortiz 已提交
6173 6174 6175 6176 6177 6178
			return -EINVAL;
	} else
		connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;

	connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];

6179
	err = nl80211_crypto_settings(rdev, info, &connect.crypto,
6180
				      NL80211_MAX_NR_CIPHER_SUITES);
S
Samuel Ortiz 已提交
6181 6182 6183
	if (err)
		return err;

6184
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
6185 6186
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
6187

6188
	wiphy = &rdev->wiphy;
S
Samuel Ortiz 已提交
6189

6190 6191 6192 6193 6194 6195 6196
	connect.bg_scan_period = -1;
	if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
		(wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
		connect.bg_scan_period =
			nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
	}

S
Samuel Ortiz 已提交
6197 6198 6199 6200 6201 6202 6203 6204 6205 6206
	if (info->attrs[NL80211_ATTR_MAC])
		connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
	connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
	connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);

	if (info->attrs[NL80211_ATTR_IE]) {
		connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
	}

6207 6208 6209 6210 6211 6212 6213 6214 6215
	if (info->attrs[NL80211_ATTR_USE_MFP]) {
		connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
		if (connect.mfp != NL80211_MFP_REQUIRED &&
		    connect.mfp != NL80211_MFP_NO)
			return -EINVAL;
	} else {
		connect.mfp = NL80211_MFP_NO;
	}

S
Samuel Ortiz 已提交
6216 6217 6218 6219 6220
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
		connect.channel =
			ieee80211_get_channel(wiphy,
			    nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
		if (!connect.channel ||
6221 6222
		    connect.channel->flags & IEEE80211_CHAN_DISABLED)
			return -EINVAL;
S
Samuel Ortiz 已提交
6223 6224
	}

J
Johannes Berg 已提交
6225 6226
	if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
		connkeys = nl80211_parse_connkeys(rdev,
6227
					  info->attrs[NL80211_ATTR_KEYS], NULL);
6228 6229
		if (IS_ERR(connkeys))
			return PTR_ERR(connkeys);
J
Johannes Berg 已提交
6230 6231
	}

6232 6233 6234 6235 6236 6237 6238 6239 6240
	if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
		connect.flags |= ASSOC_REQ_DISABLE_HT;

	if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
		memcpy(&connect.ht_capa_mask,
		       nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
		       sizeof(connect.ht_capa_mask));

	if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6241 6242
		if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
			kfree(connkeys);
6243
			return -EINVAL;
6244
		}
6245 6246 6247 6248 6249
		memcpy(&connect.ht_capa,
		       nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
		       sizeof(connect.ht_capa));
	}

J
Johannes Berg 已提交
6250 6251 6252
	err = cfg80211_connect(rdev, dev, &connect, connkeys);
	if (err)
		kfree(connkeys);
S
Samuel Ortiz 已提交
6253 6254 6255 6256 6257
	return err;
}

static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
{
6258 6259
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
6260 6261 6262 6263 6264 6265 6266 6267 6268 6269
	u16 reason;

	if (!info->attrs[NL80211_ATTR_REASON_CODE])
		reason = WLAN_REASON_DEAUTH_LEAVING;
	else
		reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);

	if (reason == 0)
		return -EINVAL;

6270
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
6271 6272
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
6273

6274
	return cfg80211_disconnect(rdev, dev, reason, true);
S
Samuel Ortiz 已提交
6275 6276
}

6277 6278
static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
{
6279
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6280 6281 6282 6283 6284 6285 6286 6287 6288 6289
	struct net *net;
	int err;
	u32 pid;

	if (!info->attrs[NL80211_ATTR_PID])
		return -EINVAL;

	pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);

	net = get_net_ns_by_pid(pid);
6290 6291
	if (IS_ERR(net))
		return PTR_ERR(net);
6292 6293 6294 6295

	err = 0;

	/* check if anything to do */
6296 6297
	if (!net_eq(wiphy_net(&rdev->wiphy), net))
		err = cfg80211_switch_netns(rdev, net);
6298 6299 6300 6301 6302

	put_net(net);
	return err;
}

S
Samuel Ortiz 已提交
6303 6304
static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
{
6305
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
S
Samuel Ortiz 已提交
6306 6307
	int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
			struct cfg80211_pmksa *pmksa) = NULL;
6308
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321
	struct cfg80211_pmksa pmksa;

	memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_PMKID])
		return -EINVAL;

	pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
	pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);

6322
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
6323 6324
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337

	switch (info->genlhdr->cmd) {
	case NL80211_CMD_SET_PMKSA:
		rdev_ops = rdev->ops->set_pmksa;
		break;
	case NL80211_CMD_DEL_PMKSA:
		rdev_ops = rdev->ops->del_pmksa;
		break;
	default:
		WARN_ON(1);
		break;
	}

6338 6339
	if (!rdev_ops)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
6340

6341
	return rdev_ops(&rdev->wiphy, dev, &pmksa);
S
Samuel Ortiz 已提交
6342 6343 6344 6345
}

static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
{
6346 6347
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
6348

6349
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
6350 6351
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
6352

6353 6354
	if (!rdev->ops->flush_pmksa)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
6355

6356
	return rdev_flush_pmksa(rdev, dev);
S
Samuel Ortiz 已提交
6357 6358
}

6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382
static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	u8 action_code, dialog_token;
	u16 status_code;
	u8 *peer;

	if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
	    !rdev->ops->tdls_mgmt)
		return -EOPNOTSUPP;

	if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
	    !info->attrs[NL80211_ATTR_STATUS_CODE] ||
	    !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
	    !info->attrs[NL80211_ATTR_IE] ||
	    !info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
	action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
	status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
	dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);

6383 6384 6385 6386
	return rdev_tdls_mgmt(rdev, dev, peer, action_code,
			      dialog_token, status_code,
			      nla_data(info->attrs[NL80211_ATTR_IE]),
			      nla_len(info->attrs[NL80211_ATTR_IE]));
6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406
}

static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	enum nl80211_tdls_operation operation;
	u8 *peer;

	if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
	    !rdev->ops->tdls_oper)
		return -EOPNOTSUPP;

	if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
	    !info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
	peer = nla_data(info->attrs[NL80211_ATTR_MAC]);

6407
	return rdev_tdls_oper(rdev, dev, peer, operation);
6408 6409
}

6410 6411 6412
static int nl80211_remain_on_channel(struct sk_buff *skb,
				     struct genl_info *info)
{
6413
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6414
	struct wireless_dev *wdev = info->user_ptr[1];
6415
	struct cfg80211_chan_def chandef;
6416 6417 6418
	struct sk_buff *msg;
	void *hdr;
	u64 cookie;
6419
	u32 duration;
6420 6421 6422 6423 6424 6425 6426 6427
	int err;

	if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
	    !info->attrs[NL80211_ATTR_DURATION])
		return -EINVAL;

	duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);

6428 6429 6430 6431
	if (!rdev->ops->remain_on_channel ||
	    !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
		return -EOPNOTSUPP;

6432
	/*
6433 6434
	 * We should be on that channel for at least a minimum amount of
	 * time (10ms) but no longer than the driver supports.
6435
	 */
6436
	if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
6437
	    duration > rdev->wiphy.max_remain_on_channel_duration)
6438 6439
		return -EINVAL;

6440 6441 6442
	err = nl80211_parse_chandef(rdev, info, &chandef);
	if (err)
		return err;
6443 6444

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
6445 6446
	if (!msg)
		return -ENOMEM;
6447

6448
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
6449 6450 6451 6452 6453 6454 6455
			     NL80211_CMD_REMAIN_ON_CHANNEL);

	if (IS_ERR(hdr)) {
		err = PTR_ERR(hdr);
		goto free_msg;
	}

6456 6457
	err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
				     duration, &cookie);
6458 6459 6460 6461

	if (err)
		goto free_msg;

6462 6463
	if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
		goto nla_put_failure;
6464 6465

	genlmsg_end(msg, hdr);
6466 6467

	return genlmsg_reply(msg, info);
6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478

 nla_put_failure:
	err = -ENOBUFS;
 free_msg:
	nlmsg_free(msg);
	return err;
}

static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
					    struct genl_info *info)
{
6479
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6480
	struct wireless_dev *wdev = info->user_ptr[1];
6481 6482 6483 6484 6485
	u64 cookie;

	if (!info->attrs[NL80211_ATTR_COOKIE])
		return -EINVAL;

6486 6487
	if (!rdev->ops->cancel_remain_on_channel)
		return -EOPNOTSUPP;
6488 6489 6490

	cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);

6491
	return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
6492 6493
}

6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517
static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
			   u8 *rates, u8 rates_len)
{
	u8 i;
	u32 mask = 0;

	for (i = 0; i < rates_len; i++) {
		int rate = (rates[i] & 0x7f) * 5;
		int ridx;
		for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
			struct ieee80211_rate *srate =
				&sband->bitrates[ridx];
			if (rate == srate->bitrate) {
				mask |= 1 << ridx;
				break;
			}
		}
		if (ridx == sband->n_bitrates)
			return 0; /* rate not found */
	}

	return mask;
}

6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532
static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
			       u8 *rates, u8 rates_len,
			       u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
{
	u8 i;

	memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);

	for (i = 0; i < rates_len; i++) {
		int ridx, rbit;

		ridx = rates[i] / 8;
		rbit = BIT(rates[i] % 8);

		/* check validity */
6533
		if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545
			return false;

		/* check availability */
		if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
			mcs[ridx] |= rbit;
		else
			return false;
	}

	return true;
}

A
Alexey Dobriyan 已提交
6546
static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
6547 6548
	[NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
				    .len = NL80211_MAX_SUPP_RATES },
6549 6550
	[NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
				 .len = NL80211_MAX_SUPP_HT_RATES },
6551 6552 6553 6554 6555 6556
};

static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
				       struct genl_info *info)
{
	struct nlattr *tb[NL80211_TXRATE_MAX + 1];
6557
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6558
	struct cfg80211_bitrate_mask mask;
6559 6560
	int rem, i;
	struct net_device *dev = info->user_ptr[1];
6561 6562 6563 6564 6565 6566
	struct nlattr *tx_rates;
	struct ieee80211_supported_band *sband;

	if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
		return -EINVAL;

6567 6568
	if (!rdev->ops->set_bitrate_mask)
		return -EOPNOTSUPP;
6569 6570 6571 6572 6573 6574 6575

	memset(&mask, 0, sizeof(mask));
	/* Default to all rates enabled */
	for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
		sband = rdev->wiphy.bands[i];
		mask.control[i].legacy =
			sband ? (1 << sband->n_bitrates) - 1 : 0;
6576 6577 6578 6579 6580 6581 6582
		if (sband)
			memcpy(mask.control[i].mcs,
			       sband->ht_cap.mcs.rx_mask,
			       sizeof(mask.control[i].mcs));
		else
			memset(mask.control[i].mcs, 0,
			       sizeof(mask.control[i].mcs));
6583 6584 6585 6586 6587 6588
	}

	/*
	 * The nested attribute uses enum nl80211_band as the index. This maps
	 * directly to the enum ieee80211_band values used in cfg80211.
	 */
6589
	BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
6590 6591 6592
	nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
	{
		enum ieee80211_band band = nla_type(tx_rates);
6593 6594
		if (band < 0 || band >= IEEE80211_NUM_BANDS)
			return -EINVAL;
6595
		sband = rdev->wiphy.bands[band];
6596 6597
		if (sband == NULL)
			return -EINVAL;
6598 6599 6600 6601 6602 6603 6604
		nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
			  nla_len(tx_rates), nl80211_txattr_policy);
		if (tb[NL80211_TXRATE_LEGACY]) {
			mask.control[band].legacy = rateset_to_mask(
				sband,
				nla_data(tb[NL80211_TXRATE_LEGACY]),
				nla_len(tb[NL80211_TXRATE_LEGACY]));
6605 6606 6607
			if ((mask.control[band].legacy == 0) &&
			    nla_len(tb[NL80211_TXRATE_LEGACY]))
				return -EINVAL;
6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629
		}
		if (tb[NL80211_TXRATE_MCS]) {
			if (!ht_rateset_to_mask(
					sband,
					nla_data(tb[NL80211_TXRATE_MCS]),
					nla_len(tb[NL80211_TXRATE_MCS]),
					mask.control[band].mcs))
				return -EINVAL;
		}

		if (mask.control[band].legacy == 0) {
			/* don't allow empty legacy rates if HT
			 * is not even supported. */
			if (!rdev->wiphy.bands[band]->ht_cap.ht_supported)
				return -EINVAL;

			for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
				if (mask.control[band].mcs[i])
					break;

			/* legacy and mcs rates may not be both empty */
			if (i == IEEE80211_HT_MCS_MASK_LEN)
6630
				return -EINVAL;
6631 6632 6633
		}
	}

6634
	return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
6635 6636
}

6637
static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
6638
{
6639
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6640
	struct wireless_dev *wdev = info->user_ptr[1];
6641
	u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
6642 6643 6644 6645

	if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
		return -EINVAL;

6646 6647
	if (info->attrs[NL80211_ATTR_FRAME_TYPE])
		frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
6648

6649 6650 6651 6652 6653 6654 6655 6656
	switch (wdev->iftype) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_ADHOC:
	case NL80211_IFTYPE_P2P_CLIENT:
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
	case NL80211_IFTYPE_MESH_POINT:
	case NL80211_IFTYPE_P2P_GO:
6657
	case NL80211_IFTYPE_P2P_DEVICE:
6658 6659
		break;
	default:
6660
		return -EOPNOTSUPP;
6661
	}
6662 6663

	/* not much point in registering if we can't reply */
6664 6665
	if (!rdev->ops->mgmt_tx)
		return -EOPNOTSUPP;
6666

6667
	return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
6668 6669 6670 6671
			nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
			nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
}

6672
static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
6673
{
6674
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6675
	struct wireless_dev *wdev = info->user_ptr[1];
6676
	struct cfg80211_chan_def chandef;
6677
	int err;
J
Johannes Berg 已提交
6678
	void *hdr = NULL;
6679
	u64 cookie;
6680
	struct sk_buff *msg = NULL;
6681
	unsigned int wait = 0;
6682 6683 6684
	bool offchan, no_cck, dont_wait_for_ack;

	dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
6685

6686
	if (!info->attrs[NL80211_ATTR_FRAME])
6687 6688
		return -EINVAL;

6689 6690
	if (!rdev->ops->mgmt_tx)
		return -EOPNOTSUPP;
6691

6692 6693 6694 6695 6696 6697 6698 6699
	switch (wdev->iftype) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_ADHOC:
	case NL80211_IFTYPE_P2P_CLIENT:
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
	case NL80211_IFTYPE_MESH_POINT:
	case NL80211_IFTYPE_P2P_GO:
6700
	case NL80211_IFTYPE_P2P_DEVICE:
6701 6702
		break;
	default:
6703
		return -EOPNOTSUPP;
6704
	}
6705

6706
	if (info->attrs[NL80211_ATTR_DURATION]) {
6707
		if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
6708 6709
			return -EINVAL;
		wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
6710 6711 6712 6713 6714 6715 6716 6717 6718

		/*
		 * We should wait on the channel for at least a minimum amount
		 * of time (10ms) but no longer than the driver supports.
		 */
		if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
		    wait > rdev->wiphy.max_remain_on_channel_duration)
			return -EINVAL;

6719 6720 6721 6722
	}

	offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];

6723 6724 6725
	if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
		return -EINVAL;

6726 6727
	no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);

6728 6729 6730
	err = nl80211_parse_chandef(rdev, info, &chandef);
	if (err)
		return err;
6731

6732 6733 6734 6735
	if (!dont_wait_for_ack) {
		msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
		if (!msg)
			return -ENOMEM;
6736

6737
		hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
6738
				     NL80211_CMD_FRAME);
6739

6740 6741 6742 6743
		if (IS_ERR(hdr)) {
			err = PTR_ERR(hdr);
			goto free_msg;
		}
6744
	}
6745

6746
	err = cfg80211_mlme_mgmt_tx(rdev, wdev, chandef.chan, offchan, wait,
6747 6748
				    nla_data(info->attrs[NL80211_ATTR_FRAME]),
				    nla_len(info->attrs[NL80211_ATTR_FRAME]),
6749
				    no_cck, dont_wait_for_ack, &cookie);
6750 6751 6752
	if (err)
		goto free_msg;

6753
	if (msg) {
6754 6755
		if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
			goto nla_put_failure;
6756

6757 6758 6759 6760 6761
		genlmsg_end(msg, hdr);
		return genlmsg_reply(msg, info);
	}

	return 0;
6762 6763 6764 6765 6766 6767 6768 6769

 nla_put_failure:
	err = -ENOBUFS;
 free_msg:
	nlmsg_free(msg);
	return err;
}

6770 6771 6772
static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6773
	struct wireless_dev *wdev = info->user_ptr[1];
6774 6775 6776 6777 6778 6779 6780 6781
	u64 cookie;

	if (!info->attrs[NL80211_ATTR_COOKIE])
		return -EINVAL;

	if (!rdev->ops->mgmt_tx_cancel_wait)
		return -EOPNOTSUPP;

6782 6783 6784 6785 6786 6787 6788
	switch (wdev->iftype) {
	case NL80211_IFTYPE_STATION:
	case NL80211_IFTYPE_ADHOC:
	case NL80211_IFTYPE_P2P_CLIENT:
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
	case NL80211_IFTYPE_P2P_GO:
6789
	case NL80211_IFTYPE_P2P_DEVICE:
6790 6791
		break;
	default:
6792
		return -EOPNOTSUPP;
6793
	}
6794 6795 6796

	cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);

6797
	return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
6798 6799
}

K
Kalle Valo 已提交
6800 6801
static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
{
6802
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
K
Kalle Valo 已提交
6803
	struct wireless_dev *wdev;
6804
	struct net_device *dev = info->user_ptr[1];
K
Kalle Valo 已提交
6805 6806 6807 6808
	u8 ps_state;
	bool state;
	int err;

6809 6810
	if (!info->attrs[NL80211_ATTR_PS_STATE])
		return -EINVAL;
K
Kalle Valo 已提交
6811 6812 6813

	ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);

6814 6815
	if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
		return -EINVAL;
K
Kalle Valo 已提交
6816 6817 6818

	wdev = dev->ieee80211_ptr;

6819 6820
	if (!rdev->ops->set_power_mgmt)
		return -EOPNOTSUPP;
K
Kalle Valo 已提交
6821 6822 6823 6824

	state = (ps_state == NL80211_PS_ENABLED) ? true : false;

	if (state == wdev->ps)
6825
		return 0;
K
Kalle Valo 已提交
6826

6827
	err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
6828 6829
	if (!err)
		wdev->ps = state;
K
Kalle Valo 已提交
6830 6831 6832 6833 6834
	return err;
}

static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
{
6835
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
K
Kalle Valo 已提交
6836 6837
	enum nl80211_ps_state ps_state;
	struct wireless_dev *wdev;
6838
	struct net_device *dev = info->user_ptr[1];
K
Kalle Valo 已提交
6839 6840 6841 6842 6843 6844
	struct sk_buff *msg;
	void *hdr;
	int err;

	wdev = dev->ieee80211_ptr;

6845 6846
	if (!rdev->ops->set_power_mgmt)
		return -EOPNOTSUPP;
K
Kalle Valo 已提交
6847 6848

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
6849 6850
	if (!msg)
		return -ENOMEM;
K
Kalle Valo 已提交
6851

6852
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
K
Kalle Valo 已提交
6853 6854
			     NL80211_CMD_GET_POWER_SAVE);
	if (!hdr) {
6855
		err = -ENOBUFS;
K
Kalle Valo 已提交
6856 6857 6858 6859 6860 6861 6862 6863
		goto free_msg;
	}

	if (wdev->ps)
		ps_state = NL80211_PS_ENABLED;
	else
		ps_state = NL80211_PS_DISABLED;

6864 6865
	if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
		goto nla_put_failure;
K
Kalle Valo 已提交
6866 6867

	genlmsg_end(msg, hdr);
6868
	return genlmsg_reply(msg, info);
K
Kalle Valo 已提交
6869

6870
 nla_put_failure:
K
Kalle Valo 已提交
6871
	err = -ENOBUFS;
6872
 free_msg:
K
Kalle Valo 已提交
6873 6874 6875 6876
	nlmsg_free(msg);
	return err;
}

6877 6878 6879 6880 6881
static struct nla_policy
nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = {
	[NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
	[NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
	[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
6882 6883 6884
	[NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
	[NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
	[NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
6885 6886
};

6887
static int nl80211_set_cqm_txe(struct genl_info *info,
J
Johannes Berg 已提交
6888
			       u32 rate, u32 pkts, u32 intvl)
6889 6890 6891 6892 6893
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct wireless_dev *wdev;
	struct net_device *dev = info->user_ptr[1];

J
Johannes Berg 已提交
6894
	if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905
		return -EINVAL;

	wdev = dev->ieee80211_ptr;

	if (!rdev->ops->set_cqm_txe_config)
		return -EOPNOTSUPP;

	if (wdev->iftype != NL80211_IFTYPE_STATION &&
	    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;

6906
	return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
6907 6908
}

6909 6910 6911
static int nl80211_set_cqm_rssi(struct genl_info *info,
				s32 threshold, u32 hysteresis)
{
6912
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6913
	struct wireless_dev *wdev;
6914
	struct net_device *dev = info->user_ptr[1];
6915 6916 6917 6918 6919 6920

	if (threshold > 0)
		return -EINVAL;

	wdev = dev->ieee80211_ptr;

6921 6922
	if (!rdev->ops->set_cqm_rssi_config)
		return -EOPNOTSUPP;
6923

6924
	if (wdev->iftype != NL80211_IFTYPE_STATION &&
6925 6926
	    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
6927

6928
	return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954
}

static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
{
	struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
	struct nlattr *cqm;
	int err;

	cqm = info->attrs[NL80211_ATTR_CQM];
	if (!cqm) {
		err = -EINVAL;
		goto out;
	}

	err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
			       nl80211_attr_cqm_policy);
	if (err)
		goto out;

	if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
	    attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
		s32 threshold;
		u32 hysteresis;
		threshold = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
		hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
		err = nl80211_set_cqm_rssi(info, threshold, hysteresis);
6955 6956 6957 6958 6959 6960 6961 6962
	} else if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
		   attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
		   attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
		u32 rate, pkts, intvl;
		rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
		pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
		intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
		err = nl80211_set_cqm_txe(info, rate, pkts, intvl);
6963 6964 6965 6966 6967 6968 6969
	} else
		err = -EINVAL;

out:
	return err;
}

6970 6971 6972 6973 6974
static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct mesh_config cfg;
6975
	struct mesh_setup setup;
6976 6977 6978 6979
	int err;

	/* start with default */
	memcpy(&cfg, &default_mesh_config, sizeof(cfg));
6980
	memcpy(&setup, &default_mesh_setup, sizeof(setup));
6981

6982
	if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
6983
		/* and parse parameters if given */
6984
		err = nl80211_parse_mesh_config(info, &cfg, NULL);
6985 6986 6987 6988 6989 6990 6991 6992
		if (err)
			return err;
	}

	if (!info->attrs[NL80211_ATTR_MESH_ID] ||
	    !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
		return -EINVAL;

6993 6994 6995
	setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
	setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);

6996 6997 6998 6999 7000
	if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
	    !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
			    nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
			return -EINVAL;

7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015
	if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
		setup.beacon_interval =
			nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
		if (setup.beacon_interval < 10 ||
		    setup.beacon_interval > 10000)
			return -EINVAL;
	}

	if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
		setup.dtim_period =
			nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
		if (setup.dtim_period < 1 || setup.dtim_period > 100)
			return -EINVAL;
	}

7016 7017 7018 7019 7020 7021 7022
	if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
		/* parse additional setup parameters if given */
		err = nl80211_parse_mesh_setup(info, &setup);
		if (err)
			return err;
	}

7023
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7024 7025 7026
		err = nl80211_parse_chandef(rdev, info, &setup.chandef);
		if (err)
			return err;
7027 7028
	} else {
		/* cfg80211_join_mesh() will sort it out */
7029
		setup.chandef.chan = NULL;
7030 7031
	}

7032
	return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
7033 7034 7035 7036 7037 7038 7039 7040 7041 7042
}

static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];

	return cfg80211_leave_mesh(rdev, dev);
}

7043
#ifdef CONFIG_PM
7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076
static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
					struct cfg80211_registered_device *rdev)
{
	struct nlattr *nl_pats, *nl_pat;
	int i, pat_len;

	if (!rdev->wowlan->n_patterns)
		return 0;

	nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
	if (!nl_pats)
		return -ENOBUFS;

	for (i = 0; i < rdev->wowlan->n_patterns; i++) {
		nl_pat = nla_nest_start(msg, i + 1);
		if (!nl_pat)
			return -ENOBUFS;
		pat_len = rdev->wowlan->patterns[i].pattern_len;
		if (nla_put(msg, NL80211_WOWLAN_PKTPAT_MASK,
			    DIV_ROUND_UP(pat_len, 8),
			    rdev->wowlan->patterns[i].mask) ||
		    nla_put(msg, NL80211_WOWLAN_PKTPAT_PATTERN,
			    pat_len, rdev->wowlan->patterns[i].pattern) ||
		    nla_put_u32(msg, NL80211_WOWLAN_PKTPAT_OFFSET,
				rdev->wowlan->patterns[i].pkt_offset))
			return -ENOBUFS;
		nla_nest_end(msg, nl_pat);
	}
	nla_nest_end(msg, nl_pats);

	return 0;
}

7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117
static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
				   struct cfg80211_wowlan_tcp *tcp)
{
	struct nlattr *nl_tcp;

	if (!tcp)
		return 0;

	nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
	if (!nl_tcp)
		return -ENOBUFS;

	if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
	    nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
	    nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
	    nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
	    nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
	    nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
		    tcp->payload_len, tcp->payload) ||
	    nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
			tcp->data_interval) ||
	    nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
		    tcp->wake_len, tcp->wake_data) ||
	    nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
		    DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
		return -ENOBUFS;

	if (tcp->payload_seq.len &&
	    nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
		    sizeof(tcp->payload_seq), &tcp->payload_seq))
		return -ENOBUFS;

	if (tcp->payload_tok.len &&
	    nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
		    sizeof(tcp->payload_tok) + tcp->tokens_size,
		    &tcp->payload_tok))
		return -ENOBUFS;

	return 0;
}

J
Johannes Berg 已提交
7118 7119 7120 7121 7122
static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct sk_buff *msg;
	void *hdr;
7123
	u32 size = NLMSG_DEFAULT_SIZE;
J
Johannes Berg 已提交
7124

7125 7126
	if (!rdev->wiphy.wowlan.flags && !rdev->wiphy.wowlan.n_patterns &&
	    !rdev->wiphy.wowlan.tcp)
J
Johannes Berg 已提交
7127 7128
		return -EOPNOTSUPP;

7129 7130 7131 7132 7133 7134 7135 7136 7137
	if (rdev->wowlan && rdev->wowlan->tcp) {
		/* adjust size to have room for all the data */
		size += rdev->wowlan->tcp->tokens_size +
			rdev->wowlan->tcp->payload_len +
			rdev->wowlan->tcp->wake_len +
			rdev->wowlan->tcp->wake_len / 8;
	}

	msg = nlmsg_new(size, GFP_KERNEL);
J
Johannes Berg 已提交
7138 7139 7140
	if (!msg)
		return -ENOMEM;

7141
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
J
Johannes Berg 已提交
7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152
			     NL80211_CMD_GET_WOWLAN);
	if (!hdr)
		goto nla_put_failure;

	if (rdev->wowlan) {
		struct nlattr *nl_wowlan;

		nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
		if (!nl_wowlan)
			goto nla_put_failure;

7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167
		if ((rdev->wowlan->any &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
		    (rdev->wowlan->disconnect &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
		    (rdev->wowlan->magic_pkt &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
		    (rdev->wowlan->gtk_rekey_failure &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
		    (rdev->wowlan->eap_identity_req &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
		    (rdev->wowlan->four_way_handshake &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
		    (rdev->wowlan->rfkill_release &&
		     nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
			goto nla_put_failure;
7168

7169 7170
		if (nl80211_send_wowlan_patterns(msg, rdev))
			goto nla_put_failure;
7171 7172 7173 7174

		if (nl80211_send_wowlan_tcp(msg, rdev->wowlan->tcp))
			goto nla_put_failure;

J
Johannes Berg 已提交
7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185
		nla_nest_end(msg, nl_wowlan);
	}

	genlmsg_end(msg, hdr);
	return genlmsg_reply(msg, info);

nla_put_failure:
	nlmsg_free(msg);
	return -ENOBUFS;
}

7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329
static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
				    struct nlattr *attr,
				    struct cfg80211_wowlan *trig)
{
	struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
	struct cfg80211_wowlan_tcp *cfg;
	struct nl80211_wowlan_tcp_data_token *tok = NULL;
	struct nl80211_wowlan_tcp_data_seq *seq = NULL;
	u32 size;
	u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
	int err, port;

	if (!rdev->wiphy.wowlan.tcp)
		return -EINVAL;

	err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
			nla_data(attr), nla_len(attr),
			nl80211_wowlan_tcp_policy);
	if (err)
		return err;

	if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
	    !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
	    !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
	    !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
	    !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
	    !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
	    !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
	    !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
		return -EINVAL;

	data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
	if (data_size > rdev->wiphy.wowlan.tcp->data_payload_max)
		return -EINVAL;

	if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
			rdev->wiphy.wowlan.tcp->data_interval_max)
		return -EINVAL;

	wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
	if (wake_size > rdev->wiphy.wowlan.tcp->wake_payload_max)
		return -EINVAL;

	wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
	if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
		return -EINVAL;

	if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
		u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);

		tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
		tokens_size = tokln - sizeof(*tok);

		if (!tok->len || tokens_size % tok->len)
			return -EINVAL;
		if (!rdev->wiphy.wowlan.tcp->tok)
			return -EINVAL;
		if (tok->len > rdev->wiphy.wowlan.tcp->tok->max_len)
			return -EINVAL;
		if (tok->len < rdev->wiphy.wowlan.tcp->tok->min_len)
			return -EINVAL;
		if (tokens_size > rdev->wiphy.wowlan.tcp->tok->bufsize)
			return -EINVAL;
		if (tok->offset + tok->len > data_size)
			return -EINVAL;
	}

	if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
		seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
		if (!rdev->wiphy.wowlan.tcp->seq)
			return -EINVAL;
		if (seq->len == 0 || seq->len > 4)
			return -EINVAL;
		if (seq->len + seq->offset > data_size)
			return -EINVAL;
	}

	size = sizeof(*cfg);
	size += data_size;
	size += wake_size + wake_mask_size;
	size += tokens_size;

	cfg = kzalloc(size, GFP_KERNEL);
	if (!cfg)
		return -ENOMEM;
	cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
	cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
	memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
	       ETH_ALEN);
	if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
		port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
	else
		port = 0;
#ifdef CONFIG_INET
	/* allocate a socket and port for it and use it */
	err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
			    IPPROTO_TCP, &cfg->sock, 1);
	if (err) {
		kfree(cfg);
		return err;
	}
	if (inet_csk_get_port(cfg->sock->sk, port)) {
		sock_release(cfg->sock);
		kfree(cfg);
		return -EADDRINUSE;
	}
	cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
#else
	if (!port) {
		kfree(cfg);
		return -EINVAL;
	}
	cfg->src_port = port;
#endif

	cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
	cfg->payload_len = data_size;
	cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
	memcpy((void *)cfg->payload,
	       nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
	       data_size);
	if (seq)
		cfg->payload_seq = *seq;
	cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
	cfg->wake_len = wake_size;
	cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
	memcpy((void *)cfg->wake_data,
	       nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
	       wake_size);
	cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
			 data_size + wake_size;
	memcpy((void *)cfg->wake_mask,
	       nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
	       wake_mask_size);
	if (tok) {
		cfg->tokens_size = tokens_size;
		memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
	}

	trig->tcp = cfg;

	return 0;
}

J
Johannes Berg 已提交
7330 7331 7332 7333 7334
static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
	struct cfg80211_wowlan new_triggers = {};
7335
	struct cfg80211_wowlan *ntrig;
J
Johannes Berg 已提交
7336 7337
	struct wiphy_wowlan_support *wowlan = &rdev->wiphy.wowlan;
	int err, i;
7338
	bool prev_enabled = rdev->wowlan;
J
Johannes Berg 已提交
7339

7340 7341
	if (!rdev->wiphy.wowlan.flags && !rdev->wiphy.wowlan.n_patterns &&
	    !rdev->wiphy.wowlan.tcp)
J
Johannes Berg 已提交
7342 7343
		return -EOPNOTSUPP;

7344 7345 7346 7347 7348
	if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
		cfg80211_rdev_free_wowlan(rdev);
		rdev->wowlan = NULL;
		goto set_wakeup;
	}
J
Johannes Berg 已提交
7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374

	err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
			nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
			nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
			nl80211_wowlan_policy);
	if (err)
		return err;

	if (tb[NL80211_WOWLAN_TRIG_ANY]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
			return -EINVAL;
		new_triggers.any = true;
	}

	if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
			return -EINVAL;
		new_triggers.disconnect = true;
	}

	if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
			return -EINVAL;
		new_triggers.magic_pkt = true;
	}

7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401
	if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
		return -EINVAL;

	if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
			return -EINVAL;
		new_triggers.gtk_rekey_failure = true;
	}

	if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
			return -EINVAL;
		new_triggers.eap_identity_req = true;
	}

	if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
			return -EINVAL;
		new_triggers.four_way_handshake = true;
	}

	if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
		if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
			return -EINVAL;
		new_triggers.rfkill_release = true;
	}

J
Johannes Berg 已提交
7402 7403 7404
	if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
		struct nlattr *pat;
		int n_patterns = 0;
7405
		int rem, pat_len, mask_len, pkt_offset;
J
Johannes Berg 已提交
7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439
		struct nlattr *pat_tb[NUM_NL80211_WOWLAN_PKTPAT];

		nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
				    rem)
			n_patterns++;
		if (n_patterns > wowlan->n_patterns)
			return -EINVAL;

		new_triggers.patterns = kcalloc(n_patterns,
						sizeof(new_triggers.patterns[0]),
						GFP_KERNEL);
		if (!new_triggers.patterns)
			return -ENOMEM;

		new_triggers.n_patterns = n_patterns;
		i = 0;

		nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
				    rem) {
			nla_parse(pat_tb, MAX_NL80211_WOWLAN_PKTPAT,
				  nla_data(pat), nla_len(pat), NULL);
			err = -EINVAL;
			if (!pat_tb[NL80211_WOWLAN_PKTPAT_MASK] ||
			    !pat_tb[NL80211_WOWLAN_PKTPAT_PATTERN])
				goto error;
			pat_len = nla_len(pat_tb[NL80211_WOWLAN_PKTPAT_PATTERN]);
			mask_len = DIV_ROUND_UP(pat_len, 8);
			if (nla_len(pat_tb[NL80211_WOWLAN_PKTPAT_MASK]) !=
			    mask_len)
				goto error;
			if (pat_len > wowlan->pattern_max_len ||
			    pat_len < wowlan->pattern_min_len)
				goto error;

7440 7441 7442 7443 7444 7445 7446 7447 7448
			if (!pat_tb[NL80211_WOWLAN_PKTPAT_OFFSET])
				pkt_offset = 0;
			else
				pkt_offset = nla_get_u32(
					pat_tb[NL80211_WOWLAN_PKTPAT_OFFSET]);
			if (pkt_offset > wowlan->max_pkt_offset)
				goto error;
			new_triggers.patterns[i].pkt_offset = pkt_offset;

J
Johannes Berg 已提交
7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467
			new_triggers.patterns[i].mask =
				kmalloc(mask_len + pat_len, GFP_KERNEL);
			if (!new_triggers.patterns[i].mask) {
				err = -ENOMEM;
				goto error;
			}
			new_triggers.patterns[i].pattern =
				new_triggers.patterns[i].mask + mask_len;
			memcpy(new_triggers.patterns[i].mask,
			       nla_data(pat_tb[NL80211_WOWLAN_PKTPAT_MASK]),
			       mask_len);
			new_triggers.patterns[i].pattern_len = pat_len;
			memcpy(new_triggers.patterns[i].pattern,
			       nla_data(pat_tb[NL80211_WOWLAN_PKTPAT_PATTERN]),
			       pat_len);
			i++;
		}
	}

7468 7469 7470 7471 7472 7473 7474 7475
	if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
		err = nl80211_parse_wowlan_tcp(
			rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
			&new_triggers);
		if (err)
			goto error;
	}

7476 7477 7478 7479
	ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
	if (!ntrig) {
		err = -ENOMEM;
		goto error;
J
Johannes Berg 已提交
7480
	}
7481 7482
	cfg80211_rdev_free_wowlan(rdev);
	rdev->wowlan = ntrig;
J
Johannes Berg 已提交
7483

7484
 set_wakeup:
7485
	if (rdev->ops->set_wakeup && prev_enabled != !!rdev->wowlan)
7486
		rdev_set_wakeup(rdev, rdev->wowlan);
7487

J
Johannes Berg 已提交
7488 7489 7490 7491 7492
	return 0;
 error:
	for (i = 0; i < new_triggers.n_patterns; i++)
		kfree(new_triggers.patterns[i].mask);
	kfree(new_triggers.patterns);
7493 7494 7495
	if (new_triggers.tcp && new_triggers.tcp->sock)
		sock_release(new_triggers.tcp->sock);
	kfree(new_triggers.tcp);
J
Johannes Berg 已提交
7496 7497
	return err;
}
7498
#endif
J
Johannes Berg 已提交
7499

7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544
static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct nlattr *tb[NUM_NL80211_REKEY_DATA];
	struct cfg80211_gtk_rekey_data rekey_data;
	int err;

	if (!info->attrs[NL80211_ATTR_REKEY_DATA])
		return -EINVAL;

	err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
			nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
			nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
			nl80211_rekey_policy);
	if (err)
		return err;

	if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
		return -ERANGE;
	if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
		return -ERANGE;
	if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
		return -ERANGE;

	memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]),
	       NL80211_KEK_LEN);
	memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]),
	       NL80211_KCK_LEN);
	memcpy(rekey_data.replay_ctr,
	       nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]),
	       NL80211_REPLAY_CTR_LEN);

	wdev_lock(wdev);
	if (!wdev->current_bss) {
		err = -ENOTCONN;
		goto out;
	}

	if (!rdev->ops->set_rekey_data) {
		err = -EOPNOTSUPP;
		goto out;
	}

7545
	err = rdev_set_rekey_data(rdev, dev, &rekey_data);
7546 7547 7548 7549 7550
 out:
	wdev_unlock(wdev);
	return err;
}

7551 7552 7553 7554 7555 7556 7557 7558 7559 7560
static int nl80211_register_unexpected_frame(struct sk_buff *skb,
					     struct genl_info *info)
{
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;

	if (wdev->iftype != NL80211_IFTYPE_AP &&
	    wdev->iftype != NL80211_IFTYPE_P2P_GO)
		return -EINVAL;

7561
	if (wdev->ap_unexpected_nlportid)
7562 7563
		return -EBUSY;

7564
	wdev->ap_unexpected_nlportid = info->snd_portid;
7565 7566 7567
	return 0;
}

J
Johannes Berg 已提交
7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593
static int nl80211_probe_client(struct sk_buff *skb,
				struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct sk_buff *msg;
	void *hdr;
	const u8 *addr;
	u64 cookie;
	int err;

	if (wdev->iftype != NL80211_IFTYPE_AP &&
	    wdev->iftype != NL80211_IFTYPE_P2P_GO)
		return -EOPNOTSUPP;

	if (!info->attrs[NL80211_ATTR_MAC])
		return -EINVAL;

	if (!rdev->ops->probe_client)
		return -EOPNOTSUPP;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (!msg)
		return -ENOMEM;

7594
	hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
J
Johannes Berg 已提交
7595 7596 7597 7598 7599 7600 7601 7602 7603
			     NL80211_CMD_PROBE_CLIENT);

	if (IS_ERR(hdr)) {
		err = PTR_ERR(hdr);
		goto free_msg;
	}

	addr = nla_data(info->attrs[NL80211_ATTR_MAC]);

7604
	err = rdev_probe_client(rdev, dev, addr, &cookie);
J
Johannes Berg 已提交
7605 7606 7607
	if (err)
		goto free_msg;

7608 7609
	if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
		goto nla_put_failure;
J
Johannes Berg 已提交
7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621

	genlmsg_end(msg, hdr);

	return genlmsg_reply(msg, info);

 nla_put_failure:
	err = -ENOBUFS;
 free_msg:
	nlmsg_free(msg);
	return err;
}

7622 7623 7624
static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
7625 7626
	struct cfg80211_beacon_registration *reg, *nreg;
	int rv;
7627 7628 7629 7630

	if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
		return -EOPNOTSUPP;

7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645
	nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
	if (!nreg)
		return -ENOMEM;

	/* First, check if already registered. */
	spin_lock_bh(&rdev->beacon_registrations_lock);
	list_for_each_entry(reg, &rdev->beacon_registrations, list) {
		if (reg->nlportid == info->snd_portid) {
			rv = -EALREADY;
			goto out_err;
		}
	}
	/* Add it to the list */
	nreg->nlportid = info->snd_portid;
	list_add(&nreg->list, &rdev->beacon_registrations);
7646

7647
	spin_unlock_bh(&rdev->beacon_registrations_lock);
7648 7649

	return 0;
7650 7651 7652 7653
out_err:
	spin_unlock_bh(&rdev->beacon_registrations_lock);
	kfree(nreg);
	return rv;
7654 7655
}

7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676
static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct wireless_dev *wdev = info->user_ptr[1];
	int err;

	if (!rdev->ops->start_p2p_device)
		return -EOPNOTSUPP;

	if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
		return -EOPNOTSUPP;

	if (wdev->p2p_started)
		return 0;

	mutex_lock(&rdev->devlist_mtx);
	err = cfg80211_can_add_interface(rdev, wdev->iftype);
	mutex_unlock(&rdev->devlist_mtx);
	if (err)
		return err;

7677
	err = rdev_start_p2p_device(rdev, wdev);
7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702
	if (err)
		return err;

	wdev->p2p_started = true;
	mutex_lock(&rdev->devlist_mtx);
	rdev->opencount++;
	mutex_unlock(&rdev->devlist_mtx);

	return 0;
}

static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct wireless_dev *wdev = info->user_ptr[1];

	if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
		return -EOPNOTSUPP;

	if (!rdev->ops->stop_p2p_device)
		return -EOPNOTSUPP;

	if (!wdev->p2p_started)
		return 0;

7703
	rdev_stop_p2p_device(rdev, wdev);
7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717
	wdev->p2p_started = false;

	mutex_lock(&rdev->devlist_mtx);
	rdev->opencount--;
	mutex_unlock(&rdev->devlist_mtx);

	if (WARN_ON(rdev->scan_req && rdev->scan_req->wdev == wdev)) {
		rdev->scan_req->aborted = true;
		___cfg80211_scan_done(rdev, true);
	}

	return 0;
}

7718 7719 7720
#define NL80211_FLAG_NEED_WIPHY		0x01
#define NL80211_FLAG_NEED_NETDEV	0x02
#define NL80211_FLAG_NEED_RTNL		0x04
7721 7722 7723
#define NL80211_FLAG_CHECK_NETDEV_UP	0x08
#define NL80211_FLAG_NEED_NETDEV_UP	(NL80211_FLAG_NEED_NETDEV |\
					 NL80211_FLAG_CHECK_NETDEV_UP)
7724
#define NL80211_FLAG_NEED_WDEV		0x10
7725
/* If a netdev is associated, it must be UP, P2P must be started */
7726 7727
#define NL80211_FLAG_NEED_WDEV_UP	(NL80211_FLAG_NEED_WDEV |\
					 NL80211_FLAG_CHECK_NETDEV_UP)
7728 7729 7730 7731 7732

static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
			    struct genl_info *info)
{
	struct cfg80211_registered_device *rdev;
7733
	struct wireless_dev *wdev;
7734 7735 7736 7737 7738 7739 7740
	struct net_device *dev;
	bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;

	if (rtnl)
		rtnl_lock();

	if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
J
Johannes Berg 已提交
7741
		rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
7742 7743 7744 7745 7746 7747
		if (IS_ERR(rdev)) {
			if (rtnl)
				rtnl_unlock();
			return PTR_ERR(rdev);
		}
		info->user_ptr[0] = rdev;
7748 7749
	} else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
		   ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
7750 7751 7752 7753 7754
		mutex_lock(&cfg80211_mutex);
		wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
						  info->attrs);
		if (IS_ERR(wdev)) {
			mutex_unlock(&cfg80211_mutex);
7755 7756
			if (rtnl)
				rtnl_unlock();
7757
			return PTR_ERR(wdev);
7758
		}
7759 7760 7761 7762

		dev = wdev->netdev;
		rdev = wiphy_to_dev(wdev->wiphy);

7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773
		if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
			if (!dev) {
				mutex_unlock(&cfg80211_mutex);
				if (rtnl)
					rtnl_unlock();
				return -EINVAL;
			}

			info->user_ptr[1] = dev;
		} else {
			info->user_ptr[1] = wdev;
7774
		}
7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785

		if (dev) {
			if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
			    !netif_running(dev)) {
				mutex_unlock(&cfg80211_mutex);
				if (rtnl)
					rtnl_unlock();
				return -ENETDOWN;
			}

			dev_hold(dev);
7786 7787 7788 7789 7790 7791 7792
		} else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
			if (!wdev->p2p_started) {
				mutex_unlock(&cfg80211_mutex);
				if (rtnl)
					rtnl_unlock();
				return -ENETDOWN;
			}
7793
		}
7794 7795 7796 7797 7798

		cfg80211_lock_rdev(rdev);

		mutex_unlock(&cfg80211_mutex);

7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809
		info->user_ptr[0] = rdev;
	}

	return 0;
}

static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
			      struct genl_info *info)
{
	if (info->user_ptr[0])
		cfg80211_unlock_rdev(info->user_ptr[0]);
7810 7811 7812 7813 7814 7815 7816 7817 7818 7819
	if (info->user_ptr[1]) {
		if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
			struct wireless_dev *wdev = info->user_ptr[1];

			if (wdev->netdev)
				dev_put(wdev->netdev);
		} else {
			dev_put(info->user_ptr[1]);
		}
	}
7820 7821 7822 7823
	if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
		rtnl_unlock();
}

7824 7825 7826 7827 7828 7829 7830
static struct genl_ops nl80211_ops[] = {
	{
		.cmd = NL80211_CMD_GET_WIPHY,
		.doit = nl80211_get_wiphy,
		.dumpit = nl80211_dump_wiphy,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
7831
		.internal_flags = NL80211_FLAG_NEED_WIPHY,
7832 7833 7834 7835 7836 7837
	},
	{
		.cmd = NL80211_CMD_SET_WIPHY,
		.doit = nl80211_set_wiphy,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7838
		.internal_flags = NL80211_FLAG_NEED_RTNL,
7839 7840 7841 7842 7843 7844 7845
	},
	{
		.cmd = NL80211_CMD_GET_INTERFACE,
		.doit = nl80211_get_interface,
		.dumpit = nl80211_dump_interface,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
7846
		.internal_flags = NL80211_FLAG_NEED_WDEV,
7847 7848 7849 7850 7851 7852
	},
	{
		.cmd = NL80211_CMD_SET_INTERFACE,
		.doit = nl80211_set_interface,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7853 7854
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7855 7856 7857 7858 7859 7860
	},
	{
		.cmd = NL80211_CMD_NEW_INTERFACE,
		.doit = nl80211_new_interface,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7861 7862
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
7863 7864 7865 7866 7867
	},
	{
		.cmd = NL80211_CMD_DEL_INTERFACE,
		.doit = nl80211_del_interface,
		.policy = nl80211_policy,
7868
		.flags = GENL_ADMIN_PERM,
7869
		.internal_flags = NL80211_FLAG_NEED_WDEV |
7870
				  NL80211_FLAG_NEED_RTNL,
7871 7872 7873 7874 7875 7876
	},
	{
		.cmd = NL80211_CMD_GET_KEY,
		.doit = nl80211_get_key,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7877
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7878
				  NL80211_FLAG_NEED_RTNL,
7879 7880 7881 7882 7883 7884
	},
	{
		.cmd = NL80211_CMD_SET_KEY,
		.doit = nl80211_set_key,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7885
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7886
				  NL80211_FLAG_NEED_RTNL,
7887 7888 7889 7890 7891 7892
	},
	{
		.cmd = NL80211_CMD_NEW_KEY,
		.doit = nl80211_new_key,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7893
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7894
				  NL80211_FLAG_NEED_RTNL,
7895 7896 7897 7898 7899
	},
	{
		.cmd = NL80211_CMD_DEL_KEY,
		.doit = nl80211_del_key,
		.policy = nl80211_policy,
7900
		.flags = GENL_ADMIN_PERM,
7901
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7902
				  NL80211_FLAG_NEED_RTNL,
7903
	},
7904 7905 7906 7907
	{
		.cmd = NL80211_CMD_SET_BEACON,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7908
		.doit = nl80211_set_beacon,
7909
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7910
				  NL80211_FLAG_NEED_RTNL,
7911 7912
	},
	{
7913
		.cmd = NL80211_CMD_START_AP,
7914 7915
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7916
		.doit = nl80211_start_ap,
7917
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7918
				  NL80211_FLAG_NEED_RTNL,
7919 7920
	},
	{
7921
		.cmd = NL80211_CMD_STOP_AP,
7922 7923
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7924
		.doit = nl80211_stop_ap,
7925
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7926
				  NL80211_FLAG_NEED_RTNL,
7927
	},
7928 7929 7930
	{
		.cmd = NL80211_CMD_GET_STATION,
		.doit = nl80211_get_station,
7931
		.dumpit = nl80211_dump_station,
7932
		.policy = nl80211_policy,
7933 7934
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7935 7936 7937 7938 7939 7940
	},
	{
		.cmd = NL80211_CMD_SET_STATION,
		.doit = nl80211_set_station,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7941
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7942
				  NL80211_FLAG_NEED_RTNL,
7943 7944 7945 7946 7947 7948
	},
	{
		.cmd = NL80211_CMD_NEW_STATION,
		.doit = nl80211_new_station,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7949
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7950
				  NL80211_FLAG_NEED_RTNL,
7951 7952 7953 7954 7955
	},
	{
		.cmd = NL80211_CMD_DEL_STATION,
		.doit = nl80211_del_station,
		.policy = nl80211_policy,
7956
		.flags = GENL_ADMIN_PERM,
7957
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7958
				  NL80211_FLAG_NEED_RTNL,
7959 7960 7961 7962 7963 7964 7965
	},
	{
		.cmd = NL80211_CMD_GET_MPATH,
		.doit = nl80211_get_mpath,
		.dumpit = nl80211_dump_mpath,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7966
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7967
				  NL80211_FLAG_NEED_RTNL,
7968 7969 7970 7971 7972 7973
	},
	{
		.cmd = NL80211_CMD_SET_MPATH,
		.doit = nl80211_set_mpath,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7974
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7975
				  NL80211_FLAG_NEED_RTNL,
7976 7977 7978 7979 7980 7981
	},
	{
		.cmd = NL80211_CMD_NEW_MPATH,
		.doit = nl80211_new_mpath,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7982
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7983
				  NL80211_FLAG_NEED_RTNL,
7984 7985 7986 7987 7988
	},
	{
		.cmd = NL80211_CMD_DEL_MPATH,
		.doit = nl80211_del_mpath,
		.policy = nl80211_policy,
7989
		.flags = GENL_ADMIN_PERM,
7990
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7991
				  NL80211_FLAG_NEED_RTNL,
7992 7993 7994 7995 7996
	},
	{
		.cmd = NL80211_CMD_SET_BSS,
		.doit = nl80211_set_bss,
		.policy = nl80211_policy,
7997
		.flags = GENL_ADMIN_PERM,
7998
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7999
				  NL80211_FLAG_NEED_RTNL,
8000
	},
8001 8002 8003 8004 8005 8006
	{
		.cmd = NL80211_CMD_GET_REG,
		.doit = nl80211_get_reg,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
	},
8007 8008 8009 8010 8011 8012 8013 8014 8015 8016
	{
		.cmd = NL80211_CMD_SET_REG,
		.doit = nl80211_set_reg,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
	},
	{
		.cmd = NL80211_CMD_REQ_SET_REG,
		.doit = nl80211_req_set_reg,
		.policy = nl80211_policy,
8017 8018 8019
		.flags = GENL_ADMIN_PERM,
	},
	{
8020 8021
		.cmd = NL80211_CMD_GET_MESH_CONFIG,
		.doit = nl80211_get_mesh_config,
8022 8023
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
8024
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8025
				  NL80211_FLAG_NEED_RTNL,
8026 8027
	},
	{
8028 8029
		.cmd = NL80211_CMD_SET_MESH_CONFIG,
		.doit = nl80211_update_mesh_config,
8030
		.policy = nl80211_policy,
8031
		.flags = GENL_ADMIN_PERM,
8032
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8033
				  NL80211_FLAG_NEED_RTNL,
8034
	},
8035 8036 8037 8038 8039
	{
		.cmd = NL80211_CMD_TRIGGER_SCAN,
		.doit = nl80211_trigger_scan,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
J
Johannes Berg 已提交
8040
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
8041
				  NL80211_FLAG_NEED_RTNL,
8042 8043 8044 8045 8046 8047
	},
	{
		.cmd = NL80211_CMD_GET_SCAN,
		.policy = nl80211_policy,
		.dumpit = nl80211_dump_scan,
	},
8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063
	{
		.cmd = NL80211_CMD_START_SCHED_SCAN,
		.doit = nl80211_start_sched_scan,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_STOP_SCHED_SCAN,
		.doit = nl80211_stop_sched_scan,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
8064 8065 8066 8067 8068
	{
		.cmd = NL80211_CMD_AUTHENTICATE,
		.doit = nl80211_authenticate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8069
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8070
				  NL80211_FLAG_NEED_RTNL,
8071 8072 8073 8074 8075 8076
	},
	{
		.cmd = NL80211_CMD_ASSOCIATE,
		.doit = nl80211_associate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8077
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8078
				  NL80211_FLAG_NEED_RTNL,
8079 8080 8081 8082 8083 8084
	},
	{
		.cmd = NL80211_CMD_DEAUTHENTICATE,
		.doit = nl80211_deauthenticate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8085
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8086
				  NL80211_FLAG_NEED_RTNL,
8087 8088 8089 8090 8091 8092
	},
	{
		.cmd = NL80211_CMD_DISASSOCIATE,
		.doit = nl80211_disassociate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8093
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8094
				  NL80211_FLAG_NEED_RTNL,
8095
	},
J
Johannes Berg 已提交
8096 8097 8098 8099 8100
	{
		.cmd = NL80211_CMD_JOIN_IBSS,
		.doit = nl80211_join_ibss,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8101
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8102
				  NL80211_FLAG_NEED_RTNL,
J
Johannes Berg 已提交
8103 8104 8105 8106 8107 8108
	},
	{
		.cmd = NL80211_CMD_LEAVE_IBSS,
		.doit = nl80211_leave_ibss,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8109
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8110
				  NL80211_FLAG_NEED_RTNL,
J
Johannes Berg 已提交
8111
	},
8112 8113 8114 8115
#ifdef CONFIG_NL80211_TESTMODE
	{
		.cmd = NL80211_CMD_TESTMODE,
		.doit = nl80211_testmode_do,
W
Wey-Yi Guy 已提交
8116
		.dumpit = nl80211_testmode_dump,
8117 8118
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8119 8120
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
8121 8122
	},
#endif
S
Samuel Ortiz 已提交
8123 8124 8125 8126 8127
	{
		.cmd = NL80211_CMD_CONNECT,
		.doit = nl80211_connect,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8128
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8129
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
8130 8131 8132 8133 8134 8135
	},
	{
		.cmd = NL80211_CMD_DISCONNECT,
		.doit = nl80211_disconnect,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8136
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8137
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
8138
	},
8139 8140 8141 8142 8143
	{
		.cmd = NL80211_CMD_SET_WIPHY_NETNS,
		.doit = nl80211_wiphy_netns,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8144 8145
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
8146
	},
8147 8148 8149 8150 8151
	{
		.cmd = NL80211_CMD_GET_SURVEY,
		.policy = nl80211_policy,
		.dumpit = nl80211_dump_survey,
	},
S
Samuel Ortiz 已提交
8152 8153 8154 8155 8156
	{
		.cmd = NL80211_CMD_SET_PMKSA,
		.doit = nl80211_setdel_pmksa,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8157
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8158
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
8159 8160 8161 8162 8163 8164
	},
	{
		.cmd = NL80211_CMD_DEL_PMKSA,
		.doit = nl80211_setdel_pmksa,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8165
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8166
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
8167 8168 8169 8170 8171 8172
	},
	{
		.cmd = NL80211_CMD_FLUSH_PMKSA,
		.doit = nl80211_flush_pmksa,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8173
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
8174
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
8175
	},
8176 8177 8178 8179 8180
	{
		.cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
		.doit = nl80211_remain_on_channel,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8181
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
8182
				  NL80211_FLAG_NEED_RTNL,
8183 8184 8185 8186 8187 8188
	},
	{
		.cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
		.doit = nl80211_cancel_remain_on_channel,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8189
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
8190
				  NL80211_FLAG_NEED_RTNL,
8191
	},
8192 8193 8194 8195 8196
	{
		.cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
		.doit = nl80211_set_tx_bitrate_mask,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8197 8198
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
8199
	},
8200
	{
8201 8202
		.cmd = NL80211_CMD_REGISTER_FRAME,
		.doit = nl80211_register_mgmt,
8203 8204
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8205
		.internal_flags = NL80211_FLAG_NEED_WDEV |
8206
				  NL80211_FLAG_NEED_RTNL,
8207 8208
	},
	{
8209 8210
		.cmd = NL80211_CMD_FRAME,
		.doit = nl80211_tx_mgmt,
8211
		.policy = nl80211_policy,
8212
		.flags = GENL_ADMIN_PERM,
8213
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
8214 8215 8216 8217 8218 8219
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
		.doit = nl80211_tx_mgmt_cancel_wait,
		.policy = nl80211_policy,
8220
		.flags = GENL_ADMIN_PERM,
8221
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
8222
				  NL80211_FLAG_NEED_RTNL,
8223
	},
K
Kalle Valo 已提交
8224 8225 8226 8227 8228
	{
		.cmd = NL80211_CMD_SET_POWER_SAVE,
		.doit = nl80211_set_power_save,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8229 8230
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
K
Kalle Valo 已提交
8231 8232 8233 8234 8235 8236
	},
	{
		.cmd = NL80211_CMD_GET_POWER_SAVE,
		.doit = nl80211_get_power_save,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
8237 8238
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
K
Kalle Valo 已提交
8239
	},
8240 8241 8242 8243 8244
	{
		.cmd = NL80211_CMD_SET_CQM,
		.doit = nl80211_set_cqm,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8245 8246
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
8247
	},
8248 8249 8250 8251 8252
	{
		.cmd = NL80211_CMD_SET_CHANNEL,
		.doit = nl80211_set_channel,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8253 8254
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
8255
	},
8256 8257 8258 8259 8260
	{
		.cmd = NL80211_CMD_SET_WDS_PEER,
		.doit = nl80211_set_wds_peer,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8261 8262
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
8263
	},
8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279
	{
		.cmd = NL80211_CMD_JOIN_MESH,
		.doit = nl80211_join_mesh,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_LEAVE_MESH,
		.doit = nl80211_leave_mesh,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
8280
#ifdef CONFIG_PM
J
Johannes Berg 已提交
8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296
	{
		.cmd = NL80211_CMD_GET_WOWLAN,
		.doit = nl80211_get_wowlan,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_SET_WOWLAN,
		.doit = nl80211_set_wowlan,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
	},
8297
#endif
8298 8299 8300 8301 8302 8303 8304 8305
	{
		.cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
		.doit = nl80211_set_rekey_data,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321
	{
		.cmd = NL80211_CMD_TDLS_MGMT,
		.doit = nl80211_tdls_mgmt,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_TDLS_OPER,
		.doit = nl80211_tdls_oper,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
8322 8323 8324 8325 8326 8327 8328 8329
	{
		.cmd = NL80211_CMD_UNEXPECTED_FRAME,
		.doit = nl80211_register_unexpected_frame,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
	},
J
Johannes Berg 已提交
8330 8331 8332 8333 8334
	{
		.cmd = NL80211_CMD_PROBE_CLIENT,
		.doit = nl80211_probe_client,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
8335
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
J
Johannes Berg 已提交
8336 8337
				  NL80211_FLAG_NEED_RTNL,
	},
8338 8339 8340 8341 8342 8343 8344 8345
	{
		.cmd = NL80211_CMD_REGISTER_BEACONS,
		.doit = nl80211_register_beacons,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
	},
8346 8347 8348 8349 8350 8351 8352 8353
	{
		.cmd = NL80211_CMD_SET_NOACK_MAP,
		.doit = nl80211_set_noack_map,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
	},
8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369
	{
		.cmd = NL80211_CMD_START_P2P_DEVICE,
		.doit = nl80211_start_p2p_device,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_WDEV |
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_STOP_P2P_DEVICE,
		.doit = nl80211_stop_p2p_device,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
8370 8371 8372
	{
		.cmd = NL80211_CMD_SET_MCAST_RATE,
		.doit = nl80211_set_mcast_rate,
8373 8374 8375 8376 8377 8378 8379 8380
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_SET_MAC_ACL,
		.doit = nl80211_set_mac_acl,
8381 8382 8383 8384 8385
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
	},
8386 8387 8388 8389 8390 8391 8392 8393
	{
		.cmd = NL80211_CMD_RADAR_DETECT,
		.doit = nl80211_start_radar_detection,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
				  NL80211_FLAG_NEED_RTNL,
	},
8394
};
8395

8396 8397 8398
static struct genl_multicast_group nl80211_mlme_mcgrp = {
	.name = "mlme",
};
8399 8400 8401 8402 8403

/* multicast groups */
static struct genl_multicast_group nl80211_config_mcgrp = {
	.name = "config",
};
8404 8405 8406
static struct genl_multicast_group nl80211_scan_mcgrp = {
	.name = "scan",
};
8407 8408 8409
static struct genl_multicast_group nl80211_regulatory_mcgrp = {
	.name = "regulatory",
};
8410 8411 8412 8413 8414 8415 8416

/* notification functions */

void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
{
	struct sk_buff *msg;

8417
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8418 8419 8420 8421 8422 8423 8424 8425
	if (!msg)
		return;

	if (nl80211_send_wiphy(msg, 0, 0, 0, rdev) < 0) {
		nlmsg_free(msg);
		return;
	}

8426 8427
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_config_mcgrp.id, GFP_KERNEL);
8428 8429
}

8430 8431 8432 8433 8434 8435 8436
static int nl80211_add_scan_req(struct sk_buff *msg,
				struct cfg80211_registered_device *rdev)
{
	struct cfg80211_scan_request *req = rdev->scan_req;
	struct nlattr *nest;
	int i;

J
Johannes Berg 已提交
8437 8438
	ASSERT_RDEV_LOCK(rdev);

8439 8440 8441 8442 8443 8444
	if (WARN_ON(!req))
		return 0;

	nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
	if (!nest)
		goto nla_put_failure;
8445 8446 8447 8448
	for (i = 0; i < req->n_ssids; i++) {
		if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
			goto nla_put_failure;
	}
8449 8450 8451 8452 8453
	nla_nest_end(msg, nest);

	nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
	if (!nest)
		goto nla_put_failure;
8454 8455 8456 8457
	for (i = 0; i < req->n_channels; i++) {
		if (nla_put_u32(msg, i, req->channels[i]->center_freq))
			goto nla_put_failure;
	}
8458 8459
	nla_nest_end(msg, nest);

8460 8461 8462
	if (req->ie &&
	    nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
		goto nla_put_failure;
8463

8464 8465 8466
	if (req->flags)
		nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags);

8467 8468 8469 8470 8471
	return 0;
 nla_put_failure:
	return -ENOBUFS;
}

8472 8473
static int nl80211_send_scan_msg(struct sk_buff *msg,
				 struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
8474
				 struct wireless_dev *wdev,
8475
				 u32 portid, u32 seq, int flags,
8476
				 u32 cmd)
8477 8478 8479
{
	void *hdr;

8480
	hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
8481 8482 8483
	if (!hdr)
		return -1;

8484
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
J
Johannes Berg 已提交
8485 8486 8487
	    (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					 wdev->netdev->ifindex)) ||
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
8488
		goto nla_put_failure;
8489

8490 8491
	/* ignore errors and send incomplete event anyway */
	nl80211_add_scan_req(msg, rdev);
8492 8493 8494 8495 8496 8497 8498 8499

	return genlmsg_end(msg, hdr);

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
}

8500 8501 8502 8503
static int
nl80211_send_sched_scan_msg(struct sk_buff *msg,
			    struct cfg80211_registered_device *rdev,
			    struct net_device *netdev,
8504
			    u32 portid, u32 seq, int flags, u32 cmd)
8505 8506 8507
{
	void *hdr;

8508
	hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
8509 8510 8511
	if (!hdr)
		return -1;

8512 8513 8514
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;
8515 8516 8517 8518 8519 8520 8521 8522

	return genlmsg_end(msg, hdr);

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
}

8523
void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
8524
			     struct wireless_dev *wdev)
8525 8526 8527
{
	struct sk_buff *msg;

8528
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8529 8530 8531
	if (!msg)
		return;

J
Johannes Berg 已提交
8532
	if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
8533 8534 8535 8536 8537
				  NL80211_CMD_TRIGGER_SCAN) < 0) {
		nlmsg_free(msg);
		return;
	}

8538 8539
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
8540 8541
}

8542
void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
8543
			    struct wireless_dev *wdev)
8544 8545 8546
{
	struct sk_buff *msg;

8547
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8548 8549 8550
	if (!msg)
		return;

J
Johannes Berg 已提交
8551
	if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
8552
				  NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
8553 8554 8555 8556
		nlmsg_free(msg);
		return;
	}

8557 8558
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
8559 8560 8561
}

void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
8562
			       struct wireless_dev *wdev)
8563 8564 8565
{
	struct sk_buff *msg;

8566
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8567 8568 8569
	if (!msg)
		return;

J
Johannes Berg 已提交
8570
	if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
8571
				  NL80211_CMD_SCAN_ABORTED) < 0) {
8572 8573 8574 8575
		nlmsg_free(msg);
		return;
	}

8576 8577
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
8578 8579
}

8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603
void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
				     struct net_device *netdev)
{
	struct sk_buff *msg;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (!msg)
		return;

	if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
					NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
}

void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
			     struct net_device *netdev, u32 cmd)
{
	struct sk_buff *msg;

8604
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616
	if (!msg)
		return;

	if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
}

8617 8618 8619 8620 8621 8622 8623 8624 8625
/*
 * This can happen on global regulatory changes or device specific settings
 * based on custom world regulatory domains.
 */
void nl80211_send_reg_change_event(struct regulatory_request *request)
{
	struct sk_buff *msg;
	void *hdr;

8626
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8627 8628 8629 8630 8631 8632 8633 8634 8635 8636
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

	/* Userspace can always count this one always being set */
8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660
	if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
		goto nla_put_failure;

	if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
		if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
			       NL80211_REGDOM_TYPE_WORLD))
			goto nla_put_failure;
	} else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
		if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
			       NL80211_REGDOM_TYPE_CUSTOM_WORLD))
			goto nla_put_failure;
	} else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
		   request->intersect) {
		if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
			       NL80211_REGDOM_TYPE_INTERSECTION))
			goto nla_put_failure;
	} else {
		if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
			       NL80211_REGDOM_TYPE_COUNTRY) ||
		    nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
				   request->alpha2))
			goto nla_put_failure;
	}

J
Johannes Berg 已提交
8661
	if (request->wiphy_idx != WIPHY_IDX_INVALID &&
8662 8663
	    nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
		goto nla_put_failure;
8664

J
Johannes Berg 已提交
8665
	genlmsg_end(msg, hdr);
8666

8667
	rcu_read_lock();
8668
	genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
8669 8670
				GFP_ATOMIC);
	rcu_read_unlock();
8671 8672 8673 8674 8675 8676 8677 8678

	return;

nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8679 8680 8681
static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
				    struct net_device *netdev,
				    const u8 *buf, size_t len,
8682
				    enum nl80211_commands cmd, gfp_t gfp)
8683 8684 8685 8686
{
	struct sk_buff *msg;
	void *hdr;

8687
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8688 8689 8690 8691 8692 8693 8694 8695 8696
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8697 8698 8699 8700
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_FRAME, len, buf))
		goto nla_put_failure;
8701

J
Johannes Berg 已提交
8702
	genlmsg_end(msg, hdr);
8703

8704 8705
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
8706 8707 8708 8709 8710 8711 8712 8713
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
8714 8715
			  struct net_device *netdev, const u8 *buf,
			  size_t len, gfp_t gfp)
8716 8717
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
8718
				NL80211_CMD_AUTHENTICATE, gfp);
8719 8720 8721 8722
}

void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
			   struct net_device *netdev, const u8 *buf,
8723
			   size_t len, gfp_t gfp)
8724
{
8725 8726
	nl80211_send_mlme_event(rdev, netdev, buf, len,
				NL80211_CMD_ASSOCIATE, gfp);
8727 8728
}

8729
void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
8730 8731
			 struct net_device *netdev, const u8 *buf,
			 size_t len, gfp_t gfp)
8732 8733
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
8734
				NL80211_CMD_DEAUTHENTICATE, gfp);
8735 8736
}

8737 8738
void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
			   struct net_device *netdev, const u8 *buf,
8739
			   size_t len, gfp_t gfp)
8740 8741
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
8742
				NL80211_CMD_DISASSOCIATE, gfp);
8743 8744
}

8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760
void nl80211_send_unprot_deauth(struct cfg80211_registered_device *rdev,
				struct net_device *netdev, const u8 *buf,
				size_t len, gfp_t gfp)
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
				NL80211_CMD_UNPROT_DEAUTHENTICATE, gfp);
}

void nl80211_send_unprot_disassoc(struct cfg80211_registered_device *rdev,
				  struct net_device *netdev, const u8 *buf,
				  size_t len, gfp_t gfp)
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
				NL80211_CMD_UNPROT_DISASSOCIATE, gfp);
}

8761 8762
static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
				      struct net_device *netdev, int cmd,
8763
				      const u8 *addr, gfp_t gfp)
8764 8765 8766 8767
{
	struct sk_buff *msg;
	void *hdr;

8768
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8769 8770 8771 8772 8773 8774 8775 8776 8777
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8778 8779 8780 8781 8782
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
		goto nla_put_failure;
8783

J
Johannes Berg 已提交
8784
	genlmsg_end(msg, hdr);
8785

8786 8787
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
8788 8789 8790 8791 8792 8793 8794 8795
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
8796 8797
			       struct net_device *netdev, const u8 *addr,
			       gfp_t gfp)
8798 8799
{
	nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
8800
				  addr, gfp);
8801 8802 8803
}

void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
8804 8805
				struct net_device *netdev, const u8 *addr,
				gfp_t gfp)
8806
{
8807 8808
	nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
				  addr, gfp);
8809 8810
}

S
Samuel Ortiz 已提交
8811 8812 8813 8814 8815 8816 8817 8818 8819
void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
				 struct net_device *netdev, const u8 *bssid,
				 const u8 *req_ie, size_t req_ie_len,
				 const u8 *resp_ie, size_t resp_ie_len,
				 u16 status, gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

8820
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
S
Samuel Ortiz 已提交
8821 8822 8823 8824 8825 8826 8827 8828 8829
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8830 8831 8832 8833 8834 8835 8836 8837 8838
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
	    nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
	    (req_ie &&
	     nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
	    (resp_ie &&
	     nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
		goto nla_put_failure;
S
Samuel Ortiz 已提交
8839

J
Johannes Berg 已提交
8840
	genlmsg_end(msg, hdr);
S
Samuel Ortiz 已提交
8841

8842 8843
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
S
Samuel Ortiz 已提交
8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);

}

void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
			 struct net_device *netdev, const u8 *bssid,
			 const u8 *req_ie, size_t req_ie_len,
			 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

8860
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
S
Samuel Ortiz 已提交
8861 8862 8863 8864 8865 8866 8867 8868 8869
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8870 8871 8872 8873 8874 8875 8876 8877
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
	    (req_ie &&
	     nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
	    (resp_ie &&
	     nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
		goto nla_put_failure;
S
Samuel Ortiz 已提交
8878

J
Johannes Berg 已提交
8879
	genlmsg_end(msg, hdr);
S
Samuel Ortiz 已提交
8880

8881 8882
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
S
Samuel Ortiz 已提交
8883 8884 8885 8886 8887 8888 8889 8890 8891 8892
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);

}

void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
			       struct net_device *netdev, u16 reason,
J
Johannes Berg 已提交
8893
			       const u8 *ie, size_t ie_len, bool from_ap)
S
Samuel Ortiz 已提交
8894 8895 8896 8897
{
	struct sk_buff *msg;
	void *hdr;

8898
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
S
Samuel Ortiz 已提交
8899 8900 8901 8902 8903 8904 8905 8906 8907
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8908 8909 8910 8911 8912 8913 8914 8915
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    (from_ap && reason &&
	     nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
	    (from_ap &&
	     nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
	    (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
		goto nla_put_failure;
S
Samuel Ortiz 已提交
8916

J
Johannes Berg 已提交
8917
	genlmsg_end(msg, hdr);
S
Samuel Ortiz 已提交
8918

8919 8920
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, GFP_KERNEL);
S
Samuel Ortiz 已提交
8921 8922 8923 8924 8925 8926 8927 8928
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);

}

J
Johannes Berg 已提交
8929 8930 8931 8932 8933 8934 8935
void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
			     struct net_device *netdev, const u8 *bssid,
			     gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

8936
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
J
Johannes Berg 已提交
8937 8938 8939 8940 8941 8942 8943 8944 8945
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8946 8947 8948 8949
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
		goto nla_put_failure;
J
Johannes Berg 已提交
8950

J
Johannes Berg 已提交
8951
	genlmsg_end(msg, hdr);
J
Johannes Berg 已提交
8952

8953 8954
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
J
Johannes Berg 已提交
8955 8956 8957 8958 8959 8960 8961
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979
void nl80211_send_new_peer_candidate(struct cfg80211_registered_device *rdev,
		struct net_device *netdev,
		const u8 *macaddr, const u8* ie, u8 ie_len,
		gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8980 8981 8982 8983 8984 8985
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, macaddr) ||
	    (ie_len && ie &&
	     nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
		goto nla_put_failure;
8986

J
Johannes Berg 已提交
8987
	genlmsg_end(msg, hdr);
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8998 8999 9000
void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
				 struct net_device *netdev, const u8 *addr,
				 enum nl80211_key_type key_type, int key_id,
9001
				 const u8 *tsc, gfp_t gfp)
9002 9003 9004 9005
{
	struct sk_buff *msg;
	void *hdr;

9006
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9007 9008 9009 9010 9011 9012 9013 9014 9015
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9016 9017 9018 9019 9020 9021 9022 9023
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
	    nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
	    (key_id != -1 &&
	     nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
	    (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
		goto nla_put_failure;
9024

J
Johannes Berg 已提交
9025
	genlmsg_end(msg, hdr);
9026

9027 9028
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
9029 9030 9031 9032 9033 9034 9035
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9036 9037 9038 9039 9040 9041 9042 9043
void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
				    struct ieee80211_channel *channel_before,
				    struct ieee80211_channel *channel_after)
{
	struct sk_buff *msg;
	void *hdr;
	struct nlattr *nl_freq;

9044
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

	/*
	 * Since we are applying the beacon hint to a wiphy we know its
	 * wiphy_idx is valid
	 */
9058 9059
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
		goto nla_put_failure;
9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076

	/* Before */
	nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
	if (!nl_freq)
		goto nla_put_failure;
	if (nl80211_msg_put_channel(msg, channel_before))
		goto nla_put_failure;
	nla_nest_end(msg, nl_freq);

	/* After */
	nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
	if (!nl_freq)
		goto nla_put_failure;
	if (nl80211_msg_put_channel(msg, channel_after))
		goto nla_put_failure;
	nla_nest_end(msg, nl_freq);

J
Johannes Berg 已提交
9077
	genlmsg_end(msg, hdr);
9078

9079 9080 9081 9082
	rcu_read_lock();
	genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
				GFP_ATOMIC);
	rcu_read_unlock();
9083 9084 9085 9086 9087 9088 9089 9090

	return;

nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9091 9092
static void nl80211_send_remain_on_chan_event(
	int cmd, struct cfg80211_registered_device *rdev,
9093
	struct wireless_dev *wdev, u64 cookie,
9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109
	struct ieee80211_channel *chan,
	unsigned int duration, gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9110
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9111 9112
	    (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					 wdev->netdev->ifindex)) ||
9113
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
9114
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
9115 9116
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
			NL80211_CHAN_NO_HT) ||
9117 9118
	    nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
		goto nla_put_failure;
9119

9120 9121 9122
	if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
	    nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
		goto nla_put_failure;
9123

J
Johannes Berg 已提交
9124
	genlmsg_end(msg, hdr);
9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

void nl80211_send_remain_on_channel(struct cfg80211_registered_device *rdev,
9136
				    struct wireless_dev *wdev, u64 cookie,
9137 9138 9139 9140
				    struct ieee80211_channel *chan,
				    unsigned int duration, gfp_t gfp)
{
	nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
9141
					  rdev, wdev, cookie, chan,
9142
					  duration, gfp);
9143 9144 9145
}

void nl80211_send_remain_on_channel_cancel(
9146 9147
	struct cfg80211_registered_device *rdev,
	struct wireless_dev *wdev,
9148
	u64 cookie, struct ieee80211_channel *chan, gfp_t gfp)
9149 9150
{
	nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9151
					  rdev, wdev, cookie, chan, 0, gfp);
9152 9153
}

9154 9155 9156 9157 9158 9159
void nl80211_send_sta_event(struct cfg80211_registered_device *rdev,
			    struct net_device *dev, const u8 *mac_addr,
			    struct station_info *sinfo, gfp_t gfp)
{
	struct sk_buff *msg;

9160
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9161 9162 9163
	if (!msg)
		return;

9164 9165
	if (nl80211_send_station(msg, 0, 0, 0,
				 rdev, dev, mac_addr, sinfo) < 0) {
9166 9167 9168 9169 9170 9171 9172 9173
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
}

9174 9175 9176 9177 9178 9179 9180
void nl80211_send_sta_del_event(struct cfg80211_registered_device *rdev,
				struct net_device *dev, const u8 *mac_addr,
				gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

9181
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9182 9183 9184 9185 9186 9187 9188 9189 9190
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9191 9192 9193
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
		goto nla_put_failure;
9194

J
Johannes Berg 已提交
9195
	genlmsg_end(msg, hdr);
9196 9197 9198 9199 9200 9201 9202 9203 9204 9205

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239
void nl80211_send_conn_failed_event(struct cfg80211_registered_device *rdev,
				    struct net_device *dev, const u8 *mac_addr,
				    enum nl80211_connect_failed_reason reason,
				    gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
	    nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
		goto nla_put_failure;

	genlmsg_end(msg, hdr);

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9240 9241
static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
				       const u8 *addr, gfp_t gfp)
9242 9243 9244 9245 9246 9247
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct sk_buff *msg;
	void *hdr;
	int err;
9248
	u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
9249

9250
	if (!nlportid)
9251 9252 9253 9254 9255 9256
		return false;

	msg = nlmsg_new(100, gfp);
	if (!msg)
		return true;

9257
	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9258 9259 9260 9261 9262
	if (!hdr) {
		nlmsg_free(msg);
		return true;
	}

9263 9264 9265 9266
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
		goto nla_put_failure;
9267 9268 9269 9270 9271 9272 9273

	err = genlmsg_end(msg, hdr);
	if (err < 0) {
		nlmsg_free(msg);
		return true;
	}

9274
	genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
9275 9276 9277 9278 9279 9280 9281 9282
	return true;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
	return true;
}

9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296
bool nl80211_unexpected_frame(struct net_device *dev, const u8 *addr, gfp_t gfp)
{
	return __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
					  addr, gfp);
}

bool nl80211_unexpected_4addr_frame(struct net_device *dev,
				    const u8 *addr, gfp_t gfp)
{
	return __nl80211_unexpected_frame(dev,
					  NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
					  addr, gfp);
}

9297
int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
9298
		      struct wireless_dev *wdev, u32 nlportid,
9299 9300
		      int freq, int sig_dbm,
		      const u8 *buf, size_t len, gfp_t gfp)
9301
{
9302
	struct net_device *netdev = wdev->netdev;
9303 9304 9305 9306 9307 9308 9309
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return -ENOMEM;

9310
	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
9311 9312 9313 9314 9315
	if (!hdr) {
		nlmsg_free(msg);
		return -ENOMEM;
	}

9316
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9317 9318
	    (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					netdev->ifindex)) ||
9319 9320 9321 9322 9323
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
	    (sig_dbm &&
	     nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
	    nla_put(msg, NL80211_ATTR_FRAME, len, buf))
		goto nla_put_failure;
9324

J
Johannes Berg 已提交
9325
	genlmsg_end(msg, hdr);
9326

9327
	return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
9328 9329 9330 9331 9332 9333 9334

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
	return -ENOBUFS;
}

9335
void nl80211_send_mgmt_tx_status(struct cfg80211_registered_device *rdev,
9336
				 struct wireless_dev *wdev, u64 cookie,
9337 9338
				 const u8 *buf, size_t len, bool ack,
				 gfp_t gfp)
9339
{
9340
	struct net_device *netdev = wdev->netdev;
9341 9342 9343 9344 9345 9346 9347
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return;

9348
	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
9349 9350 9351 9352 9353
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9354
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9355 9356
	    (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
				   netdev->ifindex)) ||
9357 9358 9359 9360
	    nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
	    nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
	    (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
		goto nla_put_failure;
9361

J
Johannes Berg 已提交
9362
	genlmsg_end(msg, hdr);
9363 9364 9365 9366 9367 9368 9369 9370 9371

	genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9372 9373 9374 9375 9376 9377 9378 9379 9380 9381
void
nl80211_send_cqm_rssi_notify(struct cfg80211_registered_device *rdev,
			     struct net_device *netdev,
			     enum nl80211_cqm_rssi_threshold_event rssi_event,
			     gfp_t gfp)
{
	struct sk_buff *msg;
	struct nlattr *pinfoattr;
	void *hdr;

9382
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9383 9384 9385 9386 9387 9388 9389 9390 9391
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9392 9393 9394
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;
9395 9396 9397 9398 9399

	pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
	if (!pinfoattr)
		goto nla_put_failure;

9400 9401 9402
	if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
			rssi_event))
		goto nla_put_failure;
9403 9404 9405

	nla_nest_end(msg, pinfoattr);

J
Johannes Berg 已提交
9406
	genlmsg_end(msg, hdr);
9407 9408 9409 9410 9411 9412 9413 9414 9415 9416

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9417 9418 9419 9420 9421 9422 9423 9424
void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
			      struct net_device *netdev, const u8 *bssid,
			      const u8 *replay_ctr, gfp_t gfp)
{
	struct sk_buff *msg;
	struct nlattr *rekey_attr;
	void *hdr;

9425
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9426 9427 9428 9429 9430 9431 9432 9433 9434
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9435 9436 9437 9438
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
		goto nla_put_failure;
9439 9440 9441 9442 9443

	rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
	if (!rekey_attr)
		goto nla_put_failure;

9444 9445 9446
	if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
		    NL80211_REPLAY_CTR_LEN, replay_ctr))
		goto nla_put_failure;
9447 9448 9449

	nla_nest_end(msg, rekey_attr);

J
Johannes Berg 已提交
9450
	genlmsg_end(msg, hdr);
9451 9452 9453 9454 9455 9456 9457 9458 9459 9460

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9461 9462 9463 9464 9465 9466 9467 9468
void nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
				    struct net_device *netdev, int index,
				    const u8 *bssid, bool preauth, gfp_t gfp)
{
	struct sk_buff *msg;
	struct nlattr *attr;
	void *hdr;

9469
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9470 9471 9472 9473 9474 9475 9476 9477 9478
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9479 9480 9481
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;
9482 9483 9484 9485 9486

	attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
	if (!attr)
		goto nla_put_failure;

9487 9488 9489 9490 9491
	if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
	    nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
	    (preauth &&
	     nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
		goto nla_put_failure;
9492 9493 9494

	nla_nest_end(msg, attr);

J
Johannes Berg 已提交
9495
	genlmsg_end(msg, hdr);
9496 9497 9498 9499 9500 9501 9502 9503 9504 9505

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9506
void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
9507 9508
			      struct net_device *netdev,
			      struct cfg80211_chan_def *chandef, gfp_t gfp)
9509 9510 9511 9512
{
	struct sk_buff *msg;
	void *hdr;

9513
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9514 9515 9516 9517 9518 9519 9520 9521 9522
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9523 9524 9525 9526
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;

	if (nl80211_send_chandef(msg, chandef))
9527
		goto nla_put_failure;
9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539

	genlmsg_end(msg, hdr);

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589
void
nl80211_send_cqm_txe_notify(struct cfg80211_registered_device *rdev,
			    struct net_device *netdev, const u8 *peer,
			    u32 num_packets, u32 rate, u32 intvl, gfp_t gfp)
{
	struct sk_buff *msg;
	struct nlattr *pinfoattr;
	void *hdr;

	msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
		goto nla_put_failure;

	pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
	if (!pinfoattr)
		goto nla_put_failure;

	if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
		goto nla_put_failure;

	if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
		goto nla_put_failure;

	if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
		goto nla_put_failure;

	nla_nest_end(msg, pinfoattr);

	genlmsg_end(msg, hdr);

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640
void
nl80211_radar_notify(struct cfg80211_registered_device *rdev,
		     struct cfg80211_chan_def *chandef,
		     enum nl80211_radar_event event,
		     struct net_device *netdev, gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
		goto nla_put_failure;

	/* NOP and radar events don't need a netdev parameter */
	if (netdev) {
		struct wireless_dev *wdev = netdev->ieee80211_ptr;

		if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
		    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
			goto nla_put_failure;
	}

	if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
		goto nla_put_failure;

	if (nl80211_send_chandef(msg, chandef))
		goto nla_put_failure;

	if (genlmsg_end(msg, hdr) < 0) {
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

9641 9642 9643 9644 9645 9646 9647 9648 9649
void
nl80211_send_cqm_pktloss_notify(struct cfg80211_registered_device *rdev,
				struct net_device *netdev, const u8 *peer,
				u32 num_packets, gfp_t gfp)
{
	struct sk_buff *msg;
	struct nlattr *pinfoattr;
	void *hdr;

9650
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9651 9652 9653 9654 9655 9656 9657 9658 9659
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9660 9661 9662 9663
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
		goto nla_put_failure;
9664 9665 9666 9667 9668

	pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
	if (!pinfoattr)
		goto nla_put_failure;

9669 9670
	if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
		goto nla_put_failure;
9671 9672 9673

	nla_nest_end(msg, pinfoattr);

J
Johannes Berg 已提交
9674
	genlmsg_end(msg, hdr);
9675 9676 9677 9678 9679 9680 9681 9682 9683 9684

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

J
Johannes Berg 已提交
9685 9686 9687 9688 9689 9690 9691 9692 9693
void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
			   u64 cookie, bool acked, gfp_t gfp)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct sk_buff *msg;
	void *hdr;
	int err;

9694 9695
	trace_cfg80211_probe_status(dev, addr, cookie, acked);

9696
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
9697

J
Johannes Berg 已提交
9698 9699 9700 9701 9702 9703 9704 9705 9706
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

9707 9708 9709 9710 9711 9712
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
	    nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
	    (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
		goto nla_put_failure;
J
Johannes Berg 已提交
9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729

	err = genlmsg_end(msg, hdr);
	if (err < 0) {
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}
EXPORT_SYMBOL(cfg80211_probe_status);

9730 9731
void cfg80211_report_obss_beacon(struct wiphy *wiphy,
				 const u8 *frame, size_t len,
9732
				 int freq, int sig_dbm)
9733 9734 9735 9736
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
	struct sk_buff *msg;
	void *hdr;
9737
	struct cfg80211_beacon_registration *reg;
9738

9739 9740
	trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);

9741 9742 9743 9744 9745 9746 9747
	spin_lock_bh(&rdev->beacon_registrations_lock);
	list_for_each_entry(reg, &rdev->beacon_registrations, list) {
		msg = nlmsg_new(len + 100, GFP_ATOMIC);
		if (!msg) {
			spin_unlock_bh(&rdev->beacon_registrations_lock);
			return;
		}
9748

9749 9750 9751
		hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
		if (!hdr)
			goto nla_put_failure;
9752

9753 9754 9755 9756 9757 9758 9759
		if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
		    (freq &&
		     nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
		    (sig_dbm &&
		     nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
		    nla_put(msg, NL80211_ATTR_FRAME, len, frame))
			goto nla_put_failure;
9760

9761
		genlmsg_end(msg, hdr);
9762

9763 9764 9765
		genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
	}
	spin_unlock_bh(&rdev->beacon_registrations_lock);
9766 9767 9768
	return;

 nla_put_failure:
9769 9770 9771
	spin_unlock_bh(&rdev->beacon_registrations_lock);
	if (hdr)
		genlmsg_cancel(msg, hdr);
9772 9773 9774 9775
	nlmsg_free(msg);
}
EXPORT_SYMBOL(cfg80211_report_obss_beacon);

9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835
#ifdef CONFIG_PM
void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
				   struct cfg80211_wowlan_wakeup *wakeup,
				   gfp_t gfp)
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct sk_buff *msg;
	void *hdr;
	int err, size = 200;

	trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);

	if (wakeup)
		size += wakeup->packet_present_len;

	msg = nlmsg_new(size, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
	if (!hdr)
		goto free_msg;

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
		goto free_msg;

	if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					wdev->netdev->ifindex))
		goto free_msg;

	if (wakeup) {
		struct nlattr *reasons;

		reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);

		if (wakeup->disconnect &&
		    nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
			goto free_msg;
		if (wakeup->magic_pkt &&
		    nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
			goto free_msg;
		if (wakeup->gtk_rekey_failure &&
		    nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
			goto free_msg;
		if (wakeup->eap_identity_req &&
		    nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
			goto free_msg;
		if (wakeup->four_way_handshake &&
		    nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
			goto free_msg;
		if (wakeup->rfkill_release &&
		    nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
			goto free_msg;

		if (wakeup->pattern_idx >= 0 &&
		    nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
				wakeup->pattern_idx))
			goto free_msg;

9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846
		if (wakeup->tcp_match)
			nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH);

		if (wakeup->tcp_connlost)
			nla_put_flag(msg,
				     NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST);

		if (wakeup->tcp_nomoretokens)
			nla_put_flag(msg,
				NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS);

9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883
		if (wakeup->packet) {
			u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
			u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;

			if (!wakeup->packet_80211) {
				pkt_attr =
					NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
				len_attr =
					NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
			}

			if (wakeup->packet_len &&
			    nla_put_u32(msg, len_attr, wakeup->packet_len))
				goto free_msg;

			if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
				    wakeup->packet))
				goto free_msg;
		}

		nla_nest_end(msg, reasons);
	}

	err = genlmsg_end(msg, hdr);
	if (err < 0)
		goto free_msg;

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 free_msg:
	nlmsg_free(msg);
}
EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
#endif

9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930
void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
				enum nl80211_tdls_operation oper,
				u16 reason_code, gfp_t gfp)
{
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
	struct sk_buff *msg;
	void *hdr;
	int err;

	trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
					 reason_code);

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
	    (reason_code > 0 &&
	     nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
		goto nla_put_failure;

	err = genlmsg_end(msg, hdr);
	if (err < 0) {
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}
EXPORT_SYMBOL(cfg80211_tdls_oper_request);

9931 9932 9933 9934 9935 9936 9937
static int nl80211_netlink_notify(struct notifier_block * nb,
				  unsigned long state,
				  void *_notify)
{
	struct netlink_notify *notify = _notify;
	struct cfg80211_registered_device *rdev;
	struct wireless_dev *wdev;
9938
	struct cfg80211_beacon_registration *reg, *tmp;
9939 9940 9941 9942 9943 9944

	if (state != NETLINK_URELEASE)
		return NOTIFY_DONE;

	rcu_read_lock();

9945
	list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
9946
		list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
9947
			cfg80211_mlme_unregister_socket(wdev, notify->portid);
9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958

		spin_lock_bh(&rdev->beacon_registrations_lock);
		list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
					 list) {
			if (reg->nlportid == notify->portid) {
				list_del(&reg->list);
				kfree(reg);
				break;
			}
		}
		spin_unlock_bh(&rdev->beacon_registrations_lock);
9959
	}
9960 9961 9962 9963 9964 9965 9966 9967 9968 9969

	rcu_read_unlock();

	return NOTIFY_DONE;
}

static struct notifier_block nl80211_netlink_notifier = {
	.notifier_call = nl80211_netlink_notify,
};

9970 9971 9972 9973
/* initialisation/exit functions */

int nl80211_init(void)
{
9974
	int err;
9975

9976 9977
	err = genl_register_family_with_ops(&nl80211_fam,
		nl80211_ops, ARRAY_SIZE(nl80211_ops));
9978 9979 9980 9981 9982 9983 9984
	if (err)
		return err;

	err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
	if (err)
		goto err_out;

9985 9986 9987 9988
	err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
	if (err)
		goto err_out;

9989 9990 9991 9992
	err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
	if (err)
		goto err_out;

9993 9994 9995 9996
	err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
	if (err)
		goto err_out;

9997 9998 9999 10000 10001 10002
#ifdef CONFIG_NL80211_TESTMODE
	err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp);
	if (err)
		goto err_out;
#endif

10003 10004 10005 10006
	err = netlink_register_notifier(&nl80211_netlink_notifier);
	if (err)
		goto err_out;

10007 10008 10009 10010 10011 10012 10013 10014
	return 0;
 err_out:
	genl_unregister_family(&nl80211_fam);
	return err;
}

void nl80211_exit(void)
{
10015
	netlink_unregister_notifier(&nl80211_netlink_notifier);
10016 10017
	genl_unregister_family(&nl80211_fam);
}