nl80211.c 232.5 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 23
#include "core.h"
#include "nl80211.h"
24
#include "reg.h"
25

26 27 28 29 30 31
static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type);
static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
				   struct genl_info *info,
				   struct cfg80211_crypto_settings *settings,
				   int cipher_limit);

32 33 34 35 36
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);

37 38 39 40 41 42 43
/* 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,
44
	.netnsok = true,
45 46
	.pre_doit = nl80211_pre_doit,
	.post_doit = nl80211_post_doit,
47 48
};

49 50 51
/* returns ERR_PTR values */
static struct wireless_dev *
__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
52
{
53 54 55 56 57 58 59
	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;
60

61
	assert_cfg80211_lock();
62

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

66 67 68 69 70
	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;
71 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
	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);
103 104
}

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

	assert_cfg80211_lock();

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

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

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
	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;
		}
	}

148 149
	if (attrs[NL80211_ATTR_IFINDEX]) {
		int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
J
Johannes Berg 已提交
150
		netdev = dev_get_by_index(netns, ifindex);
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
		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;
169 170 171
		}
	}

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

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

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

/*
 * 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 已提交
202
cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
203 204 205 206
{
	struct cfg80211_registered_device *rdev;

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

	/* 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;
}

220
/* policy for the attributes */
A
Alexey Dobriyan 已提交
221
static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
222 223
	[NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
224
				      .len = 20-1 },
225
	[NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
226
	[NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
S
Sujith 已提交
227
	[NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
228 229 230 231
	[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 },
232
	[NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
233 234 235 236

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

E
Eliad Peller 已提交
238 239
	[NL80211_ATTR_MAC] = { .len = ETH_ALEN },
	[NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
240

241
	[NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
242 243 244 245 246
	[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 },
247
	[NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
248
	[NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
249 250 251 252 253 254 255

	[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 },
256 257 258 259 260
	[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 },
261
	[NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
262
	[NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
J
Johannes Berg 已提交
263
	[NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
264
	[NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
265
				   .len = IEEE80211_MAX_MESH_ID_LEN },
266
	[NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
267

268 269 270
	[NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
	[NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },

271 272 273
	[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 },
274 275
	[NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
					   .len = NL80211_MAX_SUPP_RATES },
276
	[NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
277

278
	[NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
279
	[NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
280

281
	[NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
282 283 284 285

	[NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
	[NL80211_ATTR_IE] = { .type = NLA_BINARY,
			      .len = IEEE80211_MAX_DATA_LEN },
286 287
	[NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
	[NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
288 289 290 291 292

	[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 已提交
293
	[NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
294
	[NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
295
	[NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
296 297 298
	[NL80211_ATTR_STA_FLAGS2] = {
		.len = sizeof(struct nl80211_sta_flag_update),
	},
299
	[NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
300 301
	[NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
	[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
S
Samuel Ortiz 已提交
302 303 304
	[NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
	[NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
	[NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
305
	[NL80211_ATTR_PID] = { .type = NLA_U32 },
306
	[NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
S
Samuel Ortiz 已提交
307 308
	[NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
				 .len = WLAN_PMKID_LEN },
309 310
	[NL80211_ATTR_DURATION] = { .type = NLA_U32 },
	[NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
311
	[NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
312 313 314
	[NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
				 .len = IEEE80211_MAX_DATA_LEN },
	[NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
K
Kalle Valo 已提交
315
	[NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
316
	[NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
317
	[NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
318
	[NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
319 320
	[NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
321
	[NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
322 323
	[NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
	[NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
324
	[NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
325
	[NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
326
	[NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
J
Johannes Berg 已提交
327
	[NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
328
	[NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
329
	[NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
330
	[NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
331
	[NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
332
	[NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
333 334 335 336
	[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 },
337
	[NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
338
	[NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
339
	[NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
340 341 342 343 344
	[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 },
345
	[NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
346 347
	[NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
				      .len = IEEE80211_MAX_DATA_LEN },
348
	[NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
349 350 351 352
	[NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
	[NL80211_ATTR_HT_CAPABILITY_MASK] = {
		.len = NL80211_HT_CAPABILITY_LEN
	},
353
	[NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
354
	[NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
355
	[NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
356
	[NL80211_ATTR_WDEV] = { .type = NLA_U64 },
357
	[NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
358 359
};

360
/* policy for the key attributes */
A
Alexey Dobriyan 已提交
361
static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
J
Johannes Berg 已提交
362
	[NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
363 364
	[NL80211_KEY_IDX] = { .type = NLA_U8 },
	[NL80211_KEY_CIPHER] = { .type = NLA_U32 },
365
	[NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
366 367
	[NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
	[NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
368
	[NL80211_KEY_TYPE] = { .type = NLA_U32 },
369 370 371 372 373 374 375 376
	[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 },
377 378
};

J
Johannes Berg 已提交
379 380 381 382 383 384 385
/* 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 },
386 387 388 389
	[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 },
J
Johannes Berg 已提交
390 391
};

392 393 394 395 396 397 398 399
/* 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 },
};

400 401
static const struct nla_policy
nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
402
	[NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
403
						 .len = IEEE80211_MAX_SSID_LEN },
404
	[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
405 406
};

407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
/* 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;
}

427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
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);
451 452
	if (IS_ERR(*rdev)) {
		err = PTR_ERR(*rdev);
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
		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();
}

468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
/* 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;
}

498 499 500 501 502 503 504 505
/* message building helper */
static inline void *nl80211hdr_put(struct sk_buff *skb, u32 pid, u32 seq,
				   int flags, u8 cmd)
{
	/* since there is no private header just add the generic one */
	return genlmsg_put(skb, pid, seq, &nl80211_fam, flags, cmd);
}

506 507 508
static int nl80211_msg_put_channel(struct sk_buff *msg,
				   struct ieee80211_channel *chan)
{
509 510 511
	if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
			chan->center_freq))
		goto nla_put_failure;
512

513 514 515 516 517 518 519 520 521 522 523 524
	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;
	if ((chan->flags & IEEE80211_CHAN_RADAR) &&
	    nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
		goto nla_put_failure;
525

526 527 528
	if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
			DBM_TO_MBM(chan->max_power)))
		goto nla_put_failure;
529 530 531 532 533 534 535

	return 0;

 nla_put_failure:
	return -ENOBUFS;
}

536 537
/* netlink command implementations */

538 539 540
struct key_parse {
	struct key_params p;
	int idx;
541
	int type;
542
	bool def, defmgmt;
543
	bool def_uni, def_multi;
544 545 546 547 548 549 550 551 552 553 554 555 556
};

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];

557 558 559 560 561 562 563
	if (k->def) {
		k->def_uni = true;
		k->def_multi = true;
	}
	if (k->defmgmt)
		k->def_multi = true;

564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
	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]);

580 581 582 583 584 585
	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;
	}

586 587
	if (tb[NL80211_KEY_DEFAULT_TYPES]) {
		struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
588 589 590
		err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
				       tb[NL80211_KEY_DEFAULT_TYPES],
				       nl80211_key_default_policy);
591 592 593 594 595 596 597
		if (err)
			return err;

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

598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
	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];

622 623 624 625 626 627 628
	if (k->def) {
		k->def_uni = true;
		k->def_multi = true;
	}
	if (k->defmgmt)
		k->def_multi = true;

629 630 631 632 633 634
	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;
	}

635 636 637 638 639 640 641 642 643 644 645 646 647
	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];
	}

648 649 650 651 652 653 654 655 656
	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;
657
	k->type = -1;
658 659 660 661 662 663 664 665 666 667 668 669

	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;

670 671 672 673 674
	if (k->defmgmt) {
		if (k->def_uni || !k->def_multi)
			return -EINVAL;
	}

675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
	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 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
static struct cfg80211_cached_keys *
nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
		       struct nlattr *keys)
{
	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;
724 725
			if (!parse.def_uni || !parse.def_multi)
				goto error;
J
Johannes Berg 已提交
726 727 728
		} else if (parse.defmgmt)
			goto error;
		err = cfg80211_validate_key_settings(rdev, &parse.p,
729
						     parse.idx, false, NULL);
J
Johannes Berg 已提交
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
		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);
	}

	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:
751
	case NL80211_IFTYPE_P2P_GO:
752
	case NL80211_IFTYPE_MESH_POINT:
J
Johannes Berg 已提交
753 754 755 756 757 758
		break;
	case NL80211_IFTYPE_ADHOC:
		if (!wdev->current_bss)
			return -ENOLINK;
		break;
	case NL80211_IFTYPE_STATION:
759
	case NL80211_IFTYPE_P2P_CLIENT:
J
Johannes Berg 已提交
760 761 762 763 764 765 766 767 768 769
		if (wdev->sme_state != CFG80211_SME_CONNECTED)
			return -ENOLINK;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

770 771 772 773 774 775 776 777 778 779
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) {
780 781
		if ((ifmodes & 1) && nla_put_flag(msg, i))
			goto nla_put_failure;
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
		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;
824 825 826
			if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
					c->limits[j].max))
				goto nla_put_failure;
827 828 829 830 831 832 833 834
			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);

835 836 837 838 839 840 841 842
		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;
843 844 845 846 847 848 849 850 851 852 853

		nla_nest_end(msg, nl_combi);
	}

	nla_nest_end(msg, nl_combis);

	return 0;
nla_put_failure:
	return -ENOBUFS;
}

854 855 856 857
static int nl80211_send_wiphy(struct sk_buff *msg, u32 pid, u32 seq, int flags,
			      struct cfg80211_registered_device *dev)
{
	void *hdr;
858 859 860
	struct nlattr *nl_bands, *nl_band;
	struct nlattr *nl_freqs, *nl_freq;
	struct nlattr *nl_rates, *nl_rate;
861
	struct nlattr *nl_cmds;
862 863 864 865
	enum ieee80211_band band;
	struct ieee80211_channel *chan;
	struct ieee80211_rate *rate;
	int i;
866 867
	const struct ieee80211_txrx_stypes *mgmt_stypes =
				dev->wiphy.mgmt_stypes;
868 869 870 871 872

	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_WIPHY);
	if (!hdr)
		return -1;

873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 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
	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;
941

942 943
	if ((dev->wiphy.available_antennas_tx ||
	     dev->wiphy.available_antennas_rx) && dev->ops->get_antenna) {
944 945 946 947
		u32 tx_ant = 0, rx_ant = 0;
		int res;
		res = dev->ops->get_antenna(&dev->wiphy, &tx_ant, &rx_ant);
		if (!res) {
948 949 950 951 952
			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;
953 954 955
		}
	}

956 957
	if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
				dev->wiphy.interface_modes))
958 959
		goto nla_put_failure;

960 961 962 963 964 965 966 967 968 969 970 971
	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 已提交
972
		/* add HT info */
973 974 975 976 977 978 979 980 981 982 983
		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 已提交
984

985 986 987 988 989 990 991 992 993
		/* 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;

994 995 996 997 998 999 1000 1001 1002 1003 1004
		/* 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];
1005 1006 1007

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

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
			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];
1025 1026 1027 1028 1029 1030 1031
			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;
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041

			nla_nest_end(msg, nl_rate);
		}

		nla_nest_end(msg, nl_rates);

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

1042 1043 1044 1045 1046 1047 1048 1049 1050
	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++;					\
1051 1052
			if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
				goto nla_put_failure;		\
1053 1054 1055 1056 1057 1058
		}						\
	} while (0)

	CMD(add_virtual_intf, NEW_INTERFACE);
	CMD(change_virtual_intf, SET_INTERFACE);
	CMD(add_key, NEW_KEY);
1059
	CMD(start_ap, START_AP);
1060 1061
	CMD(add_station, NEW_STATION);
	CMD(add_mpath, NEW_MPATH);
1062
	CMD(update_mesh_config, SET_MESH_CONFIG);
1063
	CMD(change_bss, SET_BSS);
1064 1065 1066 1067
	CMD(auth, AUTHENTICATE);
	CMD(assoc, ASSOCIATE);
	CMD(deauth, DEAUTHENTICATE);
	CMD(disassoc, DISASSOCIATE);
J
Johannes Berg 已提交
1068
	CMD(join_ibss, JOIN_IBSS);
1069
	CMD(join_mesh, JOIN_MESH);
S
Samuel Ortiz 已提交
1070 1071 1072
	CMD(set_pmksa, SET_PMKSA);
	CMD(del_pmksa, DEL_PMKSA);
	CMD(flush_pmksa, FLUSH_PMKSA);
1073 1074
	if (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
		CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1075
	CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1076
	CMD(mgmt_tx, FRAME);
1077
	CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
J
Johannes Berg 已提交
1078
	if (dev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
1079
		i++;
1080 1081
		if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
			goto nla_put_failure;
1082
	}
1083
	if (dev->ops->set_monitor_channel || dev->ops->start_ap ||
1084
	    dev->ops->join_mesh) {
1085 1086 1087 1088
		i++;
		if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
			goto nla_put_failure;
	}
1089
	CMD(set_wds_peer, SET_WDS_PEER);
1090 1091 1092 1093
	if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
		CMD(tdls_mgmt, TDLS_MGMT);
		CMD(tdls_oper, TDLS_OPER);
	}
1094 1095
	if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
		CMD(sched_scan_start, START_SCHED_SCAN);
J
Johannes Berg 已提交
1096
	CMD(probe_client, PROBE_CLIENT);
1097
	CMD(set_noack_map, SET_NOACK_MAP);
1098 1099
	if (dev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
		i++;
1100 1101
		if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
			goto nla_put_failure;
1102
	}
1103
	CMD(start_p2p_device, START_P2P_DEVICE);
1104

1105 1106 1107 1108
#ifdef CONFIG_NL80211_TESTMODE
	CMD(testmode_cmd, TESTMODE);
#endif

1109
#undef CMD
S
Samuel Ortiz 已提交
1110

1111
	if (dev->ops->connect || dev->ops->auth) {
S
Samuel Ortiz 已提交
1112
		i++;
1113 1114
		if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
			goto nla_put_failure;
S
Samuel Ortiz 已提交
1115 1116
	}

1117
	if (dev->ops->disconnect || dev->ops->deauth) {
S
Samuel Ortiz 已提交
1118
		i++;
1119 1120
		if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
			goto nla_put_failure;
S
Samuel Ortiz 已提交
1121 1122
	}

1123 1124
	nla_nest_end(msg, nl_cmds);

1125
	if (dev->ops->remain_on_channel &&
1126 1127 1128 1129
	    (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;
1130

1131 1132 1133
	if ((dev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
	    nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
		goto nla_put_failure;
1134

1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
	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) {
1151 1152 1153 1154
				if ((stypes & 1) &&
				    nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
						(i << 4) | IEEE80211_FTYPE_MGMT))
					goto nla_put_failure;
1155 1156 1157 1158 1159 1160
				stypes >>= 1;
				i++;
			}
			nla_nest_end(msg, nl_ftypes);
		}

J
Johannes Berg 已提交
1161 1162
		nla_nest_end(msg, nl_ifs);

1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
		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) {
1174 1175 1176 1177
				if ((stypes & 1) &&
				    nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
						(i << 4) | IEEE80211_FTYPE_MGMT))
					goto nla_put_failure;
1178 1179 1180 1181 1182 1183 1184 1185
				stypes >>= 1;
				i++;
			}
			nla_nest_end(msg, nl_ftypes);
		}
		nla_nest_end(msg, nl_ifs);
	}

1186
#ifdef CONFIG_PM
J
Johannes Berg 已提交
1187 1188 1189 1190 1191 1192 1193 1194
	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;

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
		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 已提交
1212 1213 1214 1215 1216 1217 1218 1219
		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,
			};
1220 1221 1222
			if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
				    sizeof(pat), &pat))
				goto nla_put_failure;
J
Johannes Berg 已提交
1223 1224 1225 1226
		}

		nla_nest_end(msg, nl_wowlan);
	}
1227
#endif
J
Johannes Berg 已提交
1228

1229 1230 1231 1232 1233 1234 1235
	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;

1236 1237 1238 1239
	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 已提交
1240

1241 1242 1243
	if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS,
			dev->wiphy.features))
		goto nla_put_failure;
1244

1245 1246 1247 1248 1249
	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;
1250

1251 1252 1253
	return genlmsg_end(msg, hdr);

 nla_put_failure:
1254 1255
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
1256 1257 1258 1259 1260 1261 1262 1263
}

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;

1264
	mutex_lock(&cfg80211_mutex);
1265
	list_for_each_entry(dev, &cfg80211_rdev_list, list) {
1266 1267
		if (!net_eq(wiphy_net(&dev->wiphy), sock_net(skb->sk)))
			continue;
1268
		if (++idx <= start)
1269 1270 1271
			continue;
		if (nl80211_send_wiphy(skb, NETLINK_CB(cb->skb).pid,
				       cb->nlh->nlmsg_seq, NLM_F_MULTI,
1272 1273
				       dev) < 0) {
			idx--;
1274
			break;
1275
		}
1276
	}
1277
	mutex_unlock(&cfg80211_mutex);
1278 1279 1280 1281 1282 1283 1284 1285 1286

	cb->args[0] = idx;

	return skb->len;
}

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

1289
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1290
	if (!msg)
1291
		return -ENOMEM;
1292

1293 1294 1295 1296
	if (nl80211_send_wiphy(msg, info->snd_pid, info->snd_seq, 0, dev) < 0) {
		nlmsg_free(msg);
		return -ENOBUFS;
	}
1297

J
Johannes Berg 已提交
1298
	return genlmsg_reply(msg, info);
1299 1300
}

1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
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)
{
1312
	if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
1313 1314 1315 1316
	    !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
	    !tb[NL80211_TXQ_ATTR_AIFS])
		return -EINVAL;

1317
	txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
1318 1319 1320 1321 1322
	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]);

1323 1324 1325
	if (txq_params->ac >= NL80211_NUM_ACS)
		return -EINVAL;

1326 1327 1328
	return 0;
}

1329 1330 1331
static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
{
	/*
1332 1333 1334 1335 1336 1337 1338 1339 1340
	 * 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.
1341 1342
	 *
	 * Monitors are special as they are normally slaved to
1343 1344
	 * whatever else is going on, so they have their own special
	 * operation to set the monitor channel if possible.
1345 1346 1347 1348
	 */
	return !wdev ||
		wdev->iftype == NL80211_IFTYPE_AP ||
		wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
1349 1350
		wdev->iftype == NL80211_IFTYPE_MONITOR ||
		wdev->iftype == NL80211_IFTYPE_P2P_GO;
1351 1352
}

1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
static bool nl80211_valid_channel_type(struct genl_info *info,
				       enum nl80211_channel_type *channel_type)
{
	enum nl80211_channel_type tmp;

	if (!info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
		return false;

	tmp = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
	if (tmp != NL80211_CHAN_NO_HT &&
	    tmp != NL80211_CHAN_HT20 &&
	    tmp != NL80211_CHAN_HT40PLUS &&
	    tmp != NL80211_CHAN_HT40MINUS)
		return false;

	if (channel_type)
		*channel_type = tmp;

	return true;
}

1374 1375 1376 1377
static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
				 struct wireless_dev *wdev,
				 struct genl_info *info)
{
1378
	struct ieee80211_channel *channel;
1379 1380 1381
	enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
	u32 freq;
	int result;
1382 1383 1384 1385
	enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;

	if (wdev)
		iftype = wdev->iftype;
1386 1387 1388 1389 1390 1391 1392

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

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

1393 1394 1395
	if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] &&
	    !nl80211_valid_channel_type(info, &channel_type))
		return -EINVAL;
1396 1397 1398 1399

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

	mutex_lock(&rdev->devlist_mtx);
1400
	switch (iftype) {
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_P2P_GO:
		if (wdev->beacon_interval) {
			result = -EBUSY;
			break;
		}
		channel = rdev_freq_to_chan(rdev, freq, channel_type);
		if (!channel || !cfg80211_can_beacon_sec_chan(&rdev->wiphy,
							      channel,
							      channel_type)) {
			result = -EINVAL;
			break;
		}
		wdev->preset_chan = channel;
		wdev->preset_chantype = channel_type;
		result = 0;
		break;
1418 1419 1420
	case NL80211_IFTYPE_MESH_POINT:
		result = cfg80211_set_mesh_freq(rdev, wdev, freq, channel_type);
		break;
1421 1422 1423
	case NL80211_IFTYPE_MONITOR:
		result = cfg80211_set_monitor_channel(rdev, freq, channel_type);
		break;
1424
	default:
1425
		result = -EINVAL;
1426 1427 1428 1429 1430 1431 1432 1433
	}
	mutex_unlock(&rdev->devlist_mtx);

	return result;
}

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

1437
	return __nl80211_set_channel(rdev, netdev->ieee80211_ptr, info);
1438 1439
}

1440 1441
static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
{
1442 1443 1444
	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 已提交
1445
	const u8 *bssid;
1446 1447 1448 1449

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

1450 1451
	if (netif_running(dev))
		return -EBUSY;
1452

1453 1454
	if (!rdev->ops->set_wds_peer)
		return -EOPNOTSUPP;
1455

1456 1457
	if (wdev->iftype != NL80211_IFTYPE_WDS)
		return -EOPNOTSUPP;
1458 1459

	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
1460
	return rdev->ops->set_wds_peer(wdev->wiphy, dev, bssid);
1461 1462 1463
}


1464 1465 1466
static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev;
1467 1468
	struct net_device *netdev = NULL;
	struct wireless_dev *wdev;
B
Bill Jordan 已提交
1469
	int result = 0, rem_txq_params = 0;
1470
	struct nlattr *nl_txq_params;
1471 1472 1473
	u32 changed;
	u8 retry_short = 0, retry_long = 0;
	u32 frag_threshold = 0, rts_threshold = 0;
1474
	u8 coverage_class = 0;
1475

1476 1477 1478 1479 1480 1481 1482 1483 1484
	/*
	 * 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!
	 */
1485 1486
	mutex_lock(&cfg80211_mutex);

1487 1488 1489 1490 1491 1492 1493 1494 1495
	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;
1496 1497
	}

1498
	if (!netdev) {
1499 1500
		rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
						  info->attrs);
1501 1502
		if (IS_ERR(rdev)) {
			mutex_unlock(&cfg80211_mutex);
1503
			return PTR_ERR(rdev);
1504 1505 1506 1507 1508 1509
		}
		wdev = NULL;
		netdev = NULL;
		result = 0;

		mutex_lock(&rdev->mtx);
1510
	} else if (nl80211_can_set_dev_channel(netdev->ieee80211_ptr))
1511 1512 1513 1514 1515 1516 1517 1518
		wdev = netdev->ieee80211_ptr;
	else
		wdev = NULL;

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

	if (info->attrs[NL80211_ATTR_WIPHY_NAME])
1521 1522
		result = cfg80211_dev_rename(
			rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
1523 1524 1525 1526 1527

	mutex_unlock(&cfg80211_mutex);

	if (result)
		goto bad_res;
1528 1529 1530 1531 1532 1533 1534 1535 1536 1537

	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;
		}

1538 1539 1540 1541 1542
		if (!netdev) {
			result = -EINVAL;
			goto bad_res;
		}

1543 1544 1545 1546 1547 1548
		if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
		    netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
			result = -EINVAL;
			goto bad_res;
		}

1549 1550 1551 1552 1553
		if (!netif_running(netdev)) {
			result = -ENETDOWN;
			goto bad_res;
		}

1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
		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;

			result = rdev->ops->set_txq_params(&rdev->wiphy,
1566
							   netdev,
1567 1568 1569 1570 1571
							   &txq_params);
			if (result)
				goto bad_res;
		}
	}
1572

1573
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
1574
		result = __nl80211_set_channel(rdev, wdev, info);
1575 1576 1577 1578
		if (result)
			goto bad_res;
	}

1579 1580 1581 1582 1583
	if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
		enum nl80211_tx_power_setting type;
		int idx, mbm = 0;

		if (!rdev->ops->set_tx_power) {
1584
			result = -EOPNOTSUPP;
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
			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]);
		}

		result = rdev->ops->set_tx_power(&rdev->wiphy, type, mbm);
		if (result)
			goto bad_res;
	}

1607 1608 1609
	if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
	    info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
		u32 tx_ant, rx_ant;
1610 1611 1612
		if ((!rdev->wiphy.available_antennas_tx &&
		     !rdev->wiphy.available_antennas_rx) ||
		    !rdev->ops->set_antenna) {
1613 1614 1615 1616 1617 1618 1619
			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]);

1620
		/* reject antenna configurations which don't match the
1621 1622 1623
		 * 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))) {
1624 1625 1626 1627
			result = -EINVAL;
			goto bad_res;
		}

1628 1629
		tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
		rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
1630

1631 1632 1633 1634 1635
		result = rdev->ops->set_antenna(&rdev->wiphy, tx_ant, rx_ant);
		if (result)
			goto bad_res;
	}

1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
	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;
	}

1683 1684 1685 1686 1687 1688
	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;
	}

1689 1690 1691
	if (changed) {
		u8 old_retry_short, old_retry_long;
		u32 old_frag_threshold, old_rts_threshold;
1692
		u8 old_coverage_class;
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702

		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;
1703
		old_coverage_class = rdev->wiphy.coverage_class;
1704 1705 1706 1707 1708 1709 1710 1711 1712

		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;
1713 1714
		if (changed & WIPHY_PARAM_COVERAGE_CLASS)
			rdev->wiphy.coverage_class = coverage_class;
1715 1716 1717 1718 1719 1720 1721

		result = rdev->ops->set_wiphy_params(&rdev->wiphy, changed);
		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;
1722
			rdev->wiphy.coverage_class = old_coverage_class;
1723 1724
		}
	}
1725

1726
 bad_res:
1727
	mutex_unlock(&rdev->mtx);
1728 1729
	if (netdev)
		dev_put(netdev);
1730 1731 1732
	return result;
}

1733 1734 1735 1736 1737
static inline u64 wdev_id(struct wireless_dev *wdev)
{
	return (u64)wdev->identifier |
	       ((u64)wiphy_to_dev(wdev->wiphy)->wiphy_idx << 32);
}
1738 1739

static int nl80211_send_iface(struct sk_buff *msg, u32 pid, u32 seq, int flags,
1740
			      struct cfg80211_registered_device *rdev,
1741
			      struct wireless_dev *wdev)
1742
{
1743
	struct net_device *dev = wdev->netdev;
1744 1745 1746 1747 1748 1749
	void *hdr;

	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_INTERFACE);
	if (!hdr)
		return -1;

1750 1751
	if (dev &&
	    (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
1752
	     nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
1753 1754 1755 1756
		goto nla_put_failure;

	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
1757
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
1758
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
1759 1760 1761 1762
	    nla_put_u32(msg, NL80211_ATTR_GENERATION,
			rdev->devlist_generation ^
			(cfg80211_rdev_list_generation << 2)))
		goto nla_put_failure;
1763

1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
	if (rdev->ops->get_channel) {
		struct ieee80211_channel *chan;
		enum nl80211_channel_type channel_type;

		chan = rdev->ops->get_channel(&rdev->wiphy, wdev,
					      &channel_type);
		if (chan &&
		    (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
				 chan->center_freq) ||
		     nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
				 channel_type)))
J
John W. Linville 已提交
1775
			goto nla_put_failure;
1776 1777
	}

1778 1779 1780
	return genlmsg_end(msg, hdr);

 nla_put_failure:
1781 1782
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
1783 1784 1785 1786 1787 1788 1789 1790
}

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];
1791
	struct cfg80211_registered_device *rdev;
1792 1793
	struct wireless_dev *wdev;

1794
	mutex_lock(&cfg80211_mutex);
1795 1796
	list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
		if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
1797
			continue;
J
Johannes Berg 已提交
1798 1799
		if (wp_idx < wp_start) {
			wp_idx++;
1800
			continue;
J
Johannes Berg 已提交
1801
		}
1802 1803
		if_idx = 0;

1804
		mutex_lock(&rdev->devlist_mtx);
1805
		list_for_each_entry(wdev, &rdev->wdev_list, list) {
J
Johannes Berg 已提交
1806 1807
			if (if_idx < if_start) {
				if_idx++;
1808
				continue;
J
Johannes Berg 已提交
1809
			}
1810 1811
			if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).pid,
					       cb->nlh->nlmsg_seq, NLM_F_MULTI,
1812
					       rdev, wdev) < 0) {
1813
				mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
1814 1815 1816
				goto out;
			}
			if_idx++;
1817
		}
1818
		mutex_unlock(&rdev->devlist_mtx);
J
Johannes Berg 已提交
1819 1820

		wp_idx++;
1821
	}
J
Johannes Berg 已提交
1822
 out:
1823
	mutex_unlock(&cfg80211_mutex);
1824 1825 1826 1827 1828 1829 1830 1831 1832 1833

	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;
1834
	struct cfg80211_registered_device *dev = info->user_ptr[0];
1835
	struct wireless_dev *wdev = info->user_ptr[1];
1836

1837
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1838
	if (!msg)
1839
		return -ENOMEM;
1840

1841
	if (nl80211_send_iface(msg, info->snd_pid, info->snd_seq, 0,
1842
			       dev, wdev) < 0) {
1843 1844 1845
		nlmsg_free(msg);
		return -ENOBUFS;
	}
1846

J
Johannes Berg 已提交
1847
	return genlmsg_reply(msg, info);
1848 1849
}

1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
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;
}

1879
static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
1880 1881
			       struct net_device *netdev, u8 use_4addr,
			       enum nl80211_iftype iftype)
1882
{
1883
	if (!use_4addr) {
1884
		if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
1885
			return -EBUSY;
1886
		return 0;
1887
	}
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904

	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;
}

1905 1906
static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
{
1907
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
1908
	struct vif_params params;
1909
	int err;
J
Johannes Berg 已提交
1910
	enum nl80211_iftype otype, ntype;
1911
	struct net_device *dev = info->user_ptr[1];
1912
	u32 _flags, *flags = NULL;
1913
	bool change = false;
1914

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

J
Johannes Berg 已提交
1917
	otype = ntype = dev->ieee80211_ptr->iftype;
1918

1919
	if (info->attrs[NL80211_ATTR_IFTYPE]) {
1920
		ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
J
Johannes Berg 已提交
1921
		if (otype != ntype)
1922
			change = true;
1923 1924
		if (ntype > NL80211_IFTYPE_MAX)
			return -EINVAL;
1925 1926
	}

1927
	if (info->attrs[NL80211_ATTR_MESH_ID]) {
1928 1929
		struct wireless_dev *wdev = dev->ieee80211_ptr;

1930 1931
		if (ntype != NL80211_IFTYPE_MESH_POINT)
			return -EINVAL;
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
		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);
1943 1944
	}

1945 1946 1947
	if (info->attrs[NL80211_ATTR_4ADDR]) {
		params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
		change = true;
1948
		err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
1949
		if (err)
1950
			return err;
1951 1952 1953 1954
	} else {
		params.use_4addr = -1;
	}

1955
	if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
1956 1957
		if (ntype != NL80211_IFTYPE_MONITOR)
			return -EINVAL;
1958 1959
		err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
					  &_flags);
1960
		if (err)
1961
			return err;
1962 1963 1964

		flags = &_flags;
		change = true;
1965
	}
J
Johannes Berg 已提交
1966

1967
	if (change)
1968
		err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
1969 1970
	else
		err = 0;
J
Johannes Berg 已提交
1971

1972 1973 1974
	if (!err && params.use_4addr != -1)
		dev->ieee80211_ptr->use_4addr = params.use_4addr;

1975 1976 1977 1978 1979
	return err;
}

static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
{
1980
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
1981
	struct vif_params params;
1982
	struct wireless_dev *wdev;
1983
	struct sk_buff *msg;
1984 1985
	int err;
	enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
1986
	u32 flags;
1987

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

1990 1991 1992 1993 1994 1995 1996 1997 1998
	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;
	}

1999
	if (!rdev->ops->add_virtual_intf ||
2000 2001
	    !(rdev->wiphy.interface_modes & (1 << type)))
		return -EOPNOTSUPP;
2002

2003
	if (info->attrs[NL80211_ATTR_4ADDR]) {
2004
		params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2005
		err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
2006
		if (err)
2007
			return err;
2008
	}
2009

2010 2011 2012 2013
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (!msg)
		return -ENOMEM;

2014 2015 2016
	err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
				  info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
				  &flags);
2017
	wdev = rdev->ops->add_virtual_intf(&rdev->wiphy,
2018
		nla_data(info->attrs[NL80211_ATTR_IFNAME]),
2019
		type, err ? NULL : &flags, &params);
2020 2021
	if (IS_ERR(wdev)) {
		nlmsg_free(msg);
2022
		return PTR_ERR(wdev);
2023
	}
2024

2025 2026 2027 2028
	switch (type) {
	case NL80211_IFTYPE_MESH_POINT:
		if (!info->attrs[NL80211_ATTR_MESH_ID])
			break;
2029 2030 2031 2032 2033 2034 2035 2036
		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);
2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056
		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;
2057 2058
	}

2059 2060 2061 2062 2063 2064 2065
	if (nl80211_send_iface(msg, info->snd_pid, info->snd_seq, 0,
			       rdev, wdev) < 0) {
		nlmsg_free(msg);
		return -ENOBUFS;
	}

	return genlmsg_reply(msg, info);
2066 2067 2068 2069
}

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

2073 2074
	if (!rdev->ops->del_virtual_intf)
		return -EOPNOTSUPP;
2075

2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086
	/*
	 * 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;

	return rdev->ops->del_virtual_intf(&rdev->wiphy, wdev);
2087 2088
}

2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105
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]);

	return rdev->ops->set_noack_map(&rdev->wiphy, dev, noack_map);
}

2106 2107 2108
struct get_key_cookie {
	struct sk_buff *msg;
	int error;
2109
	int idx;
2110 2111 2112 2113
};

static void get_key_callback(void *c, struct key_params *params)
{
2114
	struct nlattr *key;
2115 2116
	struct get_key_cookie *cookie = c;

2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
	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;
2127

2128 2129 2130 2131
	key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
	if (!key)
		goto nla_put_failure;

2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
	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;
2142

2143 2144
	if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
		goto nla_put_failure;
2145 2146 2147

	nla_nest_end(cookie->msg, key);

2148 2149 2150 2151 2152 2153 2154
	return;
 nla_put_failure:
	cookie->error = 1;
}

static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
{
2155
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2156
	int err;
2157
	struct net_device *dev = info->user_ptr[1];
2158
	u8 key_idx = 0;
2159 2160
	const u8 *mac_addr = NULL;
	bool pairwise;
2161 2162 2163 2164 2165 2166 2167 2168 2169
	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]);

2170
	if (key_idx > 5)
2171 2172 2173 2174 2175
		return -EINVAL;

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

2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186
	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;
	}

2187 2188
	if (!rdev->ops->get_key)
		return -EOPNOTSUPP;
2189

2190
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2191 2192
	if (!msg)
		return -ENOMEM;
2193 2194 2195

	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
			     NL80211_CMD_NEW_KEY);
2196 2197
	if (IS_ERR(hdr))
		return PTR_ERR(hdr);
2198 2199

	cookie.msg = msg;
2200
	cookie.idx = key_idx;
2201

2202 2203 2204 2205 2206 2207
	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;
2208

2209 2210 2211 2212 2213 2214
	if (pairwise && mac_addr &&
	    !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
		return -ENOENT;

	err = rdev->ops->get_key(&rdev->wiphy, dev, key_idx, pairwise,
				 mac_addr, &cookie, get_key_callback);
2215 2216

	if (err)
N
Niko Jokinen 已提交
2217
		goto free_msg;
2218 2219 2220 2221 2222

	if (cookie.error)
		goto nla_put_failure;

	genlmsg_end(msg, hdr);
2223
	return genlmsg_reply(msg, info);
2224 2225 2226

 nla_put_failure:
	err = -ENOBUFS;
N
Niko Jokinen 已提交
2227
 free_msg:
2228 2229 2230 2231 2232 2233
	nlmsg_free(msg);
	return err;
}

static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
{
2234
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2235
	struct key_parse key;
2236
	int err;
2237
	struct net_device *dev = info->user_ptr[1];
2238

2239 2240 2241
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;
2242

2243
	if (key.idx < 0)
2244 2245
		return -EINVAL;

2246 2247
	/* only support setting default key */
	if (!key.def && !key.defmgmt)
2248 2249
		return -EINVAL;

2250
	wdev_lock(dev->ieee80211_ptr);
2251

2252 2253 2254 2255 2256
	if (key.def) {
		if (!rdev->ops->set_default_key) {
			err = -EOPNOTSUPP;
			goto out;
		}
2257

2258 2259 2260 2261 2262 2263 2264 2265 2266
		err = nl80211_key_allowed(dev->ieee80211_ptr);
		if (err)
			goto out;

		err = rdev->ops->set_default_key(&rdev->wiphy, dev, key.idx,
						 key.def_uni, key.def_multi);

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

J
Johannes Berg 已提交
2268
#ifdef CONFIG_CFG80211_WEXT
2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
		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;

		err = rdev->ops->set_default_mgmt_key(&rdev->wiphy,
						      dev, key.idx);
		if (err)
			goto out;

#ifdef CONFIG_CFG80211_WEXT
		dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
2293
#endif
2294 2295 2296
	}

 out:
J
Johannes Berg 已提交
2297
	wdev_unlock(dev->ieee80211_ptr);
2298 2299 2300 2301 2302 2303

	return err;
}

static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
{
2304
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
J
Johannes Berg 已提交
2305
	int err;
2306
	struct net_device *dev = info->user_ptr[1];
2307
	struct key_parse key;
2308
	const u8 *mac_addr = NULL;
2309

2310 2311 2312
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;
2313

2314
	if (!key.p.key)
2315 2316 2317 2318 2319
		return -EINVAL;

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

2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
	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;

2332 2333
	if (!rdev->ops->add_key)
		return -EOPNOTSUPP;
2334

2335 2336 2337
	if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
					   key.type == NL80211_KEYTYPE_PAIRWISE,
					   mac_addr))
2338
		return -EINVAL;
2339

J
Johannes Berg 已提交
2340 2341 2342 2343
	wdev_lock(dev->ieee80211_ptr);
	err = nl80211_key_allowed(dev->ieee80211_ptr);
	if (!err)
		err = rdev->ops->add_key(&rdev->wiphy, dev, key.idx,
2344
					 key.type == NL80211_KEYTYPE_PAIRWISE,
J
Johannes Berg 已提交
2345 2346
					 mac_addr, &key.p);
	wdev_unlock(dev->ieee80211_ptr);
2347 2348 2349 2350 2351 2352

	return err;
}

static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
{
2353
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
2354
	int err;
2355
	struct net_device *dev = info->user_ptr[1];
2356
	u8 *mac_addr = NULL;
2357
	struct key_parse key;
2358

2359 2360 2361
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;
2362 2363 2364 2365

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

2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377
	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;

2378 2379
	if (!rdev->ops->del_key)
		return -EOPNOTSUPP;
2380

J
Johannes Berg 已提交
2381 2382
	wdev_lock(dev->ieee80211_ptr);
	err = nl80211_key_allowed(dev->ieee80211_ptr);
2383 2384 2385 2386 2387

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

J
Johannes Berg 已提交
2388
	if (!err)
2389 2390 2391
		err = rdev->ops->del_key(&rdev->wiphy, dev, key.idx,
					 key.type == NL80211_KEYTYPE_PAIRWISE,
					 mac_addr);
2392

J
Johannes Berg 已提交
2393
#ifdef CONFIG_CFG80211_WEXT
2394
	if (!err) {
2395
		if (key.idx == dev->ieee80211_ptr->wext.default_key)
2396
			dev->ieee80211_ptr->wext.default_key = -1;
2397
		else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
2398 2399 2400
			dev->ieee80211_ptr->wext.default_mgmt_key = -1;
	}
#endif
J
Johannes Berg 已提交
2401
	wdev_unlock(dev->ieee80211_ptr);
2402

2403 2404 2405
	return err;
}

2406 2407
static int nl80211_parse_beacon(struct genl_info *info,
				struct cfg80211_beacon_data *bcn)
2408
{
2409
	bool haveinfo = false;
2410

2411 2412 2413 2414
	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]))
2415 2416
		return -EINVAL;

2417
	memset(bcn, 0, sizeof(*bcn));
2418 2419

	if (info->attrs[NL80211_ATTR_BEACON_HEAD]) {
2420 2421 2422 2423 2424
		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;
2425 2426 2427
	}

	if (info->attrs[NL80211_ATTR_BEACON_TAIL]) {
2428 2429
		bcn->tail = nla_data(info->attrs[NL80211_ATTR_BEACON_TAIL]);
		bcn->tail_len =
2430
		    nla_len(info->attrs[NL80211_ATTR_BEACON_TAIL]);
2431
		haveinfo = true;
2432 2433
	}

2434 2435
	if (!haveinfo)
		return -EINVAL;
J
Johannes Berg 已提交
2436

2437
	if (info->attrs[NL80211_ATTR_IE]) {
2438 2439
		bcn->beacon_ies = nla_data(info->attrs[NL80211_ATTR_IE]);
		bcn->beacon_ies_len = nla_len(info->attrs[NL80211_ATTR_IE]);
2440 2441 2442
	}

	if (info->attrs[NL80211_ATTR_IE_PROBE_RESP]) {
2443
		bcn->proberesp_ies =
2444
			nla_data(info->attrs[NL80211_ATTR_IE_PROBE_RESP]);
2445
		bcn->proberesp_ies_len =
2446 2447 2448 2449
			nla_len(info->attrs[NL80211_ATTR_IE_PROBE_RESP]);
	}

	if (info->attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
2450
		bcn->assocresp_ies =
2451
			nla_data(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]);
2452
		bcn->assocresp_ies_len =
2453 2454 2455
			nla_len(info->attrs[NL80211_ATTR_IE_ASSOC_RESP]);
	}

2456
	if (info->attrs[NL80211_ATTR_PROBE_RESP]) {
2457
		bcn->probe_resp =
2458
			nla_data(info->attrs[NL80211_ATTR_PROBE_RESP]);
2459
		bcn->probe_resp_len =
2460 2461 2462
			nla_len(info->attrs[NL80211_ATTR_PROBE_RESP]);
	}

2463 2464 2465
	return 0;
}

2466 2467 2468 2469 2470 2471 2472 2473
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);

2474
	list_for_each_entry(wdev, &rdev->wdev_list, list) {
2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492
		if (wdev->iftype != NL80211_IFTYPE_AP &&
		    wdev->iftype != NL80211_IFTYPE_P2P_GO)
			continue;

		if (!wdev->preset_chan)
			continue;

		params->channel = wdev->preset_chan;
		params->channel_type = wdev->preset_chantype;
		ret = true;
		break;
	}

	mutex_unlock(&rdev->devlist_mtx);

	return ret;
}

2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571
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;

	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]);
		if (!nl80211_valid_auth_type(params.auth_type))
			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;

2572 2573 2574 2575 2576 2577 2578
	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]);
	}

2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
		enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;

		if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] &&
		    !nl80211_valid_channel_type(info, &channel_type))
			return -EINVAL;

		params.channel = rdev_freq_to_chan(rdev,
			nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]),
			channel_type);
		if (!params.channel)
			return -EINVAL;
		params.channel_type = channel_type;
	} else if (wdev->preset_chan) {
		params.channel = wdev->preset_chan;
		params.channel_type = wdev->preset_chantype;
2595
	} else if (!nl80211_get_ap_channel(rdev, &params))
2596 2597 2598 2599 2600 2601
		return -EINVAL;

	if (!cfg80211_can_beacon_sec_chan(&rdev->wiphy, params.channel,
					  params.channel_type))
		return -EINVAL;

2602 2603 2604 2605 2606 2607 2608 2609
	mutex_lock(&rdev->devlist_mtx);
	err = cfg80211_can_use_chan(rdev, wdev, params.channel,
				    CHAN_MODE_SHARED);
	mutex_unlock(&rdev->devlist_mtx);

	if (err)
		return err;

2610
	err = rdev->ops->start_ap(&rdev->wiphy, dev, &params);
2611 2612 2613
	if (!err) {
		wdev->preset_chan = params.channel;
		wdev->preset_chantype = params.channel_type;
2614
		wdev->beacon_interval = params.beacon_interval;
2615
		wdev->channel = params.channel;
2616
	}
2617
	return err;
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
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;

	return rdev->ops->change_beacon(&rdev->wiphy, dev, &params);
}

static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
2646
{
2647 2648
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
2649

2650
	return cfg80211_stop_ap(rdev, dev);
2651 2652
}

2653 2654 2655 2656
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 },
2657
	[NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
2658
	[NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
2659
	[NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
2660 2661
};

2662
static int parse_station_flags(struct genl_info *info,
2663
			       enum nl80211_iftype iftype,
2664
			       struct station_parameters *params)
2665 2666
{
	struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
2667
	struct nlattr *nla;
2668 2669
	int flag;

2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687
	/*
	 * 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 */
2688

2689
	nla = info->attrs[NL80211_ATTR_STA_FLAGS];
2690 2691 2692 2693 2694 2695 2696
	if (!nla)
		return 0;

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

2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723
	/*
	 * 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;
	}
2724

2725 2726
	for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
		if (flags[flag]) {
2727
			params->sta_flags_set |= (1<<flag);
2728

2729 2730 2731 2732 2733 2734
			/* no longer support new API additions in old API */
			if (flag > NL80211_STA_FLAG_MAX_OLD_API)
				return -EINVAL;
		}
	}

2735 2736 2737
	return 0;
}

2738 2739 2740 2741
static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
				 int attr)
{
	struct nlattr *rate;
2742 2743
	u32 bitrate;
	u16 bitrate_compat;
2744 2745 2746 2747 2748 2749 2750

	rate = nla_nest_start(msg, attr);
	if (!rate)
		goto nla_put_failure;

	/* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
	bitrate = cfg80211_calculate_bitrate(info);
2751 2752
	/* report 16-bit bitrate only if we can */
	bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
2753
	if ((bitrate > 0 &&
2754 2755 2756
	     nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate)) ||
	    (bitrate_compat > 0 &&
	     nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat)) ||
2757 2758 2759 2760 2761 2762 2763
	    ((info->flags & RATE_INFO_FLAGS_MCS) &&
	     nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs)) ||
	    ((info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH) &&
	     nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH)) ||
	    ((info->flags & RATE_INFO_FLAGS_SHORT_GI) &&
	     nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI)))
		goto nla_put_failure;
2764 2765 2766 2767 2768 2769 2770 2771

	nla_nest_end(msg, rate);
	return true;

nla_put_failure:
	return false;
}

2772
static int nl80211_send_station(struct sk_buff *msg, u32 pid, u32 seq,
2773 2774 2775
				int flags,
				struct cfg80211_registered_device *rdev,
				struct net_device *dev,
2776
				const u8 *mac_addr, struct station_info *sinfo)
2777 2778
{
	void *hdr;
2779
	struct nlattr *sinfoattr, *bss_param;
2780 2781 2782 2783 2784

	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION);
	if (!hdr)
		return -1;

2785 2786 2787 2788
	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;
2789

2790 2791
	sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
	if (!sinfoattr)
2792
		goto nla_put_failure;
2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818
	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;
	if ((sinfo->filled & STATION_INFO_RX_BYTES) &&
	    nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
			sinfo->rx_bytes))
		goto nla_put_failure;
	if ((sinfo->filled & STATION_INFO_TX_BYTES) &&
	    nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
			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;
2819 2820
	switch (rdev->wiphy.signal_type) {
	case CFG80211_SIGNAL_TYPE_MBM:
2821 2822 2823 2824 2825 2826 2827 2828
		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;
2829 2830 2831 2832
		break;
	default:
		break;
	}
2833
	if (sinfo->filled & STATION_INFO_TX_BITRATE) {
2834 2835 2836 2837 2838 2839 2840
		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))
2841 2842
			goto nla_put_failure;
	}
2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862
	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;
2863 2864 2865 2866 2867
	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;

2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878
		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;
2879 2880 2881

		nla_nest_end(msg, bss_param);
	}
2882 2883 2884 2885 2886
	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;
2887 2888 2889 2890
	if ((sinfo->filled & STATION_INFO_T_OFFSET) &&
		nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET,
			    sinfo->t_offset))
		goto nla_put_failure;
2891
	nla_nest_end(msg, sinfoattr);
2892

2893 2894 2895 2896
	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;
2897

2898 2899 2900
	return genlmsg_end(msg, hdr);

 nla_put_failure:
2901 2902
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
2903 2904
}

2905
static int nl80211_dump_station(struct sk_buff *skb,
J
Johannes Berg 已提交
2906
				struct netlink_callback *cb)
2907 2908 2909
{
	struct station_info sinfo;
	struct cfg80211_registered_device *dev;
J
Johannes Berg 已提交
2910
	struct net_device *netdev;
2911
	u8 mac_addr[ETH_ALEN];
J
Johannes Berg 已提交
2912
	int sta_idx = cb->args[1];
2913 2914
	int err;

2915 2916 2917
	err = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev);
	if (err)
		return err;
J
Johannes Berg 已提交
2918 2919

	if (!dev->ops->dump_station) {
2920
		err = -EOPNOTSUPP;
J
Johannes Berg 已提交
2921 2922 2923 2924
		goto out_err;
	}

	while (1) {
2925
		memset(&sinfo, 0, sizeof(sinfo));
J
Johannes Berg 已提交
2926 2927 2928 2929 2930
		err = dev->ops->dump_station(&dev->wiphy, netdev, sta_idx,
					     mac_addr, &sinfo);
		if (err == -ENOENT)
			break;
		if (err)
J
Johannes Berg 已提交
2931
			goto out_err;
J
Johannes Berg 已提交
2932 2933 2934 2935

		if (nl80211_send_station(skb,
				NETLINK_CB(cb->skb).pid,
				cb->nlh->nlmsg_seq, NLM_F_MULTI,
2936
				dev, netdev, mac_addr,
J
Johannes Berg 已提交
2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947
				&sinfo) < 0)
			goto out;

		sta_idx++;
	}


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

	return err;
2951
}
2952

2953 2954
static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
{
2955 2956
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
2957
	struct station_info sinfo;
2958 2959
	struct sk_buff *msg;
	u8 *mac_addr = NULL;
2960
	int err;
2961

2962
	memset(&sinfo, 0, sizeof(sinfo));
2963 2964 2965 2966 2967 2968

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

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

2969 2970
	if (!rdev->ops->get_station)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
2971

2972
	err = rdev->ops->get_station(&rdev->wiphy, dev, mac_addr, &sinfo);
2973
	if (err)
2974
		return err;
2975

2976
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2977
	if (!msg)
2978
		return -ENOMEM;
2979 2980

	if (nl80211_send_station(msg, info->snd_pid, info->snd_seq, 0,
2981
				 rdev, dev, mac_addr, &sinfo) < 0) {
2982 2983 2984
		nlmsg_free(msg);
		return -ENOBUFS;
	}
J
Johannes Berg 已提交
2985

2986
	return genlmsg_reply(msg, info);
2987 2988 2989
}

/*
2990
 * Get vlan interface making sure it is running and on the right wiphy.
2991
 */
2992 2993
static struct net_device *get_vlan(struct genl_info *info,
				   struct cfg80211_registered_device *rdev)
2994
{
2995
	struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008
	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;
3009
	}
3010 3011 3012 3013 3014 3015 3016 3017 3018 3019

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

	return v;
 error:
	dev_put(v);
	return ERR_PTR(ret);
3020 3021 3022 3023
}

static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
{
3024
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
3025
	int err;
3026
	struct net_device *dev = info->user_ptr[1];
3027 3028 3029 3030 3031 3032
	struct station_parameters params;
	u8 *mac_addr = NULL;

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

	params.listen_interval = -1;
3033
	params.plink_state = -1;
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053

	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]);
	}

	if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
		params.listen_interval =
		    nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);

3054 3055 3056 3057
	if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
		params.ht_capa =
			nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);

3058 3059 3060
	if (!rdev->ops->change_station)
		return -EOPNOTSUPP;

3061
	if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
3062 3063
		return -EINVAL;

3064 3065 3066 3067
	if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION])
		params.plink_action =
		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);

3068 3069 3070 3071
	if (info->attrs[NL80211_ATTR_STA_PLINK_STATE])
		params.plink_state =
		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);

3072 3073 3074
	switch (dev->ieee80211_ptr->iftype) {
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_AP_VLAN:
3075
	case NL80211_IFTYPE_P2P_GO:
3076 3077
		/* disallow mesh-specific things */
		if (params.plink_action)
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101
			return -EINVAL;

		/* 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) |
				  BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
				  BIT(NL80211_STA_FLAG_WME) |
				  BIT(NL80211_STA_FLAG_MFP)))
			return -EINVAL;

		/* must be last in here for error handling */
		params.vlan = get_vlan(info, rdev);
		if (IS_ERR(params.vlan))
			return PTR_ERR(params.vlan);
3102
		break;
3103
	case NL80211_IFTYPE_P2P_CLIENT:
3104
	case NL80211_IFTYPE_STATION:
3105 3106 3107 3108 3109 3110 3111
		/*
		 * 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);
3112 3113 3114 3115 3116 3117 3118 3119 3120
		/* fall through */
	case NL80211_IFTYPE_ADHOC:
		/* disallow things sta doesn't support */
		if (params.plink_action)
			return -EINVAL;
		if (params.ht_capa)
			return -EINVAL;
		if (params.listen_interval >= 0)
			return -EINVAL;
3121 3122 3123
		/* reject any changes other than AUTHORIZED */
		if (params.sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
			return -EINVAL;
3124 3125 3126 3127
		break;
	case NL80211_IFTYPE_MESH_POINT:
		/* disallow things mesh doesn't support */
		if (params.vlan)
3128
			return -EINVAL;
3129
		if (params.ht_capa)
3130
			return -EINVAL;
3131
		if (params.listen_interval >= 0)
3132 3133 3134 3135 3136
			return -EINVAL;
		/*
		 * No special handling for TDLS here -- the userspace
		 * mesh code doesn't have this bug.
		 */
3137 3138
		if (params.sta_flags_mask &
				~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3139
				  BIT(NL80211_STA_FLAG_MFP) |
3140
				  BIT(NL80211_STA_FLAG_AUTHORIZED)))
3141
			return -EINVAL;
3142 3143
		break;
	default:
3144
		return -EOPNOTSUPP;
3145 3146
	}

3147
	/* be aware of params.vlan when changing code here */
3148

3149
	err = rdev->ops->change_station(&rdev->wiphy, dev, mac_addr, &params);
3150 3151 3152

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

3154 3155 3156
	return err;
}

3157 3158 3159 3160 3161 3162
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 },
};

3163 3164
static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
{
3165
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
3166
	int err;
3167
	struct net_device *dev = info->user_ptr[1];
3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181
	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;

3182 3183 3184
	if (!info->attrs[NL80211_ATTR_STA_AID])
		return -EINVAL;

3185 3186 3187 3188 3189 3190 3191
	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]);
3192

3193 3194 3195
	params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
	if (!params.aid || params.aid > IEEE80211_MAX_AID)
		return -EINVAL;
3196

3197 3198 3199
	if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
		params.ht_capa =
			nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
3200

3201 3202 3203 3204
	if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION])
		params.plink_action =
		    nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);

3205 3206 3207
	if (!rdev->ops->add_station)
		return -EOPNOTSUPP;

3208
	if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
3209 3210
		return -EINVAL;

3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
	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;
3234

3235 3236 3237
			if (tb[NL80211_STA_WME_MAX_SP])
				params.max_sp =
				     nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
3238

3239 3240 3241
			if (params.max_sp &
					~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
				return -EINVAL;
3242

3243 3244 3245 3246
			params.sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
		}
		/* TDLS peers cannot be added */
		if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
3247
			return -EINVAL;
3248 3249
		/* but don't bother the driver with it */
		params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3250

3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273
		/* 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:
		/* TDLS peers cannot be added */
		if (params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
			return -EINVAL;
		break;
	case NL80211_IFTYPE_STATION:
		/* 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;
3274 3275
	}

3276
	/* be aware of params.vlan when changing code here */
3277

3278
	err = rdev->ops->add_station(&rdev->wiphy, dev, mac_addr, &params);
3279 3280 3281 3282 3283 3284 3285 3286

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

static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
{
3287 3288
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3289 3290 3291 3292 3293
	u8 *mac_addr = NULL;

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

3294
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3295
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
3296
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
3297 3298
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EINVAL;
3299

3300 3301
	if (!rdev->ops->del_station)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
3302

3303
	return rdev->ops->del_station(&rdev->wiphy, dev, mac_addr);
3304 3305
}

3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317
static int nl80211_send_mpath(struct sk_buff *msg, u32 pid, u32 seq,
				int flags, struct net_device *dev,
				u8 *dst, u8 *next_hop,
				struct mpath_info *pinfo)
{
	void *hdr;
	struct nlattr *pinfoattr;

	hdr = nl80211hdr_put(msg, pid, seq, flags, NL80211_CMD_NEW_STATION);
	if (!hdr)
		return -1;

3318 3319 3320 3321 3322
	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;
3323

3324 3325 3326
	pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
	if (!pinfoattr)
		goto nla_put_failure;
3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348
	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;
3349 3350 3351 3352 3353 3354

	nla_nest_end(msg, pinfoattr);

	return genlmsg_end(msg, hdr);

 nla_put_failure:
3355 3356
	genlmsg_cancel(msg, hdr);
	return -EMSGSIZE;
3357 3358 3359
}

static int nl80211_dump_mpath(struct sk_buff *skb,
J
Johannes Berg 已提交
3360
			      struct netlink_callback *cb)
3361 3362 3363
{
	struct mpath_info pinfo;
	struct cfg80211_registered_device *dev;
J
Johannes Berg 已提交
3364
	struct net_device *netdev;
3365 3366
	u8 dst[ETH_ALEN];
	u8 next_hop[ETH_ALEN];
J
Johannes Berg 已提交
3367
	int path_idx = cb->args[1];
3368 3369
	int err;

3370 3371 3372
	err = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev);
	if (err)
		return err;
J
Johannes Berg 已提交
3373 3374

	if (!dev->ops->dump_mpath) {
3375
		err = -EOPNOTSUPP;
J
Johannes Berg 已提交
3376 3377 3378
		goto out_err;
	}

3379 3380
	if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT) {
		err = -EOPNOTSUPP;
3381
		goto out_err;
3382 3383
	}

J
Johannes Berg 已提交
3384 3385 3386 3387
	while (1) {
		err = dev->ops->dump_mpath(&dev->wiphy, netdev, path_idx,
					   dst, next_hop, &pinfo);
		if (err == -ENOENT)
3388
			break;
J
Johannes Berg 已提交
3389
		if (err)
J
Johannes Berg 已提交
3390
			goto out_err;
3391

J
Johannes Berg 已提交
3392 3393 3394 3395 3396
		if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).pid,
				       cb->nlh->nlmsg_seq, NLM_F_MULTI,
				       netdev, dst, next_hop,
				       &pinfo) < 0)
			goto out;
3397

J
Johannes Berg 已提交
3398
		path_idx++;
3399 3400 3401
	}


J
Johannes Berg 已提交
3402 3403 3404 3405
 out:
	cb->args[1] = path_idx;
	err = skb->len;
 out_err:
3406
	nl80211_finish_netdev_dump(dev);
J
Johannes Berg 已提交
3407
	return err;
3408 3409 3410 3411
}

static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
{
3412
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
3413
	int err;
3414
	struct net_device *dev = info->user_ptr[1];
3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426
	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]);

3427 3428
	if (!rdev->ops->get_mpath)
		return -EOPNOTSUPP;
3429

3430 3431
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;
3432

3433
	err = rdev->ops->get_mpath(&rdev->wiphy, dev, dst, next_hop, &pinfo);
3434
	if (err)
3435
		return err;
3436

3437
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3438
	if (!msg)
3439
		return -ENOMEM;
3440 3441

	if (nl80211_send_mpath(msg, info->snd_pid, info->snd_seq, 0,
3442 3443 3444 3445
				 dev, dst, next_hop, &pinfo) < 0) {
		nlmsg_free(msg);
		return -ENOBUFS;
	}
J
Johannes Berg 已提交
3446

3447
	return genlmsg_reply(msg, info);
3448 3449 3450 3451
}

static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
{
3452 3453
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465
	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]);

3466 3467
	if (!rdev->ops->change_mpath)
		return -EOPNOTSUPP;
3468

3469 3470
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;
3471

3472
	return rdev->ops->change_mpath(&rdev->wiphy, dev, dst, next_hop);
3473
}
3474

3475 3476
static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
{
3477 3478
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490
	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]);

3491 3492
	if (!rdev->ops->add_mpath)
		return -EOPNOTSUPP;
3493

3494 3495
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;
3496

3497
	return rdev->ops->add_mpath(&rdev->wiphy, dev, dst, next_hop);
3498 3499 3500 3501
}

static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
{
3502 3503
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3504 3505 3506 3507 3508
	u8 *dst = NULL;

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

3509 3510
	if (!rdev->ops->del_mpath)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
3511

3512
	return rdev->ops->del_mpath(&rdev->wiphy, dev, dst);
3513 3514
}

3515 3516
static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
{
3517 3518
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3519 3520 3521 3522 3523 3524 3525
	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;
3526
	params.ap_isolate = -1;
3527
	params.ht_opmode = -1;
3528 3529 3530 3531 3532 3533 3534 3535 3536 3537

	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]);
3538 3539 3540 3541 3542 3543
	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]);
	}
3544 3545
	if (info->attrs[NL80211_ATTR_AP_ISOLATE])
		params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
3546 3547 3548
	if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
		params.ht_opmode =
			nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
3549

3550 3551
	if (!rdev->ops->change_bss)
		return -EOPNOTSUPP;
3552

3553
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3554 3555
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
3556

3557
	return rdev->ops->change_bss(&rdev->wiphy, dev, &params);
3558 3559
}

A
Alexey Dobriyan 已提交
3560
static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608
	[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;
3609
	enum nl80211_user_reg_hint_type user_reg_hint_type;
3610

3611 3612 3613 3614 3615 3616 3617 3618
	/*
	 * 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.
	 */
	mutex_lock(&cfg80211_mutex);
	if (unlikely(!cfg80211_regdomain)) {
3619 3620
		mutex_unlock(&cfg80211_mutex);
		return -EINPROGRESS;
3621
	}
3622
	mutex_unlock(&cfg80211_mutex);
3623

3624 3625
	if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
		return -EINVAL;
3626 3627 3628

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

3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643
	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);
3644

3645 3646 3647
	return r;
}

3648
static int nl80211_get_mesh_config(struct sk_buff *skb,
3649
				   struct genl_info *info)
3650
{
3651 3652
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3653 3654 3655
	struct wireless_dev *wdev = dev->ieee80211_ptr;
	struct mesh_config cur_params;
	int err = 0;
3656 3657 3658 3659
	void *hdr;
	struct nlattr *pinfoattr;
	struct sk_buff *msg;

3660 3661 3662
	if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;

3663
	if (!rdev->ops->get_mesh_config)
3664
		return -EOPNOTSUPP;
3665

3666 3667 3668 3669 3670
	wdev_lock(wdev);
	/* If not connected, get default parameters */
	if (!wdev->mesh_id_len)
		memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
	else
3671
		err = rdev->ops->get_mesh_config(&rdev->wiphy, dev,
3672 3673 3674
						 &cur_params);
	wdev_unlock(wdev);

3675
	if (err)
3676
		return err;
3677 3678

	/* Draw up a netlink message to send back */
3679
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3680 3681
	if (!msg)
		return -ENOMEM;
3682
	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
3683
			     NL80211_CMD_GET_MESH_CONFIG);
3684
	if (!hdr)
3685
		goto out;
3686
	pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
3687 3688
	if (!pinfoattr)
		goto nla_put_failure;
3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705
	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) ||
3706 3707
	    nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
			cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730
	    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,
3731 3732
			cur_params.rssi_threshold) ||
	    nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
3733 3734 3735 3736
			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,
3737 3738 3739
			cur_params.dot11MeshHWMProotInterval) ||
	    nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
			cur_params.dot11MeshHWMPconfirmationInterval))
3740
		goto nla_put_failure;
3741 3742
	nla_nest_end(msg, pinfoattr);
	genlmsg_end(msg, hdr);
3743
	return genlmsg_reply(msg, info);
3744

J
Johannes Berg 已提交
3745
 nla_put_failure:
3746
	genlmsg_cancel(msg, hdr);
3747
 out:
Y
Yuri Ershov 已提交
3748
	nlmsg_free(msg);
3749
	return -ENOBUFS;
3750 3751
}

A
Alexey Dobriyan 已提交
3752
static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
3753 3754 3755 3756 3757 3758
	[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 },
3759
	[NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
3760
	[NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
3761
	[NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
3762 3763 3764 3765 3766
	[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 },
3767
	[NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
3768
	[NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
3769
	[NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
3770
	[NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
3771
	[NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
3772
	[NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
3773 3774
	[NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
	[NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
3775 3776
	[NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
	[NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
3777
	[NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
3778 3779
};

3780 3781
static const struct nla_policy
	nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
3782
	[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
3783 3784
	[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
	[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
3785
	[NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
3786
	[NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
3787
				    .len = IEEE80211_MAX_DATA_LEN },
3788
	[NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
3789 3790
};

3791
static int nl80211_parse_mesh_config(struct genl_info *info,
3792 3793
				     struct mesh_config *cfg,
				     u32 *mask_out)
3794 3795
{
	struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
3796
	u32 mask = 0;
3797

3798 3799 3800 3801 3802 3803 3804 3805 3806
#define FILL_IN_MESH_PARAM_IF_SET(table, cfg, param, mask, attr_num, nla_fn) \
do {\
	if (table[attr_num]) {\
		cfg->param = nla_fn(table[attr_num]); \
		mask |= (1 << (attr_num - 1)); \
	} \
} while (0);\


3807
	if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
3808 3809
		return -EINVAL;
	if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
3810
			     info->attrs[NL80211_ATTR_MESH_CONFIG],
3811
			     nl80211_meshconf_params_policy))
3812 3813 3814 3815 3816 3817 3818 3819
		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 */
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout,
3820 3821
				  mask, NL80211_MESHCONF_RETRY_TIMEOUT,
				  nla_get_u16);
3822
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout,
3823 3824
				  mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
				  nla_get_u16);
3825
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout,
3826 3827
				  mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
				  nla_get_u16);
3828
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks,
3829 3830
				  mask, NL80211_MESHCONF_MAX_PEER_LINKS,
				  nla_get_u16);
3831
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries,
3832 3833
				  mask, NL80211_MESHCONF_MAX_RETRIES,
				  nla_get_u8);
3834
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL,
3835
				  mask, NL80211_MESHCONF_TTL, nla_get_u8);
3836
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl,
3837 3838
				  mask, NL80211_MESHCONF_ELEMENT_TTL,
				  nla_get_u8);
3839
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks,
3840 3841 3842 3843 3844
				  mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
				  nla_get_u8);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor, mask,
				  NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
				  nla_get_u32);
3845
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries,
3846 3847
				  mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
				  nla_get_u8);
3848
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time,
3849 3850
				  mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
				  nla_get_u32);
3851
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout,
3852 3853 3854 3855 3856
				  mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
				  nla_get_u16);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout, mask,
				  NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
				  nla_get_u32);
3857
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
3858 3859
				  mask, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
				  nla_get_u16);
3860
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
3861 3862
				  mask, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
				  nla_get_u16);
3863
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
3864 3865 3866 3867 3868 3869 3870 3871
				  dot11MeshHWMPnetDiameterTraversalTime, mask,
				  NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
				  nla_get_u16);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, mask,
				  NL80211_MESHCONF_HWMP_ROOTMODE, nla_get_u8);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, mask,
				  NL80211_MESHCONF_HWMP_RANN_INTERVAL,
				  nla_get_u16);
3872
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
3873 3874 3875
				  dot11MeshGateAnnouncementProtocol, mask,
				  NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
				  nla_get_u8);
3876
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding,
3877 3878
				  mask, NL80211_MESHCONF_FORWARDING,
				  nla_get_u8);
3879
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold,
3880 3881
				  mask, NL80211_MESHCONF_RSSI_THRESHOLD,
				  nla_get_u32);
3882
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode,
3883
				  mask, NL80211_MESHCONF_HT_OPMODE,
3884 3885 3886 3887 3888 3889 3890
				  nla_get_u16);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
				  mask,
				  NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
				  nla_get_u32);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval,
				  mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
3891 3892 3893 3894
				  nla_get_u16);
	FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
				  dot11MeshHWMPconfirmationInterval, mask,
				  NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
3895
				  nla_get_u16);
3896 3897
	if (mask_out)
		*mask_out = mask;
3898

3899 3900 3901 3902 3903
	return 0;

#undef FILL_IN_MESH_PARAM_IF_SET
}

3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915
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;

3916 3917 3918 3919 3920 3921
	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;

3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933
	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;

3934 3935

	if (tb[NL80211_MESH_SETUP_IE]) {
3936
		struct nlattr *ieattr =
3937
			tb[NL80211_MESH_SETUP_IE];
3938 3939
		if (!is_valid_ie_attr(ieattr))
			return -EINVAL;
3940 3941
		setup->ie = nla_data(ieattr);
		setup->ie_len = nla_len(ieattr);
3942
	}
3943 3944
	setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
	setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
3945 3946 3947 3948

	return 0;
}

3949
static int nl80211_update_mesh_config(struct sk_buff *skb,
3950
				      struct genl_info *info)
3951 3952 3953
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
3954
	struct wireless_dev *wdev = dev->ieee80211_ptr;
3955 3956 3957 3958
	struct mesh_config cfg;
	u32 mask;
	int err;

3959 3960 3961
	if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
		return -EOPNOTSUPP;

3962
	if (!rdev->ops->update_mesh_config)
3963 3964
		return -EOPNOTSUPP;

3965
	err = nl80211_parse_mesh_config(info, &cfg, &mask);
3966 3967 3968
	if (err)
		return err;

3969 3970 3971 3972 3973
	wdev_lock(wdev);
	if (!wdev->mesh_id_len)
		err = -ENOLINK;

	if (!err)
3974
		err = rdev->ops->update_mesh_config(&rdev->wiphy, dev,
3975 3976 3977 3978 3979
						    mask, &cfg);

	wdev_unlock(wdev);

	return err;
3980 3981
}

3982 3983 3984 3985 3986 3987 3988 3989
static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
{
	struct sk_buff *msg;
	void *hdr = NULL;
	struct nlattr *nl_reg_rules;
	unsigned int i;
	int err = -EINVAL;

3990
	mutex_lock(&cfg80211_mutex);
3991 3992 3993 3994

	if (!cfg80211_regdomain)
		goto out;

3995
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3996 3997 3998 3999 4000 4001 4002 4003
	if (!msg) {
		err = -ENOBUFS;
		goto out;
	}

	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
			     NL80211_CMD_GET_REG);
	if (!hdr)
4004
		goto put_failure;
4005

4006 4007 4008 4009 4010 4011
	if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
			   cfg80211_regdomain->alpha2) ||
	    (cfg80211_regdomain->dfs_region &&
	     nla_put_u8(msg, NL80211_ATTR_DFS_REGION,
			cfg80211_regdomain->dfs_region)))
		goto nla_put_failure;
4012

4013 4014 4015 4016 4017
	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;

4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035
	nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
	if (!nl_reg_rules)
		goto nla_put_failure;

	for (i = 0; i < cfg80211_regdomain->n_reg_rules; i++) {
		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;

		reg_rule = &cfg80211_regdomain->reg_rules[i];
		freq_range = &reg_rule->freq_range;
		power_rule = &reg_rule->power_rule;

		nl_reg_rule = nla_nest_start(msg, i);
		if (!nl_reg_rule)
			goto nla_put_failure;

4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048
		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))
			goto nla_put_failure;
4049 4050 4051 4052 4053 4054 4055

		nla_nest_end(msg, nl_reg_rule);
	}

	nla_nest_end(msg, nl_reg_rules);

	genlmsg_end(msg, hdr);
J
Johannes Berg 已提交
4056
	err = genlmsg_reply(msg, info);
4057 4058 4059 4060
	goto out;

nla_put_failure:
	genlmsg_cancel(msg, hdr);
4061
put_failure:
Y
Yuri Ershov 已提交
4062
	nlmsg_free(msg);
4063 4064
	err = -EMSGSIZE;
out:
4065
	mutex_unlock(&cfg80211_mutex);
4066 4067 4068
	return err;
}

4069 4070 4071 4072 4073 4074 4075
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;
4076
	u8 dfs_region = 0;
4077 4078 4079 4080 4081 4082 4083 4084 4085 4086
	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]);

4087 4088 4089
	if (info->attrs[NL80211_ATTR_DFS_REGION])
		dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);

4090 4091 4092 4093
	nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
			rem_reg_rules) {
		num_rules++;
		if (num_rules > NL80211_MAX_SUPP_REG_RULES)
4094
			return -EINVAL;
4095 4096
	}

4097 4098
	mutex_lock(&cfg80211_mutex);

4099 4100 4101 4102
	if (!reg_is_valid_request(alpha2)) {
		r = -EINVAL;
		goto bad_reg;
	}
4103 4104 4105 4106 4107

	size_of_regd = sizeof(struct ieee80211_regdomain) +
		(num_rules * sizeof(struct ieee80211_reg_rule));

	rd = kzalloc(size_of_regd, GFP_KERNEL);
4108 4109 4110 4111
	if (!rd) {
		r = -ENOMEM;
		goto bad_reg;
	}
4112 4113 4114 4115 4116

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

4117 4118 4119 4120 4121 4122 4123
	/*
	 * 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;

4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134
	nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
			rem_reg_rules) {
		nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
			nla_data(nl_reg_rule), nla_len(nl_reg_rule),
			reg_rule_policy);
		r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
		if (r)
			goto bad_reg;

		rule_idx++;

4135 4136
		if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
			r = -EINVAL;
4137
			goto bad_reg;
4138
		}
4139 4140 4141 4142 4143
	}

	BUG_ON(rule_idx != num_rules);

	r = set_regdom(rd);
4144

4145
	mutex_unlock(&cfg80211_mutex);
4146

4147 4148
	return r;

4149
 bad_reg:
4150
	mutex_unlock(&cfg80211_mutex);
4151
	kfree(rd);
4152
	return r;
4153 4154
}

4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179
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;
}

4180 4181
static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
{
4182
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
J
Johannes Berg 已提交
4183
	struct wireless_dev *wdev = info->user_ptr[1];
4184 4185 4186
	struct cfg80211_scan_request *request;
	struct nlattr *attr;
	struct wiphy *wiphy;
4187
	int err, tmp, n_ssids = 0, n_channels, i;
4188
	size_t ie_len;
4189

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

4193
	wiphy = &rdev->wiphy;
4194

4195 4196
	if (!rdev->ops->scan)
		return -EOPNOTSUPP;
4197

4198 4199
	if (rdev->scan_req)
		return -EBUSY;
4200 4201

	if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
4202 4203
		n_channels = validate_scan_freqs(
				info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
4204 4205
		if (!n_channels)
			return -EINVAL;
4206
	} else {
4207
		enum ieee80211_band band;
4208 4209
		n_channels = 0;

4210 4211 4212 4213 4214 4215 4216 4217 4218
		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++;

4219 4220
	if (n_ssids > wiphy->max_scan_ssids)
		return -EINVAL;
4221

4222 4223 4224 4225 4226
	if (info->attrs[NL80211_ATTR_IE])
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
	else
		ie_len = 0;

4227 4228
	if (ie_len > wiphy->max_scan_ie_len)
		return -EINVAL;
4229

4230
	request = kzalloc(sizeof(*request)
4231 4232
			+ sizeof(*request->ssids) * n_ssids
			+ sizeof(*request->channels) * n_channels
4233
			+ ie_len, GFP_KERNEL);
4234 4235
	if (!request)
		return -ENOMEM;
4236 4237

	if (n_ssids)
4238
		request->ssids = (void *)&request->channels[n_channels];
4239
	request->n_ssids = n_ssids;
4240 4241 4242 4243 4244 4245
	if (ie_len) {
		if (request->ssids)
			request->ie = (void *)(request->ssids + n_ssids);
		else
			request->ie = (void *)(request->channels + n_channels);
	}
4246

J
Johannes Berg 已提交
4247
	i = 0;
4248 4249 4250
	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 已提交
4251 4252 4253 4254 4255
			struct ieee80211_channel *chan;

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

			if (!chan) {
4256 4257 4258
				err = -EINVAL;
				goto out_free;
			}
J
Johannes Berg 已提交
4259 4260 4261 4262 4263 4264

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

			request->channels[i] = chan;
4265 4266 4267
			i++;
		}
	} else {
4268 4269
		enum ieee80211_band band;

4270 4271 4272 4273 4274 4275
		/* 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 已提交
4276 4277 4278 4279 4280 4281 4282 4283
				struct ieee80211_channel *chan;

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

				if (chan->flags & IEEE80211_CHAN_DISABLED)
					continue;

				request->channels[i] = chan;
4284 4285 4286 4287 4288
				i++;
			}
		}
	}

J
Johannes Berg 已提交
4289 4290 4291 4292 4293 4294 4295
	if (!i) {
		err = -EINVAL;
		goto out_free;
	}

	request->n_channels = i;

4296 4297 4298
	i = 0;
	if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
		nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
4299
			if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
4300 4301 4302
				err = -EINVAL;
				goto out_free;
			}
4303
			request->ssids[i].ssid_len = nla_len(attr);
4304 4305 4306 4307 4308
			memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
			i++;
		}
	}

4309 4310
	if (info->attrs[NL80211_ATTR_IE]) {
		request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
4311 4312
		memcpy((void *)request->ie,
		       nla_data(info->attrs[NL80211_ATTR_IE]),
4313 4314 4315
		       request->ie_len);
	}

4316
	for (i = 0; i < IEEE80211_NUM_BANDS; i++)
4317 4318 4319
		if (wiphy->bands[i])
			request->rates[i] =
				(1 << wiphy->bands[i]->n_bitrates) - 1;
4320 4321 4322 4323 4324 4325 4326

	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);

4327
			if (band < 0 || band >= IEEE80211_NUM_BANDS) {
4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339
				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;
		}
	}

4340 4341 4342
	request->no_cck =
		nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);

J
Johannes Berg 已提交
4343
	request->wdev = wdev;
4344
	request->wiphy = &rdev->wiphy;
4345

4346
	rdev->scan_req = request;
J
Johannes Berg 已提交
4347
	err = rdev->ops->scan(&rdev->wiphy, request);
4348

4349
	if (!err) {
J
Johannes Berg 已提交
4350 4351 4352
		nl80211_send_scan_start(rdev, wdev);
		if (wdev->netdev)
			dev_hold(wdev->netdev);
4353
	} else {
4354
 out_free:
4355
		rdev->scan_req = NULL;
4356 4357
		kfree(request);
	}
J
Johannes Berg 已提交
4358

4359 4360 4361
	return err;
}

4362 4363 4364 4365 4366 4367 4368 4369
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;
4370
	int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i;
4371
	u32 interval;
4372 4373
	enum ieee80211_band band;
	size_t ie_len;
4374
	struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
4375 4376 4377 4378 4379 4380 4381 4382

	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;

4383 4384 4385 4386 4387 4388 4389
	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;

4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409
	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++;

4410
	if (n_ssids > wiphy->max_sched_scan_ssids)
4411 4412
		return -EINVAL;

4413 4414 4415 4416 4417 4418 4419 4420 4421
	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;

4422 4423 4424 4425 4426
	if (info->attrs[NL80211_ATTR_IE])
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
	else
		ie_len = 0;

4427
	if (ie_len > wiphy->max_sched_scan_ie_len)
4428 4429
		return -EINVAL;

4430 4431 4432 4433 4434 4435 4436
	mutex_lock(&rdev->sched_scan_mtx);

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

4437
	request = kzalloc(sizeof(*request)
4438
			+ sizeof(*request->ssids) * n_ssids
4439
			+ sizeof(*request->match_sets) * n_match_sets
4440
			+ sizeof(*request->channels) * n_channels
4441
			+ ie_len, GFP_KERNEL);
4442 4443 4444 4445
	if (!request) {
		err = -ENOMEM;
		goto out;
	}
4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456

	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);
	}

4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468
	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;

4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521
	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) {
4522
			if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
4523 4524 4525
				err = -EINVAL;
				goto out_free;
			}
4526
			request->ssids[i].ssid_len = nla_len(attr);
4527 4528 4529 4530 4531 4532
			memcpy(request->ssids[i].ssid, nla_data(attr),
			       nla_len(attr));
			i++;
		}
	}

4533 4534 4535 4536 4537
	i = 0;
	if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
		nla_for_each_nested(attr,
				    info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
				    tmp) {
4538
			struct nlattr *ssid, *rssi;
4539 4540 4541 4542

			nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
				  nla_data(attr), nla_len(attr),
				  nl80211_match_policy);
4543
			ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
4544 4545 4546 4547 4548 4549 4550 4551 4552 4553
			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);
			}
4554 4555 4556 4557 4558 4559
			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;
4560 4561 4562 4563
			i++;
		}
	}

4564 4565 4566 4567 4568 4569 4570 4571 4572
	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);
	}

	request->dev = dev;
	request->wiphy = &rdev->wiphy;
4573
	request->interval = interval;
4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585

	err = rdev->ops->sched_scan_start(&rdev->wiphy, dev, request);
	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:
4586
	mutex_unlock(&rdev->sched_scan_mtx);
4587 4588 4589 4590 4591 4592 4593
	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];
4594
	int err;
4595 4596 4597 4598 4599

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

4600 4601 4602 4603 4604
	mutex_lock(&rdev->sched_scan_mtx);
	err = __cfg80211_stop_sched_scan(rdev, false);
	mutex_unlock(&rdev->sched_scan_mtx);

	return err;
4605 4606
}

4607 4608
static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
			    u32 seq, int flags,
4609
			    struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
4610 4611
			    struct wireless_dev *wdev,
			    struct cfg80211_internal_bss *intbss)
4612
{
J
Johannes Berg 已提交
4613
	struct cfg80211_bss *res = &intbss->pub;
4614 4615
	void *hdr;
	struct nlattr *bss;
J
Johannes Berg 已提交
4616 4617

	ASSERT_WDEV_LOCK(wdev);
4618

4619
	hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).pid, seq, flags,
4620 4621 4622 4623
			     NL80211_CMD_NEW_SCAN_RESULTS);
	if (!hdr)
		return -1;

4624 4625
	genl_dump_check_consistent(cb, hdr, &nl80211_fam);

4626 4627 4628
	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;
4629 4630 4631 4632

	bss = nla_nest_start(msg, NL80211_ATTR_BSS);
	if (!bss)
		goto nla_put_failure;
4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654
	if ((!is_zero_ether_addr(res->bssid) &&
	     nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)) ||
	    (res->information_elements && res->len_information_elements &&
	     nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
		     res->len_information_elements,
		     res->information_elements)) ||
	    (res->beacon_ies && res->len_beacon_ies &&
	     res->beacon_ies != res->information_elements &&
	     nla_put(msg, NL80211_BSS_BEACON_IES,
		     res->len_beacon_ies, res->beacon_ies)))
		goto nla_put_failure;
	if (res->tsf &&
	    nla_put_u64(msg, NL80211_BSS_TSF, res->tsf))
		goto nla_put_failure;
	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;
4655

J
Johannes Berg 已提交
4656
	switch (rdev->wiphy.signal_type) {
4657
	case CFG80211_SIGNAL_TYPE_MBM:
4658 4659
		if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
			goto nla_put_failure;
4660 4661
		break;
	case CFG80211_SIGNAL_TYPE_UNSPEC:
4662 4663
		if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
			goto nla_put_failure;
4664 4665 4666 4667 4668
		break;
	default:
		break;
	}

J
Johannes Berg 已提交
4669
	switch (wdev->iftype) {
4670
	case NL80211_IFTYPE_P2P_CLIENT:
J
Johannes Berg 已提交
4671
	case NL80211_IFTYPE_STATION:
4672 4673 4674 4675
		if (intbss == wdev->current_bss &&
		    nla_put_u32(msg, NL80211_BSS_STATUS,
				NL80211_BSS_STATUS_ASSOCIATED))
			goto nla_put_failure;
J
Johannes Berg 已提交
4676 4677
		break;
	case NL80211_IFTYPE_ADHOC:
4678 4679 4680 4681
		if (intbss == wdev->current_bss &&
		    nla_put_u32(msg, NL80211_BSS_STATUS,
				NL80211_BSS_STATUS_IBSS_JOINED))
			goto nla_put_failure;
J
Johannes Berg 已提交
4682 4683 4684 4685 4686
		break;
	default:
		break;
	}

4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698
	nla_nest_end(msg, bss);

	return genlmsg_end(msg, hdr);

 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 已提交
4699 4700
	struct cfg80211_registered_device *rdev;
	struct net_device *dev;
4701
	struct cfg80211_internal_bss *scan;
J
Johannes Berg 已提交
4702
	struct wireless_dev *wdev;
4703 4704 4705
	int start = cb->args[1], idx = 0;
	int err;

4706 4707 4708
	err = nl80211_prepare_netdev_dump(skb, cb, &rdev, &dev);
	if (err)
		return err;
4709

J
Johannes Berg 已提交
4710
	wdev = dev->ieee80211_ptr;
4711

J
Johannes Berg 已提交
4712 4713 4714 4715
	wdev_lock(wdev);
	spin_lock_bh(&rdev->bss_lock);
	cfg80211_bss_expire(rdev);

4716 4717
	cb->seq = rdev->bss_generation;

J
Johannes Berg 已提交
4718
	list_for_each_entry(scan, &rdev->bss_list, list) {
4719 4720
		if (++idx <= start)
			continue;
4721
		if (nl80211_send_bss(skb, cb,
4722
				cb->nlh->nlmsg_seq, NLM_F_MULTI,
J
Johannes Berg 已提交
4723
				rdev, wdev, scan) < 0) {
4724
			idx--;
4725
			break;
4726 4727 4728
		}
	}

J
Johannes Berg 已提交
4729 4730
	spin_unlock_bh(&rdev->bss_lock);
	wdev_unlock(wdev);
4731 4732

	cb->args[1] = idx;
4733
	nl80211_finish_netdev_dump(rdev);
4734

4735
	return skb->len;
4736 4737
}

4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749
static int nl80211_send_survey(struct sk_buff *msg, u32 pid, u32 seq,
				int flags, struct net_device *dev,
				struct survey_info *survey)
{
	void *hdr;
	struct nlattr *infoattr;

	hdr = nl80211hdr_put(msg, pid, seq, flags,
			     NL80211_CMD_NEW_SURVEY_RESULTS);
	if (!hdr)
		return -ENOMEM;

4750 4751
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
		goto nla_put_failure;
4752 4753 4754 4755 4756

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

4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786
	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;
4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805

	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;

4806 4807 4808
	res = nl80211_prepare_netdev_dump(skb, cb, &dev, &netdev);
	if (res)
		return res;
4809 4810 4811 4812 4813 4814 4815

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

	while (1) {
4816 4817
		struct ieee80211_channel *chan;

4818 4819 4820 4821 4822 4823 4824
		res = dev->ops->dump_survey(&dev->wiphy, netdev, survey_idx,
					    &survey);
		if (res == -ENOENT)
			break;
		if (res)
			goto out_err;

4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837
		/* 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;
		}

4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850
		if (nl80211_send_survey(skb,
				NETLINK_CB(cb->skb).pid,
				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:
4851
	nl80211_finish_netdev_dump(dev);
4852 4853 4854
	return res;
}

4855 4856
static bool nl80211_valid_auth_type(enum nl80211_auth_type auth_type)
{
S
Samuel Ortiz 已提交
4857 4858 4859 4860 4861 4862 4863 4864 4865
	return auth_type <= NL80211_AUTHTYPE_MAX;
}

static bool nl80211_valid_wpa_versions(u32 wpa_versions)
{
	return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
				  NL80211_WPA_VERSION_2));
}

4866 4867
static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
{
4868 4869
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
4870 4871 4872 4873
	struct ieee80211_channel *chan;
	const u8 *bssid, *ssid, *ie = NULL;
	int err, ssid_len, ie_len = 0;
	enum nl80211_auth_type auth_type;
J
Johannes Berg 已提交
4874
	struct key_parse key;
4875
	bool local_state_change;
4876

4877 4878 4879 4880 4881 4882
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

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

4883 4884 4885
	if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
		return -EINVAL;

J
Johannes Berg 已提交
4886 4887 4888 4889 4890 4891
	if (!info->attrs[NL80211_ATTR_SSID])
		return -EINVAL;

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

J
Johannes Berg 已提交
4892 4893 4894 4895 4896
	err = nl80211_parse_key(info, &key);
	if (err)
		return err;

	if (key.idx >= 0) {
4897 4898
		if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
			return -EINVAL;
J
Johannes Berg 已提交
4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912
		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;
	}

4913 4914 4915 4916 4917 4918 4919 4920 4921
	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;
			}
		}
4922 4923
		if (!ok)
			return -EINVAL;
4924 4925
	}

4926 4927
	if (!rdev->ops->auth)
		return -EOPNOTSUPP;
4928

4929
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
4930 4931
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
4932

J
Johannes Berg 已提交
4933
	bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
4934
	chan = ieee80211_get_channel(&rdev->wiphy,
J
Johannes Berg 已提交
4935
		nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
4936 4937
	if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
		return -EINVAL;
4938

J
Johannes Berg 已提交
4939 4940
	ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
	ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
4941 4942

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
4943 4944
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
4945 4946
	}

J
Johannes Berg 已提交
4947
	auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
4948 4949
	if (!nl80211_valid_auth_type(auth_type))
		return -EINVAL;
4950

4951 4952
	local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];

4953 4954 4955 4956 4957 4958 4959
	/*
	 * Since we no longer track auth state, ignore
	 * requests to only change local state.
	 */
	if (local_state_change)
		return 0;

4960 4961
	return cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
				  ssid, ssid_len, ie, ie_len,
4962
				  key.p.key, key.p.key_len, key.idx);
4963 4964
}

4965 4966
static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
				   struct genl_info *info,
4967 4968
				   struct cfg80211_crypto_settings *settings,
				   int cipher_limit)
S
Samuel Ortiz 已提交
4969
{
4970 4971
	memset(settings, 0, sizeof(*settings));

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

4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986
	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 已提交
4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997
	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;

4998
		if (settings->n_ciphers_pairwise > cipher_limit)
S
Samuel Ortiz 已提交
4999 5000 5001 5002 5003
			return -EINVAL;

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

		for (i = 0; i < settings->n_ciphers_pairwise; i++)
5004 5005
			if (!cfg80211_supported_cipher_suite(
					&rdev->wiphy,
S
Samuel Ortiz 已提交
5006 5007 5008 5009 5010 5011 5012
					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]);
5013 5014
		if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
						     settings->cipher_group))
S
Samuel Ortiz 已提交
5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026
			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;
5027
		int len;
S
Samuel Ortiz 已提交
5028 5029 5030 5031 5032 5033 5034 5035

		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;

5036 5037 5038
		if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
			return -EINVAL;

S
Samuel Ortiz 已提交
5039 5040 5041 5042 5043 5044
		memcpy(settings->akm_suites, data, len);
	}

	return 0;
}

5045 5046
static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
{
5047 5048
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5049
	struct cfg80211_crypto_settings crypto;
5050
	struct ieee80211_channel *chan;
5051
	const u8 *bssid, *ssid, *ie = NULL, *prev_bssid = NULL;
J
Johannes Berg 已提交
5052 5053
	int err, ssid_len, ie_len = 0;
	bool use_mfp = false;
5054 5055 5056
	u32 flags = 0;
	struct ieee80211_ht_cap *ht_capa = NULL;
	struct ieee80211_ht_cap *ht_capa_mask = NULL;
5057

5058 5059 5060 5061
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

	if (!info->attrs[NL80211_ATTR_MAC] ||
J
Johannes Berg 已提交
5062 5063
	    !info->attrs[NL80211_ATTR_SSID] ||
	    !info->attrs[NL80211_ATTR_WIPHY_FREQ])
5064 5065
		return -EINVAL;

5066 5067
	if (!rdev->ops->assoc)
		return -EOPNOTSUPP;
5068

5069
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5070 5071
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5072

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

J
Johannes Berg 已提交
5075 5076
	chan = ieee80211_get_channel(&rdev->wiphy,
		nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
5077 5078
	if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
		return -EINVAL;
5079

J
Johannes Berg 已提交
5080 5081
	ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
	ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
5082 5083

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5084 5085
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5086 5087
	}

5088
	if (info->attrs[NL80211_ATTR_USE_MFP]) {
5089
		enum nl80211_mfp mfp =
5090
			nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
5091
		if (mfp == NL80211_MFP_REQUIRED)
J
Johannes Berg 已提交
5092
			use_mfp = true;
5093 5094
		else if (mfp != NL80211_MFP_NO)
			return -EINVAL;
5095 5096
	}

5097 5098 5099
	if (info->attrs[NL80211_ATTR_PREV_BSSID])
		prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);

5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112
	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]);
	}

5113
	err = nl80211_crypto_settings(rdev, info, &crypto, 1);
S
Samuel Ortiz 已提交
5114
	if (!err)
5115 5116
		err = cfg80211_mlme_assoc(rdev, dev, chan, bssid, prev_bssid,
					  ssid, ssid_len, ie, ie_len, use_mfp,
5117 5118
					  &crypto, flags, ht_capa,
					  ht_capa_mask);
5119 5120 5121 5122 5123 5124

	return err;
}

static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
{
5125 5126
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5127
	const u8 *ie = NULL, *bssid;
5128
	int ie_len = 0;
J
Johannes Berg 已提交
5129
	u16 reason_code;
5130
	bool local_state_change;
5131

5132 5133 5134 5135 5136 5137 5138 5139 5140
	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;

5141 5142
	if (!rdev->ops->deauth)
		return -EOPNOTSUPP;
5143

5144
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5145 5146
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5147

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

J
Johannes Berg 已提交
5150 5151
	reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
	if (reason_code == 0) {
5152
		/* Reason Code 0 is reserved */
5153
		return -EINVAL;
5154
	}
5155 5156

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5157 5158
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5159 5160
	}

5161 5162
	local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];

5163 5164
	return cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
				    local_state_change);
5165 5166 5167 5168
}

static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
{
5169 5170
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5171
	const u8 *ie = NULL, *bssid;
5172
	int ie_len = 0;
J
Johannes Berg 已提交
5173
	u16 reason_code;
5174
	bool local_state_change;
5175

5176 5177 5178 5179 5180 5181 5182 5183 5184
	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;

5185 5186
	if (!rdev->ops->disassoc)
		return -EOPNOTSUPP;
5187

5188
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5189 5190
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
5191

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

J
Johannes Berg 已提交
5194 5195
	reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
	if (reason_code == 0) {
5196
		/* Reason Code 0 is reserved */
5197
		return -EINVAL;
5198
	}
5199 5200

	if (info->attrs[NL80211_ATTR_IE]) {
J
Johannes Berg 已提交
5201 5202
		ie = nla_data(info->attrs[NL80211_ATTR_IE]);
		ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5203 5204
	}

5205 5206
	local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];

5207 5208
	return cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
				      local_state_change);
5209 5210
}

5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238
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 已提交
5239 5240
static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
{
5241 5242
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5243 5244
	struct cfg80211_ibss_params ibss;
	struct wiphy *wiphy;
J
Johannes Berg 已提交
5245
	struct cfg80211_cached_keys *connkeys = NULL;
J
Johannes Berg 已提交
5246 5247
	int err;

5248 5249
	memset(&ibss, 0, sizeof(ibss));

J
Johannes Berg 已提交
5250 5251 5252 5253 5254 5255 5256 5257
	if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
		return -EINVAL;

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

5258 5259 5260 5261 5262 5263 5264 5265 5266
	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;
	}

5267 5268
	if (!rdev->ops->join_ibss)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5269

5270 5271
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5272

5273
	wiphy = &rdev->wiphy;
J
Johannes Berg 已提交
5274

J
Johannes Berg 已提交
5275
	if (info->attrs[NL80211_ATTR_MAC]) {
J
Johannes Berg 已提交
5276
		ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
J
Johannes Berg 已提交
5277 5278 5279 5280

		if (!is_valid_ether_addr(ibss.bssid))
			return -EINVAL;
	}
J
Johannes Berg 已提交
5281 5282 5283 5284 5285 5286 5287 5288
	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]);
	}

5289 5290 5291
	if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
		enum nl80211_channel_type channel_type;

5292
		if (!nl80211_valid_channel_type(info, &channel_type))
5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306
			return -EINVAL;

		if (channel_type != NL80211_CHAN_NO_HT &&
		    !(wiphy->features & NL80211_FEATURE_HT_IBSS))
			return -EINVAL;

		ibss.channel_type = channel_type;
	} else {
		ibss.channel_type = NL80211_CHAN_NO_HT;
	}

	ibss.channel = rdev_freq_to_chan(rdev,
		nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]),
		ibss.channel_type);
J
Johannes Berg 已提交
5307 5308
	if (!ibss.channel ||
	    ibss.channel->flags & IEEE80211_CHAN_NO_IBSS ||
5309 5310
	    ibss.channel->flags & IEEE80211_CHAN_DISABLED)
		return -EINVAL;
J
Johannes Berg 已提交
5311

5312 5313 5314 5315 5316 5317 5318
	/* Both channels should be able to initiate communication */
	if ((ibss.channel_type == NL80211_CHAN_HT40PLUS ||
	     ibss.channel_type == NL80211_CHAN_HT40MINUS) &&
	    !cfg80211_can_beacon_sec_chan(&rdev->wiphy, ibss.channel,
					  ibss.channel_type))
		return -EINVAL;

J
Johannes Berg 已提交
5319
	ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
J
Johannes Berg 已提交
5320 5321
	ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];

5322 5323 5324 5325 5326 5327 5328 5329
	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 =
			wiphy->bands[ibss.channel->band];

5330 5331 5332 5333
		err = ieee80211_get_ratemask(sband, rates, n_rates,
					     &ibss.basic_rates);
		if (err)
			return err;
5334
	}
5335 5336 5337 5338 5339

	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;
5340

5341 5342 5343 5344 5345 5346
	if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
		connkeys = nl80211_parse_connkeys(rdev,
					info->attrs[NL80211_ATTR_KEYS]);
		if (IS_ERR(connkeys))
			return PTR_ERR(connkeys);
	}
J
Johannes Berg 已提交
5347

5348 5349 5350
	ibss.control_port =
		nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);

5351
	err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
J
Johannes Berg 已提交
5352 5353
	if (err)
		kfree(connkeys);
J
Johannes Berg 已提交
5354 5355 5356 5357 5358
	return err;
}

static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
{
5359 5360
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
J
Johannes Berg 已提交
5361

5362 5363
	if (!rdev->ops->leave_ibss)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5364

5365 5366
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
		return -EOPNOTSUPP;
J
Johannes Berg 已提交
5367

5368
	return cfg80211_leave_ibss(rdev, dev, false);
J
Johannes Berg 已提交
5369 5370
}

5371 5372 5373 5374 5375 5376 5377
#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)
{
5378
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395
	int err;

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

	err = -EOPNOTSUPP;
	if (rdev->ops->testmode_cmd) {
		rdev->testmode_info = info;
		err = rdev->ops->testmode_cmd(&rdev->wiphy,
				nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
				nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
		rdev->testmode_info = NULL;
	}

	return err;
}

W
Wey-Yi Guy 已提交
5396 5397 5398
static int nl80211_testmode_dump(struct sk_buff *skb,
				 struct netlink_callback *cb)
{
5399
	struct cfg80211_registered_device *rdev;
W
Wey-Yi Guy 已提交
5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416
	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;
5417

5418 5419 5420 5421 5422 5423
		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);
5424
		}
5425 5426 5427 5428
		phy_idx = rdev->wiphy_idx;
		rdev = NULL;
		mutex_unlock(&cfg80211_mutex);

W
Wey-Yi Guy 已提交
5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439
		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);
5440 5441
	rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
	if (!rdev) {
W
Wey-Yi Guy 已提交
5442 5443 5444
		mutex_unlock(&cfg80211_mutex);
		return -ENOENT;
	}
5445
	cfg80211_lock_rdev(rdev);
W
Wey-Yi Guy 已提交
5446 5447
	mutex_unlock(&cfg80211_mutex);

5448
	if (!rdev->ops->testmode_dump) {
W
Wey-Yi Guy 已提交
5449 5450 5451 5452 5453 5454 5455 5456 5457 5458
		err = -EOPNOTSUPP;
		goto out_err;
	}

	while (1) {
		void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).pid,
					   cb->nlh->nlmsg_seq, NLM_F_MULTI,
					   NL80211_CMD_TESTMODE);
		struct nlattr *tmdata;

5459
		if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
W
Wey-Yi Guy 已提交
5460 5461 5462 5463 5464 5465 5466 5467 5468
			genlmsg_cancel(skb, hdr);
			break;
		}

		tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
		if (!tmdata) {
			genlmsg_cancel(skb, hdr);
			break;
		}
5469 5470
		err = rdev->ops->testmode_dump(&rdev->wiphy, skb, cb,
					       data, data_len);
W
Wey-Yi Guy 已提交
5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487
		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:
5488
	cfg80211_unlock_rdev(rdev);
W
Wey-Yi Guy 已提交
5489 5490 5491
	return err;
}

5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509
static struct sk_buff *
__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
			      int approxlen, u32 pid, u32 seq, gfp_t gfp)
{
	struct sk_buff *skb;
	void *hdr;
	struct nlattr *data;

	skb = nlmsg_new(approxlen + 100, gfp);
	if (!skb)
		return NULL;

	hdr = nl80211hdr_put(skb, pid, seq, 0, NL80211_CMD_TESTMODE);
	if (!hdr) {
		kfree_skb(skb);
		return NULL;
	}

5510 5511
	if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
		goto nla_put_failure;
5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577
	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,
				rdev->testmode_info->snd_pid,
				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 已提交
5578 5579
static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
{
5580 5581
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
5582 5583
	struct cfg80211_connect_params connect;
	struct wiphy *wiphy;
J
Johannes Berg 已提交
5584
	struct cfg80211_cached_keys *connkeys = NULL;
S
Samuel Ortiz 已提交
5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605
	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]);
		if (!nl80211_valid_auth_type(connect.auth_type))
			return -EINVAL;
	} else
		connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;

	connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];

5606
	err = nl80211_crypto_settings(rdev, info, &connect.crypto,
5607
				      NL80211_MAX_NR_CIPHER_SUITES);
S
Samuel Ortiz 已提交
5608 5609 5610
	if (err)
		return err;

5611
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5612 5613
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
5614

5615
	wiphy = &rdev->wiphy;
S
Samuel Ortiz 已提交
5616

5617 5618 5619 5620 5621 5622 5623
	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 已提交
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638
	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]);
	}

	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 ||
5639 5640
		    connect.channel->flags & IEEE80211_CHAN_DISABLED)
			return -EINVAL;
S
Samuel Ortiz 已提交
5641 5642
	}

J
Johannes Berg 已提交
5643 5644 5645
	if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
		connkeys = nl80211_parse_connkeys(rdev,
					info->attrs[NL80211_ATTR_KEYS]);
5646 5647
		if (IS_ERR(connkeys))
			return PTR_ERR(connkeys);
J
Johannes Berg 已提交
5648 5649
	}

5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665
	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]) {
		if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
			return -EINVAL;
		memcpy(&connect.ht_capa,
		       nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
		       sizeof(connect.ht_capa));
	}

J
Johannes Berg 已提交
5666 5667 5668
	err = cfg80211_connect(rdev, dev, &connect, connkeys);
	if (err)
		kfree(connkeys);
S
Samuel Ortiz 已提交
5669 5670 5671 5672 5673
	return err;
}

static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
{
5674 5675
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
5676 5677 5678 5679 5680 5681 5682 5683 5684 5685
	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;

5686
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5687 5688
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
5689

5690
	return cfg80211_disconnect(rdev, dev, reason, true);
S
Samuel Ortiz 已提交
5691 5692
}

5693 5694
static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
{
5695
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5696 5697 5698 5699 5700 5701 5702 5703 5704 5705
	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);
5706 5707
	if (IS_ERR(net))
		return PTR_ERR(net);
5708 5709 5710 5711

	err = 0;

	/* check if anything to do */
5712 5713
	if (!net_eq(wiphy_net(&rdev->wiphy), net))
		err = cfg80211_switch_netns(rdev, net);
5714 5715 5716 5717 5718

	put_net(net);
	return err;
}

S
Samuel Ortiz 已提交
5719 5720
static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
{
5721
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
S
Samuel Ortiz 已提交
5722 5723
	int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
			struct cfg80211_pmksa *pmksa) = NULL;
5724
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737
	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]);

5738
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5739 5740
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753

	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;
	}

5754 5755
	if (!rdev_ops)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
5756

5757
	return rdev_ops(&rdev->wiphy, dev, &pmksa);
S
Samuel Ortiz 已提交
5758 5759 5760 5761
}

static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
{
5762 5763
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct net_device *dev = info->user_ptr[1];
S
Samuel Ortiz 已提交
5764

5765
	if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
5766 5767
	    dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
5768

5769 5770
	if (!rdev->ops->flush_pmksa)
		return -EOPNOTSUPP;
S
Samuel Ortiz 已提交
5771

5772
	return rdev->ops->flush_pmksa(&rdev->wiphy, dev);
S
Samuel Ortiz 已提交
5773 5774
}

5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825
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]);

	return rdev->ops->tdls_mgmt(&rdev->wiphy, dev, peer, action_code,
				    dialog_token, status_code,
				    nla_data(info->attrs[NL80211_ATTR_IE]),
				    nla_len(info->attrs[NL80211_ATTR_IE]));
}

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]);

	return rdev->ops->tdls_oper(&rdev->wiphy, dev, peer, operation);
}

5826 5827 5828
static int nl80211_remain_on_channel(struct sk_buff *skb,
				     struct genl_info *info)
{
5829
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5830
	struct wireless_dev *wdev = info->user_ptr[1];
5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844
	struct ieee80211_channel *chan;
	struct sk_buff *msg;
	void *hdr;
	u64 cookie;
	enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
	u32 freq, duration;
	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]);

5845 5846 5847 5848
	if (!rdev->ops->remain_on_channel ||
	    !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
		return -EOPNOTSUPP;

5849
	/*
5850 5851
	 * We should be on that channel for at least a minimum amount of
	 * time (10ms) but no longer than the driver supports.
5852
	 */
5853
	if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
5854
	    duration > rdev->wiphy.max_remain_on_channel_duration)
5855 5856
		return -EINVAL;

5857 5858 5859
	if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] &&
	    !nl80211_valid_channel_type(info, &channel_type))
		return -EINVAL;
5860 5861 5862

	freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
	chan = rdev_freq_to_chan(rdev, freq, channel_type);
5863 5864
	if (chan == NULL)
		return -EINVAL;
5865 5866

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
5867 5868
	if (!msg)
		return -ENOMEM;
5869 5870 5871 5872 5873 5874 5875 5876 5877

	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
			     NL80211_CMD_REMAIN_ON_CHANNEL);

	if (IS_ERR(hdr)) {
		err = PTR_ERR(hdr);
		goto free_msg;
	}

5878
	err = rdev->ops->remain_on_channel(&rdev->wiphy, wdev, chan,
5879 5880 5881 5882 5883
					   channel_type, duration, &cookie);

	if (err)
		goto free_msg;

5884 5885
	if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
		goto nla_put_failure;
5886 5887

	genlmsg_end(msg, hdr);
5888 5889

	return genlmsg_reply(msg, info);
5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900

 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)
{
5901
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5902
	struct wireless_dev *wdev = info->user_ptr[1];
5903 5904 5905 5906 5907
	u64 cookie;

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

5908 5909
	if (!rdev->ops->cancel_remain_on_channel)
		return -EOPNOTSUPP;
5910 5911 5912

	cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);

5913
	return rdev->ops->cancel_remain_on_channel(&rdev->wiphy, wdev, cookie);
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
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;
}

5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954
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 */
5955
		if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967
			return false;

		/* check availability */
		if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
			mcs[ridx] |= rbit;
		else
			return false;
	}

	return true;
}

A
Alexey Dobriyan 已提交
5968
static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
5969 5970
	[NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
				    .len = NL80211_MAX_SUPP_RATES },
5971 5972
	[NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
				 .len = NL80211_MAX_SUPP_HT_RATES },
5973 5974 5975 5976 5977 5978
};

static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
				       struct genl_info *info)
{
	struct nlattr *tb[NL80211_TXRATE_MAX + 1];
5979
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
5980
	struct cfg80211_bitrate_mask mask;
5981 5982
	int rem, i;
	struct net_device *dev = info->user_ptr[1];
5983 5984 5985 5986 5987 5988
	struct nlattr *tx_rates;
	struct ieee80211_supported_band *sband;

	if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
		return -EINVAL;

5989 5990
	if (!rdev->ops->set_bitrate_mask)
		return -EOPNOTSUPP;
5991 5992 5993 5994 5995 5996 5997

	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;
5998 5999 6000 6001 6002 6003 6004
		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));
6005 6006 6007 6008 6009 6010
	}

	/*
	 * The nested attribute uses enum nl80211_band as the index. This maps
	 * directly to the enum ieee80211_band values used in cfg80211.
	 */
6011
	BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
6012 6013 6014
	nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
	{
		enum ieee80211_band band = nla_type(tx_rates);
6015 6016
		if (band < 0 || band >= IEEE80211_NUM_BANDS)
			return -EINVAL;
6017
		sband = rdev->wiphy.bands[band];
6018 6019
		if (sband == NULL)
			return -EINVAL;
6020 6021 6022 6023 6024 6025 6026
		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]));
6027 6028 6029
			if ((mask.control[band].legacy == 0) &&
			    nla_len(tb[NL80211_TXRATE_LEGACY]))
				return -EINVAL;
6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051
		}
		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)
6052
				return -EINVAL;
6053 6054 6055
		}
	}

6056
	return rdev->ops->set_bitrate_mask(&rdev->wiphy, dev, NULL, &mask);
6057 6058
}

6059
static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
6060
{
6061
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6062
	struct wireless_dev *wdev = info->user_ptr[1];
6063
	u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
6064 6065 6066 6067

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

6068 6069
	if (info->attrs[NL80211_ATTR_FRAME_TYPE])
		frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
6070

6071 6072 6073 6074 6075 6076 6077 6078
	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:
6079
	case NL80211_IFTYPE_P2P_DEVICE:
6080 6081
		break;
	default:
6082
		return -EOPNOTSUPP;
6083
	}
6084 6085

	/* not much point in registering if we can't reply */
6086 6087
	if (!rdev->ops->mgmt_tx)
		return -EOPNOTSUPP;
6088

6089
	return cfg80211_mlme_register_mgmt(wdev, info->snd_pid, frame_type,
6090 6091 6092 6093
			nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
			nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
}

6094
static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
6095
{
6096
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6097
	struct wireless_dev *wdev = info->user_ptr[1];
6098 6099
	struct ieee80211_channel *chan;
	enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;
6100
	bool channel_type_valid = false;
6101 6102
	u32 freq;
	int err;
J
Johannes Berg 已提交
6103
	void *hdr = NULL;
6104
	u64 cookie;
6105
	struct sk_buff *msg = NULL;
6106
	unsigned int wait = 0;
6107 6108 6109
	bool offchan, no_cck, dont_wait_for_ack;

	dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
6110 6111 6112 6113 6114

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

6115 6116
	if (!rdev->ops->mgmt_tx)
		return -EOPNOTSUPP;
6117

6118 6119 6120 6121 6122 6123 6124 6125
	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:
6126
	case NL80211_IFTYPE_P2P_DEVICE:
6127 6128
		break;
	default:
6129
		return -EOPNOTSUPP;
6130
	}
6131

6132
	if (info->attrs[NL80211_ATTR_DURATION]) {
6133
		if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
6134 6135
			return -EINVAL;
		wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
6136 6137 6138 6139 6140 6141 6142 6143 6144

		/*
		 * 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;

6145 6146
	}

6147
	if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
6148
		if (!nl80211_valid_channel_type(info, &channel_type))
6149
			return -EINVAL;
6150
		channel_type_valid = true;
6151 6152
	}

6153 6154
	offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];

6155 6156 6157
	if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
		return -EINVAL;

6158 6159
	no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);

6160 6161
	freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
	chan = rdev_freq_to_chan(rdev, freq, channel_type);
6162 6163
	if (chan == NULL)
		return -EINVAL;
6164

6165 6166 6167 6168
	if (!dont_wait_for_ack) {
		msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
		if (!msg)
			return -ENOMEM;
6169

6170 6171
		hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
				     NL80211_CMD_FRAME);
6172

6173 6174 6175 6176
		if (IS_ERR(hdr)) {
			err = PTR_ERR(hdr);
			goto free_msg;
		}
6177
	}
6178

6179
	err = cfg80211_mlme_mgmt_tx(rdev, wdev, chan, offchan, channel_type,
6180
				    channel_type_valid, wait,
6181 6182
				    nla_data(info->attrs[NL80211_ATTR_FRAME]),
				    nla_len(info->attrs[NL80211_ATTR_FRAME]),
6183
				    no_cck, dont_wait_for_ack, &cookie);
6184 6185 6186
	if (err)
		goto free_msg;

6187
	if (msg) {
6188 6189
		if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
			goto nla_put_failure;
6190

6191 6192 6193 6194 6195
		genlmsg_end(msg, hdr);
		return genlmsg_reply(msg, info);
	}

	return 0;
6196 6197 6198 6199 6200 6201 6202 6203

 nla_put_failure:
	err = -ENOBUFS;
 free_msg:
	nlmsg_free(msg);
	return err;
}

6204 6205 6206
static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6207
	struct wireless_dev *wdev = info->user_ptr[1];
6208 6209 6210 6211 6212 6213 6214 6215
	u64 cookie;

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

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

6216 6217 6218 6219 6220 6221 6222
	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:
6223
	case NL80211_IFTYPE_P2P_DEVICE:
6224 6225
		break;
	default:
6226
		return -EOPNOTSUPP;
6227
	}
6228 6229 6230

	cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);

6231
	return rdev->ops->mgmt_tx_cancel_wait(&rdev->wiphy, wdev, cookie);
6232 6233
}

K
Kalle Valo 已提交
6234 6235
static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
{
6236
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
K
Kalle Valo 已提交
6237
	struct wireless_dev *wdev;
6238
	struct net_device *dev = info->user_ptr[1];
K
Kalle Valo 已提交
6239 6240 6241 6242
	u8 ps_state;
	bool state;
	int err;

6243 6244
	if (!info->attrs[NL80211_ATTR_PS_STATE])
		return -EINVAL;
K
Kalle Valo 已提交
6245 6246 6247

	ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);

6248 6249
	if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
		return -EINVAL;
K
Kalle Valo 已提交
6250 6251 6252

	wdev = dev->ieee80211_ptr;

6253 6254
	if (!rdev->ops->set_power_mgmt)
		return -EOPNOTSUPP;
K
Kalle Valo 已提交
6255 6256 6257 6258

	state = (ps_state == NL80211_PS_ENABLED) ? true : false;

	if (state == wdev->ps)
6259
		return 0;
K
Kalle Valo 已提交
6260

6261 6262 6263 6264
	err = rdev->ops->set_power_mgmt(wdev->wiphy, dev, state,
					wdev->ps_timeout);
	if (!err)
		wdev->ps = state;
K
Kalle Valo 已提交
6265 6266 6267 6268 6269
	return err;
}

static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
{
6270
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
K
Kalle Valo 已提交
6271 6272
	enum nl80211_ps_state ps_state;
	struct wireless_dev *wdev;
6273
	struct net_device *dev = info->user_ptr[1];
K
Kalle Valo 已提交
6274 6275 6276 6277 6278 6279
	struct sk_buff *msg;
	void *hdr;
	int err;

	wdev = dev->ieee80211_ptr;

6280 6281
	if (!rdev->ops->set_power_mgmt)
		return -EOPNOTSUPP;
K
Kalle Valo 已提交
6282 6283

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
6284 6285
	if (!msg)
		return -ENOMEM;
K
Kalle Valo 已提交
6286 6287 6288 6289

	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
			     NL80211_CMD_GET_POWER_SAVE);
	if (!hdr) {
6290
		err = -ENOBUFS;
K
Kalle Valo 已提交
6291 6292 6293 6294 6295 6296 6297 6298
		goto free_msg;
	}

	if (wdev->ps)
		ps_state = NL80211_PS_ENABLED;
	else
		ps_state = NL80211_PS_DISABLED;

6299 6300
	if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
		goto nla_put_failure;
K
Kalle Valo 已提交
6301 6302

	genlmsg_end(msg, hdr);
6303
	return genlmsg_reply(msg, info);
K
Kalle Valo 已提交
6304

6305
 nla_put_failure:
K
Kalle Valo 已提交
6306
	err = -ENOBUFS;
6307
 free_msg:
K
Kalle Valo 已提交
6308 6309 6310 6311
	nlmsg_free(msg);
	return err;
}

6312 6313 6314 6315 6316
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 },
6317 6318 6319
	[NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
	[NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
	[NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
6320 6321
};

6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345
static int nl80211_set_cqm_txe(struct genl_info *info,
				u32 rate, u32 pkts, u32 intvl)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
	struct wireless_dev *wdev;
	struct net_device *dev = info->user_ptr[1];

	if ((rate < 0 || rate > 100) ||
	    (intvl < 0 || intvl > NL80211_CQM_TXE_MAX_INTVL))
		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;

	return rdev->ops->set_cqm_txe_config(wdev->wiphy, dev,
					     rate, pkts, intvl);
}

6346 6347 6348
static int nl80211_set_cqm_rssi(struct genl_info *info,
				s32 threshold, u32 hysteresis)
{
6349
	struct cfg80211_registered_device *rdev = info->user_ptr[0];
6350
	struct wireless_dev *wdev;
6351
	struct net_device *dev = info->user_ptr[1];
6352 6353 6354 6355 6356 6357

	if (threshold > 0)
		return -EINVAL;

	wdev = dev->ieee80211_ptr;

6358 6359
	if (!rdev->ops->set_cqm_rssi_config)
		return -EOPNOTSUPP;
6360

6361
	if (wdev->iftype != NL80211_IFTYPE_STATION &&
6362 6363
	    wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
		return -EOPNOTSUPP;
6364

6365 6366
	return rdev->ops->set_cqm_rssi_config(wdev->wiphy, dev,
					      threshold, hysteresis);
6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392
}

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);
6393 6394 6395 6396 6397 6398 6399 6400
	} 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);
6401 6402 6403 6404 6405 6406 6407
	} else
		err = -EINVAL;

out:
	return err;
}

6408 6409 6410 6411 6412
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;
6413
	struct mesh_setup setup;
6414 6415 6416 6417
	int err;

	/* start with default */
	memcpy(&cfg, &default_mesh_config, sizeof(cfg));
6418
	memcpy(&setup, &default_mesh_setup, sizeof(setup));
6419

6420
	if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
6421
		/* and parse parameters if given */
6422
		err = nl80211_parse_mesh_config(info, &cfg, NULL);
6423 6424 6425 6426 6427 6428 6429 6430
		if (err)
			return err;
	}

	if (!info->attrs[NL80211_ATTR_MESH_ID] ||
	    !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
		return -EINVAL;

6431 6432 6433
	setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
	setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);

6434 6435 6436 6437 6438
	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;

6439 6440 6441 6442 6443 6444 6445
	if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
		/* parse additional setup parameters if given */
		err = nl80211_parse_mesh_setup(info, &setup);
		if (err)
			return err;
	}

6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463
	if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
		enum nl80211_channel_type channel_type = NL80211_CHAN_NO_HT;

		if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE] &&
		    !nl80211_valid_channel_type(info, &channel_type))
			return -EINVAL;

		setup.channel = rdev_freq_to_chan(rdev,
			nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]),
			channel_type);
		if (!setup.channel)
			return -EINVAL;
		setup.channel_type = channel_type;
	} else {
		/* cfg80211_join_mesh() will sort it out */
		setup.channel = NULL;
	}

6464
	return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
6465 6466 6467 6468 6469 6470 6471 6472 6473 6474
}

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);
}

6475
#ifdef CONFIG_PM
J
Johannes Berg 已提交
6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500
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;

	if (!rdev->wiphy.wowlan.flags && !rdev->wiphy.wowlan.n_patterns)
		return -EOPNOTSUPP;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
	if (!msg)
		return -ENOMEM;

	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
			     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;

6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515
		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;
J
Johannes Berg 已提交
6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529
		if (rdev->wowlan->n_patterns) {
			struct nlattr *nl_pats, *nl_pat;
			int i, pat_len;

			nl_pats = nla_nest_start(msg,
					NL80211_WOWLAN_TRIG_PKT_PATTERN);
			if (!nl_pats)
				goto nla_put_failure;

			for (i = 0; i < rdev->wowlan->n_patterns; i++) {
				nl_pat = nla_nest_start(msg, i + 1);
				if (!nl_pat)
					goto nla_put_failure;
				pat_len = rdev->wowlan->patterns[i].pattern_len;
6530 6531 6532 6533 6534 6535 6536
				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))
					goto nla_put_failure;
J
Johannes Berg 已提交
6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557
				nla_nest_end(msg, nl_pat);
			}
			nla_nest_end(msg, nl_pats);
		}

		nla_nest_end(msg, nl_wowlan);
	}

	genlmsg_end(msg, hdr);
	return genlmsg_reply(msg, info);

nla_put_failure:
	nlmsg_free(msg);
	return -ENOBUFS;
}

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 = {};
6558
	struct cfg80211_wowlan *ntrig;
J
Johannes Berg 已提交
6559 6560
	struct wiphy_wowlan_support *wowlan = &rdev->wiphy.wowlan;
	int err, i;
6561
	bool prev_enabled = rdev->wowlan;
J
Johannes Berg 已提交
6562 6563 6564 6565

	if (!rdev->wiphy.wowlan.flags && !rdev->wiphy.wowlan.n_patterns)
		return -EOPNOTSUPP;

6566 6567 6568 6569 6570
	if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
		cfg80211_rdev_free_wowlan(rdev);
		rdev->wowlan = NULL;
		goto set_wakeup;
	}
J
Johannes Berg 已提交
6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596

	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;
	}

6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623
	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 已提交
6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680
	if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
		struct nlattr *pat;
		int n_patterns = 0;
		int rem, pat_len, mask_len;
		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;

			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++;
		}
	}

6681 6682 6683 6684
	ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
	if (!ntrig) {
		err = -ENOMEM;
		goto error;
J
Johannes Berg 已提交
6685
	}
6686 6687
	cfg80211_rdev_free_wowlan(rdev);
	rdev->wowlan = ntrig;
J
Johannes Berg 已提交
6688

6689
 set_wakeup:
6690 6691 6692
	if (rdev->ops->set_wakeup && prev_enabled != !!rdev->wowlan)
		rdev->ops->set_wakeup(&rdev->wiphy, rdev->wowlan);

J
Johannes Berg 已提交
6693 6694 6695 6696 6697 6698 6699
	return 0;
 error:
	for (i = 0; i < new_triggers.n_patterns; i++)
		kfree(new_triggers.patterns[i].mask);
	kfree(new_triggers.patterns);
	return err;
}
6700
#endif
J
Johannes Berg 已提交
6701

6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752
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;
	}

	err = rdev->ops->set_rekey_data(&rdev->wiphy, dev, &rekey_data);
 out:
	wdev_unlock(wdev);
	return err;
}

6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769
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;

	if (wdev->ap_unexpected_nlpid)
		return -EBUSY;

	wdev->ap_unexpected_nlpid = info->snd_pid;
	return 0;
}

J
Johannes Berg 已提交
6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809
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;

	hdr = nl80211hdr_put(msg, info->snd_pid, info->snd_seq, 0,
			     NL80211_CMD_PROBE_CLIENT);

	if (IS_ERR(hdr)) {
		err = PTR_ERR(hdr);
		goto free_msg;
	}

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

	err = rdev->ops->probe_client(&rdev->wiphy, dev, addr, &cookie);
	if (err)
		goto free_msg;

6810 6811
	if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
		goto nla_put_failure;
J
Johannes Berg 已提交
6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823

	genlmsg_end(msg, hdr);

	return genlmsg_reply(msg, info);

 nla_put_failure:
	err = -ENOBUFS;
 free_msg:
	nlmsg_free(msg);
	return err;
}

6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838
static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
{
	struct cfg80211_registered_device *rdev = info->user_ptr[0];

	if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
		return -EOPNOTSUPP;

	if (rdev->ap_beacons_nlpid)
		return -EBUSY;

	rdev->ap_beacons_nlpid = info->snd_pid;

	return 0;
}

6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900
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;

	err = rdev->ops->start_p2p_device(&rdev->wiphy, wdev);
	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;

	rdev->ops->stop_p2p_device(&rdev->wiphy, wdev);
	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;
}

6901 6902 6903
#define NL80211_FLAG_NEED_WIPHY		0x01
#define NL80211_FLAG_NEED_NETDEV	0x02
#define NL80211_FLAG_NEED_RTNL		0x04
6904 6905 6906
#define NL80211_FLAG_CHECK_NETDEV_UP	0x08
#define NL80211_FLAG_NEED_NETDEV_UP	(NL80211_FLAG_NEED_NETDEV |\
					 NL80211_FLAG_CHECK_NETDEV_UP)
6907
#define NL80211_FLAG_NEED_WDEV		0x10
6908
/* If a netdev is associated, it must be UP, P2P must be started */
6909 6910
#define NL80211_FLAG_NEED_WDEV_UP	(NL80211_FLAG_NEED_WDEV |\
					 NL80211_FLAG_CHECK_NETDEV_UP)
6911 6912 6913 6914 6915

static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
			    struct genl_info *info)
{
	struct cfg80211_registered_device *rdev;
6916
	struct wireless_dev *wdev;
6917 6918 6919 6920 6921 6922 6923
	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 已提交
6924
		rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
6925 6926 6927 6928 6929 6930
		if (IS_ERR(rdev)) {
			if (rtnl)
				rtnl_unlock();
			return PTR_ERR(rdev);
		}
		info->user_ptr[0] = rdev;
6931 6932
	} else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
		   ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
6933 6934 6935 6936 6937
		mutex_lock(&cfg80211_mutex);
		wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
						  info->attrs);
		if (IS_ERR(wdev)) {
			mutex_unlock(&cfg80211_mutex);
6938 6939
			if (rtnl)
				rtnl_unlock();
6940
			return PTR_ERR(wdev);
6941
		}
6942 6943 6944 6945

		dev = wdev->netdev;
		rdev = wiphy_to_dev(wdev->wiphy);

6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956
		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;
6957
		}
6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968

		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);
6969 6970 6971 6972 6973 6974 6975
		} else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
			if (!wdev->p2p_started) {
				mutex_unlock(&cfg80211_mutex);
				if (rtnl)
					rtnl_unlock();
				return -ENETDOWN;
			}
6976
		}
6977 6978 6979 6980 6981

		cfg80211_lock_rdev(rdev);

		mutex_unlock(&cfg80211_mutex);

6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992
		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]);
6993 6994 6995 6996 6997 6998 6999 7000 7001 7002
	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]);
		}
	}
7003 7004 7005 7006
	if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
		rtnl_unlock();
}

7007 7008 7009 7010 7011 7012 7013
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 */
7014
		.internal_flags = NL80211_FLAG_NEED_WIPHY,
7015 7016 7017 7018 7019 7020
	},
	{
		.cmd = NL80211_CMD_SET_WIPHY,
		.doit = nl80211_set_wiphy,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7021
		.internal_flags = NL80211_FLAG_NEED_RTNL,
7022 7023 7024 7025 7026 7027 7028
	},
	{
		.cmd = NL80211_CMD_GET_INTERFACE,
		.doit = nl80211_get_interface,
		.dumpit = nl80211_dump_interface,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
7029
		.internal_flags = NL80211_FLAG_NEED_WDEV,
7030 7031 7032 7033 7034 7035
	},
	{
		.cmd = NL80211_CMD_SET_INTERFACE,
		.doit = nl80211_set_interface,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7036 7037
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7038 7039 7040 7041 7042 7043
	},
	{
		.cmd = NL80211_CMD_NEW_INTERFACE,
		.doit = nl80211_new_interface,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7044 7045
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
7046 7047 7048 7049 7050
	},
	{
		.cmd = NL80211_CMD_DEL_INTERFACE,
		.doit = nl80211_del_interface,
		.policy = nl80211_policy,
7051
		.flags = GENL_ADMIN_PERM,
7052
		.internal_flags = NL80211_FLAG_NEED_WDEV |
7053
				  NL80211_FLAG_NEED_RTNL,
7054 7055 7056 7057 7058 7059
	},
	{
		.cmd = NL80211_CMD_GET_KEY,
		.doit = nl80211_get_key,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7060
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7061
				  NL80211_FLAG_NEED_RTNL,
7062 7063 7064 7065 7066 7067
	},
	{
		.cmd = NL80211_CMD_SET_KEY,
		.doit = nl80211_set_key,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7068
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7069
				  NL80211_FLAG_NEED_RTNL,
7070 7071 7072 7073 7074 7075
	},
	{
		.cmd = NL80211_CMD_NEW_KEY,
		.doit = nl80211_new_key,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7076
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7077
				  NL80211_FLAG_NEED_RTNL,
7078 7079 7080 7081 7082
	},
	{
		.cmd = NL80211_CMD_DEL_KEY,
		.doit = nl80211_del_key,
		.policy = nl80211_policy,
7083
		.flags = GENL_ADMIN_PERM,
7084
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7085
				  NL80211_FLAG_NEED_RTNL,
7086
	},
7087 7088 7089 7090
	{
		.cmd = NL80211_CMD_SET_BEACON,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7091
		.doit = nl80211_set_beacon,
7092
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7093
				  NL80211_FLAG_NEED_RTNL,
7094 7095
	},
	{
7096
		.cmd = NL80211_CMD_START_AP,
7097 7098
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7099
		.doit = nl80211_start_ap,
7100
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7101
				  NL80211_FLAG_NEED_RTNL,
7102 7103
	},
	{
7104
		.cmd = NL80211_CMD_STOP_AP,
7105 7106
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7107
		.doit = nl80211_stop_ap,
7108
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7109
				  NL80211_FLAG_NEED_RTNL,
7110
	},
7111 7112 7113
	{
		.cmd = NL80211_CMD_GET_STATION,
		.doit = nl80211_get_station,
7114
		.dumpit = nl80211_dump_station,
7115
		.policy = nl80211_policy,
7116 7117
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7118 7119 7120 7121 7122 7123
	},
	{
		.cmd = NL80211_CMD_SET_STATION,
		.doit = nl80211_set_station,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7124
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7125
				  NL80211_FLAG_NEED_RTNL,
7126 7127 7128 7129 7130 7131
	},
	{
		.cmd = NL80211_CMD_NEW_STATION,
		.doit = nl80211_new_station,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7132
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7133
				  NL80211_FLAG_NEED_RTNL,
7134 7135 7136 7137 7138
	},
	{
		.cmd = NL80211_CMD_DEL_STATION,
		.doit = nl80211_del_station,
		.policy = nl80211_policy,
7139
		.flags = GENL_ADMIN_PERM,
7140
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7141
				  NL80211_FLAG_NEED_RTNL,
7142 7143 7144 7145 7146 7147 7148
	},
	{
		.cmd = NL80211_CMD_GET_MPATH,
		.doit = nl80211_get_mpath,
		.dumpit = nl80211_dump_mpath,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7149
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7150
				  NL80211_FLAG_NEED_RTNL,
7151 7152 7153 7154 7155 7156
	},
	{
		.cmd = NL80211_CMD_SET_MPATH,
		.doit = nl80211_set_mpath,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7157
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7158
				  NL80211_FLAG_NEED_RTNL,
7159 7160 7161 7162 7163 7164
	},
	{
		.cmd = NL80211_CMD_NEW_MPATH,
		.doit = nl80211_new_mpath,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7165
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7166
				  NL80211_FLAG_NEED_RTNL,
7167 7168 7169 7170 7171
	},
	{
		.cmd = NL80211_CMD_DEL_MPATH,
		.doit = nl80211_del_mpath,
		.policy = nl80211_policy,
7172
		.flags = GENL_ADMIN_PERM,
7173
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7174
				  NL80211_FLAG_NEED_RTNL,
7175 7176 7177 7178 7179
	},
	{
		.cmd = NL80211_CMD_SET_BSS,
		.doit = nl80211_set_bss,
		.policy = nl80211_policy,
7180
		.flags = GENL_ADMIN_PERM,
7181
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7182
				  NL80211_FLAG_NEED_RTNL,
7183
	},
7184 7185 7186 7187 7188 7189
	{
		.cmd = NL80211_CMD_GET_REG,
		.doit = nl80211_get_reg,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
	},
7190 7191 7192 7193 7194 7195 7196 7197 7198 7199
	{
		.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,
7200 7201 7202
		.flags = GENL_ADMIN_PERM,
	},
	{
7203 7204
		.cmd = NL80211_CMD_GET_MESH_CONFIG,
		.doit = nl80211_get_mesh_config,
7205 7206
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
7207
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7208
				  NL80211_FLAG_NEED_RTNL,
7209 7210
	},
	{
7211 7212
		.cmd = NL80211_CMD_SET_MESH_CONFIG,
		.doit = nl80211_update_mesh_config,
7213
		.policy = nl80211_policy,
7214
		.flags = GENL_ADMIN_PERM,
7215
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7216
				  NL80211_FLAG_NEED_RTNL,
7217
	},
7218 7219 7220 7221 7222
	{
		.cmd = NL80211_CMD_TRIGGER_SCAN,
		.doit = nl80211_trigger_scan,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
J
Johannes Berg 已提交
7223
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
7224
				  NL80211_FLAG_NEED_RTNL,
7225 7226 7227 7228 7229 7230
	},
	{
		.cmd = NL80211_CMD_GET_SCAN,
		.policy = nl80211_policy,
		.dumpit = nl80211_dump_scan,
	},
7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246
	{
		.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,
	},
7247 7248 7249 7250 7251
	{
		.cmd = NL80211_CMD_AUTHENTICATE,
		.doit = nl80211_authenticate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7252
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7253
				  NL80211_FLAG_NEED_RTNL,
7254 7255 7256 7257 7258 7259
	},
	{
		.cmd = NL80211_CMD_ASSOCIATE,
		.doit = nl80211_associate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7260
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7261
				  NL80211_FLAG_NEED_RTNL,
7262 7263 7264 7265 7266 7267
	},
	{
		.cmd = NL80211_CMD_DEAUTHENTICATE,
		.doit = nl80211_deauthenticate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7268
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7269
				  NL80211_FLAG_NEED_RTNL,
7270 7271 7272 7273 7274 7275
	},
	{
		.cmd = NL80211_CMD_DISASSOCIATE,
		.doit = nl80211_disassociate,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7276
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7277
				  NL80211_FLAG_NEED_RTNL,
7278
	},
J
Johannes Berg 已提交
7279 7280 7281 7282 7283
	{
		.cmd = NL80211_CMD_JOIN_IBSS,
		.doit = nl80211_join_ibss,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7284
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7285
				  NL80211_FLAG_NEED_RTNL,
J
Johannes Berg 已提交
7286 7287 7288 7289 7290 7291
	},
	{
		.cmd = NL80211_CMD_LEAVE_IBSS,
		.doit = nl80211_leave_ibss,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7292
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7293
				  NL80211_FLAG_NEED_RTNL,
J
Johannes Berg 已提交
7294
	},
7295 7296 7297 7298
#ifdef CONFIG_NL80211_TESTMODE
	{
		.cmd = NL80211_CMD_TESTMODE,
		.doit = nl80211_testmode_do,
W
Wey-Yi Guy 已提交
7299
		.dumpit = nl80211_testmode_dump,
7300 7301
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7302 7303
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
7304 7305
	},
#endif
S
Samuel Ortiz 已提交
7306 7307 7308 7309 7310
	{
		.cmd = NL80211_CMD_CONNECT,
		.doit = nl80211_connect,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7311
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7312
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
7313 7314 7315 7316 7317 7318
	},
	{
		.cmd = NL80211_CMD_DISCONNECT,
		.doit = nl80211_disconnect,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7319
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7320
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
7321
	},
7322 7323 7324 7325 7326
	{
		.cmd = NL80211_CMD_SET_WIPHY_NETNS,
		.doit = nl80211_wiphy_netns,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7327 7328
		.internal_flags = NL80211_FLAG_NEED_WIPHY |
				  NL80211_FLAG_NEED_RTNL,
7329
	},
7330 7331 7332 7333 7334
	{
		.cmd = NL80211_CMD_GET_SURVEY,
		.policy = nl80211_policy,
		.dumpit = nl80211_dump_survey,
	},
S
Samuel Ortiz 已提交
7335 7336 7337 7338 7339
	{
		.cmd = NL80211_CMD_SET_PMKSA,
		.doit = nl80211_setdel_pmksa,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7340
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7341
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
7342 7343 7344 7345 7346 7347
	},
	{
		.cmd = NL80211_CMD_DEL_PMKSA,
		.doit = nl80211_setdel_pmksa,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7348
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7349
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
7350 7351 7352 7353 7354 7355
	},
	{
		.cmd = NL80211_CMD_FLUSH_PMKSA,
		.doit = nl80211_flush_pmksa,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7356
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
7357
				  NL80211_FLAG_NEED_RTNL,
S
Samuel Ortiz 已提交
7358
	},
7359 7360 7361 7362 7363
	{
		.cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
		.doit = nl80211_remain_on_channel,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7364
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
7365
				  NL80211_FLAG_NEED_RTNL,
7366 7367 7368 7369 7370 7371
	},
	{
		.cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
		.doit = nl80211_cancel_remain_on_channel,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7372
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
7373
				  NL80211_FLAG_NEED_RTNL,
7374
	},
7375 7376 7377 7378 7379
	{
		.cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
		.doit = nl80211_set_tx_bitrate_mask,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7380 7381
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7382
	},
7383
	{
7384 7385
		.cmd = NL80211_CMD_REGISTER_FRAME,
		.doit = nl80211_register_mgmt,
7386 7387
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7388
		.internal_flags = NL80211_FLAG_NEED_WDEV |
7389
				  NL80211_FLAG_NEED_RTNL,
7390 7391
	},
	{
7392 7393
		.cmd = NL80211_CMD_FRAME,
		.doit = nl80211_tx_mgmt,
7394
		.policy = nl80211_policy,
7395
		.flags = GENL_ADMIN_PERM,
7396
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
7397 7398 7399 7400 7401 7402
				  NL80211_FLAG_NEED_RTNL,
	},
	{
		.cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
		.doit = nl80211_tx_mgmt_cancel_wait,
		.policy = nl80211_policy,
7403
		.flags = GENL_ADMIN_PERM,
7404
		.internal_flags = NL80211_FLAG_NEED_WDEV_UP |
7405
				  NL80211_FLAG_NEED_RTNL,
7406
	},
K
Kalle Valo 已提交
7407 7408 7409 7410 7411
	{
		.cmd = NL80211_CMD_SET_POWER_SAVE,
		.doit = nl80211_set_power_save,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7412 7413
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
K
Kalle Valo 已提交
7414 7415 7416 7417 7418 7419
	},
	{
		.cmd = NL80211_CMD_GET_POWER_SAVE,
		.doit = nl80211_get_power_save,
		.policy = nl80211_policy,
		/* can be retrieved by unprivileged users */
7420 7421
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
K
Kalle Valo 已提交
7422
	},
7423 7424 7425 7426 7427
	{
		.cmd = NL80211_CMD_SET_CQM,
		.doit = nl80211_set_cqm,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7428 7429
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7430
	},
7431 7432 7433 7434 7435
	{
		.cmd = NL80211_CMD_SET_CHANNEL,
		.doit = nl80211_set_channel,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7436 7437
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7438
	},
7439 7440 7441 7442 7443
	{
		.cmd = NL80211_CMD_SET_WDS_PEER,
		.doit = nl80211_set_wds_peer,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7444 7445
		.internal_flags = NL80211_FLAG_NEED_NETDEV |
				  NL80211_FLAG_NEED_RTNL,
7446
	},
7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462
	{
		.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,
	},
7463
#ifdef CONFIG_PM
J
Johannes Berg 已提交
7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479
	{
		.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,
	},
7480
#endif
7481 7482 7483 7484 7485 7486 7487 7488
	{
		.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,
	},
7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504
	{
		.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,
	},
7505 7506 7507 7508 7509 7510 7511 7512
	{
		.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 已提交
7513 7514 7515 7516 7517
	{
		.cmd = NL80211_CMD_PROBE_CLIENT,
		.doit = nl80211_probe_client,
		.policy = nl80211_policy,
		.flags = GENL_ADMIN_PERM,
7518
		.internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
J
Johannes Berg 已提交
7519 7520
				  NL80211_FLAG_NEED_RTNL,
	},
7521 7522 7523 7524 7525 7526 7527 7528
	{
		.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,
	},
7529 7530 7531 7532 7533 7534 7535 7536
	{
		.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,
	},
7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552
	{
		.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,
	},
7553
};
7554

7555 7556 7557
static struct genl_multicast_group nl80211_mlme_mcgrp = {
	.name = "mlme",
};
7558 7559 7560 7561 7562

/* multicast groups */
static struct genl_multicast_group nl80211_config_mcgrp = {
	.name = "config",
};
7563 7564 7565
static struct genl_multicast_group nl80211_scan_mcgrp = {
	.name = "scan",
};
7566 7567 7568
static struct genl_multicast_group nl80211_regulatory_mcgrp = {
	.name = "regulatory",
};
7569 7570 7571 7572 7573 7574 7575

/* notification functions */

void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
{
	struct sk_buff *msg;

7576
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7577 7578 7579 7580 7581 7582 7583 7584
	if (!msg)
		return;

	if (nl80211_send_wiphy(msg, 0, 0, 0, rdev) < 0) {
		nlmsg_free(msg);
		return;
	}

7585 7586
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_config_mcgrp.id, GFP_KERNEL);
7587 7588
}

7589 7590 7591 7592 7593 7594 7595
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 已提交
7596 7597
	ASSERT_RDEV_LOCK(rdev);

7598 7599 7600 7601 7602 7603
	if (WARN_ON(!req))
		return 0;

	nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
	if (!nest)
		goto nla_put_failure;
7604 7605 7606 7607
	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;
	}
7608 7609 7610 7611 7612
	nla_nest_end(msg, nest);

	nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
	if (!nest)
		goto nla_put_failure;
7613 7614 7615 7616
	for (i = 0; i < req->n_channels; i++) {
		if (nla_put_u32(msg, i, req->channels[i]->center_freq))
			goto nla_put_failure;
	}
7617 7618
	nla_nest_end(msg, nest);

7619 7620 7621
	if (req->ie &&
	    nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
		goto nla_put_failure;
7622 7623 7624 7625 7626 7627

	return 0;
 nla_put_failure:
	return -ENOBUFS;
}

7628 7629
static int nl80211_send_scan_msg(struct sk_buff *msg,
				 struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
7630
				 struct wireless_dev *wdev,
7631 7632
				 u32 pid, u32 seq, int flags,
				 u32 cmd)
7633 7634 7635 7636 7637 7638 7639
{
	void *hdr;

	hdr = nl80211hdr_put(msg, pid, seq, flags, cmd);
	if (!hdr)
		return -1;

7640
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
J
Johannes Berg 已提交
7641 7642 7643
	    (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					 wdev->netdev->ifindex)) ||
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
7644
		goto nla_put_failure;
7645

7646 7647
	/* ignore errors and send incomplete event anyway */
	nl80211_add_scan_req(msg, rdev);
7648 7649 7650 7651 7652 7653 7654 7655

	return genlmsg_end(msg, hdr);

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

7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667
static int
nl80211_send_sched_scan_msg(struct sk_buff *msg,
			    struct cfg80211_registered_device *rdev,
			    struct net_device *netdev,
			    u32 pid, u32 seq, int flags, u32 cmd)
{
	void *hdr;

	hdr = nl80211hdr_put(msg, pid, seq, flags, cmd);
	if (!hdr)
		return -1;

7668 7669 7670
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;
7671 7672 7673 7674 7675 7676 7677 7678

	return genlmsg_end(msg, hdr);

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

7679
void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
7680
			     struct wireless_dev *wdev)
7681 7682 7683
{
	struct sk_buff *msg;

7684
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7685 7686 7687
	if (!msg)
		return;

J
Johannes Berg 已提交
7688
	if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
7689 7690 7691 7692 7693
				  NL80211_CMD_TRIGGER_SCAN) < 0) {
		nlmsg_free(msg);
		return;
	}

7694 7695
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
7696 7697
}

7698
void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
7699
			    struct wireless_dev *wdev)
7700 7701 7702
{
	struct sk_buff *msg;

7703
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7704 7705 7706
	if (!msg)
		return;

J
Johannes Berg 已提交
7707
	if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
7708
				  NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
7709 7710 7711 7712
		nlmsg_free(msg);
		return;
	}

7713 7714
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
7715 7716 7717
}

void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
J
Johannes Berg 已提交
7718
			       struct wireless_dev *wdev)
7719 7720 7721
{
	struct sk_buff *msg;

7722
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7723 7724 7725
	if (!msg)
		return;

J
Johannes Berg 已提交
7726
	if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
7727
				  NL80211_CMD_SCAN_ABORTED) < 0) {
7728 7729 7730 7731
		nlmsg_free(msg);
		return;
	}

7732 7733
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_scan_mcgrp.id, GFP_KERNEL);
7734 7735
}

7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759
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;

7760
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772
	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);
}

7773 7774 7775 7776 7777 7778 7779 7780 7781
/*
 * 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;

7782
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7783 7784 7785 7786 7787 7788 7789 7790 7791 7792
	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 */
7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819
	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;
	}

	if (wiphy_idx_valid(request->wiphy_idx) &&
	    nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
		goto nla_put_failure;
7820

J
Johannes Berg 已提交
7821
	genlmsg_end(msg, hdr);
7822

7823
	rcu_read_lock();
7824
	genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
7825 7826
				GFP_ATOMIC);
	rcu_read_unlock();
7827 7828 7829 7830 7831 7832 7833 7834

	return;

nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

7835 7836 7837
static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
				    struct net_device *netdev,
				    const u8 *buf, size_t len,
7838
				    enum nl80211_commands cmd, gfp_t gfp)
7839 7840 7841 7842
{
	struct sk_buff *msg;
	void *hdr;

7843
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
7844 7845 7846 7847 7848 7849 7850 7851 7852
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

7853 7854 7855 7856
	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;
7857

J
Johannes Berg 已提交
7858
	genlmsg_end(msg, hdr);
7859

7860 7861
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
7862 7863 7864 7865 7866 7867 7868 7869
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
7870 7871
			  struct net_device *netdev, const u8 *buf,
			  size_t len, gfp_t gfp)
7872 7873
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
7874
				NL80211_CMD_AUTHENTICATE, gfp);
7875 7876 7877 7878
}

void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
			   struct net_device *netdev, const u8 *buf,
7879
			   size_t len, gfp_t gfp)
7880
{
7881 7882
	nl80211_send_mlme_event(rdev, netdev, buf, len,
				NL80211_CMD_ASSOCIATE, gfp);
7883 7884
}

7885
void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
7886 7887
			 struct net_device *netdev, const u8 *buf,
			 size_t len, gfp_t gfp)
7888 7889
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
7890
				NL80211_CMD_DEAUTHENTICATE, gfp);
7891 7892
}

7893 7894
void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
			   struct net_device *netdev, const u8 *buf,
7895
			   size_t len, gfp_t gfp)
7896 7897
{
	nl80211_send_mlme_event(rdev, netdev, buf, len,
7898
				NL80211_CMD_DISASSOCIATE, gfp);
7899 7900
}

7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916
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);
}

7917 7918
static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
				      struct net_device *netdev, int cmd,
7919
				      const u8 *addr, gfp_t gfp)
7920 7921 7922 7923
{
	struct sk_buff *msg;
	void *hdr;

7924
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
7925 7926 7927 7928 7929 7930 7931 7932 7933
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

7934 7935 7936 7937 7938
	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;
7939

J
Johannes Berg 已提交
7940
	genlmsg_end(msg, hdr);
7941

7942 7943
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
7944 7945 7946 7947 7948 7949 7950 7951
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
7952 7953
			       struct net_device *netdev, const u8 *addr,
			       gfp_t gfp)
7954 7955
{
	nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
7956
				  addr, gfp);
7957 7958 7959
}

void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
7960 7961
				struct net_device *netdev, const u8 *addr,
				gfp_t gfp)
7962
{
7963 7964
	nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
				  addr, gfp);
7965 7966
}

S
Samuel Ortiz 已提交
7967 7968 7969 7970 7971 7972 7973 7974 7975
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;

7976
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
S
Samuel Ortiz 已提交
7977 7978 7979 7980 7981 7982 7983 7984 7985
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

7986 7987 7988 7989 7990 7991 7992 7993 7994
	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 已提交
7995

J
Johannes Berg 已提交
7996
	genlmsg_end(msg, hdr);
S
Samuel Ortiz 已提交
7997

7998 7999
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
S
Samuel Ortiz 已提交
8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015
	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;

8016
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
S
Samuel Ortiz 已提交
8017 8018 8019 8020 8021 8022 8023 8024 8025
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8026 8027 8028 8029 8030 8031 8032 8033
	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 已提交
8034

J
Johannes Berg 已提交
8035
	genlmsg_end(msg, hdr);
S
Samuel Ortiz 已提交
8036

8037 8038
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
S
Samuel Ortiz 已提交
8039 8040 8041 8042 8043 8044 8045 8046 8047 8048
	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 已提交
8049
			       const u8 *ie, size_t ie_len, bool from_ap)
S
Samuel Ortiz 已提交
8050 8051 8052 8053
{
	struct sk_buff *msg;
	void *hdr;

8054
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
S
Samuel Ortiz 已提交
8055 8056 8057 8058 8059 8060 8061 8062 8063
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8064 8065 8066 8067 8068 8069 8070 8071
	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 已提交
8072

J
Johannes Berg 已提交
8073
	genlmsg_end(msg, hdr);
S
Samuel Ortiz 已提交
8074

8075 8076
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, GFP_KERNEL);
S
Samuel Ortiz 已提交
8077 8078 8079 8080 8081 8082 8083 8084
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);

}

J
Johannes Berg 已提交
8085 8086 8087 8088 8089 8090 8091
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;

8092
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
J
Johannes Berg 已提交
8093 8094 8095 8096 8097 8098 8099 8100 8101
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8102 8103 8104 8105
	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 已提交
8106

J
Johannes Berg 已提交
8107
	genlmsg_end(msg, hdr);
J
Johannes Berg 已提交
8108

8109 8110
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
J
Johannes Berg 已提交
8111 8112 8113 8114 8115 8116 8117
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135
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;
	}

8136 8137 8138 8139 8140 8141
	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;
8142

J
Johannes Berg 已提交
8143
	genlmsg_end(msg, hdr);
8144 8145 8146 8147 8148 8149 8150 8151 8152 8153

	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);
}

8154 8155 8156
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,
8157
				 const u8 *tsc, gfp_t gfp)
8158 8159 8160 8161
{
	struct sk_buff *msg;
	void *hdr;

8162
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8163 8164 8165 8166 8167 8168 8169 8170 8171
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8172 8173 8174 8175 8176 8177 8178 8179
	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;
8180

J
Johannes Berg 已提交
8181
	genlmsg_end(msg, hdr);
8182

8183 8184
	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
8185 8186 8187 8188 8189 8190 8191
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8192 8193 8194 8195 8196 8197 8198 8199
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;

8200
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213
	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
	 */
8214 8215
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
		goto nla_put_failure;
8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232

	/* 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 已提交
8233
	genlmsg_end(msg, hdr);
8234

8235 8236 8237 8238
	rcu_read_lock();
	genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
				GFP_ATOMIC);
	rcu_read_unlock();
8239 8240 8241 8242 8243 8244 8245 8246

	return;

nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8247 8248
static void nl80211_send_remain_on_chan_event(
	int cmd, struct cfg80211_registered_device *rdev,
8249
	struct wireless_dev *wdev, u64 cookie,
8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266
	struct ieee80211_channel *chan,
	enum nl80211_channel_type channel_type,
	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;
	}

8267
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
8268 8269
	    (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					 wdev->netdev->ifindex)) ||
8270
	    nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
8271 8272 8273 8274
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE, channel_type) ||
	    nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
		goto nla_put_failure;
8275

8276 8277 8278
	if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
	    nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
		goto nla_put_failure;
8279

J
Johannes Berg 已提交
8280
	genlmsg_end(msg, hdr);
8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291

	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,
8292
				    struct wireless_dev *wdev, u64 cookie,
8293 8294 8295 8296 8297
				    struct ieee80211_channel *chan,
				    enum nl80211_channel_type channel_type,
				    unsigned int duration, gfp_t gfp)
{
	nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
8298
					  rdev, wdev, cookie, chan,
8299 8300 8301 8302
					  channel_type, duration, gfp);
}

void nl80211_send_remain_on_channel_cancel(
8303 8304
	struct cfg80211_registered_device *rdev,
	struct wireless_dev *wdev,
8305 8306 8307 8308
	u64 cookie, struct ieee80211_channel *chan,
	enum nl80211_channel_type channel_type, gfp_t gfp)
{
	nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
8309
					  rdev, wdev, cookie, chan,
8310 8311 8312
					  channel_type, 0, gfp);
}

8313 8314 8315 8316 8317 8318
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;

8319
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8320 8321 8322
	if (!msg)
		return;

8323 8324
	if (nl80211_send_station(msg, 0, 0, 0,
				 rdev, dev, mac_addr, sinfo) < 0) {
8325 8326 8327 8328 8329 8330 8331 8332
		nlmsg_free(msg);
		return;
	}

	genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
				nl80211_mlme_mcgrp.id, gfp);
}

8333 8334 8335 8336 8337 8338 8339
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;

8340
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8341 8342 8343 8344 8345 8346 8347 8348 8349
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8350 8351 8352
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
	    nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
		goto nla_put_failure;
8353

J
Johannes Berg 已提交
8354
	genlmsg_end(msg, hdr);
8355 8356 8357 8358 8359 8360 8361 8362 8363 8364

	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);
}

8365 8366
static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
				       const u8 *addr, gfp_t gfp)
8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381
{
	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;
	u32 nlpid = ACCESS_ONCE(wdev->ap_unexpected_nlpid);

	if (!nlpid)
		return false;

	msg = nlmsg_new(100, gfp);
	if (!msg)
		return true;

8382
	hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
8383 8384 8385 8386 8387
	if (!hdr) {
		nlmsg_free(msg);
		return true;
	}

8388 8389 8390 8391
	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;
8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407

	err = genlmsg_end(msg, hdr);
	if (err < 0) {
		nlmsg_free(msg);
		return true;
	}

	genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid);
	return true;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
	return true;
}

8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421
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);
}

8422
int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
8423
		      struct wireless_dev *wdev, u32 nlpid,
8424 8425
		      int freq, int sig_dbm,
		      const u8 *buf, size_t len, gfp_t gfp)
8426
{
8427
	struct net_device *netdev = wdev->netdev;
8428 8429 8430 8431 8432 8433 8434
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return -ENOMEM;

8435
	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
8436 8437 8438 8439 8440
	if (!hdr) {
		nlmsg_free(msg);
		return -ENOMEM;
	}

8441
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
8442 8443
	    (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
					netdev->ifindex)) ||
8444 8445 8446 8447 8448
	    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;
8449

J
Johannes Berg 已提交
8450
	genlmsg_end(msg, hdr);
8451

J
Johannes Berg 已提交
8452
	return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid);
8453 8454 8455 8456 8457 8458 8459

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

8460
void nl80211_send_mgmt_tx_status(struct cfg80211_registered_device *rdev,
8461
				 struct wireless_dev *wdev, u64 cookie,
8462 8463
				 const u8 *buf, size_t len, bool ack,
				 gfp_t gfp)
8464
{
8465
	struct net_device *netdev = wdev->netdev;
8466 8467 8468 8469 8470 8471 8472
	struct sk_buff *msg;
	void *hdr;

	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
	if (!msg)
		return;

8473
	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
8474 8475 8476 8477 8478
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8479
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
8480 8481
	    (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
				   netdev->ifindex)) ||
8482 8483 8484 8485
	    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;
8486

J
Johannes Berg 已提交
8487
	genlmsg_end(msg, hdr);
8488 8489 8490 8491 8492 8493 8494 8495 8496

	genlmsg_multicast(msg, 0, nl80211_mlme_mcgrp.id, gfp);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}

8497 8498 8499 8500 8501 8502 8503 8504 8505 8506
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;

8507
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8508 8509 8510 8511 8512 8513 8514 8515 8516
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8517 8518 8519
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;
8520 8521 8522 8523 8524

	pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
	if (!pinfoattr)
		goto nla_put_failure;

8525 8526 8527
	if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
			rssi_event))
		goto nla_put_failure;
8528 8529 8530

	nla_nest_end(msg, pinfoattr);

J
Johannes Berg 已提交
8531
	genlmsg_end(msg, hdr);
8532 8533 8534 8535 8536 8537 8538 8539 8540 8541

	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);
}

8542 8543 8544 8545 8546 8547 8548 8549
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;

8550
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8551 8552 8553 8554 8555 8556 8557 8558 8559
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8560 8561 8562 8563
	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;
8564 8565 8566 8567 8568

	rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
	if (!rekey_attr)
		goto nla_put_failure;

8569 8570 8571
	if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
		    NL80211_REPLAY_CTR_LEN, replay_ctr))
		goto nla_put_failure;
8572 8573 8574

	nla_nest_end(msg, rekey_attr);

J
Johannes Berg 已提交
8575
	genlmsg_end(msg, hdr);
8576 8577 8578 8579 8580 8581 8582 8583 8584 8585

	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);
}

8586 8587 8588 8589 8590 8591 8592 8593
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;

8594
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8595 8596 8597 8598 8599 8600 8601 8602 8603
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8604 8605 8606
	if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
	    nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
		goto nla_put_failure;
8607 8608 8609 8610 8611

	attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
	if (!attr)
		goto nla_put_failure;

8612 8613 8614 8615 8616
	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;
8617 8618 8619

	nla_nest_end(msg, attr);

J
Johannes Berg 已提交
8620
	genlmsg_end(msg, hdr);
8621 8622 8623 8624 8625 8626 8627 8628 8629 8630

	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);
}

8631 8632 8633 8634 8635 8636 8637
void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
			      struct net_device *netdev, int freq,
			      enum nl80211_channel_type type, gfp_t gfp)
{
	struct sk_buff *msg;
	void *hdr;

8638
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8639 8640 8641 8642 8643 8644 8645 8646 8647
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8648 8649 8650 8651
	if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
	    nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE, type))
		goto nla_put_failure;
8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663

	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);
}

8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713
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);
}

8714 8715 8716 8717 8718 8719 8720 8721 8722
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;

8723
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
8724 8725 8726 8727 8728 8729 8730 8731 8732
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8733 8734 8735 8736
	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;
8737 8738 8739 8740 8741

	pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
	if (!pinfoattr)
		goto nla_put_failure;

8742 8743
	if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
		goto nla_put_failure;
8744 8745 8746

	nla_nest_end(msg, pinfoattr);

J
Johannes Berg 已提交
8747
	genlmsg_end(msg, hdr);
8748 8749 8750 8751 8752 8753 8754 8755 8756 8757

	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 已提交
8758 8759 8760 8761 8762 8763 8764 8765 8766
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;

8767
	msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
J
Johannes Berg 已提交
8768 8769 8770 8771 8772 8773 8774 8775 8776
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8777 8778 8779 8780 8781 8782
	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 已提交
8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799

	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);

8800 8801
void cfg80211_report_obss_beacon(struct wiphy *wiphy,
				 const u8 *frame, size_t len,
8802
				 int freq, int sig_dbm, gfp_t gfp)
8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821
{
	struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
	struct sk_buff *msg;
	void *hdr;
	u32 nlpid = ACCESS_ONCE(rdev->ap_beacons_nlpid);

	if (!nlpid)
		return;

	msg = nlmsg_new(len + 100, gfp);
	if (!msg)
		return;

	hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
	if (!hdr) {
		nlmsg_free(msg);
		return;
	}

8822 8823 8824 8825 8826 8827 8828
	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;
8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840

	genlmsg_end(msg, hdr);

	genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlpid);
	return;

 nla_put_failure:
	genlmsg_cancel(msg, hdr);
	nlmsg_free(msg);
}
EXPORT_SYMBOL(cfg80211_report_obss_beacon);

8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853
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;

	if (state != NETLINK_URELEASE)
		return NOTIFY_DONE;

	rcu_read_lock();

8854
	list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
8855
		list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
8856
			cfg80211_mlme_unregister_socket(wdev, notify->pid);
8857 8858 8859
		if (rdev->ap_beacons_nlpid == notify->pid)
			rdev->ap_beacons_nlpid = 0;
	}
8860 8861 8862 8863 8864 8865 8866 8867 8868 8869

	rcu_read_unlock();

	return NOTIFY_DONE;
}

static struct notifier_block nl80211_netlink_notifier = {
	.notifier_call = nl80211_netlink_notify,
};

8870 8871 8872 8873
/* initialisation/exit functions */

int nl80211_init(void)
{
8874
	int err;
8875

8876 8877
	err = genl_register_family_with_ops(&nl80211_fam,
		nl80211_ops, ARRAY_SIZE(nl80211_ops));
8878 8879 8880 8881 8882 8883 8884
	if (err)
		return err;

	err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
	if (err)
		goto err_out;

8885 8886 8887 8888
	err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
	if (err)
		goto err_out;

8889 8890 8891 8892
	err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
	if (err)
		goto err_out;

8893 8894 8895 8896
	err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
	if (err)
		goto err_out;

8897 8898 8899 8900 8901 8902
#ifdef CONFIG_NL80211_TESTMODE
	err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp);
	if (err)
		goto err_out;
#endif

8903 8904 8905 8906
	err = netlink_register_notifier(&nl80211_netlink_notifier);
	if (err)
		goto err_out;

8907 8908 8909 8910 8911 8912 8913 8914
	return 0;
 err_out:
	genl_unregister_family(&nl80211_fam);
	return err;
}

void nl80211_exit(void)
{
8915
	netlink_unregister_notifier(&nl80211_netlink_notifier);
8916 8917
	genl_unregister_family(&nl80211_fam);
}