blob: 0560870fc69d94814441f9b8a0825f5d29afc4a3 [file] [log] [blame]
Johannes Berg55682962007-09-20 13:09:35 -04001/*
2 * This is the new netlink-based wireless configuration interface.
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg2740f0c2014-09-03 15:24:58 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Beni Lev0c9ca112016-02-17 20:30:00 +02006 * Copyright 2015-2016 Intel Deutschland GmbH
Johannes Berg55682962007-09-20 13:09:35 -04007 */
8
9#include <linux/if.h>
10#include <linux/module.h>
11#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Johannes Berg55682962007-09-20 13:09:35 -040013#include <linux/list.h>
14#include <linux/if_ether.h>
15#include <linux/ieee80211.h>
16#include <linux/nl80211.h>
17#include <linux/rtnetlink.h>
18#include <linux/netlink.h>
Johannes Berg2a519312009-02-10 21:25:55 +010019#include <linux/etherdevice.h>
Johannes Berg463d0182009-07-14 00:33:35 +020020#include <net/net_namespace.h>
Johannes Berg55682962007-09-20 13:09:35 -040021#include <net/genetlink.h>
22#include <net/cfg80211.h>
Johannes Berg463d0182009-07-14 00:33:35 +020023#include <net/sock.h>
Johannes Berg2a0e0472013-01-23 22:57:40 +010024#include <net/inet_connection_sock.h>
Johannes Berg55682962007-09-20 13:09:35 -040025#include "core.h"
26#include "nl80211.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070027#include "reg.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030028#include "rdev-ops.h"
Johannes Berg55682962007-09-20 13:09:35 -040029
Jouni Malinen5fb628e2011-08-10 23:54:35 +030030static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
31 struct genl_info *info,
32 struct cfg80211_crypto_settings *settings,
33 int cipher_limit);
34
Johannes Bergf84f7712013-11-14 17:14:45 +010035static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020036 struct genl_info *info);
Johannes Bergf84f7712013-11-14 17:14:45 +010037static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020038 struct genl_info *info);
39
Johannes Berg55682962007-09-20 13:09:35 -040040/* the netlink family */
41static struct genl_family nl80211_fam = {
Marcel Holtmannfb4e1562013-04-28 16:22:06 -070042 .id = GENL_ID_GENERATE, /* don't bother with a hardcoded ID */
43 .name = NL80211_GENL_NAME, /* have users key off the name instead */
44 .hdrsize = 0, /* no private header */
45 .version = 1, /* no particular meaning now */
Johannes Berg55682962007-09-20 13:09:35 -040046 .maxattr = NL80211_ATTR_MAX,
Johannes Berg463d0182009-07-14 00:33:35 +020047 .netnsok = true,
Johannes Berg4c476992010-10-04 21:36:35 +020048 .pre_doit = nl80211_pre_doit,
49 .post_doit = nl80211_post_doit,
Johannes Berg55682962007-09-20 13:09:35 -040050};
51
Johannes Berg2a94fe42013-11-19 15:19:39 +010052/* multicast groups */
53enum nl80211_multicast_groups {
54 NL80211_MCGRP_CONFIG,
55 NL80211_MCGRP_SCAN,
56 NL80211_MCGRP_REGULATORY,
57 NL80211_MCGRP_MLME,
Johannes Berg567ffc32013-12-18 14:43:31 +010058 NL80211_MCGRP_VENDOR,
Johannes Berg2a94fe42013-11-19 15:19:39 +010059 NL80211_MCGRP_TESTMODE /* keep last - ifdef! */
60};
61
62static const struct genl_multicast_group nl80211_mcgrps[] = {
Johannes Berg71b836e2014-12-23 17:17:38 +010063 [NL80211_MCGRP_CONFIG] = { .name = NL80211_MULTICAST_GROUP_CONFIG },
64 [NL80211_MCGRP_SCAN] = { .name = NL80211_MULTICAST_GROUP_SCAN },
65 [NL80211_MCGRP_REGULATORY] = { .name = NL80211_MULTICAST_GROUP_REG },
66 [NL80211_MCGRP_MLME] = { .name = NL80211_MULTICAST_GROUP_MLME },
67 [NL80211_MCGRP_VENDOR] = { .name = NL80211_MULTICAST_GROUP_VENDOR },
Johannes Berg2a94fe42013-11-19 15:19:39 +010068#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg71b836e2014-12-23 17:17:38 +010069 [NL80211_MCGRP_TESTMODE] = { .name = NL80211_MULTICAST_GROUP_TESTMODE }
Johannes Berg2a94fe42013-11-19 15:19:39 +010070#endif
71};
72
Johannes Berg89a54e42012-06-15 14:33:17 +020073/* returns ERR_PTR values */
74static struct wireless_dev *
75__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berg55682962007-09-20 13:09:35 -040076{
Johannes Berg89a54e42012-06-15 14:33:17 +020077 struct cfg80211_registered_device *rdev;
78 struct wireless_dev *result = NULL;
79 bool have_ifidx = attrs[NL80211_ATTR_IFINDEX];
80 bool have_wdev_id = attrs[NL80211_ATTR_WDEV];
81 u64 wdev_id;
82 int wiphy_idx = -1;
83 int ifidx = -1;
Johannes Berg55682962007-09-20 13:09:35 -040084
Johannes Berg5fe231e2013-05-08 21:45:15 +020085 ASSERT_RTNL();
Johannes Berg55682962007-09-20 13:09:35 -040086
Johannes Berg89a54e42012-06-15 14:33:17 +020087 if (!have_ifidx && !have_wdev_id)
88 return ERR_PTR(-EINVAL);
Johannes Berg55682962007-09-20 13:09:35 -040089
Johannes Berg89a54e42012-06-15 14:33:17 +020090 if (have_ifidx)
91 ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
92 if (have_wdev_id) {
93 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
94 wiphy_idx = wdev_id >> 32;
Johannes Berg55682962007-09-20 13:09:35 -040095 }
96
Johannes Berg89a54e42012-06-15 14:33:17 +020097 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
98 struct wireless_dev *wdev;
99
100 if (wiphy_net(&rdev->wiphy) != netns)
101 continue;
102
103 if (have_wdev_id && rdev->wiphy_idx != wiphy_idx)
104 continue;
105
Johannes Berg53873f12016-05-03 16:52:04 +0300106 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +0200107 if (have_ifidx && wdev->netdev &&
108 wdev->netdev->ifindex == ifidx) {
109 result = wdev;
110 break;
111 }
112 if (have_wdev_id && wdev->identifier == (u32)wdev_id) {
113 result = wdev;
114 break;
115 }
116 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200117
118 if (result)
119 break;
120 }
121
122 if (result)
123 return result;
124 return ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400125}
126
Johannes Berga9455402012-06-15 13:32:49 +0200127static struct cfg80211_registered_device *
Johannes Berg878d9ec2012-06-15 14:18:32 +0200128__cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berga9455402012-06-15 13:32:49 +0200129{
Johannes Berg7fee4772012-06-15 14:09:58 +0200130 struct cfg80211_registered_device *rdev = NULL, *tmp;
131 struct net_device *netdev;
Johannes Berga9455402012-06-15 13:32:49 +0200132
Johannes Berg5fe231e2013-05-08 21:45:15 +0200133 ASSERT_RTNL();
Johannes Berga9455402012-06-15 13:32:49 +0200134
Johannes Berg878d9ec2012-06-15 14:18:32 +0200135 if (!attrs[NL80211_ATTR_WIPHY] &&
Johannes Berg89a54e42012-06-15 14:33:17 +0200136 !attrs[NL80211_ATTR_IFINDEX] &&
137 !attrs[NL80211_ATTR_WDEV])
Johannes Berg7fee4772012-06-15 14:09:58 +0200138 return ERR_PTR(-EINVAL);
139
Johannes Berg878d9ec2012-06-15 14:18:32 +0200140 if (attrs[NL80211_ATTR_WIPHY])
Johannes Berg7fee4772012-06-15 14:09:58 +0200141 rdev = cfg80211_rdev_by_wiphy_idx(
Johannes Berg878d9ec2012-06-15 14:18:32 +0200142 nla_get_u32(attrs[NL80211_ATTR_WIPHY]));
Johannes Berga9455402012-06-15 13:32:49 +0200143
Johannes Berg89a54e42012-06-15 14:33:17 +0200144 if (attrs[NL80211_ATTR_WDEV]) {
145 u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
146 struct wireless_dev *wdev;
147 bool found = false;
148
149 tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32);
150 if (tmp) {
151 /* make sure wdev exists */
Johannes Berg53873f12016-05-03 16:52:04 +0300152 list_for_each_entry(wdev, &tmp->wiphy.wdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +0200153 if (wdev->identifier != (u32)wdev_id)
154 continue;
155 found = true;
156 break;
157 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200158
159 if (!found)
160 tmp = NULL;
161
162 if (rdev && tmp != rdev)
163 return ERR_PTR(-EINVAL);
164 rdev = tmp;
165 }
166 }
167
Johannes Berg878d9ec2012-06-15 14:18:32 +0200168 if (attrs[NL80211_ATTR_IFINDEX]) {
169 int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -0700170
Ying Xue7f2b8562014-01-15 10:23:45 +0800171 netdev = __dev_get_by_index(netns, ifindex);
Johannes Berg7fee4772012-06-15 14:09:58 +0200172 if (netdev) {
173 if (netdev->ieee80211_ptr)
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800174 tmp = wiphy_to_rdev(
175 netdev->ieee80211_ptr->wiphy);
Johannes Berg7fee4772012-06-15 14:09:58 +0200176 else
177 tmp = NULL;
178
Johannes Berg7fee4772012-06-15 14:09:58 +0200179 /* not wireless device -- return error */
180 if (!tmp)
181 return ERR_PTR(-EINVAL);
182
183 /* mismatch -- return error */
184 if (rdev && tmp != rdev)
185 return ERR_PTR(-EINVAL);
186
187 rdev = tmp;
Johannes Berga9455402012-06-15 13:32:49 +0200188 }
Johannes Berga9455402012-06-15 13:32:49 +0200189 }
190
Johannes Berg4f7eff12012-06-15 14:14:22 +0200191 if (!rdev)
192 return ERR_PTR(-ENODEV);
Johannes Berga9455402012-06-15 13:32:49 +0200193
Johannes Berg4f7eff12012-06-15 14:14:22 +0200194 if (netns != wiphy_net(&rdev->wiphy))
195 return ERR_PTR(-ENODEV);
196
197 return rdev;
Johannes Berga9455402012-06-15 13:32:49 +0200198}
199
200/*
201 * This function returns a pointer to the driver
202 * that the genl_info item that is passed refers to.
Johannes Berga9455402012-06-15 13:32:49 +0200203 *
204 * The result of this can be a PTR_ERR and hence must
205 * be checked with IS_ERR() for errors.
206 */
207static struct cfg80211_registered_device *
Johannes Berg4f7eff12012-06-15 14:14:22 +0200208cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
Johannes Berga9455402012-06-15 13:32:49 +0200209{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200210 return __cfg80211_rdev_from_attrs(netns, info->attrs);
Johannes Berga9455402012-06-15 13:32:49 +0200211}
212
Johannes Berg55682962007-09-20 13:09:35 -0400213/* policy for the attributes */
Luciano Coelho8cd4d452014-09-17 11:55:28 +0300214static const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = {
Johannes Berg55682962007-09-20 13:09:35 -0400215 [NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
216 [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
David S. Miller079e24e2009-05-26 21:15:00 -0700217 .len = 20-1 },
Jouni Malinen31888482008-10-30 16:59:24 +0200218 [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100219
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200220 [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
Sujith094d05d2008-12-12 11:57:43 +0530221 [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100222 [NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 },
223 [NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 },
224 [NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 },
225
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200226 [NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
227 [NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
228 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
229 [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
Lukáš Turek81077e82009-12-21 22:50:47 +0100230 [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
Lorenzo Bianconi3057dbf2014-09-04 23:57:40 +0200231 [NL80211_ATTR_WIPHY_DYN_ACK] = { .type = NLA_FLAG },
Johannes Berg55682962007-09-20 13:09:35 -0400232
233 [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
234 [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
235 [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
Johannes Berg41ade002007-12-19 02:03:29 +0100236
Eliad Pellere007b852011-11-24 18:13:56 +0200237 [NL80211_ATTR_MAC] = { .len = ETH_ALEN },
238 [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
Johannes Berg41ade002007-12-19 02:03:29 +0100239
Johannes Bergb9454e82009-07-08 13:29:08 +0200240 [NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
Johannes Berg41ade002007-12-19 02:03:29 +0100241 [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
242 .len = WLAN_MAX_KEY_LEN },
243 [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
244 [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
245 [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
Jouni Malinen81962262011-11-02 23:36:31 +0200246 [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Berge31b8212010-10-05 19:39:30 +0200247 [NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
Johannes Berged1b6cc2007-12-19 02:03:32 +0100248
249 [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
250 [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
251 [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
252 .len = IEEE80211_MAX_DATA_LEN },
253 [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
254 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg5727ef12007-12-19 02:03:34 +0100255 [NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
256 [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
257 [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
258 [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
259 .len = NL80211_MAX_SUPP_RATES },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100260 [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
Johannes Berg5727ef12007-12-19 02:03:34 +0100261 [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
Johannes Berg0a9542e2008-10-15 11:54:04 +0200262 [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100263 [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800264 .len = IEEE80211_MAX_MESH_ID_LEN },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100265 [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300266
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700267 [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
268 [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },
269
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300270 [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
271 [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
272 [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
Jouni Malinen90c97a02008-10-30 16:59:22 +0200273 [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
274 .len = NL80211_MAX_SUPP_RATES },
Helmut Schaa50b12f52010-11-19 12:40:25 +0100275 [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
Jouni Malinen36aedc902008-08-25 11:58:58 +0300276
Javier Cardona24bdd9f2010-12-16 17:37:48 -0800277 [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
Javier Cardona15d5dda2011-04-07 15:08:28 -0700278 [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700279
Johannes Berg6c739412011-11-03 09:27:01 +0100280 [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200281
282 [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
283 [NL80211_ATTR_IE] = { .type = NLA_BINARY,
284 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg2a519312009-02-10 21:25:55 +0100285 [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
286 [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
Jouni Malinen636a5d32009-03-19 13:39:22 +0200287
288 [NL80211_ATTR_SSID] = { .type = NLA_BINARY,
289 .len = IEEE80211_MAX_SSID_LEN },
290 [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
291 [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
Johannes Berg04a773a2009-04-19 21:24:32 +0200292 [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
Jouni Malinen1965c852009-04-22 21:38:25 +0300293 [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
Jouni Malinendc6382c2009-05-06 22:09:37 +0300294 [NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
Johannes Bergeccb8e82009-05-11 21:57:56 +0300295 [NL80211_ATTR_STA_FLAGS2] = {
296 .len = sizeof(struct nl80211_sta_flag_update),
297 },
Jouni Malinen3f77316c2009-05-11 21:57:57 +0300298 [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
Johannes Bergc0692b82010-08-27 14:26:53 +0300299 [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
300 [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
Samuel Ortizb23aa672009-07-01 21:26:54 +0200301 [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
302 [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
303 [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
Johannes Berg463d0182009-07-14 00:33:35 +0200304 [NL80211_ATTR_PID] = { .type = NLA_U32 },
Felix Fietkau8b787642009-11-10 18:53:10 +0100305 [NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +0100306 [NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
307 .len = WLAN_PMKID_LEN },
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100308 [NL80211_ATTR_DURATION] = { .type = NLA_U32 },
309 [NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +0200310 [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
Jouni Malinen026331c2010-02-15 12:53:10 +0200311 [NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
312 .len = IEEE80211_MAX_DATA_LEN },
313 [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
Kalle Valoffb9eb32010-02-17 17:58:10 +0200314 [NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200315 [NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300316 [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200317 [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +0300318 [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
319 [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
Johannes Berg2e161f72010-08-12 15:38:38 +0200320 [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
Bruno Randolfafe0cbf2010-11-10 12:50:50 +0900321 [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
322 [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
Felix Fietkau885a46d2010-11-11 15:07:22 +0100323 [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100324 [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100325 [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200326 [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
Javier Cardona9c3990a2011-05-03 16:57:11 -0700327 [NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300328 [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
Johannes Berge5497d72011-07-05 16:35:40 +0200329 [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
Johannes Berg34850ab2011-07-18 18:08:35 +0200330 [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
Jouni Malinen32e9de82011-08-10 23:53:31 +0300331 [NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
Jouni Malinen9946ecf2011-08-10 23:55:56 +0300332 [NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY,
333 .len = IEEE80211_MAX_DATA_LEN },
334 [NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY,
335 .len = IEEE80211_MAX_DATA_LEN },
Vivek Natarajanf4b34b52011-08-29 14:23:03 +0530336 [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300337 [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530338 [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
Arik Nemtsov109086c2011-09-28 14:12:50 +0300339 [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 },
340 [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 },
341 [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
342 [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
343 [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
Arik Nemtsov31fa97c2014-06-11 17:18:21 +0300344 [NL80211_ATTR_TDLS_INITIATOR] = { .type = NLA_FLAG },
Johannes Berge247bd902011-11-04 11:18:21 +0100345 [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
Arik Nemtsov00f740e2011-11-10 11:28:56 +0200346 [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
347 .len = IEEE80211_MAX_DATA_LEN },
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -0700348 [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
Ben Greear7e7c8922011-11-18 11:31:59 -0800349 [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
350 [NL80211_ATTR_HT_CAPABILITY_MASK] = {
351 .len = NL80211_HT_CAPABILITY_LEN
352 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +0100353 [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +0530354 [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
Bala Shanmugam4486ea92012-03-07 17:27:12 +0530355 [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
Johannes Berg89a54e42012-06-15 14:33:17 +0200356 [NL80211_ATTR_WDEV] = { .type = NLA_U64 },
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700357 [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
Jouni Malinene39e5b52012-09-30 19:29:39 +0300358 [NL80211_ATTR_SAE_DATA] = { .type = NLA_BINARY, },
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +0000359 [NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN },
Sam Lefflered4737712012-10-11 21:03:31 -0700360 [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 },
Johannes Berg53cabad2012-11-14 15:17:28 +0100361 [NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 },
362 [NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530363 [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 },
364 [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED },
Jouni Malinen9d62a982013-02-14 21:10:13 +0200365 [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 },
366 [NL80211_ATTR_STA_EXT_CAPABILITY] = { .type = NLA_BINARY, },
Johannes Berg3713b4e2013-02-14 16:19:38 +0100367 [NL80211_ATTR_SPLIT_WIPHY_DUMP] = { .type = NLA_FLAG, },
Johannes Bergee2aca32013-02-21 17:36:01 +0100368 [NL80211_ATTR_DISABLE_VHT] = { .type = NLA_FLAG },
369 [NL80211_ATTR_VHT_CAPABILITY_MASK] = {
370 .len = NL80211_VHT_CAPABILITY_LEN,
371 },
Jouni Malinen355199e2013-02-27 17:14:27 +0200372 [NL80211_ATTR_MDID] = { .type = NLA_U16 },
373 [NL80211_ATTR_IE_RIC] = { .type = NLA_BINARY,
374 .len = IEEE80211_MAX_DATA_LEN },
Jouni Malinen5e4b6f52013-05-16 20:11:08 +0300375 [NL80211_ATTR_PEER_AID] = { .type = NLA_U16 },
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +0200376 [NL80211_ATTR_CH_SWITCH_COUNT] = { .type = NLA_U32 },
377 [NL80211_ATTR_CH_SWITCH_BLOCK_TX] = { .type = NLA_FLAG },
378 [NL80211_ATTR_CSA_IES] = { .type = NLA_NESTED },
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +0300379 [NL80211_ATTR_CSA_C_OFF_BEACON] = { .type = NLA_BINARY },
380 [NL80211_ATTR_CSA_C_OFF_PRESP] = { .type = NLA_BINARY },
Sunil Duttc01fc9a2013-10-09 20:45:21 +0530381 [NL80211_ATTR_STA_SUPPORTED_CHANNELS] = { .type = NLA_BINARY },
382 [NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES] = { .type = NLA_BINARY },
Simon Wunderlich5336fa82013-10-07 18:41:05 +0200383 [NL80211_ATTR_HANDLE_DFS] = { .type = NLA_FLAG },
Marek Kwaczynski60f4a7b2013-12-03 10:04:59 +0100384 [NL80211_ATTR_OPMODE_NOTIF] = { .type = NLA_U8 },
Johannes Bergad7e7182013-11-13 13:37:47 +0100385 [NL80211_ATTR_VENDOR_ID] = { .type = NLA_U32 },
386 [NL80211_ATTR_VENDOR_SUBCMD] = { .type = NLA_U32 },
387 [NL80211_ATTR_VENDOR_DATA] = { .type = NLA_BINARY },
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -0800388 [NL80211_ATTR_QOS_MAP] = { .type = NLA_BINARY,
389 .len = IEEE80211_QOS_MAP_LEN_MAX },
Jouni Malinen1df4a512014-01-15 00:00:47 +0200390 [NL80211_ATTR_MAC_HINT] = { .len = ETH_ALEN },
391 [NL80211_ATTR_WIPHY_FREQ_HINT] = { .type = NLA_U32 },
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +0530392 [NL80211_ATTR_TDLS_PEER_CAPABILITY] = { .type = NLA_U32 },
Jukka Rissanen18e5ca62014-11-13 17:25:14 +0200393 [NL80211_ATTR_SOCKET_OWNER] = { .type = NLA_FLAG },
Andrei Otcheretianski34d22ce2014-05-09 14:11:44 +0300394 [NL80211_ATTR_CSA_C_OFFSETS_TX] = { .type = NLA_BINARY },
Assaf Kraussbab5ab72014-09-03 15:25:01 +0300395 [NL80211_ATTR_USE_RRM] = { .type = NLA_FLAG },
Johannes Berg960d01a2014-09-09 22:55:35 +0300396 [NL80211_ATTR_TSID] = { .type = NLA_U8 },
397 [NL80211_ATTR_USER_PRIO] = { .type = NLA_U8 },
398 [NL80211_ATTR_ADMITTED_TIME] = { .type = NLA_U16 },
Eliad Peller18998c32014-09-10 14:07:34 +0300399 [NL80211_ATTR_SMPS_MODE] = { .type = NLA_U8 },
Johannes Bergad2b26a2014-06-12 21:39:05 +0200400 [NL80211_ATTR_MAC_MASK] = { .len = ETH_ALEN },
Arik Nemtsov1bdd7162014-12-15 19:26:01 +0200401 [NL80211_ATTR_WIPHY_SELF_MANAGED_REG] = { .type = NLA_FLAG },
Vadim Kochan4b681c82015-01-12 16:34:05 +0200402 [NL80211_ATTR_NETNS_FD] = { .type = NLA_U32 },
Luciano Coelho9c748932015-01-16 16:04:09 +0200403 [NL80211_ATTR_SCHED_SCAN_DELAY] = { .type = NLA_U32 },
Ilan peer05050752015-03-04 00:32:06 -0500404 [NL80211_ATTR_REG_INDOOR] = { .type = NLA_FLAG },
Lior David34d50512016-01-28 10:58:25 +0200405 [NL80211_ATTR_PBSS] = { .type = NLA_FLAG },
Arend van Spriel38de03d2016-03-02 20:37:18 +0100406 [NL80211_ATTR_BSS_SELECT] = { .type = NLA_NESTED },
Ayala Beker17b94242016-03-17 15:41:38 +0200407 [NL80211_ATTR_STA_SUPPORT_P2P_PS] = { .type = NLA_U8 },
Aviya Erenfeldc6e6a0c2016-07-05 15:23:08 +0300408 [NL80211_ATTR_MU_MIMO_GROUP_DATA] = {
409 .len = VHT_MUMIMO_GROUPS_DATA_LEN
410 },
411 [NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR] = { .len = ETH_ALEN },
Johannes Berg55682962007-09-20 13:09:35 -0400412};
413
Johannes Berge31b8212010-10-05 19:39:30 +0200414/* policy for the key attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000415static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
Johannes Bergfffd0932009-07-08 14:22:54 +0200416 [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
Johannes Bergb9454e82009-07-08 13:29:08 +0200417 [NL80211_KEY_IDX] = { .type = NLA_U8 },
418 [NL80211_KEY_CIPHER] = { .type = NLA_U32 },
Jouni Malinen81962262011-11-02 23:36:31 +0200419 [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Bergb9454e82009-07-08 13:29:08 +0200420 [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
421 [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
Johannes Berge31b8212010-10-05 19:39:30 +0200422 [NL80211_KEY_TYPE] = { .type = NLA_U32 },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100423 [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
424};
425
426/* policy for the key default flags */
427static const struct nla_policy
428nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = {
429 [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG },
430 [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG },
Johannes Bergb9454e82009-07-08 13:29:08 +0200431};
432
Johannes Bergff1b6e62011-05-04 15:37:28 +0200433/* policy for WoWLAN attributes */
434static const struct nla_policy
435nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
436 [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
437 [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
438 [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
439 [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED },
Johannes Berg77dbbb12011-07-13 10:48:55 +0200440 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
441 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
442 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
443 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
Johannes Berg2a0e0472013-01-23 22:57:40 +0100444 [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
Luciano Coelho8cd4d452014-09-17 11:55:28 +0300445 [NL80211_WOWLAN_TRIG_NET_DETECT] = { .type = NLA_NESTED },
Johannes Berg2a0e0472013-01-23 22:57:40 +0100446};
447
448static const struct nla_policy
449nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = {
450 [NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 },
451 [NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 },
452 [NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN },
453 [NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 },
454 [NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 },
455 [NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 },
456 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = {
457 .len = sizeof(struct nl80211_wowlan_tcp_data_seq)
458 },
459 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = {
460 .len = sizeof(struct nl80211_wowlan_tcp_data_token)
461 },
462 [NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 },
463 [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 },
464 [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200465};
466
Amitkumar Karwarbe29b992013-06-28 11:51:26 -0700467/* policy for coalesce rule attributes */
468static const struct nla_policy
469nl80211_coalesce_policy[NUM_NL80211_ATTR_COALESCE_RULE] = {
470 [NL80211_ATTR_COALESCE_RULE_DELAY] = { .type = NLA_U32 },
471 [NL80211_ATTR_COALESCE_RULE_CONDITION] = { .type = NLA_U32 },
472 [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN] = { .type = NLA_NESTED },
473};
474
Johannes Berge5497d72011-07-05 16:35:40 +0200475/* policy for GTK rekey offload attributes */
476static const struct nla_policy
477nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = {
478 [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN },
479 [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN },
480 [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN },
481};
482
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300483static const struct nla_policy
484nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
Johannes Berg4a4ab0d2012-06-13 11:17:11 +0200485 [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300486 .len = IEEE80211_MAX_SSID_LEN },
Thomas Pedersen88e920b2012-06-21 11:09:54 -0700487 [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300488};
489
Avraham Stern3b06d272015-10-12 09:51:34 +0300490static const struct nla_policy
491nl80211_plan_policy[NL80211_SCHED_SCAN_PLAN_MAX + 1] = {
492 [NL80211_SCHED_SCAN_PLAN_INTERVAL] = { .type = NLA_U32 },
493 [NL80211_SCHED_SCAN_PLAN_ITERATIONS] = { .type = NLA_U32 },
494};
495
Arend van Spriel38de03d2016-03-02 20:37:18 +0100496static const struct nla_policy
497nl80211_bss_select_policy[NL80211_BSS_SELECT_ATTR_MAX + 1] = {
498 [NL80211_BSS_SELECT_ATTR_RSSI] = { .type = NLA_FLAG },
499 [NL80211_BSS_SELECT_ATTR_BAND_PREF] = { .type = NLA_U32 },
500 [NL80211_BSS_SELECT_ATTR_RSSI_ADJUST] = {
501 .len = sizeof(struct nl80211_bss_select_rssi_adjust)
502 },
503};
504
Johannes Berg97990a02013-04-19 01:02:55 +0200505static int nl80211_prepare_wdev_dump(struct sk_buff *skb,
506 struct netlink_callback *cb,
507 struct cfg80211_registered_device **rdev,
508 struct wireless_dev **wdev)
Holger Schuriga0438972009-11-11 11:30:02 +0100509{
Johannes Berg67748892010-10-04 21:14:06 +0200510 int err;
511
Johannes Berg67748892010-10-04 21:14:06 +0200512 rtnl_lock();
513
Johannes Berg97990a02013-04-19 01:02:55 +0200514 if (!cb->args[0]) {
515 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
516 nl80211_fam.attrbuf, nl80211_fam.maxattr,
517 nl80211_policy);
518 if (err)
519 goto out_unlock;
520
521 *wdev = __cfg80211_wdev_from_attrs(sock_net(skb->sk),
522 nl80211_fam.attrbuf);
523 if (IS_ERR(*wdev)) {
524 err = PTR_ERR(*wdev);
525 goto out_unlock;
526 }
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800527 *rdev = wiphy_to_rdev((*wdev)->wiphy);
Johannes Bergc319d502013-07-30 22:34:28 +0200528 /* 0 is the first index - add 1 to parse only once */
529 cb->args[0] = (*rdev)->wiphy_idx + 1;
Johannes Berg97990a02013-04-19 01:02:55 +0200530 cb->args[1] = (*wdev)->identifier;
531 } else {
Johannes Bergc319d502013-07-30 22:34:28 +0200532 /* subtract the 1 again here */
533 struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1);
Johannes Berg97990a02013-04-19 01:02:55 +0200534 struct wireless_dev *tmp;
535
536 if (!wiphy) {
537 err = -ENODEV;
538 goto out_unlock;
539 }
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800540 *rdev = wiphy_to_rdev(wiphy);
Johannes Berg97990a02013-04-19 01:02:55 +0200541 *wdev = NULL;
542
Johannes Berg53873f12016-05-03 16:52:04 +0300543 list_for_each_entry(tmp, &(*rdev)->wiphy.wdev_list, list) {
Johannes Berg97990a02013-04-19 01:02:55 +0200544 if (tmp->identifier == cb->args[1]) {
545 *wdev = tmp;
546 break;
547 }
548 }
Johannes Berg97990a02013-04-19 01:02:55 +0200549
550 if (!*wdev) {
551 err = -ENODEV;
552 goto out_unlock;
553 }
Johannes Berg67748892010-10-04 21:14:06 +0200554 }
555
Johannes Berg67748892010-10-04 21:14:06 +0200556 return 0;
Johannes Berg97990a02013-04-19 01:02:55 +0200557 out_unlock:
Johannes Berg67748892010-10-04 21:14:06 +0200558 rtnl_unlock();
559 return err;
560}
561
Johannes Berg97990a02013-04-19 01:02:55 +0200562static void nl80211_finish_wdev_dump(struct cfg80211_registered_device *rdev)
Johannes Berg67748892010-10-04 21:14:06 +0200563{
Johannes Berg67748892010-10-04 21:14:06 +0200564 rtnl_unlock();
565}
566
Johannes Bergf4a11bb2009-03-27 12:40:28 +0100567/* IE validation */
568static bool is_valid_ie_attr(const struct nlattr *attr)
569{
570 const u8 *pos;
571 int len;
572
573 if (!attr)
574 return true;
575
576 pos = nla_data(attr);
577 len = nla_len(attr);
578
579 while (len) {
580 u8 elemlen;
581
582 if (len < 2)
583 return false;
584 len -= 2;
585
586 elemlen = pos[1];
587 if (elemlen > len)
588 return false;
589
590 len -= elemlen;
591 pos += 2 + elemlen;
592 }
593
594 return true;
595}
596
Johannes Berg55682962007-09-20 13:09:35 -0400597/* message building helper */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000598static inline void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
Johannes Berg55682962007-09-20 13:09:35 -0400599 int flags, u8 cmd)
600{
601 /* since there is no private header just add the generic one */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000602 return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -0400603}
604
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400605static int nl80211_msg_put_channel(struct sk_buff *msg,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100606 struct ieee80211_channel *chan,
607 bool large)
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400608{
Rostislav Lisovyea077c12014-04-15 14:37:55 +0200609 /* Some channels must be completely excluded from the
610 * list to protect old user-space tools from breaking
611 */
612 if (!large && chan->flags &
613 (IEEE80211_CHAN_NO_10MHZ | IEEE80211_CHAN_NO_20MHZ))
614 return 0;
615
David S. Miller9360ffd2012-03-29 04:41:26 -0400616 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
617 chan->center_freq))
618 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400619
David S. Miller9360ffd2012-03-29 04:41:26 -0400620 if ((chan->flags & IEEE80211_CHAN_DISABLED) &&
621 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED))
622 goto nla_put_failure;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200623 if (chan->flags & IEEE80211_CHAN_NO_IR) {
624 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IR))
625 goto nla_put_failure;
626 if (nla_put_flag(msg, __NL80211_FREQUENCY_ATTR_NO_IBSS))
627 goto nla_put_failure;
628 }
Johannes Bergcdc89b92013-02-18 23:54:36 +0100629 if (chan->flags & IEEE80211_CHAN_RADAR) {
630 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
631 goto nla_put_failure;
632 if (large) {
633 u32 time;
634
635 time = elapsed_jiffies_msecs(chan->dfs_state_entered);
636
637 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE,
638 chan->dfs_state))
639 goto nla_put_failure;
640 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME,
641 time))
642 goto nla_put_failure;
Janusz Dziedzic089027e2014-02-21 19:46:12 +0100643 if (nla_put_u32(msg,
644 NL80211_FREQUENCY_ATTR_DFS_CAC_TIME,
645 chan->dfs_cac_ms))
646 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100647 }
648 }
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400649
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100650 if (large) {
651 if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) &&
652 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS))
653 goto nla_put_failure;
654 if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) &&
655 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS))
656 goto nla_put_failure;
657 if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) &&
658 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ))
659 goto nla_put_failure;
660 if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) &&
661 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ))
662 goto nla_put_failure;
David Spinadel570dbde2014-02-23 09:12:59 +0200663 if ((chan->flags & IEEE80211_CHAN_INDOOR_ONLY) &&
664 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_INDOOR_ONLY))
665 goto nla_put_failure;
Arik Nemtsov06f207f2015-05-06 16:28:31 +0300666 if ((chan->flags & IEEE80211_CHAN_IR_CONCURRENT) &&
667 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_IR_CONCURRENT))
David Spinadel570dbde2014-02-23 09:12:59 +0200668 goto nla_put_failure;
Rostislav Lisovyea077c12014-04-15 14:37:55 +0200669 if ((chan->flags & IEEE80211_CHAN_NO_20MHZ) &&
670 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_20MHZ))
671 goto nla_put_failure;
672 if ((chan->flags & IEEE80211_CHAN_NO_10MHZ) &&
673 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_10MHZ))
674 goto nla_put_failure;
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100675 }
676
David S. Miller9360ffd2012-03-29 04:41:26 -0400677 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
678 DBM_TO_MBM(chan->max_power)))
679 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400680
681 return 0;
682
683 nla_put_failure:
684 return -ENOBUFS;
685}
686
Johannes Berg55682962007-09-20 13:09:35 -0400687/* netlink command implementations */
688
Johannes Bergb9454e82009-07-08 13:29:08 +0200689struct key_parse {
690 struct key_params p;
691 int idx;
Johannes Berge31b8212010-10-05 19:39:30 +0200692 int type;
Johannes Bergb9454e82009-07-08 13:29:08 +0200693 bool def, defmgmt;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100694 bool def_uni, def_multi;
Johannes Bergb9454e82009-07-08 13:29:08 +0200695};
696
697static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k)
698{
699 struct nlattr *tb[NL80211_KEY_MAX + 1];
700 int err = nla_parse_nested(tb, NL80211_KEY_MAX, key,
701 nl80211_key_policy);
702 if (err)
703 return err;
704
705 k->def = !!tb[NL80211_KEY_DEFAULT];
706 k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT];
707
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100708 if (k->def) {
709 k->def_uni = true;
710 k->def_multi = true;
711 }
712 if (k->defmgmt)
713 k->def_multi = true;
714
Johannes Bergb9454e82009-07-08 13:29:08 +0200715 if (tb[NL80211_KEY_IDX])
716 k->idx = nla_get_u8(tb[NL80211_KEY_IDX]);
717
718 if (tb[NL80211_KEY_DATA]) {
719 k->p.key = nla_data(tb[NL80211_KEY_DATA]);
720 k->p.key_len = nla_len(tb[NL80211_KEY_DATA]);
721 }
722
723 if (tb[NL80211_KEY_SEQ]) {
724 k->p.seq = nla_data(tb[NL80211_KEY_SEQ]);
725 k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]);
726 }
727
728 if (tb[NL80211_KEY_CIPHER])
729 k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]);
730
Johannes Berge31b8212010-10-05 19:39:30 +0200731 if (tb[NL80211_KEY_TYPE]) {
732 k->type = nla_get_u32(tb[NL80211_KEY_TYPE]);
733 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
734 return -EINVAL;
735 }
736
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100737 if (tb[NL80211_KEY_DEFAULT_TYPES]) {
738 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -0700739
Johannes Berg2da8f412012-01-20 13:52:37 +0100740 err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
741 tb[NL80211_KEY_DEFAULT_TYPES],
742 nl80211_key_default_policy);
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100743 if (err)
744 return err;
745
746 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
747 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
748 }
749
Johannes Bergb9454e82009-07-08 13:29:08 +0200750 return 0;
751}
752
753static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k)
754{
755 if (info->attrs[NL80211_ATTR_KEY_DATA]) {
756 k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
757 k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
758 }
759
760 if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
761 k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
762 k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
763 }
764
765 if (info->attrs[NL80211_ATTR_KEY_IDX])
766 k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
767
768 if (info->attrs[NL80211_ATTR_KEY_CIPHER])
769 k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);
770
771 k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT];
772 k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT];
773
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100774 if (k->def) {
775 k->def_uni = true;
776 k->def_multi = true;
777 }
778 if (k->defmgmt)
779 k->def_multi = true;
780
Johannes Berge31b8212010-10-05 19:39:30 +0200781 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
782 k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
783 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
784 return -EINVAL;
785 }
786
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100787 if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) {
788 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
789 int err = nla_parse_nested(
790 kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
791 info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES],
792 nl80211_key_default_policy);
793 if (err)
794 return err;
795
796 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
797 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
798 }
799
Johannes Bergb9454e82009-07-08 13:29:08 +0200800 return 0;
801}
802
803static int nl80211_parse_key(struct genl_info *info, struct key_parse *k)
804{
805 int err;
806
807 memset(k, 0, sizeof(*k));
808 k->idx = -1;
Johannes Berge31b8212010-10-05 19:39:30 +0200809 k->type = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +0200810
811 if (info->attrs[NL80211_ATTR_KEY])
812 err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k);
813 else
814 err = nl80211_parse_key_old(info, k);
815
816 if (err)
817 return err;
818
819 if (k->def && k->defmgmt)
820 return -EINVAL;
821
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100822 if (k->defmgmt) {
823 if (k->def_uni || !k->def_multi)
824 return -EINVAL;
825 }
826
Johannes Bergb9454e82009-07-08 13:29:08 +0200827 if (k->idx != -1) {
828 if (k->defmgmt) {
829 if (k->idx < 4 || k->idx > 5)
830 return -EINVAL;
831 } else if (k->def) {
832 if (k->idx < 0 || k->idx > 3)
833 return -EINVAL;
834 } else {
835 if (k->idx < 0 || k->idx > 5)
836 return -EINVAL;
837 }
838 }
839
840 return 0;
841}
842
Johannes Bergfffd0932009-07-08 14:22:54 +0200843static struct cfg80211_cached_keys *
844nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +0530845 struct nlattr *keys, bool *no_ht)
Johannes Bergfffd0932009-07-08 14:22:54 +0200846{
847 struct key_parse parse;
848 struct nlattr *key;
849 struct cfg80211_cached_keys *result;
850 int rem, err, def = 0;
851
852 result = kzalloc(sizeof(*result), GFP_KERNEL);
853 if (!result)
854 return ERR_PTR(-ENOMEM);
855
856 result->def = -1;
857 result->defmgmt = -1;
858
859 nla_for_each_nested(key, keys, rem) {
860 memset(&parse, 0, sizeof(parse));
861 parse.idx = -1;
862
863 err = nl80211_parse_key_new(key, &parse);
864 if (err)
865 goto error;
866 err = -EINVAL;
867 if (!parse.p.key)
868 goto error;
869 if (parse.idx < 0 || parse.idx > 4)
870 goto error;
871 if (parse.def) {
872 if (def)
873 goto error;
874 def = 1;
875 result->def = parse.idx;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100876 if (!parse.def_uni || !parse.def_multi)
877 goto error;
Johannes Bergfffd0932009-07-08 14:22:54 +0200878 } else if (parse.defmgmt)
879 goto error;
880 err = cfg80211_validate_key_settings(rdev, &parse.p,
Johannes Berge31b8212010-10-05 19:39:30 +0200881 parse.idx, false, NULL);
Johannes Bergfffd0932009-07-08 14:22:54 +0200882 if (err)
883 goto error;
884 result->params[parse.idx].cipher = parse.p.cipher;
885 result->params[parse.idx].key_len = parse.p.key_len;
886 result->params[parse.idx].key = result->data[parse.idx];
887 memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len);
Sujith Manoharande7044e2012-10-18 10:19:28 +0530888
889 if (parse.p.cipher == WLAN_CIPHER_SUITE_WEP40 ||
890 parse.p.cipher == WLAN_CIPHER_SUITE_WEP104) {
891 if (no_ht)
892 *no_ht = true;
893 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200894 }
895
896 return result;
897 error:
898 kfree(result);
899 return ERR_PTR(err);
900}
901
902static int nl80211_key_allowed(struct wireless_dev *wdev)
903{
904 ASSERT_WDEV_LOCK(wdev);
905
Johannes Bergfffd0932009-07-08 14:22:54 +0200906 switch (wdev->iftype) {
907 case NL80211_IFTYPE_AP:
908 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200909 case NL80211_IFTYPE_P2P_GO:
Thomas Pedersenff973af2011-05-03 16:57:12 -0700910 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergfffd0932009-07-08 14:22:54 +0200911 break;
912 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200913 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200914 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergceca7b72013-05-16 00:55:45 +0200915 if (!wdev->current_bss)
Johannes Bergfffd0932009-07-08 14:22:54 +0200916 return -ENOLINK;
917 break;
Johannes Bergde4fcba2014-10-31 14:16:12 +0100918 case NL80211_IFTYPE_UNSPECIFIED:
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100919 case NL80211_IFTYPE_OCB:
Johannes Bergde4fcba2014-10-31 14:16:12 +0100920 case NL80211_IFTYPE_MONITOR:
921 case NL80211_IFTYPE_P2P_DEVICE:
922 case NL80211_IFTYPE_WDS:
923 case NUM_NL80211_IFTYPES:
Johannes Bergfffd0932009-07-08 14:22:54 +0200924 return -EINVAL;
925 }
926
927 return 0;
928}
929
Jouni Malinen664834d2014-01-15 00:01:44 +0200930static struct ieee80211_channel *nl80211_get_valid_chan(struct wiphy *wiphy,
931 struct nlattr *tb)
932{
933 struct ieee80211_channel *chan;
934
935 if (tb == NULL)
936 return NULL;
937 chan = ieee80211_get_channel(wiphy, nla_get_u32(tb));
938 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED)
939 return NULL;
940 return chan;
941}
942
Johannes Berg7527a782011-05-13 10:58:57 +0200943static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes)
944{
945 struct nlattr *nl_modes = nla_nest_start(msg, attr);
946 int i;
947
948 if (!nl_modes)
949 goto nla_put_failure;
950
951 i = 0;
952 while (ifmodes) {
David S. Miller9360ffd2012-03-29 04:41:26 -0400953 if ((ifmodes & 1) && nla_put_flag(msg, i))
954 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200955 ifmodes >>= 1;
956 i++;
957 }
958
959 nla_nest_end(msg, nl_modes);
960 return 0;
961
962nla_put_failure:
963 return -ENOBUFS;
964}
965
966static int nl80211_put_iface_combinations(struct wiphy *wiphy,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100967 struct sk_buff *msg,
968 bool large)
Johannes Berg7527a782011-05-13 10:58:57 +0200969{
970 struct nlattr *nl_combis;
971 int i, j;
972
973 nl_combis = nla_nest_start(msg,
974 NL80211_ATTR_INTERFACE_COMBINATIONS);
975 if (!nl_combis)
976 goto nla_put_failure;
977
978 for (i = 0; i < wiphy->n_iface_combinations; i++) {
979 const struct ieee80211_iface_combination *c;
980 struct nlattr *nl_combi, *nl_limits;
981
982 c = &wiphy->iface_combinations[i];
983
984 nl_combi = nla_nest_start(msg, i + 1);
985 if (!nl_combi)
986 goto nla_put_failure;
987
988 nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS);
989 if (!nl_limits)
990 goto nla_put_failure;
991
992 for (j = 0; j < c->n_limits; j++) {
993 struct nlattr *nl_limit;
994
995 nl_limit = nla_nest_start(msg, j + 1);
996 if (!nl_limit)
997 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -0400998 if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
999 c->limits[j].max))
1000 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +02001001 if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES,
1002 c->limits[j].types))
1003 goto nla_put_failure;
1004 nla_nest_end(msg, nl_limit);
1005 }
1006
1007 nla_nest_end(msg, nl_limits);
1008
David S. Miller9360ffd2012-03-29 04:41:26 -04001009 if (c->beacon_int_infra_match &&
1010 nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH))
1011 goto nla_put_failure;
1012 if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS,
1013 c->num_different_channels) ||
1014 nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM,
1015 c->max_interfaces))
1016 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +01001017 if (large &&
Felix Fietkau8c48b502014-05-05 11:48:40 +02001018 (nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
1019 c->radar_detect_widths) ||
1020 nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_REGIONS,
1021 c->radar_detect_regions)))
Johannes Bergcdc89b92013-02-18 23:54:36 +01001022 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +02001023
1024 nla_nest_end(msg, nl_combi);
1025 }
1026
1027 nla_nest_end(msg, nl_combis);
1028
1029 return 0;
1030nla_put_failure:
1031 return -ENOBUFS;
1032}
1033
Johannes Berg3713b4e2013-02-14 16:19:38 +01001034#ifdef CONFIG_PM
Johannes Bergb56cf722013-02-20 01:02:38 +01001035static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev,
1036 struct sk_buff *msg)
1037{
Johannes Berg964dc9e2013-06-03 17:25:34 +02001038 const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan->tcp;
Johannes Bergb56cf722013-02-20 01:02:38 +01001039 struct nlattr *nl_tcp;
1040
1041 if (!tcp)
1042 return 0;
1043
1044 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
1045 if (!nl_tcp)
1046 return -ENOBUFS;
1047
1048 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
1049 tcp->data_payload_max))
1050 return -ENOBUFS;
1051
1052 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
1053 tcp->data_payload_max))
1054 return -ENOBUFS;
1055
1056 if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ))
1057 return -ENOBUFS;
1058
1059 if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
1060 sizeof(*tcp->tok), tcp->tok))
1061 return -ENOBUFS;
1062
1063 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
1064 tcp->data_interval_max))
1065 return -ENOBUFS;
1066
1067 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
1068 tcp->wake_payload_max))
1069 return -ENOBUFS;
1070
1071 nla_nest_end(msg, nl_tcp);
1072 return 0;
1073}
1074
Johannes Berg3713b4e2013-02-14 16:19:38 +01001075static int nl80211_send_wowlan(struct sk_buff *msg,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001076 struct cfg80211_registered_device *rdev,
Johannes Bergb56cf722013-02-20 01:02:38 +01001077 bool large)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001078{
1079 struct nlattr *nl_wowlan;
1080
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001081 if (!rdev->wiphy.wowlan)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001082 return 0;
1083
1084 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED);
1085 if (!nl_wowlan)
1086 return -ENOBUFS;
1087
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001088 if (((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_ANY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001089 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001090 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_DISCONNECT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001091 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001092 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001093 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001094 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001095 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001096 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001097 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001098 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001099 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001100 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001101 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001102 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001103 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
1104 return -ENOBUFS;
1105
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001106 if (rdev->wiphy.wowlan->n_patterns) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07001107 struct nl80211_pattern_support pat = {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001108 .max_patterns = rdev->wiphy.wowlan->n_patterns,
1109 .min_pattern_len = rdev->wiphy.wowlan->pattern_min_len,
1110 .max_pattern_len = rdev->wiphy.wowlan->pattern_max_len,
1111 .max_pkt_offset = rdev->wiphy.wowlan->max_pkt_offset,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001112 };
1113
1114 if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
1115 sizeof(pat), &pat))
1116 return -ENOBUFS;
1117 }
1118
Luciano Coelho75453cc2015-01-09 14:06:37 +02001119 if ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_NET_DETECT) &&
1120 nla_put_u32(msg, NL80211_WOWLAN_TRIG_NET_DETECT,
1121 rdev->wiphy.wowlan->max_nd_match_sets))
1122 return -ENOBUFS;
1123
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001124 if (large && nl80211_send_wowlan_tcp_caps(rdev, msg))
Johannes Bergb56cf722013-02-20 01:02:38 +01001125 return -ENOBUFS;
1126
Johannes Berg3713b4e2013-02-14 16:19:38 +01001127 nla_nest_end(msg, nl_wowlan);
1128
1129 return 0;
1130}
1131#endif
1132
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001133static int nl80211_send_coalesce(struct sk_buff *msg,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001134 struct cfg80211_registered_device *rdev)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001135{
1136 struct nl80211_coalesce_rule_support rule;
1137
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001138 if (!rdev->wiphy.coalesce)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001139 return 0;
1140
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001141 rule.max_rules = rdev->wiphy.coalesce->n_rules;
1142 rule.max_delay = rdev->wiphy.coalesce->max_delay;
1143 rule.pat.max_patterns = rdev->wiphy.coalesce->n_patterns;
1144 rule.pat.min_pattern_len = rdev->wiphy.coalesce->pattern_min_len;
1145 rule.pat.max_pattern_len = rdev->wiphy.coalesce->pattern_max_len;
1146 rule.pat.max_pkt_offset = rdev->wiphy.coalesce->max_pkt_offset;
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001147
1148 if (nla_put(msg, NL80211_ATTR_COALESCE_RULE, sizeof(rule), &rule))
1149 return -ENOBUFS;
1150
1151 return 0;
1152}
1153
Johannes Berg3713b4e2013-02-14 16:19:38 +01001154static int nl80211_send_band_rateinfo(struct sk_buff *msg,
1155 struct ieee80211_supported_band *sband)
1156{
1157 struct nlattr *nl_rates, *nl_rate;
1158 struct ieee80211_rate *rate;
1159 int i;
1160
1161 /* add HT info */
1162 if (sband->ht_cap.ht_supported &&
1163 (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET,
1164 sizeof(sband->ht_cap.mcs),
1165 &sband->ht_cap.mcs) ||
1166 nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA,
1167 sband->ht_cap.cap) ||
1168 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
1169 sband->ht_cap.ampdu_factor) ||
1170 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
1171 sband->ht_cap.ampdu_density)))
1172 return -ENOBUFS;
1173
1174 /* add VHT info */
1175 if (sband->vht_cap.vht_supported &&
1176 (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET,
1177 sizeof(sband->vht_cap.vht_mcs),
1178 &sband->vht_cap.vht_mcs) ||
1179 nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA,
1180 sband->vht_cap.cap)))
1181 return -ENOBUFS;
1182
1183 /* add bitrates */
1184 nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
1185 if (!nl_rates)
1186 return -ENOBUFS;
1187
1188 for (i = 0; i < sband->n_bitrates; i++) {
1189 nl_rate = nla_nest_start(msg, i);
1190 if (!nl_rate)
1191 return -ENOBUFS;
1192
1193 rate = &sband->bitrates[i];
1194 if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE,
1195 rate->bitrate))
1196 return -ENOBUFS;
1197 if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
1198 nla_put_flag(msg,
1199 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE))
1200 return -ENOBUFS;
1201
1202 nla_nest_end(msg, nl_rate);
1203 }
1204
1205 nla_nest_end(msg, nl_rates);
1206
1207 return 0;
1208}
1209
1210static int
1211nl80211_send_mgmt_stypes(struct sk_buff *msg,
1212 const struct ieee80211_txrx_stypes *mgmt_stypes)
1213{
1214 u16 stypes;
1215 struct nlattr *nl_ftypes, *nl_ifs;
1216 enum nl80211_iftype ift;
1217 int i;
1218
1219 if (!mgmt_stypes)
1220 return 0;
1221
1222 nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES);
1223 if (!nl_ifs)
1224 return -ENOBUFS;
1225
1226 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1227 nl_ftypes = nla_nest_start(msg, ift);
1228 if (!nl_ftypes)
1229 return -ENOBUFS;
1230 i = 0;
1231 stypes = mgmt_stypes[ift].tx;
1232 while (stypes) {
1233 if ((stypes & 1) &&
1234 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1235 (i << 4) | IEEE80211_FTYPE_MGMT))
1236 return -ENOBUFS;
1237 stypes >>= 1;
1238 i++;
1239 }
1240 nla_nest_end(msg, nl_ftypes);
1241 }
1242
1243 nla_nest_end(msg, nl_ifs);
1244
1245 nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES);
1246 if (!nl_ifs)
1247 return -ENOBUFS;
1248
1249 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1250 nl_ftypes = nla_nest_start(msg, ift);
1251 if (!nl_ftypes)
1252 return -ENOBUFS;
1253 i = 0;
1254 stypes = mgmt_stypes[ift].rx;
1255 while (stypes) {
1256 if ((stypes & 1) &&
1257 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1258 (i << 4) | IEEE80211_FTYPE_MGMT))
1259 return -ENOBUFS;
1260 stypes >>= 1;
1261 i++;
1262 }
1263 nla_nest_end(msg, nl_ftypes);
1264 }
1265 nla_nest_end(msg, nl_ifs);
1266
1267 return 0;
1268}
1269
Johannes Berg86e8cf92013-06-19 10:57:22 +02001270struct nl80211_dump_wiphy_state {
1271 s64 filter_wiphy;
1272 long start;
Kanchanapally, Vidyullatha019ae3a2016-05-16 10:41:04 +05301273 long split_start, band_start, chan_start, capa_start;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001274 bool split;
1275};
1276
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001277static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
Johannes Berg3bb20552014-05-26 13:52:25 +02001278 enum nl80211_commands cmd,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001279 struct sk_buff *msg, u32 portid, u32 seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001280 int flags, struct nl80211_dump_wiphy_state *state)
Johannes Berg55682962007-09-20 13:09:35 -04001281{
1282 void *hdr;
Johannes Bergee688b002008-01-24 19:38:39 +01001283 struct nlattr *nl_bands, *nl_band;
1284 struct nlattr *nl_freqs, *nl_freq;
Johannes Berg8fdc6212009-03-14 09:34:01 +01001285 struct nlattr *nl_cmds;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001286 enum nl80211_band band;
Johannes Bergee688b002008-01-24 19:38:39 +01001287 struct ieee80211_channel *chan;
Johannes Bergee688b002008-01-24 19:38:39 +01001288 int i;
Johannes Berg2e161f72010-08-12 15:38:38 +02001289 const struct ieee80211_txrx_stypes *mgmt_stypes =
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001290 rdev->wiphy.mgmt_stypes;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001291 u32 features;
Johannes Berg55682962007-09-20 13:09:35 -04001292
Johannes Berg3bb20552014-05-26 13:52:25 +02001293 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -04001294 if (!hdr)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001295 return -ENOBUFS;
1296
Johannes Berg86e8cf92013-06-19 10:57:22 +02001297 if (WARN_ON(!state))
1298 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -04001299
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001300 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001301 nla_put_string(msg, NL80211_ATTR_WIPHY_NAME,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001302 wiphy_name(&rdev->wiphy)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04001303 nla_put_u32(msg, NL80211_ATTR_GENERATION,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001304 cfg80211_rdev_list_generation))
David S. Miller9360ffd2012-03-29 04:41:26 -04001305 goto nla_put_failure;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001306
Johannes Berg3bb20552014-05-26 13:52:25 +02001307 if (cmd != NL80211_CMD_NEW_WIPHY)
1308 goto finish;
1309
Johannes Berg86e8cf92013-06-19 10:57:22 +02001310 switch (state->split_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001311 case 0:
1312 if (nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001313 rdev->wiphy.retry_short) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001314 nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001315 rdev->wiphy.retry_long) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001316 nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001317 rdev->wiphy.frag_threshold) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001318 nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001319 rdev->wiphy.rts_threshold) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001320 nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001321 rdev->wiphy.coverage_class) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001322 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001323 rdev->wiphy.max_scan_ssids) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001324 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001325 rdev->wiphy.max_sched_scan_ssids) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001326 nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001327 rdev->wiphy.max_scan_ie_len) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001328 nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001329 rdev->wiphy.max_sched_scan_ie_len) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001330 nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS,
Avraham Stern3b06d272015-10-12 09:51:34 +03001331 rdev->wiphy.max_match_sets) ||
1332 nla_put_u32(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS,
1333 rdev->wiphy.max_sched_scan_plans) ||
1334 nla_put_u32(msg, NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL,
1335 rdev->wiphy.max_sched_scan_plan_interval) ||
1336 nla_put_u32(msg, NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS,
1337 rdev->wiphy.max_sched_scan_plan_iterations))
Johannes Bergee688b002008-01-24 19:38:39 +01001338 goto nla_put_failure;
1339
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001340 if ((rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001341 nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN))
1342 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001343 if ((rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001344 nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH))
1345 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001346 if ((rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001347 nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD))
1348 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001349 if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001350 nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT))
1351 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001352 if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001353 nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT))
1354 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001355 if ((rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001356 nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP))
David S. Miller9360ffd2012-03-29 04:41:26 -04001357 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001358 state->split_start++;
1359 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001360 break;
1361 case 1:
1362 if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001363 sizeof(u32) * rdev->wiphy.n_cipher_suites,
1364 rdev->wiphy.cipher_suites))
Mahesh Palivelabf0c111e2012-06-22 07:27:46 +00001365 goto nla_put_failure;
1366
Johannes Berg3713b4e2013-02-14 16:19:38 +01001367 if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001368 rdev->wiphy.max_num_pmkids))
Johannes Bergee688b002008-01-24 19:38:39 +01001369 goto nla_put_failure;
1370
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001371 if ((rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001372 nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE))
1373 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001374
Johannes Berg3713b4e2013-02-14 16:19:38 +01001375 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001376 rdev->wiphy.available_antennas_tx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001377 nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001378 rdev->wiphy.available_antennas_rx))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001379 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001380
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001381 if ((rdev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001382 nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001383 rdev->wiphy.probe_resp_offload))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001384 goto nla_put_failure;
Jouni Malinene2f367f262008-11-21 19:01:30 +02001385
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001386 if ((rdev->wiphy.available_antennas_tx ||
1387 rdev->wiphy.available_antennas_rx) &&
1388 rdev->ops->get_antenna) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001389 u32 tx_ant = 0, rx_ant = 0;
1390 int res;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07001391
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001392 res = rdev_get_antenna(rdev, &tx_ant, &rx_ant);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001393 if (!res) {
1394 if (nla_put_u32(msg,
1395 NL80211_ATTR_WIPHY_ANTENNA_TX,
1396 tx_ant) ||
1397 nla_put_u32(msg,
1398 NL80211_ATTR_WIPHY_ANTENNA_RX,
1399 rx_ant))
1400 goto nla_put_failure;
1401 }
Johannes Bergee688b002008-01-24 19:38:39 +01001402 }
1403
Johannes Berg86e8cf92013-06-19 10:57:22 +02001404 state->split_start++;
1405 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001406 break;
1407 case 2:
1408 if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001409 rdev->wiphy.interface_modes))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001410 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001411 state->split_start++;
1412 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001413 break;
1414 case 3:
1415 nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
1416 if (!nl_bands)
Johannes Bergee688b002008-01-24 19:38:39 +01001417 goto nla_put_failure;
1418
Johannes Berg86e8cf92013-06-19 10:57:22 +02001419 for (band = state->band_start;
Johannes Berg57fbcce2016-04-12 15:56:15 +02001420 band < NUM_NL80211_BANDS; band++) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001421 struct ieee80211_supported_band *sband;
1422
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001423 sband = rdev->wiphy.bands[band];
Johannes Berg3713b4e2013-02-14 16:19:38 +01001424
1425 if (!sband)
1426 continue;
1427
1428 nl_band = nla_nest_start(msg, band);
1429 if (!nl_band)
Johannes Bergee688b002008-01-24 19:38:39 +01001430 goto nla_put_failure;
1431
Johannes Berg86e8cf92013-06-19 10:57:22 +02001432 switch (state->chan_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001433 case 0:
1434 if (nl80211_send_band_rateinfo(msg, sband))
1435 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001436 state->chan_start++;
1437 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001438 break;
1439 default:
1440 /* add frequencies */
1441 nl_freqs = nla_nest_start(
1442 msg, NL80211_BAND_ATTR_FREQS);
1443 if (!nl_freqs)
1444 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001445
Johannes Berg86e8cf92013-06-19 10:57:22 +02001446 for (i = state->chan_start - 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001447 i < sband->n_channels;
1448 i++) {
1449 nl_freq = nla_nest_start(msg, i);
1450 if (!nl_freq)
1451 goto nla_put_failure;
1452
1453 chan = &sband->channels[i];
1454
Johannes Berg86e8cf92013-06-19 10:57:22 +02001455 if (nl80211_msg_put_channel(
1456 msg, chan,
1457 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001458 goto nla_put_failure;
1459
1460 nla_nest_end(msg, nl_freq);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001461 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001462 break;
1463 }
1464 if (i < sband->n_channels)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001465 state->chan_start = i + 2;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001466 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001467 state->chan_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001468 nla_nest_end(msg, nl_freqs);
1469 }
1470
1471 nla_nest_end(msg, nl_band);
1472
Johannes Berg86e8cf92013-06-19 10:57:22 +02001473 if (state->split) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001474 /* start again here */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001475 if (state->chan_start)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001476 band--;
1477 break;
1478 }
Johannes Bergee688b002008-01-24 19:38:39 +01001479 }
Johannes Berg3713b4e2013-02-14 16:19:38 +01001480 nla_nest_end(msg, nl_bands);
Johannes Bergee688b002008-01-24 19:38:39 +01001481
Johannes Berg57fbcce2016-04-12 15:56:15 +02001482 if (band < NUM_NL80211_BANDS)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001483 state->band_start = band + 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001484 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001485 state->band_start = 0;
Johannes Bergee688b002008-01-24 19:38:39 +01001486
Johannes Berg3713b4e2013-02-14 16:19:38 +01001487 /* if bands & channels are done, continue outside */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001488 if (state->band_start == 0 && state->chan_start == 0)
1489 state->split_start++;
1490 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001491 break;
1492 case 4:
1493 nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
1494 if (!nl_cmds)
David S. Miller9360ffd2012-03-29 04:41:26 -04001495 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001496
1497 i = 0;
1498#define CMD(op, n) \
1499 do { \
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001500 if (rdev->ops->op) { \
Johannes Berg3713b4e2013-02-14 16:19:38 +01001501 i++; \
1502 if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
1503 goto nla_put_failure; \
1504 } \
1505 } while (0)
1506
1507 CMD(add_virtual_intf, NEW_INTERFACE);
1508 CMD(change_virtual_intf, SET_INTERFACE);
1509 CMD(add_key, NEW_KEY);
1510 CMD(start_ap, START_AP);
1511 CMD(add_station, NEW_STATION);
1512 CMD(add_mpath, NEW_MPATH);
1513 CMD(update_mesh_config, SET_MESH_CONFIG);
1514 CMD(change_bss, SET_BSS);
1515 CMD(auth, AUTHENTICATE);
1516 CMD(assoc, ASSOCIATE);
1517 CMD(deauth, DEAUTHENTICATE);
1518 CMD(disassoc, DISASSOCIATE);
1519 CMD(join_ibss, JOIN_IBSS);
1520 CMD(join_mesh, JOIN_MESH);
1521 CMD(set_pmksa, SET_PMKSA);
1522 CMD(del_pmksa, DEL_PMKSA);
1523 CMD(flush_pmksa, FLUSH_PMKSA);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001524 if (rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001525 CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1526 CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1527 CMD(mgmt_tx, FRAME);
1528 CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001529 if (rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001530 i++;
1531 if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
1532 goto nla_put_failure;
1533 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001534 if (rdev->ops->set_monitor_channel || rdev->ops->start_ap ||
1535 rdev->ops->join_mesh) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001536 i++;
1537 if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
1538 goto nla_put_failure;
1539 }
1540 CMD(set_wds_peer, SET_WDS_PEER);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001541 if (rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001542 CMD(tdls_mgmt, TDLS_MGMT);
1543 CMD(tdls_oper, TDLS_OPER);
1544 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001545 if (rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001546 CMD(sched_scan_start, START_SCHED_SCAN);
1547 CMD(probe_client, PROBE_CLIENT);
1548 CMD(set_noack_map, SET_NOACK_MAP);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001549 if (rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001550 i++;
1551 if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
1552 goto nla_put_failure;
1553 }
1554 CMD(start_p2p_device, START_P2P_DEVICE);
1555 CMD(set_mcast_rate, SET_MCAST_RATE);
Johannes Berg02df00e2014-06-10 14:06:25 +02001556#ifdef CONFIG_NL80211_TESTMODE
1557 CMD(testmode_cmd, TESTMODE);
1558#endif
Johannes Berg86e8cf92013-06-19 10:57:22 +02001559 if (state->split) {
Arend van Spriel5de17982013-04-18 15:49:00 +02001560 CMD(crit_proto_start, CRIT_PROTOCOL_START);
1561 CMD(crit_proto_stop, CRIT_PROTOCOL_STOP);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001562 if (rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH)
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02001563 CMD(channel_switch, CHANNEL_SWITCH);
Johannes Berg02df00e2014-06-10 14:06:25 +02001564 CMD(set_qos_map, SET_QOS_MAP);
Johannes Berg723e73a2014-10-22 09:25:06 +02001565 if (rdev->wiphy.features &
1566 NL80211_FEATURE_SUPPORTS_WMM_ADMISSION)
Johannes Berg960d01a2014-09-09 22:55:35 +03001567 CMD(add_tx_ts, ADD_TX_TS);
Arend van Spriel5de17982013-04-18 15:49:00 +02001568 }
Johannes Berg02df00e2014-06-10 14:06:25 +02001569 /* add into the if now */
Johannes Berg8fdc6212009-03-14 09:34:01 +01001570#undef CMD
Samuel Ortizb23aa672009-07-01 21:26:54 +02001571
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001572 if (rdev->ops->connect || rdev->ops->auth) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001573 i++;
1574 if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
Johannes Berg2e161f72010-08-12 15:38:38 +02001575 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001576 }
1577
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001578 if (rdev->ops->disconnect || rdev->ops->deauth) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001579 i++;
1580 if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
1581 goto nla_put_failure;
1582 }
Johannes Berg74b70a42010-08-24 12:15:53 +02001583
Johannes Berg3713b4e2013-02-14 16:19:38 +01001584 nla_nest_end(msg, nl_cmds);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001585 state->split_start++;
1586 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001587 break;
1588 case 5:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001589 if (rdev->ops->remain_on_channel &&
1590 (rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001591 nla_put_u32(msg,
1592 NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001593 rdev->wiphy.max_remain_on_channel_duration))
Johannes Berg2e161f72010-08-12 15:38:38 +02001594 goto nla_put_failure;
1595
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001596 if ((rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001597 nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
1598 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001599
Johannes Berg3713b4e2013-02-14 16:19:38 +01001600 if (nl80211_send_mgmt_stypes(msg, mgmt_stypes))
1601 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001602 state->split_start++;
1603 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001604 break;
1605 case 6:
Johannes Bergdfb89c52012-06-27 09:23:48 +02001606#ifdef CONFIG_PM
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001607 if (nl80211_send_wowlan(msg, rdev, state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001608 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001609 state->split_start++;
1610 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001611 break;
1612#else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001613 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001614#endif
1615 case 7:
1616 if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001617 rdev->wiphy.software_iftypes))
Johannes Bergff1b6e62011-05-04 15:37:28 +02001618 goto nla_put_failure;
1619
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001620 if (nl80211_put_iface_combinations(&rdev->wiphy, msg,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001621 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001622 goto nla_put_failure;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001623
Johannes Berg86e8cf92013-06-19 10:57:22 +02001624 state->split_start++;
1625 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001626 break;
1627 case 8:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001628 if ((rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001629 nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001630 rdev->wiphy.ap_sme_capa))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001631 goto nla_put_failure;
1632
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001633 features = rdev->wiphy.features;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001634 /*
1635 * We can only add the per-channel limit information if the
1636 * dump is split, otherwise it makes it too big. Therefore
1637 * only advertise it in that case.
1638 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001639 if (state->split)
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001640 features |= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS;
1641 if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, features))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001642 goto nla_put_failure;
1643
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001644 if (rdev->wiphy.ht_capa_mod_mask &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001645 nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001646 sizeof(*rdev->wiphy.ht_capa_mod_mask),
1647 rdev->wiphy.ht_capa_mod_mask))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001648 goto nla_put_failure;
1649
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001650 if (rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME &&
1651 rdev->wiphy.max_acl_mac_addrs &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001652 nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001653 rdev->wiphy.max_acl_mac_addrs))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001654 goto nla_put_failure;
1655
1656 /*
1657 * Any information below this point is only available to
1658 * applications that can deal with it being split. This
1659 * helps ensure that newly added capabilities don't break
1660 * older tools by overrunning their buffers.
1661 *
1662 * We still increment split_start so that in the split
1663 * case we'll continue with more data in the next round,
1664 * but break unconditionally so unsplit data stops here.
1665 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001666 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001667 break;
1668 case 9:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001669 if (rdev->wiphy.extended_capabilities &&
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001670 (nla_put(msg, NL80211_ATTR_EXT_CAPA,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001671 rdev->wiphy.extended_capabilities_len,
1672 rdev->wiphy.extended_capabilities) ||
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001673 nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001674 rdev->wiphy.extended_capabilities_len,
1675 rdev->wiphy.extended_capabilities_mask)))
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001676 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001677
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001678 if (rdev->wiphy.vht_capa_mod_mask &&
Johannes Bergee2aca32013-02-21 17:36:01 +01001679 nla_put(msg, NL80211_ATTR_VHT_CAPABILITY_MASK,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001680 sizeof(*rdev->wiphy.vht_capa_mod_mask),
1681 rdev->wiphy.vht_capa_mod_mask))
Johannes Bergee2aca32013-02-21 17:36:01 +01001682 goto nla_put_failure;
1683
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001684 state->split_start++;
1685 break;
1686 case 10:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001687 if (nl80211_send_coalesce(msg, rdev))
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001688 goto nla_put_failure;
1689
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001690 if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ) &&
Felix Fietkau01e0daa2013-11-09 14:57:54 +01001691 (nla_put_flag(msg, NL80211_ATTR_SUPPORT_5_MHZ) ||
1692 nla_put_flag(msg, NL80211_ATTR_SUPPORT_10_MHZ)))
1693 goto nla_put_failure;
Jouni Malinenb43504c2014-01-15 00:01:08 +02001694
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001695 if (rdev->wiphy.max_ap_assoc_sta &&
Jouni Malinenb43504c2014-01-15 00:01:08 +02001696 nla_put_u32(msg, NL80211_ATTR_MAX_AP_ASSOC_STA,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001697 rdev->wiphy.max_ap_assoc_sta))
Jouni Malinenb43504c2014-01-15 00:01:08 +02001698 goto nla_put_failure;
1699
Johannes Bergad7e7182013-11-13 13:37:47 +01001700 state->split_start++;
1701 break;
1702 case 11:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001703 if (rdev->wiphy.n_vendor_commands) {
Johannes Berg567ffc32013-12-18 14:43:31 +01001704 const struct nl80211_vendor_cmd_info *info;
1705 struct nlattr *nested;
Johannes Bergad7e7182013-11-13 13:37:47 +01001706
Johannes Berg567ffc32013-12-18 14:43:31 +01001707 nested = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA);
1708 if (!nested)
Johannes Bergad7e7182013-11-13 13:37:47 +01001709 goto nla_put_failure;
Johannes Berg567ffc32013-12-18 14:43:31 +01001710
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001711 for (i = 0; i < rdev->wiphy.n_vendor_commands; i++) {
1712 info = &rdev->wiphy.vendor_commands[i].info;
Johannes Berg567ffc32013-12-18 14:43:31 +01001713 if (nla_put(msg, i + 1, sizeof(*info), info))
1714 goto nla_put_failure;
1715 }
1716 nla_nest_end(msg, nested);
1717 }
1718
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001719 if (rdev->wiphy.n_vendor_events) {
Johannes Berg567ffc32013-12-18 14:43:31 +01001720 const struct nl80211_vendor_cmd_info *info;
1721 struct nlattr *nested;
1722
1723 nested = nla_nest_start(msg,
1724 NL80211_ATTR_VENDOR_EVENTS);
1725 if (!nested)
1726 goto nla_put_failure;
1727
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001728 for (i = 0; i < rdev->wiphy.n_vendor_events; i++) {
1729 info = &rdev->wiphy.vendor_events[i];
Johannes Berg567ffc32013-12-18 14:43:31 +01001730 if (nla_put(msg, i + 1, sizeof(*info), info))
1731 goto nla_put_failure;
1732 }
1733 nla_nest_end(msg, nested);
1734 }
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03001735 state->split_start++;
1736 break;
1737 case 12:
1738 if (rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH &&
1739 nla_put_u8(msg, NL80211_ATTR_MAX_CSA_COUNTERS,
1740 rdev->wiphy.max_num_csa_counters))
1741 goto nla_put_failure;
Felix Fietkau01e0daa2013-11-09 14:57:54 +01001742
Arik Nemtsov1bdd7162014-12-15 19:26:01 +02001743 if (rdev->wiphy.regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED &&
1744 nla_put_flag(msg, NL80211_ATTR_WIPHY_SELF_MANAGED_REG))
1745 goto nla_put_failure;
1746
Gautam Kumar Shuklad75bb062014-12-23 16:55:19 +01001747 if (nla_put(msg, NL80211_ATTR_EXT_FEATURES,
1748 sizeof(rdev->wiphy.ext_features),
1749 rdev->wiphy.ext_features))
1750 goto nla_put_failure;
1751
Arend van Spriel38de03d2016-03-02 20:37:18 +01001752 if (rdev->wiphy.bss_select_support) {
1753 struct nlattr *nested;
1754 u32 bss_select_support = rdev->wiphy.bss_select_support;
1755
1756 nested = nla_nest_start(msg, NL80211_ATTR_BSS_SELECT);
1757 if (!nested)
1758 goto nla_put_failure;
1759
1760 i = 0;
1761 while (bss_select_support) {
1762 if ((bss_select_support & 1) &&
1763 nla_put_flag(msg, i))
1764 goto nla_put_failure;
1765 i++;
1766 bss_select_support >>= 1;
1767 }
1768 nla_nest_end(msg, nested);
1769 }
1770
Kanchanapally, Vidyullatha019ae3a2016-05-16 10:41:04 +05301771 state->split_start++;
1772 break;
1773 case 13:
1774 if (rdev->wiphy.num_iftype_ext_capab &&
1775 rdev->wiphy.iftype_ext_capab) {
1776 struct nlattr *nested_ext_capab, *nested;
1777
1778 nested = nla_nest_start(msg,
1779 NL80211_ATTR_IFTYPE_EXT_CAPA);
1780 if (!nested)
1781 goto nla_put_failure;
1782
1783 for (i = state->capa_start;
1784 i < rdev->wiphy.num_iftype_ext_capab; i++) {
1785 const struct wiphy_iftype_ext_capab *capab;
1786
1787 capab = &rdev->wiphy.iftype_ext_capab[i];
1788
1789 nested_ext_capab = nla_nest_start(msg, i);
1790 if (!nested_ext_capab ||
1791 nla_put_u32(msg, NL80211_ATTR_IFTYPE,
1792 capab->iftype) ||
1793 nla_put(msg, NL80211_ATTR_EXT_CAPA,
1794 capab->extended_capabilities_len,
1795 capab->extended_capabilities) ||
1796 nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK,
1797 capab->extended_capabilities_len,
1798 capab->extended_capabilities_mask))
1799 goto nla_put_failure;
1800
1801 nla_nest_end(msg, nested_ext_capab);
1802 if (state->split)
1803 break;
1804 }
1805 nla_nest_end(msg, nested);
1806 if (i < rdev->wiphy.num_iftype_ext_capab) {
1807 state->capa_start = i + 1;
1808 break;
1809 }
1810 }
1811
Johannes Berg3713b4e2013-02-14 16:19:38 +01001812 /* done */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001813 state->split_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001814 break;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001815 }
Johannes Berg3bb20552014-05-26 13:52:25 +02001816 finish:
Johannes Berg053c0952015-01-16 22:09:00 +01001817 genlmsg_end(msg, hdr);
1818 return 0;
Johannes Berg55682962007-09-20 13:09:35 -04001819
1820 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001821 genlmsg_cancel(msg, hdr);
1822 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04001823}
1824
Johannes Berg86e8cf92013-06-19 10:57:22 +02001825static int nl80211_dump_wiphy_parse(struct sk_buff *skb,
1826 struct netlink_callback *cb,
1827 struct nl80211_dump_wiphy_state *state)
1828{
1829 struct nlattr **tb = nl80211_fam.attrbuf;
1830 int ret = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
1831 tb, nl80211_fam.maxattr, nl80211_policy);
1832 /* ignore parse errors for backward compatibility */
1833 if (ret)
1834 return 0;
1835
1836 state->split = tb[NL80211_ATTR_SPLIT_WIPHY_DUMP];
1837 if (tb[NL80211_ATTR_WIPHY])
1838 state->filter_wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
1839 if (tb[NL80211_ATTR_WDEV])
1840 state->filter_wiphy = nla_get_u64(tb[NL80211_ATTR_WDEV]) >> 32;
1841 if (tb[NL80211_ATTR_IFINDEX]) {
1842 struct net_device *netdev;
1843 struct cfg80211_registered_device *rdev;
1844 int ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
1845
Ying Xue7f2b8562014-01-15 10:23:45 +08001846 netdev = __dev_get_by_index(sock_net(skb->sk), ifidx);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001847 if (!netdev)
1848 return -ENODEV;
1849 if (netdev->ieee80211_ptr) {
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001850 rdev = wiphy_to_rdev(
Johannes Berg86e8cf92013-06-19 10:57:22 +02001851 netdev->ieee80211_ptr->wiphy);
1852 state->filter_wiphy = rdev->wiphy_idx;
1853 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001854 }
1855
1856 return 0;
1857}
1858
Johannes Berg55682962007-09-20 13:09:35 -04001859static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
1860{
Johannes Berg645e77d2013-03-01 14:03:49 +01001861 int idx = 0, ret;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001862 struct nl80211_dump_wiphy_state *state = (void *)cb->args[0];
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001863 struct cfg80211_registered_device *rdev;
Johannes Berg3a5a4232013-06-19 10:09:57 +02001864
Johannes Berg5fe231e2013-05-08 21:45:15 +02001865 rtnl_lock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001866 if (!state) {
1867 state = kzalloc(sizeof(*state), GFP_KERNEL);
John W. Linville57ed5cd2013-06-28 13:18:21 -04001868 if (!state) {
1869 rtnl_unlock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001870 return -ENOMEM;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001871 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001872 state->filter_wiphy = -1;
1873 ret = nl80211_dump_wiphy_parse(skb, cb, state);
1874 if (ret) {
1875 kfree(state);
1876 rtnl_unlock();
1877 return ret;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001878 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001879 cb->args[0] = (long)state;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001880 }
1881
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001882 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1883 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02001884 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001885 if (++idx <= state->start)
Johannes Berg55682962007-09-20 13:09:35 -04001886 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001887 if (state->filter_wiphy != -1 &&
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001888 state->filter_wiphy != rdev->wiphy_idx)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001889 continue;
1890 /* attempt to fit multiple wiphy data chunks into the skb */
1891 do {
Johannes Berg3bb20552014-05-26 13:52:25 +02001892 ret = nl80211_send_wiphy(rdev, NL80211_CMD_NEW_WIPHY,
1893 skb,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001894 NETLINK_CB(cb->skb).portid,
1895 cb->nlh->nlmsg_seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001896 NLM_F_MULTI, state);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001897 if (ret < 0) {
1898 /*
1899 * If sending the wiphy data didn't fit (ENOBUFS
1900 * or EMSGSIZE returned), this SKB is still
1901 * empty (so it's not too big because another
1902 * wiphy dataset is already in the skb) and
1903 * we've not tried to adjust the dump allocation
1904 * yet ... then adjust the alloc size to be
1905 * bigger, and return 1 but with the empty skb.
1906 * This results in an empty message being RX'ed
1907 * in userspace, but that is ignored.
1908 *
1909 * We can then retry with the larger buffer.
1910 */
1911 if ((ret == -ENOBUFS || ret == -EMSGSIZE) &&
Pontus Fuchsf12cb282014-01-16 15:00:40 +01001912 !skb->len && !state->split &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001913 cb->min_dump_alloc < 4096) {
1914 cb->min_dump_alloc = 4096;
Pontus Fuchsf12cb282014-01-16 15:00:40 +01001915 state->split_start = 0;
David S. Millerd98cae64e2013-06-19 16:49:39 -07001916 rtnl_unlock();
Johannes Berg3713b4e2013-02-14 16:19:38 +01001917 return 1;
1918 }
1919 idx--;
1920 break;
Johannes Berg645e77d2013-03-01 14:03:49 +01001921 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001922 } while (state->split_start > 0);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001923 break;
Johannes Berg55682962007-09-20 13:09:35 -04001924 }
Johannes Berg5fe231e2013-05-08 21:45:15 +02001925 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04001926
Johannes Berg86e8cf92013-06-19 10:57:22 +02001927 state->start = idx;
Johannes Berg55682962007-09-20 13:09:35 -04001928
1929 return skb->len;
1930}
1931
Johannes Berg86e8cf92013-06-19 10:57:22 +02001932static int nl80211_dump_wiphy_done(struct netlink_callback *cb)
1933{
1934 kfree((void *)cb->args[0]);
1935 return 0;
1936}
1937
Johannes Berg55682962007-09-20 13:09:35 -04001938static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
1939{
1940 struct sk_buff *msg;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001941 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg86e8cf92013-06-19 10:57:22 +02001942 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04001943
Johannes Berg645e77d2013-03-01 14:03:49 +01001944 msg = nlmsg_new(4096, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04001945 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02001946 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04001947
Johannes Berg3bb20552014-05-26 13:52:25 +02001948 if (nl80211_send_wiphy(rdev, NL80211_CMD_NEW_WIPHY, msg,
1949 info->snd_portid, info->snd_seq, 0,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001950 &state) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02001951 nlmsg_free(msg);
1952 return -ENOBUFS;
1953 }
Johannes Berg55682962007-09-20 13:09:35 -04001954
Johannes Berg134e6372009-07-10 09:51:34 +00001955 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04001956}
1957
Jouni Malinen31888482008-10-30 16:59:24 +02001958static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
1959 [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 },
1960 [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 },
1961 [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 },
1962 [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 },
1963 [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 },
1964};
1965
1966static int parse_txq_params(struct nlattr *tb[],
1967 struct ieee80211_txq_params *txq_params)
1968{
Johannes Berga3304b02012-03-28 11:04:24 +02001969 if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
Jouni Malinen31888482008-10-30 16:59:24 +02001970 !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
1971 !tb[NL80211_TXQ_ATTR_AIFS])
1972 return -EINVAL;
1973
Johannes Berga3304b02012-03-28 11:04:24 +02001974 txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
Jouni Malinen31888482008-10-30 16:59:24 +02001975 txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
1976 txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
1977 txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
1978 txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);
1979
Johannes Berga3304b02012-03-28 11:04:24 +02001980 if (txq_params->ac >= NL80211_NUM_ACS)
1981 return -EINVAL;
1982
Jouni Malinen31888482008-10-30 16:59:24 +02001983 return 0;
1984}
1985
Johannes Bergf444de02010-05-05 15:25:02 +02001986static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
1987{
1988 /*
Johannes Bergcc1d2802012-05-16 23:50:20 +02001989 * You can only set the channel explicitly for WDS interfaces,
1990 * all others have their channel managed via their respective
1991 * "establish a connection" command (connect, join, ...)
1992 *
1993 * For AP/GO and mesh mode, the channel can be set with the
1994 * channel userspace API, but is only stored and passed to the
1995 * low-level driver when the AP starts or the mesh is joined.
1996 * This is for backward compatibility, userspace can also give
1997 * the channel in the start-ap or join-mesh commands instead.
Johannes Bergf444de02010-05-05 15:25:02 +02001998 *
1999 * Monitors are special as they are normally slaved to
Johannes Berge8c9bd52012-06-06 08:18:22 +02002000 * whatever else is going on, so they have their own special
2001 * operation to set the monitor channel if possible.
Johannes Bergf444de02010-05-05 15:25:02 +02002002 */
2003 return !wdev ||
2004 wdev->iftype == NL80211_IFTYPE_AP ||
Johannes Bergf444de02010-05-05 15:25:02 +02002005 wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
Johannes Berg074ac8d2010-09-16 14:58:22 +02002006 wdev->iftype == NL80211_IFTYPE_MONITOR ||
2007 wdev->iftype == NL80211_IFTYPE_P2P_GO;
Johannes Bergf444de02010-05-05 15:25:02 +02002008}
2009
Johannes Berg683b6d32012-11-08 21:25:48 +01002010static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
2011 struct genl_info *info,
2012 struct cfg80211_chan_def *chandef)
2013{
Mahesh Paliveladbeca2e2012-11-29 14:11:07 +05302014 u32 control_freq;
Johannes Berg683b6d32012-11-08 21:25:48 +01002015
2016 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
2017 return -EINVAL;
2018
2019 control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
2020
2021 chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq);
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002022 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
2023 chandef->center_freq1 = control_freq;
2024 chandef->center_freq2 = 0;
Johannes Berg683b6d32012-11-08 21:25:48 +01002025
2026 /* Primary channel not allowed */
2027 if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
2028 return -EINVAL;
2029
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002030 if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
2031 enum nl80211_channel_type chantype;
Johannes Berg683b6d32012-11-08 21:25:48 +01002032
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002033 chantype = nla_get_u32(
2034 info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
2035
2036 switch (chantype) {
2037 case NL80211_CHAN_NO_HT:
2038 case NL80211_CHAN_HT20:
2039 case NL80211_CHAN_HT40PLUS:
2040 case NL80211_CHAN_HT40MINUS:
2041 cfg80211_chandef_create(chandef, chandef->chan,
2042 chantype);
2043 break;
2044 default:
Johannes Berg683b6d32012-11-08 21:25:48 +01002045 return -EINVAL;
Johannes Berg683b6d32012-11-08 21:25:48 +01002046 }
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002047 } else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
2048 chandef->width =
2049 nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
2050 if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
2051 chandef->center_freq1 =
2052 nla_get_u32(
2053 info->attrs[NL80211_ATTR_CENTER_FREQ1]);
2054 if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
2055 chandef->center_freq2 =
2056 nla_get_u32(
2057 info->attrs[NL80211_ATTR_CENTER_FREQ2]);
2058 }
2059
Johannes Berg9f5e8f62012-11-22 16:59:45 +01002060 if (!cfg80211_chandef_valid(chandef))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002061 return -EINVAL;
2062
Johannes Berg9f5e8f62012-11-22 16:59:45 +01002063 if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
2064 IEEE80211_CHAN_DISABLED))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002065 return -EINVAL;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002066
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02002067 if ((chandef->width == NL80211_CHAN_WIDTH_5 ||
2068 chandef->width == NL80211_CHAN_WIDTH_10) &&
2069 !(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ))
2070 return -EINVAL;
2071
Johannes Berg683b6d32012-11-08 21:25:48 +01002072 return 0;
2073}
2074
Johannes Bergf444de02010-05-05 15:25:02 +02002075static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
Jouni Malinene16821b2014-04-28 11:22:08 +03002076 struct net_device *dev,
Johannes Bergf444de02010-05-05 15:25:02 +02002077 struct genl_info *info)
2078{
Johannes Berg683b6d32012-11-08 21:25:48 +01002079 struct cfg80211_chan_def chandef;
Johannes Bergf444de02010-05-05 15:25:02 +02002080 int result;
Johannes Berge8c9bd52012-06-06 08:18:22 +02002081 enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;
Jouni Malinene16821b2014-04-28 11:22:08 +03002082 struct wireless_dev *wdev = NULL;
Johannes Berge8c9bd52012-06-06 08:18:22 +02002083
Jouni Malinene16821b2014-04-28 11:22:08 +03002084 if (dev)
2085 wdev = dev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02002086 if (!nl80211_can_set_dev_channel(wdev))
2087 return -EOPNOTSUPP;
Jouni Malinene16821b2014-04-28 11:22:08 +03002088 if (wdev)
2089 iftype = wdev->iftype;
Johannes Bergf444de02010-05-05 15:25:02 +02002090
Johannes Berg683b6d32012-11-08 21:25:48 +01002091 result = nl80211_parse_chandef(rdev, info, &chandef);
2092 if (result)
2093 return result;
Johannes Bergf444de02010-05-05 15:25:02 +02002094
Johannes Berge8c9bd52012-06-06 08:18:22 +02002095 switch (iftype) {
Johannes Bergaa430da2012-05-16 23:50:18 +02002096 case NL80211_IFTYPE_AP:
2097 case NL80211_IFTYPE_P2P_GO:
Arik Nemtsov923b3522015-07-08 15:41:44 +03002098 if (!cfg80211_reg_can_beacon_relax(&rdev->wiphy, &chandef,
2099 iftype)) {
Johannes Bergaa430da2012-05-16 23:50:18 +02002100 result = -EINVAL;
2101 break;
2102 }
Jouni Malinene16821b2014-04-28 11:22:08 +03002103 if (wdev->beacon_interval) {
2104 if (!dev || !rdev->ops->set_ap_chanwidth ||
2105 !(rdev->wiphy.features &
2106 NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE)) {
2107 result = -EBUSY;
2108 break;
2109 }
2110
2111 /* Only allow dynamic channel width changes */
2112 if (chandef.chan != wdev->preset_chandef.chan) {
2113 result = -EBUSY;
2114 break;
2115 }
2116 result = rdev_set_ap_chanwidth(rdev, dev, &chandef);
2117 if (result)
2118 break;
2119 }
Johannes Berg683b6d32012-11-08 21:25:48 +01002120 wdev->preset_chandef = chandef;
Johannes Bergaa430da2012-05-16 23:50:18 +02002121 result = 0;
2122 break;
Johannes Bergcc1d2802012-05-16 23:50:20 +02002123 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg683b6d32012-11-08 21:25:48 +01002124 result = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
Johannes Bergcc1d2802012-05-16 23:50:20 +02002125 break;
Johannes Berge8c9bd52012-06-06 08:18:22 +02002126 case NL80211_IFTYPE_MONITOR:
Johannes Berg683b6d32012-11-08 21:25:48 +01002127 result = cfg80211_set_monitor_channel(rdev, &chandef);
Johannes Berge8c9bd52012-06-06 08:18:22 +02002128 break;
Johannes Bergaa430da2012-05-16 23:50:18 +02002129 default:
Johannes Berge8c9bd52012-06-06 08:18:22 +02002130 result = -EINVAL;
Johannes Bergf444de02010-05-05 15:25:02 +02002131 }
Johannes Bergf444de02010-05-05 15:25:02 +02002132
2133 return result;
2134}
2135
2136static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info)
2137{
Johannes Berg4c476992010-10-04 21:36:35 +02002138 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2139 struct net_device *netdev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02002140
Jouni Malinene16821b2014-04-28 11:22:08 +03002141 return __nl80211_set_channel(rdev, netdev, info);
Johannes Bergf444de02010-05-05 15:25:02 +02002142}
2143
Bill Jordane8347eb2010-10-01 13:54:28 -04002144static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
2145{
Johannes Berg43b19952010-10-07 13:10:30 +02002146 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2147 struct net_device *dev = info->user_ptr[1];
2148 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg388ac772010-10-07 13:11:09 +02002149 const u8 *bssid;
Bill Jordane8347eb2010-10-01 13:54:28 -04002150
2151 if (!info->attrs[NL80211_ATTR_MAC])
2152 return -EINVAL;
2153
Johannes Berg43b19952010-10-07 13:10:30 +02002154 if (netif_running(dev))
2155 return -EBUSY;
Bill Jordane8347eb2010-10-01 13:54:28 -04002156
Johannes Berg43b19952010-10-07 13:10:30 +02002157 if (!rdev->ops->set_wds_peer)
2158 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04002159
Johannes Berg43b19952010-10-07 13:10:30 +02002160 if (wdev->iftype != NL80211_IFTYPE_WDS)
2161 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04002162
2163 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Hila Gonene35e4d22012-06-27 17:19:42 +03002164 return rdev_set_wds_peer(rdev, dev, bssid);
Bill Jordane8347eb2010-10-01 13:54:28 -04002165}
2166
Johannes Berg55682962007-09-20 13:09:35 -04002167static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
2168{
2169 struct cfg80211_registered_device *rdev;
Johannes Bergf444de02010-05-05 15:25:02 +02002170 struct net_device *netdev = NULL;
2171 struct wireless_dev *wdev;
Bill Jordana1e567c2010-09-10 11:22:32 -04002172 int result = 0, rem_txq_params = 0;
Jouni Malinen31888482008-10-30 16:59:24 +02002173 struct nlattr *nl_txq_params;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002174 u32 changed;
2175 u8 retry_short = 0, retry_long = 0;
2176 u32 frag_threshold = 0, rts_threshold = 0;
Lukáš Turek81077e82009-12-21 22:50:47 +01002177 u8 coverage_class = 0;
Johannes Berg55682962007-09-20 13:09:35 -04002178
Johannes Berg5fe231e2013-05-08 21:45:15 +02002179 ASSERT_RTNL();
2180
Johannes Bergf444de02010-05-05 15:25:02 +02002181 /*
2182 * Try to find the wiphy and netdev. Normally this
2183 * function shouldn't need the netdev, but this is
2184 * done for backward compatibility -- previously
2185 * setting the channel was done per wiphy, but now
2186 * it is per netdev. Previous userland like hostapd
2187 * also passed a netdev to set_wiphy, so that it is
2188 * possible to let that go to the right netdev!
2189 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002190
Johannes Bergf444de02010-05-05 15:25:02 +02002191 if (info->attrs[NL80211_ATTR_IFINDEX]) {
2192 int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
2193
Ying Xue7f2b8562014-01-15 10:23:45 +08002194 netdev = __dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002195 if (netdev && netdev->ieee80211_ptr)
Zhao, Gangf26cbf42014-04-21 12:53:03 +08002196 rdev = wiphy_to_rdev(netdev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002197 else
Johannes Bergf444de02010-05-05 15:25:02 +02002198 netdev = NULL;
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002199 }
2200
Johannes Bergf444de02010-05-05 15:25:02 +02002201 if (!netdev) {
Johannes Berg878d9ec2012-06-15 14:18:32 +02002202 rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
2203 info->attrs);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002204 if (IS_ERR(rdev))
Johannes Berg4c476992010-10-04 21:36:35 +02002205 return PTR_ERR(rdev);
Johannes Bergf444de02010-05-05 15:25:02 +02002206 wdev = NULL;
2207 netdev = NULL;
2208 result = 0;
Johannes Berg71fe96b2012-10-24 10:04:58 +02002209 } else
Johannes Bergf444de02010-05-05 15:25:02 +02002210 wdev = netdev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02002211
2212 /*
2213 * end workaround code, by now the rdev is available
2214 * and locked, and wdev may or may not be NULL.
2215 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002216
2217 if (info->attrs[NL80211_ATTR_WIPHY_NAME])
Jouni Malinen31888482008-10-30 16:59:24 +02002218 result = cfg80211_dev_rename(
2219 rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002220
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002221 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002222 return result;
Johannes Berg55682962007-09-20 13:09:35 -04002223
Jouni Malinen31888482008-10-30 16:59:24 +02002224 if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
2225 struct ieee80211_txq_params txq_params;
2226 struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];
2227
Ying Xue7f2b8562014-01-15 10:23:45 +08002228 if (!rdev->ops->set_txq_params)
2229 return -EOPNOTSUPP;
Jouni Malinen31888482008-10-30 16:59:24 +02002230
Ying Xue7f2b8562014-01-15 10:23:45 +08002231 if (!netdev)
2232 return -EINVAL;
Eliad Pellerf70f01c2011-09-25 20:06:53 +03002233
Johannes Berg133a3ff2011-11-03 14:50:13 +01002234 if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Ying Xue7f2b8562014-01-15 10:23:45 +08002235 netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
2236 return -EINVAL;
Johannes Berg133a3ff2011-11-03 14:50:13 +01002237
Ying Xue7f2b8562014-01-15 10:23:45 +08002238 if (!netif_running(netdev))
2239 return -ENETDOWN;
Johannes Berg2b5f8b02012-04-02 10:51:55 +02002240
Jouni Malinen31888482008-10-30 16:59:24 +02002241 nla_for_each_nested(nl_txq_params,
2242 info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
2243 rem_txq_params) {
Johannes Bergae811e22014-01-24 10:17:47 +01002244 result = nla_parse(tb, NL80211_TXQ_ATTR_MAX,
2245 nla_data(nl_txq_params),
2246 nla_len(nl_txq_params),
2247 txq_params_policy);
2248 if (result)
2249 return result;
Jouni Malinen31888482008-10-30 16:59:24 +02002250 result = parse_txq_params(tb, &txq_params);
2251 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002252 return result;
Jouni Malinen31888482008-10-30 16:59:24 +02002253
Hila Gonene35e4d22012-06-27 17:19:42 +03002254 result = rdev_set_txq_params(rdev, netdev,
2255 &txq_params);
Jouni Malinen31888482008-10-30 16:59:24 +02002256 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002257 return result;
Jouni Malinen31888482008-10-30 16:59:24 +02002258 }
2259 }
2260
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002261 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Jouni Malinene16821b2014-04-28 11:22:08 +03002262 result = __nl80211_set_channel(
2263 rdev,
2264 nl80211_can_set_dev_channel(wdev) ? netdev : NULL,
2265 info);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002266 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002267 return result;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002268 }
2269
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002270 if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
Johannes Bergc8442112012-10-24 10:17:18 +02002271 struct wireless_dev *txp_wdev = wdev;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002272 enum nl80211_tx_power_setting type;
2273 int idx, mbm = 0;
2274
Johannes Bergc8442112012-10-24 10:17:18 +02002275 if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER))
2276 txp_wdev = NULL;
2277
Ying Xue7f2b8562014-01-15 10:23:45 +08002278 if (!rdev->ops->set_tx_power)
2279 return -EOPNOTSUPP;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002280
2281 idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING;
2282 type = nla_get_u32(info->attrs[idx]);
2283
2284 if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] &&
Ying Xue7f2b8562014-01-15 10:23:45 +08002285 (type != NL80211_TX_POWER_AUTOMATIC))
2286 return -EINVAL;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002287
2288 if (type != NL80211_TX_POWER_AUTOMATIC) {
2289 idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL;
2290 mbm = nla_get_u32(info->attrs[idx]);
2291 }
2292
Johannes Bergc8442112012-10-24 10:17:18 +02002293 result = rdev_set_tx_power(rdev, txp_wdev, type, mbm);
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002294 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002295 return result;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002296 }
2297
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002298 if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
2299 info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
2300 u32 tx_ant, rx_ant;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07002301
Bruno Randolf7f531e02010-12-16 11:30:22 +09002302 if ((!rdev->wiphy.available_antennas_tx &&
2303 !rdev->wiphy.available_antennas_rx) ||
Ying Xue7f2b8562014-01-15 10:23:45 +08002304 !rdev->ops->set_antenna)
2305 return -EOPNOTSUPP;
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002306
2307 tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]);
2308 rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]);
2309
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002310 /* reject antenna configurations which don't match the
Bruno Randolf7f531e02010-12-16 11:30:22 +09002311 * available antenna masks, except for the "all" mask */
2312 if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) ||
Ying Xue7f2b8562014-01-15 10:23:45 +08002313 (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx)))
2314 return -EINVAL;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002315
Bruno Randolf7f531e02010-12-16 11:30:22 +09002316 tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
2317 rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002318
Hila Gonene35e4d22012-06-27 17:19:42 +03002319 result = rdev_set_antenna(rdev, tx_ant, rx_ant);
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002320 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002321 return result;
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002322 }
2323
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002324 changed = 0;
2325
2326 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
2327 retry_short = nla_get_u8(
2328 info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
Ying Xue7f2b8562014-01-15 10:23:45 +08002329 if (retry_short == 0)
2330 return -EINVAL;
2331
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002332 changed |= WIPHY_PARAM_RETRY_SHORT;
2333 }
2334
2335 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
2336 retry_long = nla_get_u8(
2337 info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
Ying Xue7f2b8562014-01-15 10:23:45 +08002338 if (retry_long == 0)
2339 return -EINVAL;
2340
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002341 changed |= WIPHY_PARAM_RETRY_LONG;
2342 }
2343
2344 if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
2345 frag_threshold = nla_get_u32(
2346 info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
Ying Xue7f2b8562014-01-15 10:23:45 +08002347 if (frag_threshold < 256)
2348 return -EINVAL;
2349
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002350 if (frag_threshold != (u32) -1) {
2351 /*
2352 * Fragments (apart from the last one) are required to
2353 * have even length. Make the fragmentation code
2354 * simpler by stripping LSB should someone try to use
2355 * odd threshold value.
2356 */
2357 frag_threshold &= ~0x1;
2358 }
2359 changed |= WIPHY_PARAM_FRAG_THRESHOLD;
2360 }
2361
2362 if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
2363 rts_threshold = nla_get_u32(
2364 info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
2365 changed |= WIPHY_PARAM_RTS_THRESHOLD;
2366 }
2367
Lukáš Turek81077e82009-12-21 22:50:47 +01002368 if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
Lorenzo Bianconi3057dbf2014-09-04 23:57:40 +02002369 if (info->attrs[NL80211_ATTR_WIPHY_DYN_ACK])
2370 return -EINVAL;
2371
Lukáš Turek81077e82009-12-21 22:50:47 +01002372 coverage_class = nla_get_u8(
2373 info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
2374 changed |= WIPHY_PARAM_COVERAGE_CLASS;
2375 }
2376
Lorenzo Bianconi3057dbf2014-09-04 23:57:40 +02002377 if (info->attrs[NL80211_ATTR_WIPHY_DYN_ACK]) {
2378 if (!(rdev->wiphy.features & NL80211_FEATURE_ACKTO_ESTIMATION))
2379 return -EOPNOTSUPP;
2380
2381 changed |= WIPHY_PARAM_DYN_ACK;
2382 }
2383
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002384 if (changed) {
2385 u8 old_retry_short, old_retry_long;
2386 u32 old_frag_threshold, old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002387 u8 old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002388
Ying Xue7f2b8562014-01-15 10:23:45 +08002389 if (!rdev->ops->set_wiphy_params)
2390 return -EOPNOTSUPP;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002391
2392 old_retry_short = rdev->wiphy.retry_short;
2393 old_retry_long = rdev->wiphy.retry_long;
2394 old_frag_threshold = rdev->wiphy.frag_threshold;
2395 old_rts_threshold = rdev->wiphy.rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002396 old_coverage_class = rdev->wiphy.coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002397
2398 if (changed & WIPHY_PARAM_RETRY_SHORT)
2399 rdev->wiphy.retry_short = retry_short;
2400 if (changed & WIPHY_PARAM_RETRY_LONG)
2401 rdev->wiphy.retry_long = retry_long;
2402 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
2403 rdev->wiphy.frag_threshold = frag_threshold;
2404 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
2405 rdev->wiphy.rts_threshold = rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002406 if (changed & WIPHY_PARAM_COVERAGE_CLASS)
2407 rdev->wiphy.coverage_class = coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002408
Hila Gonene35e4d22012-06-27 17:19:42 +03002409 result = rdev_set_wiphy_params(rdev, changed);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002410 if (result) {
2411 rdev->wiphy.retry_short = old_retry_short;
2412 rdev->wiphy.retry_long = old_retry_long;
2413 rdev->wiphy.frag_threshold = old_frag_threshold;
2414 rdev->wiphy.rts_threshold = old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002415 rdev->wiphy.coverage_class = old_coverage_class;
Michal Kazior9189ee32015-08-03 10:55:24 +02002416 return result;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002417 }
2418 }
Ying Xue7f2b8562014-01-15 10:23:45 +08002419 return 0;
Johannes Berg55682962007-09-20 13:09:35 -04002420}
2421
Johannes Berg71bbc992012-06-15 15:30:18 +02002422static inline u64 wdev_id(struct wireless_dev *wdev)
2423{
2424 return (u64)wdev->identifier |
Zhao, Gangf26cbf42014-04-21 12:53:03 +08002425 ((u64)wiphy_to_rdev(wdev->wiphy)->wiphy_idx << 32);
Johannes Berg71bbc992012-06-15 15:30:18 +02002426}
Johannes Berg55682962007-09-20 13:09:35 -04002427
Johannes Berg683b6d32012-11-08 21:25:48 +01002428static int nl80211_send_chandef(struct sk_buff *msg,
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01002429 const struct cfg80211_chan_def *chandef)
Johannes Berg683b6d32012-11-08 21:25:48 +01002430{
Johannes Berg601555c2014-11-27 17:26:56 +01002431 if (WARN_ON(!cfg80211_chandef_valid(chandef)))
2432 return -EINVAL;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002433
Johannes Berg683b6d32012-11-08 21:25:48 +01002434 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
2435 chandef->chan->center_freq))
2436 return -ENOBUFS;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002437 switch (chandef->width) {
2438 case NL80211_CHAN_WIDTH_20_NOHT:
2439 case NL80211_CHAN_WIDTH_20:
2440 case NL80211_CHAN_WIDTH_40:
2441 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
2442 cfg80211_get_chandef_type(chandef)))
2443 return -ENOBUFS;
2444 break;
2445 default:
2446 break;
2447 }
2448 if (nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, chandef->width))
2449 return -ENOBUFS;
2450 if (nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ1, chandef->center_freq1))
2451 return -ENOBUFS;
2452 if (chandef->center_freq2 &&
2453 nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ2, chandef->center_freq2))
Johannes Berg683b6d32012-11-08 21:25:48 +01002454 return -ENOBUFS;
2455 return 0;
2456}
2457
Eric W. Biederman15e47302012-09-07 20:12:54 +00002458static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
Johannes Bergd7264052009-04-19 16:23:20 +02002459 struct cfg80211_registered_device *rdev,
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002460 struct wireless_dev *wdev, bool removal)
Johannes Berg55682962007-09-20 13:09:35 -04002461{
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002462 struct net_device *dev = wdev->netdev;
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002463 u8 cmd = NL80211_CMD_NEW_INTERFACE;
Johannes Berg55682962007-09-20 13:09:35 -04002464 void *hdr;
2465
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002466 if (removal)
2467 cmd = NL80211_CMD_DEL_INTERFACE;
2468
2469 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -04002470 if (!hdr)
2471 return -1;
2472
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002473 if (dev &&
2474 (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002475 nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002476 goto nla_put_failure;
2477
2478 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
2479 nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02002480 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
2481 NL80211_ATTR_PAD) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002482 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04002483 nla_put_u32(msg, NL80211_ATTR_GENERATION,
2484 rdev->devlist_generation ^
2485 (cfg80211_rdev_list_generation << 2)))
2486 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02002487
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002488 if (rdev->ops->get_channel) {
Johannes Berg683b6d32012-11-08 21:25:48 +01002489 int ret;
2490 struct cfg80211_chan_def chandef;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002491
Johannes Berg683b6d32012-11-08 21:25:48 +01002492 ret = rdev_get_channel(rdev, wdev, &chandef);
2493 if (ret == 0) {
2494 if (nl80211_send_chandef(msg, &chandef))
2495 goto nla_put_failure;
2496 }
Pontus Fuchsd91df0e2012-04-03 16:39:58 +02002497 }
2498
Rafał Miłeckid55d0d52015-08-31 22:59:38 +02002499 if (rdev->ops->get_tx_power) {
2500 int dbm, ret;
2501
2502 ret = rdev_get_tx_power(rdev, wdev, &dbm);
2503 if (ret == 0 &&
2504 nla_put_u32(msg, NL80211_ATTR_WIPHY_TX_POWER_LEVEL,
2505 DBM_TO_MBM(dbm)))
2506 goto nla_put_failure;
2507 }
2508
Antonio Quartullib84e7a02012-11-07 12:52:20 +01002509 if (wdev->ssid_len) {
2510 if (nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid))
2511 goto nla_put_failure;
2512 }
2513
Johannes Berg053c0952015-01-16 22:09:00 +01002514 genlmsg_end(msg, hdr);
2515 return 0;
Johannes Berg55682962007-09-20 13:09:35 -04002516
2517 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07002518 genlmsg_cancel(msg, hdr);
2519 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04002520}
2521
2522static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
2523{
2524 int wp_idx = 0;
2525 int if_idx = 0;
2526 int wp_start = cb->args[0];
2527 int if_start = cb->args[1];
Johannes Bergf5ea9122009-08-07 16:17:38 +02002528 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -04002529 struct wireless_dev *wdev;
2530
Johannes Berg5fe231e2013-05-08 21:45:15 +02002531 rtnl_lock();
Johannes Bergf5ea9122009-08-07 16:17:38 +02002532 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2533 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02002534 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002535 if (wp_idx < wp_start) {
2536 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002537 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002538 }
Johannes Berg55682962007-09-20 13:09:35 -04002539 if_idx = 0;
2540
Johannes Berg53873f12016-05-03 16:52:04 +03002541 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002542 if (if_idx < if_start) {
2543 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002544 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002545 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002546 if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).portid,
Johannes Berg55682962007-09-20 13:09:35 -04002547 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002548 rdev, wdev, false) < 0) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002549 goto out;
2550 }
2551 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002552 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002553
2554 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002555 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002556 out:
Johannes Berg5fe231e2013-05-08 21:45:15 +02002557 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04002558
2559 cb->args[0] = wp_idx;
2560 cb->args[1] = if_idx;
2561
2562 return skb->len;
2563}
2564
2565static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
2566{
2567 struct sk_buff *msg;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08002568 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002569 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002570
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002571 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04002572 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02002573 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04002574
Eric W. Biederman15e47302012-09-07 20:12:54 +00002575 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002576 rdev, wdev, false) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02002577 nlmsg_free(msg);
2578 return -ENOBUFS;
2579 }
Johannes Berg55682962007-09-20 13:09:35 -04002580
Johannes Berg134e6372009-07-10 09:51:34 +00002581 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002582}
2583
Michael Wu66f7ac52008-01-31 19:48:22 +01002584static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
2585 [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
2586 [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
2587 [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
2588 [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
2589 [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002590 [NL80211_MNTR_FLAG_ACTIVE] = { .type = NLA_FLAG },
Michael Wu66f7ac52008-01-31 19:48:22 +01002591};
2592
2593static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
2594{
2595 struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
2596 int flag;
2597
2598 *mntrflags = 0;
2599
2600 if (!nla)
2601 return -EINVAL;
2602
2603 if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
2604 nla, mntr_flags_policy))
2605 return -EINVAL;
2606
2607 for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
2608 if (flags[flag])
2609 *mntrflags |= (1<<flag);
2610
2611 return 0;
2612}
2613
Johannes Berg9bc383d2009-11-19 11:55:19 +01002614static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002615 struct net_device *netdev, u8 use_4addr,
2616 enum nl80211_iftype iftype)
Johannes Berg9bc383d2009-11-19 11:55:19 +01002617{
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002618 if (!use_4addr) {
Jiri Pirkof350a0a82010-06-15 06:50:45 +00002619 if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002620 return -EBUSY;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002621 return 0;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002622 }
Johannes Berg9bc383d2009-11-19 11:55:19 +01002623
2624 switch (iftype) {
2625 case NL80211_IFTYPE_AP_VLAN:
2626 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP)
2627 return 0;
2628 break;
2629 case NL80211_IFTYPE_STATION:
2630 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION)
2631 return 0;
2632 break;
2633 default:
2634 break;
2635 }
2636
2637 return -EOPNOTSUPP;
2638}
2639
Johannes Berg55682962007-09-20 13:09:35 -04002640static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
2641{
Johannes Berg4c476992010-10-04 21:36:35 +02002642 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002643 struct vif_params params;
Johannes Berge36d56b2009-06-09 21:04:43 +02002644 int err;
Johannes Berg04a773a2009-04-19 21:24:32 +02002645 enum nl80211_iftype otype, ntype;
Johannes Berg4c476992010-10-04 21:36:35 +02002646 struct net_device *dev = info->user_ptr[1];
Johannes Berg92ffe052008-09-16 20:39:36 +02002647 u32 _flags, *flags = NULL;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002648 bool change = false;
Johannes Berg55682962007-09-20 13:09:35 -04002649
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002650 memset(&params, 0, sizeof(params));
2651
Johannes Berg04a773a2009-04-19 21:24:32 +02002652 otype = ntype = dev->ieee80211_ptr->iftype;
Johannes Berg55682962007-09-20 13:09:35 -04002653
Johannes Berg723b0382008-09-16 20:22:09 +02002654 if (info->attrs[NL80211_ATTR_IFTYPE]) {
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002655 ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
Johannes Berg04a773a2009-04-19 21:24:32 +02002656 if (otype != ntype)
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002657 change = true;
Johannes Berg4c476992010-10-04 21:36:35 +02002658 if (ntype > NL80211_IFTYPE_MAX)
2659 return -EINVAL;
Johannes Berg723b0382008-09-16 20:22:09 +02002660 }
2661
Johannes Berg92ffe052008-09-16 20:39:36 +02002662 if (info->attrs[NL80211_ATTR_MESH_ID]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01002663 struct wireless_dev *wdev = dev->ieee80211_ptr;
2664
Johannes Berg4c476992010-10-04 21:36:35 +02002665 if (ntype != NL80211_IFTYPE_MESH_POINT)
2666 return -EINVAL;
Johannes Berg29cbe682010-12-03 09:20:44 +01002667 if (netif_running(dev))
2668 return -EBUSY;
2669
2670 wdev_lock(wdev);
2671 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2672 IEEE80211_MAX_MESH_ID_LEN);
2673 wdev->mesh_id_up_len =
2674 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2675 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2676 wdev->mesh_id_up_len);
2677 wdev_unlock(wdev);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002678 }
2679
Felix Fietkau8b787642009-11-10 18:53:10 +01002680 if (info->attrs[NL80211_ATTR_4ADDR]) {
2681 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2682 change = true;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002683 err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002684 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002685 return err;
Felix Fietkau8b787642009-11-10 18:53:10 +01002686 } else {
2687 params.use_4addr = -1;
2688 }
2689
Johannes Berg92ffe052008-09-16 20:39:36 +02002690 if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
Johannes Berg4c476992010-10-04 21:36:35 +02002691 if (ntype != NL80211_IFTYPE_MONITOR)
2692 return -EINVAL;
Johannes Berg92ffe052008-09-16 20:39:36 +02002693 err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
2694 &_flags);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002695 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002696 return err;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002697
2698 flags = &_flags;
2699 change = true;
Johannes Berg92ffe052008-09-16 20:39:36 +02002700 }
Johannes Berg3b858752009-03-12 09:55:09 +01002701
Aviya Erenfeldc6e6a0c2016-07-05 15:23:08 +03002702 if (info->attrs[NL80211_ATTR_MU_MIMO_GROUP_DATA]) {
2703 const u8 *mumimo_groups;
2704 u32 cap_flag = NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER;
2705
2706 if (!wiphy_ext_feature_isset(&rdev->wiphy, cap_flag))
2707 return -EOPNOTSUPP;
2708
2709 mumimo_groups =
2710 nla_data(info->attrs[NL80211_ATTR_MU_MIMO_GROUP_DATA]);
2711
2712 /* bits 0 and 63 are reserved and must be zero */
2713 if ((mumimo_groups[0] & BIT(7)) ||
2714 (mumimo_groups[VHT_MUMIMO_GROUPS_DATA_LEN - 1] & BIT(0)))
2715 return -EINVAL;
2716
2717 memcpy(params.vht_mumimo_groups, mumimo_groups,
2718 VHT_MUMIMO_GROUPS_DATA_LEN);
2719 change = true;
2720 }
2721
2722 if (info->attrs[NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR]) {
2723 u32 cap_flag = NL80211_EXT_FEATURE_MU_MIMO_AIR_SNIFFER;
2724
2725 if (!wiphy_ext_feature_isset(&rdev->wiphy, cap_flag))
2726 return -EOPNOTSUPP;
2727
2728 nla_memcpy(params.macaddr,
2729 info->attrs[NL80211_ATTR_MU_MIMO_FOLLOW_MAC_ADDR],
2730 ETH_ALEN);
2731 change = true;
2732 }
2733
Luciano Coelho18003292013-08-29 13:26:57 +03002734 if (flags && (*flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002735 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2736 return -EOPNOTSUPP;
2737
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002738 if (change)
Johannes Berg3d54d252009-08-21 14:51:05 +02002739 err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002740 else
2741 err = 0;
Johannes Berg60719ff2008-09-16 14:55:09 +02002742
Johannes Berg9bc383d2009-11-19 11:55:19 +01002743 if (!err && params.use_4addr != -1)
2744 dev->ieee80211_ptr->use_4addr = params.use_4addr;
2745
Johannes Berg55682962007-09-20 13:09:35 -04002746 return err;
2747}
2748
2749static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
2750{
Johannes Berg4c476992010-10-04 21:36:35 +02002751 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002752 struct vif_params params;
Johannes Berg84efbb82012-06-16 00:00:26 +02002753 struct wireless_dev *wdev;
Denis Kenzior896ff062016-08-03 16:58:33 -05002754 struct sk_buff *msg;
Johannes Berg55682962007-09-20 13:09:35 -04002755 int err;
2756 enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
Michael Wu66f7ac52008-01-31 19:48:22 +01002757 u32 flags;
Johannes Berg55682962007-09-20 13:09:35 -04002758
Johannes Berg78f22b62014-03-24 17:57:27 +01002759 /* to avoid failing a new interface creation due to pending removal */
2760 cfg80211_destroy_ifaces(rdev);
2761
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002762 memset(&params, 0, sizeof(params));
2763
Johannes Berg55682962007-09-20 13:09:35 -04002764 if (!info->attrs[NL80211_ATTR_IFNAME])
2765 return -EINVAL;
2766
2767 if (info->attrs[NL80211_ATTR_IFTYPE]) {
2768 type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
2769 if (type > NL80211_IFTYPE_MAX)
2770 return -EINVAL;
2771 }
2772
Johannes Berg79c97e92009-07-07 03:56:12 +02002773 if (!rdev->ops->add_virtual_intf ||
Johannes Berg4c476992010-10-04 21:36:35 +02002774 !(rdev->wiphy.interface_modes & (1 << type)))
2775 return -EOPNOTSUPP;
Johannes Berg55682962007-09-20 13:09:35 -04002776
Ben Greeare8f479b2014-10-22 12:23:05 -07002777 if ((type == NL80211_IFTYPE_P2P_DEVICE ||
2778 rdev->wiphy.features & NL80211_FEATURE_MAC_ON_CREATE) &&
2779 info->attrs[NL80211_ATTR_MAC]) {
Arend van Spriel1c18f142013-01-08 10:17:27 +01002780 nla_memcpy(params.macaddr, info->attrs[NL80211_ATTR_MAC],
2781 ETH_ALEN);
2782 if (!is_valid_ether_addr(params.macaddr))
2783 return -EADDRNOTAVAIL;
2784 }
2785
Johannes Berg9bc383d2009-11-19 11:55:19 +01002786 if (info->attrs[NL80211_ATTR_4ADDR]) {
Felix Fietkau8b787642009-11-10 18:53:10 +01002787 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002788 err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002789 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002790 return err;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002791 }
Felix Fietkau8b787642009-11-10 18:53:10 +01002792
Michael Wu66f7ac52008-01-31 19:48:22 +01002793 err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
2794 info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
2795 &flags);
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002796
Luciano Coelho18003292013-08-29 13:26:57 +03002797 if (!err && (flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002798 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2799 return -EOPNOTSUPP;
2800
Johannes Berga18c7192015-02-24 10:56:42 +01002801 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2802 if (!msg)
2803 return -ENOMEM;
2804
Hila Gonene35e4d22012-06-27 17:19:42 +03002805 wdev = rdev_add_virtual_intf(rdev,
2806 nla_data(info->attrs[NL80211_ATTR_IFNAME]),
Tom Gundersen6bab2e192015-03-18 11:13:39 +01002807 NET_NAME_USER, type, err ? NULL : &flags,
2808 &params);
Rafał Miłeckid687cbb2014-11-14 18:43:28 +01002809 if (WARN_ON(!wdev)) {
2810 nlmsg_free(msg);
2811 return -EPROTO;
2812 } else if (IS_ERR(wdev)) {
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002813 nlmsg_free(msg);
Johannes Berg84efbb82012-06-16 00:00:26 +02002814 return PTR_ERR(wdev);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002815 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002816
Jukka Rissanen18e5ca62014-11-13 17:25:14 +02002817 if (info->attrs[NL80211_ATTR_SOCKET_OWNER])
Johannes Berg78f22b62014-03-24 17:57:27 +01002818 wdev->owner_nlportid = info->snd_portid;
2819
Johannes Berg98104fde2012-06-16 00:19:54 +02002820 switch (type) {
2821 case NL80211_IFTYPE_MESH_POINT:
2822 if (!info->attrs[NL80211_ATTR_MESH_ID])
2823 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002824 wdev_lock(wdev);
2825 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2826 IEEE80211_MAX_MESH_ID_LEN);
2827 wdev->mesh_id_up_len =
2828 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2829 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2830 wdev->mesh_id_up_len);
2831 wdev_unlock(wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02002832 break;
2833 case NL80211_IFTYPE_P2P_DEVICE:
2834 /*
2835 * P2P Device doesn't have a netdev, so doesn't go
2836 * through the netdev notifier and must be added here
2837 */
2838 mutex_init(&wdev->mtx);
2839 INIT_LIST_HEAD(&wdev->event_list);
2840 spin_lock_init(&wdev->event_lock);
2841 INIT_LIST_HEAD(&wdev->mgmt_registrations);
2842 spin_lock_init(&wdev->mgmt_registrations_lock);
2843
Johannes Berg98104fde2012-06-16 00:19:54 +02002844 wdev->identifier = ++rdev->wdev_id;
Johannes Berg53873f12016-05-03 16:52:04 +03002845 list_add_rcu(&wdev->list, &rdev->wiphy.wdev_list);
Johannes Berg98104fde2012-06-16 00:19:54 +02002846 rdev->devlist_generation++;
Johannes Berg98104fde2012-06-16 00:19:54 +02002847 break;
2848 default:
2849 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002850 }
2851
Eric W. Biederman15e47302012-09-07 20:12:54 +00002852 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002853 rdev, wdev, false) < 0) {
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002854 nlmsg_free(msg);
2855 return -ENOBUFS;
2856 }
2857
Denis Kenzior896ff062016-08-03 16:58:33 -05002858 /*
2859 * For wdevs which have no associated netdev object (e.g. of type
2860 * NL80211_IFTYPE_P2P_DEVICE), emit the NEW_INTERFACE event here.
2861 * For all other types, the event will be generated from the
2862 * netdev notifier
2863 */
2864 if (!wdev->netdev)
2865 nl80211_notify_iface(rdev, wdev, NL80211_CMD_NEW_INTERFACE);
Tomasz Bursztyka8f894be2014-11-12 16:26:45 +02002866
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002867 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002868}
2869
2870static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
2871{
Johannes Berg4c476992010-10-04 21:36:35 +02002872 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg84efbb82012-06-16 00:00:26 +02002873 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002874
Johannes Berg4c476992010-10-04 21:36:35 +02002875 if (!rdev->ops->del_virtual_intf)
2876 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002877
Johannes Berg84efbb82012-06-16 00:00:26 +02002878 /*
2879 * If we remove a wireless device without a netdev then clear
2880 * user_ptr[1] so that nl80211_post_doit won't dereference it
2881 * to check if it needs to do dev_put(). Otherwise it crashes
2882 * since the wdev has been freed, unlike with a netdev where
2883 * we need the dev_put() for the netdev to really be freed.
2884 */
2885 if (!wdev->netdev)
2886 info->user_ptr[1] = NULL;
2887
Denis Kenzior7f8ed012016-08-03 16:58:35 -05002888 return rdev_del_virtual_intf(rdev, wdev);
Johannes Berg55682962007-09-20 13:09:35 -04002889}
2890
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002891static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info)
2892{
2893 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2894 struct net_device *dev = info->user_ptr[1];
2895 u16 noack_map;
2896
2897 if (!info->attrs[NL80211_ATTR_NOACK_MAP])
2898 return -EINVAL;
2899
2900 if (!rdev->ops->set_noack_map)
2901 return -EOPNOTSUPP;
2902
2903 noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]);
2904
Hila Gonene35e4d22012-06-27 17:19:42 +03002905 return rdev_set_noack_map(rdev, dev, noack_map);
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002906}
2907
Johannes Berg41ade002007-12-19 02:03:29 +01002908struct get_key_cookie {
2909 struct sk_buff *msg;
2910 int error;
Johannes Bergb9454e82009-07-08 13:29:08 +02002911 int idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002912};
2913
2914static void get_key_callback(void *c, struct key_params *params)
2915{
Johannes Bergb9454e82009-07-08 13:29:08 +02002916 struct nlattr *key;
Johannes Berg41ade002007-12-19 02:03:29 +01002917 struct get_key_cookie *cookie = c;
2918
David S. Miller9360ffd2012-03-29 04:41:26 -04002919 if ((params->key &&
2920 nla_put(cookie->msg, NL80211_ATTR_KEY_DATA,
2921 params->key_len, params->key)) ||
2922 (params->seq &&
2923 nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ,
2924 params->seq_len, params->seq)) ||
2925 (params->cipher &&
2926 nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
2927 params->cipher)))
2928 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002929
Johannes Bergb9454e82009-07-08 13:29:08 +02002930 key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
2931 if (!key)
2932 goto nla_put_failure;
2933
David S. Miller9360ffd2012-03-29 04:41:26 -04002934 if ((params->key &&
2935 nla_put(cookie->msg, NL80211_KEY_DATA,
2936 params->key_len, params->key)) ||
2937 (params->seq &&
2938 nla_put(cookie->msg, NL80211_KEY_SEQ,
2939 params->seq_len, params->seq)) ||
2940 (params->cipher &&
2941 nla_put_u32(cookie->msg, NL80211_KEY_CIPHER,
2942 params->cipher)))
2943 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002944
David S. Miller9360ffd2012-03-29 04:41:26 -04002945 if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
2946 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002947
2948 nla_nest_end(cookie->msg, key);
2949
Johannes Berg41ade002007-12-19 02:03:29 +01002950 return;
2951 nla_put_failure:
2952 cookie->error = 1;
2953}
2954
2955static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
2956{
Johannes Berg4c476992010-10-04 21:36:35 +02002957 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002958 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002959 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002960 u8 key_idx = 0;
Johannes Berge31b8212010-10-05 19:39:30 +02002961 const u8 *mac_addr = NULL;
2962 bool pairwise;
Johannes Berg41ade002007-12-19 02:03:29 +01002963 struct get_key_cookie cookie = {
2964 .error = 0,
2965 };
2966 void *hdr;
2967 struct sk_buff *msg;
2968
2969 if (info->attrs[NL80211_ATTR_KEY_IDX])
2970 key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
2971
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02002972 if (key_idx > 5)
Johannes Berg41ade002007-12-19 02:03:29 +01002973 return -EINVAL;
2974
2975 if (info->attrs[NL80211_ATTR_MAC])
2976 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2977
Johannes Berge31b8212010-10-05 19:39:30 +02002978 pairwise = !!mac_addr;
2979 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
2980 u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07002981
Johannes Berge31b8212010-10-05 19:39:30 +02002982 if (kt >= NUM_NL80211_KEYTYPES)
2983 return -EINVAL;
2984 if (kt != NL80211_KEYTYPE_GROUP &&
2985 kt != NL80211_KEYTYPE_PAIRWISE)
2986 return -EINVAL;
2987 pairwise = kt == NL80211_KEYTYPE_PAIRWISE;
2988 }
2989
Johannes Berg4c476992010-10-04 21:36:35 +02002990 if (!rdev->ops->get_key)
2991 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002992
Johannes Berg0fa7b392015-01-23 11:10:12 +01002993 if (!pairwise && mac_addr && !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2994 return -ENOENT;
2995
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002996 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02002997 if (!msg)
2998 return -ENOMEM;
Johannes Berg41ade002007-12-19 02:03:29 +01002999
Eric W. Biederman15e47302012-09-07 20:12:54 +00003000 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg41ade002007-12-19 02:03:29 +01003001 NL80211_CMD_NEW_KEY);
Dan Carpentercb35fba2013-08-14 14:50:01 +03003002 if (!hdr)
Johannes Berg9fe271a2013-10-25 11:15:12 +02003003 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01003004
3005 cookie.msg = msg;
Johannes Bergb9454e82009-07-08 13:29:08 +02003006 cookie.idx = key_idx;
Johannes Berg41ade002007-12-19 02:03:29 +01003007
David S. Miller9360ffd2012-03-29 04:41:26 -04003008 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
3009 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx))
3010 goto nla_put_failure;
3011 if (mac_addr &&
3012 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
3013 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01003014
Hila Gonene35e4d22012-06-27 17:19:42 +03003015 err = rdev_get_key(rdev, dev, key_idx, pairwise, mac_addr, &cookie,
3016 get_key_callback);
Johannes Berg41ade002007-12-19 02:03:29 +01003017
3018 if (err)
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03003019 goto free_msg;
Johannes Berg41ade002007-12-19 02:03:29 +01003020
3021 if (cookie.error)
3022 goto nla_put_failure;
3023
3024 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02003025 return genlmsg_reply(msg, info);
Johannes Berg41ade002007-12-19 02:03:29 +01003026
3027 nla_put_failure:
3028 err = -ENOBUFS;
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03003029 free_msg:
Johannes Berg41ade002007-12-19 02:03:29 +01003030 nlmsg_free(msg);
Johannes Berg41ade002007-12-19 02:03:29 +01003031 return err;
3032}
3033
3034static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
3035{
Johannes Berg4c476992010-10-04 21:36:35 +02003036 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergb9454e82009-07-08 13:29:08 +02003037 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01003038 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02003039 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01003040
Johannes Bergb9454e82009-07-08 13:29:08 +02003041 err = nl80211_parse_key(info, &key);
3042 if (err)
3043 return err;
3044
3045 if (key.idx < 0)
Johannes Berg41ade002007-12-19 02:03:29 +01003046 return -EINVAL;
3047
Johannes Bergb9454e82009-07-08 13:29:08 +02003048 /* only support setting default key */
3049 if (!key.def && !key.defmgmt)
Johannes Berg41ade002007-12-19 02:03:29 +01003050 return -EINVAL;
3051
Johannes Bergfffd0932009-07-08 14:22:54 +02003052 wdev_lock(dev->ieee80211_ptr);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01003053
3054 if (key.def) {
3055 if (!rdev->ops->set_default_key) {
3056 err = -EOPNOTSUPP;
3057 goto out;
3058 }
3059
3060 err = nl80211_key_allowed(dev->ieee80211_ptr);
3061 if (err)
3062 goto out;
3063
Hila Gonene35e4d22012-06-27 17:19:42 +03003064 err = rdev_set_default_key(rdev, dev, key.idx,
Johannes Bergdbd2fd62010-12-09 19:58:59 +01003065 key.def_uni, key.def_multi);
3066
3067 if (err)
3068 goto out;
Johannes Bergfffd0932009-07-08 14:22:54 +02003069
Johannes Berg3d23e342009-09-29 23:27:28 +02003070#ifdef CONFIG_CFG80211_WEXT
Johannes Bergdbd2fd62010-12-09 19:58:59 +01003071 dev->ieee80211_ptr->wext.default_key = key.idx;
Johannes Berg08645122009-05-11 13:54:58 +02003072#endif
Johannes Bergdbd2fd62010-12-09 19:58:59 +01003073 } else {
3074 if (key.def_uni || !key.def_multi) {
3075 err = -EINVAL;
3076 goto out;
3077 }
3078
3079 if (!rdev->ops->set_default_mgmt_key) {
3080 err = -EOPNOTSUPP;
3081 goto out;
3082 }
3083
3084 err = nl80211_key_allowed(dev->ieee80211_ptr);
3085 if (err)
3086 goto out;
3087
Hila Gonene35e4d22012-06-27 17:19:42 +03003088 err = rdev_set_default_mgmt_key(rdev, dev, key.idx);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01003089 if (err)
3090 goto out;
3091
3092#ifdef CONFIG_CFG80211_WEXT
3093 dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
3094#endif
3095 }
3096
3097 out:
Johannes Bergfffd0932009-07-08 14:22:54 +02003098 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01003099
Johannes Berg41ade002007-12-19 02:03:29 +01003100 return err;
3101}
3102
3103static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
3104{
Johannes Berg4c476992010-10-04 21:36:35 +02003105 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfffd0932009-07-08 14:22:54 +02003106 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02003107 struct net_device *dev = info->user_ptr[1];
Johannes Bergb9454e82009-07-08 13:29:08 +02003108 struct key_parse key;
Johannes Berge31b8212010-10-05 19:39:30 +02003109 const u8 *mac_addr = NULL;
Johannes Berg41ade002007-12-19 02:03:29 +01003110
Johannes Bergb9454e82009-07-08 13:29:08 +02003111 err = nl80211_parse_key(info, &key);
3112 if (err)
3113 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01003114
Johannes Bergb9454e82009-07-08 13:29:08 +02003115 if (!key.p.key)
Johannes Berg41ade002007-12-19 02:03:29 +01003116 return -EINVAL;
3117
Johannes Berg41ade002007-12-19 02:03:29 +01003118 if (info->attrs[NL80211_ATTR_MAC])
3119 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3120
Johannes Berge31b8212010-10-05 19:39:30 +02003121 if (key.type == -1) {
3122 if (mac_addr)
3123 key.type = NL80211_KEYTYPE_PAIRWISE;
3124 else
3125 key.type = NL80211_KEYTYPE_GROUP;
3126 }
3127
3128 /* for now */
3129 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
3130 key.type != NL80211_KEYTYPE_GROUP)
3131 return -EINVAL;
3132
Johannes Berg4c476992010-10-04 21:36:35 +02003133 if (!rdev->ops->add_key)
3134 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01003135
Johannes Berge31b8212010-10-05 19:39:30 +02003136 if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
3137 key.type == NL80211_KEYTYPE_PAIRWISE,
3138 mac_addr))
Johannes Berg4c476992010-10-04 21:36:35 +02003139 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02003140
3141 wdev_lock(dev->ieee80211_ptr);
3142 err = nl80211_key_allowed(dev->ieee80211_ptr);
3143 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03003144 err = rdev_add_key(rdev, dev, key.idx,
3145 key.type == NL80211_KEYTYPE_PAIRWISE,
3146 mac_addr, &key.p);
Johannes Bergfffd0932009-07-08 14:22:54 +02003147 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01003148
Johannes Berg41ade002007-12-19 02:03:29 +01003149 return err;
3150}
3151
3152static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
3153{
Johannes Berg4c476992010-10-04 21:36:35 +02003154 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01003155 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02003156 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01003157 u8 *mac_addr = NULL;
Johannes Bergb9454e82009-07-08 13:29:08 +02003158 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01003159
Johannes Bergb9454e82009-07-08 13:29:08 +02003160 err = nl80211_parse_key(info, &key);
3161 if (err)
3162 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01003163
3164 if (info->attrs[NL80211_ATTR_MAC])
3165 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3166
Johannes Berge31b8212010-10-05 19:39:30 +02003167 if (key.type == -1) {
3168 if (mac_addr)
3169 key.type = NL80211_KEYTYPE_PAIRWISE;
3170 else
3171 key.type = NL80211_KEYTYPE_GROUP;
3172 }
3173
3174 /* for now */
3175 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
3176 key.type != NL80211_KEYTYPE_GROUP)
3177 return -EINVAL;
3178
Johannes Berg4c476992010-10-04 21:36:35 +02003179 if (!rdev->ops->del_key)
3180 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01003181
Johannes Bergfffd0932009-07-08 14:22:54 +02003182 wdev_lock(dev->ieee80211_ptr);
3183 err = nl80211_key_allowed(dev->ieee80211_ptr);
Johannes Berge31b8212010-10-05 19:39:30 +02003184
Johannes Berg0fa7b392015-01-23 11:10:12 +01003185 if (key.type == NL80211_KEYTYPE_GROUP && mac_addr &&
Johannes Berge31b8212010-10-05 19:39:30 +02003186 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
3187 err = -ENOENT;
3188
Johannes Bergfffd0932009-07-08 14:22:54 +02003189 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03003190 err = rdev_del_key(rdev, dev, key.idx,
3191 key.type == NL80211_KEYTYPE_PAIRWISE,
3192 mac_addr);
Johannes Berg41ade002007-12-19 02:03:29 +01003193
Johannes Berg3d23e342009-09-29 23:27:28 +02003194#ifdef CONFIG_CFG80211_WEXT
Johannes Berg08645122009-05-11 13:54:58 +02003195 if (!err) {
Johannes Bergb9454e82009-07-08 13:29:08 +02003196 if (key.idx == dev->ieee80211_ptr->wext.default_key)
Johannes Berg08645122009-05-11 13:54:58 +02003197 dev->ieee80211_ptr->wext.default_key = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +02003198 else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
Johannes Berg08645122009-05-11 13:54:58 +02003199 dev->ieee80211_ptr->wext.default_mgmt_key = -1;
3200 }
3201#endif
Johannes Bergfffd0932009-07-08 14:22:54 +02003202 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg08645122009-05-11 13:54:58 +02003203
Johannes Berg41ade002007-12-19 02:03:29 +01003204 return err;
3205}
3206
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303207/* This function returns an error or the number of nested attributes */
3208static int validate_acl_mac_addrs(struct nlattr *nl_attr)
3209{
3210 struct nlattr *attr;
3211 int n_entries = 0, tmp;
3212
3213 nla_for_each_nested(attr, nl_attr, tmp) {
3214 if (nla_len(attr) != ETH_ALEN)
3215 return -EINVAL;
3216
3217 n_entries++;
3218 }
3219
3220 return n_entries;
3221}
3222
3223/*
3224 * This function parses ACL information and allocates memory for ACL data.
3225 * On successful return, the calling function is responsible to free the
3226 * ACL buffer returned by this function.
3227 */
3228static struct cfg80211_acl_data *parse_acl_data(struct wiphy *wiphy,
3229 struct genl_info *info)
3230{
3231 enum nl80211_acl_policy acl_policy;
3232 struct nlattr *attr;
3233 struct cfg80211_acl_data *acl;
3234 int i = 0, n_entries, tmp;
3235
3236 if (!wiphy->max_acl_mac_addrs)
3237 return ERR_PTR(-EOPNOTSUPP);
3238
3239 if (!info->attrs[NL80211_ATTR_ACL_POLICY])
3240 return ERR_PTR(-EINVAL);
3241
3242 acl_policy = nla_get_u32(info->attrs[NL80211_ATTR_ACL_POLICY]);
3243 if (acl_policy != NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED &&
3244 acl_policy != NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
3245 return ERR_PTR(-EINVAL);
3246
3247 if (!info->attrs[NL80211_ATTR_MAC_ADDRS])
3248 return ERR_PTR(-EINVAL);
3249
3250 n_entries = validate_acl_mac_addrs(info->attrs[NL80211_ATTR_MAC_ADDRS]);
3251 if (n_entries < 0)
3252 return ERR_PTR(n_entries);
3253
3254 if (n_entries > wiphy->max_acl_mac_addrs)
3255 return ERR_PTR(-ENOTSUPP);
3256
3257 acl = kzalloc(sizeof(*acl) + (sizeof(struct mac_address) * n_entries),
3258 GFP_KERNEL);
3259 if (!acl)
3260 return ERR_PTR(-ENOMEM);
3261
3262 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_MAC_ADDRS], tmp) {
3263 memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN);
3264 i++;
3265 }
3266
3267 acl->n_acl_entries = n_entries;
3268 acl->acl_policy = acl_policy;
3269
3270 return acl;
3271}
3272
3273static int nl80211_set_mac_acl(struct sk_buff *skb, struct genl_info *info)
3274{
3275 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3276 struct net_device *dev = info->user_ptr[1];
3277 struct cfg80211_acl_data *acl;
3278 int err;
3279
3280 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3281 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3282 return -EOPNOTSUPP;
3283
3284 if (!dev->ieee80211_ptr->beacon_interval)
3285 return -EINVAL;
3286
3287 acl = parse_acl_data(&rdev->wiphy, info);
3288 if (IS_ERR(acl))
3289 return PTR_ERR(acl);
3290
3291 err = rdev_set_mac_acl(rdev, dev, acl);
3292
3293 kfree(acl);
3294
3295 return err;
3296}
3297
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003298static int nl80211_parse_beacon(struct nlattr *attrs[],
Johannes Berg88600202012-02-13 15:17:18 +01003299 struct cfg80211_beacon_data *bcn)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003300{
Johannes Berg88600202012-02-13 15:17:18 +01003301 bool haveinfo = false;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003302
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003303 if (!is_valid_ie_attr(attrs[NL80211_ATTR_BEACON_TAIL]) ||
3304 !is_valid_ie_attr(attrs[NL80211_ATTR_IE]) ||
3305 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_PROBE_RESP]) ||
3306 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_ASSOC_RESP]))
Johannes Bergf4a11bb2009-03-27 12:40:28 +01003307 return -EINVAL;
3308
Johannes Berg88600202012-02-13 15:17:18 +01003309 memset(bcn, 0, sizeof(*bcn));
Johannes Berged1b6cc2007-12-19 02:03:32 +01003310
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003311 if (attrs[NL80211_ATTR_BEACON_HEAD]) {
3312 bcn->head = nla_data(attrs[NL80211_ATTR_BEACON_HEAD]);
3313 bcn->head_len = nla_len(attrs[NL80211_ATTR_BEACON_HEAD]);
Johannes Berg88600202012-02-13 15:17:18 +01003314 if (!bcn->head_len)
3315 return -EINVAL;
3316 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003317 }
3318
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003319 if (attrs[NL80211_ATTR_BEACON_TAIL]) {
3320 bcn->tail = nla_data(attrs[NL80211_ATTR_BEACON_TAIL]);
3321 bcn->tail_len = nla_len(attrs[NL80211_ATTR_BEACON_TAIL]);
Johannes Berg88600202012-02-13 15:17:18 +01003322 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003323 }
3324
Johannes Berg4c476992010-10-04 21:36:35 +02003325 if (!haveinfo)
3326 return -EINVAL;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003327
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003328 if (attrs[NL80211_ATTR_IE]) {
3329 bcn->beacon_ies = nla_data(attrs[NL80211_ATTR_IE]);
3330 bcn->beacon_ies_len = nla_len(attrs[NL80211_ATTR_IE]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003331 }
3332
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003333 if (attrs[NL80211_ATTR_IE_PROBE_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003334 bcn->proberesp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003335 nla_data(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003336 bcn->proberesp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003337 nla_len(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003338 }
3339
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003340 if (attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003341 bcn->assocresp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003342 nla_data(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003343 bcn->assocresp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003344 nla_len(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003345 }
3346
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003347 if (attrs[NL80211_ATTR_PROBE_RESP]) {
3348 bcn->probe_resp = nla_data(attrs[NL80211_ATTR_PROBE_RESP]);
3349 bcn->probe_resp_len = nla_len(attrs[NL80211_ATTR_PROBE_RESP]);
Arik Nemtsov00f740e2011-11-10 11:28:56 +02003350 }
3351
Johannes Berg88600202012-02-13 15:17:18 +01003352 return 0;
3353}
3354
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003355static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev,
3356 struct cfg80211_ap_settings *params)
3357{
3358 struct wireless_dev *wdev;
3359 bool ret = false;
3360
Johannes Berg53873f12016-05-03 16:52:04 +03003361 list_for_each_entry(wdev, &rdev->wiphy.wdev_list, list) {
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003362 if (wdev->iftype != NL80211_IFTYPE_AP &&
3363 wdev->iftype != NL80211_IFTYPE_P2P_GO)
3364 continue;
3365
Johannes Berg683b6d32012-11-08 21:25:48 +01003366 if (!wdev->preset_chandef.chan)
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003367 continue;
3368
Johannes Berg683b6d32012-11-08 21:25:48 +01003369 params->chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003370 ret = true;
3371 break;
3372 }
3373
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003374 return ret;
3375}
3376
Jouni Malinene39e5b52012-09-30 19:29:39 +03003377static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
3378 enum nl80211_auth_type auth_type,
3379 enum nl80211_commands cmd)
3380{
3381 if (auth_type > NL80211_AUTHTYPE_MAX)
3382 return false;
3383
3384 switch (cmd) {
3385 case NL80211_CMD_AUTHENTICATE:
3386 if (!(rdev->wiphy.features & NL80211_FEATURE_SAE) &&
3387 auth_type == NL80211_AUTHTYPE_SAE)
3388 return false;
3389 return true;
3390 case NL80211_CMD_CONNECT:
3391 case NL80211_CMD_START_AP:
3392 /* SAE not supported yet */
3393 if (auth_type == NL80211_AUTHTYPE_SAE)
3394 return false;
3395 return true;
3396 default:
3397 return false;
3398 }
3399}
3400
Johannes Berg88600202012-02-13 15:17:18 +01003401static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
3402{
3403 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3404 struct net_device *dev = info->user_ptr[1];
3405 struct wireless_dev *wdev = dev->ieee80211_ptr;
3406 struct cfg80211_ap_settings params;
3407 int err;
3408
3409 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3410 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3411 return -EOPNOTSUPP;
3412
3413 if (!rdev->ops->start_ap)
3414 return -EOPNOTSUPP;
3415
3416 if (wdev->beacon_interval)
3417 return -EALREADY;
3418
3419 memset(&params, 0, sizeof(params));
3420
3421 /* these are required for START_AP */
3422 if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
3423 !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
3424 !info->attrs[NL80211_ATTR_BEACON_HEAD])
3425 return -EINVAL;
3426
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003427 err = nl80211_parse_beacon(info->attrs, &params.beacon);
Johannes Berg88600202012-02-13 15:17:18 +01003428 if (err)
3429 return err;
3430
3431 params.beacon_interval =
3432 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
3433 params.dtim_period =
3434 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
3435
3436 err = cfg80211_validate_beacon_int(rdev, params.beacon_interval);
3437 if (err)
3438 return err;
3439
3440 /*
3441 * In theory, some of these attributes should be required here
3442 * but since they were not used when the command was originally
3443 * added, keep them optional for old user space programs to let
3444 * them continue to work with drivers that do not need the
3445 * additional information -- drivers must check!
3446 */
3447 if (info->attrs[NL80211_ATTR_SSID]) {
3448 params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
3449 params.ssid_len =
3450 nla_len(info->attrs[NL80211_ATTR_SSID]);
3451 if (params.ssid_len == 0 ||
3452 params.ssid_len > IEEE80211_MAX_SSID_LEN)
3453 return -EINVAL;
3454 }
3455
3456 if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) {
3457 params.hidden_ssid = nla_get_u32(
3458 info->attrs[NL80211_ATTR_HIDDEN_SSID]);
3459 if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE &&
3460 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN &&
3461 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS)
3462 return -EINVAL;
3463 }
3464
3465 params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
3466
3467 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
3468 params.auth_type = nla_get_u32(
3469 info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03003470 if (!nl80211_valid_auth_type(rdev, params.auth_type,
3471 NL80211_CMD_START_AP))
Johannes Berg88600202012-02-13 15:17:18 +01003472 return -EINVAL;
3473 } else
3474 params.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
3475
3476 err = nl80211_crypto_settings(rdev, info, &params.crypto,
3477 NL80211_MAX_NR_CIPHER_SUITES);
3478 if (err)
3479 return err;
3480
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +05303481 if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) {
3482 if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER))
3483 return -EOPNOTSUPP;
3484 params.inactivity_timeout = nla_get_u16(
3485 info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]);
3486 }
3487
Johannes Berg53cabad2012-11-14 15:17:28 +01003488 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
3489 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3490 return -EINVAL;
3491 params.p2p_ctwindow =
3492 nla_get_u8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
3493 if (params.p2p_ctwindow > 127)
3494 return -EINVAL;
3495 if (params.p2p_ctwindow != 0 &&
3496 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
3497 return -EINVAL;
3498 }
3499
3500 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
3501 u8 tmp;
3502
3503 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3504 return -EINVAL;
3505 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
3506 if (tmp > 1)
3507 return -EINVAL;
3508 params.p2p_opp_ps = tmp;
3509 if (params.p2p_opp_ps != 0 &&
3510 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
3511 return -EINVAL;
3512 }
3513
Johannes Bergaa430da2012-05-16 23:50:18 +02003514 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003515 err = nl80211_parse_chandef(rdev, info, &params.chandef);
3516 if (err)
3517 return err;
3518 } else if (wdev->preset_chandef.chan) {
3519 params.chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003520 } else if (!nl80211_get_ap_channel(rdev, &params))
Johannes Bergaa430da2012-05-16 23:50:18 +02003521 return -EINVAL;
3522
Arik Nemtsov923b3522015-07-08 15:41:44 +03003523 if (!cfg80211_reg_can_beacon_relax(&rdev->wiphy, &params.chandef,
3524 wdev->iftype))
Johannes Bergaa430da2012-05-16 23:50:18 +02003525 return -EINVAL;
3526
Eliad Peller18998c32014-09-10 14:07:34 +03003527 if (info->attrs[NL80211_ATTR_SMPS_MODE]) {
3528 params.smps_mode =
3529 nla_get_u8(info->attrs[NL80211_ATTR_SMPS_MODE]);
3530 switch (params.smps_mode) {
3531 case NL80211_SMPS_OFF:
3532 break;
3533 case NL80211_SMPS_STATIC:
3534 if (!(rdev->wiphy.features &
3535 NL80211_FEATURE_STATIC_SMPS))
3536 return -EINVAL;
3537 break;
3538 case NL80211_SMPS_DYNAMIC:
3539 if (!(rdev->wiphy.features &
3540 NL80211_FEATURE_DYNAMIC_SMPS))
3541 return -EINVAL;
3542 break;
3543 default:
3544 return -EINVAL;
3545 }
3546 } else {
3547 params.smps_mode = NL80211_SMPS_OFF;
3548 }
3549
Purushottam Kushwaha6e8ef842016-07-05 13:44:51 +05303550 params.pbss = nla_get_flag(info->attrs[NL80211_ATTR_PBSS]);
3551 if (params.pbss && !rdev->wiphy.bands[NL80211_BAND_60GHZ])
3552 return -EOPNOTSUPP;
3553
Ola Olsson4baf6be2015-10-29 07:04:58 +01003554 if (info->attrs[NL80211_ATTR_ACL_POLICY]) {
3555 params.acl = parse_acl_data(&rdev->wiphy, info);
3556 if (IS_ERR(params.acl))
3557 return PTR_ERR(params.acl);
3558 }
3559
Simon Wunderlichc56589e2013-11-21 18:19:49 +01003560 wdev_lock(wdev);
Hila Gonene35e4d22012-06-27 17:19:42 +03003561 err = rdev_start_ap(rdev, dev, &params);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003562 if (!err) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003563 wdev->preset_chandef = params.chandef;
Johannes Berg88600202012-02-13 15:17:18 +01003564 wdev->beacon_interval = params.beacon_interval;
Michal Kazior9e0e2962014-01-29 14:22:27 +01003565 wdev->chandef = params.chandef;
Antonio Quartulli06e191e2012-11-07 12:52:19 +01003566 wdev->ssid_len = params.ssid_len;
3567 memcpy(wdev->ssid, params.ssid, wdev->ssid_len);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003568 }
Simon Wunderlichc56589e2013-11-21 18:19:49 +01003569 wdev_unlock(wdev);
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303570
3571 kfree(params.acl);
3572
Johannes Berg56d18932011-05-09 18:41:15 +02003573 return err;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003574}
3575
Johannes Berg88600202012-02-13 15:17:18 +01003576static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
3577{
3578 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3579 struct net_device *dev = info->user_ptr[1];
3580 struct wireless_dev *wdev = dev->ieee80211_ptr;
3581 struct cfg80211_beacon_data params;
3582 int err;
3583
3584 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3585 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3586 return -EOPNOTSUPP;
3587
3588 if (!rdev->ops->change_beacon)
3589 return -EOPNOTSUPP;
3590
3591 if (!wdev->beacon_interval)
3592 return -EINVAL;
3593
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003594 err = nl80211_parse_beacon(info->attrs, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003595 if (err)
3596 return err;
3597
Simon Wunderlichc56589e2013-11-21 18:19:49 +01003598 wdev_lock(wdev);
3599 err = rdev_change_beacon(rdev, dev, &params);
3600 wdev_unlock(wdev);
3601
3602 return err;
Johannes Berg88600202012-02-13 15:17:18 +01003603}
3604
3605static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003606{
Johannes Berg4c476992010-10-04 21:36:35 +02003607 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3608 struct net_device *dev = info->user_ptr[1];
Johannes Berged1b6cc2007-12-19 02:03:32 +01003609
Ilan Peer7c8d5e02014-02-25 15:33:38 +02003610 return cfg80211_stop_ap(rdev, dev, false);
Johannes Berged1b6cc2007-12-19 02:03:32 +01003611}
3612
Johannes Berg5727ef12007-12-19 02:03:34 +01003613static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
3614 [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
3615 [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
3616 [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
Jouni Malinen0e467242009-05-11 21:57:55 +03003617 [NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
Javier Cardonab39c48f2011-04-07 15:08:30 -07003618 [NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
Johannes Bergd83023d2011-12-14 09:29:15 +01003619 [NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
Johannes Berg5727ef12007-12-19 02:03:34 +01003620};
3621
Johannes Bergeccb8e82009-05-11 21:57:56 +03003622static int parse_station_flags(struct genl_info *info,
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003623 enum nl80211_iftype iftype,
Johannes Bergeccb8e82009-05-11 21:57:56 +03003624 struct station_parameters *params)
Johannes Berg5727ef12007-12-19 02:03:34 +01003625{
3626 struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
Johannes Bergeccb8e82009-05-11 21:57:56 +03003627 struct nlattr *nla;
Johannes Berg5727ef12007-12-19 02:03:34 +01003628 int flag;
3629
Johannes Bergeccb8e82009-05-11 21:57:56 +03003630 /*
3631 * Try parsing the new attribute first so userspace
3632 * can specify both for older kernels.
3633 */
3634 nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
3635 if (nla) {
3636 struct nl80211_sta_flag_update *sta_flags;
Johannes Berg5727ef12007-12-19 02:03:34 +01003637
Johannes Bergeccb8e82009-05-11 21:57:56 +03003638 sta_flags = nla_data(nla);
3639 params->sta_flags_mask = sta_flags->mask;
3640 params->sta_flags_set = sta_flags->set;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003641 params->sta_flags_set &= params->sta_flags_mask;
Johannes Bergeccb8e82009-05-11 21:57:56 +03003642 if ((params->sta_flags_mask |
3643 params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
3644 return -EINVAL;
3645 return 0;
3646 }
3647
3648 /* if present, parse the old attribute */
3649
3650 nla = info->attrs[NL80211_ATTR_STA_FLAGS];
Johannes Berg5727ef12007-12-19 02:03:34 +01003651 if (!nla)
3652 return 0;
3653
3654 if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
3655 nla, sta_flags_policy))
3656 return -EINVAL;
3657
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003658 /*
3659 * Only allow certain flags for interface types so that
3660 * other attributes are silently ignored. Remember that
3661 * this is backward compatibility code with old userspace
3662 * and shouldn't be hit in other cases anyway.
3663 */
3664 switch (iftype) {
3665 case NL80211_IFTYPE_AP:
3666 case NL80211_IFTYPE_AP_VLAN:
3667 case NL80211_IFTYPE_P2P_GO:
3668 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3669 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3670 BIT(NL80211_STA_FLAG_WME) |
3671 BIT(NL80211_STA_FLAG_MFP);
3672 break;
3673 case NL80211_IFTYPE_P2P_CLIENT:
3674 case NL80211_IFTYPE_STATION:
3675 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3676 BIT(NL80211_STA_FLAG_TDLS_PEER);
3677 break;
3678 case NL80211_IFTYPE_MESH_POINT:
3679 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3680 BIT(NL80211_STA_FLAG_MFP) |
3681 BIT(NL80211_STA_FLAG_AUTHORIZED);
3682 default:
3683 return -EINVAL;
3684 }
Johannes Berg5727ef12007-12-19 02:03:34 +01003685
Johannes Berg3383b5a2012-05-10 20:14:43 +02003686 for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
3687 if (flags[flag]) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03003688 params->sta_flags_set |= (1<<flag);
Johannes Berg5727ef12007-12-19 02:03:34 +01003689
Johannes Berg3383b5a2012-05-10 20:14:43 +02003690 /* no longer support new API additions in old API */
3691 if (flag > NL80211_STA_FLAG_MAX_OLD_API)
3692 return -EINVAL;
3693 }
3694 }
3695
Johannes Berg5727ef12007-12-19 02:03:34 +01003696 return 0;
3697}
3698
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003699static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
3700 int attr)
3701{
3702 struct nlattr *rate;
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003703 u32 bitrate;
3704 u16 bitrate_compat;
Johannes Bergb51f3be2015-01-15 16:14:02 +01003705 enum nl80211_attrs rate_flg;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003706
3707 rate = nla_nest_start(msg, attr);
3708 if (!rate)
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003709 return false;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003710
3711 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
3712 bitrate = cfg80211_calculate_bitrate(info);
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003713 /* report 16-bit bitrate only if we can */
3714 bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003715 if (bitrate > 0 &&
3716 nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate))
3717 return false;
3718 if (bitrate_compat > 0 &&
3719 nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat))
3720 return false;
3721
Johannes Bergb51f3be2015-01-15 16:14:02 +01003722 switch (info->bw) {
3723 case RATE_INFO_BW_5:
3724 rate_flg = NL80211_RATE_INFO_5_MHZ_WIDTH;
3725 break;
3726 case RATE_INFO_BW_10:
3727 rate_flg = NL80211_RATE_INFO_10_MHZ_WIDTH;
3728 break;
3729 default:
3730 WARN_ON(1);
3731 /* fall through */
3732 case RATE_INFO_BW_20:
3733 rate_flg = 0;
3734 break;
3735 case RATE_INFO_BW_40:
3736 rate_flg = NL80211_RATE_INFO_40_MHZ_WIDTH;
3737 break;
3738 case RATE_INFO_BW_80:
3739 rate_flg = NL80211_RATE_INFO_80_MHZ_WIDTH;
3740 break;
3741 case RATE_INFO_BW_160:
3742 rate_flg = NL80211_RATE_INFO_160_MHZ_WIDTH;
3743 break;
3744 }
3745
3746 if (rate_flg && nla_put_flag(msg, rate_flg))
3747 return false;
3748
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003749 if (info->flags & RATE_INFO_FLAGS_MCS) {
3750 if (nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs))
3751 return false;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003752 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3753 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3754 return false;
3755 } else if (info->flags & RATE_INFO_FLAGS_VHT_MCS) {
3756 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_MCS, info->mcs))
3757 return false;
3758 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_NSS, info->nss))
3759 return false;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003760 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3761 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3762 return false;
3763 }
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003764
3765 nla_nest_end(msg, rate);
3766 return true;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003767}
3768
Felix Fietkau119363c2013-04-22 16:29:30 +02003769static bool nl80211_put_signal(struct sk_buff *msg, u8 mask, s8 *signal,
3770 int id)
3771{
3772 void *attr;
3773 int i = 0;
3774
3775 if (!mask)
3776 return true;
3777
3778 attr = nla_nest_start(msg, id);
3779 if (!attr)
3780 return false;
3781
3782 for (i = 0; i < IEEE80211_MAX_CHAINS; i++) {
3783 if (!(mask & BIT(i)))
3784 continue;
3785
3786 if (nla_put_u8(msg, i, signal[i]))
3787 return false;
3788 }
3789
3790 nla_nest_end(msg, attr);
3791
3792 return true;
3793}
3794
Johannes Bergcf5ead82014-11-14 17:14:00 +01003795static int nl80211_send_station(struct sk_buff *msg, u32 cmd, u32 portid,
3796 u32 seq, int flags,
John W. Linville66266b32012-03-15 13:25:41 -04003797 struct cfg80211_registered_device *rdev,
3798 struct net_device *dev,
Johannes Berg98b62182009-12-23 13:15:44 +01003799 const u8 *mac_addr, struct station_info *sinfo)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003800{
3801 void *hdr;
Paul Stewartf4263c92011-03-31 09:25:41 -07003802 struct nlattr *sinfoattr, *bss_param;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003803
Johannes Bergcf5ead82014-11-14 17:14:00 +01003804 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003805 if (!hdr)
3806 return -1;
3807
David S. Miller9360ffd2012-03-29 04:41:26 -04003808 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
3809 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
3810 nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation))
3811 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02003812
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003813 sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
3814 if (!sinfoattr)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003815 goto nla_put_failure;
Johannes Berg319090b2014-11-17 14:08:11 +01003816
3817#define PUT_SINFO(attr, memb, type) do { \
Johannes Bergd686b922016-04-26 09:54:11 +02003818 BUILD_BUG_ON(sizeof(type) == sizeof(u64)); \
Mohammed Shafi Shajakhan739960f2016-04-07 19:59:34 +05303819 if (sinfo->filled & (1ULL << NL80211_STA_INFO_ ## attr) && \
Johannes Berg319090b2014-11-17 14:08:11 +01003820 nla_put_ ## type(msg, NL80211_STA_INFO_ ## attr, \
3821 sinfo->memb)) \
3822 goto nla_put_failure; \
3823 } while (0)
Johannes Bergd686b922016-04-26 09:54:11 +02003824#define PUT_SINFO_U64(attr, memb) do { \
3825 if (sinfo->filled & (1ULL << NL80211_STA_INFO_ ## attr) && \
3826 nla_put_u64_64bit(msg, NL80211_STA_INFO_ ## attr, \
3827 sinfo->memb, NL80211_STA_INFO_PAD)) \
3828 goto nla_put_failure; \
3829 } while (0)
Johannes Berg319090b2014-11-17 14:08:11 +01003830
3831 PUT_SINFO(CONNECTED_TIME, connected_time, u32);
3832 PUT_SINFO(INACTIVE_TIME, inactive_time, u32);
3833
3834 if (sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES) |
3835 BIT(NL80211_STA_INFO_RX_BYTES64)) &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003836 nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003837 (u32)sinfo->rx_bytes))
3838 goto nla_put_failure;
Johannes Berg319090b2014-11-17 14:08:11 +01003839
3840 if (sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES) |
3841 BIT(NL80211_STA_INFO_TX_BYTES64)) &&
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003842 nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
3843 (u32)sinfo->tx_bytes))
3844 goto nla_put_failure;
Johannes Berg319090b2014-11-17 14:08:11 +01003845
Johannes Bergd686b922016-04-26 09:54:11 +02003846 PUT_SINFO_U64(RX_BYTES64, rx_bytes);
3847 PUT_SINFO_U64(TX_BYTES64, tx_bytes);
Johannes Berg319090b2014-11-17 14:08:11 +01003848 PUT_SINFO(LLID, llid, u16);
3849 PUT_SINFO(PLID, plid, u16);
3850 PUT_SINFO(PLINK_STATE, plink_state, u8);
Johannes Bergd686b922016-04-26 09:54:11 +02003851 PUT_SINFO_U64(RX_DURATION, rx_duration);
Johannes Berg319090b2014-11-17 14:08:11 +01003852
John W. Linville66266b32012-03-15 13:25:41 -04003853 switch (rdev->wiphy.signal_type) {
3854 case CFG80211_SIGNAL_TYPE_MBM:
Johannes Berg319090b2014-11-17 14:08:11 +01003855 PUT_SINFO(SIGNAL, signal, u8);
3856 PUT_SINFO(SIGNAL_AVG, signal_avg, u8);
John W. Linville66266b32012-03-15 13:25:41 -04003857 break;
3858 default:
3859 break;
3860 }
Johannes Berg319090b2014-11-17 14:08:11 +01003861 if (sinfo->filled & BIT(NL80211_STA_INFO_CHAIN_SIGNAL)) {
Felix Fietkau119363c2013-04-22 16:29:30 +02003862 if (!nl80211_put_signal(msg, sinfo->chains,
3863 sinfo->chain_signal,
3864 NL80211_STA_INFO_CHAIN_SIGNAL))
3865 goto nla_put_failure;
3866 }
Johannes Berg319090b2014-11-17 14:08:11 +01003867 if (sinfo->filled & BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)) {
Felix Fietkau119363c2013-04-22 16:29:30 +02003868 if (!nl80211_put_signal(msg, sinfo->chains,
3869 sinfo->chain_signal_avg,
3870 NL80211_STA_INFO_CHAIN_SIGNAL_AVG))
3871 goto nla_put_failure;
3872 }
Johannes Berg319090b2014-11-17 14:08:11 +01003873 if (sinfo->filled & BIT(NL80211_STA_INFO_TX_BITRATE)) {
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003874 if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
3875 NL80211_STA_INFO_TX_BITRATE))
Henning Rogge420e7fa2008-12-11 22:04:19 +01003876 goto nla_put_failure;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003877 }
Johannes Berg319090b2014-11-17 14:08:11 +01003878 if (sinfo->filled & BIT(NL80211_STA_INFO_RX_BITRATE)) {
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003879 if (!nl80211_put_sta_rate(msg, &sinfo->rxrate,
3880 NL80211_STA_INFO_RX_BITRATE))
3881 goto nla_put_failure;
Henning Rogge420e7fa2008-12-11 22:04:19 +01003882 }
Johannes Berg319090b2014-11-17 14:08:11 +01003883
3884 PUT_SINFO(RX_PACKETS, rx_packets, u32);
3885 PUT_SINFO(TX_PACKETS, tx_packets, u32);
3886 PUT_SINFO(TX_RETRIES, tx_retries, u32);
3887 PUT_SINFO(TX_FAILED, tx_failed, u32);
3888 PUT_SINFO(EXPECTED_THROUGHPUT, expected_throughput, u32);
3889 PUT_SINFO(BEACON_LOSS, beacon_loss_count, u32);
3890 PUT_SINFO(LOCAL_PM, local_pm, u32);
3891 PUT_SINFO(PEER_PM, peer_pm, u32);
3892 PUT_SINFO(NONPEER_PM, nonpeer_pm, u32);
3893
3894 if (sinfo->filled & BIT(NL80211_STA_INFO_BSS_PARAM)) {
Paul Stewartf4263c92011-03-31 09:25:41 -07003895 bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM);
3896 if (!bss_param)
3897 goto nla_put_failure;
3898
David S. Miller9360ffd2012-03-29 04:41:26 -04003899 if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) &&
3900 nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) ||
3901 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) &&
3902 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) ||
3903 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) &&
3904 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) ||
3905 nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD,
3906 sinfo->bss_param.dtim_period) ||
3907 nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL,
3908 sinfo->bss_param.beacon_interval))
3909 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003910
3911 nla_nest_end(msg, bss_param);
3912 }
Johannes Berg319090b2014-11-17 14:08:11 +01003913 if ((sinfo->filled & BIT(NL80211_STA_INFO_STA_FLAGS)) &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003914 nla_put(msg, NL80211_STA_INFO_STA_FLAGS,
3915 sizeof(struct nl80211_sta_flag_update),
3916 &sinfo->sta_flags))
3917 goto nla_put_failure;
Johannes Berg319090b2014-11-17 14:08:11 +01003918
Johannes Bergd686b922016-04-26 09:54:11 +02003919 PUT_SINFO_U64(T_OFFSET, t_offset);
3920 PUT_SINFO_U64(RX_DROP_MISC, rx_dropped_misc);
3921 PUT_SINFO_U64(BEACON_RX, rx_beacon);
Johannes Berga76b1942014-11-17 14:12:22 +01003922 PUT_SINFO(BEACON_SIGNAL_AVG, rx_beacon_signal_avg, u8);
Johannes Berg319090b2014-11-17 14:08:11 +01003923
3924#undef PUT_SINFO
Johannes Bergd686b922016-04-26 09:54:11 +02003925#undef PUT_SINFO_U64
Johannes Berg6de39802014-12-19 12:34:00 +01003926
3927 if (sinfo->filled & BIT(NL80211_STA_INFO_TID_STATS)) {
3928 struct nlattr *tidsattr;
3929 int tid;
3930
3931 tidsattr = nla_nest_start(msg, NL80211_STA_INFO_TID_STATS);
3932 if (!tidsattr)
3933 goto nla_put_failure;
3934
3935 for (tid = 0; tid < IEEE80211_NUM_TIDS + 1; tid++) {
3936 struct cfg80211_tid_stats *tidstats;
3937 struct nlattr *tidattr;
3938
3939 tidstats = &sinfo->pertid[tid];
3940
3941 if (!tidstats->filled)
3942 continue;
3943
3944 tidattr = nla_nest_start(msg, tid + 1);
3945 if (!tidattr)
3946 goto nla_put_failure;
3947
Johannes Bergd686b922016-04-26 09:54:11 +02003948#define PUT_TIDVAL_U64(attr, memb) do { \
Johannes Berg6de39802014-12-19 12:34:00 +01003949 if (tidstats->filled & BIT(NL80211_TID_STATS_ ## attr) && \
Johannes Bergd686b922016-04-26 09:54:11 +02003950 nla_put_u64_64bit(msg, NL80211_TID_STATS_ ## attr, \
3951 tidstats->memb, NL80211_TID_STATS_PAD)) \
Johannes Berg6de39802014-12-19 12:34:00 +01003952 goto nla_put_failure; \
3953 } while (0)
3954
Johannes Bergd686b922016-04-26 09:54:11 +02003955 PUT_TIDVAL_U64(RX_MSDU, rx_msdu);
3956 PUT_TIDVAL_U64(TX_MSDU, tx_msdu);
3957 PUT_TIDVAL_U64(TX_MSDU_RETRIES, tx_msdu_retries);
3958 PUT_TIDVAL_U64(TX_MSDU_FAILED, tx_msdu_failed);
Johannes Berg6de39802014-12-19 12:34:00 +01003959
Johannes Bergd686b922016-04-26 09:54:11 +02003960#undef PUT_TIDVAL_U64
Johannes Berg6de39802014-12-19 12:34:00 +01003961 nla_nest_end(msg, tidattr);
3962 }
3963
3964 nla_nest_end(msg, tidsattr);
3965 }
3966
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003967 nla_nest_end(msg, sinfoattr);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003968
Johannes Berg319090b2014-11-17 14:08:11 +01003969 if (sinfo->assoc_req_ies_len &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003970 nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len,
3971 sinfo->assoc_req_ies))
3972 goto nla_put_failure;
Jouni Malinen50d3dfb2011-08-08 12:11:52 +03003973
Johannes Berg053c0952015-01-16 22:09:00 +01003974 genlmsg_end(msg, hdr);
3975 return 0;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003976
3977 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07003978 genlmsg_cancel(msg, hdr);
3979 return -EMSGSIZE;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003980}
3981
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003982static int nl80211_dump_station(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003983 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003984{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003985 struct station_info sinfo;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003986 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02003987 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003988 u8 mac_addr[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02003989 int sta_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003990 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003991
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003992 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02003993 if (err)
3994 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003995
Johannes Berg97990a02013-04-19 01:02:55 +02003996 if (!wdev->netdev) {
3997 err = -EINVAL;
3998 goto out_err;
3999 }
4000
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004001 if (!rdev->ops->dump_station) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004002 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004003 goto out_err;
4004 }
4005
Johannes Bergbba95fe2008-07-29 13:22:51 +02004006 while (1) {
Jouni Malinenf612ced2011-08-11 11:46:22 +03004007 memset(&sinfo, 0, sizeof(sinfo));
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004008 err = rdev_dump_station(rdev, wdev->netdev, sta_idx,
Hila Gonene35e4d22012-06-27 17:19:42 +03004009 mac_addr, &sinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004010 if (err == -ENOENT)
4011 break;
4012 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01004013 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004014
Johannes Bergcf5ead82014-11-14 17:14:00 +01004015 if (nl80211_send_station(skb, NL80211_CMD_NEW_STATION,
Eric W. Biederman15e47302012-09-07 20:12:54 +00004016 NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004017 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004018 rdev, wdev->netdev, mac_addr,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004019 &sinfo) < 0)
4020 goto out;
4021
4022 sta_idx++;
4023 }
4024
Johannes Bergbba95fe2008-07-29 13:22:51 +02004025 out:
Johannes Berg97990a02013-04-19 01:02:55 +02004026 cb->args[2] = sta_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004027 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004028 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004029 nl80211_finish_wdev_dump(rdev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004030
4031 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004032}
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004033
Johannes Berg5727ef12007-12-19 02:03:34 +01004034static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
4035{
Johannes Berg4c476992010-10-04 21:36:35 +02004036 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4037 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004038 struct station_info sinfo;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004039 struct sk_buff *msg;
4040 u8 *mac_addr = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02004041 int err;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004042
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004043 memset(&sinfo, 0, sizeof(sinfo));
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004044
4045 if (!info->attrs[NL80211_ATTR_MAC])
4046 return -EINVAL;
4047
4048 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4049
Johannes Berg4c476992010-10-04 21:36:35 +02004050 if (!rdev->ops->get_station)
4051 return -EOPNOTSUPP;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004052
Hila Gonene35e4d22012-06-27 17:19:42 +03004053 err = rdev_get_station(rdev, dev, mac_addr, &sinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004054 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004055 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004056
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004057 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004058 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02004059 return -ENOMEM;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004060
Johannes Bergcf5ead82014-11-14 17:14:00 +01004061 if (nl80211_send_station(msg, NL80211_CMD_NEW_STATION,
4062 info->snd_portid, info->snd_seq, 0,
John W. Linville66266b32012-03-15 13:25:41 -04004063 rdev, dev, mac_addr, &sinfo) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02004064 nlmsg_free(msg);
4065 return -ENOBUFS;
4066 }
Johannes Bergfd5b74d2007-12-19 02:03:36 +01004067
Johannes Berg4c476992010-10-04 21:36:35 +02004068 return genlmsg_reply(msg, info);
Johannes Berg5727ef12007-12-19 02:03:34 +01004069}
4070
Johannes Berg77ee7c82013-02-15 00:48:33 +01004071int cfg80211_check_station_change(struct wiphy *wiphy,
4072 struct station_parameters *params,
4073 enum cfg80211_station_type statype)
4074{
Ayala Bekere4208422015-10-23 11:20:06 +03004075 if (params->listen_interval != -1 &&
4076 statype != CFG80211_STA_AP_CLIENT_UNASSOC)
Johannes Berg77ee7c82013-02-15 00:48:33 +01004077 return -EINVAL;
Ayala Bekere4208422015-10-23 11:20:06 +03004078
Ayala Beker17b94242016-03-17 15:41:38 +02004079 if (params->support_p2p_ps != -1 &&
4080 statype != CFG80211_STA_AP_CLIENT_UNASSOC)
4081 return -EINVAL;
4082
Arik Nemtsovc72e1142014-07-17 17:14:29 +03004083 if (params->aid &&
Ayala Bekere4208422015-10-23 11:20:06 +03004084 !(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) &&
4085 statype != CFG80211_STA_AP_CLIENT_UNASSOC)
Johannes Berg77ee7c82013-02-15 00:48:33 +01004086 return -EINVAL;
4087
4088 /* When you run into this, adjust the code below for the new flag */
4089 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
4090
4091 switch (statype) {
Thomas Pederseneef941e2013-03-04 13:06:11 -08004092 case CFG80211_STA_MESH_PEER_KERNEL:
4093 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004094 /*
4095 * No ignoring the TDLS flag here -- the userspace mesh
4096 * code doesn't have the bug of including TDLS in the
4097 * mask everywhere.
4098 */
4099 if (params->sta_flags_mask &
4100 ~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4101 BIT(NL80211_STA_FLAG_MFP) |
4102 BIT(NL80211_STA_FLAG_AUTHORIZED)))
4103 return -EINVAL;
4104 break;
4105 case CFG80211_STA_TDLS_PEER_SETUP:
4106 case CFG80211_STA_TDLS_PEER_ACTIVE:
4107 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4108 return -EINVAL;
4109 /* ignore since it can't change */
4110 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
4111 break;
4112 default:
4113 /* disallow mesh-specific things */
4114 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
4115 return -EINVAL;
4116 if (params->local_pm)
4117 return -EINVAL;
4118 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
4119 return -EINVAL;
4120 }
4121
4122 if (statype != CFG80211_STA_TDLS_PEER_SETUP &&
4123 statype != CFG80211_STA_TDLS_PEER_ACTIVE) {
4124 /* TDLS can't be set, ... */
4125 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
4126 return -EINVAL;
4127 /*
4128 * ... but don't bother the driver with it. This works around
4129 * a hostapd/wpa_supplicant issue -- it always includes the
4130 * TLDS_PEER flag in the mask even for AP mode.
4131 */
4132 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
4133 }
4134
Ayala Beker47edb112015-09-21 15:49:53 +03004135 if (statype != CFG80211_STA_TDLS_PEER_SETUP &&
4136 statype != CFG80211_STA_AP_CLIENT_UNASSOC) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01004137 /* reject other things that can't change */
4138 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD)
4139 return -EINVAL;
4140 if (params->sta_modify_mask & STATION_PARAM_APPLY_CAPABILITY)
4141 return -EINVAL;
4142 if (params->supported_rates)
4143 return -EINVAL;
4144 if (params->ext_capab || params->ht_capa || params->vht_capa)
4145 return -EINVAL;
4146 }
4147
Ayala Beker47edb112015-09-21 15:49:53 +03004148 if (statype != CFG80211_STA_AP_CLIENT &&
4149 statype != CFG80211_STA_AP_CLIENT_UNASSOC) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01004150 if (params->vlan)
4151 return -EINVAL;
4152 }
4153
4154 switch (statype) {
4155 case CFG80211_STA_AP_MLME_CLIENT:
4156 /* Use this only for authorizing/unauthorizing a station */
4157 if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)))
4158 return -EOPNOTSUPP;
4159 break;
4160 case CFG80211_STA_AP_CLIENT:
Ayala Beker47edb112015-09-21 15:49:53 +03004161 case CFG80211_STA_AP_CLIENT_UNASSOC:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004162 /* accept only the listed bits */
4163 if (params->sta_flags_mask &
4164 ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
4165 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4166 BIT(NL80211_STA_FLAG_ASSOCIATED) |
4167 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
4168 BIT(NL80211_STA_FLAG_WME) |
4169 BIT(NL80211_STA_FLAG_MFP)))
4170 return -EINVAL;
4171
4172 /* but authenticated/associated only if driver handles it */
4173 if (!(wiphy->features & NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
4174 params->sta_flags_mask &
4175 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4176 BIT(NL80211_STA_FLAG_ASSOCIATED)))
4177 return -EINVAL;
4178 break;
4179 case CFG80211_STA_IBSS:
4180 case CFG80211_STA_AP_STA:
4181 /* reject any changes other than AUTHORIZED */
4182 if (params->sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
4183 return -EINVAL;
4184 break;
4185 case CFG80211_STA_TDLS_PEER_SETUP:
4186 /* reject any changes other than AUTHORIZED or WME */
4187 if (params->sta_flags_mask & ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
4188 BIT(NL80211_STA_FLAG_WME)))
4189 return -EINVAL;
4190 /* force (at least) rates when authorizing */
4191 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED) &&
4192 !params->supported_rates)
4193 return -EINVAL;
4194 break;
4195 case CFG80211_STA_TDLS_PEER_ACTIVE:
4196 /* reject any changes */
4197 return -EINVAL;
Thomas Pederseneef941e2013-03-04 13:06:11 -08004198 case CFG80211_STA_MESH_PEER_KERNEL:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004199 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
4200 return -EINVAL;
4201 break;
Thomas Pederseneef941e2013-03-04 13:06:11 -08004202 case CFG80211_STA_MESH_PEER_USER:
Chun-Yeow Yeoh42925042015-04-18 01:30:02 +08004203 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION &&
4204 params->plink_action != NL80211_PLINK_ACTION_BLOCK)
Johannes Berg77ee7c82013-02-15 00:48:33 +01004205 return -EINVAL;
4206 break;
4207 }
4208
4209 return 0;
4210}
4211EXPORT_SYMBOL(cfg80211_check_station_change);
4212
Johannes Berg5727ef12007-12-19 02:03:34 +01004213/*
Felix Fietkauc258d2d2009-11-11 17:23:31 +01004214 * Get vlan interface making sure it is running and on the right wiphy.
Johannes Berg5727ef12007-12-19 02:03:34 +01004215 */
Johannes Berg80b99892011-11-18 16:23:01 +01004216static struct net_device *get_vlan(struct genl_info *info,
4217 struct cfg80211_registered_device *rdev)
Johannes Berg5727ef12007-12-19 02:03:34 +01004218{
Johannes Berg463d0182009-07-14 00:33:35 +02004219 struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
Johannes Berg80b99892011-11-18 16:23:01 +01004220 struct net_device *v;
4221 int ret;
Johannes Berg5727ef12007-12-19 02:03:34 +01004222
Johannes Berg80b99892011-11-18 16:23:01 +01004223 if (!vlanattr)
4224 return NULL;
4225
4226 v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr));
4227 if (!v)
4228 return ERR_PTR(-ENODEV);
4229
4230 if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) {
4231 ret = -EINVAL;
4232 goto error;
Johannes Berg5727ef12007-12-19 02:03:34 +01004233 }
Johannes Berg80b99892011-11-18 16:23:01 +01004234
Johannes Berg77ee7c82013-02-15 00:48:33 +01004235 if (v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
4236 v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
4237 v->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
4238 ret = -EINVAL;
4239 goto error;
4240 }
4241
Johannes Berg80b99892011-11-18 16:23:01 +01004242 if (!netif_running(v)) {
4243 ret = -ENETDOWN;
4244 goto error;
4245 }
4246
4247 return v;
4248 error:
4249 dev_put(v);
4250 return ERR_PTR(ret);
Johannes Berg5727ef12007-12-19 02:03:34 +01004251}
4252
Johannes Berg94e860f2014-01-20 23:58:15 +01004253static const struct nla_policy
4254nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] = {
Jouni Malinendf881292013-02-14 21:10:54 +02004255 [NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 },
4256 [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
4257};
4258
Johannes Bergff276692013-02-15 00:09:01 +01004259static int nl80211_parse_sta_wme(struct genl_info *info,
4260 struct station_parameters *params)
Jouni Malinendf881292013-02-14 21:10:54 +02004261{
Jouni Malinendf881292013-02-14 21:10:54 +02004262 struct nlattr *tb[NL80211_STA_WME_MAX + 1];
4263 struct nlattr *nla;
4264 int err;
4265
Jouni Malinendf881292013-02-14 21:10:54 +02004266 /* parse WME attributes if present */
4267 if (!info->attrs[NL80211_ATTR_STA_WME])
4268 return 0;
4269
4270 nla = info->attrs[NL80211_ATTR_STA_WME];
4271 err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla,
4272 nl80211_sta_wme_policy);
4273 if (err)
4274 return err;
4275
4276 if (tb[NL80211_STA_WME_UAPSD_QUEUES])
4277 params->uapsd_queues = nla_get_u8(
4278 tb[NL80211_STA_WME_UAPSD_QUEUES]);
4279 if (params->uapsd_queues & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
4280 return -EINVAL;
4281
4282 if (tb[NL80211_STA_WME_MAX_SP])
4283 params->max_sp = nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
4284
4285 if (params->max_sp & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
4286 return -EINVAL;
4287
4288 params->sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
4289
4290 return 0;
4291}
4292
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304293static int nl80211_parse_sta_channel_info(struct genl_info *info,
4294 struct station_parameters *params)
4295{
4296 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]) {
4297 params->supported_channels =
4298 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
4299 params->supported_channels_len =
4300 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
4301 /*
4302 * Need to include at least one (first channel, number of
4303 * channels) tuple for each subband, and must have proper
4304 * tuples for the rest of the data as well.
4305 */
4306 if (params->supported_channels_len < 2)
4307 return -EINVAL;
4308 if (params->supported_channels_len % 2)
4309 return -EINVAL;
4310 }
4311
4312 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]) {
4313 params->supported_oper_classes =
4314 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
4315 params->supported_oper_classes_len =
4316 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
4317 /*
4318 * The value of the Length field of the Supported Operating
4319 * Classes element is between 2 and 253.
4320 */
4321 if (params->supported_oper_classes_len < 2 ||
4322 params->supported_oper_classes_len > 253)
4323 return -EINVAL;
4324 }
4325 return 0;
4326}
4327
Johannes Bergff276692013-02-15 00:09:01 +01004328static int nl80211_set_station_tdls(struct genl_info *info,
4329 struct station_parameters *params)
4330{
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304331 int err;
Johannes Bergff276692013-02-15 00:09:01 +01004332 /* Dummy STA entry gets updated once the peer capabilities are known */
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004333 if (info->attrs[NL80211_ATTR_PEER_AID])
4334 params->aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Johannes Bergff276692013-02-15 00:09:01 +01004335 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4336 params->ht_capa =
4337 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
4338 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4339 params->vht_capa =
4340 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4341
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304342 err = nl80211_parse_sta_channel_info(info, params);
4343 if (err)
4344 return err;
4345
Johannes Bergff276692013-02-15 00:09:01 +01004346 return nl80211_parse_sta_wme(info, params);
4347}
4348
Johannes Berg5727ef12007-12-19 02:03:34 +01004349static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
4350{
Johannes Berg4c476992010-10-04 21:36:35 +02004351 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02004352 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004353 struct station_parameters params;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004354 u8 *mac_addr;
4355 int err;
Johannes Berg5727ef12007-12-19 02:03:34 +01004356
4357 memset(&params, 0, sizeof(params));
4358
Johannes Berg77ee7c82013-02-15 00:48:33 +01004359 if (!rdev->ops->change_station)
4360 return -EOPNOTSUPP;
4361
Ayala Bekere4208422015-10-23 11:20:06 +03004362 /*
4363 * AID and listen_interval properties can be set only for unassociated
4364 * station. Include these parameters here and will check them in
4365 * cfg80211_check_station_change().
4366 */
Ayala Bekera9bc31e2015-11-26 16:26:12 +01004367 if (info->attrs[NL80211_ATTR_STA_AID])
4368 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
Ayala Bekere4208422015-10-23 11:20:06 +03004369
4370 if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
4371 params.listen_interval =
4372 nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
4373 else
4374 params.listen_interval = -1;
Johannes Berg5727ef12007-12-19 02:03:34 +01004375
Ayala Beker17b94242016-03-17 15:41:38 +02004376 if (info->attrs[NL80211_ATTR_STA_SUPPORT_P2P_PS]) {
4377 u8 tmp;
4378
4379 tmp = nla_get_u8(info->attrs[NL80211_ATTR_STA_SUPPORT_P2P_PS]);
4380 if (tmp >= NUM_NL80211_P2P_PS_STATUS)
4381 return -EINVAL;
4382
4383 params.support_p2p_ps = tmp;
4384 } else {
4385 params.support_p2p_ps = -1;
4386 }
4387
Johannes Berg5727ef12007-12-19 02:03:34 +01004388 if (!info->attrs[NL80211_ATTR_MAC])
4389 return -EINVAL;
4390
4391 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4392
4393 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
4394 params.supported_rates =
4395 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4396 params.supported_rates_len =
4397 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4398 }
4399
Jouni Malinen9d62a982013-02-14 21:10:13 +02004400 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4401 params.capability =
4402 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4403 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4404 }
4405
4406 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4407 params.ext_capab =
4408 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4409 params.ext_capab_len =
4410 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4411 }
4412
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004413 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004414 return -EINVAL;
4415
Johannes Bergf8bacc22013-02-14 23:27:01 +01004416 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004417 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004418 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4419 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4420 return -EINVAL;
4421 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004422
Johannes Bergf8bacc22013-02-14 23:27:01 +01004423 if (info->attrs[NL80211_ATTR_STA_PLINK_STATE]) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07004424 params.plink_state =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004425 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);
4426 if (params.plink_state >= NUM_NL80211_PLINK_STATES)
4427 return -EINVAL;
Masashi Honma7d27a0b2016-07-01 10:19:34 +09004428 if (info->attrs[NL80211_ATTR_MESH_PEER_AID]) {
4429 params.peer_aid = nla_get_u16(
4430 info->attrs[NL80211_ATTR_MESH_PEER_AID]);
4431 if (params.peer_aid > IEEE80211_MAX_AID)
4432 return -EINVAL;
4433 }
Johannes Bergf8bacc22013-02-14 23:27:01 +01004434 params.sta_modify_mask |= STATION_PARAM_APPLY_PLINK_STATE;
4435 }
Javier Cardona9c3990a2011-05-03 16:57:11 -07004436
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004437 if (info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]) {
4438 enum nl80211_mesh_power_mode pm = nla_get_u32(
4439 info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]);
4440
4441 if (pm <= NL80211_MESH_POWER_UNKNOWN ||
4442 pm > NL80211_MESH_POWER_MAX)
4443 return -EINVAL;
4444
4445 params.local_pm = pm;
4446 }
4447
Johannes Berg77ee7c82013-02-15 00:48:33 +01004448 /* Include parameters for TDLS peer (will check later) */
4449 err = nl80211_set_station_tdls(info, &params);
4450 if (err)
4451 return err;
4452
4453 params.vlan = get_vlan(info, rdev);
4454 if (IS_ERR(params.vlan))
4455 return PTR_ERR(params.vlan);
4456
Johannes Berga97f4422009-06-18 17:23:43 +02004457 switch (dev->ieee80211_ptr->iftype) {
4458 case NL80211_IFTYPE_AP:
4459 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004460 case NL80211_IFTYPE_P2P_GO:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004461 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berga97f4422009-06-18 17:23:43 +02004462 case NL80211_IFTYPE_STATION:
Antonio Quartulli267335d2012-01-31 20:25:47 +01004463 case NL80211_IFTYPE_ADHOC:
Johannes Berga97f4422009-06-18 17:23:43 +02004464 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga97f4422009-06-18 17:23:43 +02004465 break;
4466 default:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004467 err = -EOPNOTSUPP;
4468 goto out_put_vlan;
Johannes Berg034d6552009-05-27 10:35:29 +02004469 }
4470
Johannes Berg77ee7c82013-02-15 00:48:33 +01004471 /* driver will call cfg80211_check_station_change() */
Hila Gonene35e4d22012-06-27 17:19:42 +03004472 err = rdev_change_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004473
Johannes Berg77ee7c82013-02-15 00:48:33 +01004474 out_put_vlan:
Johannes Berg5727ef12007-12-19 02:03:34 +01004475 if (params.vlan)
4476 dev_put(params.vlan);
Johannes Berg3b858752009-03-12 09:55:09 +01004477
Johannes Berg5727ef12007-12-19 02:03:34 +01004478 return err;
4479}
4480
4481static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
4482{
Johannes Berg4c476992010-10-04 21:36:35 +02004483 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg5727ef12007-12-19 02:03:34 +01004484 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004485 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004486 struct station_parameters params;
4487 u8 *mac_addr = NULL;
Johannes Bergbda95eb2015-11-26 16:26:13 +01004488 u32 auth_assoc = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4489 BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg5727ef12007-12-19 02:03:34 +01004490
4491 memset(&params, 0, sizeof(params));
4492
Johannes Berg984c3112013-02-14 23:43:25 +01004493 if (!rdev->ops->add_station)
4494 return -EOPNOTSUPP;
4495
Johannes Berg5727ef12007-12-19 02:03:34 +01004496 if (!info->attrs[NL80211_ATTR_MAC])
4497 return -EINVAL;
4498
Johannes Berg5727ef12007-12-19 02:03:34 +01004499 if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
4500 return -EINVAL;
4501
4502 if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
4503 return -EINVAL;
4504
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004505 if (!info->attrs[NL80211_ATTR_STA_AID] &&
4506 !info->attrs[NL80211_ATTR_PEER_AID])
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004507 return -EINVAL;
4508
Johannes Berg5727ef12007-12-19 02:03:34 +01004509 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4510 params.supported_rates =
4511 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4512 params.supported_rates_len =
4513 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4514 params.listen_interval =
4515 nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
Johannes Berg51b50fb2009-05-24 16:42:30 +02004516
Ayala Beker17b94242016-03-17 15:41:38 +02004517 if (info->attrs[NL80211_ATTR_STA_SUPPORT_P2P_PS]) {
4518 u8 tmp;
4519
4520 tmp = nla_get_u8(info->attrs[NL80211_ATTR_STA_SUPPORT_P2P_PS]);
4521 if (tmp >= NUM_NL80211_P2P_PS_STATUS)
4522 return -EINVAL;
4523
4524 params.support_p2p_ps = tmp;
4525 } else {
4526 /*
4527 * if not specified, assume it's supported for P2P GO interface,
4528 * and is NOT supported for AP interface
4529 */
4530 params.support_p2p_ps =
4531 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_P2P_GO;
4532 }
4533
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004534 if (info->attrs[NL80211_ATTR_PEER_AID])
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004535 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004536 else
4537 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004538 if (!params.aid || params.aid > IEEE80211_MAX_AID)
4539 return -EINVAL;
Johannes Berg51b50fb2009-05-24 16:42:30 +02004540
Jouni Malinen9d62a982013-02-14 21:10:13 +02004541 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4542 params.capability =
4543 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4544 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4545 }
4546
4547 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4548 params.ext_capab =
4549 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4550 params.ext_capab_len =
4551 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4552 }
4553
Jouni Malinen36aedc902008-08-25 11:58:58 +03004554 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4555 params.ht_capa =
4556 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
Johannes Berg5727ef12007-12-19 02:03:34 +01004557
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00004558 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4559 params.vht_capa =
4560 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4561
Marek Kwaczynski60f4a7b2013-12-03 10:04:59 +01004562 if (info->attrs[NL80211_ATTR_OPMODE_NOTIF]) {
4563 params.opmode_notif_used = true;
4564 params.opmode_notif =
4565 nla_get_u8(info->attrs[NL80211_ATTR_OPMODE_NOTIF]);
4566 }
4567
Johannes Bergf8bacc22013-02-14 23:27:01 +01004568 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Javier Cardona96b78df2011-04-07 15:08:33 -07004569 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004570 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4571 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4572 return -EINVAL;
4573 }
Javier Cardona96b78df2011-04-07 15:08:33 -07004574
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304575 err = nl80211_parse_sta_channel_info(info, &params);
4576 if (err)
4577 return err;
4578
Johannes Bergff276692013-02-15 00:09:01 +01004579 err = nl80211_parse_sta_wme(info, &params);
4580 if (err)
4581 return err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004582
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004583 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004584 return -EINVAL;
4585
Johannes Berg496fcc22015-03-12 08:53:27 +02004586 /* HT/VHT requires QoS, but if we don't have that just ignore HT/VHT
4587 * as userspace might just pass through the capabilities from the IEs
4588 * directly, rather than enforcing this restriction and returning an
4589 * error in this case.
4590 */
4591 if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_WME))) {
4592 params.ht_capa = NULL;
4593 params.vht_capa = NULL;
4594 }
4595
Johannes Berg77ee7c82013-02-15 00:48:33 +01004596 /* When you run into this, adjust the code below for the new flag */
4597 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
4598
Johannes Bergbdd90d52011-12-14 12:20:27 +01004599 switch (dev->ieee80211_ptr->iftype) {
4600 case NL80211_IFTYPE_AP:
4601 case NL80211_IFTYPE_AP_VLAN:
4602 case NL80211_IFTYPE_P2P_GO:
Johannes Berg984c3112013-02-14 23:43:25 +01004603 /* ignore WME attributes if iface/sta is not capable */
4604 if (!(rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) ||
4605 !(params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)))
4606 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004607
Johannes Bergbdd90d52011-12-14 12:20:27 +01004608 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004609 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4610 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004611 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004612 /* but don't bother the driver with it */
4613 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
Eliad Pellerc75786c2011-08-23 14:37:46 +03004614
Johannes Bergd582cff2012-10-26 17:53:44 +02004615 /* allow authenticated/associated only if driver handles it */
4616 if (!(rdev->wiphy.features &
4617 NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
Johannes Bergbda95eb2015-11-26 16:26:13 +01004618 params.sta_flags_mask & auth_assoc)
Johannes Bergd582cff2012-10-26 17:53:44 +02004619 return -EINVAL;
4620
Johannes Bergbda95eb2015-11-26 16:26:13 +01004621 /* Older userspace, or userspace wanting to be compatible with
4622 * !NL80211_FEATURE_FULL_AP_CLIENT_STATE, will not set the auth
4623 * and assoc flags in the mask, but assumes the station will be
4624 * added as associated anyway since this was the required driver
4625 * behaviour before NL80211_FEATURE_FULL_AP_CLIENT_STATE was
4626 * introduced.
4627 * In order to not bother drivers with this quirk in the API
4628 * set the flags in both the mask and set for new stations in
4629 * this case.
4630 */
4631 if (!(params.sta_flags_mask & auth_assoc)) {
4632 params.sta_flags_mask |= auth_assoc;
4633 params.sta_flags_set |= auth_assoc;
4634 }
4635
Johannes Bergbdd90d52011-12-14 12:20:27 +01004636 /* must be last in here for error handling */
4637 params.vlan = get_vlan(info, rdev);
4638 if (IS_ERR(params.vlan))
4639 return PTR_ERR(params.vlan);
4640 break;
4641 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg984c3112013-02-14 23:43:25 +01004642 /* ignore uAPSD data */
4643 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4644
Johannes Bergd582cff2012-10-26 17:53:44 +02004645 /* associated is disallowed */
4646 if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
4647 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004648 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004649 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4650 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004651 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004652 break;
4653 case NL80211_IFTYPE_STATION:
Johannes Berg93d08f02013-03-04 09:29:46 +01004654 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg984c3112013-02-14 23:43:25 +01004655 /* ignore uAPSD data */
4656 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4657
Johannes Berg77ee7c82013-02-15 00:48:33 +01004658 /* these are disallowed */
4659 if (params.sta_flags_mask &
4660 (BIT(NL80211_STA_FLAG_ASSOCIATED) |
4661 BIT(NL80211_STA_FLAG_AUTHENTICATED)))
Johannes Bergd582cff2012-10-26 17:53:44 +02004662 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004663 /* Only TDLS peers can be added */
4664 if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4665 return -EINVAL;
4666 /* Can only add if TDLS ... */
4667 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS))
4668 return -EOPNOTSUPP;
4669 /* ... with external setup is supported */
4670 if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
4671 return -EOPNOTSUPP;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004672 /*
4673 * Older wpa_supplicant versions always mark the TDLS peer
4674 * as authorized, but it shouldn't yet be.
4675 */
4676 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_AUTHORIZED);
Johannes Bergbdd90d52011-12-14 12:20:27 +01004677 break;
4678 default:
4679 return -EOPNOTSUPP;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004680 }
4681
Johannes Bergbdd90d52011-12-14 12:20:27 +01004682 /* be aware of params.vlan when changing code here */
Johannes Berg5727ef12007-12-19 02:03:34 +01004683
Hila Gonene35e4d22012-06-27 17:19:42 +03004684 err = rdev_add_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004685
Johannes Berg5727ef12007-12-19 02:03:34 +01004686 if (params.vlan)
4687 dev_put(params.vlan);
Johannes Berg5727ef12007-12-19 02:03:34 +01004688 return err;
4689}
4690
4691static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
4692{
Johannes Berg4c476992010-10-04 21:36:35 +02004693 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4694 struct net_device *dev = info->user_ptr[1];
Jouni Malinen89c771e2014-10-10 20:52:40 +03004695 struct station_del_parameters params;
4696
4697 memset(&params, 0, sizeof(params));
Johannes Berg5727ef12007-12-19 02:03:34 +01004698
4699 if (info->attrs[NL80211_ATTR_MAC])
Jouni Malinen89c771e2014-10-10 20:52:40 +03004700 params.mac = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg5727ef12007-12-19 02:03:34 +01004701
Johannes Berge80cf852009-05-11 14:43:13 +02004702 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Marco Porschd5d9de02010-03-30 10:00:16 +02004703 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
Johannes Berg074ac8d2010-09-16 14:58:22 +02004704 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg4c476992010-10-04 21:36:35 +02004705 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4706 return -EINVAL;
Johannes Berge80cf852009-05-11 14:43:13 +02004707
Johannes Berg4c476992010-10-04 21:36:35 +02004708 if (!rdev->ops->del_station)
4709 return -EOPNOTSUPP;
Johannes Berg5727ef12007-12-19 02:03:34 +01004710
Jouni Malinen98856862014-10-20 13:20:45 +03004711 if (info->attrs[NL80211_ATTR_MGMT_SUBTYPE]) {
4712 params.subtype =
4713 nla_get_u8(info->attrs[NL80211_ATTR_MGMT_SUBTYPE]);
4714 if (params.subtype != IEEE80211_STYPE_DISASSOC >> 4 &&
4715 params.subtype != IEEE80211_STYPE_DEAUTH >> 4)
4716 return -EINVAL;
4717 } else {
4718 /* Default to Deauthentication frame */
4719 params.subtype = IEEE80211_STYPE_DEAUTH >> 4;
4720 }
4721
4722 if (info->attrs[NL80211_ATTR_REASON_CODE]) {
4723 params.reason_code =
4724 nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
4725 if (params.reason_code == 0)
4726 return -EINVAL; /* 0 is reserved */
4727 } else {
4728 /* Default to reason code 2 */
4729 params.reason_code = WLAN_REASON_PREV_AUTH_NOT_VALID;
4730 }
4731
Jouni Malinen89c771e2014-10-10 20:52:40 +03004732 return rdev_del_station(rdev, dev, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004733}
4734
Eric W. Biederman15e47302012-09-07 20:12:54 +00004735static int nl80211_send_mpath(struct sk_buff *msg, u32 portid, u32 seq,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004736 int flags, struct net_device *dev,
4737 u8 *dst, u8 *next_hop,
4738 struct mpath_info *pinfo)
4739{
4740 void *hdr;
4741 struct nlattr *pinfoattr;
4742
Henning Rogge1ef4c852014-11-04 16:14:58 +01004743 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_MPATH);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004744 if (!hdr)
4745 return -1;
4746
David S. Miller9360ffd2012-03-29 04:41:26 -04004747 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4748 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) ||
4749 nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) ||
4750 nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation))
4751 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02004752
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004753 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
4754 if (!pinfoattr)
4755 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004756 if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) &&
4757 nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
4758 pinfo->frame_qlen))
4759 goto nla_put_failure;
4760 if (((pinfo->filled & MPATH_INFO_SN) &&
4761 nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) ||
4762 ((pinfo->filled & MPATH_INFO_METRIC) &&
4763 nla_put_u32(msg, NL80211_MPATH_INFO_METRIC,
4764 pinfo->metric)) ||
4765 ((pinfo->filled & MPATH_INFO_EXPTIME) &&
4766 nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME,
4767 pinfo->exptime)) ||
4768 ((pinfo->filled & MPATH_INFO_FLAGS) &&
4769 nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS,
4770 pinfo->flags)) ||
4771 ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) &&
4772 nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
4773 pinfo->discovery_timeout)) ||
4774 ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) &&
4775 nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
4776 pinfo->discovery_retries)))
4777 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004778
4779 nla_nest_end(msg, pinfoattr);
4780
Johannes Berg053c0952015-01-16 22:09:00 +01004781 genlmsg_end(msg, hdr);
4782 return 0;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004783
4784 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07004785 genlmsg_cancel(msg, hdr);
4786 return -EMSGSIZE;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004787}
4788
4789static int nl80211_dump_mpath(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004790 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004791{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004792 struct mpath_info pinfo;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004793 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02004794 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004795 u8 dst[ETH_ALEN];
4796 u8 next_hop[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02004797 int path_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004798 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004799
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004800 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02004801 if (err)
4802 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004803
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004804 if (!rdev->ops->dump_mpath) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004805 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004806 goto out_err;
4807 }
4808
Johannes Berg97990a02013-04-19 01:02:55 +02004809 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004810 err = -EOPNOTSUPP;
Roel Kluin0448b5f2009-08-22 21:15:49 +02004811 goto out_err;
Jouni Malineneec60b02009-03-20 21:21:19 +02004812 }
4813
Johannes Bergbba95fe2008-07-29 13:22:51 +02004814 while (1) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004815 err = rdev_dump_mpath(rdev, wdev->netdev, path_idx, dst,
Johannes Berg97990a02013-04-19 01:02:55 +02004816 next_hop, &pinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004817 if (err == -ENOENT)
4818 break;
4819 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01004820 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004821
Eric W. Biederman15e47302012-09-07 20:12:54 +00004822 if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004823 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02004824 wdev->netdev, dst, next_hop,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004825 &pinfo) < 0)
4826 goto out;
4827
4828 path_idx++;
4829 }
4830
Johannes Bergbba95fe2008-07-29 13:22:51 +02004831 out:
Johannes Berg97990a02013-04-19 01:02:55 +02004832 cb->args[2] = path_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004833 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004834 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004835 nl80211_finish_wdev_dump(rdev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004836 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004837}
4838
4839static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
4840{
Johannes Berg4c476992010-10-04 21:36:35 +02004841 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004842 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004843 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004844 struct mpath_info pinfo;
4845 struct sk_buff *msg;
4846 u8 *dst = NULL;
4847 u8 next_hop[ETH_ALEN];
4848
4849 memset(&pinfo, 0, sizeof(pinfo));
4850
4851 if (!info->attrs[NL80211_ATTR_MAC])
4852 return -EINVAL;
4853
4854 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4855
Johannes Berg4c476992010-10-04 21:36:35 +02004856 if (!rdev->ops->get_mpath)
4857 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004858
Johannes Berg4c476992010-10-04 21:36:35 +02004859 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4860 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004861
Hila Gonene35e4d22012-06-27 17:19:42 +03004862 err = rdev_get_mpath(rdev, dev, dst, next_hop, &pinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004863 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004864 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004865
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004866 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004867 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02004868 return -ENOMEM;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004869
Eric W. Biederman15e47302012-09-07 20:12:54 +00004870 if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg4c476992010-10-04 21:36:35 +02004871 dev, dst, next_hop, &pinfo) < 0) {
4872 nlmsg_free(msg);
4873 return -ENOBUFS;
4874 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004875
Johannes Berg4c476992010-10-04 21:36:35 +02004876 return genlmsg_reply(msg, info);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004877}
4878
4879static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
4880{
Johannes Berg4c476992010-10-04 21:36:35 +02004881 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4882 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004883 u8 *dst = NULL;
4884 u8 *next_hop = NULL;
4885
4886 if (!info->attrs[NL80211_ATTR_MAC])
4887 return -EINVAL;
4888
4889 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4890 return -EINVAL;
4891
4892 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4893 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4894
Johannes Berg4c476992010-10-04 21:36:35 +02004895 if (!rdev->ops->change_mpath)
4896 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004897
Johannes Berg4c476992010-10-04 21:36:35 +02004898 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4899 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004900
Hila Gonene35e4d22012-06-27 17:19:42 +03004901 return rdev_change_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004902}
Johannes Berg4c476992010-10-04 21:36:35 +02004903
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004904static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
4905{
Johannes Berg4c476992010-10-04 21:36:35 +02004906 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4907 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004908 u8 *dst = NULL;
4909 u8 *next_hop = NULL;
4910
4911 if (!info->attrs[NL80211_ATTR_MAC])
4912 return -EINVAL;
4913
4914 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4915 return -EINVAL;
4916
4917 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4918 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4919
Johannes Berg4c476992010-10-04 21:36:35 +02004920 if (!rdev->ops->add_mpath)
4921 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004922
Johannes Berg4c476992010-10-04 21:36:35 +02004923 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4924 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004925
Hila Gonene35e4d22012-06-27 17:19:42 +03004926 return rdev_add_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004927}
4928
4929static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
4930{
Johannes Berg4c476992010-10-04 21:36:35 +02004931 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4932 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004933 u8 *dst = NULL;
4934
4935 if (info->attrs[NL80211_ATTR_MAC])
4936 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4937
Johannes Berg4c476992010-10-04 21:36:35 +02004938 if (!rdev->ops->del_mpath)
4939 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004940
Hila Gonene35e4d22012-06-27 17:19:42 +03004941 return rdev_del_mpath(rdev, dev, dst);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004942}
4943
Henning Rogge66be7d22014-09-12 08:58:49 +02004944static int nl80211_get_mpp(struct sk_buff *skb, struct genl_info *info)
4945{
4946 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4947 int err;
4948 struct net_device *dev = info->user_ptr[1];
4949 struct mpath_info pinfo;
4950 struct sk_buff *msg;
4951 u8 *dst = NULL;
4952 u8 mpp[ETH_ALEN];
4953
4954 memset(&pinfo, 0, sizeof(pinfo));
4955
4956 if (!info->attrs[NL80211_ATTR_MAC])
4957 return -EINVAL;
4958
4959 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4960
4961 if (!rdev->ops->get_mpp)
4962 return -EOPNOTSUPP;
4963
4964 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4965 return -EOPNOTSUPP;
4966
4967 err = rdev_get_mpp(rdev, dev, dst, mpp, &pinfo);
4968 if (err)
4969 return err;
4970
4971 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
4972 if (!msg)
4973 return -ENOMEM;
4974
4975 if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
4976 dev, dst, mpp, &pinfo) < 0) {
4977 nlmsg_free(msg);
4978 return -ENOBUFS;
4979 }
4980
4981 return genlmsg_reply(msg, info);
4982}
4983
4984static int nl80211_dump_mpp(struct sk_buff *skb,
4985 struct netlink_callback *cb)
4986{
4987 struct mpath_info pinfo;
4988 struct cfg80211_registered_device *rdev;
4989 struct wireless_dev *wdev;
4990 u8 dst[ETH_ALEN];
4991 u8 mpp[ETH_ALEN];
4992 int path_idx = cb->args[2];
4993 int err;
4994
4995 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
4996 if (err)
4997 return err;
4998
4999 if (!rdev->ops->dump_mpp) {
5000 err = -EOPNOTSUPP;
5001 goto out_err;
5002 }
5003
5004 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) {
5005 err = -EOPNOTSUPP;
5006 goto out_err;
5007 }
5008
5009 while (1) {
5010 err = rdev_dump_mpp(rdev, wdev->netdev, path_idx, dst,
5011 mpp, &pinfo);
5012 if (err == -ENOENT)
5013 break;
5014 if (err)
5015 goto out_err;
5016
5017 if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
5018 cb->nlh->nlmsg_seq, NLM_F_MULTI,
5019 wdev->netdev, dst, mpp,
5020 &pinfo) < 0)
5021 goto out;
5022
5023 path_idx++;
5024 }
5025
5026 out:
5027 cb->args[2] = path_idx;
5028 err = skb->len;
5029 out_err:
5030 nl80211_finish_wdev_dump(rdev);
5031 return err;
5032}
5033
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005034static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
5035{
Johannes Berg4c476992010-10-04 21:36:35 +02005036 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5037 struct net_device *dev = info->user_ptr[1];
Simon Wunderlichc56589e2013-11-21 18:19:49 +01005038 struct wireless_dev *wdev = dev->ieee80211_ptr;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005039 struct bss_parameters params;
Simon Wunderlichc56589e2013-11-21 18:19:49 +01005040 int err;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005041
5042 memset(&params, 0, sizeof(params));
5043 /* default to not changing parameters */
5044 params.use_cts_prot = -1;
5045 params.use_short_preamble = -1;
5046 params.use_short_slot_time = -1;
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02005047 params.ap_isolate = -1;
Helmut Schaa50b12f52010-11-19 12:40:25 +01005048 params.ht_opmode = -1;
Johannes Berg53cabad2012-11-14 15:17:28 +01005049 params.p2p_ctwindow = -1;
5050 params.p2p_opp_ps = -1;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005051
5052 if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
5053 params.use_cts_prot =
5054 nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
5055 if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
5056 params.use_short_preamble =
5057 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
5058 if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
5059 params.use_short_slot_time =
5060 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
Jouni Malinen90c97a02008-10-30 16:59:22 +02005061 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
5062 params.basic_rates =
5063 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
5064 params.basic_rates_len =
5065 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
5066 }
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02005067 if (info->attrs[NL80211_ATTR_AP_ISOLATE])
5068 params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
Helmut Schaa50b12f52010-11-19 12:40:25 +01005069 if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
5070 params.ht_opmode =
5071 nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005072
Johannes Berg53cabad2012-11-14 15:17:28 +01005073 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
5074 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
5075 return -EINVAL;
5076 params.p2p_ctwindow =
5077 nla_get_s8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
5078 if (params.p2p_ctwindow < 0)
5079 return -EINVAL;
5080 if (params.p2p_ctwindow != 0 &&
5081 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
5082 return -EINVAL;
5083 }
5084
5085 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
5086 u8 tmp;
5087
5088 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
5089 return -EINVAL;
5090 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
5091 if (tmp > 1)
5092 return -EINVAL;
5093 params.p2p_opp_ps = tmp;
5094 if (params.p2p_opp_ps &&
5095 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
5096 return -EINVAL;
5097 }
5098
Johannes Berg4c476992010-10-04 21:36:35 +02005099 if (!rdev->ops->change_bss)
5100 return -EOPNOTSUPP;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005101
Johannes Berg074ac8d2010-09-16 14:58:22 +02005102 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Johannes Berg4c476992010-10-04 21:36:35 +02005103 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
5104 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02005105
Simon Wunderlichc56589e2013-11-21 18:19:49 +01005106 wdev_lock(wdev);
5107 err = rdev_change_bss(rdev, dev, &params);
5108 wdev_unlock(wdev);
5109
5110 return err;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03005111}
5112
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005113static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
5114{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005115 char *data = NULL;
Ilan peer05050752015-03-04 00:32:06 -05005116 bool is_indoor;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07005117 enum nl80211_user_reg_hint_type user_reg_hint_type;
Ilan peer05050752015-03-04 00:32:06 -05005118 u32 owner_nlportid;
5119
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05005120 /*
5121 * You should only get this when cfg80211 hasn't yet initialized
5122 * completely when built-in to the kernel right between the time
5123 * window between nl80211_init() and regulatory_init(), if that is
5124 * even possible.
5125 */
Johannes Berg458f4f92012-12-06 15:47:38 +01005126 if (unlikely(!rcu_access_pointer(cfg80211_regdomain)))
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05005127 return -EINPROGRESS;
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05005128
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07005129 if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE])
5130 user_reg_hint_type =
5131 nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]);
5132 else
5133 user_reg_hint_type = NL80211_USER_REG_HINT_USER;
5134
5135 switch (user_reg_hint_type) {
5136 case NL80211_USER_REG_HINT_USER:
5137 case NL80211_USER_REG_HINT_CELL_BASE:
Ilan Peer52616f22014-02-25 16:26:00 +02005138 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
5139 return -EINVAL;
5140
5141 data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
5142 return regulatory_hint_user(data, user_reg_hint_type);
5143 case NL80211_USER_REG_HINT_INDOOR:
Ilan peer05050752015-03-04 00:32:06 -05005144 if (info->attrs[NL80211_ATTR_SOCKET_OWNER]) {
5145 owner_nlportid = info->snd_portid;
5146 is_indoor = !!info->attrs[NL80211_ATTR_REG_INDOOR];
5147 } else {
5148 owner_nlportid = 0;
5149 is_indoor = true;
5150 }
5151
5152 return regulatory_hint_indoor(is_indoor, owner_nlportid);
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07005153 default:
5154 return -EINVAL;
5155 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005156}
5157
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005158static int nl80211_get_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01005159 struct genl_info *info)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005160{
Johannes Berg4c476992010-10-04 21:36:35 +02005161 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02005162 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01005163 struct wireless_dev *wdev = dev->ieee80211_ptr;
5164 struct mesh_config cur_params;
5165 int err = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005166 void *hdr;
5167 struct nlattr *pinfoattr;
5168 struct sk_buff *msg;
5169
Johannes Berg29cbe682010-12-03 09:20:44 +01005170 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
5171 return -EOPNOTSUPP;
5172
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005173 if (!rdev->ops->get_mesh_config)
Johannes Berg4c476992010-10-04 21:36:35 +02005174 return -EOPNOTSUPP;
Jouni Malinenf3f92582009-03-20 17:57:36 +02005175
Johannes Berg29cbe682010-12-03 09:20:44 +01005176 wdev_lock(wdev);
5177 /* If not connected, get default parameters */
5178 if (!wdev->mesh_id_len)
5179 memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
5180 else
Hila Gonene35e4d22012-06-27 17:19:42 +03005181 err = rdev_get_mesh_config(rdev, dev, &cur_params);
Johannes Berg29cbe682010-12-03 09:20:44 +01005182 wdev_unlock(wdev);
5183
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005184 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02005185 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005186
5187 /* Draw up a netlink message to send back */
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07005188 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02005189 if (!msg)
5190 return -ENOMEM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00005191 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005192 NL80211_CMD_GET_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005193 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01005194 goto out;
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005195 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005196 if (!pinfoattr)
5197 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04005198 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
5199 nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
5200 cur_params.dot11MeshRetryTimeout) ||
5201 nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
5202 cur_params.dot11MeshConfirmTimeout) ||
5203 nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
5204 cur_params.dot11MeshHoldingTimeout) ||
5205 nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
5206 cur_params.dot11MeshMaxPeerLinks) ||
5207 nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES,
5208 cur_params.dot11MeshMaxRetries) ||
5209 nla_put_u8(msg, NL80211_MESHCONF_TTL,
5210 cur_params.dot11MeshTTL) ||
5211 nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL,
5212 cur_params.element_ttl) ||
5213 nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
5214 cur_params.auto_open_plinks) ||
John W. Linville7eab0f62012-04-12 14:25:14 -04005215 nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
5216 cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005217 nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
5218 cur_params.dot11MeshHWMPmaxPREQretries) ||
5219 nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
5220 cur_params.path_refresh_time) ||
5221 nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
5222 cur_params.min_discovery_timeout) ||
5223 nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
5224 cur_params.dot11MeshHWMPactivePathTimeout) ||
5225 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
5226 cur_params.dot11MeshHWMPpreqMinInterval) ||
5227 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
5228 cur_params.dot11MeshHWMPperrMinInterval) ||
5229 nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
5230 cur_params.dot11MeshHWMPnetDiameterTraversalTime) ||
5231 nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE,
5232 cur_params.dot11MeshHWMPRootMode) ||
5233 nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
5234 cur_params.dot11MeshHWMPRannInterval) ||
5235 nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
5236 cur_params.dot11MeshGateAnnouncementProtocol) ||
5237 nla_put_u8(msg, NL80211_MESHCONF_FORWARDING,
5238 cur_params.dot11MeshForwarding) ||
5239 nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD,
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07005240 cur_params.rssi_threshold) ||
5241 nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005242 cur_params.ht_opmode) ||
5243 nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
5244 cur_params.dot11MeshHWMPactivePathToRootTimeout) ||
5245 nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08005246 cur_params.dot11MeshHWMProotInterval) ||
5247 nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
Marco Porsch3b1c5a52013-01-07 16:04:52 +01005248 cur_params.dot11MeshHWMPconfirmationInterval) ||
5249 nla_put_u32(msg, NL80211_MESHCONF_POWER_MODE,
5250 cur_params.power_mode) ||
5251 nla_put_u16(msg, NL80211_MESHCONF_AWAKE_WINDOW,
Colleen Twitty8e7c0532013-06-03 09:53:39 -07005252 cur_params.dot11MeshAwakeWindowDuration) ||
5253 nla_put_u32(msg, NL80211_MESHCONF_PLINK_TIMEOUT,
5254 cur_params.plink_timeout))
David S. Miller9360ffd2012-03-29 04:41:26 -04005255 goto nla_put_failure;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005256 nla_nest_end(msg, pinfoattr);
5257 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02005258 return genlmsg_reply(msg, info);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005259
Johannes Berg3b858752009-03-12 09:55:09 +01005260 nla_put_failure:
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005261 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01005262 out:
Yuri Ershovd080e272010-06-29 15:08:07 +04005263 nlmsg_free(msg);
Johannes Berg4c476992010-10-04 21:36:35 +02005264 return -ENOBUFS;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005265}
5266
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00005267static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005268 [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
5269 [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
5270 [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
5271 [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
5272 [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
5273 [NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
Javier Cardona45904f22010-12-03 09:20:40 +01005274 [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005275 [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
Javier Cardonad299a1f2012-03-31 11:31:33 -07005276 [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005277 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
5278 [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
5279 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
5280 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
5281 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
Thomas Pedersendca7e942011-11-24 17:15:24 -08005282 [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005283 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
Javier Cardona699403d2011-08-09 16:45:09 -07005284 [NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
Javier Cardona0507e152011-08-09 16:45:10 -07005285 [NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
Javier Cardona16dd7262011-08-09 16:45:11 -07005286 [NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08005287 [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005288 [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
5289 [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005290 [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
5291 [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08005292 [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
Marco Porsch3b1c5a52013-01-07 16:04:52 +01005293 [NL80211_MESHCONF_POWER_MODE] = { .type = NLA_U32 },
5294 [NL80211_MESHCONF_AWAKE_WINDOW] = { .type = NLA_U16 },
Colleen Twitty8e7c0532013-06-03 09:53:39 -07005295 [NL80211_MESHCONF_PLINK_TIMEOUT] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005296};
5297
Javier Cardonac80d5452010-12-16 17:37:49 -08005298static const struct nla_policy
5299 nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
Javier Cardonad299a1f2012-03-31 11:31:33 -07005300 [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
Javier Cardonac80d5452010-12-16 17:37:49 -08005301 [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
5302 [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
Javier Cardona15d5dda2011-04-07 15:08:28 -07005303 [NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
Colleen Twitty6e16d902013-05-08 11:45:59 -07005304 [NL80211_MESH_SETUP_AUTH_PROTOCOL] = { .type = NLA_U8 },
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005305 [NL80211_MESH_SETUP_USERSPACE_MPM] = { .type = NLA_FLAG },
Javier Cardona581a8b02011-04-07 15:08:27 -07005306 [NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005307 .len = IEEE80211_MAX_DATA_LEN },
Javier Cardonab130e5c2011-05-03 16:57:07 -07005308 [NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
Javier Cardonac80d5452010-12-16 17:37:49 -08005309};
5310
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005311static int nl80211_check_bool(const struct nlattr *nla, u8 min, u8 max, bool *out)
5312{
5313 u8 val = nla_get_u8(nla);
5314 if (val < min || val > max)
5315 return -EINVAL;
5316 *out = val;
5317 return 0;
5318}
5319
5320static int nl80211_check_u8(const struct nlattr *nla, u8 min, u8 max, u8 *out)
5321{
5322 u8 val = nla_get_u8(nla);
5323 if (val < min || val > max)
5324 return -EINVAL;
5325 *out = val;
5326 return 0;
5327}
5328
5329static int nl80211_check_u16(const struct nlattr *nla, u16 min, u16 max, u16 *out)
5330{
5331 u16 val = nla_get_u16(nla);
5332 if (val < min || val > max)
5333 return -EINVAL;
5334 *out = val;
5335 return 0;
5336}
5337
5338static int nl80211_check_u32(const struct nlattr *nla, u32 min, u32 max, u32 *out)
5339{
5340 u32 val = nla_get_u32(nla);
5341 if (val < min || val > max)
5342 return -EINVAL;
5343 *out = val;
5344 return 0;
5345}
5346
5347static int nl80211_check_s32(const struct nlattr *nla, s32 min, s32 max, s32 *out)
5348{
5349 s32 val = nla_get_s32(nla);
5350 if (val < min || val > max)
5351 return -EINVAL;
5352 *out = val;
5353 return 0;
5354}
5355
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005356static int nl80211_parse_mesh_config(struct genl_info *info,
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005357 struct mesh_config *cfg,
5358 u32 *mask_out)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005359{
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005360 struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005361 u32 mask = 0;
Masashi Honma97572352016-08-03 10:07:44 +09005362 u16 ht_opmode;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005363
Marco Porschea54fba2013-01-07 16:04:48 +01005364#define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
5365do { \
5366 if (tb[attr]) { \
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005367 if (fn(tb[attr], min, max, &cfg->param)) \
Marco Porschea54fba2013-01-07 16:04:48 +01005368 return -EINVAL; \
Marco Porschea54fba2013-01-07 16:04:48 +01005369 mask |= (1 << (attr - 1)); \
5370 } \
5371} while (0)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005372
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005373 if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005374 return -EINVAL;
5375 if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005376 info->attrs[NL80211_ATTR_MESH_CONFIG],
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005377 nl80211_meshconf_params_policy))
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005378 return -EINVAL;
5379
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005380 /* This makes sure that there aren't more than 32 mesh config
5381 * parameters (otherwise our bitfield scheme would not work.) */
5382 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);
5383
5384 /* Fill in the params struct */
Marco Porschea54fba2013-01-07 16:04:48 +01005385 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005386 mask, NL80211_MESHCONF_RETRY_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005387 nl80211_check_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005388 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005389 mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005390 nl80211_check_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005391 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005392 mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005393 nl80211_check_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005394 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005395 mask, NL80211_MESHCONF_MAX_PEER_LINKS,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005396 nl80211_check_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005397 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005398 mask, NL80211_MESHCONF_MAX_RETRIES,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005399 nl80211_check_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005400 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, 1, 255,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005401 mask, NL80211_MESHCONF_TTL, nl80211_check_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005402 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005403 mask, NL80211_MESHCONF_ELEMENT_TTL,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005404 nl80211_check_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005405 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005406 mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005407 nl80211_check_bool);
Marco Porschea54fba2013-01-07 16:04:48 +01005408 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor,
5409 1, 255, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005410 NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005411 nl80211_check_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01005412 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005413 mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005414 nl80211_check_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005415 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005416 mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005417 nl80211_check_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01005418 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005419 mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005420 nl80211_check_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005421 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
5422 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005423 NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005424 nl80211_check_u32);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005425 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01005426 1, 65535, mask,
5427 NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005428 nl80211_check_u16);
Thomas Pedersendca7e942011-11-24 17:15:24 -08005429 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01005430 1, 65535, mask,
5431 NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005432 nl80211_check_u16);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005433 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01005434 dot11MeshHWMPnetDiameterTraversalTime,
5435 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005436 NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005437 nl80211_check_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005438 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, 0, 4,
5439 mask, NL80211_MESHCONF_HWMP_ROOTMODE,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005440 nl80211_check_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005441 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, 1, 65535,
5442 mask, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005443 nl80211_check_u16);
Rui Paulo63c57232009-11-09 23:46:57 +00005444 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01005445 dot11MeshGateAnnouncementProtocol, 0, 1,
5446 mask, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005447 nl80211_check_bool);
Marco Porschea54fba2013-01-07 16:04:48 +01005448 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005449 mask, NL80211_MESHCONF_FORWARDING,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005450 nl80211_check_bool);
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08005451 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, -255, 0,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005452 mask, NL80211_MESHCONF_RSSI_THRESHOLD,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005453 nl80211_check_s32);
Masashi Honma97572352016-08-03 10:07:44 +09005454 /*
5455 * Check HT operation mode based on
5456 * IEEE 802.11 2012 8.4.2.59 HT Operation element.
5457 */
5458 if (tb[NL80211_MESHCONF_HT_OPMODE]) {
5459 ht_opmode = nla_get_u16(tb[NL80211_MESHCONF_HT_OPMODE]);
5460
5461 if (ht_opmode & ~(IEEE80211_HT_OP_MODE_PROTECTION |
5462 IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT |
5463 IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT))
5464 return -EINVAL;
5465
5466 if ((ht_opmode & IEEE80211_HT_OP_MODE_NON_GF_STA_PRSNT) &&
5467 (ht_opmode & IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT))
5468 return -EINVAL;
5469
5470 switch (ht_opmode & IEEE80211_HT_OP_MODE_PROTECTION) {
5471 case IEEE80211_HT_OP_MODE_PROTECTION_NONE:
5472 case IEEE80211_HT_OP_MODE_PROTECTION_20MHZ:
5473 if (ht_opmode & IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT)
5474 return -EINVAL;
5475 break;
5476 case IEEE80211_HT_OP_MODE_PROTECTION_NONMEMBER:
5477 case IEEE80211_HT_OP_MODE_PROTECTION_NONHT_MIXED:
5478 if (!(ht_opmode & IEEE80211_HT_OP_MODE_NON_HT_STA_PRSNT))
5479 return -EINVAL;
5480 break;
5481 }
5482 cfg->ht_opmode = ht_opmode;
5483 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005484 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
Marco Porschea54fba2013-01-07 16:04:48 +01005485 1, 65535, mask,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005486 NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005487 nl80211_check_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01005488 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, 1, 65535,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005489 mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005490 nl80211_check_u16);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08005491 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01005492 dot11MeshHWMPconfirmationInterval,
5493 1, 65535, mask,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08005494 NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005495 nl80211_check_u16);
Marco Porsch3b1c5a52013-01-07 16:04:52 +01005496 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, power_mode,
5497 NL80211_MESH_POWER_ACTIVE,
5498 NL80211_MESH_POWER_MAX,
5499 mask, NL80211_MESHCONF_POWER_MODE,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005500 nl80211_check_u32);
Marco Porsch3b1c5a52013-01-07 16:04:52 +01005501 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshAwakeWindowDuration,
5502 0, 65535, mask,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005503 NL80211_MESHCONF_AWAKE_WINDOW, nl80211_check_u16);
Masashi Honma31f909a2015-02-24 22:42:16 +09005504 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, plink_timeout, 0, 0xffffffff,
Colleen Twitty8e7c0532013-06-03 09:53:39 -07005505 mask, NL80211_MESHCONF_PLINK_TIMEOUT,
Arnd Bergmannf151d9d2016-06-15 22:29:41 +02005506 nl80211_check_u32);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005507 if (mask_out)
5508 *mask_out = mask;
Javier Cardonac80d5452010-12-16 17:37:49 -08005509
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005510 return 0;
5511
5512#undef FILL_IN_MESH_PARAM_IF_SET
5513}
5514
Javier Cardonac80d5452010-12-16 17:37:49 -08005515static int nl80211_parse_mesh_setup(struct genl_info *info,
5516 struct mesh_setup *setup)
5517{
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005518 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Javier Cardonac80d5452010-12-16 17:37:49 -08005519 struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1];
5520
5521 if (!info->attrs[NL80211_ATTR_MESH_SETUP])
5522 return -EINVAL;
5523 if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX,
5524 info->attrs[NL80211_ATTR_MESH_SETUP],
5525 nl80211_mesh_setup_params_policy))
5526 return -EINVAL;
5527
Javier Cardonad299a1f2012-03-31 11:31:33 -07005528 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])
5529 setup->sync_method =
5530 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ?
5531 IEEE80211_SYNC_METHOD_VENDOR :
5532 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET;
5533
Javier Cardonac80d5452010-12-16 17:37:49 -08005534 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])
5535 setup->path_sel_proto =
5536 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ?
5537 IEEE80211_PATH_PROTOCOL_VENDOR :
5538 IEEE80211_PATH_PROTOCOL_HWMP;
5539
5540 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])
5541 setup->path_metric =
5542 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ?
5543 IEEE80211_PATH_METRIC_VENDOR :
5544 IEEE80211_PATH_METRIC_AIRTIME;
5545
Javier Cardona581a8b02011-04-07 15:08:27 -07005546 if (tb[NL80211_MESH_SETUP_IE]) {
Javier Cardonac80d5452010-12-16 17:37:49 -08005547 struct nlattr *ieattr =
Javier Cardona581a8b02011-04-07 15:08:27 -07005548 tb[NL80211_MESH_SETUP_IE];
Javier Cardonac80d5452010-12-16 17:37:49 -08005549 if (!is_valid_ie_attr(ieattr))
5550 return -EINVAL;
Javier Cardona581a8b02011-04-07 15:08:27 -07005551 setup->ie = nla_data(ieattr);
5552 setup->ie_len = nla_len(ieattr);
Javier Cardonac80d5452010-12-16 17:37:49 -08005553 }
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005554 if (tb[NL80211_MESH_SETUP_USERSPACE_MPM] &&
5555 !(rdev->wiphy.features & NL80211_FEATURE_USERSPACE_MPM))
5556 return -EINVAL;
5557 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]);
Javier Cardonab130e5c2011-05-03 16:57:07 -07005558 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
5559 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005560 if (setup->is_secure)
5561 setup->user_mpm = true;
Javier Cardonac80d5452010-12-16 17:37:49 -08005562
Colleen Twitty6e16d902013-05-08 11:45:59 -07005563 if (tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]) {
5564 if (!setup->user_mpm)
5565 return -EINVAL;
5566 setup->auth_id =
5567 nla_get_u8(tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]);
5568 }
5569
Javier Cardonac80d5452010-12-16 17:37:49 -08005570 return 0;
5571}
5572
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005573static int nl80211_update_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01005574 struct genl_info *info)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005575{
5576 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5577 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01005578 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005579 struct mesh_config cfg;
5580 u32 mask;
5581 int err;
5582
Johannes Berg29cbe682010-12-03 09:20:44 +01005583 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
5584 return -EOPNOTSUPP;
5585
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005586 if (!rdev->ops->update_mesh_config)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005587 return -EOPNOTSUPP;
5588
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005589 err = nl80211_parse_mesh_config(info, &cfg, &mask);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005590 if (err)
5591 return err;
5592
Johannes Berg29cbe682010-12-03 09:20:44 +01005593 wdev_lock(wdev);
5594 if (!wdev->mesh_id_len)
5595 err = -ENOLINK;
5596
5597 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03005598 err = rdev_update_mesh_config(rdev, dev, mask, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01005599
5600 wdev_unlock(wdev);
5601
5602 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005603}
5604
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005605static int nl80211_put_regdom(const struct ieee80211_regdomain *regdom,
5606 struct sk_buff *msg)
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005607{
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005608 struct nlattr *nl_reg_rules;
5609 unsigned int i;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005610
Johannes Berg458f4f92012-12-06 15:47:38 +01005611 if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, regdom->alpha2) ||
5612 (regdom->dfs_region &&
5613 nla_put_u8(msg, NL80211_ATTR_DFS_REGION, regdom->dfs_region)))
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005614 goto nla_put_failure;
Johannes Berg458f4f92012-12-06 15:47:38 +01005615
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005616 nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
5617 if (!nl_reg_rules)
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005618 goto nla_put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005619
Johannes Berg458f4f92012-12-06 15:47:38 +01005620 for (i = 0; i < regdom->n_reg_rules; i++) {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005621 struct nlattr *nl_reg_rule;
5622 const struct ieee80211_reg_rule *reg_rule;
5623 const struct ieee80211_freq_range *freq_range;
5624 const struct ieee80211_power_rule *power_rule;
Janusz Dziedzic97524822014-01-30 09:52:20 +01005625 unsigned int max_bandwidth_khz;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005626
Johannes Berg458f4f92012-12-06 15:47:38 +01005627 reg_rule = &regdom->reg_rules[i];
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005628 freq_range = &reg_rule->freq_range;
5629 power_rule = &reg_rule->power_rule;
5630
5631 nl_reg_rule = nla_nest_start(msg, i);
5632 if (!nl_reg_rule)
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005633 goto nla_put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005634
Janusz Dziedzic97524822014-01-30 09:52:20 +01005635 max_bandwidth_khz = freq_range->max_bandwidth_khz;
5636 if (!max_bandwidth_khz)
5637 max_bandwidth_khz = reg_get_max_bandwidth(regdom,
5638 reg_rule);
5639
David S. Miller9360ffd2012-03-29 04:41:26 -04005640 if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS,
5641 reg_rule->flags) ||
5642 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START,
5643 freq_range->start_freq_khz) ||
5644 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END,
5645 freq_range->end_freq_khz) ||
5646 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
Janusz Dziedzic97524822014-01-30 09:52:20 +01005647 max_bandwidth_khz) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005648 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
5649 power_rule->max_antenna_gain) ||
5650 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01005651 power_rule->max_eirp) ||
5652 nla_put_u32(msg, NL80211_ATTR_DFS_CAC_TIME,
5653 reg_rule->dfs_cac_ms))
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005654 goto nla_put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005655
5656 nla_nest_end(msg, nl_reg_rule);
5657 }
5658
5659 nla_nest_end(msg, nl_reg_rules);
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005660 return 0;
5661
5662nla_put_failure:
5663 return -EMSGSIZE;
5664}
5665
5666static int nl80211_get_reg_do(struct sk_buff *skb, struct genl_info *info)
5667{
5668 const struct ieee80211_regdomain *regdom = NULL;
5669 struct cfg80211_registered_device *rdev;
5670 struct wiphy *wiphy = NULL;
5671 struct sk_buff *msg;
5672 void *hdr;
5673
5674 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
5675 if (!msg)
5676 return -ENOBUFS;
5677
5678 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
5679 NL80211_CMD_GET_REG);
5680 if (!hdr)
5681 goto put_failure;
5682
5683 if (info->attrs[NL80211_ATTR_WIPHY]) {
Arik Nemtsov1bdd7162014-12-15 19:26:01 +02005684 bool self_managed;
5685
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005686 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
5687 if (IS_ERR(rdev)) {
5688 nlmsg_free(msg);
5689 return PTR_ERR(rdev);
5690 }
5691
5692 wiphy = &rdev->wiphy;
Arik Nemtsov1bdd7162014-12-15 19:26:01 +02005693 self_managed = wiphy->regulatory_flags &
5694 REGULATORY_WIPHY_SELF_MANAGED;
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005695 regdom = get_wiphy_regdom(wiphy);
5696
Arik Nemtsov1bdd7162014-12-15 19:26:01 +02005697 /* a self-managed-reg device must have a private regdom */
5698 if (WARN_ON(!regdom && self_managed)) {
5699 nlmsg_free(msg);
5700 return -EINVAL;
5701 }
5702
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005703 if (regdom &&
5704 nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
5705 goto nla_put_failure;
5706 }
5707
5708 if (!wiphy && reg_last_request_cell_base() &&
5709 nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
5710 NL80211_USER_REG_HINT_CELL_BASE))
5711 goto nla_put_failure;
5712
5713 rcu_read_lock();
5714
5715 if (!regdom)
5716 regdom = rcu_dereference(cfg80211_regdomain);
5717
5718 if (nl80211_put_regdom(regdom, msg))
5719 goto nla_put_failure_rcu;
5720
5721 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005722
5723 genlmsg_end(msg, hdr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005724 return genlmsg_reply(msg, info);
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005725
Johannes Berg458f4f92012-12-06 15:47:38 +01005726nla_put_failure_rcu:
5727 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005728nla_put_failure:
5729 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01005730put_failure:
Yuri Ershovd080e272010-06-29 15:08:07 +04005731 nlmsg_free(msg);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005732 return -EMSGSIZE;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005733}
5734
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005735static int nl80211_send_regdom(struct sk_buff *msg, struct netlink_callback *cb,
5736 u32 seq, int flags, struct wiphy *wiphy,
5737 const struct ieee80211_regdomain *regdom)
5738{
5739 void *hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
5740 NL80211_CMD_GET_REG);
5741
5742 if (!hdr)
5743 return -1;
5744
5745 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
5746
5747 if (nl80211_put_regdom(regdom, msg))
5748 goto nla_put_failure;
5749
5750 if (!wiphy && reg_last_request_cell_base() &&
5751 nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
5752 NL80211_USER_REG_HINT_CELL_BASE))
5753 goto nla_put_failure;
5754
5755 if (wiphy &&
5756 nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
5757 goto nla_put_failure;
5758
Arik Nemtsov1bdd7162014-12-15 19:26:01 +02005759 if (wiphy && wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED &&
5760 nla_put_flag(msg, NL80211_ATTR_WIPHY_SELF_MANAGED_REG))
5761 goto nla_put_failure;
5762
Johannes Berg053c0952015-01-16 22:09:00 +01005763 genlmsg_end(msg, hdr);
5764 return 0;
Arik Nemtsovad30ca22014-12-15 19:25:59 +02005765
5766nla_put_failure:
5767 genlmsg_cancel(msg, hdr);
5768 return -EMSGSIZE;
5769}
5770
5771static int nl80211_get_reg_dump(struct sk_buff *skb,
5772 struct netlink_callback *cb)
5773{
5774 const struct ieee80211_regdomain *regdom = NULL;
5775 struct cfg80211_registered_device *rdev;
5776 int err, reg_idx, start = cb->args[2];
5777
5778 rtnl_lock();
5779
5780 if (cfg80211_regdomain && start == 0) {
5781 err = nl80211_send_regdom(skb, cb, cb->nlh->nlmsg_seq,
5782 NLM_F_MULTI, NULL,
5783 rtnl_dereference(cfg80211_regdomain));
5784 if (err < 0)
5785 goto out_err;
5786 }
5787
5788 /* the global regdom is idx 0 */
5789 reg_idx = 1;
5790 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
5791 regdom = get_wiphy_regdom(&rdev->wiphy);
5792 if (!regdom)
5793 continue;
5794
5795 if (++reg_idx <= start)
5796 continue;
5797
5798 err = nl80211_send_regdom(skb, cb, cb->nlh->nlmsg_seq,
5799 NLM_F_MULTI, &rdev->wiphy, regdom);
5800 if (err < 0) {
5801 reg_idx--;
5802 break;
5803 }
5804 }
5805
5806 cb->args[2] = reg_idx;
5807 err = skb->len;
5808out_err:
5809 rtnl_unlock();
5810 return err;
5811}
5812
Johannes Bergb6863032015-10-15 09:25:18 +02005813#ifdef CONFIG_CFG80211_CRDA_SUPPORT
5814static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
5815 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
5816 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
5817 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
5818 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
5819 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
5820 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
5821 [NL80211_ATTR_DFS_CAC_TIME] = { .type = NLA_U32 },
5822};
5823
5824static int parse_reg_rule(struct nlattr *tb[],
5825 struct ieee80211_reg_rule *reg_rule)
5826{
5827 struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
5828 struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;
5829
5830 if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
5831 return -EINVAL;
5832 if (!tb[NL80211_ATTR_FREQ_RANGE_START])
5833 return -EINVAL;
5834 if (!tb[NL80211_ATTR_FREQ_RANGE_END])
5835 return -EINVAL;
5836 if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
5837 return -EINVAL;
5838 if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
5839 return -EINVAL;
5840
5841 reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);
5842
5843 freq_range->start_freq_khz =
5844 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
5845 freq_range->end_freq_khz =
5846 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
5847 freq_range->max_bandwidth_khz =
5848 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);
5849
5850 power_rule->max_eirp =
5851 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);
5852
5853 if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
5854 power_rule->max_antenna_gain =
5855 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);
5856
5857 if (tb[NL80211_ATTR_DFS_CAC_TIME])
5858 reg_rule->dfs_cac_ms =
5859 nla_get_u32(tb[NL80211_ATTR_DFS_CAC_TIME]);
5860
5861 return 0;
5862}
5863
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005864static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
5865{
5866 struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
5867 struct nlattr *nl_reg_rule;
Johannes Bergea372c52014-11-28 14:54:31 +01005868 char *alpha2;
5869 int rem_reg_rules, r;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005870 u32 num_rules = 0, rule_idx = 0, size_of_regd;
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01005871 enum nl80211_dfs_regions dfs_region = NL80211_DFS_UNSET;
Johannes Bergea372c52014-11-28 14:54:31 +01005872 struct ieee80211_regdomain *rd;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005873
5874 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
5875 return -EINVAL;
5876
5877 if (!info->attrs[NL80211_ATTR_REG_RULES])
5878 return -EINVAL;
5879
5880 alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
5881
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005882 if (info->attrs[NL80211_ATTR_DFS_REGION])
5883 dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);
5884
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005885 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005886 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005887 num_rules++;
5888 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
Luis R. Rodriguez4776c6e2009-05-13 17:04:39 -04005889 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005890 }
5891
Luis R. Rodrigueze4387682013-11-05 09:18:01 -08005892 if (!reg_is_valid_request(alpha2))
5893 return -EINVAL;
5894
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005895 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg1a919312012-12-03 17:21:11 +01005896 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005897
5898 rd = kzalloc(size_of_regd, GFP_KERNEL);
Johannes Berg6913b492012-12-04 00:48:59 +01005899 if (!rd)
5900 return -ENOMEM;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005901
5902 rd->n_reg_rules = num_rules;
5903 rd->alpha2[0] = alpha2[0];
5904 rd->alpha2[1] = alpha2[1];
5905
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005906 /*
5907 * Disable DFS master mode if the DFS region was
5908 * not supported or known on this kernel.
5909 */
5910 if (reg_supported_dfs_region(dfs_region))
5911 rd->dfs_region = dfs_region;
5912
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005913 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005914 rem_reg_rules) {
Johannes Bergae811e22014-01-24 10:17:47 +01005915 r = nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
5916 nla_data(nl_reg_rule), nla_len(nl_reg_rule),
5917 reg_rule_policy);
5918 if (r)
5919 goto bad_reg;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005920 r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
5921 if (r)
5922 goto bad_reg;
5923
5924 rule_idx++;
5925
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005926 if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
5927 r = -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005928 goto bad_reg;
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005929 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005930 }
5931
Johannes Berg06627992016-06-09 10:40:09 +02005932 /* set_regdom takes ownership of rd */
5933 return set_regdom(rd, REGD_SOURCE_CRDA);
Johannes Bergd2372b32008-10-24 20:32:20 +02005934 bad_reg:
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005935 kfree(rd);
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005936 return r;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005937}
Johannes Bergb6863032015-10-15 09:25:18 +02005938#endif /* CONFIG_CFG80211_CRDA_SUPPORT */
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005939
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005940static int validate_scan_freqs(struct nlattr *freqs)
5941{
5942 struct nlattr *attr1, *attr2;
5943 int n_channels = 0, tmp1, tmp2;
5944
5945 nla_for_each_nested(attr1, freqs, tmp1) {
5946 n_channels++;
5947 /*
5948 * Some hardware has a limited channel list for
5949 * scanning, and it is pretty much nonsensical
5950 * to scan for a channel twice, so disallow that
5951 * and don't require drivers to check that the
5952 * channel list they get isn't longer than what
5953 * they can scan, as long as they can scan all
5954 * the channels they registered at once.
5955 */
5956 nla_for_each_nested(attr2, freqs, tmp2)
5957 if (attr1 != attr2 &&
5958 nla_get_u32(attr1) == nla_get_u32(attr2))
5959 return 0;
5960 }
5961
5962 return n_channels;
5963}
5964
Johannes Berg57fbcce2016-04-12 15:56:15 +02005965static bool is_band_valid(struct wiphy *wiphy, enum nl80211_band b)
Arend van Spriel38de03d2016-03-02 20:37:18 +01005966{
Johannes Berg57fbcce2016-04-12 15:56:15 +02005967 return b < NUM_NL80211_BANDS && wiphy->bands[b];
Arend van Spriel38de03d2016-03-02 20:37:18 +01005968}
5969
5970static int parse_bss_select(struct nlattr *nla, struct wiphy *wiphy,
5971 struct cfg80211_bss_selection *bss_select)
5972{
5973 struct nlattr *attr[NL80211_BSS_SELECT_ATTR_MAX + 1];
5974 struct nlattr *nest;
5975 int err;
5976 bool found = false;
5977 int i;
5978
5979 /* only process one nested attribute */
5980 nest = nla_data(nla);
5981 if (!nla_ok(nest, nla_len(nest)))
5982 return -EINVAL;
5983
5984 err = nla_parse(attr, NL80211_BSS_SELECT_ATTR_MAX, nla_data(nest),
5985 nla_len(nest), nl80211_bss_select_policy);
5986 if (err)
5987 return err;
5988
5989 /* only one attribute may be given */
5990 for (i = 0; i <= NL80211_BSS_SELECT_ATTR_MAX; i++) {
5991 if (attr[i]) {
5992 if (found)
5993 return -EINVAL;
5994 found = true;
5995 }
5996 }
5997
5998 bss_select->behaviour = __NL80211_BSS_SELECT_ATTR_INVALID;
5999
6000 if (attr[NL80211_BSS_SELECT_ATTR_RSSI])
6001 bss_select->behaviour = NL80211_BSS_SELECT_ATTR_RSSI;
6002
6003 if (attr[NL80211_BSS_SELECT_ATTR_BAND_PREF]) {
6004 bss_select->behaviour = NL80211_BSS_SELECT_ATTR_BAND_PREF;
6005 bss_select->param.band_pref =
6006 nla_get_u32(attr[NL80211_BSS_SELECT_ATTR_BAND_PREF]);
6007 if (!is_band_valid(wiphy, bss_select->param.band_pref))
6008 return -EINVAL;
6009 }
6010
6011 if (attr[NL80211_BSS_SELECT_ATTR_RSSI_ADJUST]) {
6012 struct nl80211_bss_select_rssi_adjust *adj_param;
6013
6014 adj_param = nla_data(attr[NL80211_BSS_SELECT_ATTR_RSSI_ADJUST]);
6015 bss_select->behaviour = NL80211_BSS_SELECT_ATTR_RSSI_ADJUST;
6016 bss_select->param.adjust.band = adj_param->band;
6017 bss_select->param.adjust.delta = adj_param->delta;
6018 if (!is_band_valid(wiphy, bss_select->param.adjust.band))
6019 return -EINVAL;
6020 }
6021
6022 /* user-space did not provide behaviour attribute */
6023 if (bss_select->behaviour == __NL80211_BSS_SELECT_ATTR_INVALID)
6024 return -EINVAL;
6025
6026 if (!(wiphy->bss_select_support & BIT(bss_select->behaviour)))
6027 return -EINVAL;
6028
6029 return 0;
6030}
6031
Johannes Bergad2b26a2014-06-12 21:39:05 +02006032static int nl80211_parse_random_mac(struct nlattr **attrs,
6033 u8 *mac_addr, u8 *mac_addr_mask)
6034{
6035 int i;
6036
6037 if (!attrs[NL80211_ATTR_MAC] && !attrs[NL80211_ATTR_MAC_MASK]) {
Joe Perchesd2beae12015-03-02 19:54:58 -08006038 eth_zero_addr(mac_addr);
6039 eth_zero_addr(mac_addr_mask);
Johannes Bergad2b26a2014-06-12 21:39:05 +02006040 mac_addr[0] = 0x2;
6041 mac_addr_mask[0] = 0x3;
6042
6043 return 0;
6044 }
6045
6046 /* need both or none */
6047 if (!attrs[NL80211_ATTR_MAC] || !attrs[NL80211_ATTR_MAC_MASK])
6048 return -EINVAL;
6049
6050 memcpy(mac_addr, nla_data(attrs[NL80211_ATTR_MAC]), ETH_ALEN);
6051 memcpy(mac_addr_mask, nla_data(attrs[NL80211_ATTR_MAC_MASK]), ETH_ALEN);
6052
6053 /* don't allow or configure an mcast address */
6054 if (!is_multicast_ether_addr(mac_addr_mask) ||
6055 is_multicast_ether_addr(mac_addr))
6056 return -EINVAL;
6057
6058 /*
6059 * allow users to pass a MAC address that has bits set outside
6060 * of the mask, but don't bother drivers with having to deal
6061 * with such bits
6062 */
6063 for (i = 0; i < ETH_ALEN; i++)
6064 mac_addr[i] &= mac_addr_mask[i];
6065
6066 return 0;
6067}
6068
Johannes Berg2a519312009-02-10 21:25:55 +01006069static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
6070{
Johannes Berg4c476992010-10-04 21:36:35 +02006071 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfd014282012-06-18 19:17:03 +02006072 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2a519312009-02-10 21:25:55 +01006073 struct cfg80211_scan_request *request;
Johannes Berg2a519312009-02-10 21:25:55 +01006074 struct nlattr *attr;
6075 struct wiphy *wiphy;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02006076 int err, tmp, n_ssids = 0, n_channels, i;
Jouni Malinen70692ad2009-02-16 19:39:13 +02006077 size_t ie_len;
Johannes Berg2a519312009-02-10 21:25:55 +01006078
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006079 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6080 return -EINVAL;
6081
Johannes Berg79c97e92009-07-07 03:56:12 +02006082 wiphy = &rdev->wiphy;
Johannes Berg2a519312009-02-10 21:25:55 +01006083
Johannes Berg4c476992010-10-04 21:36:35 +02006084 if (!rdev->ops->scan)
6085 return -EOPNOTSUPP;
Johannes Berg2a519312009-02-10 21:25:55 +01006086
Johannes Bergf9d15d12014-01-22 11:14:19 +02006087 if (rdev->scan_req || rdev->scan_msg) {
Johannes Bergf9f47522013-03-19 15:04:07 +01006088 err = -EBUSY;
6089 goto unlock;
6090 }
Johannes Berg2a519312009-02-10 21:25:55 +01006091
6092 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Johannes Berg83f5e2c2009-06-17 17:41:49 +02006093 n_channels = validate_scan_freqs(
6094 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
Johannes Bergf9f47522013-03-19 15:04:07 +01006095 if (!n_channels) {
6096 err = -EINVAL;
6097 goto unlock;
6098 }
Johannes Berg2a519312009-02-10 21:25:55 +01006099 } else {
Ilan Peerbdfbec22014-01-09 11:37:23 +02006100 n_channels = ieee80211_get_num_supported_channels(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +01006101 }
6102
6103 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
6104 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
6105 n_ssids++;
6106
Johannes Bergf9f47522013-03-19 15:04:07 +01006107 if (n_ssids > wiphy->max_scan_ssids) {
6108 err = -EINVAL;
6109 goto unlock;
6110 }
Johannes Berg2a519312009-02-10 21:25:55 +01006111
Jouni Malinen70692ad2009-02-16 19:39:13 +02006112 if (info->attrs[NL80211_ATTR_IE])
6113 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6114 else
6115 ie_len = 0;
6116
Johannes Bergf9f47522013-03-19 15:04:07 +01006117 if (ie_len > wiphy->max_scan_ie_len) {
6118 err = -EINVAL;
6119 goto unlock;
6120 }
Johannes Berg18a83652009-03-31 12:12:05 +02006121
Johannes Berg2a519312009-02-10 21:25:55 +01006122 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03006123 + sizeof(*request->ssids) * n_ssids
6124 + sizeof(*request->channels) * n_channels
Jouni Malinen70692ad2009-02-16 19:39:13 +02006125 + ie_len, GFP_KERNEL);
Johannes Bergf9f47522013-03-19 15:04:07 +01006126 if (!request) {
6127 err = -ENOMEM;
6128 goto unlock;
6129 }
Johannes Berg2a519312009-02-10 21:25:55 +01006130
Johannes Berg2a519312009-02-10 21:25:55 +01006131 if (n_ssids)
Johannes Berg5ba63532009-08-07 17:54:07 +02006132 request->ssids = (void *)&request->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01006133 request->n_ssids = n_ssids;
Jouni Malinen70692ad2009-02-16 19:39:13 +02006134 if (ie_len) {
Johannes Berg13874e42015-01-23 11:25:20 +01006135 if (n_ssids)
Jouni Malinen70692ad2009-02-16 19:39:13 +02006136 request->ie = (void *)(request->ssids + n_ssids);
6137 else
6138 request->ie = (void *)(request->channels + n_channels);
6139 }
Johannes Berg2a519312009-02-10 21:25:55 +01006140
Johannes Berg584991d2009-11-02 13:32:03 +01006141 i = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01006142 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
6143 /* user specified, bail out if channel not found */
Johannes Berg2a519312009-02-10 21:25:55 +01006144 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
Johannes Berg584991d2009-11-02 13:32:03 +01006145 struct ieee80211_channel *chan;
6146
6147 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
6148
6149 if (!chan) {
Johannes Berg2a519312009-02-10 21:25:55 +01006150 err = -EINVAL;
6151 goto out_free;
6152 }
Johannes Berg584991d2009-11-02 13:32:03 +01006153
6154 /* ignore disabled channels */
6155 if (chan->flags & IEEE80211_CHAN_DISABLED)
6156 continue;
6157
6158 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01006159 i++;
6160 }
6161 } else {
Johannes Berg57fbcce2016-04-12 15:56:15 +02006162 enum nl80211_band band;
Johannes Berg34850ab2011-07-18 18:08:35 +02006163
Johannes Berg2a519312009-02-10 21:25:55 +01006164 /* all channels */
Johannes Berg57fbcce2016-04-12 15:56:15 +02006165 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Johannes Berg2a519312009-02-10 21:25:55 +01006166 int j;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07006167
Johannes Berg2a519312009-02-10 21:25:55 +01006168 if (!wiphy->bands[band])
6169 continue;
6170 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01006171 struct ieee80211_channel *chan;
6172
6173 chan = &wiphy->bands[band]->channels[j];
6174
6175 if (chan->flags & IEEE80211_CHAN_DISABLED)
6176 continue;
6177
6178 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01006179 i++;
6180 }
6181 }
6182 }
6183
Johannes Berg584991d2009-11-02 13:32:03 +01006184 if (!i) {
6185 err = -EINVAL;
6186 goto out_free;
6187 }
6188
6189 request->n_channels = i;
6190
Johannes Berg2a519312009-02-10 21:25:55 +01006191 i = 0;
Johannes Berg13874e42015-01-23 11:25:20 +01006192 if (n_ssids) {
Johannes Berg2a519312009-02-10 21:25:55 +01006193 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03006194 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Johannes Berg2a519312009-02-10 21:25:55 +01006195 err = -EINVAL;
6196 goto out_free;
6197 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03006198 request->ssids[i].ssid_len = nla_len(attr);
Johannes Berg2a519312009-02-10 21:25:55 +01006199 memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
Johannes Berg2a519312009-02-10 21:25:55 +01006200 i++;
6201 }
6202 }
6203
Jouni Malinen70692ad2009-02-16 19:39:13 +02006204 if (info->attrs[NL80211_ATTR_IE]) {
6205 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Johannes Bergde95a542009-04-01 11:58:36 +02006206 memcpy((void *)request->ie,
6207 nla_data(info->attrs[NL80211_ATTR_IE]),
Jouni Malinen70692ad2009-02-16 19:39:13 +02006208 request->ie_len);
6209 }
6210
Johannes Berg57fbcce2016-04-12 15:56:15 +02006211 for (i = 0; i < NUM_NL80211_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02006212 if (wiphy->bands[i])
6213 request->rates[i] =
6214 (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02006215
6216 if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) {
6217 nla_for_each_nested(attr,
6218 info->attrs[NL80211_ATTR_SCAN_SUPP_RATES],
6219 tmp) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02006220 enum nl80211_band band = nla_type(attr);
Johannes Berg34850ab2011-07-18 18:08:35 +02006221
Johannes Berg57fbcce2016-04-12 15:56:15 +02006222 if (band < 0 || band >= NUM_NL80211_BANDS) {
Johannes Berg34850ab2011-07-18 18:08:35 +02006223 err = -EINVAL;
6224 goto out_free;
6225 }
Felix Fietkau1b09cd82013-11-20 19:40:41 +01006226
6227 if (!wiphy->bands[band])
6228 continue;
6229
Johannes Berg34850ab2011-07-18 18:08:35 +02006230 err = ieee80211_get_ratemask(wiphy->bands[band],
6231 nla_data(attr),
6232 nla_len(attr),
6233 &request->rates[band]);
6234 if (err)
6235 goto out_free;
6236 }
6237 }
6238
Avraham Stern1d762502016-07-05 17:10:13 +03006239 if (info->attrs[NL80211_ATTR_MEASUREMENT_DURATION]) {
6240 if (!wiphy_ext_feature_isset(wiphy,
6241 NL80211_EXT_FEATURE_SET_SCAN_DWELL)) {
6242 err = -EOPNOTSUPP;
6243 goto out_free;
6244 }
6245
6246 request->duration =
6247 nla_get_u16(info->attrs[NL80211_ATTR_MEASUREMENT_DURATION]);
6248 request->duration_mandatory =
6249 nla_get_flag(info->attrs[NL80211_ATTR_MEASUREMENT_DURATION_MANDATORY]);
6250 }
6251
Sam Leffler46856bb2012-10-11 21:03:32 -07006252 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07006253 request->flags = nla_get_u32(
6254 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Johannes Berg00c3a6e2013-10-26 17:14:38 +02006255 if ((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
6256 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) {
Sam Leffler46856bb2012-10-11 21:03:32 -07006257 err = -EOPNOTSUPP;
6258 goto out_free;
6259 }
Johannes Bergad2b26a2014-06-12 21:39:05 +02006260
6261 if (request->flags & NL80211_SCAN_FLAG_RANDOM_ADDR) {
6262 if (!(wiphy->features &
6263 NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR)) {
6264 err = -EOPNOTSUPP;
6265 goto out_free;
6266 }
6267
6268 if (wdev->current_bss) {
6269 err = -EOPNOTSUPP;
6270 goto out_free;
6271 }
6272
6273 err = nl80211_parse_random_mac(info->attrs,
6274 request->mac_addr,
6275 request->mac_addr_mask);
6276 if (err)
6277 goto out_free;
6278 }
Sam Leffler46856bb2012-10-11 21:03:32 -07006279 }
Sam Lefflered4737712012-10-11 21:03:31 -07006280
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05306281 request->no_cck =
6282 nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
6283
Jouni Malinen818965d2016-02-26 22:12:47 +02006284 if (info->attrs[NL80211_ATTR_MAC])
6285 memcpy(request->bssid, nla_data(info->attrs[NL80211_ATTR_MAC]),
6286 ETH_ALEN);
6287 else
6288 eth_broadcast_addr(request->bssid);
6289
Johannes Bergfd014282012-06-18 19:17:03 +02006290 request->wdev = wdev;
Johannes Berg79c97e92009-07-07 03:56:12 +02006291 request->wiphy = &rdev->wiphy;
Sam Leffler15d60302012-10-11 21:03:34 -07006292 request->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01006293
Johannes Berg79c97e92009-07-07 03:56:12 +02006294 rdev->scan_req = request;
Hila Gonene35e4d22012-06-27 17:19:42 +03006295 err = rdev_scan(rdev, request);
Johannes Berg2a519312009-02-10 21:25:55 +01006296
Johannes Berg463d0182009-07-14 00:33:35 +02006297 if (!err) {
Johannes Bergfd014282012-06-18 19:17:03 +02006298 nl80211_send_scan_start(rdev, wdev);
6299 if (wdev->netdev)
6300 dev_hold(wdev->netdev);
Johannes Berg4c476992010-10-04 21:36:35 +02006301 } else {
Johannes Berg2a519312009-02-10 21:25:55 +01006302 out_free:
Johannes Berg79c97e92009-07-07 03:56:12 +02006303 rdev->scan_req = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01006304 kfree(request);
6305 }
Johannes Berg3b858752009-03-12 09:55:09 +01006306
Johannes Bergf9f47522013-03-19 15:04:07 +01006307 unlock:
Johannes Berg2a519312009-02-10 21:25:55 +01006308 return err;
6309}
6310
Vidyullatha Kanchanapally91d3ab42015-10-30 19:14:49 +05306311static int nl80211_abort_scan(struct sk_buff *skb, struct genl_info *info)
6312{
6313 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6314 struct wireless_dev *wdev = info->user_ptr[1];
6315
6316 if (!rdev->ops->abort_scan)
6317 return -EOPNOTSUPP;
6318
6319 if (rdev->scan_msg)
6320 return 0;
6321
6322 if (!rdev->scan_req)
6323 return -ENOENT;
6324
6325 rdev_abort_scan(rdev, wdev);
6326 return 0;
6327}
6328
Avraham Stern3b06d272015-10-12 09:51:34 +03006329static int
6330nl80211_parse_sched_scan_plans(struct wiphy *wiphy, int n_plans,
6331 struct cfg80211_sched_scan_request *request,
6332 struct nlattr **attrs)
6333{
6334 int tmp, err, i = 0;
6335 struct nlattr *attr;
6336
6337 if (!attrs[NL80211_ATTR_SCHED_SCAN_PLANS]) {
6338 u32 interval;
6339
6340 /*
6341 * If scan plans are not specified,
6342 * %NL80211_ATTR_SCHED_SCAN_INTERVAL must be specified. In this
6343 * case one scan plan will be set with the specified scan
6344 * interval and infinite number of iterations.
6345 */
6346 if (!attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
6347 return -EINVAL;
6348
6349 interval = nla_get_u32(attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]);
6350 if (!interval)
6351 return -EINVAL;
6352
6353 request->scan_plans[0].interval =
6354 DIV_ROUND_UP(interval, MSEC_PER_SEC);
6355 if (!request->scan_plans[0].interval)
6356 return -EINVAL;
6357
6358 if (request->scan_plans[0].interval >
6359 wiphy->max_sched_scan_plan_interval)
6360 request->scan_plans[0].interval =
6361 wiphy->max_sched_scan_plan_interval;
6362
6363 return 0;
6364 }
6365
6366 nla_for_each_nested(attr, attrs[NL80211_ATTR_SCHED_SCAN_PLANS], tmp) {
6367 struct nlattr *plan[NL80211_SCHED_SCAN_PLAN_MAX + 1];
6368
6369 if (WARN_ON(i >= n_plans))
6370 return -EINVAL;
6371
6372 err = nla_parse(plan, NL80211_SCHED_SCAN_PLAN_MAX,
6373 nla_data(attr), nla_len(attr),
6374 nl80211_plan_policy);
6375 if (err)
6376 return err;
6377
6378 if (!plan[NL80211_SCHED_SCAN_PLAN_INTERVAL])
6379 return -EINVAL;
6380
6381 request->scan_plans[i].interval =
6382 nla_get_u32(plan[NL80211_SCHED_SCAN_PLAN_INTERVAL]);
6383 if (!request->scan_plans[i].interval ||
6384 request->scan_plans[i].interval >
6385 wiphy->max_sched_scan_plan_interval)
6386 return -EINVAL;
6387
6388 if (plan[NL80211_SCHED_SCAN_PLAN_ITERATIONS]) {
6389 request->scan_plans[i].iterations =
6390 nla_get_u32(plan[NL80211_SCHED_SCAN_PLAN_ITERATIONS]);
6391 if (!request->scan_plans[i].iterations ||
6392 (request->scan_plans[i].iterations >
6393 wiphy->max_sched_scan_plan_iterations))
6394 return -EINVAL;
6395 } else if (i < n_plans - 1) {
6396 /*
6397 * All scan plans but the last one must specify
6398 * a finite number of iterations
6399 */
6400 return -EINVAL;
6401 }
6402
6403 i++;
6404 }
6405
6406 /*
6407 * The last scan plan must not specify the number of
6408 * iterations, it is supposed to run infinitely
6409 */
6410 if (request->scan_plans[n_plans - 1].iterations)
6411 return -EINVAL;
6412
6413 return 0;
6414}
6415
Luciano Coelho256da022014-11-10 16:13:46 +02006416static struct cfg80211_sched_scan_request *
Johannes Bergad2b26a2014-06-12 21:39:05 +02006417nl80211_parse_sched_scan(struct wiphy *wiphy, struct wireless_dev *wdev,
Luciano Coelho256da022014-11-10 16:13:46 +02006418 struct nlattr **attrs)
Luciano Coelho807f8a82011-05-11 17:09:35 +03006419{
6420 struct cfg80211_sched_scan_request *request;
Luciano Coelho807f8a82011-05-11 17:09:35 +03006421 struct nlattr *attr;
Avraham Stern3b06d272015-10-12 09:51:34 +03006422 int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i, n_plans = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +02006423 enum nl80211_band band;
Luciano Coelho807f8a82011-05-11 17:09:35 +03006424 size_t ie_len;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006425 struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
Johannes Bergea73cbc2014-01-24 10:53:53 +01006426 s32 default_match_rssi = NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelho807f8a82011-05-11 17:09:35 +03006427
Luciano Coelho256da022014-11-10 16:13:46 +02006428 if (!is_valid_ie_attr(attrs[NL80211_ATTR_IE]))
6429 return ERR_PTR(-EINVAL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006430
Luciano Coelho256da022014-11-10 16:13:46 +02006431 if (attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03006432 n_channels = validate_scan_freqs(
Luciano Coelho256da022014-11-10 16:13:46 +02006433 attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006434 if (!n_channels)
Luciano Coelho256da022014-11-10 16:13:46 +02006435 return ERR_PTR(-EINVAL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006436 } else {
Ilan Peerbdfbec22014-01-09 11:37:23 +02006437 n_channels = ieee80211_get_num_supported_channels(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006438 }
6439
Luciano Coelho256da022014-11-10 16:13:46 +02006440 if (attrs[NL80211_ATTR_SCAN_SSIDS])
6441 nla_for_each_nested(attr, attrs[NL80211_ATTR_SCAN_SSIDS],
Luciano Coelho807f8a82011-05-11 17:09:35 +03006442 tmp)
6443 n_ssids++;
6444
Luciano Coelho93b6aa62011-07-13 14:57:28 +03006445 if (n_ssids > wiphy->max_sched_scan_ssids)
Luciano Coelho256da022014-11-10 16:13:46 +02006446 return ERR_PTR(-EINVAL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006447
Johannes Bergea73cbc2014-01-24 10:53:53 +01006448 /*
6449 * First, count the number of 'real' matchsets. Due to an issue with
6450 * the old implementation, matchsets containing only the RSSI attribute
6451 * (NL80211_SCHED_SCAN_MATCH_ATTR_RSSI) are considered as the 'default'
6452 * RSSI for all matchsets, rather than their own matchset for reporting
6453 * all APs with a strong RSSI. This is needed to be compatible with
6454 * older userspace that treated a matchset with only the RSSI as the
6455 * global RSSI for all other matchsets - if there are other matchsets.
6456 */
Luciano Coelho256da022014-11-10 16:13:46 +02006457 if (attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006458 nla_for_each_nested(attr,
Luciano Coelho256da022014-11-10 16:13:46 +02006459 attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
Johannes Bergea73cbc2014-01-24 10:53:53 +01006460 tmp) {
6461 struct nlattr *rssi;
6462
6463 err = nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
6464 nla_data(attr), nla_len(attr),
6465 nl80211_match_policy);
6466 if (err)
Luciano Coelho256da022014-11-10 16:13:46 +02006467 return ERR_PTR(err);
Johannes Bergea73cbc2014-01-24 10:53:53 +01006468 /* add other standalone attributes here */
6469 if (tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID]) {
6470 n_match_sets++;
6471 continue;
6472 }
6473 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
6474 if (rssi)
6475 default_match_rssi = nla_get_s32(rssi);
6476 }
6477 }
6478
6479 /* However, if there's no other matchset, add the RSSI one */
6480 if (!n_match_sets && default_match_rssi != NL80211_SCAN_RSSI_THOLD_OFF)
6481 n_match_sets = 1;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006482
6483 if (n_match_sets > wiphy->max_match_sets)
Luciano Coelho256da022014-11-10 16:13:46 +02006484 return ERR_PTR(-EINVAL);
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006485
Luciano Coelho256da022014-11-10 16:13:46 +02006486 if (attrs[NL80211_ATTR_IE])
6487 ie_len = nla_len(attrs[NL80211_ATTR_IE]);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006488 else
6489 ie_len = 0;
6490
Luciano Coelho5a865ba2011-07-13 14:57:29 +03006491 if (ie_len > wiphy->max_sched_scan_ie_len)
Luciano Coelho256da022014-11-10 16:13:46 +02006492 return ERR_PTR(-EINVAL);
Luciano Coelhoc10841c2011-06-30 08:32:41 +03006493
Avraham Stern3b06d272015-10-12 09:51:34 +03006494 if (attrs[NL80211_ATTR_SCHED_SCAN_PLANS]) {
6495 /*
6496 * NL80211_ATTR_SCHED_SCAN_INTERVAL must not be specified since
6497 * each scan plan already specifies its own interval
6498 */
6499 if (attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
6500 return ERR_PTR(-EINVAL);
6501
6502 nla_for_each_nested(attr,
6503 attrs[NL80211_ATTR_SCHED_SCAN_PLANS], tmp)
6504 n_plans++;
6505 } else {
6506 /*
6507 * The scan interval attribute is kept for backward
6508 * compatibility. If no scan plans are specified and sched scan
6509 * interval is specified, one scan plan will be set with this
6510 * scan interval and infinite number of iterations.
6511 */
6512 if (!attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
6513 return ERR_PTR(-EINVAL);
6514
6515 n_plans = 1;
6516 }
6517
6518 if (!n_plans || n_plans > wiphy->max_sched_scan_plans)
6519 return ERR_PTR(-EINVAL);
6520
Luciano Coelho807f8a82011-05-11 17:09:35 +03006521 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03006522 + sizeof(*request->ssids) * n_ssids
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006523 + sizeof(*request->match_sets) * n_match_sets
Avraham Stern3b06d272015-10-12 09:51:34 +03006524 + sizeof(*request->scan_plans) * n_plans
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03006525 + sizeof(*request->channels) * n_channels
Luciano Coelho807f8a82011-05-11 17:09:35 +03006526 + ie_len, GFP_KERNEL);
Luciano Coelho256da022014-11-10 16:13:46 +02006527 if (!request)
6528 return ERR_PTR(-ENOMEM);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006529
6530 if (n_ssids)
6531 request->ssids = (void *)&request->channels[n_channels];
6532 request->n_ssids = n_ssids;
6533 if (ie_len) {
Johannes Berg13874e42015-01-23 11:25:20 +01006534 if (n_ssids)
Luciano Coelho807f8a82011-05-11 17:09:35 +03006535 request->ie = (void *)(request->ssids + n_ssids);
6536 else
6537 request->ie = (void *)(request->channels + n_channels);
6538 }
6539
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006540 if (n_match_sets) {
6541 if (request->ie)
6542 request->match_sets = (void *)(request->ie + ie_len);
Johannes Berg13874e42015-01-23 11:25:20 +01006543 else if (n_ssids)
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006544 request->match_sets =
6545 (void *)(request->ssids + n_ssids);
6546 else
6547 request->match_sets =
6548 (void *)(request->channels + n_channels);
6549 }
6550 request->n_match_sets = n_match_sets;
6551
Avraham Stern3b06d272015-10-12 09:51:34 +03006552 if (n_match_sets)
6553 request->scan_plans = (void *)(request->match_sets +
6554 n_match_sets);
6555 else if (request->ie)
6556 request->scan_plans = (void *)(request->ie + ie_len);
6557 else if (n_ssids)
6558 request->scan_plans = (void *)(request->ssids + n_ssids);
6559 else
6560 request->scan_plans = (void *)(request->channels + n_channels);
6561
6562 request->n_scan_plans = n_plans;
6563
Luciano Coelho807f8a82011-05-11 17:09:35 +03006564 i = 0;
Luciano Coelho256da022014-11-10 16:13:46 +02006565 if (attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03006566 /* user specified, bail out if channel not found */
6567 nla_for_each_nested(attr,
Luciano Coelho256da022014-11-10 16:13:46 +02006568 attrs[NL80211_ATTR_SCAN_FREQUENCIES],
Luciano Coelho807f8a82011-05-11 17:09:35 +03006569 tmp) {
6570 struct ieee80211_channel *chan;
6571
6572 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
6573
6574 if (!chan) {
6575 err = -EINVAL;
6576 goto out_free;
6577 }
6578
6579 /* ignore disabled channels */
6580 if (chan->flags & IEEE80211_CHAN_DISABLED)
6581 continue;
6582
6583 request->channels[i] = chan;
6584 i++;
6585 }
6586 } else {
6587 /* all channels */
Johannes Berg57fbcce2016-04-12 15:56:15 +02006588 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03006589 int j;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07006590
Luciano Coelho807f8a82011-05-11 17:09:35 +03006591 if (!wiphy->bands[band])
6592 continue;
6593 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
6594 struct ieee80211_channel *chan;
6595
6596 chan = &wiphy->bands[band]->channels[j];
6597
6598 if (chan->flags & IEEE80211_CHAN_DISABLED)
6599 continue;
6600
6601 request->channels[i] = chan;
6602 i++;
6603 }
6604 }
6605 }
6606
6607 if (!i) {
6608 err = -EINVAL;
6609 goto out_free;
6610 }
6611
6612 request->n_channels = i;
6613
6614 i = 0;
Johannes Berg13874e42015-01-23 11:25:20 +01006615 if (n_ssids) {
Luciano Coelho256da022014-11-10 16:13:46 +02006616 nla_for_each_nested(attr, attrs[NL80211_ATTR_SCAN_SSIDS],
Luciano Coelho807f8a82011-05-11 17:09:35 +03006617 tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03006618 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03006619 err = -EINVAL;
6620 goto out_free;
6621 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03006622 request->ssids[i].ssid_len = nla_len(attr);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006623 memcpy(request->ssids[i].ssid, nla_data(attr),
6624 nla_len(attr));
Luciano Coelho807f8a82011-05-11 17:09:35 +03006625 i++;
6626 }
6627 }
6628
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006629 i = 0;
Luciano Coelho256da022014-11-10 16:13:46 +02006630 if (attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006631 nla_for_each_nested(attr,
Luciano Coelho256da022014-11-10 16:13:46 +02006632 attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006633 tmp) {
Thomas Pedersen88e920b2012-06-21 11:09:54 -07006634 struct nlattr *ssid, *rssi;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006635
Johannes Bergae811e22014-01-24 10:17:47 +01006636 err = nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
6637 nla_data(attr), nla_len(attr),
6638 nl80211_match_policy);
6639 if (err)
6640 goto out_free;
Johannes Berg4a4ab0d2012-06-13 11:17:11 +02006641 ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006642 if (ssid) {
Johannes Bergea73cbc2014-01-24 10:53:53 +01006643 if (WARN_ON(i >= n_match_sets)) {
6644 /* this indicates a programming error,
6645 * the loop above should have verified
6646 * things properly
6647 */
6648 err = -EINVAL;
6649 goto out_free;
6650 }
6651
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006652 if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) {
6653 err = -EINVAL;
6654 goto out_free;
6655 }
6656 memcpy(request->match_sets[i].ssid.ssid,
6657 nla_data(ssid), nla_len(ssid));
6658 request->match_sets[i].ssid.ssid_len =
6659 nla_len(ssid);
Kirtika Ruchandani56ab3642016-05-29 19:54:10 -07006660 /* special attribute - old implementation w/a */
Johannes Bergea73cbc2014-01-24 10:53:53 +01006661 request->match_sets[i].rssi_thold =
6662 default_match_rssi;
6663 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
6664 if (rssi)
6665 request->match_sets[i].rssi_thold =
6666 nla_get_s32(rssi);
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006667 }
6668 i++;
6669 }
Johannes Bergea73cbc2014-01-24 10:53:53 +01006670
6671 /* there was no other matchset, so the RSSI one is alone */
Luciano Coelhof89f46c2014-12-01 11:32:09 +02006672 if (i == 0 && n_match_sets)
Johannes Bergea73cbc2014-01-24 10:53:53 +01006673 request->match_sets[0].rssi_thold = default_match_rssi;
6674
6675 request->min_rssi_thold = INT_MAX;
6676 for (i = 0; i < n_match_sets; i++)
6677 request->min_rssi_thold =
6678 min(request->match_sets[i].rssi_thold,
6679 request->min_rssi_thold);
6680 } else {
6681 request->min_rssi_thold = NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03006682 }
6683
Johannes Berg9900e482014-02-04 21:01:25 +01006684 if (ie_len) {
6685 request->ie_len = ie_len;
Luciano Coelho807f8a82011-05-11 17:09:35 +03006686 memcpy((void *)request->ie,
Luciano Coelho256da022014-11-10 16:13:46 +02006687 nla_data(attrs[NL80211_ATTR_IE]),
Luciano Coelho807f8a82011-05-11 17:09:35 +03006688 request->ie_len);
6689 }
6690
Luciano Coelho256da022014-11-10 16:13:46 +02006691 if (attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07006692 request->flags = nla_get_u32(
Luciano Coelho256da022014-11-10 16:13:46 +02006693 attrs[NL80211_ATTR_SCAN_FLAGS]);
Johannes Berg00c3a6e2013-10-26 17:14:38 +02006694 if ((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
6695 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) {
Sam Leffler46856bb2012-10-11 21:03:32 -07006696 err = -EOPNOTSUPP;
6697 goto out_free;
6698 }
Johannes Bergad2b26a2014-06-12 21:39:05 +02006699
6700 if (request->flags & NL80211_SCAN_FLAG_RANDOM_ADDR) {
6701 u32 flg = NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR;
6702
6703 if (!wdev) /* must be net-detect */
6704 flg = NL80211_FEATURE_ND_RANDOM_MAC_ADDR;
6705
6706 if (!(wiphy->features & flg)) {
6707 err = -EOPNOTSUPP;
6708 goto out_free;
6709 }
6710
6711 if (wdev && wdev->current_bss) {
6712 err = -EOPNOTSUPP;
6713 goto out_free;
6714 }
6715
6716 err = nl80211_parse_random_mac(attrs, request->mac_addr,
6717 request->mac_addr_mask);
6718 if (err)
6719 goto out_free;
6720 }
Sam Leffler46856bb2012-10-11 21:03:32 -07006721 }
Sam Lefflered4737712012-10-11 21:03:31 -07006722
Luciano Coelho9c748932015-01-16 16:04:09 +02006723 if (attrs[NL80211_ATTR_SCHED_SCAN_DELAY])
6724 request->delay =
6725 nla_get_u32(attrs[NL80211_ATTR_SCHED_SCAN_DELAY]);
6726
Avraham Stern3b06d272015-10-12 09:51:34 +03006727 err = nl80211_parse_sched_scan_plans(wiphy, n_plans, request, attrs);
6728 if (err)
6729 goto out_free;
6730
Sam Leffler15d60302012-10-11 21:03:34 -07006731 request->scan_start = jiffies;
Luciano Coelho807f8a82011-05-11 17:09:35 +03006732
Luciano Coelho256da022014-11-10 16:13:46 +02006733 return request;
Luciano Coelho807f8a82011-05-11 17:09:35 +03006734
6735out_free:
6736 kfree(request);
Luciano Coelho256da022014-11-10 16:13:46 +02006737 return ERR_PTR(err);
6738}
6739
6740static int nl80211_start_sched_scan(struct sk_buff *skb,
6741 struct genl_info *info)
6742{
6743 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6744 struct net_device *dev = info->user_ptr[1];
Johannes Bergad2b26a2014-06-12 21:39:05 +02006745 struct wireless_dev *wdev = dev->ieee80211_ptr;
Jukka Rissanen31a60ed2014-12-15 13:25:38 +02006746 struct cfg80211_sched_scan_request *sched_scan_req;
Luciano Coelho256da022014-11-10 16:13:46 +02006747 int err;
6748
6749 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
6750 !rdev->ops->sched_scan_start)
6751 return -EOPNOTSUPP;
6752
6753 if (rdev->sched_scan_req)
6754 return -EINPROGRESS;
6755
Jukka Rissanen31a60ed2014-12-15 13:25:38 +02006756 sched_scan_req = nl80211_parse_sched_scan(&rdev->wiphy, wdev,
6757 info->attrs);
6758
6759 err = PTR_ERR_OR_ZERO(sched_scan_req);
Luciano Coelho256da022014-11-10 16:13:46 +02006760 if (err)
6761 goto out_err;
6762
Jukka Rissanen31a60ed2014-12-15 13:25:38 +02006763 err = rdev_sched_scan_start(rdev, dev, sched_scan_req);
Luciano Coelho256da022014-11-10 16:13:46 +02006764 if (err)
6765 goto out_free;
6766
Jukka Rissanen31a60ed2014-12-15 13:25:38 +02006767 sched_scan_req->dev = dev;
6768 sched_scan_req->wiphy = &rdev->wiphy;
6769
Jukka Rissanen93a1e862014-12-15 13:25:39 +02006770 if (info->attrs[NL80211_ATTR_SOCKET_OWNER])
6771 sched_scan_req->owner_nlportid = info->snd_portid;
6772
Jukka Rissanen31a60ed2014-12-15 13:25:38 +02006773 rcu_assign_pointer(rdev->sched_scan_req, sched_scan_req);
Luciano Coelho256da022014-11-10 16:13:46 +02006774
6775 nl80211_send_sched_scan(rdev, dev,
6776 NL80211_CMD_START_SCHED_SCAN);
6777 return 0;
6778
6779out_free:
Jukka Rissanen31a60ed2014-12-15 13:25:38 +02006780 kfree(sched_scan_req);
Luciano Coelho256da022014-11-10 16:13:46 +02006781out_err:
Luciano Coelho807f8a82011-05-11 17:09:35 +03006782 return err;
6783}
6784
6785static int nl80211_stop_sched_scan(struct sk_buff *skb,
6786 struct genl_info *info)
6787{
6788 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6789
6790 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
6791 !rdev->ops->sched_scan_stop)
6792 return -EOPNOTSUPP;
6793
Johannes Berg5fe231e2013-05-08 21:45:15 +02006794 return __cfg80211_stop_sched_scan(rdev, false);
Luciano Coelho807f8a82011-05-11 17:09:35 +03006795}
6796
Simon Wunderlich04f39042013-02-08 18:16:19 +01006797static int nl80211_start_radar_detection(struct sk_buff *skb,
6798 struct genl_info *info)
6799{
6800 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6801 struct net_device *dev = info->user_ptr[1];
6802 struct wireless_dev *wdev = dev->ieee80211_ptr;
6803 struct cfg80211_chan_def chandef;
Luis R. Rodriguez55f74352013-11-25 20:56:10 +01006804 enum nl80211_dfs_regions dfs_region;
Janusz Dziedzic31559f32014-02-21 19:46:13 +01006805 unsigned int cac_time_ms;
Simon Wunderlich04f39042013-02-08 18:16:19 +01006806 int err;
6807
Luis R. Rodriguez55f74352013-11-25 20:56:10 +01006808 dfs_region = reg_get_dfs_region(wdev->wiphy);
6809 if (dfs_region == NL80211_DFS_UNSET)
6810 return -EINVAL;
6811
Simon Wunderlich04f39042013-02-08 18:16:19 +01006812 err = nl80211_parse_chandef(rdev, info, &chandef);
6813 if (err)
6814 return err;
6815
Simon Wunderlichff311bc2013-09-03 19:43:18 +02006816 if (netif_carrier_ok(dev))
6817 return -EBUSY;
6818
Simon Wunderlich04f39042013-02-08 18:16:19 +01006819 if (wdev->cac_started)
6820 return -EBUSY;
6821
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02006822 err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef,
Luciano Coelho00ec75f2014-05-15 13:05:39 +03006823 wdev->iftype);
Simon Wunderlich04f39042013-02-08 18:16:19 +01006824 if (err < 0)
6825 return err;
6826
6827 if (err == 0)
6828 return -EINVAL;
6829
Janusz Dziedzicfe7c3a12013-11-05 14:48:48 +01006830 if (!cfg80211_chandef_dfs_usable(wdev->wiphy, &chandef))
Simon Wunderlich04f39042013-02-08 18:16:19 +01006831 return -EINVAL;
6832
6833 if (!rdev->ops->start_radar_detection)
6834 return -EOPNOTSUPP;
6835
Janusz Dziedzic31559f32014-02-21 19:46:13 +01006836 cac_time_ms = cfg80211_chandef_dfs_cac_time(&rdev->wiphy, &chandef);
6837 if (WARN_ON(!cac_time_ms))
6838 cac_time_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
6839
Ilan Peera1056b12015-10-22 22:27:46 +03006840 err = rdev_start_radar_detection(rdev, dev, &chandef, cac_time_ms);
Simon Wunderlich04f39042013-02-08 18:16:19 +01006841 if (!err) {
Michal Kazior9e0e2962014-01-29 14:22:27 +01006842 wdev->chandef = chandef;
Simon Wunderlich04f39042013-02-08 18:16:19 +01006843 wdev->cac_started = true;
6844 wdev->cac_start_time = jiffies;
Janusz Dziedzic31559f32014-02-21 19:46:13 +01006845 wdev->cac_time_ms = cac_time_ms;
Simon Wunderlich04f39042013-02-08 18:16:19 +01006846 }
Simon Wunderlich04f39042013-02-08 18:16:19 +01006847 return err;
6848}
6849
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006850static int nl80211_channel_switch(struct sk_buff *skb, struct genl_info *info)
6851{
6852 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6853 struct net_device *dev = info->user_ptr[1];
6854 struct wireless_dev *wdev = dev->ieee80211_ptr;
6855 struct cfg80211_csa_settings params;
6856 /* csa_attrs is defined static to avoid waste of stack size - this
6857 * function is called under RTNL lock, so this should not be a problem.
6858 */
6859 static struct nlattr *csa_attrs[NL80211_ATTR_MAX+1];
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006860 int err;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006861 bool need_new_beacon = false;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006862 int len, i;
Luciano Coelho252e07c2014-10-08 09:48:34 +03006863 u32 cs_count;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006864
6865 if (!rdev->ops->channel_switch ||
6866 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH))
6867 return -EOPNOTSUPP;
6868
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006869 switch (dev->ieee80211_ptr->iftype) {
6870 case NL80211_IFTYPE_AP:
6871 case NL80211_IFTYPE_P2P_GO:
6872 need_new_beacon = true;
6873
6874 /* useless if AP is not running */
6875 if (!wdev->beacon_interval)
Johannes Berg1ff79df2014-01-22 10:05:27 +01006876 return -ENOTCONN;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006877 break;
6878 case NL80211_IFTYPE_ADHOC:
Johannes Berg1ff79df2014-01-22 10:05:27 +01006879 if (!wdev->ssid_len)
6880 return -ENOTCONN;
6881 break;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07006882 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg1ff79df2014-01-22 10:05:27 +01006883 if (!wdev->mesh_id_len)
6884 return -ENOTCONN;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006885 break;
6886 default:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006887 return -EOPNOTSUPP;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006888 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006889
6890 memset(&params, 0, sizeof(params));
6891
6892 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
6893 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
6894 return -EINVAL;
6895
6896 /* only important for AP, IBSS and mesh create IEs internally */
Andrei Otcheretianskid0a361a2013-10-17 10:52:17 +02006897 if (need_new_beacon && !info->attrs[NL80211_ATTR_CSA_IES])
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006898 return -EINVAL;
6899
Luciano Coelho252e07c2014-10-08 09:48:34 +03006900 /* Even though the attribute is u32, the specification says
6901 * u8, so let's make sure we don't overflow.
6902 */
6903 cs_count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
6904 if (cs_count > 255)
6905 return -EINVAL;
6906
6907 params.count = cs_count;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006908
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006909 if (!need_new_beacon)
6910 goto skip_beacons;
6911
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006912 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
6913 if (err)
6914 return err;
6915
6916 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
6917 info->attrs[NL80211_ATTR_CSA_IES],
6918 nl80211_policy);
6919 if (err)
6920 return err;
6921
6922 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
6923 if (err)
6924 return err;
6925
6926 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
6927 return -EINVAL;
6928
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006929 len = nla_len(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
6930 if (!len || (len % sizeof(u16)))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006931 return -EINVAL;
6932
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006933 params.n_counter_offsets_beacon = len / sizeof(u16);
6934 if (rdev->wiphy.max_num_csa_counters &&
6935 (params.n_counter_offsets_beacon >
6936 rdev->wiphy.max_num_csa_counters))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006937 return -EINVAL;
6938
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006939 params.counter_offsets_beacon =
6940 nla_data(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
6941
6942 /* sanity checks - counters should fit and be the same */
6943 for (i = 0; i < params.n_counter_offsets_beacon; i++) {
6944 u16 offset = params.counter_offsets_beacon[i];
6945
6946 if (offset >= params.beacon_csa.tail_len)
6947 return -EINVAL;
6948
6949 if (params.beacon_csa.tail[offset] != params.count)
6950 return -EINVAL;
6951 }
6952
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006953 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006954 len = nla_len(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
6955 if (!len || (len % sizeof(u16)))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006956 return -EINVAL;
6957
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006958 params.n_counter_offsets_presp = len / sizeof(u16);
6959 if (rdev->wiphy.max_num_csa_counters &&
6960 (params.n_counter_offsets_beacon >
6961 rdev->wiphy.max_num_csa_counters))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006962 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006963
6964 params.counter_offsets_presp =
6965 nla_data(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
6966
6967 /* sanity checks - counters should fit and be the same */
6968 for (i = 0; i < params.n_counter_offsets_presp; i++) {
6969 u16 offset = params.counter_offsets_presp[i];
6970
6971 if (offset >= params.beacon_csa.probe_resp_len)
6972 return -EINVAL;
6973
6974 if (params.beacon_csa.probe_resp[offset] !=
6975 params.count)
6976 return -EINVAL;
6977 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006978 }
6979
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006980skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006981 err = nl80211_parse_chandef(rdev, info, &params.chandef);
6982 if (err)
6983 return err;
6984
Arik Nemtsov923b3522015-07-08 15:41:44 +03006985 if (!cfg80211_reg_can_beacon_relax(&rdev->wiphy, &params.chandef,
6986 wdev->iftype))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006987 return -EINVAL;
6988
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02006989 err = cfg80211_chandef_dfs_required(wdev->wiphy,
6990 &params.chandef,
6991 wdev->iftype);
6992 if (err < 0)
6993 return err;
6994
Fabian Frederickdcc6c2f2014-10-25 17:57:35 +02006995 if (err > 0)
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02006996 params.radar_required = true;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006997
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006998 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
6999 params.block_tx = true;
7000
Simon Wunderlichc56589e2013-11-21 18:19:49 +01007001 wdev_lock(wdev);
7002 err = rdev_channel_switch(rdev, dev, &params);
7003 wdev_unlock(wdev);
7004
7005 return err;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02007006}
7007
Johannes Berg9720bb32011-06-21 09:45:33 +02007008static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
7009 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01007010 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02007011 struct wireless_dev *wdev,
7012 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01007013{
Johannes Berg48ab9052009-07-10 18:42:31 +02007014 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01007015 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01007016 void *hdr;
7017 struct nlattr *bss;
Johannes Berg48ab9052009-07-10 18:42:31 +02007018
7019 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01007020
Eric W. Biederman15e47302012-09-07 20:12:54 +00007021 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01007022 NL80211_CMD_NEW_SCAN_RESULTS);
7023 if (!hdr)
7024 return -1;
7025
Johannes Berg9720bb32011-06-21 09:45:33 +02007026 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
7027
Johannes Berg97990a02013-04-19 01:02:55 +02007028 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
7029 goto nla_put_failure;
7030 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007031 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
7032 goto nla_put_failure;
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007033 if (nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
7034 NL80211_ATTR_PAD))
Johannes Berg97990a02013-04-19 01:02:55 +02007035 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01007036
7037 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
7038 if (!bss)
7039 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04007040 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01007041 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04007042 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01007043
7044 rcu_read_lock();
Johannes Berg0e227082014-08-12 20:34:30 +02007045 /* indicate whether we have probe response data or not */
7046 if (rcu_access_pointer(res->proberesp_ies) &&
7047 nla_put_flag(msg, NL80211_BSS_PRESP_DATA))
7048 goto fail_unlock_rcu;
7049
7050 /* this pointer prefers to be pointed to probe response data
7051 * but is always valid
7052 */
Johannes Berg9caf0362012-11-29 01:25:20 +01007053 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01007054 if (ies) {
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007055 if (nla_put_u64_64bit(msg, NL80211_BSS_TSF, ies->tsf,
7056 NL80211_BSS_PAD))
Johannes Berg8cef2c92013-02-05 16:54:31 +01007057 goto fail_unlock_rcu;
Johannes Berg8cef2c92013-02-05 16:54:31 +01007058 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
7059 ies->len, ies->data))
7060 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01007061 }
Johannes Berg0e227082014-08-12 20:34:30 +02007062
7063 /* and this pointer is always (unless driver didn't know) beacon data */
Johannes Berg9caf0362012-11-29 01:25:20 +01007064 ies = rcu_dereference(res->beacon_ies);
Johannes Berg0e227082014-08-12 20:34:30 +02007065 if (ies && ies->from_beacon) {
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007066 if (nla_put_u64_64bit(msg, NL80211_BSS_BEACON_TSF, ies->tsf,
7067 NL80211_BSS_PAD))
Johannes Berg8cef2c92013-02-05 16:54:31 +01007068 goto fail_unlock_rcu;
7069 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
7070 ies->len, ies->data))
7071 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01007072 }
7073 rcu_read_unlock();
7074
David S. Miller9360ffd2012-03-29 04:41:26 -04007075 if (res->beacon_interval &&
7076 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
7077 goto nla_put_failure;
7078 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
7079 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02007080 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04007081 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
7082 jiffies_to_msecs(jiffies - intbss->ts)))
7083 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01007084
Avraham Stern1d762502016-07-05 17:10:13 +03007085 if (intbss->parent_tsf &&
7086 (nla_put_u64_64bit(msg, NL80211_BSS_PARENT_TSF,
7087 intbss->parent_tsf, NL80211_BSS_PAD) ||
7088 nla_put(msg, NL80211_BSS_PARENT_BSSID, ETH_ALEN,
7089 intbss->parent_bssid)))
7090 goto nla_put_failure;
7091
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02007092 if (intbss->ts_boottime &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007093 nla_put_u64_64bit(msg, NL80211_BSS_LAST_SEEN_BOOTTIME,
7094 intbss->ts_boottime, NL80211_BSS_PAD))
Dmitry Shmidt6e19bc42015-10-07 11:32:53 +02007095 goto nla_put_failure;
7096
Johannes Berg77965c92009-02-18 18:45:06 +01007097 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01007098 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04007099 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
7100 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01007101 break;
7102 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04007103 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
7104 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01007105 break;
7106 default:
7107 break;
7108 }
7109
Johannes Berg48ab9052009-07-10 18:42:31 +02007110 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02007111 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02007112 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04007113 if (intbss == wdev->current_bss &&
7114 nla_put_u32(msg, NL80211_BSS_STATUS,
7115 NL80211_BSS_STATUS_ASSOCIATED))
7116 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02007117 break;
7118 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04007119 if (intbss == wdev->current_bss &&
7120 nla_put_u32(msg, NL80211_BSS_STATUS,
7121 NL80211_BSS_STATUS_IBSS_JOINED))
7122 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02007123 break;
7124 default:
7125 break;
7126 }
7127
Johannes Berg2a519312009-02-10 21:25:55 +01007128 nla_nest_end(msg, bss);
7129
Johannes Berg053c0952015-01-16 22:09:00 +01007130 genlmsg_end(msg, hdr);
7131 return 0;
Johannes Berg2a519312009-02-10 21:25:55 +01007132
Johannes Berg8cef2c92013-02-05 16:54:31 +01007133 fail_unlock_rcu:
7134 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01007135 nla_put_failure:
7136 genlmsg_cancel(msg, hdr);
7137 return -EMSGSIZE;
7138}
7139
Johannes Berg97990a02013-04-19 01:02:55 +02007140static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01007141{
Johannes Berg48ab9052009-07-10 18:42:31 +02007142 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01007143 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02007144 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02007145 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01007146 int err;
7147
Johannes Berg97990a02013-04-19 01:02:55 +02007148 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02007149 if (err)
7150 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01007151
Johannes Berg48ab9052009-07-10 18:42:31 +02007152 wdev_lock(wdev);
7153 spin_lock_bh(&rdev->bss_lock);
7154 cfg80211_bss_expire(rdev);
7155
Johannes Berg9720bb32011-06-21 09:45:33 +02007156 cb->seq = rdev->bss_generation;
7157
Johannes Berg48ab9052009-07-10 18:42:31 +02007158 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01007159 if (++idx <= start)
7160 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02007161 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01007162 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02007163 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01007164 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02007165 break;
Johannes Berg2a519312009-02-10 21:25:55 +01007166 }
7167 }
7168
Johannes Berg48ab9052009-07-10 18:42:31 +02007169 spin_unlock_bh(&rdev->bss_lock);
7170 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01007171
Johannes Berg97990a02013-04-19 01:02:55 +02007172 cb->args[2] = idx;
7173 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01007174
Johannes Berg67748892010-10-04 21:14:06 +02007175 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01007176}
7177
Eric W. Biederman15e47302012-09-07 20:12:54 +00007178static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Johannes Berg11f78ac2014-11-14 16:43:50 +01007179 int flags, struct net_device *dev,
7180 bool allow_radio_stats,
7181 struct survey_info *survey)
Holger Schurig61fa7132009-11-11 12:25:40 +01007182{
7183 void *hdr;
7184 struct nlattr *infoattr;
7185
Johannes Berg11f78ac2014-11-14 16:43:50 +01007186 /* skip radio stats if userspace didn't request them */
7187 if (!survey->channel && !allow_radio_stats)
7188 return 0;
7189
Eric W. Biederman15e47302012-09-07 20:12:54 +00007190 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01007191 NL80211_CMD_NEW_SURVEY_RESULTS);
7192 if (!hdr)
7193 return -ENOMEM;
7194
David S. Miller9360ffd2012-03-29 04:41:26 -04007195 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
7196 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01007197
7198 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
7199 if (!infoattr)
7200 goto nla_put_failure;
7201
Johannes Berg11f78ac2014-11-14 16:43:50 +01007202 if (survey->channel &&
7203 nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
David S. Miller9360ffd2012-03-29 04:41:26 -04007204 survey->channel->center_freq))
7205 goto nla_put_failure;
7206
7207 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
7208 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
7209 goto nla_put_failure;
7210 if ((survey->filled & SURVEY_INFO_IN_USE) &&
7211 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
7212 goto nla_put_failure;
Johannes Berg4ed20be2014-11-14 16:35:34 +01007213 if ((survey->filled & SURVEY_INFO_TIME) &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007214 nla_put_u64_64bit(msg, NL80211_SURVEY_INFO_TIME,
7215 survey->time, NL80211_SURVEY_INFO_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04007216 goto nla_put_failure;
Johannes Berg4ed20be2014-11-14 16:35:34 +01007217 if ((survey->filled & SURVEY_INFO_TIME_BUSY) &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007218 nla_put_u64_64bit(msg, NL80211_SURVEY_INFO_TIME_BUSY,
7219 survey->time_busy, NL80211_SURVEY_INFO_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04007220 goto nla_put_failure;
Johannes Berg4ed20be2014-11-14 16:35:34 +01007221 if ((survey->filled & SURVEY_INFO_TIME_EXT_BUSY) &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007222 nla_put_u64_64bit(msg, NL80211_SURVEY_INFO_TIME_EXT_BUSY,
7223 survey->time_ext_busy, NL80211_SURVEY_INFO_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04007224 goto nla_put_failure;
Johannes Berg4ed20be2014-11-14 16:35:34 +01007225 if ((survey->filled & SURVEY_INFO_TIME_RX) &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007226 nla_put_u64_64bit(msg, NL80211_SURVEY_INFO_TIME_RX,
7227 survey->time_rx, NL80211_SURVEY_INFO_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04007228 goto nla_put_failure;
Johannes Berg4ed20be2014-11-14 16:35:34 +01007229 if ((survey->filled & SURVEY_INFO_TIME_TX) &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007230 nla_put_u64_64bit(msg, NL80211_SURVEY_INFO_TIME_TX,
7231 survey->time_tx, NL80211_SURVEY_INFO_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04007232 goto nla_put_failure;
Johannes Berg052536a2014-11-14 16:44:11 +01007233 if ((survey->filled & SURVEY_INFO_TIME_SCAN) &&
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007234 nla_put_u64_64bit(msg, NL80211_SURVEY_INFO_TIME_SCAN,
7235 survey->time_scan, NL80211_SURVEY_INFO_PAD))
Johannes Berg052536a2014-11-14 16:44:11 +01007236 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01007237
7238 nla_nest_end(msg, infoattr);
7239
Johannes Berg053c0952015-01-16 22:09:00 +01007240 genlmsg_end(msg, hdr);
7241 return 0;
Holger Schurig61fa7132009-11-11 12:25:40 +01007242
7243 nla_put_failure:
7244 genlmsg_cancel(msg, hdr);
7245 return -EMSGSIZE;
7246}
7247
Johannes Berg11f78ac2014-11-14 16:43:50 +01007248static int nl80211_dump_survey(struct sk_buff *skb, struct netlink_callback *cb)
Holger Schurig61fa7132009-11-11 12:25:40 +01007249{
7250 struct survey_info survey;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08007251 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02007252 struct wireless_dev *wdev;
7253 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01007254 int res;
Johannes Berg11f78ac2014-11-14 16:43:50 +01007255 bool radio_stats;
Holger Schurig61fa7132009-11-11 12:25:40 +01007256
Zhao, Gang1b8ec872014-04-21 12:53:02 +08007257 res = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02007258 if (res)
7259 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01007260
Johannes Berg11f78ac2014-11-14 16:43:50 +01007261 /* prepare_wdev_dump parsed the attributes */
7262 radio_stats = nl80211_fam.attrbuf[NL80211_ATTR_SURVEY_RADIO_STATS];
7263
Johannes Berg97990a02013-04-19 01:02:55 +02007264 if (!wdev->netdev) {
7265 res = -EINVAL;
7266 goto out_err;
7267 }
7268
Zhao, Gang1b8ec872014-04-21 12:53:02 +08007269 if (!rdev->ops->dump_survey) {
Holger Schurig61fa7132009-11-11 12:25:40 +01007270 res = -EOPNOTSUPP;
7271 goto out_err;
7272 }
7273
7274 while (1) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08007275 res = rdev_dump_survey(rdev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01007276 if (res == -ENOENT)
7277 break;
7278 if (res)
7279 goto out_err;
7280
Johannes Berg11f78ac2014-11-14 16:43:50 +01007281 /* don't send disabled channels, but do send non-channel data */
7282 if (survey.channel &&
7283 survey.channel->flags & IEEE80211_CHAN_DISABLED) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07007284 survey_idx++;
7285 continue;
7286 }
7287
Holger Schurig61fa7132009-11-11 12:25:40 +01007288 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00007289 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01007290 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg11f78ac2014-11-14 16:43:50 +01007291 wdev->netdev, radio_stats, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01007292 goto out;
7293 survey_idx++;
7294 }
7295
7296 out:
Johannes Berg97990a02013-04-19 01:02:55 +02007297 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01007298 res = skb->len;
7299 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08007300 nl80211_finish_wdev_dump(rdev);
Holger Schurig61fa7132009-11-11 12:25:40 +01007301 return res;
7302}
7303
Samuel Ortizb23aa672009-07-01 21:26:54 +02007304static bool nl80211_valid_wpa_versions(u32 wpa_versions)
7305{
7306 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
7307 NL80211_WPA_VERSION_2));
7308}
7309
Jouni Malinen636a5d32009-03-19 13:39:22 +02007310static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
7311{
Johannes Berg4c476992010-10-04 21:36:35 +02007312 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7313 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02007314 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03007315 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
7316 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02007317 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02007318 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03007319 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007320
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007321 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7322 return -EINVAL;
7323
7324 if (!info->attrs[NL80211_ATTR_MAC])
7325 return -EINVAL;
7326
Jouni Malinen17780922009-03-27 20:52:47 +02007327 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
7328 return -EINVAL;
7329
Johannes Berg19957bb2009-07-02 17:20:43 +02007330 if (!info->attrs[NL80211_ATTR_SSID])
7331 return -EINVAL;
7332
7333 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7334 return -EINVAL;
7335
Johannes Bergfffd0932009-07-08 14:22:54 +02007336 err = nl80211_parse_key(info, &key);
7337 if (err)
7338 return err;
7339
7340 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02007341 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
7342 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02007343 if (!key.p.key || !key.p.key_len)
7344 return -EINVAL;
7345 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
7346 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
7347 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
7348 key.p.key_len != WLAN_KEY_LEN_WEP104))
7349 return -EINVAL;
7350 if (key.idx > 4)
7351 return -EINVAL;
7352 } else {
7353 key.p.key_len = 0;
7354 key.p.key = NULL;
7355 }
7356
Johannes Bergafea0b72010-08-10 09:46:42 +02007357 if (key.idx >= 0) {
7358 int i;
7359 bool ok = false;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07007360
Johannes Bergafea0b72010-08-10 09:46:42 +02007361 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
7362 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
7363 ok = true;
7364 break;
7365 }
7366 }
Johannes Berg4c476992010-10-04 21:36:35 +02007367 if (!ok)
7368 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02007369 }
7370
Johannes Berg4c476992010-10-04 21:36:35 +02007371 if (!rdev->ops->auth)
7372 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007373
Johannes Berg074ac8d2010-09-16 14:58:22 +02007374 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007375 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7376 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02007377
Johannes Berg19957bb2009-07-02 17:20:43 +02007378 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen664834d2014-01-15 00:01:44 +02007379 chan = nl80211_get_valid_chan(&rdev->wiphy,
7380 info->attrs[NL80211_ATTR_WIPHY_FREQ]);
7381 if (!chan)
Johannes Berg4c476992010-10-04 21:36:35 +02007382 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007383
Johannes Berg19957bb2009-07-02 17:20:43 +02007384 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
7385 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
7386
7387 if (info->attrs[NL80211_ATTR_IE]) {
7388 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7389 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
7390 }
7391
7392 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03007393 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02007394 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02007395
Jouni Malinene39e5b52012-09-30 19:29:39 +03007396 if (auth_type == NL80211_AUTHTYPE_SAE &&
7397 !info->attrs[NL80211_ATTR_SAE_DATA])
7398 return -EINVAL;
7399
7400 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
7401 if (auth_type != NL80211_AUTHTYPE_SAE)
7402 return -EINVAL;
7403 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
7404 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
7405 /* need to include at least Auth Transaction and Status Code */
7406 if (sae_data_len < 4)
7407 return -EINVAL;
7408 }
7409
Jouni Malinend5cdfac2010-04-04 09:37:19 +03007410 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
7411
Johannes Berg95de8172012-01-20 13:55:25 +01007412 /*
7413 * Since we no longer track auth state, ignore
7414 * requests to only change local state.
7415 */
7416 if (local_state_change)
7417 return 0;
7418
Johannes Berg91bf9b22013-05-15 17:44:01 +02007419 wdev_lock(dev->ieee80211_ptr);
7420 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
7421 ssid, ssid_len, ie, ie_len,
7422 key.p.key, key.p.key_len, key.idx,
7423 sae_data, sae_data_len);
7424 wdev_unlock(dev->ieee80211_ptr);
7425 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007426}
7427
Johannes Bergc0692b82010-08-27 14:26:53 +03007428static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
7429 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02007430 struct cfg80211_crypto_settings *settings,
7431 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02007432{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02007433 memset(settings, 0, sizeof(*settings));
7434
Samuel Ortizb23aa672009-07-01 21:26:54 +02007435 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
7436
Johannes Bergc0692b82010-08-27 14:26:53 +03007437 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
7438 u16 proto;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07007439
Johannes Bergc0692b82010-08-27 14:26:53 +03007440 proto = nla_get_u16(
7441 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
7442 settings->control_port_ethertype = cpu_to_be16(proto);
7443 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
7444 proto != ETH_P_PAE)
7445 return -EINVAL;
7446 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
7447 settings->control_port_no_encrypt = true;
7448 } else
7449 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
7450
Samuel Ortizb23aa672009-07-01 21:26:54 +02007451 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
7452 void *data;
7453 int len, i;
7454
7455 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
7456 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
7457 settings->n_ciphers_pairwise = len / sizeof(u32);
7458
7459 if (len % sizeof(u32))
7460 return -EINVAL;
7461
Johannes Berg3dc27d22009-07-02 21:36:37 +02007462 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02007463 return -EINVAL;
7464
7465 memcpy(settings->ciphers_pairwise, data, len);
7466
7467 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03007468 if (!cfg80211_supported_cipher_suite(
7469 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02007470 settings->ciphers_pairwise[i]))
7471 return -EINVAL;
7472 }
7473
7474 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
7475 settings->cipher_group =
7476 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03007477 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
7478 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02007479 return -EINVAL;
7480 }
7481
7482 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
7483 settings->wpa_versions =
7484 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
7485 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
7486 return -EINVAL;
7487 }
7488
7489 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
7490 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03007491 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007492
7493 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
7494 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
7495 settings->n_akm_suites = len / sizeof(u32);
7496
7497 if (len % sizeof(u32))
7498 return -EINVAL;
7499
Jouni Malinen1b9ca022011-09-21 16:13:07 +03007500 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
7501 return -EINVAL;
7502
Samuel Ortizb23aa672009-07-01 21:26:54 +02007503 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007504 }
7505
7506 return 0;
7507}
7508
Jouni Malinen636a5d32009-03-19 13:39:22 +02007509static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
7510{
Johannes Berg4c476992010-10-04 21:36:35 +02007511 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7512 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02007513 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01007514 struct cfg80211_assoc_request req = {};
7515 const u8 *bssid, *ssid;
7516 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007517
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007518 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7519 return -EINVAL;
7520
7521 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02007522 !info->attrs[NL80211_ATTR_SSID] ||
7523 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007524 return -EINVAL;
7525
Johannes Berg4c476992010-10-04 21:36:35 +02007526 if (!rdev->ops->assoc)
7527 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007528
Johannes Berg074ac8d2010-09-16 14:58:22 +02007529 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007530 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7531 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02007532
Johannes Berg19957bb2009-07-02 17:20:43 +02007533 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007534
Jouni Malinen664834d2014-01-15 00:01:44 +02007535 chan = nl80211_get_valid_chan(&rdev->wiphy,
7536 info->attrs[NL80211_ATTR_WIPHY_FREQ]);
7537 if (!chan)
Johannes Berg4c476992010-10-04 21:36:35 +02007538 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007539
Johannes Berg19957bb2009-07-02 17:20:43 +02007540 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
7541 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007542
7543 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01007544 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7545 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007546 }
7547
Jouni Malinendc6382c2009-05-06 22:09:37 +03007548 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02007549 enum nl80211_mfp mfp =
Jouni Malinendc6382c2009-05-06 22:09:37 +03007550 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02007551 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01007552 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02007553 else if (mfp != NL80211_MFP_NO)
7554 return -EINVAL;
Jouni Malinendc6382c2009-05-06 22:09:37 +03007555 }
7556
Johannes Berg3e5d7642009-07-07 14:37:26 +02007557 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01007558 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02007559
Ben Greear7e7c8922011-11-18 11:31:59 -08007560 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01007561 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08007562
7563 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01007564 memcpy(&req.ht_capa_mask,
7565 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
7566 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08007567
7568 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01007569 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08007570 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01007571 memcpy(&req.ht_capa,
7572 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
7573 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08007574 }
7575
Johannes Bergee2aca32013-02-21 17:36:01 +01007576 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01007577 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01007578
7579 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01007580 memcpy(&req.vht_capa_mask,
7581 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
7582 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01007583
7584 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01007585 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01007586 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01007587 memcpy(&req.vht_capa,
7588 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
7589 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01007590 }
7591
Assaf Kraussbab5ab72014-09-03 15:25:01 +03007592 if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
Beni Lev0c9ca112016-02-17 20:30:00 +02007593 if (!((rdev->wiphy.features &
7594 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) &&
7595 (rdev->wiphy.features & NL80211_FEATURE_QUIET)) &&
7596 !wiphy_ext_feature_isset(&rdev->wiphy,
7597 NL80211_EXT_FEATURE_RRM))
Assaf Kraussbab5ab72014-09-03 15:25:01 +03007598 return -EINVAL;
7599 req.flags |= ASSOC_REQ_USE_RRM;
7600 }
7601
Johannes Bergf62fab72013-02-21 20:09:09 +01007602 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02007603 if (!err) {
7604 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01007605 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
7606 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02007607 wdev_unlock(dev->ieee80211_ptr);
7608 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02007609
Jouni Malinen636a5d32009-03-19 13:39:22 +02007610 return err;
7611}
7612
7613static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
7614{
Johannes Berg4c476992010-10-04 21:36:35 +02007615 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7616 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02007617 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02007618 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02007619 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03007620 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007621
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007622 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7623 return -EINVAL;
7624
7625 if (!info->attrs[NL80211_ATTR_MAC])
7626 return -EINVAL;
7627
7628 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7629 return -EINVAL;
7630
Johannes Berg4c476992010-10-04 21:36:35 +02007631 if (!rdev->ops->deauth)
7632 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007633
Johannes Berg074ac8d2010-09-16 14:58:22 +02007634 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007635 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7636 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02007637
Johannes Berg19957bb2009-07-02 17:20:43 +02007638 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007639
Johannes Berg19957bb2009-07-02 17:20:43 +02007640 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7641 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007642 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02007643 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02007644 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02007645
7646 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02007647 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7648 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007649 }
7650
Jouni Malinend5cdfac2010-04-04 09:37:19 +03007651 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
7652
Johannes Berg91bf9b22013-05-15 17:44:01 +02007653 wdev_lock(dev->ieee80211_ptr);
7654 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
7655 local_state_change);
7656 wdev_unlock(dev->ieee80211_ptr);
7657 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007658}
7659
7660static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
7661{
Johannes Berg4c476992010-10-04 21:36:35 +02007662 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7663 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02007664 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02007665 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02007666 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03007667 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007668
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007669 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7670 return -EINVAL;
7671
7672 if (!info->attrs[NL80211_ATTR_MAC])
7673 return -EINVAL;
7674
7675 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7676 return -EINVAL;
7677
Johannes Berg4c476992010-10-04 21:36:35 +02007678 if (!rdev->ops->disassoc)
7679 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007680
Johannes Berg074ac8d2010-09-16 14:58:22 +02007681 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007682 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7683 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02007684
Johannes Berg19957bb2009-07-02 17:20:43 +02007685 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007686
Johannes Berg19957bb2009-07-02 17:20:43 +02007687 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7688 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01007689 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02007690 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02007691 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02007692
7693 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02007694 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7695 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02007696 }
7697
Jouni Malinend5cdfac2010-04-04 09:37:19 +03007698 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
7699
Johannes Berg91bf9b22013-05-15 17:44:01 +02007700 wdev_lock(dev->ieee80211_ptr);
7701 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
7702 local_state_change);
7703 wdev_unlock(dev->ieee80211_ptr);
7704 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02007705}
7706
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01007707static bool
7708nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
Johannes Berg57fbcce2016-04-12 15:56:15 +02007709 int mcast_rate[NUM_NL80211_BANDS],
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01007710 int rateval)
7711{
7712 struct wiphy *wiphy = &rdev->wiphy;
7713 bool found = false;
7714 int band, i;
7715
Johannes Berg57fbcce2016-04-12 15:56:15 +02007716 for (band = 0; band < NUM_NL80211_BANDS; band++) {
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01007717 struct ieee80211_supported_band *sband;
7718
7719 sband = wiphy->bands[band];
7720 if (!sband)
7721 continue;
7722
7723 for (i = 0; i < sband->n_bitrates; i++) {
7724 if (sband->bitrates[i].bitrate == rateval) {
7725 mcast_rate[band] = i + 1;
7726 found = true;
7727 break;
7728 }
7729 }
7730 }
7731
7732 return found;
7733}
7734
Johannes Berg04a773a2009-04-19 21:24:32 +02007735static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
7736{
Johannes Berg4c476992010-10-04 21:36:35 +02007737 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7738 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02007739 struct cfg80211_ibss_params ibss;
7740 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02007741 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02007742 int err;
7743
Johannes Berg8e30bc52009-04-22 17:45:38 +02007744 memset(&ibss, 0, sizeof(ibss));
7745
Johannes Berg04a773a2009-04-19 21:24:32 +02007746 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7747 return -EINVAL;
7748
Johannes Berg683b6d32012-11-08 21:25:48 +01007749 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02007750 !nla_len(info->attrs[NL80211_ATTR_SSID]))
7751 return -EINVAL;
7752
Johannes Berg8e30bc52009-04-22 17:45:38 +02007753 ibss.beacon_interval = 100;
7754
7755 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
7756 ibss.beacon_interval =
7757 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
7758 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
7759 return -EINVAL;
7760 }
7761
Johannes Berg4c476992010-10-04 21:36:35 +02007762 if (!rdev->ops->join_ibss)
7763 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02007764
Johannes Berg4c476992010-10-04 21:36:35 +02007765 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
7766 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02007767
Johannes Berg79c97e92009-07-07 03:56:12 +02007768 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02007769
Johannes Berg39193492011-09-16 13:45:25 +02007770 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02007771 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02007772
7773 if (!is_valid_ether_addr(ibss.bssid))
7774 return -EINVAL;
7775 }
Johannes Berg04a773a2009-04-19 21:24:32 +02007776 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
7777 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
7778
7779 if (info->attrs[NL80211_ATTR_IE]) {
7780 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7781 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
7782 }
7783
Johannes Berg683b6d32012-11-08 21:25:48 +01007784 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
7785 if (err)
7786 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01007787
Ilan Peer174e0cd2014-02-23 09:13:01 +02007788 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef,
7789 NL80211_IFTYPE_ADHOC))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01007790 return -EINVAL;
7791
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02007792 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02007793 case NL80211_CHAN_WIDTH_5:
7794 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02007795 case NL80211_CHAN_WIDTH_20_NOHT:
7796 break;
7797 case NL80211_CHAN_WIDTH_20:
7798 case NL80211_CHAN_WIDTH_40:
Janusz.Dziedzic@tieto.comffc11992015-02-21 16:52:39 +01007799 if (!(rdev->wiphy.features & NL80211_FEATURE_HT_IBSS))
7800 return -EINVAL;
7801 break;
7802 case NL80211_CHAN_WIDTH_80:
7803 case NL80211_CHAN_WIDTH_80P80:
7804 case NL80211_CHAN_WIDTH_160:
7805 if (!(rdev->wiphy.features & NL80211_FEATURE_HT_IBSS))
7806 return -EINVAL;
7807 if (!wiphy_ext_feature_isset(&rdev->wiphy,
7808 NL80211_EXT_FEATURE_VHT_IBSS))
7809 return -EINVAL;
7810 break;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02007811 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01007812 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02007813 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01007814
Johannes Berg04a773a2009-04-19 21:24:32 +02007815 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02007816 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02007817
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03007818 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
7819 u8 *rates =
7820 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7821 int n_rates =
7822 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7823 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01007824 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03007825
Johannes Berg34850ab2011-07-18 18:08:35 +02007826 err = ieee80211_get_ratemask(sband, rates, n_rates,
7827 &ibss.basic_rates);
7828 if (err)
7829 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03007830 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01007831
Simon Wunderlich803768f2013-06-28 10:39:58 +02007832 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
7833 memcpy(&ibss.ht_capa_mask,
7834 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
7835 sizeof(ibss.ht_capa_mask));
7836
7837 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
7838 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
7839 return -EINVAL;
7840 memcpy(&ibss.ht_capa,
7841 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
7842 sizeof(ibss.ht_capa));
7843 }
7844
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01007845 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
7846 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
7847 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
7848 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03007849
Johannes Berg4c476992010-10-04 21:36:35 +02007850 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05307851 bool no_ht = false;
7852
Johannes Berg4c476992010-10-04 21:36:35 +02007853 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05307854 info->attrs[NL80211_ATTR_KEYS],
7855 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02007856 if (IS_ERR(connkeys))
7857 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05307858
Johannes Berg3d9d1d62012-11-08 23:14:50 +01007859 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
7860 no_ht) {
Ola Olsson5e950a72016-02-11 01:00:22 +01007861 kzfree(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05307862 return -EINVAL;
7863 }
Johannes Berg4c476992010-10-04 21:36:35 +02007864 }
Johannes Berg04a773a2009-04-19 21:24:32 +02007865
Antonio Quartulli267335d2012-01-31 20:25:47 +01007866 ibss.control_port =
7867 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
7868
Simon Wunderlich5336fa82013-10-07 18:41:05 +02007869 ibss.userspace_handles_dfs =
7870 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
7871
Johannes Berg4c476992010-10-04 21:36:35 +02007872 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02007873 if (err)
Johannes Bergb47f6102014-09-10 13:39:54 +03007874 kzfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02007875 return err;
7876}
7877
7878static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
7879{
Johannes Berg4c476992010-10-04 21:36:35 +02007880 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7881 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02007882
Johannes Berg4c476992010-10-04 21:36:35 +02007883 if (!rdev->ops->leave_ibss)
7884 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02007885
Johannes Berg4c476992010-10-04 21:36:35 +02007886 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
7887 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02007888
Johannes Berg4c476992010-10-04 21:36:35 +02007889 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02007890}
7891
Antonio Quartullif4e583c2012-11-02 13:27:48 +01007892static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
7893{
7894 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7895 struct net_device *dev = info->user_ptr[1];
Johannes Berg57fbcce2016-04-12 15:56:15 +02007896 int mcast_rate[NUM_NL80211_BANDS];
Antonio Quartullif4e583c2012-11-02 13:27:48 +01007897 u32 nla_rate;
7898 int err;
7899
7900 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
Bertold Van den Bergh876dc932015-08-05 16:02:21 +02007901 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
7902 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_OCB)
Antonio Quartullif4e583c2012-11-02 13:27:48 +01007903 return -EOPNOTSUPP;
7904
7905 if (!rdev->ops->set_mcast_rate)
7906 return -EOPNOTSUPP;
7907
7908 memset(mcast_rate, 0, sizeof(mcast_rate));
7909
7910 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
7911 return -EINVAL;
7912
7913 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
7914 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
7915 return -EINVAL;
7916
Ilan Peera1056b12015-10-22 22:27:46 +03007917 err = rdev_set_mcast_rate(rdev, dev, mcast_rate);
Antonio Quartullif4e583c2012-11-02 13:27:48 +01007918
7919 return err;
7920}
7921
Johannes Bergad7e7182013-11-13 13:37:47 +01007922static struct sk_buff *
7923__cfg80211_alloc_vendor_skb(struct cfg80211_registered_device *rdev,
Ahmad Kholaif6c09e792015-02-26 15:26:53 +02007924 struct wireless_dev *wdev, int approxlen,
7925 u32 portid, u32 seq, enum nl80211_commands cmd,
Johannes Berg567ffc32013-12-18 14:43:31 +01007926 enum nl80211_attrs attr,
7927 const struct nl80211_vendor_cmd_info *info,
7928 gfp_t gfp)
Johannes Bergad7e7182013-11-13 13:37:47 +01007929{
7930 struct sk_buff *skb;
7931 void *hdr;
7932 struct nlattr *data;
7933
7934 skb = nlmsg_new(approxlen + 100, gfp);
7935 if (!skb)
7936 return NULL;
7937
7938 hdr = nl80211hdr_put(skb, portid, seq, 0, cmd);
7939 if (!hdr) {
7940 kfree_skb(skb);
7941 return NULL;
7942 }
7943
7944 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
7945 goto nla_put_failure;
Johannes Berg567ffc32013-12-18 14:43:31 +01007946
7947 if (info) {
7948 if (nla_put_u32(skb, NL80211_ATTR_VENDOR_ID,
7949 info->vendor_id))
7950 goto nla_put_failure;
7951 if (nla_put_u32(skb, NL80211_ATTR_VENDOR_SUBCMD,
7952 info->subcmd))
7953 goto nla_put_failure;
7954 }
7955
Ahmad Kholaif6c09e792015-02-26 15:26:53 +02007956 if (wdev) {
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02007957 if (nla_put_u64_64bit(skb, NL80211_ATTR_WDEV,
7958 wdev_id(wdev), NL80211_ATTR_PAD))
Ahmad Kholaif6c09e792015-02-26 15:26:53 +02007959 goto nla_put_failure;
7960 if (wdev->netdev &&
7961 nla_put_u32(skb, NL80211_ATTR_IFINDEX,
7962 wdev->netdev->ifindex))
7963 goto nla_put_failure;
7964 }
7965
Johannes Bergad7e7182013-11-13 13:37:47 +01007966 data = nla_nest_start(skb, attr);
7967
7968 ((void **)skb->cb)[0] = rdev;
7969 ((void **)skb->cb)[1] = hdr;
7970 ((void **)skb->cb)[2] = data;
7971
7972 return skb;
7973
7974 nla_put_failure:
7975 kfree_skb(skb);
7976 return NULL;
7977}
Antonio Quartullif4e583c2012-11-02 13:27:48 +01007978
Johannes Berge03ad6e2014-01-01 17:22:30 +01007979struct sk_buff *__cfg80211_alloc_event_skb(struct wiphy *wiphy,
Ahmad Kholaif6c09e792015-02-26 15:26:53 +02007980 struct wireless_dev *wdev,
Johannes Berge03ad6e2014-01-01 17:22:30 +01007981 enum nl80211_commands cmd,
7982 enum nl80211_attrs attr,
7983 int vendor_event_idx,
7984 int approxlen, gfp_t gfp)
7985{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08007986 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berge03ad6e2014-01-01 17:22:30 +01007987 const struct nl80211_vendor_cmd_info *info;
7988
7989 switch (cmd) {
7990 case NL80211_CMD_TESTMODE:
7991 if (WARN_ON(vendor_event_idx != -1))
7992 return NULL;
7993 info = NULL;
7994 break;
7995 case NL80211_CMD_VENDOR:
7996 if (WARN_ON(vendor_event_idx < 0 ||
7997 vendor_event_idx >= wiphy->n_vendor_events))
7998 return NULL;
7999 info = &wiphy->vendor_events[vendor_event_idx];
8000 break;
8001 default:
8002 WARN_ON(1);
8003 return NULL;
8004 }
8005
Ahmad Kholaif6c09e792015-02-26 15:26:53 +02008006 return __cfg80211_alloc_vendor_skb(rdev, wdev, approxlen, 0, 0,
Johannes Berge03ad6e2014-01-01 17:22:30 +01008007 cmd, attr, info, gfp);
8008}
8009EXPORT_SYMBOL(__cfg80211_alloc_event_skb);
8010
8011void __cfg80211_send_event_skb(struct sk_buff *skb, gfp_t gfp)
8012{
8013 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
8014 void *hdr = ((void **)skb->cb)[1];
8015 struct nlattr *data = ((void **)skb->cb)[2];
8016 enum nl80211_multicast_groups mcgrp = NL80211_MCGRP_TESTMODE;
8017
Johannes Bergbd8c78e2014-07-30 14:55:26 +02008018 /* clear CB data for netlink core to own from now on */
8019 memset(skb->cb, 0, sizeof(skb->cb));
8020
Johannes Berge03ad6e2014-01-01 17:22:30 +01008021 nla_nest_end(skb, data);
8022 genlmsg_end(skb, hdr);
8023
8024 if (data->nla_type == NL80211_ATTR_VENDOR_DATA)
8025 mcgrp = NL80211_MCGRP_VENDOR;
8026
8027 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), skb, 0,
8028 mcgrp, gfp);
8029}
8030EXPORT_SYMBOL(__cfg80211_send_event_skb);
8031
Johannes Bergaff89a92009-07-01 21:26:51 +02008032#ifdef CONFIG_NL80211_TESTMODE
Johannes Bergaff89a92009-07-01 21:26:51 +02008033static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
8034{
Johannes Berg4c476992010-10-04 21:36:35 +02008035 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03008036 struct wireless_dev *wdev =
8037 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02008038 int err;
8039
David Spinadelfc73f112013-07-31 18:04:15 +03008040 if (!rdev->ops->testmode_cmd)
8041 return -EOPNOTSUPP;
8042
8043 if (IS_ERR(wdev)) {
8044 err = PTR_ERR(wdev);
8045 if (err != -EINVAL)
8046 return err;
8047 wdev = NULL;
8048 } else if (wdev->wiphy != &rdev->wiphy) {
8049 return -EINVAL;
8050 }
8051
Johannes Bergaff89a92009-07-01 21:26:51 +02008052 if (!info->attrs[NL80211_ATTR_TESTDATA])
8053 return -EINVAL;
8054
Johannes Bergad7e7182013-11-13 13:37:47 +01008055 rdev->cur_cmd_info = info;
David Spinadelfc73f112013-07-31 18:04:15 +03008056 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02008057 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
8058 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
Johannes Bergad7e7182013-11-13 13:37:47 +01008059 rdev->cur_cmd_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02008060
Johannes Bergaff89a92009-07-01 21:26:51 +02008061 return err;
8062}
8063
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008064static int nl80211_testmode_dump(struct sk_buff *skb,
8065 struct netlink_callback *cb)
8066{
Johannes Berg00918d32011-12-13 17:22:05 +01008067 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008068 int err;
8069 long phy_idx;
8070 void *data = NULL;
8071 int data_len = 0;
8072
Johannes Berg5fe231e2013-05-08 21:45:15 +02008073 rtnl_lock();
8074
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008075 if (cb->args[0]) {
8076 /*
8077 * 0 is a valid index, but not valid for args[0],
8078 * so we need to offset by 1.
8079 */
8080 phy_idx = cb->args[0] - 1;
8081 } else {
8082 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
8083 nl80211_fam.attrbuf, nl80211_fam.maxattr,
8084 nl80211_policy);
8085 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02008086 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01008087
Johannes Berg2bd7e352012-06-15 14:23:16 +02008088 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
8089 nl80211_fam.attrbuf);
8090 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008091 err = PTR_ERR(rdev);
8092 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01008093 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02008094 phy_idx = rdev->wiphy_idx;
8095 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02008096
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008097 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
8098 cb->args[1] =
8099 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
8100 }
8101
8102 if (cb->args[1]) {
8103 data = nla_data((void *)cb->args[1]);
8104 data_len = nla_len((void *)cb->args[1]);
8105 }
8106
Johannes Berg00918d32011-12-13 17:22:05 +01008107 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
8108 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008109 err = -ENOENT;
8110 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008111 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008112
Johannes Berg00918d32011-12-13 17:22:05 +01008113 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008114 err = -EOPNOTSUPP;
8115 goto out_err;
8116 }
8117
8118 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00008119 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008120 cb->nlh->nlmsg_seq, NLM_F_MULTI,
8121 NL80211_CMD_TESTMODE);
8122 struct nlattr *tmdata;
8123
Dan Carpentercb35fba2013-08-14 14:50:01 +03008124 if (!hdr)
8125 break;
8126
David S. Miller9360ffd2012-03-29 04:41:26 -04008127 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008128 genlmsg_cancel(skb, hdr);
8129 break;
8130 }
8131
8132 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
8133 if (!tmdata) {
8134 genlmsg_cancel(skb, hdr);
8135 break;
8136 }
Hila Gonene35e4d22012-06-27 17:19:42 +03008137 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008138 nla_nest_end(skb, tmdata);
8139
8140 if (err == -ENOBUFS || err == -ENOENT) {
8141 genlmsg_cancel(skb, hdr);
8142 break;
8143 } else if (err) {
8144 genlmsg_cancel(skb, hdr);
8145 goto out_err;
8146 }
8147
8148 genlmsg_end(skb, hdr);
8149 }
8150
8151 err = skb->len;
8152 /* see above */
8153 cb->args[0] = phy_idx + 1;
8154 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02008155 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07008156 return err;
8157}
Johannes Bergaff89a92009-07-01 21:26:51 +02008158#endif
8159
Samuel Ortizb23aa672009-07-01 21:26:54 +02008160static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
8161{
Johannes Berg4c476992010-10-04 21:36:35 +02008162 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8163 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02008164 struct cfg80211_connect_params connect;
8165 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02008166 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008167 int err;
8168
8169 memset(&connect, 0, sizeof(connect));
8170
8171 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
8172 return -EINVAL;
8173
8174 if (!info->attrs[NL80211_ATTR_SSID] ||
8175 !nla_len(info->attrs[NL80211_ATTR_SSID]))
8176 return -EINVAL;
8177
8178 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
8179 connect.auth_type =
8180 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03008181 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
8182 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02008183 return -EINVAL;
8184 } else
8185 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
8186
8187 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
8188
Johannes Bergc0692b82010-08-27 14:26:53 +03008189 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02008190 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02008191 if (err)
8192 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008193
Johannes Berg074ac8d2010-09-16 14:58:22 +02008194 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02008195 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
8196 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008197
Johannes Berg79c97e92009-07-07 03:56:12 +02008198 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008199
Bala Shanmugam4486ea92012-03-07 17:27:12 +05308200 connect.bg_scan_period = -1;
8201 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
8202 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
8203 connect.bg_scan_period =
8204 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
8205 }
8206
Samuel Ortizb23aa672009-07-01 21:26:54 +02008207 if (info->attrs[NL80211_ATTR_MAC])
8208 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen1df4a512014-01-15 00:00:47 +02008209 else if (info->attrs[NL80211_ATTR_MAC_HINT])
8210 connect.bssid_hint =
8211 nla_data(info->attrs[NL80211_ATTR_MAC_HINT]);
Samuel Ortizb23aa672009-07-01 21:26:54 +02008212 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
8213 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
8214
8215 if (info->attrs[NL80211_ATTR_IE]) {
8216 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
8217 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
8218 }
8219
Jouni Malinencee00a92013-01-15 17:15:57 +02008220 if (info->attrs[NL80211_ATTR_USE_MFP]) {
8221 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
8222 if (connect.mfp != NL80211_MFP_REQUIRED &&
8223 connect.mfp != NL80211_MFP_NO)
8224 return -EINVAL;
8225 } else {
8226 connect.mfp = NL80211_MFP_NO;
8227 }
8228
Jouni Malinenba6fbac2016-03-29 13:53:27 +03008229 if (info->attrs[NL80211_ATTR_PREV_BSSID])
8230 connect.prev_bssid =
8231 nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
8232
Samuel Ortizb23aa672009-07-01 21:26:54 +02008233 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Jouni Malinen664834d2014-01-15 00:01:44 +02008234 connect.channel = nl80211_get_valid_chan(
8235 wiphy, info->attrs[NL80211_ATTR_WIPHY_FREQ]);
8236 if (!connect.channel)
Johannes Berg4c476992010-10-04 21:36:35 +02008237 return -EINVAL;
Jouni Malinen1df4a512014-01-15 00:00:47 +02008238 } else if (info->attrs[NL80211_ATTR_WIPHY_FREQ_HINT]) {
Jouni Malinen664834d2014-01-15 00:01:44 +02008239 connect.channel_hint = nl80211_get_valid_chan(
8240 wiphy, info->attrs[NL80211_ATTR_WIPHY_FREQ_HINT]);
8241 if (!connect.channel_hint)
Jouni Malinen1df4a512014-01-15 00:00:47 +02008242 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008243 }
8244
Johannes Bergfffd0932009-07-08 14:22:54 +02008245 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
8246 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05308247 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02008248 if (IS_ERR(connkeys))
8249 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02008250 }
8251
Ben Greear7e7c8922011-11-18 11:31:59 -08008252 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
8253 connect.flags |= ASSOC_REQ_DISABLE_HT;
8254
8255 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
8256 memcpy(&connect.ht_capa_mask,
8257 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
8258 sizeof(connect.ht_capa_mask));
8259
8260 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08008261 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
Johannes Bergb47f6102014-09-10 13:39:54 +03008262 kzfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08008263 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08008264 }
Ben Greear7e7c8922011-11-18 11:31:59 -08008265 memcpy(&connect.ht_capa,
8266 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
8267 sizeof(connect.ht_capa));
8268 }
8269
Johannes Bergee2aca32013-02-21 17:36:01 +01008270 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
8271 connect.flags |= ASSOC_REQ_DISABLE_VHT;
8272
8273 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
8274 memcpy(&connect.vht_capa_mask,
8275 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
8276 sizeof(connect.vht_capa_mask));
8277
8278 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
8279 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
Johannes Bergb47f6102014-09-10 13:39:54 +03008280 kzfree(connkeys);
Johannes Bergee2aca32013-02-21 17:36:01 +01008281 return -EINVAL;
8282 }
8283 memcpy(&connect.vht_capa,
8284 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
8285 sizeof(connect.vht_capa));
8286 }
8287
Assaf Kraussbab5ab72014-09-03 15:25:01 +03008288 if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
Beni Lev0c9ca112016-02-17 20:30:00 +02008289 if (!((rdev->wiphy.features &
8290 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) &&
8291 (rdev->wiphy.features & NL80211_FEATURE_QUIET)) &&
8292 !wiphy_ext_feature_isset(&rdev->wiphy,
8293 NL80211_EXT_FEATURE_RRM)) {
Ola Olsson707554b2015-12-11 21:04:52 +01008294 kzfree(connkeys);
Assaf Kraussbab5ab72014-09-03 15:25:01 +03008295 return -EINVAL;
Ola Olsson707554b2015-12-11 21:04:52 +01008296 }
Assaf Kraussbab5ab72014-09-03 15:25:01 +03008297 connect.flags |= ASSOC_REQ_USE_RRM;
8298 }
8299
Lior David34d50512016-01-28 10:58:25 +02008300 connect.pbss = nla_get_flag(info->attrs[NL80211_ATTR_PBSS]);
Johannes Berg57fbcce2016-04-12 15:56:15 +02008301 if (connect.pbss && !rdev->wiphy.bands[NL80211_BAND_60GHZ]) {
Lior David34d50512016-01-28 10:58:25 +02008302 kzfree(connkeys);
8303 return -EOPNOTSUPP;
8304 }
8305
Arend van Spriel38de03d2016-03-02 20:37:18 +01008306 if (info->attrs[NL80211_ATTR_BSS_SELECT]) {
8307 /* bss selection makes no sense if bssid is set */
8308 if (connect.bssid) {
8309 kzfree(connkeys);
8310 return -EINVAL;
8311 }
8312
8313 err = parse_bss_select(info->attrs[NL80211_ATTR_BSS_SELECT],
8314 wiphy, &connect.bss_select);
8315 if (err) {
8316 kzfree(connkeys);
8317 return err;
8318 }
8319 }
8320
Johannes Berg83739b02013-05-15 17:44:01 +02008321 wdev_lock(dev->ieee80211_ptr);
Jouni Malinen4ce2bd92016-03-29 13:53:28 +03008322 err = cfg80211_connect(rdev, dev, &connect, connkeys,
8323 connect.prev_bssid);
Johannes Berg83739b02013-05-15 17:44:01 +02008324 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02008325 if (err)
Johannes Bergb47f6102014-09-10 13:39:54 +03008326 kzfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02008327 return err;
8328}
8329
8330static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
8331{
Johannes Berg4c476992010-10-04 21:36:35 +02008332 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8333 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02008334 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02008335 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008336
8337 if (!info->attrs[NL80211_ATTR_REASON_CODE])
8338 reason = WLAN_REASON_DEAUTH_LEAVING;
8339 else
8340 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
8341
8342 if (reason == 0)
8343 return -EINVAL;
8344
Johannes Berg074ac8d2010-09-16 14:58:22 +02008345 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02008346 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
8347 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008348
Johannes Berg83739b02013-05-15 17:44:01 +02008349 wdev_lock(dev->ieee80211_ptr);
8350 ret = cfg80211_disconnect(rdev, dev, reason, true);
8351 wdev_unlock(dev->ieee80211_ptr);
8352 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02008353}
8354
Johannes Berg463d0182009-07-14 00:33:35 +02008355static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
8356{
Johannes Berg4c476992010-10-04 21:36:35 +02008357 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02008358 struct net *net;
8359 int err;
Johannes Berg463d0182009-07-14 00:33:35 +02008360
Vadim Kochan4b681c82015-01-12 16:34:05 +02008361 if (info->attrs[NL80211_ATTR_PID]) {
8362 u32 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
8363
8364 net = get_net_ns_by_pid(pid);
8365 } else if (info->attrs[NL80211_ATTR_NETNS_FD]) {
8366 u32 fd = nla_get_u32(info->attrs[NL80211_ATTR_NETNS_FD]);
8367
8368 net = get_net_ns_by_fd(fd);
8369 } else {
Johannes Berg463d0182009-07-14 00:33:35 +02008370 return -EINVAL;
Vadim Kochan4b681c82015-01-12 16:34:05 +02008371 }
Johannes Berg463d0182009-07-14 00:33:35 +02008372
Johannes Berg4c476992010-10-04 21:36:35 +02008373 if (IS_ERR(net))
8374 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02008375
8376 err = 0;
8377
8378 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02008379 if (!net_eq(wiphy_net(&rdev->wiphy), net))
8380 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02008381
Johannes Berg463d0182009-07-14 00:33:35 +02008382 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02008383 return err;
8384}
8385
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008386static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
8387{
Johannes Berg4c476992010-10-04 21:36:35 +02008388 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008389 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
8390 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02008391 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008392 struct cfg80211_pmksa pmksa;
8393
8394 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
8395
8396 if (!info->attrs[NL80211_ATTR_MAC])
8397 return -EINVAL;
8398
8399 if (!info->attrs[NL80211_ATTR_PMKID])
8400 return -EINVAL;
8401
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008402 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
8403 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
8404
Johannes Berg074ac8d2010-09-16 14:58:22 +02008405 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02008406 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
8407 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008408
8409 switch (info->genlhdr->cmd) {
8410 case NL80211_CMD_SET_PMKSA:
8411 rdev_ops = rdev->ops->set_pmksa;
8412 break;
8413 case NL80211_CMD_DEL_PMKSA:
8414 rdev_ops = rdev->ops->del_pmksa;
8415 break;
8416 default:
8417 WARN_ON(1);
8418 break;
8419 }
8420
Johannes Berg4c476992010-10-04 21:36:35 +02008421 if (!rdev_ops)
8422 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008423
Johannes Berg4c476992010-10-04 21:36:35 +02008424 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008425}
8426
8427static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
8428{
Johannes Berg4c476992010-10-04 21:36:35 +02008429 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8430 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008431
Johannes Berg074ac8d2010-09-16 14:58:22 +02008432 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02008433 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
8434 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008435
Johannes Berg4c476992010-10-04 21:36:35 +02008436 if (!rdev->ops->flush_pmksa)
8437 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008438
Hila Gonene35e4d22012-06-27 17:19:42 +03008439 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01008440}
8441
Arik Nemtsov109086c2011-09-28 14:12:50 +03008442static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
8443{
8444 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8445 struct net_device *dev = info->user_ptr[1];
8446 u8 action_code, dialog_token;
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05308447 u32 peer_capability = 0;
Arik Nemtsov109086c2011-09-28 14:12:50 +03008448 u16 status_code;
8449 u8 *peer;
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03008450 bool initiator;
Arik Nemtsov109086c2011-09-28 14:12:50 +03008451
8452 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
8453 !rdev->ops->tdls_mgmt)
8454 return -EOPNOTSUPP;
8455
8456 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
8457 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
8458 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
8459 !info->attrs[NL80211_ATTR_IE] ||
8460 !info->attrs[NL80211_ATTR_MAC])
8461 return -EINVAL;
8462
8463 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
8464 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
8465 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
8466 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03008467 initiator = nla_get_flag(info->attrs[NL80211_ATTR_TDLS_INITIATOR]);
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05308468 if (info->attrs[NL80211_ATTR_TDLS_PEER_CAPABILITY])
8469 peer_capability =
8470 nla_get_u32(info->attrs[NL80211_ATTR_TDLS_PEER_CAPABILITY]);
Arik Nemtsov109086c2011-09-28 14:12:50 +03008471
Hila Gonene35e4d22012-06-27 17:19:42 +03008472 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05308473 dialog_token, status_code, peer_capability,
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03008474 initiator,
Hila Gonene35e4d22012-06-27 17:19:42 +03008475 nla_data(info->attrs[NL80211_ATTR_IE]),
8476 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03008477}
8478
8479static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
8480{
8481 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8482 struct net_device *dev = info->user_ptr[1];
8483 enum nl80211_tdls_operation operation;
8484 u8 *peer;
8485
8486 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
8487 !rdev->ops->tdls_oper)
8488 return -EOPNOTSUPP;
8489
8490 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
8491 !info->attrs[NL80211_ATTR_MAC])
8492 return -EINVAL;
8493
8494 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
8495 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
8496
Hila Gonene35e4d22012-06-27 17:19:42 +03008497 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03008498}
8499
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008500static int nl80211_remain_on_channel(struct sk_buff *skb,
8501 struct genl_info *info)
8502{
Johannes Berg4c476992010-10-04 21:36:35 +02008503 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02008504 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01008505 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008506 struct sk_buff *msg;
8507 void *hdr;
8508 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01008509 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008510 int err;
8511
8512 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
8513 !info->attrs[NL80211_ATTR_DURATION])
8514 return -EINVAL;
8515
8516 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
8517
Johannes Berg7c4ef712011-11-18 15:33:48 +01008518 if (!rdev->ops->remain_on_channel ||
8519 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02008520 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008521
Johannes Bergebf348f2012-06-01 12:50:54 +02008522 /*
8523 * We should be on that channel for at least a minimum amount of
8524 * time (10ms) but no longer than the driver supports.
8525 */
8526 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
8527 duration > rdev->wiphy.max_remain_on_channel_duration)
8528 return -EINVAL;
8529
Johannes Berg683b6d32012-11-08 21:25:48 +01008530 err = nl80211_parse_chandef(rdev, info, &chandef);
8531 if (err)
8532 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008533
8534 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02008535 if (!msg)
8536 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008537
Eric W. Biederman15e47302012-09-07 20:12:54 +00008538 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008539 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008540 if (!hdr) {
8541 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008542 goto free_msg;
8543 }
8544
Johannes Berg683b6d32012-11-08 21:25:48 +01008545 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
8546 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008547
8548 if (err)
8549 goto free_msg;
8550
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02008551 if (nla_put_u64_64bit(msg, NL80211_ATTR_COOKIE, cookie,
8552 NL80211_ATTR_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04008553 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008554
8555 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02008556
8557 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008558
8559 nla_put_failure:
8560 err = -ENOBUFS;
8561 free_msg:
8562 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008563 return err;
8564}
8565
8566static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
8567 struct genl_info *info)
8568{
Johannes Berg4c476992010-10-04 21:36:35 +02008569 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02008570 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008571 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008572
8573 if (!info->attrs[NL80211_ATTR_COOKIE])
8574 return -EINVAL;
8575
Johannes Berg4c476992010-10-04 21:36:35 +02008576 if (!rdev->ops->cancel_remain_on_channel)
8577 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008578
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008579 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
8580
Hila Gonene35e4d22012-06-27 17:19:42 +03008581 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01008582}
8583
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008584static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
8585 u8 *rates, u8 rates_len)
8586{
8587 u8 i;
8588 u32 mask = 0;
8589
8590 for (i = 0; i < rates_len; i++) {
8591 int rate = (rates[i] & 0x7f) * 5;
8592 int ridx;
Kirtika Ruchandani7a087e72016-05-29 19:51:23 -07008593
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008594 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
8595 struct ieee80211_rate *srate =
8596 &sband->bitrates[ridx];
8597 if (rate == srate->bitrate) {
8598 mask |= 1 << ridx;
8599 break;
8600 }
8601 }
8602 if (ridx == sband->n_bitrates)
8603 return 0; /* rate not found */
8604 }
8605
8606 return mask;
8607}
8608
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008609static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
8610 u8 *rates, u8 rates_len,
8611 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
8612{
8613 u8 i;
8614
8615 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
8616
8617 for (i = 0; i < rates_len; i++) {
8618 int ridx, rbit;
8619
8620 ridx = rates[i] / 8;
8621 rbit = BIT(rates[i] % 8);
8622
8623 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03008624 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008625 return false;
8626
8627 /* check availability */
8628 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
8629 mcs[ridx] |= rbit;
8630 else
8631 return false;
8632 }
8633
8634 return true;
8635}
8636
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008637static u16 vht_mcs_map_to_mcs_mask(u8 vht_mcs_map)
8638{
8639 u16 mcs_mask = 0;
8640
8641 switch (vht_mcs_map) {
8642 case IEEE80211_VHT_MCS_NOT_SUPPORTED:
8643 break;
8644 case IEEE80211_VHT_MCS_SUPPORT_0_7:
8645 mcs_mask = 0x00FF;
8646 break;
8647 case IEEE80211_VHT_MCS_SUPPORT_0_8:
8648 mcs_mask = 0x01FF;
8649 break;
8650 case IEEE80211_VHT_MCS_SUPPORT_0_9:
8651 mcs_mask = 0x03FF;
8652 break;
8653 default:
8654 break;
8655 }
8656
8657 return mcs_mask;
8658}
8659
8660static void vht_build_mcs_mask(u16 vht_mcs_map,
8661 u16 vht_mcs_mask[NL80211_VHT_NSS_MAX])
8662{
8663 u8 nss;
8664
8665 for (nss = 0; nss < NL80211_VHT_NSS_MAX; nss++) {
8666 vht_mcs_mask[nss] = vht_mcs_map_to_mcs_mask(vht_mcs_map & 0x03);
8667 vht_mcs_map >>= 2;
8668 }
8669}
8670
8671static bool vht_set_mcs_mask(struct ieee80211_supported_band *sband,
8672 struct nl80211_txrate_vht *txrate,
8673 u16 mcs[NL80211_VHT_NSS_MAX])
8674{
8675 u16 tx_mcs_map = le16_to_cpu(sband->vht_cap.vht_mcs.tx_mcs_map);
8676 u16 tx_mcs_mask[NL80211_VHT_NSS_MAX] = {};
8677 u8 i;
8678
8679 if (!sband->vht_cap.vht_supported)
8680 return false;
8681
8682 memset(mcs, 0, sizeof(u16) * NL80211_VHT_NSS_MAX);
8683
8684 /* Build vht_mcs_mask from VHT capabilities */
8685 vht_build_mcs_mask(tx_mcs_map, tx_mcs_mask);
8686
8687 for (i = 0; i < NL80211_VHT_NSS_MAX; i++) {
8688 if ((tx_mcs_mask[i] & txrate->mcs[i]) == txrate->mcs[i])
8689 mcs[i] = txrate->mcs[i];
8690 else
8691 return false;
8692 }
8693
8694 return true;
8695}
8696
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00008697static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008698 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
8699 .len = NL80211_MAX_SUPP_RATES },
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01008700 [NL80211_TXRATE_HT] = { .type = NLA_BINARY,
8701 .len = NL80211_MAX_SUPP_HT_RATES },
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008702 [NL80211_TXRATE_VHT] = { .len = sizeof(struct nl80211_txrate_vht)},
Janusz Dziedzic0b9323f2014-01-08 08:46:02 +01008703 [NL80211_TXRATE_GI] = { .type = NLA_U8 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008704};
8705
8706static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
8707 struct genl_info *info)
8708{
8709 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02008710 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008711 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02008712 int rem, i;
8713 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008714 struct nlattr *tx_rates;
8715 struct ieee80211_supported_band *sband;
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008716 u16 vht_tx_mcs_map;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008717
Johannes Berg4c476992010-10-04 21:36:35 +02008718 if (!rdev->ops->set_bitrate_mask)
8719 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008720
8721 memset(&mask, 0, sizeof(mask));
8722 /* Default to all rates enabled */
Johannes Berg57fbcce2016-04-12 15:56:15 +02008723 for (i = 0; i < NUM_NL80211_BANDS; i++) {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008724 sband = rdev->wiphy.bands[i];
Janusz Dziedzic78693032013-12-03 09:50:44 +01008725
8726 if (!sband)
8727 continue;
8728
8729 mask.control[i].legacy = (1 << sband->n_bitrates) - 1;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01008730 memcpy(mask.control[i].ht_mcs,
Janusz Dziedzic78693032013-12-03 09:50:44 +01008731 sband->ht_cap.mcs.rx_mask,
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01008732 sizeof(mask.control[i].ht_mcs));
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008733
8734 if (!sband->vht_cap.vht_supported)
8735 continue;
8736
8737 vht_tx_mcs_map = le16_to_cpu(sband->vht_cap.vht_mcs.tx_mcs_map);
8738 vht_build_mcs_mask(vht_tx_mcs_map, mask.control[i].vht_mcs);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008739 }
8740
Janusz Dziedzicb9243ab2013-12-05 10:02:14 +01008741 /* if no rates are given set it back to the defaults */
8742 if (!info->attrs[NL80211_ATTR_TX_RATES])
8743 goto out;
8744
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008745 /*
8746 * The nested attribute uses enum nl80211_band as the index. This maps
Johannes Berg57fbcce2016-04-12 15:56:15 +02008747 * directly to the enum nl80211_band values used in cfg80211.
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008748 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008749 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Johannes Bergae811e22014-01-24 10:17:47 +01008750 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem) {
Johannes Berg57fbcce2016-04-12 15:56:15 +02008751 enum nl80211_band band = nla_type(tx_rates);
Johannes Bergae811e22014-01-24 10:17:47 +01008752 int err;
8753
Johannes Berg57fbcce2016-04-12 15:56:15 +02008754 if (band < 0 || band >= NUM_NL80211_BANDS)
Johannes Berg4c476992010-10-04 21:36:35 +02008755 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008756 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02008757 if (sband == NULL)
8758 return -EINVAL;
Johannes Bergae811e22014-01-24 10:17:47 +01008759 err = nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
8760 nla_len(tx_rates), nl80211_txattr_policy);
8761 if (err)
8762 return err;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008763 if (tb[NL80211_TXRATE_LEGACY]) {
8764 mask.control[band].legacy = rateset_to_mask(
8765 sband,
8766 nla_data(tb[NL80211_TXRATE_LEGACY]),
8767 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05308768 if ((mask.control[band].legacy == 0) &&
8769 nla_len(tb[NL80211_TXRATE_LEGACY]))
8770 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008771 }
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01008772 if (tb[NL80211_TXRATE_HT]) {
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008773 if (!ht_rateset_to_mask(
8774 sband,
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01008775 nla_data(tb[NL80211_TXRATE_HT]),
8776 nla_len(tb[NL80211_TXRATE_HT]),
8777 mask.control[band].ht_mcs))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008778 return -EINVAL;
8779 }
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008780 if (tb[NL80211_TXRATE_VHT]) {
8781 if (!vht_set_mcs_mask(
8782 sband,
8783 nla_data(tb[NL80211_TXRATE_VHT]),
8784 mask.control[band].vht_mcs))
8785 return -EINVAL;
8786 }
Janusz Dziedzic0b9323f2014-01-08 08:46:02 +01008787 if (tb[NL80211_TXRATE_GI]) {
8788 mask.control[band].gi =
8789 nla_get_u8(tb[NL80211_TXRATE_GI]);
8790 if (mask.control[band].gi > NL80211_TXRATE_FORCE_LGI)
8791 return -EINVAL;
8792 }
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008793
8794 if (mask.control[band].legacy == 0) {
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008795 /* don't allow empty legacy rates if HT or VHT
8796 * are not even supported.
8797 */
8798 if (!(rdev->wiphy.bands[band]->ht_cap.ht_supported ||
8799 rdev->wiphy.bands[band]->vht_cap.vht_supported))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008800 return -EINVAL;
8801
8802 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01008803 if (mask.control[band].ht_mcs[i])
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008804 goto out;
8805
8806 for (i = 0; i < NL80211_VHT_NSS_MAX; i++)
8807 if (mask.control[band].vht_mcs[i])
8808 goto out;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01008809
8810 /* legacy and mcs rates may not be both empty */
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01008811 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008812 }
8813 }
8814
Janusz Dziedzicb9243ab2013-12-05 10:02:14 +01008815out:
Hila Gonene35e4d22012-06-27 17:19:42 +03008816 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02008817}
8818
Johannes Berg2e161f72010-08-12 15:38:38 +02008819static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02008820{
Johannes Berg4c476992010-10-04 21:36:35 +02008821 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02008822 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02008823 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02008824
8825 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
8826 return -EINVAL;
8827
Johannes Berg2e161f72010-08-12 15:38:38 +02008828 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
8829 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02008830
Johannes Berg71bbc992012-06-15 15:30:18 +02008831 switch (wdev->iftype) {
8832 case NL80211_IFTYPE_STATION:
8833 case NL80211_IFTYPE_ADHOC:
8834 case NL80211_IFTYPE_P2P_CLIENT:
8835 case NL80211_IFTYPE_AP:
8836 case NL80211_IFTYPE_AP_VLAN:
8837 case NL80211_IFTYPE_MESH_POINT:
8838 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02008839 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02008840 break;
8841 default:
Johannes Berg4c476992010-10-04 21:36:35 +02008842 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02008843 }
Jouni Malinen026331c2010-02-15 12:53:10 +02008844
8845 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02008846 if (!rdev->ops->mgmt_tx)
8847 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02008848
Eric W. Biederman15e47302012-09-07 20:12:54 +00008849 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02008850 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
8851 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02008852}
8853
Johannes Berg2e161f72010-08-12 15:38:38 +02008854static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02008855{
Johannes Berg4c476992010-10-04 21:36:35 +02008856 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02008857 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01008858 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02008859 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01008860 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02008861 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01008862 struct sk_buff *msg = NULL;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008863 struct cfg80211_mgmt_tx_params params = {
8864 .dont_wait_for_ack =
8865 info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK],
8866 };
Jouni Malinen026331c2010-02-15 12:53:10 +02008867
Johannes Berg683b6d32012-11-08 21:25:48 +01008868 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02008869 return -EINVAL;
8870
Johannes Berg4c476992010-10-04 21:36:35 +02008871 if (!rdev->ops->mgmt_tx)
8872 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02008873
Johannes Berg71bbc992012-06-15 15:30:18 +02008874 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02008875 case NL80211_IFTYPE_P2P_DEVICE:
8876 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
8877 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02008878 case NL80211_IFTYPE_STATION:
8879 case NL80211_IFTYPE_ADHOC:
8880 case NL80211_IFTYPE_P2P_CLIENT:
8881 case NL80211_IFTYPE_AP:
8882 case NL80211_IFTYPE_AP_VLAN:
8883 case NL80211_IFTYPE_MESH_POINT:
8884 case NL80211_IFTYPE_P2P_GO:
8885 break;
8886 default:
Johannes Berg4c476992010-10-04 21:36:35 +02008887 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02008888 }
Jouni Malinen026331c2010-02-15 12:53:10 +02008889
Johannes Bergf7ca38d2010-11-25 10:02:29 +01008890 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01008891 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01008892 return -EINVAL;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008893 params.wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02008894
8895 /*
8896 * We should wait on the channel for at least a minimum amount
8897 * of time (10ms) but no longer than the driver supports.
8898 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008899 if (params.wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
8900 params.wait > rdev->wiphy.max_remain_on_channel_duration)
Johannes Bergebf348f2012-06-01 12:50:54 +02008901 return -EINVAL;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01008902 }
8903
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008904 params.offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01008905
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008906 if (params.offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Berg7c4ef712011-11-18 15:33:48 +01008907 return -EINVAL;
8908
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008909 params.no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05308910
Antonio Quartulliea141b752013-06-11 14:20:03 +02008911 /* get the channel if any has been specified, otherwise pass NULL to
8912 * the driver. The latter will use the current one
8913 */
8914 chandef.chan = NULL;
8915 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
8916 err = nl80211_parse_chandef(rdev, info, &chandef);
8917 if (err)
8918 return err;
8919 }
8920
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008921 if (!chandef.chan && params.offchan)
Antonio Quartulliea141b752013-06-11 14:20:03 +02008922 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02008923
Andrei Otcheretianski34d22ce2014-05-09 14:11:44 +03008924 params.buf = nla_data(info->attrs[NL80211_ATTR_FRAME]);
8925 params.len = nla_len(info->attrs[NL80211_ATTR_FRAME]);
8926
8927 if (info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]) {
8928 int len = nla_len(info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]);
8929 int i;
8930
8931 if (len % sizeof(u16))
8932 return -EINVAL;
8933
8934 params.n_csa_offsets = len / sizeof(u16);
8935 params.csa_offsets =
8936 nla_data(info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]);
8937
8938 /* check that all the offsets fit the frame */
8939 for (i = 0; i < params.n_csa_offsets; i++) {
8940 if (params.csa_offsets[i] >= params.len)
8941 return -EINVAL;
8942 }
8943 }
8944
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008945 if (!params.dont_wait_for_ack) {
Johannes Berge247bd902011-11-04 11:18:21 +01008946 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8947 if (!msg)
8948 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02008949
Eric W. Biederman15e47302012-09-07 20:12:54 +00008950 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01008951 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008952 if (!hdr) {
8953 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01008954 goto free_msg;
8955 }
Jouni Malinen026331c2010-02-15 12:53:10 +02008956 }
Johannes Berge247bd902011-11-04 11:18:21 +01008957
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02008958 params.chan = chandef.chan;
8959 err = cfg80211_mlme_mgmt_tx(rdev, wdev, &params, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02008960 if (err)
8961 goto free_msg;
8962
Johannes Berge247bd902011-11-04 11:18:21 +01008963 if (msg) {
Nicolas Dichtel2dad6242016-04-25 10:25:22 +02008964 if (nla_put_u64_64bit(msg, NL80211_ATTR_COOKIE, cookie,
8965 NL80211_ATTR_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -04008966 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02008967
Johannes Berge247bd902011-11-04 11:18:21 +01008968 genlmsg_end(msg, hdr);
8969 return genlmsg_reply(msg, info);
8970 }
8971
8972 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02008973
8974 nla_put_failure:
8975 err = -ENOBUFS;
8976 free_msg:
8977 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02008978 return err;
8979}
8980
Johannes Bergf7ca38d2010-11-25 10:02:29 +01008981static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
8982{
8983 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02008984 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01008985 u64 cookie;
8986
8987 if (!info->attrs[NL80211_ATTR_COOKIE])
8988 return -EINVAL;
8989
8990 if (!rdev->ops->mgmt_tx_cancel_wait)
8991 return -EOPNOTSUPP;
8992
Johannes Berg71bbc992012-06-15 15:30:18 +02008993 switch (wdev->iftype) {
8994 case NL80211_IFTYPE_STATION:
8995 case NL80211_IFTYPE_ADHOC:
8996 case NL80211_IFTYPE_P2P_CLIENT:
8997 case NL80211_IFTYPE_AP:
8998 case NL80211_IFTYPE_AP_VLAN:
8999 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02009000 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02009001 break;
9002 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009003 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02009004 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009005
9006 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
9007
Hila Gonene35e4d22012-06-27 17:19:42 +03009008 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009009}
9010
Kalle Valoffb9eb32010-02-17 17:58:10 +02009011static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
9012{
Johannes Berg4c476992010-10-04 21:36:35 +02009013 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02009014 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02009015 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02009016 u8 ps_state;
9017 bool state;
9018 int err;
9019
Johannes Berg4c476992010-10-04 21:36:35 +02009020 if (!info->attrs[NL80211_ATTR_PS_STATE])
9021 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009022
9023 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
9024
Johannes Berg4c476992010-10-04 21:36:35 +02009025 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
9026 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009027
9028 wdev = dev->ieee80211_ptr;
9029
Johannes Berg4c476992010-10-04 21:36:35 +02009030 if (!rdev->ops->set_power_mgmt)
9031 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009032
9033 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
9034
9035 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02009036 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009037
Hila Gonene35e4d22012-06-27 17:19:42 +03009038 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02009039 if (!err)
9040 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009041 return err;
9042}
9043
9044static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
9045{
Johannes Berg4c476992010-10-04 21:36:35 +02009046 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02009047 enum nl80211_ps_state ps_state;
9048 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02009049 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02009050 struct sk_buff *msg;
9051 void *hdr;
9052 int err;
9053
Kalle Valoffb9eb32010-02-17 17:58:10 +02009054 wdev = dev->ieee80211_ptr;
9055
Johannes Berg4c476992010-10-04 21:36:35 +02009056 if (!rdev->ops->set_power_mgmt)
9057 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009058
9059 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02009060 if (!msg)
9061 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009062
Eric W. Biederman15e47302012-09-07 20:12:54 +00009063 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009064 NL80211_CMD_GET_POWER_SAVE);
9065 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02009066 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009067 goto free_msg;
9068 }
9069
9070 if (wdev->ps)
9071 ps_state = NL80211_PS_ENABLED;
9072 else
9073 ps_state = NL80211_PS_DISABLED;
9074
David S. Miller9360ffd2012-03-29 04:41:26 -04009075 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
9076 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02009077
9078 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02009079 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02009080
Johannes Berg4c476992010-10-04 21:36:35 +02009081 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02009082 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02009083 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02009084 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02009085 return err;
9086}
9087
Johannes Berg94e860f2014-01-20 23:58:15 +01009088static const struct nla_policy
9089nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009090 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
9091 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
9092 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07009093 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
9094 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
9095 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009096};
9097
Thomas Pedersen84f10702012-07-12 16:17:33 -07009098static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01009099 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07009100{
9101 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07009102 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009103 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07009104
Johannes Bergd9d8b012012-11-26 12:51:52 +01009105 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07009106 return -EINVAL;
9107
Thomas Pedersen84f10702012-07-12 16:17:33 -07009108 if (!rdev->ops->set_cqm_txe_config)
9109 return -EOPNOTSUPP;
9110
9111 if (wdev->iftype != NL80211_IFTYPE_STATION &&
9112 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
9113 return -EOPNOTSUPP;
9114
Hila Gonene35e4d22012-06-27 17:19:42 +03009115 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07009116}
9117
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009118static int nl80211_set_cqm_rssi(struct genl_info *info,
9119 s32 threshold, u32 hysteresis)
9120{
Johannes Berg4c476992010-10-04 21:36:35 +02009121 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02009122 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009123 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009124
9125 if (threshold > 0)
9126 return -EINVAL;
9127
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009128 /* disabling - hysteresis should also be zero then */
9129 if (threshold == 0)
9130 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009131
Johannes Berg4c476992010-10-04 21:36:35 +02009132 if (!rdev->ops->set_cqm_rssi_config)
9133 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009134
Johannes Berg074ac8d2010-09-16 14:58:22 +02009135 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02009136 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
9137 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009138
Hila Gonene35e4d22012-06-27 17:19:42 +03009139 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009140}
9141
9142static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
9143{
9144 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
9145 struct nlattr *cqm;
9146 int err;
9147
9148 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009149 if (!cqm)
9150 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009151
9152 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
9153 nl80211_attr_cqm_policy);
9154 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009155 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009156
9157 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
9158 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009159 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
9160 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009161
Johannes Berg1da5fcc2013-08-06 14:10:48 +02009162 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
9163 }
9164
9165 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
9166 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
9167 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
9168 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
9169 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
9170 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
9171
9172 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
9173 }
9174
9175 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009176}
9177
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01009178static int nl80211_join_ocb(struct sk_buff *skb, struct genl_info *info)
9179{
9180 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9181 struct net_device *dev = info->user_ptr[1];
9182 struct ocb_setup setup = {};
9183 int err;
9184
9185 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
9186 if (err)
9187 return err;
9188
9189 return cfg80211_join_ocb(rdev, dev, &setup);
9190}
9191
9192static int nl80211_leave_ocb(struct sk_buff *skb, struct genl_info *info)
9193{
9194 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9195 struct net_device *dev = info->user_ptr[1];
9196
9197 return cfg80211_leave_ocb(rdev, dev);
9198}
9199
Johannes Berg29cbe682010-12-03 09:20:44 +01009200static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
9201{
9202 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9203 struct net_device *dev = info->user_ptr[1];
9204 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08009205 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01009206 int err;
9207
9208 /* start with default */
9209 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08009210 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01009211
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009212 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01009213 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009214 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01009215 if (err)
9216 return err;
9217 }
9218
9219 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
9220 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
9221 return -EINVAL;
9222
Javier Cardonac80d5452010-12-16 17:37:49 -08009223 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
9224 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
9225
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08009226 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
9227 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
9228 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
9229 return -EINVAL;
9230
Marco Porsch9bdbf042013-01-07 16:04:51 +01009231 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
9232 setup.beacon_interval =
9233 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
9234 if (setup.beacon_interval < 10 ||
9235 setup.beacon_interval > 10000)
9236 return -EINVAL;
9237 }
9238
9239 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
9240 setup.dtim_period =
9241 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
9242 if (setup.dtim_period < 1 || setup.dtim_period > 100)
9243 return -EINVAL;
9244 }
9245
Javier Cardonac80d5452010-12-16 17:37:49 -08009246 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
9247 /* parse additional setup parameters if given */
9248 err = nl80211_parse_mesh_setup(info, &setup);
9249 if (err)
9250 return err;
9251 }
9252
Thomas Pedersend37bb182013-03-04 13:06:13 -08009253 if (setup.user_mpm)
9254 cfg.auto_open_plinks = false;
9255
Johannes Bergcc1d2802012-05-16 23:50:20 +02009256 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01009257 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
9258 if (err)
9259 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02009260 } else {
9261 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01009262 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02009263 }
9264
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07009265 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
9266 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
9267 int n_rates =
9268 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
9269 struct ieee80211_supported_band *sband;
9270
9271 if (!setup.chandef.chan)
9272 return -EINVAL;
9273
9274 sband = rdev->wiphy.bands[setup.chandef.chan->band];
9275
9276 err = ieee80211_get_ratemask(sband, rates, n_rates,
9277 &setup.basic_rates);
9278 if (err)
9279 return err;
9280 }
9281
Javier Cardonac80d5452010-12-16 17:37:49 -08009282 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01009283}
9284
9285static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
9286{
9287 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9288 struct net_device *dev = info->user_ptr[1];
9289
9290 return cfg80211_leave_mesh(rdev, dev);
9291}
9292
Johannes Bergdfb89c52012-06-27 09:23:48 +02009293#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009294static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
9295 struct cfg80211_registered_device *rdev)
9296{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009297 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009298 struct nlattr *nl_pats, *nl_pat;
9299 int i, pat_len;
9300
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009301 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009302 return 0;
9303
9304 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
9305 if (!nl_pats)
9306 return -ENOBUFS;
9307
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009308 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009309 nl_pat = nla_nest_start(msg, i + 1);
9310 if (!nl_pat)
9311 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009312 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009313 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009314 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009315 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
9316 wowlan->patterns[i].pattern) ||
9317 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009318 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009319 return -ENOBUFS;
9320 nla_nest_end(msg, nl_pat);
9321 }
9322 nla_nest_end(msg, nl_pats);
9323
9324 return 0;
9325}
9326
Johannes Berg2a0e0472013-01-23 22:57:40 +01009327static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
9328 struct cfg80211_wowlan_tcp *tcp)
9329{
9330 struct nlattr *nl_tcp;
9331
9332 if (!tcp)
9333 return 0;
9334
9335 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
9336 if (!nl_tcp)
9337 return -ENOBUFS;
9338
Jiri Benc930345e2015-03-29 16:59:25 +02009339 if (nla_put_in_addr(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
9340 nla_put_in_addr(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
Johannes Berg2a0e0472013-01-23 22:57:40 +01009341 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
9342 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
9343 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
9344 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
9345 tcp->payload_len, tcp->payload) ||
9346 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
9347 tcp->data_interval) ||
9348 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
9349 tcp->wake_len, tcp->wake_data) ||
9350 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
9351 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
9352 return -ENOBUFS;
9353
9354 if (tcp->payload_seq.len &&
9355 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
9356 sizeof(tcp->payload_seq), &tcp->payload_seq))
9357 return -ENOBUFS;
9358
9359 if (tcp->payload_tok.len &&
9360 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
9361 sizeof(tcp->payload_tok) + tcp->tokens_size,
9362 &tcp->payload_tok))
9363 return -ENOBUFS;
9364
Johannes Berge248ad32013-05-16 10:24:28 +02009365 nla_nest_end(msg, nl_tcp);
9366
Johannes Berg2a0e0472013-01-23 22:57:40 +01009367 return 0;
9368}
9369
Luciano Coelho75453cc2015-01-09 14:06:37 +02009370static int nl80211_send_wowlan_nd(struct sk_buff *msg,
9371 struct cfg80211_sched_scan_request *req)
9372{
Avraham Stern3b06d272015-10-12 09:51:34 +03009373 struct nlattr *nd, *freqs, *matches, *match, *scan_plans, *scan_plan;
Luciano Coelho75453cc2015-01-09 14:06:37 +02009374 int i;
9375
9376 if (!req)
9377 return 0;
9378
9379 nd = nla_nest_start(msg, NL80211_WOWLAN_TRIG_NET_DETECT);
9380 if (!nd)
9381 return -ENOBUFS;
9382
Avraham Stern3b06d272015-10-12 09:51:34 +03009383 if (req->n_scan_plans == 1 &&
9384 nla_put_u32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL,
9385 req->scan_plans[0].interval * 1000))
Luciano Coelho75453cc2015-01-09 14:06:37 +02009386 return -ENOBUFS;
9387
Luciano Coelho21fea562015-03-17 16:36:01 +02009388 if (nla_put_u32(msg, NL80211_ATTR_SCHED_SCAN_DELAY, req->delay))
9389 return -ENOBUFS;
9390
Luciano Coelho75453cc2015-01-09 14:06:37 +02009391 freqs = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
9392 if (!freqs)
9393 return -ENOBUFS;
9394
9395 for (i = 0; i < req->n_channels; i++)
9396 nla_put_u32(msg, i, req->channels[i]->center_freq);
9397
9398 nla_nest_end(msg, freqs);
9399
9400 if (req->n_match_sets) {
9401 matches = nla_nest_start(msg, NL80211_ATTR_SCHED_SCAN_MATCH);
9402 for (i = 0; i < req->n_match_sets; i++) {
9403 match = nla_nest_start(msg, i);
9404 nla_put(msg, NL80211_SCHED_SCAN_MATCH_ATTR_SSID,
9405 req->match_sets[i].ssid.ssid_len,
9406 req->match_sets[i].ssid.ssid);
9407 nla_nest_end(msg, match);
9408 }
9409 nla_nest_end(msg, matches);
9410 }
9411
Avraham Stern3b06d272015-10-12 09:51:34 +03009412 scan_plans = nla_nest_start(msg, NL80211_ATTR_SCHED_SCAN_PLANS);
9413 if (!scan_plans)
9414 return -ENOBUFS;
9415
9416 for (i = 0; i < req->n_scan_plans; i++) {
9417 scan_plan = nla_nest_start(msg, i + 1);
9418 if (!scan_plan ||
9419 nla_put_u32(msg, NL80211_SCHED_SCAN_PLAN_INTERVAL,
9420 req->scan_plans[i].interval) ||
9421 (req->scan_plans[i].iterations &&
9422 nla_put_u32(msg, NL80211_SCHED_SCAN_PLAN_ITERATIONS,
9423 req->scan_plans[i].iterations)))
9424 return -ENOBUFS;
9425 nla_nest_end(msg, scan_plan);
9426 }
9427 nla_nest_end(msg, scan_plans);
9428
Luciano Coelho75453cc2015-01-09 14:06:37 +02009429 nla_nest_end(msg, nd);
9430
9431 return 0;
9432}
9433
Johannes Bergff1b6e62011-05-04 15:37:28 +02009434static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
9435{
9436 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9437 struct sk_buff *msg;
9438 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01009439 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009440
Johannes Berg964dc9e2013-06-03 17:25:34 +02009441 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02009442 return -EOPNOTSUPP;
9443
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009444 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01009445 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009446 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
9447 rdev->wiphy.wowlan_config->tcp->payload_len +
9448 rdev->wiphy.wowlan_config->tcp->wake_len +
9449 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01009450 }
9451
9452 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02009453 if (!msg)
9454 return -ENOMEM;
9455
Eric W. Biederman15e47302012-09-07 20:12:54 +00009456 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02009457 NL80211_CMD_GET_WOWLAN);
9458 if (!hdr)
9459 goto nla_put_failure;
9460
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009461 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02009462 struct nlattr *nl_wowlan;
9463
9464 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
9465 if (!nl_wowlan)
9466 goto nla_put_failure;
9467
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009468 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009469 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009470 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009471 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009472 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009473 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009474 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009475 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009476 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009477 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009478 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009479 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009480 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009481 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
9482 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01009483
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009484 if (nl80211_send_wowlan_patterns(msg, rdev))
9485 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01009486
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009487 if (nl80211_send_wowlan_tcp(msg,
9488 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01009489 goto nla_put_failure;
9490
Luciano Coelho75453cc2015-01-09 14:06:37 +02009491 if (nl80211_send_wowlan_nd(
9492 msg,
9493 rdev->wiphy.wowlan_config->nd_config))
9494 goto nla_put_failure;
9495
Johannes Bergff1b6e62011-05-04 15:37:28 +02009496 nla_nest_end(msg, nl_wowlan);
9497 }
9498
9499 genlmsg_end(msg, hdr);
9500 return genlmsg_reply(msg, info);
9501
9502nla_put_failure:
9503 nlmsg_free(msg);
9504 return -ENOBUFS;
9505}
9506
Johannes Berg2a0e0472013-01-23 22:57:40 +01009507static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
9508 struct nlattr *attr,
9509 struct cfg80211_wowlan *trig)
9510{
9511 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
9512 struct cfg80211_wowlan_tcp *cfg;
9513 struct nl80211_wowlan_tcp_data_token *tok = NULL;
9514 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
9515 u32 size;
9516 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
9517 int err, port;
9518
Johannes Berg964dc9e2013-06-03 17:25:34 +02009519 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009520 return -EINVAL;
9521
9522 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
9523 nla_data(attr), nla_len(attr),
9524 nl80211_wowlan_tcp_policy);
9525 if (err)
9526 return err;
9527
9528 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
9529 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
9530 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
9531 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
9532 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
9533 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
9534 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
9535 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
9536 return -EINVAL;
9537
9538 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02009539 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009540 return -EINVAL;
9541
9542 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02009543 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01009544 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009545 return -EINVAL;
9546
9547 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02009548 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009549 return -EINVAL;
9550
9551 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
9552 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
9553 return -EINVAL;
9554
9555 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
9556 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
9557
9558 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
9559 tokens_size = tokln - sizeof(*tok);
9560
9561 if (!tok->len || tokens_size % tok->len)
9562 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02009563 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009564 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02009565 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009566 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02009567 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009568 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02009569 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009570 return -EINVAL;
9571 if (tok->offset + tok->len > data_size)
9572 return -EINVAL;
9573 }
9574
9575 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
9576 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02009577 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01009578 return -EINVAL;
9579 if (seq->len == 0 || seq->len > 4)
9580 return -EINVAL;
9581 if (seq->len + seq->offset > data_size)
9582 return -EINVAL;
9583 }
9584
9585 size = sizeof(*cfg);
9586 size += data_size;
9587 size += wake_size + wake_mask_size;
9588 size += tokens_size;
9589
9590 cfg = kzalloc(size, GFP_KERNEL);
9591 if (!cfg)
9592 return -ENOMEM;
Jiri Benc67b61f62015-03-29 16:59:26 +02009593 cfg->src = nla_get_in_addr(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
9594 cfg->dst = nla_get_in_addr(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
Johannes Berg2a0e0472013-01-23 22:57:40 +01009595 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
9596 ETH_ALEN);
9597 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
9598 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
9599 else
9600 port = 0;
9601#ifdef CONFIG_INET
9602 /* allocate a socket and port for it and use it */
9603 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
9604 IPPROTO_TCP, &cfg->sock, 1);
9605 if (err) {
9606 kfree(cfg);
9607 return err;
9608 }
9609 if (inet_csk_get_port(cfg->sock->sk, port)) {
9610 sock_release(cfg->sock);
9611 kfree(cfg);
9612 return -EADDRINUSE;
9613 }
9614 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
9615#else
9616 if (!port) {
9617 kfree(cfg);
9618 return -EINVAL;
9619 }
9620 cfg->src_port = port;
9621#endif
9622
9623 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
9624 cfg->payload_len = data_size;
9625 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
9626 memcpy((void *)cfg->payload,
9627 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
9628 data_size);
9629 if (seq)
9630 cfg->payload_seq = *seq;
9631 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
9632 cfg->wake_len = wake_size;
9633 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
9634 memcpy((void *)cfg->wake_data,
9635 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
9636 wake_size);
9637 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
9638 data_size + wake_size;
9639 memcpy((void *)cfg->wake_mask,
9640 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
9641 wake_mask_size);
9642 if (tok) {
9643 cfg->tokens_size = tokens_size;
9644 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
9645 }
9646
9647 trig->tcp = cfg;
9648
9649 return 0;
9650}
9651
Luciano Coelho8cd4d452014-09-17 11:55:28 +03009652static int nl80211_parse_wowlan_nd(struct cfg80211_registered_device *rdev,
9653 const struct wiphy_wowlan_support *wowlan,
9654 struct nlattr *attr,
9655 struct cfg80211_wowlan *trig)
9656{
9657 struct nlattr **tb;
9658 int err;
9659
9660 tb = kzalloc(NUM_NL80211_ATTR * sizeof(*tb), GFP_KERNEL);
9661 if (!tb)
9662 return -ENOMEM;
9663
9664 if (!(wowlan->flags & WIPHY_WOWLAN_NET_DETECT)) {
9665 err = -EOPNOTSUPP;
9666 goto out;
9667 }
9668
9669 err = nla_parse(tb, NL80211_ATTR_MAX,
9670 nla_data(attr), nla_len(attr),
9671 nl80211_policy);
9672 if (err)
9673 goto out;
9674
Johannes Bergad2b26a2014-06-12 21:39:05 +02009675 trig->nd_config = nl80211_parse_sched_scan(&rdev->wiphy, NULL, tb);
Luciano Coelho8cd4d452014-09-17 11:55:28 +03009676 err = PTR_ERR_OR_ZERO(trig->nd_config);
9677 if (err)
9678 trig->nd_config = NULL;
9679
9680out:
9681 kfree(tb);
9682 return err;
9683}
9684
Johannes Bergff1b6e62011-05-04 15:37:28 +02009685static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
9686{
9687 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9688 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02009689 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02009690 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02009691 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009692 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009693 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Berg98fc4382015-03-01 09:10:13 +02009694 bool regular = false;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009695
Johannes Berg964dc9e2013-06-03 17:25:34 +02009696 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02009697 return -EOPNOTSUPP;
9698
Johannes Bergae33bd82012-07-12 16:25:02 +02009699 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
9700 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009701 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02009702 goto set_wakeup;
9703 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02009704
9705 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
9706 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
9707 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
9708 nl80211_wowlan_policy);
9709 if (err)
9710 return err;
9711
9712 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
9713 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
9714 return -EINVAL;
9715 new_triggers.any = true;
9716 }
9717
9718 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
9719 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
9720 return -EINVAL;
9721 new_triggers.disconnect = true;
Johannes Berg98fc4382015-03-01 09:10:13 +02009722 regular = true;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009723 }
9724
9725 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
9726 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
9727 return -EINVAL;
9728 new_triggers.magic_pkt = true;
Johannes Berg98fc4382015-03-01 09:10:13 +02009729 regular = true;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009730 }
9731
Johannes Berg77dbbb12011-07-13 10:48:55 +02009732 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
9733 return -EINVAL;
9734
9735 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
9736 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
9737 return -EINVAL;
9738 new_triggers.gtk_rekey_failure = true;
Johannes Berg98fc4382015-03-01 09:10:13 +02009739 regular = true;
Johannes Berg77dbbb12011-07-13 10:48:55 +02009740 }
9741
9742 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
9743 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
9744 return -EINVAL;
9745 new_triggers.eap_identity_req = true;
Johannes Berg98fc4382015-03-01 09:10:13 +02009746 regular = true;
Johannes Berg77dbbb12011-07-13 10:48:55 +02009747 }
9748
9749 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
9750 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
9751 return -EINVAL;
9752 new_triggers.four_way_handshake = true;
Johannes Berg98fc4382015-03-01 09:10:13 +02009753 regular = true;
Johannes Berg77dbbb12011-07-13 10:48:55 +02009754 }
9755
9756 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
9757 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
9758 return -EINVAL;
9759 new_triggers.rfkill_release = true;
Johannes Berg98fc4382015-03-01 09:10:13 +02009760 regular = true;
Johannes Berg77dbbb12011-07-13 10:48:55 +02009761 }
9762
Johannes Bergff1b6e62011-05-04 15:37:28 +02009763 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
9764 struct nlattr *pat;
9765 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009766 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009767 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02009768
Johannes Berg98fc4382015-03-01 09:10:13 +02009769 regular = true;
9770
Johannes Bergff1b6e62011-05-04 15:37:28 +02009771 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
9772 rem)
9773 n_patterns++;
9774 if (n_patterns > wowlan->n_patterns)
9775 return -EINVAL;
9776
9777 new_triggers.patterns = kcalloc(n_patterns,
9778 sizeof(new_triggers.patterns[0]),
9779 GFP_KERNEL);
9780 if (!new_triggers.patterns)
9781 return -ENOMEM;
9782
9783 new_triggers.n_patterns = n_patterns;
9784 i = 0;
9785
9786 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
9787 rem) {
Johannes Berg922bd802014-05-19 17:59:50 +02009788 u8 *mask_pat;
9789
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009790 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
9791 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02009792 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009793 if (!pat_tb[NL80211_PKTPAT_MASK] ||
9794 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02009795 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009796 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02009797 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009798 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02009799 goto error;
9800 if (pat_len > wowlan->pattern_max_len ||
9801 pat_len < wowlan->pattern_min_len)
9802 goto error;
9803
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009804 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009805 pkt_offset = 0;
9806 else
9807 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009808 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08009809 if (pkt_offset > wowlan->max_pkt_offset)
9810 goto error;
9811 new_triggers.patterns[i].pkt_offset = pkt_offset;
9812
Johannes Berg922bd802014-05-19 17:59:50 +02009813 mask_pat = kmalloc(mask_len + pat_len, GFP_KERNEL);
9814 if (!mask_pat) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02009815 err = -ENOMEM;
9816 goto error;
9817 }
Johannes Berg922bd802014-05-19 17:59:50 +02009818 new_triggers.patterns[i].mask = mask_pat;
9819 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02009820 mask_len);
Johannes Berg922bd802014-05-19 17:59:50 +02009821 mask_pat += mask_len;
9822 new_triggers.patterns[i].pattern = mask_pat;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009823 new_triggers.patterns[i].pattern_len = pat_len;
Johannes Berg922bd802014-05-19 17:59:50 +02009824 memcpy(mask_pat,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07009825 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02009826 pat_len);
9827 i++;
9828 }
9829 }
9830
Johannes Berg2a0e0472013-01-23 22:57:40 +01009831 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
Johannes Berg98fc4382015-03-01 09:10:13 +02009832 regular = true;
Johannes Berg2a0e0472013-01-23 22:57:40 +01009833 err = nl80211_parse_wowlan_tcp(
9834 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
9835 &new_triggers);
9836 if (err)
9837 goto error;
9838 }
9839
Luciano Coelho8cd4d452014-09-17 11:55:28 +03009840 if (tb[NL80211_WOWLAN_TRIG_NET_DETECT]) {
Johannes Berg98fc4382015-03-01 09:10:13 +02009841 regular = true;
Luciano Coelho8cd4d452014-09-17 11:55:28 +03009842 err = nl80211_parse_wowlan_nd(
9843 rdev, wowlan, tb[NL80211_WOWLAN_TRIG_NET_DETECT],
9844 &new_triggers);
9845 if (err)
9846 goto error;
9847 }
9848
Johannes Berg98fc4382015-03-01 09:10:13 +02009849 /* The 'any' trigger means the device continues operating more or less
9850 * as in its normal operation mode and wakes up the host on most of the
9851 * normal interrupts (like packet RX, ...)
9852 * It therefore makes little sense to combine with the more constrained
9853 * wakeup trigger modes.
9854 */
9855 if (new_triggers.any && regular) {
9856 err = -EINVAL;
9857 goto error;
9858 }
9859
Johannes Bergae33bd82012-07-12 16:25:02 +02009860 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
9861 if (!ntrig) {
9862 err = -ENOMEM;
9863 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009864 }
Johannes Bergae33bd82012-07-12 16:25:02 +02009865 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009866 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02009867
Johannes Bergae33bd82012-07-12 16:25:02 +02009868 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02009869 if (rdev->ops->set_wakeup &&
9870 prev_enabled != !!rdev->wiphy.wowlan_config)
9871 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02009872
Johannes Bergff1b6e62011-05-04 15:37:28 +02009873 return 0;
9874 error:
9875 for (i = 0; i < new_triggers.n_patterns; i++)
9876 kfree(new_triggers.patterns[i].mask);
9877 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01009878 if (new_triggers.tcp && new_triggers.tcp->sock)
9879 sock_release(new_triggers.tcp->sock);
9880 kfree(new_triggers.tcp);
Ola Olssone5dbe072015-12-12 23:17:17 +01009881 kfree(new_triggers.nd_config);
Johannes Bergff1b6e62011-05-04 15:37:28 +02009882 return err;
9883}
Johannes Bergdfb89c52012-06-27 09:23:48 +02009884#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02009885
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07009886static int nl80211_send_coalesce_rules(struct sk_buff *msg,
9887 struct cfg80211_registered_device *rdev)
9888{
9889 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
9890 int i, j, pat_len;
9891 struct cfg80211_coalesce_rules *rule;
9892
9893 if (!rdev->coalesce->n_rules)
9894 return 0;
9895
9896 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
9897 if (!nl_rules)
9898 return -ENOBUFS;
9899
9900 for (i = 0; i < rdev->coalesce->n_rules; i++) {
9901 nl_rule = nla_nest_start(msg, i + 1);
9902 if (!nl_rule)
9903 return -ENOBUFS;
9904
9905 rule = &rdev->coalesce->rules[i];
9906 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
9907 rule->delay))
9908 return -ENOBUFS;
9909
9910 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
9911 rule->condition))
9912 return -ENOBUFS;
9913
9914 nl_pats = nla_nest_start(msg,
9915 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
9916 if (!nl_pats)
9917 return -ENOBUFS;
9918
9919 for (j = 0; j < rule->n_patterns; j++) {
9920 nl_pat = nla_nest_start(msg, j + 1);
9921 if (!nl_pat)
9922 return -ENOBUFS;
9923 pat_len = rule->patterns[j].pattern_len;
9924 if (nla_put(msg, NL80211_PKTPAT_MASK,
9925 DIV_ROUND_UP(pat_len, 8),
9926 rule->patterns[j].mask) ||
9927 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
9928 rule->patterns[j].pattern) ||
9929 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
9930 rule->patterns[j].pkt_offset))
9931 return -ENOBUFS;
9932 nla_nest_end(msg, nl_pat);
9933 }
9934 nla_nest_end(msg, nl_pats);
9935 nla_nest_end(msg, nl_rule);
9936 }
9937 nla_nest_end(msg, nl_rules);
9938
9939 return 0;
9940}
9941
9942static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
9943{
9944 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9945 struct sk_buff *msg;
9946 void *hdr;
9947
9948 if (!rdev->wiphy.coalesce)
9949 return -EOPNOTSUPP;
9950
9951 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9952 if (!msg)
9953 return -ENOMEM;
9954
9955 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
9956 NL80211_CMD_GET_COALESCE);
9957 if (!hdr)
9958 goto nla_put_failure;
9959
9960 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
9961 goto nla_put_failure;
9962
9963 genlmsg_end(msg, hdr);
9964 return genlmsg_reply(msg, info);
9965
9966nla_put_failure:
9967 nlmsg_free(msg);
9968 return -ENOBUFS;
9969}
9970
9971void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
9972{
9973 struct cfg80211_coalesce *coalesce = rdev->coalesce;
9974 int i, j;
9975 struct cfg80211_coalesce_rules *rule;
9976
9977 if (!coalesce)
9978 return;
9979
9980 for (i = 0; i < coalesce->n_rules; i++) {
9981 rule = &coalesce->rules[i];
9982 for (j = 0; j < rule->n_patterns; j++)
9983 kfree(rule->patterns[j].mask);
9984 kfree(rule->patterns);
9985 }
9986 kfree(coalesce->rules);
9987 kfree(coalesce);
9988 rdev->coalesce = NULL;
9989}
9990
9991static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
9992 struct nlattr *rule,
9993 struct cfg80211_coalesce_rules *new_rule)
9994{
9995 int err, i;
9996 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
9997 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
9998 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
9999 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
10000
10001 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
10002 nla_len(rule), nl80211_coalesce_policy);
10003 if (err)
10004 return err;
10005
10006 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
10007 new_rule->delay =
10008 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
10009 if (new_rule->delay > coalesce->max_delay)
10010 return -EINVAL;
10011
10012 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
10013 new_rule->condition =
10014 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
10015 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
10016 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
10017 return -EINVAL;
10018
10019 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
10020 return -EINVAL;
10021
10022 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
10023 rem)
10024 n_patterns++;
10025 if (n_patterns > coalesce->n_patterns)
10026 return -EINVAL;
10027
10028 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
10029 GFP_KERNEL);
10030 if (!new_rule->patterns)
10031 return -ENOMEM;
10032
10033 new_rule->n_patterns = n_patterns;
10034 i = 0;
10035
10036 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
10037 rem) {
Johannes Berg922bd802014-05-19 17:59:50 +020010038 u8 *mask_pat;
10039
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010040 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
10041 nla_len(pat), NULL);
10042 if (!pat_tb[NL80211_PKTPAT_MASK] ||
10043 !pat_tb[NL80211_PKTPAT_PATTERN])
10044 return -EINVAL;
10045 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
10046 mask_len = DIV_ROUND_UP(pat_len, 8);
10047 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
10048 return -EINVAL;
10049 if (pat_len > coalesce->pattern_max_len ||
10050 pat_len < coalesce->pattern_min_len)
10051 return -EINVAL;
10052
10053 if (!pat_tb[NL80211_PKTPAT_OFFSET])
10054 pkt_offset = 0;
10055 else
10056 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
10057 if (pkt_offset > coalesce->max_pkt_offset)
10058 return -EINVAL;
10059 new_rule->patterns[i].pkt_offset = pkt_offset;
10060
Johannes Berg922bd802014-05-19 17:59:50 +020010061 mask_pat = kmalloc(mask_len + pat_len, GFP_KERNEL);
10062 if (!mask_pat)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010063 return -ENOMEM;
Johannes Berg922bd802014-05-19 17:59:50 +020010064
10065 new_rule->patterns[i].mask = mask_pat;
10066 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_MASK]),
10067 mask_len);
10068
10069 mask_pat += mask_len;
10070 new_rule->patterns[i].pattern = mask_pat;
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010071 new_rule->patterns[i].pattern_len = pat_len;
Johannes Berg922bd802014-05-19 17:59:50 +020010072 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
10073 pat_len);
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010074 i++;
10075 }
10076
10077 return 0;
10078}
10079
10080static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
10081{
10082 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10083 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
10084 struct cfg80211_coalesce new_coalesce = {};
10085 struct cfg80211_coalesce *n_coalesce;
10086 int err, rem_rule, n_rules = 0, i, j;
10087 struct nlattr *rule;
10088 struct cfg80211_coalesce_rules *tmp_rule;
10089
10090 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
10091 return -EOPNOTSUPP;
10092
10093 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
10094 cfg80211_rdev_free_coalesce(rdev);
Ilan Peera1056b12015-10-22 22:27:46 +030010095 rdev_set_coalesce(rdev, NULL);
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010096 return 0;
10097 }
10098
10099 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
10100 rem_rule)
10101 n_rules++;
10102 if (n_rules > coalesce->n_rules)
10103 return -EINVAL;
10104
10105 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
10106 GFP_KERNEL);
10107 if (!new_coalesce.rules)
10108 return -ENOMEM;
10109
10110 new_coalesce.n_rules = n_rules;
10111 i = 0;
10112
10113 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
10114 rem_rule) {
10115 err = nl80211_parse_coalesce_rule(rdev, rule,
10116 &new_coalesce.rules[i]);
10117 if (err)
10118 goto error;
10119
10120 i++;
10121 }
10122
Ilan Peera1056b12015-10-22 22:27:46 +030010123 err = rdev_set_coalesce(rdev, &new_coalesce);
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010124 if (err)
10125 goto error;
10126
10127 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
10128 if (!n_coalesce) {
10129 err = -ENOMEM;
10130 goto error;
10131 }
10132 cfg80211_rdev_free_coalesce(rdev);
10133 rdev->coalesce = n_coalesce;
10134
10135 return 0;
10136error:
10137 for (i = 0; i < new_coalesce.n_rules; i++) {
10138 tmp_rule = &new_coalesce.rules[i];
10139 for (j = 0; j < tmp_rule->n_patterns; j++)
10140 kfree(tmp_rule->patterns[j].mask);
10141 kfree(tmp_rule->patterns);
10142 }
10143 kfree(new_coalesce.rules);
10144
10145 return err;
10146}
10147
Johannes Berge5497d72011-07-05 16:35:40 +020010148static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
10149{
10150 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10151 struct net_device *dev = info->user_ptr[1];
10152 struct wireless_dev *wdev = dev->ieee80211_ptr;
10153 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
10154 struct cfg80211_gtk_rekey_data rekey_data;
10155 int err;
10156
10157 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
10158 return -EINVAL;
10159
10160 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
10161 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
10162 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
10163 nl80211_rekey_policy);
10164 if (err)
10165 return err;
10166
10167 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
10168 return -ERANGE;
10169 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
10170 return -ERANGE;
10171 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
10172 return -ERANGE;
10173
Johannes Berg78f686c2014-09-10 22:28:06 +030010174 rekey_data.kek = nla_data(tb[NL80211_REKEY_DATA_KEK]);
10175 rekey_data.kck = nla_data(tb[NL80211_REKEY_DATA_KCK]);
10176 rekey_data.replay_ctr = nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]);
Johannes Berge5497d72011-07-05 16:35:40 +020010177
10178 wdev_lock(wdev);
10179 if (!wdev->current_bss) {
10180 err = -ENOTCONN;
10181 goto out;
10182 }
10183
10184 if (!rdev->ops->set_rekey_data) {
10185 err = -EOPNOTSUPP;
10186 goto out;
10187 }
10188
Hila Gonene35e4d22012-06-27 17:19:42 +030010189 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +020010190 out:
10191 wdev_unlock(wdev);
10192 return err;
10193}
10194
Johannes Berg28946da2011-11-04 11:18:12 +010010195static int nl80211_register_unexpected_frame(struct sk_buff *skb,
10196 struct genl_info *info)
10197{
10198 struct net_device *dev = info->user_ptr[1];
10199 struct wireless_dev *wdev = dev->ieee80211_ptr;
10200
10201 if (wdev->iftype != NL80211_IFTYPE_AP &&
10202 wdev->iftype != NL80211_IFTYPE_P2P_GO)
10203 return -EINVAL;
10204
Eric W. Biederman15e47302012-09-07 20:12:54 +000010205 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010010206 return -EBUSY;
10207
Eric W. Biederman15e47302012-09-07 20:12:54 +000010208 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +010010209 return 0;
10210}
10211
Johannes Berg7f6cf312011-11-04 11:18:15 +010010212static int nl80211_probe_client(struct sk_buff *skb,
10213 struct genl_info *info)
10214{
10215 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10216 struct net_device *dev = info->user_ptr[1];
10217 struct wireless_dev *wdev = dev->ieee80211_ptr;
10218 struct sk_buff *msg;
10219 void *hdr;
10220 const u8 *addr;
10221 u64 cookie;
10222 int err;
10223
10224 if (wdev->iftype != NL80211_IFTYPE_AP &&
10225 wdev->iftype != NL80211_IFTYPE_P2P_GO)
10226 return -EOPNOTSUPP;
10227
10228 if (!info->attrs[NL80211_ATTR_MAC])
10229 return -EINVAL;
10230
10231 if (!rdev->ops->probe_client)
10232 return -EOPNOTSUPP;
10233
10234 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
10235 if (!msg)
10236 return -ENOMEM;
10237
Eric W. Biederman15e47302012-09-07 20:12:54 +000010238 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +010010239 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +030010240 if (!hdr) {
10241 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010242 goto free_msg;
10243 }
10244
10245 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
10246
Hila Gonene35e4d22012-06-27 17:19:42 +030010247 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +010010248 if (err)
10249 goto free_msg;
10250
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020010251 if (nla_put_u64_64bit(msg, NL80211_ATTR_COOKIE, cookie,
10252 NL80211_ATTR_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -040010253 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010254
10255 genlmsg_end(msg, hdr);
10256
10257 return genlmsg_reply(msg, info);
10258
10259 nla_put_failure:
10260 err = -ENOBUFS;
10261 free_msg:
10262 nlmsg_free(msg);
10263 return err;
10264}
10265
Johannes Berg5e7602302011-11-04 11:18:17 +010010266static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
10267{
10268 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -070010269 struct cfg80211_beacon_registration *reg, *nreg;
10270 int rv;
Johannes Berg5e7602302011-11-04 11:18:17 +010010271
10272 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
10273 return -EOPNOTSUPP;
10274
Ben Greear37c73b52012-10-26 14:49:25 -070010275 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
10276 if (!nreg)
10277 return -ENOMEM;
Johannes Berg5e7602302011-11-04 11:18:17 +010010278
Ben Greear37c73b52012-10-26 14:49:25 -070010279 /* First, check if already registered. */
10280 spin_lock_bh(&rdev->beacon_registrations_lock);
10281 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
10282 if (reg->nlportid == info->snd_portid) {
10283 rv = -EALREADY;
10284 goto out_err;
10285 }
10286 }
10287 /* Add it to the list */
10288 nreg->nlportid = info->snd_portid;
10289 list_add(&nreg->list, &rdev->beacon_registrations);
10290
10291 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010010292
10293 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -070010294out_err:
10295 spin_unlock_bh(&rdev->beacon_registrations_lock);
10296 kfree(nreg);
10297 return rv;
Johannes Berg5e7602302011-11-04 11:18:17 +010010298}
10299
Johannes Berg98104fde2012-06-16 00:19:54 +020010300static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
10301{
10302 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10303 struct wireless_dev *wdev = info->user_ptr[1];
10304 int err;
10305
10306 if (!rdev->ops->start_p2p_device)
10307 return -EOPNOTSUPP;
10308
10309 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
10310 return -EOPNOTSUPP;
10311
10312 if (wdev->p2p_started)
10313 return 0;
10314
Luciano Coelhob6a55012014-02-27 11:07:21 +020010315 if (rfkill_blocked(rdev->rfkill))
10316 return -ERFKILL;
Johannes Berg98104fde2012-06-16 00:19:54 +020010317
Johannes Bergeeb126e2012-10-23 15:16:50 +020010318 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +020010319 if (err)
10320 return err;
10321
10322 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +020010323 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +020010324
10325 return 0;
10326}
10327
10328static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
10329{
10330 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10331 struct wireless_dev *wdev = info->user_ptr[1];
10332
10333 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
10334 return -EOPNOTSUPP;
10335
10336 if (!rdev->ops->stop_p2p_device)
10337 return -EOPNOTSUPP;
10338
Johannes Bergf9f47522013-03-19 15:04:07 +010010339 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +020010340
10341 return 0;
10342}
10343
Johannes Berg3713b4e2013-02-14 16:19:38 +010010344static int nl80211_get_protocol_features(struct sk_buff *skb,
10345 struct genl_info *info)
10346{
10347 void *hdr;
10348 struct sk_buff *msg;
10349
10350 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
10351 if (!msg)
10352 return -ENOMEM;
10353
10354 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
10355 NL80211_CMD_GET_PROTOCOL_FEATURES);
10356 if (!hdr)
10357 goto nla_put_failure;
10358
10359 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
10360 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
10361 goto nla_put_failure;
10362
10363 genlmsg_end(msg, hdr);
10364 return genlmsg_reply(msg, info);
10365
10366 nla_put_failure:
10367 kfree_skb(msg);
10368 return -ENOBUFS;
10369}
10370
Jouni Malinen355199e2013-02-27 17:14:27 +020010371static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
10372{
10373 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10374 struct cfg80211_update_ft_ies_params ft_params;
10375 struct net_device *dev = info->user_ptr[1];
10376
10377 if (!rdev->ops->update_ft_ies)
10378 return -EOPNOTSUPP;
10379
10380 if (!info->attrs[NL80211_ATTR_MDID] ||
10381 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
10382 return -EINVAL;
10383
10384 memset(&ft_params, 0, sizeof(ft_params));
10385 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
10386 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
10387 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
10388
10389 return rdev_update_ft_ies(rdev, dev, &ft_params);
10390}
10391
Arend van Spriel5de17982013-04-18 15:49:00 +020010392static int nl80211_crit_protocol_start(struct sk_buff *skb,
10393 struct genl_info *info)
10394{
10395 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10396 struct wireless_dev *wdev = info->user_ptr[1];
10397 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
10398 u16 duration;
10399 int ret;
10400
10401 if (!rdev->ops->crit_proto_start)
10402 return -EOPNOTSUPP;
10403
10404 if (WARN_ON(!rdev->ops->crit_proto_stop))
10405 return -EINVAL;
10406
10407 if (rdev->crit_proto_nlportid)
10408 return -EBUSY;
10409
10410 /* determine protocol if provided */
10411 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
10412 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
10413
10414 if (proto >= NUM_NL80211_CRIT_PROTO)
10415 return -EINVAL;
10416
10417 /* timeout must be provided */
10418 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
10419 return -EINVAL;
10420
10421 duration =
10422 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
10423
10424 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
10425 return -ERANGE;
10426
10427 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
10428 if (!ret)
10429 rdev->crit_proto_nlportid = info->snd_portid;
10430
10431 return ret;
10432}
10433
10434static int nl80211_crit_protocol_stop(struct sk_buff *skb,
10435 struct genl_info *info)
10436{
10437 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10438 struct wireless_dev *wdev = info->user_ptr[1];
10439
10440 if (!rdev->ops->crit_proto_stop)
10441 return -EOPNOTSUPP;
10442
10443 if (rdev->crit_proto_nlportid) {
10444 rdev->crit_proto_nlportid = 0;
10445 rdev_crit_proto_stop(rdev, wdev);
10446 }
10447 return 0;
10448}
10449
Johannes Bergad7e7182013-11-13 13:37:47 +010010450static int nl80211_vendor_cmd(struct sk_buff *skb, struct genl_info *info)
10451{
10452 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10453 struct wireless_dev *wdev =
10454 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
10455 int i, err;
10456 u32 vid, subcmd;
10457
10458 if (!rdev->wiphy.vendor_commands)
10459 return -EOPNOTSUPP;
10460
10461 if (IS_ERR(wdev)) {
10462 err = PTR_ERR(wdev);
10463 if (err != -EINVAL)
10464 return err;
10465 wdev = NULL;
10466 } else if (wdev->wiphy != &rdev->wiphy) {
10467 return -EINVAL;
10468 }
10469
10470 if (!info->attrs[NL80211_ATTR_VENDOR_ID] ||
10471 !info->attrs[NL80211_ATTR_VENDOR_SUBCMD])
10472 return -EINVAL;
10473
10474 vid = nla_get_u32(info->attrs[NL80211_ATTR_VENDOR_ID]);
10475 subcmd = nla_get_u32(info->attrs[NL80211_ATTR_VENDOR_SUBCMD]);
10476 for (i = 0; i < rdev->wiphy.n_vendor_commands; i++) {
10477 const struct wiphy_vendor_command *vcmd;
10478 void *data = NULL;
10479 int len = 0;
10480
10481 vcmd = &rdev->wiphy.vendor_commands[i];
10482
10483 if (vcmd->info.vendor_id != vid || vcmd->info.subcmd != subcmd)
10484 continue;
10485
10486 if (vcmd->flags & (WIPHY_VENDOR_CMD_NEED_WDEV |
10487 WIPHY_VENDOR_CMD_NEED_NETDEV)) {
10488 if (!wdev)
10489 return -EINVAL;
10490 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_NETDEV &&
10491 !wdev->netdev)
10492 return -EINVAL;
10493
10494 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_RUNNING) {
10495 if (wdev->netdev &&
10496 !netif_running(wdev->netdev))
10497 return -ENETDOWN;
10498 if (!wdev->netdev && !wdev->p2p_started)
10499 return -ENETDOWN;
10500 }
Johannes Berg7bdbe402015-08-15 22:39:49 +030010501
10502 if (!vcmd->doit)
10503 return -EOPNOTSUPP;
Johannes Bergad7e7182013-11-13 13:37:47 +010010504 } else {
10505 wdev = NULL;
10506 }
10507
10508 if (info->attrs[NL80211_ATTR_VENDOR_DATA]) {
10509 data = nla_data(info->attrs[NL80211_ATTR_VENDOR_DATA]);
10510 len = nla_len(info->attrs[NL80211_ATTR_VENDOR_DATA]);
10511 }
10512
10513 rdev->cur_cmd_info = info;
10514 err = rdev->wiphy.vendor_commands[i].doit(&rdev->wiphy, wdev,
10515 data, len);
10516 rdev->cur_cmd_info = NULL;
10517 return err;
10518 }
10519
10520 return -EOPNOTSUPP;
10521}
10522
Johannes Berg7bdbe402015-08-15 22:39:49 +030010523static int nl80211_prepare_vendor_dump(struct sk_buff *skb,
10524 struct netlink_callback *cb,
10525 struct cfg80211_registered_device **rdev,
10526 struct wireless_dev **wdev)
10527{
10528 u32 vid, subcmd;
10529 unsigned int i;
10530 int vcmd_idx = -1;
10531 int err;
10532 void *data = NULL;
10533 unsigned int data_len = 0;
10534
10535 rtnl_lock();
10536
10537 if (cb->args[0]) {
10538 /* subtract the 1 again here */
10539 struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1);
10540 struct wireless_dev *tmp;
10541
10542 if (!wiphy) {
10543 err = -ENODEV;
10544 goto out_unlock;
10545 }
10546 *rdev = wiphy_to_rdev(wiphy);
10547 *wdev = NULL;
10548
10549 if (cb->args[1]) {
Johannes Berg53873f12016-05-03 16:52:04 +030010550 list_for_each_entry(tmp, &wiphy->wdev_list, list) {
Johannes Berg7bdbe402015-08-15 22:39:49 +030010551 if (tmp->identifier == cb->args[1] - 1) {
10552 *wdev = tmp;
10553 break;
10554 }
10555 }
10556 }
10557
10558 /* keep rtnl locked in successful case */
10559 return 0;
10560 }
10561
10562 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
10563 nl80211_fam.attrbuf, nl80211_fam.maxattr,
10564 nl80211_policy);
10565 if (err)
10566 goto out_unlock;
10567
10568 if (!nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_ID] ||
10569 !nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_SUBCMD]) {
10570 err = -EINVAL;
10571 goto out_unlock;
10572 }
10573
10574 *wdev = __cfg80211_wdev_from_attrs(sock_net(skb->sk),
10575 nl80211_fam.attrbuf);
10576 if (IS_ERR(*wdev))
10577 *wdev = NULL;
10578
10579 *rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
10580 nl80211_fam.attrbuf);
10581 if (IS_ERR(*rdev)) {
10582 err = PTR_ERR(*rdev);
10583 goto out_unlock;
10584 }
10585
10586 vid = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_ID]);
10587 subcmd = nla_get_u32(nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_SUBCMD]);
10588
10589 for (i = 0; i < (*rdev)->wiphy.n_vendor_commands; i++) {
10590 const struct wiphy_vendor_command *vcmd;
10591
10592 vcmd = &(*rdev)->wiphy.vendor_commands[i];
10593
10594 if (vcmd->info.vendor_id != vid || vcmd->info.subcmd != subcmd)
10595 continue;
10596
10597 if (!vcmd->dumpit) {
10598 err = -EOPNOTSUPP;
10599 goto out_unlock;
10600 }
10601
10602 vcmd_idx = i;
10603 break;
10604 }
10605
10606 if (vcmd_idx < 0) {
10607 err = -EOPNOTSUPP;
10608 goto out_unlock;
10609 }
10610
10611 if (nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_DATA]) {
10612 data = nla_data(nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_DATA]);
10613 data_len = nla_len(nl80211_fam.attrbuf[NL80211_ATTR_VENDOR_DATA]);
10614 }
10615
10616 /* 0 is the first index - add 1 to parse only once */
10617 cb->args[0] = (*rdev)->wiphy_idx + 1;
10618 /* add 1 to know if it was NULL */
10619 cb->args[1] = *wdev ? (*wdev)->identifier + 1 : 0;
10620 cb->args[2] = vcmd_idx;
10621 cb->args[3] = (unsigned long)data;
10622 cb->args[4] = data_len;
10623
10624 /* keep rtnl locked in successful case */
10625 return 0;
10626 out_unlock:
10627 rtnl_unlock();
10628 return err;
10629}
10630
10631static int nl80211_vendor_cmd_dump(struct sk_buff *skb,
10632 struct netlink_callback *cb)
10633{
10634 struct cfg80211_registered_device *rdev;
10635 struct wireless_dev *wdev;
10636 unsigned int vcmd_idx;
10637 const struct wiphy_vendor_command *vcmd;
10638 void *data;
10639 int data_len;
10640 int err;
10641 struct nlattr *vendor_data;
10642
10643 err = nl80211_prepare_vendor_dump(skb, cb, &rdev, &wdev);
10644 if (err)
10645 return err;
10646
10647 vcmd_idx = cb->args[2];
10648 data = (void *)cb->args[3];
10649 data_len = cb->args[4];
10650 vcmd = &rdev->wiphy.vendor_commands[vcmd_idx];
10651
10652 if (vcmd->flags & (WIPHY_VENDOR_CMD_NEED_WDEV |
10653 WIPHY_VENDOR_CMD_NEED_NETDEV)) {
10654 if (!wdev)
10655 return -EINVAL;
10656 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_NETDEV &&
10657 !wdev->netdev)
10658 return -EINVAL;
10659
10660 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_RUNNING) {
10661 if (wdev->netdev &&
10662 !netif_running(wdev->netdev))
10663 return -ENETDOWN;
10664 if (!wdev->netdev && !wdev->p2p_started)
10665 return -ENETDOWN;
10666 }
10667 }
10668
10669 while (1) {
10670 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
10671 cb->nlh->nlmsg_seq, NLM_F_MULTI,
10672 NL80211_CMD_VENDOR);
10673 if (!hdr)
10674 break;
10675
10676 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020010677 (wdev && nla_put_u64_64bit(skb, NL80211_ATTR_WDEV,
10678 wdev_id(wdev),
10679 NL80211_ATTR_PAD))) {
Johannes Berg7bdbe402015-08-15 22:39:49 +030010680 genlmsg_cancel(skb, hdr);
10681 break;
10682 }
10683
10684 vendor_data = nla_nest_start(skb, NL80211_ATTR_VENDOR_DATA);
10685 if (!vendor_data) {
10686 genlmsg_cancel(skb, hdr);
10687 break;
10688 }
10689
10690 err = vcmd->dumpit(&rdev->wiphy, wdev, skb, data, data_len,
10691 (unsigned long *)&cb->args[5]);
10692 nla_nest_end(skb, vendor_data);
10693
10694 if (err == -ENOBUFS || err == -ENOENT) {
10695 genlmsg_cancel(skb, hdr);
10696 break;
10697 } else if (err) {
10698 genlmsg_cancel(skb, hdr);
10699 goto out;
10700 }
10701
10702 genlmsg_end(skb, hdr);
10703 }
10704
10705 err = skb->len;
10706 out:
10707 rtnl_unlock();
10708 return err;
10709}
10710
Johannes Bergad7e7182013-11-13 13:37:47 +010010711struct sk_buff *__cfg80211_alloc_reply_skb(struct wiphy *wiphy,
10712 enum nl80211_commands cmd,
10713 enum nl80211_attrs attr,
10714 int approxlen)
10715{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080010716 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergad7e7182013-11-13 13:37:47 +010010717
10718 if (WARN_ON(!rdev->cur_cmd_info))
10719 return NULL;
10720
Ahmad Kholaif6c09e792015-02-26 15:26:53 +020010721 return __cfg80211_alloc_vendor_skb(rdev, NULL, approxlen,
Johannes Bergad7e7182013-11-13 13:37:47 +010010722 rdev->cur_cmd_info->snd_portid,
10723 rdev->cur_cmd_info->snd_seq,
Johannes Berg567ffc32013-12-18 14:43:31 +010010724 cmd, attr, NULL, GFP_KERNEL);
Johannes Bergad7e7182013-11-13 13:37:47 +010010725}
10726EXPORT_SYMBOL(__cfg80211_alloc_reply_skb);
10727
10728int cfg80211_vendor_cmd_reply(struct sk_buff *skb)
10729{
10730 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
10731 void *hdr = ((void **)skb->cb)[1];
10732 struct nlattr *data = ((void **)skb->cb)[2];
10733
Johannes Bergbd8c78e2014-07-30 14:55:26 +020010734 /* clear CB data for netlink core to own from now on */
10735 memset(skb->cb, 0, sizeof(skb->cb));
10736
Johannes Bergad7e7182013-11-13 13:37:47 +010010737 if (WARN_ON(!rdev->cur_cmd_info)) {
10738 kfree_skb(skb);
10739 return -EINVAL;
10740 }
10741
10742 nla_nest_end(skb, data);
10743 genlmsg_end(skb, hdr);
10744 return genlmsg_reply(skb, rdev->cur_cmd_info);
10745}
10746EXPORT_SYMBOL_GPL(cfg80211_vendor_cmd_reply);
10747
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -080010748static int nl80211_set_qos_map(struct sk_buff *skb,
10749 struct genl_info *info)
10750{
10751 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10752 struct cfg80211_qos_map *qos_map = NULL;
10753 struct net_device *dev = info->user_ptr[1];
10754 u8 *pos, len, num_des, des_len, des;
10755 int ret;
10756
10757 if (!rdev->ops->set_qos_map)
10758 return -EOPNOTSUPP;
10759
10760 if (info->attrs[NL80211_ATTR_QOS_MAP]) {
10761 pos = nla_data(info->attrs[NL80211_ATTR_QOS_MAP]);
10762 len = nla_len(info->attrs[NL80211_ATTR_QOS_MAP]);
10763
10764 if (len % 2 || len < IEEE80211_QOS_MAP_LEN_MIN ||
10765 len > IEEE80211_QOS_MAP_LEN_MAX)
10766 return -EINVAL;
10767
10768 qos_map = kzalloc(sizeof(struct cfg80211_qos_map), GFP_KERNEL);
10769 if (!qos_map)
10770 return -ENOMEM;
10771
10772 num_des = (len - IEEE80211_QOS_MAP_LEN_MIN) >> 1;
10773 if (num_des) {
10774 des_len = num_des *
10775 sizeof(struct cfg80211_dscp_exception);
10776 memcpy(qos_map->dscp_exception, pos, des_len);
10777 qos_map->num_des = num_des;
10778 for (des = 0; des < num_des; des++) {
10779 if (qos_map->dscp_exception[des].up > 7) {
10780 kfree(qos_map);
10781 return -EINVAL;
10782 }
10783 }
10784 pos += des_len;
10785 }
10786 memcpy(qos_map->up, pos, IEEE80211_QOS_MAP_LEN_MIN);
10787 }
10788
10789 wdev_lock(dev->ieee80211_ptr);
10790 ret = nl80211_key_allowed(dev->ieee80211_ptr);
10791 if (!ret)
10792 ret = rdev_set_qos_map(rdev, dev, qos_map);
10793 wdev_unlock(dev->ieee80211_ptr);
10794
10795 kfree(qos_map);
10796 return ret;
10797}
10798
Johannes Berg960d01a2014-09-09 22:55:35 +030010799static int nl80211_add_tx_ts(struct sk_buff *skb, struct genl_info *info)
10800{
10801 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10802 struct net_device *dev = info->user_ptr[1];
10803 struct wireless_dev *wdev = dev->ieee80211_ptr;
10804 const u8 *peer;
10805 u8 tsid, up;
10806 u16 admitted_time = 0;
10807 int err;
10808
Johannes Berg723e73a2014-10-22 09:25:06 +020010809 if (!(rdev->wiphy.features & NL80211_FEATURE_SUPPORTS_WMM_ADMISSION))
Johannes Berg960d01a2014-09-09 22:55:35 +030010810 return -EOPNOTSUPP;
10811
10812 if (!info->attrs[NL80211_ATTR_TSID] || !info->attrs[NL80211_ATTR_MAC] ||
10813 !info->attrs[NL80211_ATTR_USER_PRIO])
10814 return -EINVAL;
10815
10816 tsid = nla_get_u8(info->attrs[NL80211_ATTR_TSID]);
10817 if (tsid >= IEEE80211_NUM_TIDS)
10818 return -EINVAL;
10819
10820 up = nla_get_u8(info->attrs[NL80211_ATTR_USER_PRIO]);
10821 if (up >= IEEE80211_NUM_UPS)
10822 return -EINVAL;
10823
10824 /* WMM uses TIDs 0-7 even for TSPEC */
Johannes Berg723e73a2014-10-22 09:25:06 +020010825 if (tsid >= IEEE80211_FIRST_TSPEC_TSID) {
Johannes Berg960d01a2014-09-09 22:55:35 +030010826 /* TODO: handle 802.11 TSPEC/admission control
Johannes Berg723e73a2014-10-22 09:25:06 +020010827 * need more attributes for that (e.g. BA session requirement);
10828 * change the WMM adminssion test above to allow both then
Johannes Berg960d01a2014-09-09 22:55:35 +030010829 */
10830 return -EINVAL;
10831 }
10832
10833 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
10834
10835 if (info->attrs[NL80211_ATTR_ADMITTED_TIME]) {
10836 admitted_time =
10837 nla_get_u16(info->attrs[NL80211_ATTR_ADMITTED_TIME]);
10838 if (!admitted_time)
10839 return -EINVAL;
10840 }
10841
10842 wdev_lock(wdev);
10843 switch (wdev->iftype) {
10844 case NL80211_IFTYPE_STATION:
10845 case NL80211_IFTYPE_P2P_CLIENT:
10846 if (wdev->current_bss)
10847 break;
10848 err = -ENOTCONN;
10849 goto out;
10850 default:
10851 err = -EOPNOTSUPP;
10852 goto out;
10853 }
10854
10855 err = rdev_add_tx_ts(rdev, dev, tsid, peer, up, admitted_time);
10856
10857 out:
10858 wdev_unlock(wdev);
10859 return err;
10860}
10861
10862static int nl80211_del_tx_ts(struct sk_buff *skb, struct genl_info *info)
10863{
10864 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10865 struct net_device *dev = info->user_ptr[1];
10866 struct wireless_dev *wdev = dev->ieee80211_ptr;
10867 const u8 *peer;
10868 u8 tsid;
10869 int err;
10870
10871 if (!info->attrs[NL80211_ATTR_TSID] || !info->attrs[NL80211_ATTR_MAC])
10872 return -EINVAL;
10873
10874 tsid = nla_get_u8(info->attrs[NL80211_ATTR_TSID]);
10875 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
10876
10877 wdev_lock(wdev);
10878 err = rdev_del_tx_ts(rdev, dev, tsid, peer);
10879 wdev_unlock(wdev);
10880
10881 return err;
10882}
10883
Arik Nemtsov1057d352014-11-19 12:54:26 +020010884static int nl80211_tdls_channel_switch(struct sk_buff *skb,
10885 struct genl_info *info)
10886{
10887 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10888 struct net_device *dev = info->user_ptr[1];
10889 struct wireless_dev *wdev = dev->ieee80211_ptr;
10890 struct cfg80211_chan_def chandef = {};
10891 const u8 *addr;
10892 u8 oper_class;
10893 int err;
10894
10895 if (!rdev->ops->tdls_channel_switch ||
10896 !(rdev->wiphy.features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH))
10897 return -EOPNOTSUPP;
10898
10899 switch (dev->ieee80211_ptr->iftype) {
10900 case NL80211_IFTYPE_STATION:
10901 case NL80211_IFTYPE_P2P_CLIENT:
10902 break;
10903 default:
10904 return -EOPNOTSUPP;
10905 }
10906
10907 if (!info->attrs[NL80211_ATTR_MAC] ||
10908 !info->attrs[NL80211_ATTR_OPER_CLASS])
10909 return -EINVAL;
10910
10911 err = nl80211_parse_chandef(rdev, info, &chandef);
10912 if (err)
10913 return err;
10914
10915 /*
10916 * Don't allow wide channels on the 2.4Ghz band, as per IEEE802.11-2012
10917 * section 10.22.6.2.1. Disallow 5/10Mhz channels as well for now, the
10918 * specification is not defined for them.
10919 */
Johannes Berg57fbcce2016-04-12 15:56:15 +020010920 if (chandef.chan->band == NL80211_BAND_2GHZ &&
Arik Nemtsov1057d352014-11-19 12:54:26 +020010921 chandef.width != NL80211_CHAN_WIDTH_20_NOHT &&
10922 chandef.width != NL80211_CHAN_WIDTH_20)
10923 return -EINVAL;
10924
10925 /* we will be active on the TDLS link */
Arik Nemtsov923b3522015-07-08 15:41:44 +030010926 if (!cfg80211_reg_can_beacon_relax(&rdev->wiphy, &chandef,
10927 wdev->iftype))
Arik Nemtsov1057d352014-11-19 12:54:26 +020010928 return -EINVAL;
10929
10930 /* don't allow switching to DFS channels */
10931 if (cfg80211_chandef_dfs_required(wdev->wiphy, &chandef, wdev->iftype))
10932 return -EINVAL;
10933
10934 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
10935 oper_class = nla_get_u8(info->attrs[NL80211_ATTR_OPER_CLASS]);
10936
10937 wdev_lock(wdev);
10938 err = rdev_tdls_channel_switch(rdev, dev, addr, oper_class, &chandef);
10939 wdev_unlock(wdev);
10940
10941 return err;
10942}
10943
10944static int nl80211_tdls_cancel_channel_switch(struct sk_buff *skb,
10945 struct genl_info *info)
10946{
10947 struct cfg80211_registered_device *rdev = info->user_ptr[0];
10948 struct net_device *dev = info->user_ptr[1];
10949 struct wireless_dev *wdev = dev->ieee80211_ptr;
10950 const u8 *addr;
10951
10952 if (!rdev->ops->tdls_channel_switch ||
10953 !rdev->ops->tdls_cancel_channel_switch ||
10954 !(rdev->wiphy.features & NL80211_FEATURE_TDLS_CHANNEL_SWITCH))
10955 return -EOPNOTSUPP;
10956
10957 switch (dev->ieee80211_ptr->iftype) {
10958 case NL80211_IFTYPE_STATION:
10959 case NL80211_IFTYPE_P2P_CLIENT:
10960 break;
10961 default:
10962 return -EOPNOTSUPP;
10963 }
10964
10965 if (!info->attrs[NL80211_ATTR_MAC])
10966 return -EINVAL;
10967
10968 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
10969
10970 wdev_lock(wdev);
10971 rdev_tdls_cancel_channel_switch(rdev, dev, addr);
10972 wdev_unlock(wdev);
10973
10974 return 0;
10975}
10976
Johannes Berg4c476992010-10-04 21:36:35 +020010977#define NL80211_FLAG_NEED_WIPHY 0x01
10978#define NL80211_FLAG_NEED_NETDEV 0x02
10979#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +020010980#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
10981#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
10982 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +020010983#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +020010984/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +020010985#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
10986 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg5393b912014-09-10 15:00:16 +030010987#define NL80211_FLAG_CLEAR_SKB 0x20
Johannes Berg4c476992010-10-04 21:36:35 +020010988
Johannes Bergf84f7712013-11-14 17:14:45 +010010989static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020010990 struct genl_info *info)
10991{
10992 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +020010993 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +020010994 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +020010995 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
10996
10997 if (rtnl)
10998 rtnl_lock();
10999
11000 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +020011001 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +020011002 if (IS_ERR(rdev)) {
11003 if (rtnl)
11004 rtnl_unlock();
11005 return PTR_ERR(rdev);
11006 }
11007 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +020011008 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
11009 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +020011010 ASSERT_RTNL();
11011
Johannes Berg89a54e42012-06-15 14:33:17 +020011012 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
11013 info->attrs);
11014 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +020011015 if (rtnl)
11016 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +020011017 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +020011018 }
Johannes Berg89a54e42012-06-15 14:33:17 +020011019
Johannes Berg89a54e42012-06-15 14:33:17 +020011020 dev = wdev->netdev;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011021 rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg89a54e42012-06-15 14:33:17 +020011022
Johannes Berg1bf614e2012-06-15 15:23:36 +020011023 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
11024 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +020011025 if (rtnl)
11026 rtnl_unlock();
11027 return -EINVAL;
11028 }
11029
11030 info->user_ptr[1] = dev;
11031 } else {
11032 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +020011033 }
Johannes Berg89a54e42012-06-15 14:33:17 +020011034
Johannes Berg1bf614e2012-06-15 15:23:36 +020011035 if (dev) {
11036 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
11037 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +020011038 if (rtnl)
11039 rtnl_unlock();
11040 return -ENETDOWN;
11041 }
11042
11043 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +020011044 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
11045 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +020011046 if (rtnl)
11047 rtnl_unlock();
11048 return -ENETDOWN;
11049 }
Johannes Berg1bf614e2012-06-15 15:23:36 +020011050 }
11051
Johannes Berg4c476992010-10-04 21:36:35 +020011052 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +020011053 }
11054
11055 return 0;
11056}
11057
Johannes Bergf84f7712013-11-14 17:14:45 +010011058static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020011059 struct genl_info *info)
11060{
Johannes Berg1bf614e2012-06-15 15:23:36 +020011061 if (info->user_ptr[1]) {
11062 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
11063 struct wireless_dev *wdev = info->user_ptr[1];
11064
11065 if (wdev->netdev)
11066 dev_put(wdev->netdev);
11067 } else {
11068 dev_put(info->user_ptr[1]);
11069 }
11070 }
Johannes Berg5393b912014-09-10 15:00:16 +030011071
Johannes Berg4c476992010-10-04 21:36:35 +020011072 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
11073 rtnl_unlock();
Johannes Berg5393b912014-09-10 15:00:16 +030011074
11075 /* If needed, clear the netlink message payload from the SKB
11076 * as it might contain key data that shouldn't stick around on
11077 * the heap after the SKB is freed. The netlink message header
11078 * is still needed for further processing, so leave it intact.
11079 */
11080 if (ops->internal_flags & NL80211_FLAG_CLEAR_SKB) {
11081 struct nlmsghdr *nlh = nlmsg_hdr(skb);
11082
11083 memset(nlmsg_data(nlh), 0, nlmsg_len(nlh));
11084 }
Johannes Berg4c476992010-10-04 21:36:35 +020011085}
11086
Johannes Berg4534de82013-11-14 17:14:46 +010011087static const struct genl_ops nl80211_ops[] = {
Johannes Berg55682962007-09-20 13:09:35 -040011088 {
11089 .cmd = NL80211_CMD_GET_WIPHY,
11090 .doit = nl80211_get_wiphy,
11091 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +020011092 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -040011093 .policy = nl80211_policy,
11094 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +020011095 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11096 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -040011097 },
11098 {
11099 .cmd = NL80211_CMD_SET_WIPHY,
11100 .doit = nl80211_set_wiphy,
11101 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011102 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011103 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -040011104 },
11105 {
11106 .cmd = NL80211_CMD_GET_INTERFACE,
11107 .doit = nl80211_get_interface,
11108 .dumpit = nl80211_dump_interface,
11109 .policy = nl80211_policy,
11110 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +020011111 .internal_flags = NL80211_FLAG_NEED_WDEV |
11112 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -040011113 },
11114 {
11115 .cmd = NL80211_CMD_SET_INTERFACE,
11116 .doit = nl80211_set_interface,
11117 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011118 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011119 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11120 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -040011121 },
11122 {
11123 .cmd = NL80211_CMD_NEW_INTERFACE,
11124 .doit = nl80211_new_interface,
11125 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011126 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011127 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11128 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -040011129 },
11130 {
11131 .cmd = NL80211_CMD_DEL_INTERFACE,
11132 .doit = nl80211_del_interface,
11133 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011134 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +020011135 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +020011136 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -040011137 },
Johannes Berg41ade002007-12-19 02:03:29 +010011138 {
11139 .cmd = NL80211_CMD_GET_KEY,
11140 .doit = nl80211_get_key,
11141 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011142 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011143 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011144 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +010011145 },
11146 {
11147 .cmd = NL80211_CMD_SET_KEY,
11148 .doit = nl80211_set_key,
11149 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011150 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011151 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +030011152 NL80211_FLAG_NEED_RTNL |
11153 NL80211_FLAG_CLEAR_SKB,
Johannes Berg41ade002007-12-19 02:03:29 +010011154 },
11155 {
11156 .cmd = NL80211_CMD_NEW_KEY,
11157 .doit = nl80211_new_key,
11158 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011159 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011160 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +030011161 NL80211_FLAG_NEED_RTNL |
11162 NL80211_FLAG_CLEAR_SKB,
Johannes Berg41ade002007-12-19 02:03:29 +010011163 },
11164 {
11165 .cmd = NL80211_CMD_DEL_KEY,
11166 .doit = nl80211_del_key,
11167 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011168 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011169 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011170 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +010011171 },
Johannes Berged1b6cc2007-12-19 02:03:32 +010011172 {
11173 .cmd = NL80211_CMD_SET_BEACON,
11174 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011175 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +010011176 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011177 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011178 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +010011179 },
11180 {
Johannes Berg88600202012-02-13 15:17:18 +010011181 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +010011182 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011183 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +010011184 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011185 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011186 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +010011187 },
11188 {
Johannes Berg88600202012-02-13 15:17:18 +010011189 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +010011190 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011191 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +010011192 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011193 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011194 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +010011195 },
Johannes Berg5727ef12007-12-19 02:03:34 +010011196 {
11197 .cmd = NL80211_CMD_GET_STATION,
11198 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011199 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +010011200 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +020011201 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11202 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +010011203 },
11204 {
11205 .cmd = NL80211_CMD_SET_STATION,
11206 .doit = nl80211_set_station,
11207 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011208 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011209 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011210 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +010011211 },
11212 {
11213 .cmd = NL80211_CMD_NEW_STATION,
11214 .doit = nl80211_new_station,
11215 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011216 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011217 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011218 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +010011219 },
11220 {
11221 .cmd = NL80211_CMD_DEL_STATION,
11222 .doit = nl80211_del_station,
11223 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011224 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011225 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011226 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +010011227 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011228 {
11229 .cmd = NL80211_CMD_GET_MPATH,
11230 .doit = nl80211_get_mpath,
11231 .dumpit = nl80211_dump_mpath,
11232 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011233 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011234 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011235 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011236 },
11237 {
Henning Rogge66be7d22014-09-12 08:58:49 +020011238 .cmd = NL80211_CMD_GET_MPP,
11239 .doit = nl80211_get_mpp,
11240 .dumpit = nl80211_dump_mpp,
11241 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011242 .flags = GENL_UNS_ADMIN_PERM,
Henning Rogge66be7d22014-09-12 08:58:49 +020011243 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11244 NL80211_FLAG_NEED_RTNL,
11245 },
11246 {
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011247 .cmd = NL80211_CMD_SET_MPATH,
11248 .doit = nl80211_set_mpath,
11249 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011250 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011251 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011252 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011253 },
11254 {
11255 .cmd = NL80211_CMD_NEW_MPATH,
11256 .doit = nl80211_new_mpath,
11257 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011258 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011259 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011260 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011261 },
11262 {
11263 .cmd = NL80211_CMD_DEL_MPATH,
11264 .doit = nl80211_del_mpath,
11265 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011266 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011267 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011268 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010011269 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +030011270 {
11271 .cmd = NL80211_CMD_SET_BSS,
11272 .doit = nl80211_set_bss,
11273 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011274 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011275 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011276 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +030011277 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070011278 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080011279 .cmd = NL80211_CMD_GET_REG,
Arik Nemtsovad30ca22014-12-15 19:25:59 +020011280 .doit = nl80211_get_reg_do,
11281 .dumpit = nl80211_get_reg_dump,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080011282 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +020011283 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080011284 /* can be retrieved by unprivileged users */
11285 },
Johannes Bergb6863032015-10-15 09:25:18 +020011286#ifdef CONFIG_CFG80211_CRDA_SUPPORT
Luis R. Rodriguezf1303472009-01-30 09:26:42 -080011287 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070011288 .cmd = NL80211_CMD_SET_REG,
11289 .doit = nl80211_set_reg,
11290 .policy = nl80211_policy,
11291 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +020011292 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070011293 },
Johannes Bergb6863032015-10-15 09:25:18 +020011294#endif
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070011295 {
11296 .cmd = NL80211_CMD_REQ_SET_REG,
11297 .doit = nl80211_req_set_reg,
11298 .policy = nl80211_policy,
11299 .flags = GENL_ADMIN_PERM,
11300 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -070011301 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -080011302 .cmd = NL80211_CMD_GET_MESH_CONFIG,
11303 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -070011304 .policy = nl80211_policy,
11305 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011306 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011307 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -070011308 },
11309 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -080011310 .cmd = NL80211_CMD_SET_MESH_CONFIG,
11311 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -070011312 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011313 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +010011314 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011315 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -070011316 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +020011317 {
Johannes Berg2a519312009-02-10 21:25:55 +010011318 .cmd = NL80211_CMD_TRIGGER_SCAN,
11319 .doit = nl80211_trigger_scan,
11320 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011321 .flags = GENL_UNS_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +020011322 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011323 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +010011324 },
11325 {
Vidyullatha Kanchanapally91d3ab42015-10-30 19:14:49 +053011326 .cmd = NL80211_CMD_ABORT_SCAN,
11327 .doit = nl80211_abort_scan,
11328 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011329 .flags = GENL_UNS_ADMIN_PERM,
Vidyullatha Kanchanapally91d3ab42015-10-30 19:14:49 +053011330 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
11331 NL80211_FLAG_NEED_RTNL,
11332 },
11333 {
Johannes Berg2a519312009-02-10 21:25:55 +010011334 .cmd = NL80211_CMD_GET_SCAN,
11335 .policy = nl80211_policy,
11336 .dumpit = nl80211_dump_scan,
11337 },
Jouni Malinen636a5d32009-03-19 13:39:22 +020011338 {
Luciano Coelho807f8a82011-05-11 17:09:35 +030011339 .cmd = NL80211_CMD_START_SCHED_SCAN,
11340 .doit = nl80211_start_sched_scan,
11341 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011342 .flags = GENL_UNS_ADMIN_PERM,
Luciano Coelho807f8a82011-05-11 17:09:35 +030011343 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11344 NL80211_FLAG_NEED_RTNL,
11345 },
11346 {
11347 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
11348 .doit = nl80211_stop_sched_scan,
11349 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011350 .flags = GENL_UNS_ADMIN_PERM,
Luciano Coelho807f8a82011-05-11 17:09:35 +030011351 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11352 NL80211_FLAG_NEED_RTNL,
11353 },
11354 {
Jouni Malinen636a5d32009-03-19 13:39:22 +020011355 .cmd = NL80211_CMD_AUTHENTICATE,
11356 .doit = nl80211_authenticate,
11357 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011358 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011359 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +030011360 NL80211_FLAG_NEED_RTNL |
11361 NL80211_FLAG_CLEAR_SKB,
Jouni Malinen636a5d32009-03-19 13:39:22 +020011362 },
11363 {
11364 .cmd = NL80211_CMD_ASSOCIATE,
11365 .doit = nl80211_associate,
11366 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011367 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011368 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011369 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +020011370 },
11371 {
11372 .cmd = NL80211_CMD_DEAUTHENTICATE,
11373 .doit = nl80211_deauthenticate,
11374 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011375 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011376 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011377 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +020011378 },
11379 {
11380 .cmd = NL80211_CMD_DISASSOCIATE,
11381 .doit = nl80211_disassociate,
11382 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011383 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011384 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011385 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +020011386 },
Johannes Berg04a773a2009-04-19 21:24:32 +020011387 {
11388 .cmd = NL80211_CMD_JOIN_IBSS,
11389 .doit = nl80211_join_ibss,
11390 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011391 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011392 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011393 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +020011394 },
11395 {
11396 .cmd = NL80211_CMD_LEAVE_IBSS,
11397 .doit = nl80211_leave_ibss,
11398 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011399 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011400 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011401 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +020011402 },
Johannes Bergaff89a92009-07-01 21:26:51 +020011403#ifdef CONFIG_NL80211_TESTMODE
11404 {
11405 .cmd = NL80211_CMD_TESTMODE,
11406 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -070011407 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +020011408 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011409 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011410 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11411 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +020011412 },
11413#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +020011414 {
11415 .cmd = NL80211_CMD_CONNECT,
11416 .doit = nl80211_connect,
11417 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011418 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011419 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011420 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +020011421 },
11422 {
11423 .cmd = NL80211_CMD_DISCONNECT,
11424 .doit = nl80211_disconnect,
11425 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011426 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +020011427 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011428 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +020011429 },
Johannes Berg463d0182009-07-14 00:33:35 +020011430 {
11431 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
11432 .doit = nl80211_wiphy_netns,
11433 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011434 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011435 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11436 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +020011437 },
Holger Schurig61fa7132009-11-11 12:25:40 +010011438 {
11439 .cmd = NL80211_CMD_GET_SURVEY,
11440 .policy = nl80211_policy,
11441 .dumpit = nl80211_dump_survey,
11442 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +010011443 {
11444 .cmd = NL80211_CMD_SET_PMKSA,
11445 .doit = nl80211_setdel_pmksa,
11446 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011447 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011448 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011449 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +010011450 },
11451 {
11452 .cmd = NL80211_CMD_DEL_PMKSA,
11453 .doit = nl80211_setdel_pmksa,
11454 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011455 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011456 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011457 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +010011458 },
11459 {
11460 .cmd = NL80211_CMD_FLUSH_PMKSA,
11461 .doit = nl80211_flush_pmksa,
11462 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011463 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011464 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011465 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +010011466 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011467 {
11468 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
11469 .doit = nl80211_remain_on_channel,
11470 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011471 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020011472 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011473 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011474 },
11475 {
11476 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
11477 .doit = nl80211_cancel_remain_on_channel,
11478 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011479 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020011480 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011481 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011482 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +020011483 {
11484 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
11485 .doit = nl80211_set_tx_bitrate_mask,
11486 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011487 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011488 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11489 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +020011490 },
Jouni Malinen026331c2010-02-15 12:53:10 +020011491 {
Johannes Berg2e161f72010-08-12 15:38:38 +020011492 .cmd = NL80211_CMD_REGISTER_FRAME,
11493 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +020011494 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011495 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020011496 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +020011497 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +020011498 },
11499 {
Johannes Berg2e161f72010-08-12 15:38:38 +020011500 .cmd = NL80211_CMD_FRAME,
11501 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +020011502 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011503 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020011504 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020011505 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +020011506 },
Kalle Valoffb9eb32010-02-17 17:58:10 +020011507 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +010011508 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
11509 .doit = nl80211_tx_mgmt_cancel_wait,
11510 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011511 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020011512 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +010011513 NL80211_FLAG_NEED_RTNL,
11514 },
11515 {
Kalle Valoffb9eb32010-02-17 17:58:10 +020011516 .cmd = NL80211_CMD_SET_POWER_SAVE,
11517 .doit = nl80211_set_power_save,
11518 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011519 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011520 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11521 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +020011522 },
11523 {
11524 .cmd = NL80211_CMD_GET_POWER_SAVE,
11525 .doit = nl80211_get_power_save,
11526 .policy = nl80211_policy,
11527 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +020011528 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11529 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +020011530 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011531 {
11532 .cmd = NL80211_CMD_SET_CQM,
11533 .doit = nl80211_set_cqm,
11534 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011535 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011536 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11537 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011538 },
Johannes Bergf444de02010-05-05 15:25:02 +020011539 {
11540 .cmd = NL80211_CMD_SET_CHANNEL,
11541 .doit = nl80211_set_channel,
11542 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011543 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020011544 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11545 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +020011546 },
Bill Jordane8347eb2010-10-01 13:54:28 -040011547 {
11548 .cmd = NL80211_CMD_SET_WDS_PEER,
11549 .doit = nl80211_set_wds_peer,
11550 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011551 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +020011552 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11553 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -040011554 },
Johannes Berg29cbe682010-12-03 09:20:44 +010011555 {
11556 .cmd = NL80211_CMD_JOIN_MESH,
11557 .doit = nl80211_join_mesh,
11558 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011559 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +010011560 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11561 NL80211_FLAG_NEED_RTNL,
11562 },
11563 {
11564 .cmd = NL80211_CMD_LEAVE_MESH,
11565 .doit = nl80211_leave_mesh,
11566 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011567 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +010011568 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11569 NL80211_FLAG_NEED_RTNL,
11570 },
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +010011571 {
11572 .cmd = NL80211_CMD_JOIN_OCB,
11573 .doit = nl80211_join_ocb,
11574 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011575 .flags = GENL_UNS_ADMIN_PERM,
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +010011576 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11577 NL80211_FLAG_NEED_RTNL,
11578 },
11579 {
11580 .cmd = NL80211_CMD_LEAVE_OCB,
11581 .doit = nl80211_leave_ocb,
11582 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011583 .flags = GENL_UNS_ADMIN_PERM,
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +010011584 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11585 NL80211_FLAG_NEED_RTNL,
11586 },
Johannes Bergdfb89c52012-06-27 09:23:48 +020011587#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +020011588 {
11589 .cmd = NL80211_CMD_GET_WOWLAN,
11590 .doit = nl80211_get_wowlan,
11591 .policy = nl80211_policy,
11592 /* can be retrieved by unprivileged users */
11593 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11594 NL80211_FLAG_NEED_RTNL,
11595 },
11596 {
11597 .cmd = NL80211_CMD_SET_WOWLAN,
11598 .doit = nl80211_set_wowlan,
11599 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011600 .flags = GENL_UNS_ADMIN_PERM,
Johannes Bergff1b6e62011-05-04 15:37:28 +020011601 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11602 NL80211_FLAG_NEED_RTNL,
11603 },
Johannes Bergdfb89c52012-06-27 09:23:48 +020011604#endif
Johannes Berge5497d72011-07-05 16:35:40 +020011605 {
11606 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
11607 .doit = nl80211_set_rekey_data,
11608 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011609 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berge5497d72011-07-05 16:35:40 +020011610 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +030011611 NL80211_FLAG_NEED_RTNL |
11612 NL80211_FLAG_CLEAR_SKB,
Johannes Berge5497d72011-07-05 16:35:40 +020011613 },
Arik Nemtsov109086c2011-09-28 14:12:50 +030011614 {
11615 .cmd = NL80211_CMD_TDLS_MGMT,
11616 .doit = nl80211_tdls_mgmt,
11617 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011618 .flags = GENL_UNS_ADMIN_PERM,
Arik Nemtsov109086c2011-09-28 14:12:50 +030011619 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11620 NL80211_FLAG_NEED_RTNL,
11621 },
11622 {
11623 .cmd = NL80211_CMD_TDLS_OPER,
11624 .doit = nl80211_tdls_oper,
11625 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011626 .flags = GENL_UNS_ADMIN_PERM,
Arik Nemtsov109086c2011-09-28 14:12:50 +030011627 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11628 NL80211_FLAG_NEED_RTNL,
11629 },
Johannes Berg28946da2011-11-04 11:18:12 +010011630 {
11631 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
11632 .doit = nl80211_register_unexpected_frame,
11633 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011634 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg28946da2011-11-04 11:18:12 +010011635 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11636 NL80211_FLAG_NEED_RTNL,
11637 },
Johannes Berg7f6cf312011-11-04 11:18:15 +010011638 {
11639 .cmd = NL80211_CMD_PROBE_CLIENT,
11640 .doit = nl80211_probe_client,
11641 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011642 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020011643 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +010011644 NL80211_FLAG_NEED_RTNL,
11645 },
Johannes Berg5e7602302011-11-04 11:18:17 +010011646 {
11647 .cmd = NL80211_CMD_REGISTER_BEACONS,
11648 .doit = nl80211_register_beacons,
11649 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011650 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg5e7602302011-11-04 11:18:17 +010011651 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11652 NL80211_FLAG_NEED_RTNL,
11653 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +010011654 {
11655 .cmd = NL80211_CMD_SET_NOACK_MAP,
11656 .doit = nl80211_set_noack_map,
11657 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011658 .flags = GENL_UNS_ADMIN_PERM,
Simon Wunderlich1d9d9212011-11-18 14:20:43 +010011659 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11660 NL80211_FLAG_NEED_RTNL,
11661 },
Johannes Berg98104fde2012-06-16 00:19:54 +020011662 {
11663 .cmd = NL80211_CMD_START_P2P_DEVICE,
11664 .doit = nl80211_start_p2p_device,
11665 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011666 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg98104fde2012-06-16 00:19:54 +020011667 .internal_flags = NL80211_FLAG_NEED_WDEV |
11668 NL80211_FLAG_NEED_RTNL,
11669 },
11670 {
11671 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
11672 .doit = nl80211_stop_p2p_device,
11673 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011674 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg98104fde2012-06-16 00:19:54 +020011675 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
11676 NL80211_FLAG_NEED_RTNL,
11677 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +010011678 {
11679 .cmd = NL80211_CMD_SET_MCAST_RATE,
11680 .doit = nl80211_set_mcast_rate,
11681 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011682 .flags = GENL_UNS_ADMIN_PERM,
Antonio Quartullif4e583c2012-11-02 13:27:48 +010011683 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11684 NL80211_FLAG_NEED_RTNL,
11685 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +053011686 {
11687 .cmd = NL80211_CMD_SET_MAC_ACL,
11688 .doit = nl80211_set_mac_acl,
11689 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011690 .flags = GENL_UNS_ADMIN_PERM,
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +053011691 .internal_flags = NL80211_FLAG_NEED_NETDEV |
11692 NL80211_FLAG_NEED_RTNL,
11693 },
Simon Wunderlich04f39042013-02-08 18:16:19 +010011694 {
11695 .cmd = NL80211_CMD_RADAR_DETECT,
11696 .doit = nl80211_start_radar_detection,
11697 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011698 .flags = GENL_UNS_ADMIN_PERM,
Simon Wunderlich04f39042013-02-08 18:16:19 +010011699 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11700 NL80211_FLAG_NEED_RTNL,
11701 },
Johannes Berg3713b4e2013-02-14 16:19:38 +010011702 {
11703 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
11704 .doit = nl80211_get_protocol_features,
11705 .policy = nl80211_policy,
11706 },
Jouni Malinen355199e2013-02-27 17:14:27 +020011707 {
11708 .cmd = NL80211_CMD_UPDATE_FT_IES,
11709 .doit = nl80211_update_ft_ies,
11710 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011711 .flags = GENL_UNS_ADMIN_PERM,
Jouni Malinen355199e2013-02-27 17:14:27 +020011712 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11713 NL80211_FLAG_NEED_RTNL,
11714 },
Arend van Spriel5de17982013-04-18 15:49:00 +020011715 {
11716 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
11717 .doit = nl80211_crit_protocol_start,
11718 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011719 .flags = GENL_UNS_ADMIN_PERM,
Arend van Spriel5de17982013-04-18 15:49:00 +020011720 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
11721 NL80211_FLAG_NEED_RTNL,
11722 },
11723 {
11724 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
11725 .doit = nl80211_crit_protocol_stop,
11726 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011727 .flags = GENL_UNS_ADMIN_PERM,
Arend van Spriel5de17982013-04-18 15:49:00 +020011728 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
11729 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070011730 },
11731 {
11732 .cmd = NL80211_CMD_GET_COALESCE,
11733 .doit = nl80211_get_coalesce,
11734 .policy = nl80211_policy,
11735 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11736 NL80211_FLAG_NEED_RTNL,
11737 },
11738 {
11739 .cmd = NL80211_CMD_SET_COALESCE,
11740 .doit = nl80211_set_coalesce,
11741 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011742 .flags = GENL_UNS_ADMIN_PERM,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070011743 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11744 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +020011745 },
11746 {
11747 .cmd = NL80211_CMD_CHANNEL_SWITCH,
11748 .doit = nl80211_channel_switch,
11749 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011750 .flags = GENL_UNS_ADMIN_PERM,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +020011751 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11752 NL80211_FLAG_NEED_RTNL,
11753 },
Johannes Bergad7e7182013-11-13 13:37:47 +010011754 {
11755 .cmd = NL80211_CMD_VENDOR,
11756 .doit = nl80211_vendor_cmd,
Johannes Berg7bdbe402015-08-15 22:39:49 +030011757 .dumpit = nl80211_vendor_cmd_dump,
Johannes Bergad7e7182013-11-13 13:37:47 +010011758 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011759 .flags = GENL_UNS_ADMIN_PERM,
Johannes Bergad7e7182013-11-13 13:37:47 +010011760 .internal_flags = NL80211_FLAG_NEED_WIPHY |
11761 NL80211_FLAG_NEED_RTNL,
11762 },
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -080011763 {
11764 .cmd = NL80211_CMD_SET_QOS_MAP,
11765 .doit = nl80211_set_qos_map,
11766 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011767 .flags = GENL_UNS_ADMIN_PERM,
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -080011768 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11769 NL80211_FLAG_NEED_RTNL,
11770 },
Johannes Berg960d01a2014-09-09 22:55:35 +030011771 {
11772 .cmd = NL80211_CMD_ADD_TX_TS,
11773 .doit = nl80211_add_tx_ts,
11774 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011775 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg960d01a2014-09-09 22:55:35 +030011776 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11777 NL80211_FLAG_NEED_RTNL,
11778 },
11779 {
11780 .cmd = NL80211_CMD_DEL_TX_TS,
11781 .doit = nl80211_del_tx_ts,
11782 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011783 .flags = GENL_UNS_ADMIN_PERM,
Johannes Berg960d01a2014-09-09 22:55:35 +030011784 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11785 NL80211_FLAG_NEED_RTNL,
11786 },
Arik Nemtsov1057d352014-11-19 12:54:26 +020011787 {
11788 .cmd = NL80211_CMD_TDLS_CHANNEL_SWITCH,
11789 .doit = nl80211_tdls_channel_switch,
11790 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011791 .flags = GENL_UNS_ADMIN_PERM,
Arik Nemtsov1057d352014-11-19 12:54:26 +020011792 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11793 NL80211_FLAG_NEED_RTNL,
11794 },
11795 {
11796 .cmd = NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH,
11797 .doit = nl80211_tdls_cancel_channel_switch,
11798 .policy = nl80211_policy,
Martin Willi5617c6c2016-05-09 18:33:58 +020011799 .flags = GENL_UNS_ADMIN_PERM,
Arik Nemtsov1057d352014-11-19 12:54:26 +020011800 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
11801 NL80211_FLAG_NEED_RTNL,
11802 },
Johannes Berg55682962007-09-20 13:09:35 -040011803};
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011804
Johannes Berg55682962007-09-20 13:09:35 -040011805/* notification functions */
11806
Johannes Berg3bb20552014-05-26 13:52:25 +020011807void nl80211_notify_wiphy(struct cfg80211_registered_device *rdev,
11808 enum nl80211_commands cmd)
Johannes Berg55682962007-09-20 13:09:35 -040011809{
11810 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +020011811 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -040011812
Johannes Berg3bb20552014-05-26 13:52:25 +020011813 WARN_ON(cmd != NL80211_CMD_NEW_WIPHY &&
11814 cmd != NL80211_CMD_DEL_WIPHY);
11815
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070011816 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -040011817 if (!msg)
11818 return;
11819
Johannes Berg3bb20552014-05-26 13:52:25 +020011820 if (nl80211_send_wiphy(rdev, cmd, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -040011821 nlmsg_free(msg);
11822 return;
11823 }
11824
Johannes Berg68eb5502013-11-19 15:19:38 +010011825 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011826 NL80211_MCGRP_CONFIG, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -040011827}
11828
Denis Kenzior896ff062016-08-03 16:58:33 -050011829void nl80211_notify_iface(struct cfg80211_registered_device *rdev,
11830 struct wireless_dev *wdev,
11831 enum nl80211_commands cmd)
11832{
11833 struct sk_buff *msg;
11834
11835 WARN_ON(cmd != NL80211_CMD_NEW_INTERFACE &&
11836 cmd != NL80211_CMD_DEL_INTERFACE);
11837
11838 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11839 if (!msg)
11840 return;
11841
11842 if (nl80211_send_iface(msg, 0, 0, 0, rdev, wdev,
11843 cmd == NL80211_CMD_DEL_INTERFACE) < 0) {
11844 nlmsg_free(msg);
11845 return;
11846 }
11847
11848 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
11849 NL80211_MCGRP_CONFIG, GFP_KERNEL);
11850}
11851
Johannes Berg362a4152009-05-24 16:43:15 +020011852static int nl80211_add_scan_req(struct sk_buff *msg,
11853 struct cfg80211_registered_device *rdev)
11854{
11855 struct cfg80211_scan_request *req = rdev->scan_req;
11856 struct nlattr *nest;
11857 int i;
11858
11859 if (WARN_ON(!req))
11860 return 0;
11861
11862 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
11863 if (!nest)
11864 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -040011865 for (i = 0; i < req->n_ssids; i++) {
11866 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
11867 goto nla_put_failure;
11868 }
Johannes Berg362a4152009-05-24 16:43:15 +020011869 nla_nest_end(msg, nest);
11870
11871 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
11872 if (!nest)
11873 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -040011874 for (i = 0; i < req->n_channels; i++) {
11875 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
11876 goto nla_put_failure;
11877 }
Johannes Berg362a4152009-05-24 16:43:15 +020011878 nla_nest_end(msg, nest);
11879
David S. Miller9360ffd2012-03-29 04:41:26 -040011880 if (req->ie &&
11881 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
11882 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +020011883
Johannes Bergae917c92013-10-25 11:05:22 +020011884 if (req->flags &&
11885 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags))
11886 goto nla_put_failure;
Sam Lefflered4737712012-10-11 21:03:31 -070011887
Avraham Stern1d762502016-07-05 17:10:13 +030011888 if (req->info.scan_start_tsf &&
11889 (nla_put_u64_64bit(msg, NL80211_ATTR_SCAN_START_TIME_TSF,
11890 req->info.scan_start_tsf, NL80211_BSS_PAD) ||
11891 nla_put(msg, NL80211_ATTR_SCAN_START_TIME_TSF_BSSID, ETH_ALEN,
11892 req->info.tsf_bssid)))
11893 goto nla_put_failure;
11894
Johannes Berg362a4152009-05-24 16:43:15 +020011895 return 0;
11896 nla_put_failure:
11897 return -ENOBUFS;
11898}
11899
Johannes Berga538e2d2009-06-16 19:56:42 +020011900static int nl80211_send_scan_msg(struct sk_buff *msg,
11901 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +020011902 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000011903 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +020011904 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +010011905{
11906 void *hdr;
11907
Eric W. Biederman15e47302012-09-07 20:12:54 +000011908 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +010011909 if (!hdr)
11910 return -1;
11911
David S. Miller9360ffd2012-03-29 04:41:26 -040011912 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +020011913 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11914 wdev->netdev->ifindex)) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020011915 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
11916 NL80211_ATTR_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -040011917 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +010011918
Johannes Berg362a4152009-05-24 16:43:15 +020011919 /* ignore errors and send incomplete event anyway */
11920 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +010011921
Johannes Berg053c0952015-01-16 22:09:00 +010011922 genlmsg_end(msg, hdr);
11923 return 0;
Johannes Berg2a519312009-02-10 21:25:55 +010011924
11925 nla_put_failure:
11926 genlmsg_cancel(msg, hdr);
11927 return -EMSGSIZE;
11928}
11929
Luciano Coelho807f8a82011-05-11 17:09:35 +030011930static int
11931nl80211_send_sched_scan_msg(struct sk_buff *msg,
11932 struct cfg80211_registered_device *rdev,
11933 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000011934 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +030011935{
11936 void *hdr;
11937
Eric W. Biederman15e47302012-09-07 20:12:54 +000011938 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +030011939 if (!hdr)
11940 return -1;
11941
David S. Miller9360ffd2012-03-29 04:41:26 -040011942 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11943 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
11944 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +030011945
Johannes Berg053c0952015-01-16 22:09:00 +010011946 genlmsg_end(msg, hdr);
11947 return 0;
Luciano Coelho807f8a82011-05-11 17:09:35 +030011948
11949 nla_put_failure:
11950 genlmsg_cancel(msg, hdr);
11951 return -EMSGSIZE;
11952}
11953
Johannes Berga538e2d2009-06-16 19:56:42 +020011954void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +020011955 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +020011956{
11957 struct sk_buff *msg;
11958
Thomas Graf58050fc2012-06-28 03:57:45 +000011959 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +020011960 if (!msg)
11961 return;
11962
Johannes Bergfd014282012-06-18 19:17:03 +020011963 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +020011964 NL80211_CMD_TRIGGER_SCAN) < 0) {
11965 nlmsg_free(msg);
11966 return;
11967 }
11968
Johannes Berg68eb5502013-11-19 15:19:38 +010011969 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011970 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +020011971}
11972
Johannes Bergf9d15d12014-01-22 11:14:19 +020011973struct sk_buff *nl80211_build_scan_msg(struct cfg80211_registered_device *rdev,
11974 struct wireless_dev *wdev, bool aborted)
Johannes Berg2a519312009-02-10 21:25:55 +010011975{
11976 struct sk_buff *msg;
11977
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070011978 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +010011979 if (!msg)
Johannes Bergf9d15d12014-01-22 11:14:19 +020011980 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +010011981
Johannes Bergfd014282012-06-18 19:17:03 +020011982 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Bergf9d15d12014-01-22 11:14:19 +020011983 aborted ? NL80211_CMD_SCAN_ABORTED :
11984 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +010011985 nlmsg_free(msg);
Johannes Bergf9d15d12014-01-22 11:14:19 +020011986 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +010011987 }
11988
Johannes Bergf9d15d12014-01-22 11:14:19 +020011989 return msg;
Johannes Berg2a519312009-02-10 21:25:55 +010011990}
11991
Johannes Bergf9d15d12014-01-22 11:14:19 +020011992void nl80211_send_scan_result(struct cfg80211_registered_device *rdev,
11993 struct sk_buff *msg)
Johannes Berg2a519312009-02-10 21:25:55 +010011994{
Johannes Berg2a519312009-02-10 21:25:55 +010011995 if (!msg)
11996 return;
11997
Johannes Berg68eb5502013-11-19 15:19:38 +010011998 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011999 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +010012000}
12001
Luciano Coelho807f8a82011-05-11 17:09:35 +030012002void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
12003 struct net_device *netdev)
12004{
12005 struct sk_buff *msg;
12006
12007 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
12008 if (!msg)
12009 return;
12010
12011 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
12012 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
12013 nlmsg_free(msg);
12014 return;
12015 }
12016
Johannes Berg68eb5502013-11-19 15:19:38 +010012017 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012018 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030012019}
12020
12021void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
12022 struct net_device *netdev, u32 cmd)
12023{
12024 struct sk_buff *msg;
12025
Thomas Graf58050fc2012-06-28 03:57:45 +000012026 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030012027 if (!msg)
12028 return;
12029
12030 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
12031 nlmsg_free(msg);
12032 return;
12033 }
12034
Johannes Berg68eb5502013-11-19 15:19:38 +010012035 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012036 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030012037}
12038
Jonathan Doronb0d7aa52014-12-15 19:26:00 +020012039static bool nl80211_reg_change_event_fill(struct sk_buff *msg,
12040 struct regulatory_request *request)
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012041{
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012042 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -040012043 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
12044 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012045
David S. Miller9360ffd2012-03-29 04:41:26 -040012046 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
12047 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
12048 NL80211_REGDOM_TYPE_WORLD))
12049 goto nla_put_failure;
12050 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
12051 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
12052 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
12053 goto nla_put_failure;
12054 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
12055 request->intersect) {
12056 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
12057 NL80211_REGDOM_TYPE_INTERSECTION))
12058 goto nla_put_failure;
12059 } else {
12060 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
12061 NL80211_REGDOM_TYPE_COUNTRY) ||
12062 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
12063 request->alpha2))
12064 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012065 }
12066
Arik Nemtsovad30ca22014-12-15 19:25:59 +020012067 if (request->wiphy_idx != WIPHY_IDX_INVALID) {
12068 struct wiphy *wiphy = wiphy_idx_to_wiphy(request->wiphy_idx);
12069
12070 if (wiphy &&
12071 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
12072 goto nla_put_failure;
Arik Nemtsov1bdd7162014-12-15 19:26:01 +020012073
12074 if (wiphy &&
12075 wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED &&
12076 nla_put_flag(msg, NL80211_ATTR_WIPHY_SELF_MANAGED_REG))
12077 goto nla_put_failure;
Arik Nemtsovad30ca22014-12-15 19:25:59 +020012078 }
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012079
Jonathan Doronb0d7aa52014-12-15 19:26:00 +020012080 return true;
12081
12082nla_put_failure:
12083 return false;
12084}
12085
12086/*
12087 * This can happen on global regulatory changes or device specific settings
12088 * based on custom regulatory domains.
12089 */
12090void nl80211_common_reg_change_event(enum nl80211_commands cmd_id,
12091 struct regulatory_request *request)
12092{
12093 struct sk_buff *msg;
12094 void *hdr;
12095
12096 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
12097 if (!msg)
12098 return;
12099
12100 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd_id);
12101 if (!hdr) {
12102 nlmsg_free(msg);
12103 return;
12104 }
12105
12106 if (nl80211_reg_change_event_fill(msg, request) == false)
12107 goto nla_put_failure;
12108
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012109 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012110
Johannes Bergbc43b282009-07-25 10:54:13 +020012111 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010012112 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012113 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Bergbc43b282009-07-25 10:54:13 +020012114 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040012115
12116 return;
12117
12118nla_put_failure:
12119 genlmsg_cancel(msg, hdr);
12120 nlmsg_free(msg);
12121}
12122
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012123static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
12124 struct net_device *netdev,
12125 const u8 *buf, size_t len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012126 enum nl80211_commands cmd, gfp_t gfp,
12127 int uapsd_queues)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012128{
12129 struct sk_buff *msg;
12130 void *hdr;
12131
Johannes Berge6d6e342009-07-01 21:26:47 +020012132 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012133 if (!msg)
12134 return;
12135
12136 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
12137 if (!hdr) {
12138 nlmsg_free(msg);
12139 return;
12140 }
12141
David S. Miller9360ffd2012-03-29 04:41:26 -040012142 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12143 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12144 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
12145 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012146
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012147 if (uapsd_queues >= 0) {
12148 struct nlattr *nla_wmm =
12149 nla_nest_start(msg, NL80211_ATTR_STA_WME);
12150 if (!nla_wmm)
12151 goto nla_put_failure;
12152
12153 if (nla_put_u8(msg, NL80211_STA_WME_UAPSD_QUEUES,
12154 uapsd_queues))
12155 goto nla_put_failure;
12156
12157 nla_nest_end(msg, nla_wmm);
12158 }
12159
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012160 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012161
Johannes Berg68eb5502013-11-19 15:19:38 +010012162 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012163 NL80211_MCGRP_MLME, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012164 return;
12165
12166 nla_put_failure:
12167 genlmsg_cancel(msg, hdr);
12168 nlmsg_free(msg);
12169}
12170
12171void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020012172 struct net_device *netdev, const u8 *buf,
12173 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012174{
12175 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012176 NL80211_CMD_AUTHENTICATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012177}
12178
12179void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
12180 struct net_device *netdev, const u8 *buf,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012181 size_t len, gfp_t gfp, int uapsd_queues)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012182{
Johannes Berge6d6e342009-07-01 21:26:47 +020012183 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012184 NL80211_CMD_ASSOCIATE, gfp, uapsd_queues);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012185}
12186
Jouni Malinen53b46b82009-03-27 20:53:56 +020012187void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020012188 struct net_device *netdev, const u8 *buf,
12189 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012190{
12191 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012192 NL80211_CMD_DEAUTHENTICATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012193}
12194
Jouni Malinen53b46b82009-03-27 20:53:56 +020012195void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
12196 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +020012197 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012198{
12199 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012200 NL80211_CMD_DISASSOCIATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020012201}
12202
Johannes Berg6ff57cf2013-05-16 00:55:00 +020012203void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
12204 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +020012205{
Johannes Berg947add32013-02-22 22:05:20 +010012206 struct wireless_dev *wdev = dev->ieee80211_ptr;
12207 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012208 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +020012209 const struct ieee80211_mgmt *mgmt = (void *)buf;
12210 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +020012211
Johannes Berg6ff57cf2013-05-16 00:55:00 +020012212 if (WARN_ON(len < 2))
12213 return;
12214
12215 if (ieee80211_is_deauth(mgmt->frame_control))
12216 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
12217 else
12218 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
12219
12220 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030012221 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC, -1);
Jouni Malinencf4e5942010-12-16 00:52:40 +020012222}
Johannes Berg6ff57cf2013-05-16 00:55:00 +020012223EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +020012224
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -040012225static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
12226 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +020012227 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030012228{
12229 struct sk_buff *msg;
12230 void *hdr;
12231
Johannes Berge6d6e342009-07-01 21:26:47 +020012232 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030012233 if (!msg)
12234 return;
12235
12236 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
12237 if (!hdr) {
12238 nlmsg_free(msg);
12239 return;
12240 }
12241
David S. Miller9360ffd2012-03-29 04:41:26 -040012242 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12243 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12244 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
12245 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
12246 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +030012247
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012248 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +030012249
Johannes Berg68eb5502013-11-19 15:19:38 +010012250 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012251 NL80211_MCGRP_MLME, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030012252 return;
12253
12254 nla_put_failure:
12255 genlmsg_cancel(msg, hdr);
12256 nlmsg_free(msg);
12257}
12258
12259void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020012260 struct net_device *netdev, const u8 *addr,
12261 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030012262{
12263 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +020012264 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030012265}
12266
12267void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020012268 struct net_device *netdev, const u8 *addr,
12269 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030012270{
Johannes Berge6d6e342009-07-01 21:26:47 +020012271 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
12272 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030012273}
12274
Samuel Ortizb23aa672009-07-01 21:26:54 +020012275void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
12276 struct net_device *netdev, const u8 *bssid,
12277 const u8 *req_ie, size_t req_ie_len,
12278 const u8 *resp_ie, size_t resp_ie_len,
Jouni Malinenbf1ecd22016-05-31 00:16:50 +030012279 int status, gfp_t gfp)
Samuel Ortizb23aa672009-07-01 21:26:54 +020012280{
12281 struct sk_buff *msg;
12282 void *hdr;
12283
Thomas Graf58050fc2012-06-28 03:57:45 +000012284 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012285 if (!msg)
12286 return;
12287
12288 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
12289 if (!hdr) {
12290 nlmsg_free(msg);
12291 return;
12292 }
12293
David S. Miller9360ffd2012-03-29 04:41:26 -040012294 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12295 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12296 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
Jouni Malinenbf1ecd22016-05-31 00:16:50 +030012297 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE,
12298 status < 0 ? WLAN_STATUS_UNSPECIFIED_FAILURE :
12299 status) ||
12300 (status < 0 && nla_put_flag(msg, NL80211_ATTR_TIMED_OUT)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040012301 (req_ie &&
12302 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
12303 (resp_ie &&
12304 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
12305 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020012306
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012307 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012308
Johannes Berg68eb5502013-11-19 15:19:38 +010012309 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012310 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012311 return;
12312
12313 nla_put_failure:
12314 genlmsg_cancel(msg, hdr);
12315 nlmsg_free(msg);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012316}
12317
12318void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
12319 struct net_device *netdev, const u8 *bssid,
12320 const u8 *req_ie, size_t req_ie_len,
12321 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
12322{
12323 struct sk_buff *msg;
12324 void *hdr;
12325
Thomas Graf58050fc2012-06-28 03:57:45 +000012326 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012327 if (!msg)
12328 return;
12329
12330 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
12331 if (!hdr) {
12332 nlmsg_free(msg);
12333 return;
12334 }
12335
David S. Miller9360ffd2012-03-29 04:41:26 -040012336 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12337 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12338 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
12339 (req_ie &&
12340 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
12341 (resp_ie &&
12342 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
12343 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020012344
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012345 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012346
Johannes Berg68eb5502013-11-19 15:19:38 +010012347 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012348 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012349 return;
12350
12351 nla_put_failure:
12352 genlmsg_cancel(msg, hdr);
12353 nlmsg_free(msg);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012354}
12355
12356void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
12357 struct net_device *netdev, u16 reason,
Johannes Berg667503dd2009-07-07 03:56:11 +020012358 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020012359{
12360 struct sk_buff *msg;
12361 void *hdr;
12362
Thomas Graf58050fc2012-06-28 03:57:45 +000012363 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012364 if (!msg)
12365 return;
12366
12367 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
12368 if (!hdr) {
12369 nlmsg_free(msg);
12370 return;
12371 }
12372
David S. Miller9360ffd2012-03-29 04:41:26 -040012373 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12374 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12375 (from_ap && reason &&
12376 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
12377 (from_ap &&
12378 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
12379 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
12380 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020012381
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012382 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012383
Johannes Berg68eb5502013-11-19 15:19:38 +010012384 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012385 NL80211_MCGRP_MLME, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012386 return;
12387
12388 nla_put_failure:
12389 genlmsg_cancel(msg, hdr);
12390 nlmsg_free(msg);
Samuel Ortizb23aa672009-07-01 21:26:54 +020012391}
12392
Johannes Berg04a773a2009-04-19 21:24:32 +020012393void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
12394 struct net_device *netdev, const u8 *bssid,
12395 gfp_t gfp)
12396{
12397 struct sk_buff *msg;
12398 void *hdr;
12399
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070012400 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020012401 if (!msg)
12402 return;
12403
12404 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
12405 if (!hdr) {
12406 nlmsg_free(msg);
12407 return;
12408 }
12409
David S. Miller9360ffd2012-03-29 04:41:26 -040012410 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12411 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12412 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
12413 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020012414
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012415 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020012416
Johannes Berg68eb5502013-11-19 15:19:38 +010012417 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012418 NL80211_MCGRP_MLME, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020012419 return;
12420
12421 nla_put_failure:
12422 genlmsg_cancel(msg, hdr);
12423 nlmsg_free(msg);
12424}
12425
Johannes Berg947add32013-02-22 22:05:20 +010012426void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
12427 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070012428{
Johannes Berg947add32013-02-22 22:05:20 +010012429 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012430 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070012431 struct sk_buff *msg;
12432 void *hdr;
12433
Johannes Berg947add32013-02-22 22:05:20 +010012434 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
12435 return;
12436
12437 trace_cfg80211_notify_new_peer_candidate(dev, addr);
12438
Javier Cardonac93b5e72011-04-07 15:08:34 -070012439 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12440 if (!msg)
12441 return;
12442
12443 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
12444 if (!hdr) {
12445 nlmsg_free(msg);
12446 return;
12447 }
12448
David S. Miller9360ffd2012-03-29 04:41:26 -040012449 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010012450 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
12451 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040012452 (ie_len && ie &&
12453 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
12454 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070012455
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012456 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070012457
Johannes Berg68eb5502013-11-19 15:19:38 +010012458 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012459 NL80211_MCGRP_MLME, gfp);
Javier Cardonac93b5e72011-04-07 15:08:34 -070012460 return;
12461
12462 nla_put_failure:
12463 genlmsg_cancel(msg, hdr);
12464 nlmsg_free(msg);
12465}
Johannes Berg947add32013-02-22 22:05:20 +010012466EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070012467
Jouni Malinena3b8b052009-03-27 21:59:49 +020012468void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
12469 struct net_device *netdev, const u8 *addr,
12470 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020012471 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020012472{
12473 struct sk_buff *msg;
12474 void *hdr;
12475
Johannes Berge6d6e342009-07-01 21:26:47 +020012476 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020012477 if (!msg)
12478 return;
12479
12480 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
12481 if (!hdr) {
12482 nlmsg_free(msg);
12483 return;
12484 }
12485
David S. Miller9360ffd2012-03-29 04:41:26 -040012486 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12487 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12488 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
12489 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
12490 (key_id != -1 &&
12491 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
12492 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
12493 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020012494
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012495 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020012496
Johannes Berg68eb5502013-11-19 15:19:38 +010012497 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012498 NL80211_MCGRP_MLME, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020012499 return;
12500
12501 nla_put_failure:
12502 genlmsg_cancel(msg, hdr);
12503 nlmsg_free(msg);
12504}
12505
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012506void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
12507 struct ieee80211_channel *channel_before,
12508 struct ieee80211_channel *channel_after)
12509{
12510 struct sk_buff *msg;
12511 void *hdr;
12512 struct nlattr *nl_freq;
12513
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070012514 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012515 if (!msg)
12516 return;
12517
12518 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
12519 if (!hdr) {
12520 nlmsg_free(msg);
12521 return;
12522 }
12523
12524 /*
12525 * Since we are applying the beacon hint to a wiphy we know its
12526 * wiphy_idx is valid
12527 */
David S. Miller9360ffd2012-03-29 04:41:26 -040012528 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
12529 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012530
12531 /* Before */
12532 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
12533 if (!nl_freq)
12534 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010012535 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012536 goto nla_put_failure;
12537 nla_nest_end(msg, nl_freq);
12538
12539 /* After */
12540 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
12541 if (!nl_freq)
12542 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010012543 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012544 goto nla_put_failure;
12545 nla_nest_end(msg, nl_freq);
12546
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012547 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012548
Johannes Berg463d0182009-07-14 00:33:35 +020012549 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010012550 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012551 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Berg463d0182009-07-14 00:33:35 +020012552 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040012553
12554 return;
12555
12556nla_put_failure:
12557 genlmsg_cancel(msg, hdr);
12558 nlmsg_free(msg);
12559}
12560
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012561static void nl80211_send_remain_on_chan_event(
12562 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020012563 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012564 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012565 unsigned int duration, gfp_t gfp)
12566{
12567 struct sk_buff *msg;
12568 void *hdr;
12569
12570 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12571 if (!msg)
12572 return;
12573
12574 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
12575 if (!hdr) {
12576 nlmsg_free(msg);
12577 return;
12578 }
12579
David S. Miller9360ffd2012-03-29 04:41:26 -040012580 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020012581 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
12582 wdev->netdev->ifindex)) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020012583 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
12584 NL80211_ATTR_PAD) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040012585 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010012586 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
12587 NL80211_CHAN_NO_HT) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020012588 nla_put_u64_64bit(msg, NL80211_ATTR_COOKIE, cookie,
12589 NL80211_ATTR_PAD))
David S. Miller9360ffd2012-03-29 04:41:26 -040012590 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012591
David S. Miller9360ffd2012-03-29 04:41:26 -040012592 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
12593 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
12594 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012595
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012596 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012597
Johannes Berg68eb5502013-11-19 15:19:38 +010012598 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012599 NL80211_MCGRP_MLME, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012600 return;
12601
12602 nla_put_failure:
12603 genlmsg_cancel(msg, hdr);
12604 nlmsg_free(msg);
12605}
12606
Johannes Berg947add32013-02-22 22:05:20 +010012607void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
12608 struct ieee80211_channel *chan,
12609 unsigned int duration, gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012610{
Johannes Berg947add32013-02-22 22:05:20 +010012611 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012612 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010012613
12614 trace_cfg80211_ready_on_channel(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012615 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020012616 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010012617 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012618}
Johannes Berg947add32013-02-22 22:05:20 +010012619EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012620
Johannes Berg947add32013-02-22 22:05:20 +010012621void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
12622 struct ieee80211_channel *chan,
12623 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012624{
Johannes Berg947add32013-02-22 22:05:20 +010012625 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012626 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010012627
12628 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012629 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010012630 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012631}
Johannes Berg947add32013-02-22 22:05:20 +010012632EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010012633
Johannes Berg947add32013-02-22 22:05:20 +010012634void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
12635 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010012636{
Johannes Berg947add32013-02-22 22:05:20 +010012637 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012638 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010012639 struct sk_buff *msg;
12640
Johannes Berg947add32013-02-22 22:05:20 +010012641 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
12642
Thomas Graf58050fc2012-06-28 03:57:45 +000012643 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010012644 if (!msg)
12645 return;
12646
Johannes Bergcf5ead82014-11-14 17:14:00 +010012647 if (nl80211_send_station(msg, NL80211_CMD_NEW_STATION, 0, 0, 0,
John W. Linville66266b32012-03-15 13:25:41 -040012648 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010012649 nlmsg_free(msg);
12650 return;
12651 }
12652
Johannes Berg68eb5502013-11-19 15:19:38 +010012653 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012654 NL80211_MCGRP_MLME, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010012655}
Johannes Berg947add32013-02-22 22:05:20 +010012656EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010012657
Johannes Bergcf5ead82014-11-14 17:14:00 +010012658void cfg80211_del_sta_sinfo(struct net_device *dev, const u8 *mac_addr,
12659 struct station_info *sinfo, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020012660{
Johannes Berg947add32013-02-22 22:05:20 +010012661 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012662 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020012663 struct sk_buff *msg;
Johannes Bergcf5ead82014-11-14 17:14:00 +010012664 struct station_info empty_sinfo = {};
12665
12666 if (!sinfo)
12667 sinfo = &empty_sinfo;
Jouni Malinenec15e682011-03-23 15:29:52 +020012668
Johannes Berg947add32013-02-22 22:05:20 +010012669 trace_cfg80211_del_sta(dev, mac_addr);
12670
Thomas Graf58050fc2012-06-28 03:57:45 +000012671 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020012672 if (!msg)
12673 return;
12674
Johannes Bergcf5ead82014-11-14 17:14:00 +010012675 if (nl80211_send_station(msg, NL80211_CMD_DEL_STATION, 0, 0, 0,
Johannes Berg57007122015-01-16 21:05:02 +010012676 rdev, dev, mac_addr, sinfo) < 0) {
Jouni Malinenec15e682011-03-23 15:29:52 +020012677 nlmsg_free(msg);
12678 return;
12679 }
12680
Johannes Berg68eb5502013-11-19 15:19:38 +010012681 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012682 NL80211_MCGRP_MLME, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020012683}
Johannes Bergcf5ead82014-11-14 17:14:00 +010012684EXPORT_SYMBOL(cfg80211_del_sta_sinfo);
Jouni Malinenec15e682011-03-23 15:29:52 +020012685
Johannes Berg947add32013-02-22 22:05:20 +010012686void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
12687 enum nl80211_connect_failed_reason reason,
12688 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053012689{
Johannes Berg947add32013-02-22 22:05:20 +010012690 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012691 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053012692 struct sk_buff *msg;
12693 void *hdr;
12694
12695 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
12696 if (!msg)
12697 return;
12698
12699 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
12700 if (!hdr) {
12701 nlmsg_free(msg);
12702 return;
12703 }
12704
12705 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
12706 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
12707 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
12708 goto nla_put_failure;
12709
12710 genlmsg_end(msg, hdr);
12711
Johannes Berg68eb5502013-11-19 15:19:38 +010012712 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012713 NL80211_MCGRP_MLME, gfp);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053012714 return;
12715
12716 nla_put_failure:
12717 genlmsg_cancel(msg, hdr);
12718 nlmsg_free(msg);
12719}
Johannes Berg947add32013-02-22 22:05:20 +010012720EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053012721
Johannes Bergb92ab5d2011-11-04 11:18:19 +010012722static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
12723 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010012724{
12725 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012726 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg28946da2011-11-04 11:18:12 +010012727 struct sk_buff *msg;
12728 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000012729 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010012730
Eric W. Biederman15e47302012-09-07 20:12:54 +000012731 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010012732 return false;
12733
12734 msg = nlmsg_new(100, gfp);
12735 if (!msg)
12736 return true;
12737
Johannes Bergb92ab5d2011-11-04 11:18:19 +010012738 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010012739 if (!hdr) {
12740 nlmsg_free(msg);
12741 return true;
12742 }
12743
David S. Miller9360ffd2012-03-29 04:41:26 -040012744 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12745 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
12746 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
12747 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010012748
Johannes Berg9c90a9f2013-06-04 12:46:03 +020012749 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000012750 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010012751 return true;
12752
12753 nla_put_failure:
12754 genlmsg_cancel(msg, hdr);
12755 nlmsg_free(msg);
12756 return true;
12757}
12758
Johannes Berg947add32013-02-22 22:05:20 +010012759bool cfg80211_rx_spurious_frame(struct net_device *dev,
12760 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010012761{
Johannes Berg947add32013-02-22 22:05:20 +010012762 struct wireless_dev *wdev = dev->ieee80211_ptr;
12763 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010012764
Johannes Berg947add32013-02-22 22:05:20 +010012765 trace_cfg80211_rx_spurious_frame(dev, addr);
12766
12767 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
12768 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
12769 trace_cfg80211_return_bool(false);
12770 return false;
12771 }
12772 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
12773 addr, gfp);
12774 trace_cfg80211_return_bool(ret);
12775 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010012776}
Johannes Berg947add32013-02-22 22:05:20 +010012777EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
12778
12779bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
12780 const u8 *addr, gfp_t gfp)
12781{
12782 struct wireless_dev *wdev = dev->ieee80211_ptr;
12783 bool ret;
12784
12785 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
12786
12787 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
12788 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
12789 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
12790 trace_cfg80211_return_bool(false);
12791 return false;
12792 }
12793 ret = __nl80211_unexpected_frame(dev,
12794 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
12795 addr, gfp);
12796 trace_cfg80211_return_bool(ret);
12797 return ret;
12798}
12799EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010012800
Johannes Berg2e161f72010-08-12 15:38:38 +020012801int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000012802 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010012803 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030012804 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020012805{
Johannes Berg71bbc992012-06-15 15:30:18 +020012806 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020012807 struct sk_buff *msg;
12808 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020012809
12810 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12811 if (!msg)
12812 return -ENOMEM;
12813
Johannes Berg2e161f72010-08-12 15:38:38 +020012814 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020012815 if (!hdr) {
12816 nlmsg_free(msg);
12817 return -ENOMEM;
12818 }
12819
David S. Miller9360ffd2012-03-29 04:41:26 -040012820 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020012821 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
12822 netdev->ifindex)) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020012823 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
12824 NL80211_ATTR_PAD) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040012825 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
12826 (sig_dbm &&
12827 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030012828 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
12829 (flags &&
12830 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040012831 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020012832
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012833 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020012834
Eric W. Biederman15e47302012-09-07 20:12:54 +000012835 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020012836
12837 nla_put_failure:
12838 genlmsg_cancel(msg, hdr);
12839 nlmsg_free(msg);
12840 return -ENOBUFS;
12841}
12842
Johannes Berg947add32013-02-22 22:05:20 +010012843void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
12844 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020012845{
Johannes Berg947add32013-02-22 22:05:20 +010012846 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012847 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020012848 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020012849 struct sk_buff *msg;
12850 void *hdr;
12851
Johannes Berg947add32013-02-22 22:05:20 +010012852 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
12853
Jouni Malinen026331c2010-02-15 12:53:10 +020012854 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12855 if (!msg)
12856 return;
12857
Johannes Berg2e161f72010-08-12 15:38:38 +020012858 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020012859 if (!hdr) {
12860 nlmsg_free(msg);
12861 return;
12862 }
12863
David S. Miller9360ffd2012-03-29 04:41:26 -040012864 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020012865 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
12866 netdev->ifindex)) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020012867 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
12868 NL80211_ATTR_PAD) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040012869 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020012870 nla_put_u64_64bit(msg, NL80211_ATTR_COOKIE, cookie,
12871 NL80211_ATTR_PAD) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040012872 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
12873 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020012874
Johannes Berg3b7b72e2011-10-22 19:05:51 +020012875 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020012876
Johannes Berg68eb5502013-11-19 15:19:38 +010012877 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012878 NL80211_MCGRP_MLME, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020012879 return;
12880
12881 nla_put_failure:
12882 genlmsg_cancel(msg, hdr);
12883 nlmsg_free(msg);
12884}
Johannes Berg947add32013-02-22 22:05:20 +010012885EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020012886
Johannes Berg5b97f492014-11-26 12:37:43 +010012887static struct sk_buff *cfg80211_prepare_cqm(struct net_device *dev,
12888 const char *mac, gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012889{
Johannes Berg947add32013-02-22 22:05:20 +010012890 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg5b97f492014-11-26 12:37:43 +010012891 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
12892 struct sk_buff *msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12893 void **cb;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012894
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012895 if (!msg)
Johannes Berg5b97f492014-11-26 12:37:43 +010012896 return NULL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012897
Johannes Berg5b97f492014-11-26 12:37:43 +010012898 cb = (void **)msg->cb;
12899
12900 cb[0] = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
12901 if (!cb[0]) {
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012902 nlmsg_free(msg);
Johannes Berg5b97f492014-11-26 12:37:43 +010012903 return NULL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012904 }
12905
David S. Miller9360ffd2012-03-29 04:41:26 -040012906 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010012907 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040012908 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012909
Johannes Berg5b97f492014-11-26 12:37:43 +010012910 if (mac && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac))
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012911 goto nla_put_failure;
12912
Johannes Berg5b97f492014-11-26 12:37:43 +010012913 cb[1] = nla_nest_start(msg, NL80211_ATTR_CQM);
12914 if (!cb[1])
12915 goto nla_put_failure;
12916
12917 cb[2] = rdev;
12918
12919 return msg;
12920 nla_put_failure:
12921 nlmsg_free(msg);
12922 return NULL;
12923}
12924
12925static void cfg80211_send_cqm(struct sk_buff *msg, gfp_t gfp)
12926{
12927 void **cb = (void **)msg->cb;
12928 struct cfg80211_registered_device *rdev = cb[2];
12929
12930 nla_nest_end(msg, cb[1]);
12931 genlmsg_end(msg, cb[0]);
12932
12933 memset(msg->cb, 0, sizeof(msg->cb));
12934
12935 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
12936 NL80211_MCGRP_MLME, gfp);
12937}
12938
12939void cfg80211_cqm_rssi_notify(struct net_device *dev,
12940 enum nl80211_cqm_rssi_threshold_event rssi_event,
12941 gfp_t gfp)
12942{
12943 struct sk_buff *msg;
12944
12945 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
12946
Johannes Berg98f03342014-11-26 12:42:02 +010012947 if (WARN_ON(rssi_event != NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW &&
12948 rssi_event != NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH))
12949 return;
12950
Johannes Berg5b97f492014-11-26 12:37:43 +010012951 msg = cfg80211_prepare_cqm(dev, NULL, gfp);
12952 if (!msg)
12953 return;
12954
David S. Miller9360ffd2012-03-29 04:41:26 -040012955 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
12956 rssi_event))
12957 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012958
Johannes Berg5b97f492014-11-26 12:37:43 +010012959 cfg80211_send_cqm(msg, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012960
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012961 return;
12962
12963 nla_put_failure:
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012964 nlmsg_free(msg);
12965}
Johannes Berg947add32013-02-22 22:05:20 +010012966EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020012967
Johannes Berg5b97f492014-11-26 12:37:43 +010012968void cfg80211_cqm_txe_notify(struct net_device *dev,
12969 const u8 *peer, u32 num_packets,
12970 u32 rate, u32 intvl, gfp_t gfp)
12971{
12972 struct sk_buff *msg;
12973
12974 msg = cfg80211_prepare_cqm(dev, peer, gfp);
12975 if (!msg)
12976 return;
12977
12978 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
12979 goto nla_put_failure;
12980
12981 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
12982 goto nla_put_failure;
12983
12984 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
12985 goto nla_put_failure;
12986
12987 cfg80211_send_cqm(msg, gfp);
12988 return;
12989
12990 nla_put_failure:
12991 nlmsg_free(msg);
12992}
12993EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
12994
12995void cfg80211_cqm_pktloss_notify(struct net_device *dev,
12996 const u8 *peer, u32 num_packets, gfp_t gfp)
12997{
12998 struct sk_buff *msg;
12999
13000 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
13001
13002 msg = cfg80211_prepare_cqm(dev, peer, gfp);
13003 if (!msg)
13004 return;
13005
13006 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
13007 goto nla_put_failure;
13008
13009 cfg80211_send_cqm(msg, gfp);
13010 return;
13011
13012 nla_put_failure:
13013 nlmsg_free(msg);
13014}
13015EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
13016
Johannes Berg98f03342014-11-26 12:42:02 +010013017void cfg80211_cqm_beacon_loss_notify(struct net_device *dev, gfp_t gfp)
13018{
13019 struct sk_buff *msg;
13020
13021 msg = cfg80211_prepare_cqm(dev, NULL, gfp);
13022 if (!msg)
13023 return;
13024
13025 if (nla_put_flag(msg, NL80211_ATTR_CQM_BEACON_LOSS_EVENT))
13026 goto nla_put_failure;
13027
13028 cfg80211_send_cqm(msg, gfp);
13029 return;
13030
13031 nla_put_failure:
13032 nlmsg_free(msg);
13033}
13034EXPORT_SYMBOL(cfg80211_cqm_beacon_loss_notify);
13035
Johannes Berg947add32013-02-22 22:05:20 +010013036static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
13037 struct net_device *netdev, const u8 *bssid,
13038 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020013039{
13040 struct sk_buff *msg;
13041 struct nlattr *rekey_attr;
13042 void *hdr;
13043
Thomas Graf58050fc2012-06-28 03:57:45 +000013044 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020013045 if (!msg)
13046 return;
13047
13048 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
13049 if (!hdr) {
13050 nlmsg_free(msg);
13051 return;
13052 }
13053
David S. Miller9360ffd2012-03-29 04:41:26 -040013054 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13055 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
13056 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
13057 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020013058
13059 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
13060 if (!rekey_attr)
13061 goto nla_put_failure;
13062
David S. Miller9360ffd2012-03-29 04:41:26 -040013063 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
13064 NL80211_REPLAY_CTR_LEN, replay_ctr))
13065 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020013066
13067 nla_nest_end(msg, rekey_attr);
13068
Johannes Berg3b7b72e2011-10-22 19:05:51 +020013069 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020013070
Johannes Berg68eb5502013-11-19 15:19:38 +010013071 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013072 NL80211_MCGRP_MLME, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020013073 return;
13074
13075 nla_put_failure:
13076 genlmsg_cancel(msg, hdr);
13077 nlmsg_free(msg);
13078}
13079
Johannes Berg947add32013-02-22 22:05:20 +010013080void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
13081 const u8 *replay_ctr, gfp_t gfp)
13082{
13083 struct wireless_dev *wdev = dev->ieee80211_ptr;
13084 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013085 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010013086
13087 trace_cfg80211_gtk_rekey_notify(dev, bssid);
13088 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
13089}
13090EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
13091
13092static void
13093nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
13094 struct net_device *netdev, int index,
13095 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030013096{
13097 struct sk_buff *msg;
13098 struct nlattr *attr;
13099 void *hdr;
13100
Thomas Graf58050fc2012-06-28 03:57:45 +000013101 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030013102 if (!msg)
13103 return;
13104
13105 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
13106 if (!hdr) {
13107 nlmsg_free(msg);
13108 return;
13109 }
13110
David S. Miller9360ffd2012-03-29 04:41:26 -040013111 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13112 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
13113 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030013114
13115 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
13116 if (!attr)
13117 goto nla_put_failure;
13118
David S. Miller9360ffd2012-03-29 04:41:26 -040013119 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
13120 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
13121 (preauth &&
13122 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
13123 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030013124
13125 nla_nest_end(msg, attr);
13126
Johannes Berg3b7b72e2011-10-22 19:05:51 +020013127 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030013128
Johannes Berg68eb5502013-11-19 15:19:38 +010013129 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013130 NL80211_MCGRP_MLME, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030013131 return;
13132
13133 nla_put_failure:
13134 genlmsg_cancel(msg, hdr);
13135 nlmsg_free(msg);
13136}
13137
Johannes Berg947add32013-02-22 22:05:20 +010013138void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
13139 const u8 *bssid, bool preauth, gfp_t gfp)
13140{
13141 struct wireless_dev *wdev = dev->ieee80211_ptr;
13142 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013143 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010013144
13145 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
13146 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
13147}
13148EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
13149
13150static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
13151 struct net_device *netdev,
13152 struct cfg80211_chan_def *chandef,
Luciano Coelhof8d75522014-11-07 14:31:35 +020013153 gfp_t gfp,
13154 enum nl80211_commands notif,
13155 u8 count)
Thomas Pedersen53145262012-04-06 13:35:47 -070013156{
13157 struct sk_buff *msg;
13158 void *hdr;
13159
Thomas Graf58050fc2012-06-28 03:57:45 +000013160 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070013161 if (!msg)
13162 return;
13163
Luciano Coelhof8d75522014-11-07 14:31:35 +020013164 hdr = nl80211hdr_put(msg, 0, 0, 0, notif);
Thomas Pedersen53145262012-04-06 13:35:47 -070013165 if (!hdr) {
13166 nlmsg_free(msg);
13167 return;
13168 }
13169
Johannes Berg683b6d32012-11-08 21:25:48 +010013170 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
13171 goto nla_put_failure;
13172
13173 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040013174 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070013175
Luciano Coelhof8d75522014-11-07 14:31:35 +020013176 if ((notif == NL80211_CMD_CH_SWITCH_STARTED_NOTIFY) &&
13177 (nla_put_u32(msg, NL80211_ATTR_CH_SWITCH_COUNT, count)))
13178 goto nla_put_failure;
13179
Thomas Pedersen53145262012-04-06 13:35:47 -070013180 genlmsg_end(msg, hdr);
13181
Johannes Berg68eb5502013-11-19 15:19:38 +010013182 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013183 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070013184 return;
13185
13186 nla_put_failure:
13187 genlmsg_cancel(msg, hdr);
13188 nlmsg_free(msg);
13189}
13190
Johannes Berg947add32013-02-22 22:05:20 +010013191void cfg80211_ch_switch_notify(struct net_device *dev,
13192 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070013193{
Johannes Berg947add32013-02-22 22:05:20 +010013194 struct wireless_dev *wdev = dev->ieee80211_ptr;
13195 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013196 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010013197
Simon Wunderliche487eae2013-11-21 18:19:51 +010013198 ASSERT_WDEV_LOCK(wdev);
Johannes Berg947add32013-02-22 22:05:20 +010013199
Simon Wunderliche487eae2013-11-21 18:19:51 +010013200 trace_cfg80211_ch_switch_notify(dev, chandef);
Johannes Berg947add32013-02-22 22:05:20 +010013201
Michal Kazior9e0e2962014-01-29 14:22:27 +010013202 wdev->chandef = *chandef;
Janusz Dziedzic96f55f12014-01-24 14:29:21 +010013203 wdev->preset_chandef = *chandef;
Luciano Coelhof8d75522014-11-07 14:31:35 +020013204 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL,
13205 NL80211_CMD_CH_SWITCH_NOTIFY, 0);
Johannes Berg947add32013-02-22 22:05:20 +010013206}
13207EXPORT_SYMBOL(cfg80211_ch_switch_notify);
13208
Luciano Coelhof8d75522014-11-07 14:31:35 +020013209void cfg80211_ch_switch_started_notify(struct net_device *dev,
13210 struct cfg80211_chan_def *chandef,
13211 u8 count)
13212{
13213 struct wireless_dev *wdev = dev->ieee80211_ptr;
13214 struct wiphy *wiphy = wdev->wiphy;
13215 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
13216
13217 trace_cfg80211_ch_switch_started_notify(dev, chandef);
13218
13219 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL,
13220 NL80211_CMD_CH_SWITCH_STARTED_NOTIFY, count);
13221}
13222EXPORT_SYMBOL(cfg80211_ch_switch_started_notify);
13223
Thomas Pedersen84f10702012-07-12 16:17:33 -070013224void
Simon Wunderlich04f39042013-02-08 18:16:19 +010013225nl80211_radar_notify(struct cfg80211_registered_device *rdev,
Janusz Dziedzicd2859df2013-11-06 13:55:51 +010013226 const struct cfg80211_chan_def *chandef,
Simon Wunderlich04f39042013-02-08 18:16:19 +010013227 enum nl80211_radar_event event,
13228 struct net_device *netdev, gfp_t gfp)
13229{
13230 struct sk_buff *msg;
13231 void *hdr;
13232
13233 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
13234 if (!msg)
13235 return;
13236
13237 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
13238 if (!hdr) {
13239 nlmsg_free(msg);
13240 return;
13241 }
13242
13243 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
13244 goto nla_put_failure;
13245
13246 /* NOP and radar events don't need a netdev parameter */
13247 if (netdev) {
13248 struct wireless_dev *wdev = netdev->ieee80211_ptr;
13249
13250 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020013251 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
13252 NL80211_ATTR_PAD))
Simon Wunderlich04f39042013-02-08 18:16:19 +010013253 goto nla_put_failure;
13254 }
13255
13256 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
13257 goto nla_put_failure;
13258
13259 if (nl80211_send_chandef(msg, chandef))
13260 goto nla_put_failure;
13261
Johannes Berg9c90a9f2013-06-04 12:46:03 +020013262 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010013263
Johannes Berg68eb5502013-11-19 15:19:38 +010013264 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013265 NL80211_MCGRP_MLME, gfp);
Simon Wunderlich04f39042013-02-08 18:16:19 +010013266 return;
13267
13268 nla_put_failure:
13269 genlmsg_cancel(msg, hdr);
13270 nlmsg_free(msg);
13271}
13272
Johannes Berg7f6cf312011-11-04 11:18:15 +010013273void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
13274 u64 cookie, bool acked, gfp_t gfp)
13275{
13276 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013277 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg7f6cf312011-11-04 11:18:15 +010013278 struct sk_buff *msg;
13279 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010013280
Beni Lev4ee3e062012-08-27 12:49:39 +030013281 trace_cfg80211_probe_status(dev, addr, cookie, acked);
13282
Thomas Graf58050fc2012-06-28 03:57:45 +000013283 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030013284
Johannes Berg7f6cf312011-11-04 11:18:15 +010013285 if (!msg)
13286 return;
13287
13288 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
13289 if (!hdr) {
13290 nlmsg_free(msg);
13291 return;
13292 }
13293
David S. Miller9360ffd2012-03-29 04:41:26 -040013294 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13295 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
13296 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020013297 nla_put_u64_64bit(msg, NL80211_ATTR_COOKIE, cookie,
13298 NL80211_ATTR_PAD) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040013299 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
13300 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010013301
Johannes Berg9c90a9f2013-06-04 12:46:03 +020013302 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010013303
Johannes Berg68eb5502013-11-19 15:19:38 +010013304 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013305 NL80211_MCGRP_MLME, gfp);
Johannes Berg7f6cf312011-11-04 11:18:15 +010013306 return;
13307
13308 nla_put_failure:
13309 genlmsg_cancel(msg, hdr);
13310 nlmsg_free(msg);
13311}
13312EXPORT_SYMBOL(cfg80211_probe_status);
13313
Johannes Berg5e7602302011-11-04 11:18:17 +010013314void cfg80211_report_obss_beacon(struct wiphy *wiphy,
13315 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070013316 int freq, int sig_dbm)
Johannes Berg5e7602302011-11-04 11:18:17 +010013317{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013318 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg5e7602302011-11-04 11:18:17 +010013319 struct sk_buff *msg;
13320 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070013321 struct cfg80211_beacon_registration *reg;
Johannes Berg5e7602302011-11-04 11:18:17 +010013322
Beni Lev4ee3e062012-08-27 12:49:39 +030013323 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
13324
Ben Greear37c73b52012-10-26 14:49:25 -070013325 spin_lock_bh(&rdev->beacon_registrations_lock);
13326 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
13327 msg = nlmsg_new(len + 100, GFP_ATOMIC);
13328 if (!msg) {
13329 spin_unlock_bh(&rdev->beacon_registrations_lock);
13330 return;
13331 }
Johannes Berg5e7602302011-11-04 11:18:17 +010013332
Ben Greear37c73b52012-10-26 14:49:25 -070013333 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
13334 if (!hdr)
13335 goto nla_put_failure;
Johannes Berg5e7602302011-11-04 11:18:17 +010013336
Ben Greear37c73b52012-10-26 14:49:25 -070013337 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13338 (freq &&
13339 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
13340 (sig_dbm &&
13341 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
13342 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
13343 goto nla_put_failure;
13344
13345 genlmsg_end(msg, hdr);
13346
13347 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e7602302011-11-04 11:18:17 +010013348 }
Ben Greear37c73b52012-10-26 14:49:25 -070013349 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010013350 return;
13351
13352 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070013353 spin_unlock_bh(&rdev->beacon_registrations_lock);
13354 if (hdr)
13355 genlmsg_cancel(msg, hdr);
Johannes Berg5e7602302011-11-04 11:18:17 +010013356 nlmsg_free(msg);
13357}
13358EXPORT_SYMBOL(cfg80211_report_obss_beacon);
13359
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013360#ifdef CONFIG_PM
Luciano Coelho8cd4d452014-09-17 11:55:28 +030013361static int cfg80211_net_detect_results(struct sk_buff *msg,
13362 struct cfg80211_wowlan_wakeup *wakeup)
13363{
13364 struct cfg80211_wowlan_nd_info *nd = wakeup->net_detect;
13365 struct nlattr *nl_results, *nl_match, *nl_freqs;
13366 int i, j;
13367
13368 nl_results = nla_nest_start(
13369 msg, NL80211_WOWLAN_TRIG_NET_DETECT_RESULTS);
13370 if (!nl_results)
13371 return -EMSGSIZE;
13372
13373 for (i = 0; i < nd->n_matches; i++) {
13374 struct cfg80211_wowlan_nd_match *match = nd->matches[i];
13375
13376 nl_match = nla_nest_start(msg, i);
13377 if (!nl_match)
13378 break;
13379
13380 /* The SSID attribute is optional in nl80211, but for
13381 * simplicity reasons it's always present in the
13382 * cfg80211 structure. If a driver can't pass the
13383 * SSID, that needs to be changed. A zero length SSID
13384 * is still a valid SSID (wildcard), so it cannot be
13385 * used for this purpose.
13386 */
13387 if (nla_put(msg, NL80211_ATTR_SSID, match->ssid.ssid_len,
13388 match->ssid.ssid)) {
13389 nla_nest_cancel(msg, nl_match);
13390 goto out;
13391 }
13392
13393 if (match->n_channels) {
13394 nl_freqs = nla_nest_start(
13395 msg, NL80211_ATTR_SCAN_FREQUENCIES);
13396 if (!nl_freqs) {
13397 nla_nest_cancel(msg, nl_match);
13398 goto out;
13399 }
13400
13401 for (j = 0; j < match->n_channels; j++) {
Samuel Tan5528fae82015-02-09 21:29:15 +020013402 if (nla_put_u32(msg, j, match->channels[j])) {
Luciano Coelho8cd4d452014-09-17 11:55:28 +030013403 nla_nest_cancel(msg, nl_freqs);
13404 nla_nest_cancel(msg, nl_match);
13405 goto out;
13406 }
13407 }
13408
13409 nla_nest_end(msg, nl_freqs);
13410 }
13411
13412 nla_nest_end(msg, nl_match);
13413 }
13414
13415out:
13416 nla_nest_end(msg, nl_results);
13417 return 0;
13418}
13419
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013420void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
13421 struct cfg80211_wowlan_wakeup *wakeup,
13422 gfp_t gfp)
13423{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013424 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013425 struct sk_buff *msg;
13426 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020013427 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013428
13429 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
13430
13431 if (wakeup)
13432 size += wakeup->packet_present_len;
13433
13434 msg = nlmsg_new(size, gfp);
13435 if (!msg)
13436 return;
13437
13438 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
13439 if (!hdr)
13440 goto free_msg;
13441
13442 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020013443 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
13444 NL80211_ATTR_PAD))
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013445 goto free_msg;
13446
13447 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
13448 wdev->netdev->ifindex))
13449 goto free_msg;
13450
13451 if (wakeup) {
13452 struct nlattr *reasons;
13453
13454 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
Johannes Berg7fa322c2013-10-25 11:16:58 +020013455 if (!reasons)
13456 goto free_msg;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013457
13458 if (wakeup->disconnect &&
13459 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
13460 goto free_msg;
13461 if (wakeup->magic_pkt &&
13462 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
13463 goto free_msg;
13464 if (wakeup->gtk_rekey_failure &&
13465 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
13466 goto free_msg;
13467 if (wakeup->eap_identity_req &&
13468 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
13469 goto free_msg;
13470 if (wakeup->four_way_handshake &&
13471 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
13472 goto free_msg;
13473 if (wakeup->rfkill_release &&
13474 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
13475 goto free_msg;
13476
13477 if (wakeup->pattern_idx >= 0 &&
13478 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
13479 wakeup->pattern_idx))
13480 goto free_msg;
13481
Johannes Bergae917c92013-10-25 11:05:22 +020013482 if (wakeup->tcp_match &&
13483 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH))
13484 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010013485
Johannes Bergae917c92013-10-25 11:05:22 +020013486 if (wakeup->tcp_connlost &&
13487 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST))
13488 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010013489
Johannes Bergae917c92013-10-25 11:05:22 +020013490 if (wakeup->tcp_nomoretokens &&
13491 nla_put_flag(msg,
13492 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS))
13493 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010013494
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013495 if (wakeup->packet) {
13496 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
13497 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
13498
13499 if (!wakeup->packet_80211) {
13500 pkt_attr =
13501 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
13502 len_attr =
13503 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
13504 }
13505
13506 if (wakeup->packet_len &&
13507 nla_put_u32(msg, len_attr, wakeup->packet_len))
13508 goto free_msg;
13509
13510 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
13511 wakeup->packet))
13512 goto free_msg;
13513 }
13514
Luciano Coelho8cd4d452014-09-17 11:55:28 +030013515 if (wakeup->net_detect &&
13516 cfg80211_net_detect_results(msg, wakeup))
13517 goto free_msg;
13518
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013519 nla_nest_end(msg, reasons);
13520 }
13521
Johannes Berg9c90a9f2013-06-04 12:46:03 +020013522 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013523
Johannes Berg68eb5502013-11-19 15:19:38 +010013524 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013525 NL80211_MCGRP_MLME, gfp);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010013526 return;
13527
13528 free_msg:
13529 nlmsg_free(msg);
13530}
13531EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
13532#endif
13533
Jouni Malinen3475b092012-11-16 22:49:57 +020013534void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
13535 enum nl80211_tdls_operation oper,
13536 u16 reason_code, gfp_t gfp)
13537{
13538 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013539 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Jouni Malinen3475b092012-11-16 22:49:57 +020013540 struct sk_buff *msg;
13541 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020013542
13543 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
13544 reason_code);
13545
13546 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
13547 if (!msg)
13548 return;
13549
13550 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
13551 if (!hdr) {
13552 nlmsg_free(msg);
13553 return;
13554 }
13555
13556 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13557 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
13558 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
13559 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
13560 (reason_code > 0 &&
13561 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
13562 goto nla_put_failure;
13563
Johannes Berg9c90a9f2013-06-04 12:46:03 +020013564 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020013565
Johannes Berg68eb5502013-11-19 15:19:38 +010013566 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013567 NL80211_MCGRP_MLME, gfp);
Jouni Malinen3475b092012-11-16 22:49:57 +020013568 return;
13569
13570 nla_put_failure:
13571 genlmsg_cancel(msg, hdr);
13572 nlmsg_free(msg);
13573}
13574EXPORT_SYMBOL(cfg80211_tdls_oper_request);
13575
Jouni Malinen026331c2010-02-15 12:53:10 +020013576static int nl80211_netlink_notify(struct notifier_block * nb,
13577 unsigned long state,
13578 void *_notify)
13579{
13580 struct netlink_notify *notify = _notify;
13581 struct cfg80211_registered_device *rdev;
13582 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070013583 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020013584
Dmitry Ivanov8f815cd2016-04-06 17:23:18 +030013585 if (state != NETLINK_URELEASE || notify->protocol != NETLINK_GENERIC)
Jouni Malinen026331c2010-02-15 12:53:10 +020013586 return NOTIFY_DONE;
13587
13588 rcu_read_lock();
13589
Johannes Berg5e7602302011-11-04 11:18:17 +010013590 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg78f22b62014-03-24 17:57:27 +010013591 bool schedule_destroy_work = false;
Jukka Rissanen93a1e862014-12-15 13:25:39 +020013592 bool schedule_scan_stop = false;
13593 struct cfg80211_sched_scan_request *sched_scan_req =
13594 rcu_dereference(rdev->sched_scan_req);
13595
13596 if (sched_scan_req && notify->portid &&
13597 sched_scan_req->owner_nlportid == notify->portid)
13598 schedule_scan_stop = true;
Johannes Berg78f22b62014-03-24 17:57:27 +010013599
Johannes Berg53873f12016-05-03 16:52:04 +030013600 list_for_each_entry_rcu(wdev, &rdev->wiphy.wdev_list, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +000013601 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070013602
Johannes Berg78f22b62014-03-24 17:57:27 +010013603 if (wdev->owner_nlportid == notify->portid)
13604 schedule_destroy_work = true;
13605 }
13606
Ben Greear37c73b52012-10-26 14:49:25 -070013607 spin_lock_bh(&rdev->beacon_registrations_lock);
13608 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
13609 list) {
13610 if (reg->nlportid == notify->portid) {
13611 list_del(&reg->list);
13612 kfree(reg);
13613 break;
13614 }
13615 }
13616 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg78f22b62014-03-24 17:57:27 +010013617
13618 if (schedule_destroy_work) {
13619 struct cfg80211_iface_destroy *destroy;
13620
13621 destroy = kzalloc(sizeof(*destroy), GFP_ATOMIC);
13622 if (destroy) {
13623 destroy->nlportid = notify->portid;
13624 spin_lock(&rdev->destroy_list_lock);
13625 list_add(&destroy->list, &rdev->destroy_list);
13626 spin_unlock(&rdev->destroy_list_lock);
13627 schedule_work(&rdev->destroy_work);
13628 }
Jukka Rissanen93a1e862014-12-15 13:25:39 +020013629 } else if (schedule_scan_stop) {
13630 sched_scan_req->owner_nlportid = 0;
13631
13632 if (rdev->ops->sched_scan_stop &&
13633 rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
13634 schedule_work(&rdev->sched_scan_stop_wk);
Johannes Berg78f22b62014-03-24 17:57:27 +010013635 }
Johannes Berg5e7602302011-11-04 11:18:17 +010013636 }
Jouni Malinen026331c2010-02-15 12:53:10 +020013637
13638 rcu_read_unlock();
13639
Ilan peer05050752015-03-04 00:32:06 -050013640 /*
13641 * It is possible that the user space process that is controlling the
13642 * indoor setting disappeared, so notify the regulatory core.
13643 */
13644 regulatory_netlink_notify(notify->portid);
Zhao, Gang6784c7d2014-04-21 12:53:04 +080013645 return NOTIFY_OK;
Jouni Malinen026331c2010-02-15 12:53:10 +020013646}
13647
13648static struct notifier_block nl80211_netlink_notifier = {
13649 .notifier_call = nl80211_netlink_notify,
13650};
13651
Jouni Malinen355199e2013-02-27 17:14:27 +020013652void cfg80211_ft_event(struct net_device *netdev,
13653 struct cfg80211_ft_event_params *ft_event)
13654{
13655 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013656 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jouni Malinen355199e2013-02-27 17:14:27 +020013657 struct sk_buff *msg;
13658 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020013659
13660 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
13661
13662 if (!ft_event->target_ap)
13663 return;
13664
13665 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
13666 if (!msg)
13667 return;
13668
13669 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
Johannes Bergae917c92013-10-25 11:05:22 +020013670 if (!hdr)
13671 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020013672
Johannes Bergae917c92013-10-25 11:05:22 +020013673 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13674 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
13675 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap))
13676 goto out;
13677
13678 if (ft_event->ies &&
13679 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies))
13680 goto out;
13681 if (ft_event->ric_ies &&
13682 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
13683 ft_event->ric_ies))
13684 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020013685
Johannes Berg9c90a9f2013-06-04 12:46:03 +020013686 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020013687
Johannes Berg68eb5502013-11-19 15:19:38 +010013688 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010013689 NL80211_MCGRP_MLME, GFP_KERNEL);
Johannes Bergae917c92013-10-25 11:05:22 +020013690 return;
13691 out:
13692 nlmsg_free(msg);
Jouni Malinen355199e2013-02-27 17:14:27 +020013693}
13694EXPORT_SYMBOL(cfg80211_ft_event);
13695
Arend van Spriel5de17982013-04-18 15:49:00 +020013696void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
13697{
13698 struct cfg80211_registered_device *rdev;
13699 struct sk_buff *msg;
13700 void *hdr;
13701 u32 nlportid;
13702
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013703 rdev = wiphy_to_rdev(wdev->wiphy);
Arend van Spriel5de17982013-04-18 15:49:00 +020013704 if (!rdev->crit_proto_nlportid)
13705 return;
13706
13707 nlportid = rdev->crit_proto_nlportid;
13708 rdev->crit_proto_nlportid = 0;
13709
13710 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
13711 if (!msg)
13712 return;
13713
13714 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
13715 if (!hdr)
13716 goto nla_put_failure;
13717
13718 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020013719 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
13720 NL80211_ATTR_PAD))
Arend van Spriel5de17982013-04-18 15:49:00 +020013721 goto nla_put_failure;
13722
13723 genlmsg_end(msg, hdr);
13724
13725 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
13726 return;
13727
13728 nla_put_failure:
13729 if (hdr)
13730 genlmsg_cancel(msg, hdr);
13731 nlmsg_free(msg);
Arend van Spriel5de17982013-04-18 15:49:00 +020013732}
13733EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
13734
Johannes Berg348baf02014-01-24 14:06:29 +010013735void nl80211_send_ap_stopped(struct wireless_dev *wdev)
13736{
13737 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080013738 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg348baf02014-01-24 14:06:29 +010013739 struct sk_buff *msg;
13740 void *hdr;
13741
13742 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
13743 if (!msg)
13744 return;
13745
13746 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_STOP_AP);
13747 if (!hdr)
13748 goto out;
13749
13750 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
13751 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex) ||
Nicolas Dichtel2dad6242016-04-25 10:25:22 +020013752 nla_put_u64_64bit(msg, NL80211_ATTR_WDEV, wdev_id(wdev),
13753 NL80211_ATTR_PAD))
Johannes Berg348baf02014-01-24 14:06:29 +010013754 goto out;
13755
13756 genlmsg_end(msg, hdr);
13757
13758 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(wiphy), msg, 0,
13759 NL80211_MCGRP_MLME, GFP_KERNEL);
13760 return;
13761 out:
13762 nlmsg_free(msg);
13763}
13764
Johannes Berg55682962007-09-20 13:09:35 -040013765/* initialisation/exit functions */
13766
13767int nl80211_init(void)
13768{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000013769 int err;
Johannes Berg55682962007-09-20 13:09:35 -040013770
Johannes Berg2a94fe42013-11-19 15:19:39 +010013771 err = genl_register_family_with_ops_groups(&nl80211_fam, nl80211_ops,
13772 nl80211_mcgrps);
Johannes Berg55682962007-09-20 13:09:35 -040013773 if (err)
13774 return err;
13775
Jouni Malinen026331c2010-02-15 12:53:10 +020013776 err = netlink_register_notifier(&nl80211_netlink_notifier);
13777 if (err)
13778 goto err_out;
13779
Johannes Berg55682962007-09-20 13:09:35 -040013780 return 0;
13781 err_out:
13782 genl_unregister_family(&nl80211_fam);
13783 return err;
13784}
13785
13786void nl80211_exit(void)
13787{
Jouni Malinen026331c2010-02-15 12:53:10 +020013788 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040013789 genl_unregister_family(&nl80211_fam);
13790}