blob: 4cce3e17964d9f9a091933deabe551ca5e2f8e59 [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
Johannes Berg55682962007-09-20 13:09:35 -04006 */
7
8#include <linux/if.h>
9#include <linux/module.h>
10#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Johannes Berg55682962007-09-20 13:09:35 -040012#include <linux/list.h>
13#include <linux/if_ether.h>
14#include <linux/ieee80211.h>
15#include <linux/nl80211.h>
16#include <linux/rtnetlink.h>
17#include <linux/netlink.h>
Johannes Berg2a519312009-02-10 21:25:55 +010018#include <linux/etherdevice.h>
Johannes Berg463d0182009-07-14 00:33:35 +020019#include <net/net_namespace.h>
Johannes Berg55682962007-09-20 13:09:35 -040020#include <net/genetlink.h>
21#include <net/cfg80211.h>
Johannes Berg463d0182009-07-14 00:33:35 +020022#include <net/sock.h>
Johannes Berg2a0e0472013-01-23 22:57:40 +010023#include <net/inet_connection_sock.h>
Johannes Berg55682962007-09-20 13:09:35 -040024#include "core.h"
25#include "nl80211.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070026#include "reg.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030027#include "rdev-ops.h"
Johannes Berg55682962007-09-20 13:09:35 -040028
Jouni Malinen5fb628e2011-08-10 23:54:35 +030029static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
30 struct genl_info *info,
31 struct cfg80211_crypto_settings *settings,
32 int cipher_limit);
33
Johannes Bergf84f7712013-11-14 17:14:45 +010034static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020035 struct genl_info *info);
Johannes Bergf84f7712013-11-14 17:14:45 +010036static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020037 struct genl_info *info);
38
Johannes Berg55682962007-09-20 13:09:35 -040039/* the netlink family */
40static struct genl_family nl80211_fam = {
Marcel Holtmannfb4e1562013-04-28 16:22:06 -070041 .id = GENL_ID_GENERATE, /* don't bother with a hardcoded ID */
42 .name = NL80211_GENL_NAME, /* have users key off the name instead */
43 .hdrsize = 0, /* no private header */
44 .version = 1, /* no particular meaning now */
Johannes Berg55682962007-09-20 13:09:35 -040045 .maxattr = NL80211_ATTR_MAX,
Johannes Berg463d0182009-07-14 00:33:35 +020046 .netnsok = true,
Johannes Berg4c476992010-10-04 21:36:35 +020047 .pre_doit = nl80211_pre_doit,
48 .post_doit = nl80211_post_doit,
Johannes Berg55682962007-09-20 13:09:35 -040049};
50
Johannes Berg2a94fe42013-11-19 15:19:39 +010051/* multicast groups */
52enum nl80211_multicast_groups {
53 NL80211_MCGRP_CONFIG,
54 NL80211_MCGRP_SCAN,
55 NL80211_MCGRP_REGULATORY,
56 NL80211_MCGRP_MLME,
Johannes Berg567ffc32013-12-18 14:43:31 +010057 NL80211_MCGRP_VENDOR,
Johannes Berg2a94fe42013-11-19 15:19:39 +010058 NL80211_MCGRP_TESTMODE /* keep last - ifdef! */
59};
60
61static const struct genl_multicast_group nl80211_mcgrps[] = {
62 [NL80211_MCGRP_CONFIG] = { .name = "config", },
63 [NL80211_MCGRP_SCAN] = { .name = "scan", },
64 [NL80211_MCGRP_REGULATORY] = { .name = "regulatory", },
65 [NL80211_MCGRP_MLME] = { .name = "mlme", },
Johannes Berg567ffc32013-12-18 14:43:31 +010066 [NL80211_MCGRP_VENDOR] = { .name = "vendor", },
Johannes Berg2a94fe42013-11-19 15:19:39 +010067#ifdef CONFIG_NL80211_TESTMODE
68 [NL80211_MCGRP_TESTMODE] = { .name = "testmode", }
69#endif
70};
71
Johannes Berg89a54e42012-06-15 14:33:17 +020072/* returns ERR_PTR values */
73static struct wireless_dev *
74__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berg55682962007-09-20 13:09:35 -040075{
Johannes Berg89a54e42012-06-15 14:33:17 +020076 struct cfg80211_registered_device *rdev;
77 struct wireless_dev *result = NULL;
78 bool have_ifidx = attrs[NL80211_ATTR_IFINDEX];
79 bool have_wdev_id = attrs[NL80211_ATTR_WDEV];
80 u64 wdev_id;
81 int wiphy_idx = -1;
82 int ifidx = -1;
Johannes Berg55682962007-09-20 13:09:35 -040083
Johannes Berg5fe231e2013-05-08 21:45:15 +020084 ASSERT_RTNL();
Johannes Berg55682962007-09-20 13:09:35 -040085
Johannes Berg89a54e42012-06-15 14:33:17 +020086 if (!have_ifidx && !have_wdev_id)
87 return ERR_PTR(-EINVAL);
Johannes Berg55682962007-09-20 13:09:35 -040088
Johannes Berg89a54e42012-06-15 14:33:17 +020089 if (have_ifidx)
90 ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
91 if (have_wdev_id) {
92 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
93 wiphy_idx = wdev_id >> 32;
Johannes Berg55682962007-09-20 13:09:35 -040094 }
95
Johannes Berg89a54e42012-06-15 14:33:17 +020096 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
97 struct wireless_dev *wdev;
98
99 if (wiphy_net(&rdev->wiphy) != netns)
100 continue;
101
102 if (have_wdev_id && rdev->wiphy_idx != wiphy_idx)
103 continue;
104
Johannes Berg89a54e42012-06-15 14:33:17 +0200105 list_for_each_entry(wdev, &rdev->wdev_list, list) {
106 if (have_ifidx && wdev->netdev &&
107 wdev->netdev->ifindex == ifidx) {
108 result = wdev;
109 break;
110 }
111 if (have_wdev_id && wdev->identifier == (u32)wdev_id) {
112 result = wdev;
113 break;
114 }
115 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200116
117 if (result)
118 break;
119 }
120
121 if (result)
122 return result;
123 return ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400124}
125
Johannes Berga9455402012-06-15 13:32:49 +0200126static struct cfg80211_registered_device *
Johannes Berg878d9ec2012-06-15 14:18:32 +0200127__cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berga9455402012-06-15 13:32:49 +0200128{
Johannes Berg7fee4772012-06-15 14:09:58 +0200129 struct cfg80211_registered_device *rdev = NULL, *tmp;
130 struct net_device *netdev;
Johannes Berga9455402012-06-15 13:32:49 +0200131
Johannes Berg5fe231e2013-05-08 21:45:15 +0200132 ASSERT_RTNL();
Johannes Berga9455402012-06-15 13:32:49 +0200133
Johannes Berg878d9ec2012-06-15 14:18:32 +0200134 if (!attrs[NL80211_ATTR_WIPHY] &&
Johannes Berg89a54e42012-06-15 14:33:17 +0200135 !attrs[NL80211_ATTR_IFINDEX] &&
136 !attrs[NL80211_ATTR_WDEV])
Johannes Berg7fee4772012-06-15 14:09:58 +0200137 return ERR_PTR(-EINVAL);
138
Johannes Berg878d9ec2012-06-15 14:18:32 +0200139 if (attrs[NL80211_ATTR_WIPHY])
Johannes Berg7fee4772012-06-15 14:09:58 +0200140 rdev = cfg80211_rdev_by_wiphy_idx(
Johannes Berg878d9ec2012-06-15 14:18:32 +0200141 nla_get_u32(attrs[NL80211_ATTR_WIPHY]));
Johannes Berga9455402012-06-15 13:32:49 +0200142
Johannes Berg89a54e42012-06-15 14:33:17 +0200143 if (attrs[NL80211_ATTR_WDEV]) {
144 u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
145 struct wireless_dev *wdev;
146 bool found = false;
147
148 tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32);
149 if (tmp) {
150 /* make sure wdev exists */
Johannes Berg89a54e42012-06-15 14:33:17 +0200151 list_for_each_entry(wdev, &tmp->wdev_list, list) {
152 if (wdev->identifier != (u32)wdev_id)
153 continue;
154 found = true;
155 break;
156 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200157
158 if (!found)
159 tmp = NULL;
160
161 if (rdev && tmp != rdev)
162 return ERR_PTR(-EINVAL);
163 rdev = tmp;
164 }
165 }
166
Johannes Berg878d9ec2012-06-15 14:18:32 +0200167 if (attrs[NL80211_ATTR_IFINDEX]) {
168 int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
Ying Xue7f2b8562014-01-15 10:23:45 +0800169 netdev = __dev_get_by_index(netns, ifindex);
Johannes Berg7fee4772012-06-15 14:09:58 +0200170 if (netdev) {
171 if (netdev->ieee80211_ptr)
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800172 tmp = wiphy_to_rdev(
173 netdev->ieee80211_ptr->wiphy);
Johannes Berg7fee4772012-06-15 14:09:58 +0200174 else
175 tmp = NULL;
176
Johannes Berg7fee4772012-06-15 14:09:58 +0200177 /* not wireless device -- return error */
178 if (!tmp)
179 return ERR_PTR(-EINVAL);
180
181 /* mismatch -- return error */
182 if (rdev && tmp != rdev)
183 return ERR_PTR(-EINVAL);
184
185 rdev = tmp;
Johannes Berga9455402012-06-15 13:32:49 +0200186 }
Johannes Berga9455402012-06-15 13:32:49 +0200187 }
188
Johannes Berg4f7eff12012-06-15 14:14:22 +0200189 if (!rdev)
190 return ERR_PTR(-ENODEV);
Johannes Berga9455402012-06-15 13:32:49 +0200191
Johannes Berg4f7eff12012-06-15 14:14:22 +0200192 if (netns != wiphy_net(&rdev->wiphy))
193 return ERR_PTR(-ENODEV);
194
195 return rdev;
Johannes Berga9455402012-06-15 13:32:49 +0200196}
197
198/*
199 * This function returns a pointer to the driver
200 * that the genl_info item that is passed refers to.
Johannes Berga9455402012-06-15 13:32:49 +0200201 *
202 * The result of this can be a PTR_ERR and hence must
203 * be checked with IS_ERR() for errors.
204 */
205static struct cfg80211_registered_device *
Johannes Berg4f7eff12012-06-15 14:14:22 +0200206cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
Johannes Berga9455402012-06-15 13:32:49 +0200207{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200208 return __cfg80211_rdev_from_attrs(netns, info->attrs);
Johannes Berga9455402012-06-15 13:32:49 +0200209}
210
Johannes Berg55682962007-09-20 13:09:35 -0400211/* policy for the attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000212static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
Johannes Berg55682962007-09-20 13:09:35 -0400213 [NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
214 [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
David S. Miller079e24e2009-05-26 21:15:00 -0700215 .len = 20-1 },
Jouni Malinen31888482008-10-30 16:59:24 +0200216 [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100217
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200218 [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
Sujith094d05d2008-12-12 11:57:43 +0530219 [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100220 [NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 },
221 [NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 },
222 [NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 },
223
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200224 [NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
225 [NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
226 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
227 [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
Lukáš Turek81077e82009-12-21 22:50:47 +0100228 [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
Lorenzo Bianconi3057dbf2014-09-04 23:57:40 +0200229 [NL80211_ATTR_WIPHY_DYN_ACK] = { .type = NLA_FLAG },
Johannes Berg55682962007-09-20 13:09:35 -0400230
231 [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
232 [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
233 [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
Johannes Berg41ade002007-12-19 02:03:29 +0100234
Eliad Pellere007b852011-11-24 18:13:56 +0200235 [NL80211_ATTR_MAC] = { .len = ETH_ALEN },
236 [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
Johannes Berg41ade002007-12-19 02:03:29 +0100237
Johannes Bergb9454e82009-07-08 13:29:08 +0200238 [NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
Johannes Berg41ade002007-12-19 02:03:29 +0100239 [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
240 .len = WLAN_MAX_KEY_LEN },
241 [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
242 [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
243 [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
Jouni Malinen81962262011-11-02 23:36:31 +0200244 [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Berge31b8212010-10-05 19:39:30 +0200245 [NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
Johannes Berged1b6cc2007-12-19 02:03:32 +0100246
247 [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
248 [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
249 [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
250 .len = IEEE80211_MAX_DATA_LEN },
251 [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
252 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg5727ef12007-12-19 02:03:34 +0100253 [NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
254 [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
255 [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
256 [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
257 .len = NL80211_MAX_SUPP_RATES },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100258 [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
Johannes Berg5727ef12007-12-19 02:03:34 +0100259 [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
Johannes Berg0a9542e2008-10-15 11:54:04 +0200260 [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100261 [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800262 .len = IEEE80211_MAX_MESH_ID_LEN },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100263 [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300264
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700265 [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
266 [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },
267
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300268 [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
269 [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
270 [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
Jouni Malinen90c97a02008-10-30 16:59:22 +0200271 [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
272 .len = NL80211_MAX_SUPP_RATES },
Helmut Schaa50b12f52010-11-19 12:40:25 +0100273 [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
Jouni Malinen36aedc902008-08-25 11:58:58 +0300274
Javier Cardona24bdd9f2010-12-16 17:37:48 -0800275 [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
Javier Cardona15d5dda2011-04-07 15:08:28 -0700276 [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700277
Johannes Berg6c739412011-11-03 09:27:01 +0100278 [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200279
280 [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
281 [NL80211_ATTR_IE] = { .type = NLA_BINARY,
282 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg2a519312009-02-10 21:25:55 +0100283 [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
284 [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
Jouni Malinen636a5d32009-03-19 13:39:22 +0200285
286 [NL80211_ATTR_SSID] = { .type = NLA_BINARY,
287 .len = IEEE80211_MAX_SSID_LEN },
288 [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
289 [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
Johannes Berg04a773a2009-04-19 21:24:32 +0200290 [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
Jouni Malinen1965c852009-04-22 21:38:25 +0300291 [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
Jouni Malinendc6382c2009-05-06 22:09:37 +0300292 [NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
Johannes Bergeccb8e82009-05-11 21:57:56 +0300293 [NL80211_ATTR_STA_FLAGS2] = {
294 .len = sizeof(struct nl80211_sta_flag_update),
295 },
Jouni Malinen3f77316c2009-05-11 21:57:57 +0300296 [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
Johannes Bergc0692b82010-08-27 14:26:53 +0300297 [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
298 [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
Samuel Ortizb23aa672009-07-01 21:26:54 +0200299 [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
300 [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
301 [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
Johannes Berg463d0182009-07-14 00:33:35 +0200302 [NL80211_ATTR_PID] = { .type = NLA_U32 },
Felix Fietkau8b787642009-11-10 18:53:10 +0100303 [NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +0100304 [NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
305 .len = WLAN_PMKID_LEN },
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100306 [NL80211_ATTR_DURATION] = { .type = NLA_U32 },
307 [NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +0200308 [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
Jouni Malinen026331c2010-02-15 12:53:10 +0200309 [NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
310 .len = IEEE80211_MAX_DATA_LEN },
311 [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
Kalle Valoffb9eb32010-02-17 17:58:10 +0200312 [NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200313 [NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300314 [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200315 [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +0300316 [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
317 [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
Johannes Berg2e161f72010-08-12 15:38:38 +0200318 [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
Bruno Randolfafe0cbf2010-11-10 12:50:50 +0900319 [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
320 [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
Felix Fietkau885a46d2010-11-11 15:07:22 +0100321 [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100322 [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100323 [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200324 [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
Javier Cardona9c3990a2011-05-03 16:57:11 -0700325 [NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300326 [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
Johannes Berge5497d72011-07-05 16:35:40 +0200327 [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
Johannes Berg34850ab2011-07-18 18:08:35 +0200328 [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
Jouni Malinen32e9de82011-08-10 23:53:31 +0300329 [NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
Jouni Malinen9946ecf2011-08-10 23:55:56 +0300330 [NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY,
331 .len = IEEE80211_MAX_DATA_LEN },
332 [NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY,
333 .len = IEEE80211_MAX_DATA_LEN },
Vivek Natarajanf4b34b52011-08-29 14:23:03 +0530334 [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300335 [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530336 [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
Arik Nemtsov109086c2011-09-28 14:12:50 +0300337 [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 },
338 [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 },
339 [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
340 [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
341 [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
Arik Nemtsov31fa97c2014-06-11 17:18:21 +0300342 [NL80211_ATTR_TDLS_INITIATOR] = { .type = NLA_FLAG },
Johannes Berge247bd902011-11-04 11:18:21 +0100343 [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
Arik Nemtsov00f740e2011-11-10 11:28:56 +0200344 [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
345 .len = IEEE80211_MAX_DATA_LEN },
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -0700346 [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
Ben Greear7e7c8922011-11-18 11:31:59 -0800347 [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
348 [NL80211_ATTR_HT_CAPABILITY_MASK] = {
349 .len = NL80211_HT_CAPABILITY_LEN
350 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +0100351 [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +0530352 [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
Bala Shanmugam4486ea92012-03-07 17:27:12 +0530353 [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
Johannes Berg89a54e42012-06-15 14:33:17 +0200354 [NL80211_ATTR_WDEV] = { .type = NLA_U64 },
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700355 [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
Jouni Malinene39e5b52012-09-30 19:29:39 +0300356 [NL80211_ATTR_SAE_DATA] = { .type = NLA_BINARY, },
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +0000357 [NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN },
Sam Lefflered4737712012-10-11 21:03:31 -0700358 [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 },
Johannes Berg53cabad2012-11-14 15:17:28 +0100359 [NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 },
360 [NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530361 [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 },
362 [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED },
Jouni Malinen9d62a982013-02-14 21:10:13 +0200363 [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 },
364 [NL80211_ATTR_STA_EXT_CAPABILITY] = { .type = NLA_BINARY, },
Johannes Berg3713b4e2013-02-14 16:19:38 +0100365 [NL80211_ATTR_SPLIT_WIPHY_DUMP] = { .type = NLA_FLAG, },
Johannes Bergee2aca32013-02-21 17:36:01 +0100366 [NL80211_ATTR_DISABLE_VHT] = { .type = NLA_FLAG },
367 [NL80211_ATTR_VHT_CAPABILITY_MASK] = {
368 .len = NL80211_VHT_CAPABILITY_LEN,
369 },
Jouni Malinen355199e2013-02-27 17:14:27 +0200370 [NL80211_ATTR_MDID] = { .type = NLA_U16 },
371 [NL80211_ATTR_IE_RIC] = { .type = NLA_BINARY,
372 .len = IEEE80211_MAX_DATA_LEN },
Jouni Malinen5e4b6f52013-05-16 20:11:08 +0300373 [NL80211_ATTR_PEER_AID] = { .type = NLA_U16 },
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +0200374 [NL80211_ATTR_CH_SWITCH_COUNT] = { .type = NLA_U32 },
375 [NL80211_ATTR_CH_SWITCH_BLOCK_TX] = { .type = NLA_FLAG },
376 [NL80211_ATTR_CSA_IES] = { .type = NLA_NESTED },
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +0300377 [NL80211_ATTR_CSA_C_OFF_BEACON] = { .type = NLA_BINARY },
378 [NL80211_ATTR_CSA_C_OFF_PRESP] = { .type = NLA_BINARY },
Sunil Duttc01fc9a2013-10-09 20:45:21 +0530379 [NL80211_ATTR_STA_SUPPORTED_CHANNELS] = { .type = NLA_BINARY },
380 [NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES] = { .type = NLA_BINARY },
Simon Wunderlich5336fa82013-10-07 18:41:05 +0200381 [NL80211_ATTR_HANDLE_DFS] = { .type = NLA_FLAG },
Marek Kwaczynski60f4a7b2013-12-03 10:04:59 +0100382 [NL80211_ATTR_OPMODE_NOTIF] = { .type = NLA_U8 },
Johannes Bergad7e7182013-11-13 13:37:47 +0100383 [NL80211_ATTR_VENDOR_ID] = { .type = NLA_U32 },
384 [NL80211_ATTR_VENDOR_SUBCMD] = { .type = NLA_U32 },
385 [NL80211_ATTR_VENDOR_DATA] = { .type = NLA_BINARY },
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -0800386 [NL80211_ATTR_QOS_MAP] = { .type = NLA_BINARY,
387 .len = IEEE80211_QOS_MAP_LEN_MAX },
Jouni Malinen1df4a512014-01-15 00:00:47 +0200388 [NL80211_ATTR_MAC_HINT] = { .len = ETH_ALEN },
389 [NL80211_ATTR_WIPHY_FREQ_HINT] = { .type = NLA_U32 },
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +0530390 [NL80211_ATTR_TDLS_PEER_CAPABILITY] = { .type = NLA_U32 },
Johannes Berg78f22b62014-03-24 17:57:27 +0100391 [NL80211_ATTR_IFACE_SOCKET_OWNER] = { .type = NLA_FLAG },
Andrei Otcheretianski34d22ce2014-05-09 14:11:44 +0300392 [NL80211_ATTR_CSA_C_OFFSETS_TX] = { .type = NLA_BINARY },
Assaf Kraussbab5ab72014-09-03 15:25:01 +0300393 [NL80211_ATTR_USE_RRM] = { .type = NLA_FLAG },
Johannes Berg960d01a2014-09-09 22:55:35 +0300394 [NL80211_ATTR_TSID] = { .type = NLA_U8 },
395 [NL80211_ATTR_USER_PRIO] = { .type = NLA_U8 },
396 [NL80211_ATTR_ADMITTED_TIME] = { .type = NLA_U16 },
Eliad Peller18998c32014-09-10 14:07:34 +0300397 [NL80211_ATTR_SMPS_MODE] = { .type = NLA_U8 },
Johannes Berg55682962007-09-20 13:09:35 -0400398};
399
Johannes Berge31b8212010-10-05 19:39:30 +0200400/* policy for the key attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000401static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
Johannes Bergfffd0932009-07-08 14:22:54 +0200402 [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
Johannes Bergb9454e82009-07-08 13:29:08 +0200403 [NL80211_KEY_IDX] = { .type = NLA_U8 },
404 [NL80211_KEY_CIPHER] = { .type = NLA_U32 },
Jouni Malinen81962262011-11-02 23:36:31 +0200405 [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Bergb9454e82009-07-08 13:29:08 +0200406 [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
407 [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
Johannes Berge31b8212010-10-05 19:39:30 +0200408 [NL80211_KEY_TYPE] = { .type = NLA_U32 },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100409 [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
410};
411
412/* policy for the key default flags */
413static const struct nla_policy
414nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = {
415 [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG },
416 [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG },
Johannes Bergb9454e82009-07-08 13:29:08 +0200417};
418
Johannes Bergff1b6e62011-05-04 15:37:28 +0200419/* policy for WoWLAN attributes */
420static const struct nla_policy
421nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
422 [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
423 [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
424 [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
425 [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED },
Johannes Berg77dbbb12011-07-13 10:48:55 +0200426 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
427 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
428 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
429 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
Johannes Berg2a0e0472013-01-23 22:57:40 +0100430 [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
431};
432
433static const struct nla_policy
434nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = {
435 [NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 },
436 [NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 },
437 [NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN },
438 [NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 },
439 [NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 },
440 [NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 },
441 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = {
442 .len = sizeof(struct nl80211_wowlan_tcp_data_seq)
443 },
444 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = {
445 .len = sizeof(struct nl80211_wowlan_tcp_data_token)
446 },
447 [NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 },
448 [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 },
449 [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200450};
451
Amitkumar Karwarbe29b992013-06-28 11:51:26 -0700452/* policy for coalesce rule attributes */
453static const struct nla_policy
454nl80211_coalesce_policy[NUM_NL80211_ATTR_COALESCE_RULE] = {
455 [NL80211_ATTR_COALESCE_RULE_DELAY] = { .type = NLA_U32 },
456 [NL80211_ATTR_COALESCE_RULE_CONDITION] = { .type = NLA_U32 },
457 [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN] = { .type = NLA_NESTED },
458};
459
Johannes Berge5497d72011-07-05 16:35:40 +0200460/* policy for GTK rekey offload attributes */
461static const struct nla_policy
462nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = {
463 [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN },
464 [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN },
465 [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN },
466};
467
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300468static const struct nla_policy
469nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
Johannes Berg4a4ab0d2012-06-13 11:17:11 +0200470 [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300471 .len = IEEE80211_MAX_SSID_LEN },
Thomas Pedersen88e920b2012-06-21 11:09:54 -0700472 [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300473};
474
Johannes Berg97990a02013-04-19 01:02:55 +0200475static int nl80211_prepare_wdev_dump(struct sk_buff *skb,
476 struct netlink_callback *cb,
477 struct cfg80211_registered_device **rdev,
478 struct wireless_dev **wdev)
Holger Schuriga0438972009-11-11 11:30:02 +0100479{
Johannes Berg67748892010-10-04 21:14:06 +0200480 int err;
481
Johannes Berg67748892010-10-04 21:14:06 +0200482 rtnl_lock();
483
Johannes Berg97990a02013-04-19 01:02:55 +0200484 if (!cb->args[0]) {
485 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
486 nl80211_fam.attrbuf, nl80211_fam.maxattr,
487 nl80211_policy);
488 if (err)
489 goto out_unlock;
490
491 *wdev = __cfg80211_wdev_from_attrs(sock_net(skb->sk),
492 nl80211_fam.attrbuf);
493 if (IS_ERR(*wdev)) {
494 err = PTR_ERR(*wdev);
495 goto out_unlock;
496 }
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800497 *rdev = wiphy_to_rdev((*wdev)->wiphy);
Johannes Bergc319d502013-07-30 22:34:28 +0200498 /* 0 is the first index - add 1 to parse only once */
499 cb->args[0] = (*rdev)->wiphy_idx + 1;
Johannes Berg97990a02013-04-19 01:02:55 +0200500 cb->args[1] = (*wdev)->identifier;
501 } else {
Johannes Bergc319d502013-07-30 22:34:28 +0200502 /* subtract the 1 again here */
503 struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1);
Johannes Berg97990a02013-04-19 01:02:55 +0200504 struct wireless_dev *tmp;
505
506 if (!wiphy) {
507 err = -ENODEV;
508 goto out_unlock;
509 }
Zhao, Gangf26cbf42014-04-21 12:53:03 +0800510 *rdev = wiphy_to_rdev(wiphy);
Johannes Berg97990a02013-04-19 01:02:55 +0200511 *wdev = NULL;
512
Johannes Berg97990a02013-04-19 01:02:55 +0200513 list_for_each_entry(tmp, &(*rdev)->wdev_list, list) {
514 if (tmp->identifier == cb->args[1]) {
515 *wdev = tmp;
516 break;
517 }
518 }
Johannes Berg97990a02013-04-19 01:02:55 +0200519
520 if (!*wdev) {
521 err = -ENODEV;
522 goto out_unlock;
523 }
Johannes Berg67748892010-10-04 21:14:06 +0200524 }
525
Johannes Berg67748892010-10-04 21:14:06 +0200526 return 0;
Johannes Berg97990a02013-04-19 01:02:55 +0200527 out_unlock:
Johannes Berg67748892010-10-04 21:14:06 +0200528 rtnl_unlock();
529 return err;
530}
531
Johannes Berg97990a02013-04-19 01:02:55 +0200532static void nl80211_finish_wdev_dump(struct cfg80211_registered_device *rdev)
Johannes Berg67748892010-10-04 21:14:06 +0200533{
Johannes Berg67748892010-10-04 21:14:06 +0200534 rtnl_unlock();
535}
536
Johannes Bergf4a11bb2009-03-27 12:40:28 +0100537/* IE validation */
538static bool is_valid_ie_attr(const struct nlattr *attr)
539{
540 const u8 *pos;
541 int len;
542
543 if (!attr)
544 return true;
545
546 pos = nla_data(attr);
547 len = nla_len(attr);
548
549 while (len) {
550 u8 elemlen;
551
552 if (len < 2)
553 return false;
554 len -= 2;
555
556 elemlen = pos[1];
557 if (elemlen > len)
558 return false;
559
560 len -= elemlen;
561 pos += 2 + elemlen;
562 }
563
564 return true;
565}
566
Johannes Berg55682962007-09-20 13:09:35 -0400567/* message building helper */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000568static inline void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
Johannes Berg55682962007-09-20 13:09:35 -0400569 int flags, u8 cmd)
570{
571 /* since there is no private header just add the generic one */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000572 return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -0400573}
574
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400575static int nl80211_msg_put_channel(struct sk_buff *msg,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100576 struct ieee80211_channel *chan,
577 bool large)
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400578{
Rostislav Lisovyea077c12014-04-15 14:37:55 +0200579 /* Some channels must be completely excluded from the
580 * list to protect old user-space tools from breaking
581 */
582 if (!large && chan->flags &
583 (IEEE80211_CHAN_NO_10MHZ | IEEE80211_CHAN_NO_20MHZ))
584 return 0;
585
David S. Miller9360ffd2012-03-29 04:41:26 -0400586 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
587 chan->center_freq))
588 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400589
David S. Miller9360ffd2012-03-29 04:41:26 -0400590 if ((chan->flags & IEEE80211_CHAN_DISABLED) &&
591 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED))
592 goto nla_put_failure;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200593 if (chan->flags & IEEE80211_CHAN_NO_IR) {
594 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IR))
595 goto nla_put_failure;
596 if (nla_put_flag(msg, __NL80211_FREQUENCY_ATTR_NO_IBSS))
597 goto nla_put_failure;
598 }
Johannes Bergcdc89b92013-02-18 23:54:36 +0100599 if (chan->flags & IEEE80211_CHAN_RADAR) {
600 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
601 goto nla_put_failure;
602 if (large) {
603 u32 time;
604
605 time = elapsed_jiffies_msecs(chan->dfs_state_entered);
606
607 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE,
608 chan->dfs_state))
609 goto nla_put_failure;
610 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME,
611 time))
612 goto nla_put_failure;
Janusz Dziedzic089027e2014-02-21 19:46:12 +0100613 if (nla_put_u32(msg,
614 NL80211_FREQUENCY_ATTR_DFS_CAC_TIME,
615 chan->dfs_cac_ms))
616 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100617 }
618 }
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400619
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100620 if (large) {
621 if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) &&
622 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS))
623 goto nla_put_failure;
624 if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) &&
625 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS))
626 goto nla_put_failure;
627 if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) &&
628 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ))
629 goto nla_put_failure;
630 if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) &&
631 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ))
632 goto nla_put_failure;
David Spinadel570dbde2014-02-23 09:12:59 +0200633 if ((chan->flags & IEEE80211_CHAN_INDOOR_ONLY) &&
634 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_INDOOR_ONLY))
635 goto nla_put_failure;
636 if ((chan->flags & IEEE80211_CHAN_GO_CONCURRENT) &&
637 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_GO_CONCURRENT))
638 goto nla_put_failure;
Rostislav Lisovyea077c12014-04-15 14:37:55 +0200639 if ((chan->flags & IEEE80211_CHAN_NO_20MHZ) &&
640 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_20MHZ))
641 goto nla_put_failure;
642 if ((chan->flags & IEEE80211_CHAN_NO_10MHZ) &&
643 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_10MHZ))
644 goto nla_put_failure;
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100645 }
646
David S. Miller9360ffd2012-03-29 04:41:26 -0400647 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
648 DBM_TO_MBM(chan->max_power)))
649 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400650
651 return 0;
652
653 nla_put_failure:
654 return -ENOBUFS;
655}
656
Johannes Berg55682962007-09-20 13:09:35 -0400657/* netlink command implementations */
658
Johannes Bergb9454e82009-07-08 13:29:08 +0200659struct key_parse {
660 struct key_params p;
661 int idx;
Johannes Berge31b8212010-10-05 19:39:30 +0200662 int type;
Johannes Bergb9454e82009-07-08 13:29:08 +0200663 bool def, defmgmt;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100664 bool def_uni, def_multi;
Johannes Bergb9454e82009-07-08 13:29:08 +0200665};
666
667static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k)
668{
669 struct nlattr *tb[NL80211_KEY_MAX + 1];
670 int err = nla_parse_nested(tb, NL80211_KEY_MAX, key,
671 nl80211_key_policy);
672 if (err)
673 return err;
674
675 k->def = !!tb[NL80211_KEY_DEFAULT];
676 k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT];
677
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100678 if (k->def) {
679 k->def_uni = true;
680 k->def_multi = true;
681 }
682 if (k->defmgmt)
683 k->def_multi = true;
684
Johannes Bergb9454e82009-07-08 13:29:08 +0200685 if (tb[NL80211_KEY_IDX])
686 k->idx = nla_get_u8(tb[NL80211_KEY_IDX]);
687
688 if (tb[NL80211_KEY_DATA]) {
689 k->p.key = nla_data(tb[NL80211_KEY_DATA]);
690 k->p.key_len = nla_len(tb[NL80211_KEY_DATA]);
691 }
692
693 if (tb[NL80211_KEY_SEQ]) {
694 k->p.seq = nla_data(tb[NL80211_KEY_SEQ]);
695 k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]);
696 }
697
698 if (tb[NL80211_KEY_CIPHER])
699 k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]);
700
Johannes Berge31b8212010-10-05 19:39:30 +0200701 if (tb[NL80211_KEY_TYPE]) {
702 k->type = nla_get_u32(tb[NL80211_KEY_TYPE]);
703 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
704 return -EINVAL;
705 }
706
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100707 if (tb[NL80211_KEY_DEFAULT_TYPES]) {
708 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
Johannes Berg2da8f412012-01-20 13:52:37 +0100709 err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
710 tb[NL80211_KEY_DEFAULT_TYPES],
711 nl80211_key_default_policy);
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100712 if (err)
713 return err;
714
715 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
716 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
717 }
718
Johannes Bergb9454e82009-07-08 13:29:08 +0200719 return 0;
720}
721
722static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k)
723{
724 if (info->attrs[NL80211_ATTR_KEY_DATA]) {
725 k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
726 k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
727 }
728
729 if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
730 k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
731 k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
732 }
733
734 if (info->attrs[NL80211_ATTR_KEY_IDX])
735 k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
736
737 if (info->attrs[NL80211_ATTR_KEY_CIPHER])
738 k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);
739
740 k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT];
741 k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT];
742
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100743 if (k->def) {
744 k->def_uni = true;
745 k->def_multi = true;
746 }
747 if (k->defmgmt)
748 k->def_multi = true;
749
Johannes Berge31b8212010-10-05 19:39:30 +0200750 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
751 k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
752 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
753 return -EINVAL;
754 }
755
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100756 if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) {
757 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
758 int err = nla_parse_nested(
759 kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
760 info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES],
761 nl80211_key_default_policy);
762 if (err)
763 return err;
764
765 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
766 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
767 }
768
Johannes Bergb9454e82009-07-08 13:29:08 +0200769 return 0;
770}
771
772static int nl80211_parse_key(struct genl_info *info, struct key_parse *k)
773{
774 int err;
775
776 memset(k, 0, sizeof(*k));
777 k->idx = -1;
Johannes Berge31b8212010-10-05 19:39:30 +0200778 k->type = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +0200779
780 if (info->attrs[NL80211_ATTR_KEY])
781 err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k);
782 else
783 err = nl80211_parse_key_old(info, k);
784
785 if (err)
786 return err;
787
788 if (k->def && k->defmgmt)
789 return -EINVAL;
790
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100791 if (k->defmgmt) {
792 if (k->def_uni || !k->def_multi)
793 return -EINVAL;
794 }
795
Johannes Bergb9454e82009-07-08 13:29:08 +0200796 if (k->idx != -1) {
797 if (k->defmgmt) {
798 if (k->idx < 4 || k->idx > 5)
799 return -EINVAL;
800 } else if (k->def) {
801 if (k->idx < 0 || k->idx > 3)
802 return -EINVAL;
803 } else {
804 if (k->idx < 0 || k->idx > 5)
805 return -EINVAL;
806 }
807 }
808
809 return 0;
810}
811
Johannes Bergfffd0932009-07-08 14:22:54 +0200812static struct cfg80211_cached_keys *
813nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +0530814 struct nlattr *keys, bool *no_ht)
Johannes Bergfffd0932009-07-08 14:22:54 +0200815{
816 struct key_parse parse;
817 struct nlattr *key;
818 struct cfg80211_cached_keys *result;
819 int rem, err, def = 0;
820
821 result = kzalloc(sizeof(*result), GFP_KERNEL);
822 if (!result)
823 return ERR_PTR(-ENOMEM);
824
825 result->def = -1;
826 result->defmgmt = -1;
827
828 nla_for_each_nested(key, keys, rem) {
829 memset(&parse, 0, sizeof(parse));
830 parse.idx = -1;
831
832 err = nl80211_parse_key_new(key, &parse);
833 if (err)
834 goto error;
835 err = -EINVAL;
836 if (!parse.p.key)
837 goto error;
838 if (parse.idx < 0 || parse.idx > 4)
839 goto error;
840 if (parse.def) {
841 if (def)
842 goto error;
843 def = 1;
844 result->def = parse.idx;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100845 if (!parse.def_uni || !parse.def_multi)
846 goto error;
Johannes Bergfffd0932009-07-08 14:22:54 +0200847 } else if (parse.defmgmt)
848 goto error;
849 err = cfg80211_validate_key_settings(rdev, &parse.p,
Johannes Berge31b8212010-10-05 19:39:30 +0200850 parse.idx, false, NULL);
Johannes Bergfffd0932009-07-08 14:22:54 +0200851 if (err)
852 goto error;
853 result->params[parse.idx].cipher = parse.p.cipher;
854 result->params[parse.idx].key_len = parse.p.key_len;
855 result->params[parse.idx].key = result->data[parse.idx];
856 memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len);
Sujith Manoharande7044e2012-10-18 10:19:28 +0530857
858 if (parse.p.cipher == WLAN_CIPHER_SUITE_WEP40 ||
859 parse.p.cipher == WLAN_CIPHER_SUITE_WEP104) {
860 if (no_ht)
861 *no_ht = true;
862 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200863 }
864
865 return result;
866 error:
867 kfree(result);
868 return ERR_PTR(err);
869}
870
871static int nl80211_key_allowed(struct wireless_dev *wdev)
872{
873 ASSERT_WDEV_LOCK(wdev);
874
Johannes Bergfffd0932009-07-08 14:22:54 +0200875 switch (wdev->iftype) {
876 case NL80211_IFTYPE_AP:
877 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200878 case NL80211_IFTYPE_P2P_GO:
Thomas Pedersenff973af2011-05-03 16:57:12 -0700879 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergfffd0932009-07-08 14:22:54 +0200880 break;
881 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200882 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200883 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergceca7b72013-05-16 00:55:45 +0200884 if (!wdev->current_bss)
Johannes Bergfffd0932009-07-08 14:22:54 +0200885 return -ENOLINK;
886 break;
887 default:
888 return -EINVAL;
889 }
890
891 return 0;
892}
893
Jouni Malinen664834d2014-01-15 00:01:44 +0200894static struct ieee80211_channel *nl80211_get_valid_chan(struct wiphy *wiphy,
895 struct nlattr *tb)
896{
897 struct ieee80211_channel *chan;
898
899 if (tb == NULL)
900 return NULL;
901 chan = ieee80211_get_channel(wiphy, nla_get_u32(tb));
902 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED)
903 return NULL;
904 return chan;
905}
906
Johannes Berg7527a782011-05-13 10:58:57 +0200907static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes)
908{
909 struct nlattr *nl_modes = nla_nest_start(msg, attr);
910 int i;
911
912 if (!nl_modes)
913 goto nla_put_failure;
914
915 i = 0;
916 while (ifmodes) {
David S. Miller9360ffd2012-03-29 04:41:26 -0400917 if ((ifmodes & 1) && nla_put_flag(msg, i))
918 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200919 ifmodes >>= 1;
920 i++;
921 }
922
923 nla_nest_end(msg, nl_modes);
924 return 0;
925
926nla_put_failure:
927 return -ENOBUFS;
928}
929
930static int nl80211_put_iface_combinations(struct wiphy *wiphy,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100931 struct sk_buff *msg,
932 bool large)
Johannes Berg7527a782011-05-13 10:58:57 +0200933{
934 struct nlattr *nl_combis;
935 int i, j;
936
937 nl_combis = nla_nest_start(msg,
938 NL80211_ATTR_INTERFACE_COMBINATIONS);
939 if (!nl_combis)
940 goto nla_put_failure;
941
942 for (i = 0; i < wiphy->n_iface_combinations; i++) {
943 const struct ieee80211_iface_combination *c;
944 struct nlattr *nl_combi, *nl_limits;
945
946 c = &wiphy->iface_combinations[i];
947
948 nl_combi = nla_nest_start(msg, i + 1);
949 if (!nl_combi)
950 goto nla_put_failure;
951
952 nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS);
953 if (!nl_limits)
954 goto nla_put_failure;
955
956 for (j = 0; j < c->n_limits; j++) {
957 struct nlattr *nl_limit;
958
959 nl_limit = nla_nest_start(msg, j + 1);
960 if (!nl_limit)
961 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -0400962 if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
963 c->limits[j].max))
964 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200965 if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES,
966 c->limits[j].types))
967 goto nla_put_failure;
968 nla_nest_end(msg, nl_limit);
969 }
970
971 nla_nest_end(msg, nl_limits);
972
David S. Miller9360ffd2012-03-29 04:41:26 -0400973 if (c->beacon_int_infra_match &&
974 nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH))
975 goto nla_put_failure;
976 if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS,
977 c->num_different_channels) ||
978 nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM,
979 c->max_interfaces))
980 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100981 if (large &&
Felix Fietkau8c48b502014-05-05 11:48:40 +0200982 (nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
983 c->radar_detect_widths) ||
984 nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_REGIONS,
985 c->radar_detect_regions)))
Johannes Bergcdc89b92013-02-18 23:54:36 +0100986 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200987
988 nla_nest_end(msg, nl_combi);
989 }
990
991 nla_nest_end(msg, nl_combis);
992
993 return 0;
994nla_put_failure:
995 return -ENOBUFS;
996}
997
Johannes Berg3713b4e2013-02-14 16:19:38 +0100998#ifdef CONFIG_PM
Johannes Bergb56cf722013-02-20 01:02:38 +0100999static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev,
1000 struct sk_buff *msg)
1001{
Johannes Berg964dc9e2013-06-03 17:25:34 +02001002 const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan->tcp;
Johannes Bergb56cf722013-02-20 01:02:38 +01001003 struct nlattr *nl_tcp;
1004
1005 if (!tcp)
1006 return 0;
1007
1008 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
1009 if (!nl_tcp)
1010 return -ENOBUFS;
1011
1012 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
1013 tcp->data_payload_max))
1014 return -ENOBUFS;
1015
1016 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
1017 tcp->data_payload_max))
1018 return -ENOBUFS;
1019
1020 if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ))
1021 return -ENOBUFS;
1022
1023 if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
1024 sizeof(*tcp->tok), tcp->tok))
1025 return -ENOBUFS;
1026
1027 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
1028 tcp->data_interval_max))
1029 return -ENOBUFS;
1030
1031 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
1032 tcp->wake_payload_max))
1033 return -ENOBUFS;
1034
1035 nla_nest_end(msg, nl_tcp);
1036 return 0;
1037}
1038
Johannes Berg3713b4e2013-02-14 16:19:38 +01001039static int nl80211_send_wowlan(struct sk_buff *msg,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001040 struct cfg80211_registered_device *rdev,
Johannes Bergb56cf722013-02-20 01:02:38 +01001041 bool large)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001042{
1043 struct nlattr *nl_wowlan;
1044
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001045 if (!rdev->wiphy.wowlan)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001046 return 0;
1047
1048 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED);
1049 if (!nl_wowlan)
1050 return -ENOBUFS;
1051
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001052 if (((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_ANY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001053 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001054 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_DISCONNECT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001055 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001056 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001057 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001058 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001059 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001060 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001061 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001062 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001063 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001064 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001065 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001066 ((rdev->wiphy.wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001067 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
1068 return -ENOBUFS;
1069
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001070 if (rdev->wiphy.wowlan->n_patterns) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07001071 struct nl80211_pattern_support pat = {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001072 .max_patterns = rdev->wiphy.wowlan->n_patterns,
1073 .min_pattern_len = rdev->wiphy.wowlan->pattern_min_len,
1074 .max_pattern_len = rdev->wiphy.wowlan->pattern_max_len,
1075 .max_pkt_offset = rdev->wiphy.wowlan->max_pkt_offset,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001076 };
1077
1078 if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
1079 sizeof(pat), &pat))
1080 return -ENOBUFS;
1081 }
1082
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001083 if (large && nl80211_send_wowlan_tcp_caps(rdev, msg))
Johannes Bergb56cf722013-02-20 01:02:38 +01001084 return -ENOBUFS;
1085
Johannes Berg3713b4e2013-02-14 16:19:38 +01001086 nla_nest_end(msg, nl_wowlan);
1087
1088 return 0;
1089}
1090#endif
1091
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001092static int nl80211_send_coalesce(struct sk_buff *msg,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001093 struct cfg80211_registered_device *rdev)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001094{
1095 struct nl80211_coalesce_rule_support rule;
1096
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001097 if (!rdev->wiphy.coalesce)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001098 return 0;
1099
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001100 rule.max_rules = rdev->wiphy.coalesce->n_rules;
1101 rule.max_delay = rdev->wiphy.coalesce->max_delay;
1102 rule.pat.max_patterns = rdev->wiphy.coalesce->n_patterns;
1103 rule.pat.min_pattern_len = rdev->wiphy.coalesce->pattern_min_len;
1104 rule.pat.max_pattern_len = rdev->wiphy.coalesce->pattern_max_len;
1105 rule.pat.max_pkt_offset = rdev->wiphy.coalesce->max_pkt_offset;
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001106
1107 if (nla_put(msg, NL80211_ATTR_COALESCE_RULE, sizeof(rule), &rule))
1108 return -ENOBUFS;
1109
1110 return 0;
1111}
1112
Johannes Berg3713b4e2013-02-14 16:19:38 +01001113static int nl80211_send_band_rateinfo(struct sk_buff *msg,
1114 struct ieee80211_supported_band *sband)
1115{
1116 struct nlattr *nl_rates, *nl_rate;
1117 struct ieee80211_rate *rate;
1118 int i;
1119
1120 /* add HT info */
1121 if (sband->ht_cap.ht_supported &&
1122 (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET,
1123 sizeof(sband->ht_cap.mcs),
1124 &sband->ht_cap.mcs) ||
1125 nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA,
1126 sband->ht_cap.cap) ||
1127 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
1128 sband->ht_cap.ampdu_factor) ||
1129 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
1130 sband->ht_cap.ampdu_density)))
1131 return -ENOBUFS;
1132
1133 /* add VHT info */
1134 if (sband->vht_cap.vht_supported &&
1135 (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET,
1136 sizeof(sband->vht_cap.vht_mcs),
1137 &sband->vht_cap.vht_mcs) ||
1138 nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA,
1139 sband->vht_cap.cap)))
1140 return -ENOBUFS;
1141
1142 /* add bitrates */
1143 nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
1144 if (!nl_rates)
1145 return -ENOBUFS;
1146
1147 for (i = 0; i < sband->n_bitrates; i++) {
1148 nl_rate = nla_nest_start(msg, i);
1149 if (!nl_rate)
1150 return -ENOBUFS;
1151
1152 rate = &sband->bitrates[i];
1153 if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE,
1154 rate->bitrate))
1155 return -ENOBUFS;
1156 if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
1157 nla_put_flag(msg,
1158 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE))
1159 return -ENOBUFS;
1160
1161 nla_nest_end(msg, nl_rate);
1162 }
1163
1164 nla_nest_end(msg, nl_rates);
1165
1166 return 0;
1167}
1168
1169static int
1170nl80211_send_mgmt_stypes(struct sk_buff *msg,
1171 const struct ieee80211_txrx_stypes *mgmt_stypes)
1172{
1173 u16 stypes;
1174 struct nlattr *nl_ftypes, *nl_ifs;
1175 enum nl80211_iftype ift;
1176 int i;
1177
1178 if (!mgmt_stypes)
1179 return 0;
1180
1181 nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES);
1182 if (!nl_ifs)
1183 return -ENOBUFS;
1184
1185 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1186 nl_ftypes = nla_nest_start(msg, ift);
1187 if (!nl_ftypes)
1188 return -ENOBUFS;
1189 i = 0;
1190 stypes = mgmt_stypes[ift].tx;
1191 while (stypes) {
1192 if ((stypes & 1) &&
1193 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1194 (i << 4) | IEEE80211_FTYPE_MGMT))
1195 return -ENOBUFS;
1196 stypes >>= 1;
1197 i++;
1198 }
1199 nla_nest_end(msg, nl_ftypes);
1200 }
1201
1202 nla_nest_end(msg, nl_ifs);
1203
1204 nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES);
1205 if (!nl_ifs)
1206 return -ENOBUFS;
1207
1208 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1209 nl_ftypes = nla_nest_start(msg, ift);
1210 if (!nl_ftypes)
1211 return -ENOBUFS;
1212 i = 0;
1213 stypes = mgmt_stypes[ift].rx;
1214 while (stypes) {
1215 if ((stypes & 1) &&
1216 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1217 (i << 4) | IEEE80211_FTYPE_MGMT))
1218 return -ENOBUFS;
1219 stypes >>= 1;
1220 i++;
1221 }
1222 nla_nest_end(msg, nl_ftypes);
1223 }
1224 nla_nest_end(msg, nl_ifs);
1225
1226 return 0;
1227}
1228
Johannes Berg86e8cf92013-06-19 10:57:22 +02001229struct nl80211_dump_wiphy_state {
1230 s64 filter_wiphy;
1231 long start;
1232 long split_start, band_start, chan_start;
1233 bool split;
1234};
1235
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001236static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev,
Johannes Berg3bb20552014-05-26 13:52:25 +02001237 enum nl80211_commands cmd,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001238 struct sk_buff *msg, u32 portid, u32 seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001239 int flags, struct nl80211_dump_wiphy_state *state)
Johannes Berg55682962007-09-20 13:09:35 -04001240{
1241 void *hdr;
Johannes Bergee688b002008-01-24 19:38:39 +01001242 struct nlattr *nl_bands, *nl_band;
1243 struct nlattr *nl_freqs, *nl_freq;
Johannes Berg8fdc6212009-03-14 09:34:01 +01001244 struct nlattr *nl_cmds;
Johannes Bergee688b002008-01-24 19:38:39 +01001245 enum ieee80211_band band;
1246 struct ieee80211_channel *chan;
Johannes Bergee688b002008-01-24 19:38:39 +01001247 int i;
Johannes Berg2e161f72010-08-12 15:38:38 +02001248 const struct ieee80211_txrx_stypes *mgmt_stypes =
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001249 rdev->wiphy.mgmt_stypes;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001250 u32 features;
Johannes Berg55682962007-09-20 13:09:35 -04001251
Johannes Berg3bb20552014-05-26 13:52:25 +02001252 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -04001253 if (!hdr)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001254 return -ENOBUFS;
1255
Johannes Berg86e8cf92013-06-19 10:57:22 +02001256 if (WARN_ON(!state))
1257 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -04001258
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001259 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001260 nla_put_string(msg, NL80211_ATTR_WIPHY_NAME,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001261 wiphy_name(&rdev->wiphy)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04001262 nla_put_u32(msg, NL80211_ATTR_GENERATION,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001263 cfg80211_rdev_list_generation))
David S. Miller9360ffd2012-03-29 04:41:26 -04001264 goto nla_put_failure;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001265
Johannes Berg3bb20552014-05-26 13:52:25 +02001266 if (cmd != NL80211_CMD_NEW_WIPHY)
1267 goto finish;
1268
Johannes Berg86e8cf92013-06-19 10:57:22 +02001269 switch (state->split_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001270 case 0:
1271 if (nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001272 rdev->wiphy.retry_short) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001273 nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001274 rdev->wiphy.retry_long) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001275 nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001276 rdev->wiphy.frag_threshold) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001277 nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001278 rdev->wiphy.rts_threshold) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001279 nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001280 rdev->wiphy.coverage_class) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001281 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001282 rdev->wiphy.max_scan_ssids) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001283 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001284 rdev->wiphy.max_sched_scan_ssids) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001285 nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001286 rdev->wiphy.max_scan_ie_len) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001287 nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001288 rdev->wiphy.max_sched_scan_ie_len) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001289 nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001290 rdev->wiphy.max_match_sets))
Johannes Bergee688b002008-01-24 19:38:39 +01001291 goto nla_put_failure;
1292
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001293 if ((rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001294 nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN))
1295 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001296 if ((rdev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001297 nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH))
1298 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001299 if ((rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001300 nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD))
1301 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001302 if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001303 nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT))
1304 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001305 if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001306 nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT))
1307 goto nla_put_failure;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001308 if ((rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001309 nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP))
David S. Miller9360ffd2012-03-29 04:41:26 -04001310 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001311 state->split_start++;
1312 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001313 break;
1314 case 1:
1315 if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001316 sizeof(u32) * rdev->wiphy.n_cipher_suites,
1317 rdev->wiphy.cipher_suites))
Mahesh Palivelabf0c111e2012-06-22 07:27:46 +00001318 goto nla_put_failure;
1319
Johannes Berg3713b4e2013-02-14 16:19:38 +01001320 if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001321 rdev->wiphy.max_num_pmkids))
Johannes Bergee688b002008-01-24 19:38:39 +01001322 goto nla_put_failure;
1323
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001324 if ((rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001325 nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE))
1326 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001327
Johannes Berg3713b4e2013-02-14 16:19:38 +01001328 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001329 rdev->wiphy.available_antennas_tx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001330 nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001331 rdev->wiphy.available_antennas_rx))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001332 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001333
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001334 if ((rdev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001335 nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001336 rdev->wiphy.probe_resp_offload))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001337 goto nla_put_failure;
Jouni Malinene2f367f262008-11-21 19:01:30 +02001338
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001339 if ((rdev->wiphy.available_antennas_tx ||
1340 rdev->wiphy.available_antennas_rx) &&
1341 rdev->ops->get_antenna) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001342 u32 tx_ant = 0, rx_ant = 0;
1343 int res;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001344 res = rdev_get_antenna(rdev, &tx_ant, &rx_ant);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001345 if (!res) {
1346 if (nla_put_u32(msg,
1347 NL80211_ATTR_WIPHY_ANTENNA_TX,
1348 tx_ant) ||
1349 nla_put_u32(msg,
1350 NL80211_ATTR_WIPHY_ANTENNA_RX,
1351 rx_ant))
1352 goto nla_put_failure;
1353 }
Johannes Bergee688b002008-01-24 19:38:39 +01001354 }
1355
Johannes Berg86e8cf92013-06-19 10:57:22 +02001356 state->split_start++;
1357 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001358 break;
1359 case 2:
1360 if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001361 rdev->wiphy.interface_modes))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001362 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001363 state->split_start++;
1364 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001365 break;
1366 case 3:
1367 nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
1368 if (!nl_bands)
Johannes Bergee688b002008-01-24 19:38:39 +01001369 goto nla_put_failure;
1370
Johannes Berg86e8cf92013-06-19 10:57:22 +02001371 for (band = state->band_start;
1372 band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001373 struct ieee80211_supported_band *sband;
1374
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001375 sband = rdev->wiphy.bands[band];
Johannes Berg3713b4e2013-02-14 16:19:38 +01001376
1377 if (!sband)
1378 continue;
1379
1380 nl_band = nla_nest_start(msg, band);
1381 if (!nl_band)
Johannes Bergee688b002008-01-24 19:38:39 +01001382 goto nla_put_failure;
1383
Johannes Berg86e8cf92013-06-19 10:57:22 +02001384 switch (state->chan_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001385 case 0:
1386 if (nl80211_send_band_rateinfo(msg, sband))
1387 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001388 state->chan_start++;
1389 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001390 break;
1391 default:
1392 /* add frequencies */
1393 nl_freqs = nla_nest_start(
1394 msg, NL80211_BAND_ATTR_FREQS);
1395 if (!nl_freqs)
1396 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001397
Johannes Berg86e8cf92013-06-19 10:57:22 +02001398 for (i = state->chan_start - 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001399 i < sband->n_channels;
1400 i++) {
1401 nl_freq = nla_nest_start(msg, i);
1402 if (!nl_freq)
1403 goto nla_put_failure;
1404
1405 chan = &sband->channels[i];
1406
Johannes Berg86e8cf92013-06-19 10:57:22 +02001407 if (nl80211_msg_put_channel(
1408 msg, chan,
1409 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001410 goto nla_put_failure;
1411
1412 nla_nest_end(msg, nl_freq);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001413 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001414 break;
1415 }
1416 if (i < sband->n_channels)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001417 state->chan_start = i + 2;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001418 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001419 state->chan_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001420 nla_nest_end(msg, nl_freqs);
1421 }
1422
1423 nla_nest_end(msg, nl_band);
1424
Johannes Berg86e8cf92013-06-19 10:57:22 +02001425 if (state->split) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001426 /* start again here */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001427 if (state->chan_start)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001428 band--;
1429 break;
1430 }
Johannes Bergee688b002008-01-24 19:38:39 +01001431 }
Johannes Berg3713b4e2013-02-14 16:19:38 +01001432 nla_nest_end(msg, nl_bands);
Johannes Bergee688b002008-01-24 19:38:39 +01001433
Johannes Berg3713b4e2013-02-14 16:19:38 +01001434 if (band < IEEE80211_NUM_BANDS)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001435 state->band_start = band + 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001436 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001437 state->band_start = 0;
Johannes Bergee688b002008-01-24 19:38:39 +01001438
Johannes Berg3713b4e2013-02-14 16:19:38 +01001439 /* if bands & channels are done, continue outside */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001440 if (state->band_start == 0 && state->chan_start == 0)
1441 state->split_start++;
1442 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001443 break;
1444 case 4:
1445 nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
1446 if (!nl_cmds)
David S. Miller9360ffd2012-03-29 04:41:26 -04001447 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001448
1449 i = 0;
1450#define CMD(op, n) \
1451 do { \
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001452 if (rdev->ops->op) { \
Johannes Berg3713b4e2013-02-14 16:19:38 +01001453 i++; \
1454 if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
1455 goto nla_put_failure; \
1456 } \
1457 } while (0)
1458
1459 CMD(add_virtual_intf, NEW_INTERFACE);
1460 CMD(change_virtual_intf, SET_INTERFACE);
1461 CMD(add_key, NEW_KEY);
1462 CMD(start_ap, START_AP);
1463 CMD(add_station, NEW_STATION);
1464 CMD(add_mpath, NEW_MPATH);
1465 CMD(update_mesh_config, SET_MESH_CONFIG);
1466 CMD(change_bss, SET_BSS);
1467 CMD(auth, AUTHENTICATE);
1468 CMD(assoc, ASSOCIATE);
1469 CMD(deauth, DEAUTHENTICATE);
1470 CMD(disassoc, DISASSOCIATE);
1471 CMD(join_ibss, JOIN_IBSS);
1472 CMD(join_mesh, JOIN_MESH);
1473 CMD(set_pmksa, SET_PMKSA);
1474 CMD(del_pmksa, DEL_PMKSA);
1475 CMD(flush_pmksa, FLUSH_PMKSA);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001476 if (rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001477 CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1478 CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1479 CMD(mgmt_tx, FRAME);
1480 CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001481 if (rdev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001482 i++;
1483 if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
1484 goto nla_put_failure;
1485 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001486 if (rdev->ops->set_monitor_channel || rdev->ops->start_ap ||
1487 rdev->ops->join_mesh) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001488 i++;
1489 if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
1490 goto nla_put_failure;
1491 }
1492 CMD(set_wds_peer, SET_WDS_PEER);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001493 if (rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001494 CMD(tdls_mgmt, TDLS_MGMT);
1495 CMD(tdls_oper, TDLS_OPER);
1496 }
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001497 if (rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001498 CMD(sched_scan_start, START_SCHED_SCAN);
1499 CMD(probe_client, PROBE_CLIENT);
1500 CMD(set_noack_map, SET_NOACK_MAP);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001501 if (rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001502 i++;
1503 if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
1504 goto nla_put_failure;
1505 }
1506 CMD(start_p2p_device, START_P2P_DEVICE);
1507 CMD(set_mcast_rate, SET_MCAST_RATE);
Johannes Berg02df00e2014-06-10 14:06:25 +02001508#ifdef CONFIG_NL80211_TESTMODE
1509 CMD(testmode_cmd, TESTMODE);
1510#endif
Johannes Berg86e8cf92013-06-19 10:57:22 +02001511 if (state->split) {
Arend van Spriel5de17982013-04-18 15:49:00 +02001512 CMD(crit_proto_start, CRIT_PROTOCOL_START);
1513 CMD(crit_proto_stop, CRIT_PROTOCOL_STOP);
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001514 if (rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH)
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02001515 CMD(channel_switch, CHANNEL_SWITCH);
Johannes Berg02df00e2014-06-10 14:06:25 +02001516 CMD(set_qos_map, SET_QOS_MAP);
Johannes Berg960d01a2014-09-09 22:55:35 +03001517 if (rdev->wiphy.flags &
1518 WIPHY_FLAG_SUPPORTS_WMM_ADMISSION)
1519 CMD(add_tx_ts, ADD_TX_TS);
Arend van Spriel5de17982013-04-18 15:49:00 +02001520 }
Johannes Berg02df00e2014-06-10 14:06:25 +02001521 /* add into the if now */
Johannes Berg8fdc6212009-03-14 09:34:01 +01001522#undef CMD
Samuel Ortizb23aa672009-07-01 21:26:54 +02001523
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001524 if (rdev->ops->connect || rdev->ops->auth) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001525 i++;
1526 if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
Johannes Berg2e161f72010-08-12 15:38:38 +02001527 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001528 }
1529
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001530 if (rdev->ops->disconnect || rdev->ops->deauth) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001531 i++;
1532 if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
1533 goto nla_put_failure;
1534 }
Johannes Berg74b70a42010-08-24 12:15:53 +02001535
Johannes Berg3713b4e2013-02-14 16:19:38 +01001536 nla_nest_end(msg, nl_cmds);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001537 state->split_start++;
1538 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001539 break;
1540 case 5:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001541 if (rdev->ops->remain_on_channel &&
1542 (rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001543 nla_put_u32(msg,
1544 NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001545 rdev->wiphy.max_remain_on_channel_duration))
Johannes Berg2e161f72010-08-12 15:38:38 +02001546 goto nla_put_failure;
1547
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001548 if ((rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001549 nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
1550 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001551
Johannes Berg3713b4e2013-02-14 16:19:38 +01001552 if (nl80211_send_mgmt_stypes(msg, mgmt_stypes))
1553 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001554 state->split_start++;
1555 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001556 break;
1557 case 6:
Johannes Bergdfb89c52012-06-27 09:23:48 +02001558#ifdef CONFIG_PM
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001559 if (nl80211_send_wowlan(msg, rdev, state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001560 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001561 state->split_start++;
1562 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001563 break;
1564#else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001565 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001566#endif
1567 case 7:
1568 if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001569 rdev->wiphy.software_iftypes))
Johannes Bergff1b6e62011-05-04 15:37:28 +02001570 goto nla_put_failure;
1571
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001572 if (nl80211_put_iface_combinations(&rdev->wiphy, msg,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001573 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001574 goto nla_put_failure;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001575
Johannes Berg86e8cf92013-06-19 10:57:22 +02001576 state->split_start++;
1577 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001578 break;
1579 case 8:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001580 if ((rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001581 nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001582 rdev->wiphy.ap_sme_capa))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001583 goto nla_put_failure;
1584
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001585 features = rdev->wiphy.features;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001586 /*
1587 * We can only add the per-channel limit information if the
1588 * dump is split, otherwise it makes it too big. Therefore
1589 * only advertise it in that case.
1590 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001591 if (state->split)
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001592 features |= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS;
1593 if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, features))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001594 goto nla_put_failure;
1595
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001596 if (rdev->wiphy.ht_capa_mod_mask &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001597 nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001598 sizeof(*rdev->wiphy.ht_capa_mod_mask),
1599 rdev->wiphy.ht_capa_mod_mask))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001600 goto nla_put_failure;
1601
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001602 if (rdev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME &&
1603 rdev->wiphy.max_acl_mac_addrs &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001604 nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001605 rdev->wiphy.max_acl_mac_addrs))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001606 goto nla_put_failure;
1607
1608 /*
1609 * Any information below this point is only available to
1610 * applications that can deal with it being split. This
1611 * helps ensure that newly added capabilities don't break
1612 * older tools by overrunning their buffers.
1613 *
1614 * We still increment split_start so that in the split
1615 * case we'll continue with more data in the next round,
1616 * but break unconditionally so unsplit data stops here.
1617 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001618 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001619 break;
1620 case 9:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001621 if (rdev->wiphy.extended_capabilities &&
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001622 (nla_put(msg, NL80211_ATTR_EXT_CAPA,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001623 rdev->wiphy.extended_capabilities_len,
1624 rdev->wiphy.extended_capabilities) ||
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001625 nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001626 rdev->wiphy.extended_capabilities_len,
1627 rdev->wiphy.extended_capabilities_mask)))
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001628 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001629
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001630 if (rdev->wiphy.vht_capa_mod_mask &&
Johannes Bergee2aca32013-02-21 17:36:01 +01001631 nla_put(msg, NL80211_ATTR_VHT_CAPABILITY_MASK,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001632 sizeof(*rdev->wiphy.vht_capa_mod_mask),
1633 rdev->wiphy.vht_capa_mod_mask))
Johannes Bergee2aca32013-02-21 17:36:01 +01001634 goto nla_put_failure;
1635
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001636 state->split_start++;
1637 break;
1638 case 10:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001639 if (nl80211_send_coalesce(msg, rdev))
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001640 goto nla_put_failure;
1641
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001642 if ((rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ) &&
Felix Fietkau01e0daa2013-11-09 14:57:54 +01001643 (nla_put_flag(msg, NL80211_ATTR_SUPPORT_5_MHZ) ||
1644 nla_put_flag(msg, NL80211_ATTR_SUPPORT_10_MHZ)))
1645 goto nla_put_failure;
Jouni Malinenb43504c2014-01-15 00:01:08 +02001646
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001647 if (rdev->wiphy.max_ap_assoc_sta &&
Jouni Malinenb43504c2014-01-15 00:01:08 +02001648 nla_put_u32(msg, NL80211_ATTR_MAX_AP_ASSOC_STA,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001649 rdev->wiphy.max_ap_assoc_sta))
Jouni Malinenb43504c2014-01-15 00:01:08 +02001650 goto nla_put_failure;
1651
Johannes Bergad7e7182013-11-13 13:37:47 +01001652 state->split_start++;
1653 break;
1654 case 11:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001655 if (rdev->wiphy.n_vendor_commands) {
Johannes Berg567ffc32013-12-18 14:43:31 +01001656 const struct nl80211_vendor_cmd_info *info;
1657 struct nlattr *nested;
Johannes Bergad7e7182013-11-13 13:37:47 +01001658
Johannes Berg567ffc32013-12-18 14:43:31 +01001659 nested = nla_nest_start(msg, NL80211_ATTR_VENDOR_DATA);
1660 if (!nested)
Johannes Bergad7e7182013-11-13 13:37:47 +01001661 goto nla_put_failure;
Johannes Berg567ffc32013-12-18 14:43:31 +01001662
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001663 for (i = 0; i < rdev->wiphy.n_vendor_commands; i++) {
1664 info = &rdev->wiphy.vendor_commands[i].info;
Johannes Berg567ffc32013-12-18 14:43:31 +01001665 if (nla_put(msg, i + 1, sizeof(*info), info))
1666 goto nla_put_failure;
1667 }
1668 nla_nest_end(msg, nested);
1669 }
1670
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001671 if (rdev->wiphy.n_vendor_events) {
Johannes Berg567ffc32013-12-18 14:43:31 +01001672 const struct nl80211_vendor_cmd_info *info;
1673 struct nlattr *nested;
1674
1675 nested = nla_nest_start(msg,
1676 NL80211_ATTR_VENDOR_EVENTS);
1677 if (!nested)
1678 goto nla_put_failure;
1679
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001680 for (i = 0; i < rdev->wiphy.n_vendor_events; i++) {
1681 info = &rdev->wiphy.vendor_events[i];
Johannes Berg567ffc32013-12-18 14:43:31 +01001682 if (nla_put(msg, i + 1, sizeof(*info), info))
1683 goto nla_put_failure;
1684 }
1685 nla_nest_end(msg, nested);
1686 }
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03001687 state->split_start++;
1688 break;
1689 case 12:
1690 if (rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH &&
1691 nla_put_u8(msg, NL80211_ATTR_MAX_CSA_COUNTERS,
1692 rdev->wiphy.max_num_csa_counters))
1693 goto nla_put_failure;
Felix Fietkau01e0daa2013-11-09 14:57:54 +01001694
Johannes Berg3713b4e2013-02-14 16:19:38 +01001695 /* done */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001696 state->split_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001697 break;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001698 }
Johannes Berg3bb20552014-05-26 13:52:25 +02001699 finish:
Johannes Berg55682962007-09-20 13:09:35 -04001700 return genlmsg_end(msg, hdr);
1701
1702 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001703 genlmsg_cancel(msg, hdr);
1704 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04001705}
1706
Johannes Berg86e8cf92013-06-19 10:57:22 +02001707static int nl80211_dump_wiphy_parse(struct sk_buff *skb,
1708 struct netlink_callback *cb,
1709 struct nl80211_dump_wiphy_state *state)
1710{
1711 struct nlattr **tb = nl80211_fam.attrbuf;
1712 int ret = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
1713 tb, nl80211_fam.maxattr, nl80211_policy);
1714 /* ignore parse errors for backward compatibility */
1715 if (ret)
1716 return 0;
1717
1718 state->split = tb[NL80211_ATTR_SPLIT_WIPHY_DUMP];
1719 if (tb[NL80211_ATTR_WIPHY])
1720 state->filter_wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
1721 if (tb[NL80211_ATTR_WDEV])
1722 state->filter_wiphy = nla_get_u64(tb[NL80211_ATTR_WDEV]) >> 32;
1723 if (tb[NL80211_ATTR_IFINDEX]) {
1724 struct net_device *netdev;
1725 struct cfg80211_registered_device *rdev;
1726 int ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
1727
Ying Xue7f2b8562014-01-15 10:23:45 +08001728 netdev = __dev_get_by_index(sock_net(skb->sk), ifidx);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001729 if (!netdev)
1730 return -ENODEV;
1731 if (netdev->ieee80211_ptr) {
Zhao, Gangf26cbf42014-04-21 12:53:03 +08001732 rdev = wiphy_to_rdev(
Johannes Berg86e8cf92013-06-19 10:57:22 +02001733 netdev->ieee80211_ptr->wiphy);
1734 state->filter_wiphy = rdev->wiphy_idx;
1735 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001736 }
1737
1738 return 0;
1739}
1740
Johannes Berg55682962007-09-20 13:09:35 -04001741static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
1742{
Johannes Berg645e77d2013-03-01 14:03:49 +01001743 int idx = 0, ret;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001744 struct nl80211_dump_wiphy_state *state = (void *)cb->args[0];
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001745 struct cfg80211_registered_device *rdev;
Johannes Berg3a5a4232013-06-19 10:09:57 +02001746
Johannes Berg5fe231e2013-05-08 21:45:15 +02001747 rtnl_lock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001748 if (!state) {
1749 state = kzalloc(sizeof(*state), GFP_KERNEL);
John W. Linville57ed5cd2013-06-28 13:18:21 -04001750 if (!state) {
1751 rtnl_unlock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001752 return -ENOMEM;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001753 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001754 state->filter_wiphy = -1;
1755 ret = nl80211_dump_wiphy_parse(skb, cb, state);
1756 if (ret) {
1757 kfree(state);
1758 rtnl_unlock();
1759 return ret;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001760 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001761 cb->args[0] = (long)state;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001762 }
1763
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001764 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
1765 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02001766 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001767 if (++idx <= state->start)
Johannes Berg55682962007-09-20 13:09:35 -04001768 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001769 if (state->filter_wiphy != -1 &&
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001770 state->filter_wiphy != rdev->wiphy_idx)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001771 continue;
1772 /* attempt to fit multiple wiphy data chunks into the skb */
1773 do {
Johannes Berg3bb20552014-05-26 13:52:25 +02001774 ret = nl80211_send_wiphy(rdev, NL80211_CMD_NEW_WIPHY,
1775 skb,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001776 NETLINK_CB(cb->skb).portid,
1777 cb->nlh->nlmsg_seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001778 NLM_F_MULTI, state);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001779 if (ret < 0) {
1780 /*
1781 * If sending the wiphy data didn't fit (ENOBUFS
1782 * or EMSGSIZE returned), this SKB is still
1783 * empty (so it's not too big because another
1784 * wiphy dataset is already in the skb) and
1785 * we've not tried to adjust the dump allocation
1786 * yet ... then adjust the alloc size to be
1787 * bigger, and return 1 but with the empty skb.
1788 * This results in an empty message being RX'ed
1789 * in userspace, but that is ignored.
1790 *
1791 * We can then retry with the larger buffer.
1792 */
1793 if ((ret == -ENOBUFS || ret == -EMSGSIZE) &&
Pontus Fuchsf12cb282014-01-16 15:00:40 +01001794 !skb->len && !state->split &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001795 cb->min_dump_alloc < 4096) {
1796 cb->min_dump_alloc = 4096;
Pontus Fuchsf12cb282014-01-16 15:00:40 +01001797 state->split_start = 0;
David S. Millerd98cae64e2013-06-19 16:49:39 -07001798 rtnl_unlock();
Johannes Berg3713b4e2013-02-14 16:19:38 +01001799 return 1;
1800 }
1801 idx--;
1802 break;
Johannes Berg645e77d2013-03-01 14:03:49 +01001803 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001804 } while (state->split_start > 0);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001805 break;
Johannes Berg55682962007-09-20 13:09:35 -04001806 }
Johannes Berg5fe231e2013-05-08 21:45:15 +02001807 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04001808
Johannes Berg86e8cf92013-06-19 10:57:22 +02001809 state->start = idx;
Johannes Berg55682962007-09-20 13:09:35 -04001810
1811 return skb->len;
1812}
1813
Johannes Berg86e8cf92013-06-19 10:57:22 +02001814static int nl80211_dump_wiphy_done(struct netlink_callback *cb)
1815{
1816 kfree((void *)cb->args[0]);
1817 return 0;
1818}
1819
Johannes Berg55682962007-09-20 13:09:35 -04001820static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
1821{
1822 struct sk_buff *msg;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08001823 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg86e8cf92013-06-19 10:57:22 +02001824 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04001825
Johannes Berg645e77d2013-03-01 14:03:49 +01001826 msg = nlmsg_new(4096, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04001827 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02001828 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04001829
Johannes Berg3bb20552014-05-26 13:52:25 +02001830 if (nl80211_send_wiphy(rdev, NL80211_CMD_NEW_WIPHY, msg,
1831 info->snd_portid, info->snd_seq, 0,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001832 &state) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02001833 nlmsg_free(msg);
1834 return -ENOBUFS;
1835 }
Johannes Berg55682962007-09-20 13:09:35 -04001836
Johannes Berg134e6372009-07-10 09:51:34 +00001837 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04001838}
1839
Jouni Malinen31888482008-10-30 16:59:24 +02001840static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
1841 [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 },
1842 [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 },
1843 [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 },
1844 [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 },
1845 [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 },
1846};
1847
1848static int parse_txq_params(struct nlattr *tb[],
1849 struct ieee80211_txq_params *txq_params)
1850{
Johannes Berga3304b02012-03-28 11:04:24 +02001851 if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
Jouni Malinen31888482008-10-30 16:59:24 +02001852 !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
1853 !tb[NL80211_TXQ_ATTR_AIFS])
1854 return -EINVAL;
1855
Johannes Berga3304b02012-03-28 11:04:24 +02001856 txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
Jouni Malinen31888482008-10-30 16:59:24 +02001857 txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
1858 txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
1859 txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
1860 txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);
1861
Johannes Berga3304b02012-03-28 11:04:24 +02001862 if (txq_params->ac >= NL80211_NUM_ACS)
1863 return -EINVAL;
1864
Jouni Malinen31888482008-10-30 16:59:24 +02001865 return 0;
1866}
1867
Johannes Bergf444de02010-05-05 15:25:02 +02001868static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
1869{
1870 /*
Johannes Bergcc1d2802012-05-16 23:50:20 +02001871 * You can only set the channel explicitly for WDS interfaces,
1872 * all others have their channel managed via their respective
1873 * "establish a connection" command (connect, join, ...)
1874 *
1875 * For AP/GO and mesh mode, the channel can be set with the
1876 * channel userspace API, but is only stored and passed to the
1877 * low-level driver when the AP starts or the mesh is joined.
1878 * This is for backward compatibility, userspace can also give
1879 * the channel in the start-ap or join-mesh commands instead.
Johannes Bergf444de02010-05-05 15:25:02 +02001880 *
1881 * Monitors are special as they are normally slaved to
Johannes Berge8c9bd52012-06-06 08:18:22 +02001882 * whatever else is going on, so they have their own special
1883 * operation to set the monitor channel if possible.
Johannes Bergf444de02010-05-05 15:25:02 +02001884 */
1885 return !wdev ||
1886 wdev->iftype == NL80211_IFTYPE_AP ||
Johannes Bergf444de02010-05-05 15:25:02 +02001887 wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
Johannes Berg074ac8d2010-09-16 14:58:22 +02001888 wdev->iftype == NL80211_IFTYPE_MONITOR ||
1889 wdev->iftype == NL80211_IFTYPE_P2P_GO;
Johannes Bergf444de02010-05-05 15:25:02 +02001890}
1891
Johannes Berg683b6d32012-11-08 21:25:48 +01001892static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
1893 struct genl_info *info,
1894 struct cfg80211_chan_def *chandef)
1895{
Mahesh Paliveladbeca2e2012-11-29 14:11:07 +05301896 u32 control_freq;
Johannes Berg683b6d32012-11-08 21:25:48 +01001897
1898 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
1899 return -EINVAL;
1900
1901 control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
1902
1903 chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq);
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001904 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
1905 chandef->center_freq1 = control_freq;
1906 chandef->center_freq2 = 0;
Johannes Berg683b6d32012-11-08 21:25:48 +01001907
1908 /* Primary channel not allowed */
1909 if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
1910 return -EINVAL;
1911
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001912 if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
1913 enum nl80211_channel_type chantype;
Johannes Berg683b6d32012-11-08 21:25:48 +01001914
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001915 chantype = nla_get_u32(
1916 info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1917
1918 switch (chantype) {
1919 case NL80211_CHAN_NO_HT:
1920 case NL80211_CHAN_HT20:
1921 case NL80211_CHAN_HT40PLUS:
1922 case NL80211_CHAN_HT40MINUS:
1923 cfg80211_chandef_create(chandef, chandef->chan,
1924 chantype);
1925 break;
1926 default:
Johannes Berg683b6d32012-11-08 21:25:48 +01001927 return -EINVAL;
Johannes Berg683b6d32012-11-08 21:25:48 +01001928 }
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001929 } else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
1930 chandef->width =
1931 nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
1932 if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
1933 chandef->center_freq1 =
1934 nla_get_u32(
1935 info->attrs[NL80211_ATTR_CENTER_FREQ1]);
1936 if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
1937 chandef->center_freq2 =
1938 nla_get_u32(
1939 info->attrs[NL80211_ATTR_CENTER_FREQ2]);
1940 }
1941
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001942 if (!cfg80211_chandef_valid(chandef))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001943 return -EINVAL;
1944
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001945 if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
1946 IEEE80211_CHAN_DISABLED))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001947 return -EINVAL;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001948
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001949 if ((chandef->width == NL80211_CHAN_WIDTH_5 ||
1950 chandef->width == NL80211_CHAN_WIDTH_10) &&
1951 !(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1952 return -EINVAL;
1953
Johannes Berg683b6d32012-11-08 21:25:48 +01001954 return 0;
1955}
1956
Johannes Bergf444de02010-05-05 15:25:02 +02001957static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
Jouni Malinene16821b2014-04-28 11:22:08 +03001958 struct net_device *dev,
Johannes Bergf444de02010-05-05 15:25:02 +02001959 struct genl_info *info)
1960{
Johannes Berg683b6d32012-11-08 21:25:48 +01001961 struct cfg80211_chan_def chandef;
Johannes Bergf444de02010-05-05 15:25:02 +02001962 int result;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001963 enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;
Jouni Malinene16821b2014-04-28 11:22:08 +03001964 struct wireless_dev *wdev = NULL;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001965
Jouni Malinene16821b2014-04-28 11:22:08 +03001966 if (dev)
1967 wdev = dev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02001968 if (!nl80211_can_set_dev_channel(wdev))
1969 return -EOPNOTSUPP;
Jouni Malinene16821b2014-04-28 11:22:08 +03001970 if (wdev)
1971 iftype = wdev->iftype;
Johannes Bergf444de02010-05-05 15:25:02 +02001972
Johannes Berg683b6d32012-11-08 21:25:48 +01001973 result = nl80211_parse_chandef(rdev, info, &chandef);
1974 if (result)
1975 return result;
Johannes Bergf444de02010-05-05 15:25:02 +02001976
Johannes Berge8c9bd52012-06-06 08:18:22 +02001977 switch (iftype) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001978 case NL80211_IFTYPE_AP:
1979 case NL80211_IFTYPE_P2P_GO:
Ilan Peer174e0cd2014-02-23 09:13:01 +02001980 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &chandef, iftype)) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001981 result = -EINVAL;
1982 break;
1983 }
Jouni Malinene16821b2014-04-28 11:22:08 +03001984 if (wdev->beacon_interval) {
1985 if (!dev || !rdev->ops->set_ap_chanwidth ||
1986 !(rdev->wiphy.features &
1987 NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE)) {
1988 result = -EBUSY;
1989 break;
1990 }
1991
1992 /* Only allow dynamic channel width changes */
1993 if (chandef.chan != wdev->preset_chandef.chan) {
1994 result = -EBUSY;
1995 break;
1996 }
1997 result = rdev_set_ap_chanwidth(rdev, dev, &chandef);
1998 if (result)
1999 break;
2000 }
Johannes Berg683b6d32012-11-08 21:25:48 +01002001 wdev->preset_chandef = chandef;
Johannes Bergaa430da2012-05-16 23:50:18 +02002002 result = 0;
2003 break;
Johannes Bergcc1d2802012-05-16 23:50:20 +02002004 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg683b6d32012-11-08 21:25:48 +01002005 result = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
Johannes Bergcc1d2802012-05-16 23:50:20 +02002006 break;
Johannes Berge8c9bd52012-06-06 08:18:22 +02002007 case NL80211_IFTYPE_MONITOR:
Johannes Berg683b6d32012-11-08 21:25:48 +01002008 result = cfg80211_set_monitor_channel(rdev, &chandef);
Johannes Berge8c9bd52012-06-06 08:18:22 +02002009 break;
Johannes Bergaa430da2012-05-16 23:50:18 +02002010 default:
Johannes Berge8c9bd52012-06-06 08:18:22 +02002011 result = -EINVAL;
Johannes Bergf444de02010-05-05 15:25:02 +02002012 }
Johannes Bergf444de02010-05-05 15:25:02 +02002013
2014 return result;
2015}
2016
2017static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info)
2018{
Johannes Berg4c476992010-10-04 21:36:35 +02002019 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2020 struct net_device *netdev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02002021
Jouni Malinene16821b2014-04-28 11:22:08 +03002022 return __nl80211_set_channel(rdev, netdev, info);
Johannes Bergf444de02010-05-05 15:25:02 +02002023}
2024
Bill Jordane8347eb2010-10-01 13:54:28 -04002025static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
2026{
Johannes Berg43b19952010-10-07 13:10:30 +02002027 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2028 struct net_device *dev = info->user_ptr[1];
2029 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg388ac772010-10-07 13:11:09 +02002030 const u8 *bssid;
Bill Jordane8347eb2010-10-01 13:54:28 -04002031
2032 if (!info->attrs[NL80211_ATTR_MAC])
2033 return -EINVAL;
2034
Johannes Berg43b19952010-10-07 13:10:30 +02002035 if (netif_running(dev))
2036 return -EBUSY;
Bill Jordane8347eb2010-10-01 13:54:28 -04002037
Johannes Berg43b19952010-10-07 13:10:30 +02002038 if (!rdev->ops->set_wds_peer)
2039 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04002040
Johannes Berg43b19952010-10-07 13:10:30 +02002041 if (wdev->iftype != NL80211_IFTYPE_WDS)
2042 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04002043
2044 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Hila Gonene35e4d22012-06-27 17:19:42 +03002045 return rdev_set_wds_peer(rdev, dev, bssid);
Bill Jordane8347eb2010-10-01 13:54:28 -04002046}
2047
2048
Johannes Berg55682962007-09-20 13:09:35 -04002049static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
2050{
2051 struct cfg80211_registered_device *rdev;
Johannes Bergf444de02010-05-05 15:25:02 +02002052 struct net_device *netdev = NULL;
2053 struct wireless_dev *wdev;
Bill Jordana1e567c2010-09-10 11:22:32 -04002054 int result = 0, rem_txq_params = 0;
Jouni Malinen31888482008-10-30 16:59:24 +02002055 struct nlattr *nl_txq_params;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002056 u32 changed;
2057 u8 retry_short = 0, retry_long = 0;
2058 u32 frag_threshold = 0, rts_threshold = 0;
Lukáš Turek81077e82009-12-21 22:50:47 +01002059 u8 coverage_class = 0;
Johannes Berg55682962007-09-20 13:09:35 -04002060
Johannes Berg5fe231e2013-05-08 21:45:15 +02002061 ASSERT_RTNL();
2062
Johannes Bergf444de02010-05-05 15:25:02 +02002063 /*
2064 * Try to find the wiphy and netdev. Normally this
2065 * function shouldn't need the netdev, but this is
2066 * done for backward compatibility -- previously
2067 * setting the channel was done per wiphy, but now
2068 * it is per netdev. Previous userland like hostapd
2069 * also passed a netdev to set_wiphy, so that it is
2070 * possible to let that go to the right netdev!
2071 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002072
Johannes Bergf444de02010-05-05 15:25:02 +02002073 if (info->attrs[NL80211_ATTR_IFINDEX]) {
2074 int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
2075
Ying Xue7f2b8562014-01-15 10:23:45 +08002076 netdev = __dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002077 if (netdev && netdev->ieee80211_ptr)
Zhao, Gangf26cbf42014-04-21 12:53:03 +08002078 rdev = wiphy_to_rdev(netdev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002079 else
Johannes Bergf444de02010-05-05 15:25:02 +02002080 netdev = NULL;
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002081 }
2082
Johannes Bergf444de02010-05-05 15:25:02 +02002083 if (!netdev) {
Johannes Berg878d9ec2012-06-15 14:18:32 +02002084 rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
2085 info->attrs);
Johannes Berg5fe231e2013-05-08 21:45:15 +02002086 if (IS_ERR(rdev))
Johannes Berg4c476992010-10-04 21:36:35 +02002087 return PTR_ERR(rdev);
Johannes Bergf444de02010-05-05 15:25:02 +02002088 wdev = NULL;
2089 netdev = NULL;
2090 result = 0;
Johannes Berg71fe96b2012-10-24 10:04:58 +02002091 } else
Johannes Bergf444de02010-05-05 15:25:02 +02002092 wdev = netdev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02002093
2094 /*
2095 * end workaround code, by now the rdev is available
2096 * and locked, and wdev may or may not be NULL.
2097 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002098
2099 if (info->attrs[NL80211_ATTR_WIPHY_NAME])
Jouni Malinen31888482008-10-30 16:59:24 +02002100 result = cfg80211_dev_rename(
2101 rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002102
Johannes Berg4bbf4d52009-03-24 09:35:46 +01002103 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002104 return result;
Johannes Berg55682962007-09-20 13:09:35 -04002105
Jouni Malinen31888482008-10-30 16:59:24 +02002106 if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
2107 struct ieee80211_txq_params txq_params;
2108 struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];
2109
Ying Xue7f2b8562014-01-15 10:23:45 +08002110 if (!rdev->ops->set_txq_params)
2111 return -EOPNOTSUPP;
Jouni Malinen31888482008-10-30 16:59:24 +02002112
Ying Xue7f2b8562014-01-15 10:23:45 +08002113 if (!netdev)
2114 return -EINVAL;
Eliad Pellerf70f01c2011-09-25 20:06:53 +03002115
Johannes Berg133a3ff2011-11-03 14:50:13 +01002116 if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Ying Xue7f2b8562014-01-15 10:23:45 +08002117 netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
2118 return -EINVAL;
Johannes Berg133a3ff2011-11-03 14:50:13 +01002119
Ying Xue7f2b8562014-01-15 10:23:45 +08002120 if (!netif_running(netdev))
2121 return -ENETDOWN;
Johannes Berg2b5f8b02012-04-02 10:51:55 +02002122
Jouni Malinen31888482008-10-30 16:59:24 +02002123 nla_for_each_nested(nl_txq_params,
2124 info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
2125 rem_txq_params) {
Johannes Bergae811e22014-01-24 10:17:47 +01002126 result = nla_parse(tb, NL80211_TXQ_ATTR_MAX,
2127 nla_data(nl_txq_params),
2128 nla_len(nl_txq_params),
2129 txq_params_policy);
2130 if (result)
2131 return result;
Jouni Malinen31888482008-10-30 16:59:24 +02002132 result = parse_txq_params(tb, &txq_params);
2133 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002134 return result;
Jouni Malinen31888482008-10-30 16:59:24 +02002135
Hila Gonene35e4d22012-06-27 17:19:42 +03002136 result = rdev_set_txq_params(rdev, netdev,
2137 &txq_params);
Jouni Malinen31888482008-10-30 16:59:24 +02002138 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002139 return result;
Jouni Malinen31888482008-10-30 16:59:24 +02002140 }
2141 }
2142
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002143 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Jouni Malinene16821b2014-04-28 11:22:08 +03002144 result = __nl80211_set_channel(
2145 rdev,
2146 nl80211_can_set_dev_channel(wdev) ? netdev : NULL,
2147 info);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002148 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002149 return result;
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002150 }
2151
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002152 if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
Johannes Bergc8442112012-10-24 10:17:18 +02002153 struct wireless_dev *txp_wdev = wdev;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002154 enum nl80211_tx_power_setting type;
2155 int idx, mbm = 0;
2156
Johannes Bergc8442112012-10-24 10:17:18 +02002157 if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER))
2158 txp_wdev = NULL;
2159
Ying Xue7f2b8562014-01-15 10:23:45 +08002160 if (!rdev->ops->set_tx_power)
2161 return -EOPNOTSUPP;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002162
2163 idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING;
2164 type = nla_get_u32(info->attrs[idx]);
2165
2166 if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] &&
Ying Xue7f2b8562014-01-15 10:23:45 +08002167 (type != NL80211_TX_POWER_AUTOMATIC))
2168 return -EINVAL;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002169
2170 if (type != NL80211_TX_POWER_AUTOMATIC) {
2171 idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL;
2172 mbm = nla_get_u32(info->attrs[idx]);
2173 }
2174
Johannes Bergc8442112012-10-24 10:17:18 +02002175 result = rdev_set_tx_power(rdev, txp_wdev, type, mbm);
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002176 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002177 return result;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002178 }
2179
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002180 if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
2181 info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
2182 u32 tx_ant, rx_ant;
Bruno Randolf7f531e02010-12-16 11:30:22 +09002183 if ((!rdev->wiphy.available_antennas_tx &&
2184 !rdev->wiphy.available_antennas_rx) ||
Ying Xue7f2b8562014-01-15 10:23:45 +08002185 !rdev->ops->set_antenna)
2186 return -EOPNOTSUPP;
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002187
2188 tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]);
2189 rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]);
2190
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002191 /* reject antenna configurations which don't match the
Bruno Randolf7f531e02010-12-16 11:30:22 +09002192 * available antenna masks, except for the "all" mask */
2193 if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) ||
Ying Xue7f2b8562014-01-15 10:23:45 +08002194 (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx)))
2195 return -EINVAL;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002196
Bruno Randolf7f531e02010-12-16 11:30:22 +09002197 tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
2198 rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002199
Hila Gonene35e4d22012-06-27 17:19:42 +03002200 result = rdev_set_antenna(rdev, tx_ant, rx_ant);
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002201 if (result)
Ying Xue7f2b8562014-01-15 10:23:45 +08002202 return result;
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002203 }
2204
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002205 changed = 0;
2206
2207 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
2208 retry_short = nla_get_u8(
2209 info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
Ying Xue7f2b8562014-01-15 10:23:45 +08002210 if (retry_short == 0)
2211 return -EINVAL;
2212
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002213 changed |= WIPHY_PARAM_RETRY_SHORT;
2214 }
2215
2216 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
2217 retry_long = nla_get_u8(
2218 info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
Ying Xue7f2b8562014-01-15 10:23:45 +08002219 if (retry_long == 0)
2220 return -EINVAL;
2221
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002222 changed |= WIPHY_PARAM_RETRY_LONG;
2223 }
2224
2225 if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
2226 frag_threshold = nla_get_u32(
2227 info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
Ying Xue7f2b8562014-01-15 10:23:45 +08002228 if (frag_threshold < 256)
2229 return -EINVAL;
2230
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002231 if (frag_threshold != (u32) -1) {
2232 /*
2233 * Fragments (apart from the last one) are required to
2234 * have even length. Make the fragmentation code
2235 * simpler by stripping LSB should someone try to use
2236 * odd threshold value.
2237 */
2238 frag_threshold &= ~0x1;
2239 }
2240 changed |= WIPHY_PARAM_FRAG_THRESHOLD;
2241 }
2242
2243 if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
2244 rts_threshold = nla_get_u32(
2245 info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
2246 changed |= WIPHY_PARAM_RTS_THRESHOLD;
2247 }
2248
Lukáš Turek81077e82009-12-21 22:50:47 +01002249 if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
Lorenzo Bianconi3057dbf2014-09-04 23:57:40 +02002250 if (info->attrs[NL80211_ATTR_WIPHY_DYN_ACK])
2251 return -EINVAL;
2252
Lukáš Turek81077e82009-12-21 22:50:47 +01002253 coverage_class = nla_get_u8(
2254 info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
2255 changed |= WIPHY_PARAM_COVERAGE_CLASS;
2256 }
2257
Lorenzo Bianconi3057dbf2014-09-04 23:57:40 +02002258 if (info->attrs[NL80211_ATTR_WIPHY_DYN_ACK]) {
2259 if (!(rdev->wiphy.features & NL80211_FEATURE_ACKTO_ESTIMATION))
2260 return -EOPNOTSUPP;
2261
2262 changed |= WIPHY_PARAM_DYN_ACK;
2263 }
2264
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002265 if (changed) {
2266 u8 old_retry_short, old_retry_long;
2267 u32 old_frag_threshold, old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002268 u8 old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002269
Ying Xue7f2b8562014-01-15 10:23:45 +08002270 if (!rdev->ops->set_wiphy_params)
2271 return -EOPNOTSUPP;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002272
2273 old_retry_short = rdev->wiphy.retry_short;
2274 old_retry_long = rdev->wiphy.retry_long;
2275 old_frag_threshold = rdev->wiphy.frag_threshold;
2276 old_rts_threshold = rdev->wiphy.rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002277 old_coverage_class = rdev->wiphy.coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002278
2279 if (changed & WIPHY_PARAM_RETRY_SHORT)
2280 rdev->wiphy.retry_short = retry_short;
2281 if (changed & WIPHY_PARAM_RETRY_LONG)
2282 rdev->wiphy.retry_long = retry_long;
2283 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
2284 rdev->wiphy.frag_threshold = frag_threshold;
2285 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
2286 rdev->wiphy.rts_threshold = rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002287 if (changed & WIPHY_PARAM_COVERAGE_CLASS)
2288 rdev->wiphy.coverage_class = coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002289
Hila Gonene35e4d22012-06-27 17:19:42 +03002290 result = rdev_set_wiphy_params(rdev, changed);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002291 if (result) {
2292 rdev->wiphy.retry_short = old_retry_short;
2293 rdev->wiphy.retry_long = old_retry_long;
2294 rdev->wiphy.frag_threshold = old_frag_threshold;
2295 rdev->wiphy.rts_threshold = old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002296 rdev->wiphy.coverage_class = old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002297 }
2298 }
Ying Xue7f2b8562014-01-15 10:23:45 +08002299 return 0;
Johannes Berg55682962007-09-20 13:09:35 -04002300}
2301
Johannes Berg71bbc992012-06-15 15:30:18 +02002302static inline u64 wdev_id(struct wireless_dev *wdev)
2303{
2304 return (u64)wdev->identifier |
Zhao, Gangf26cbf42014-04-21 12:53:03 +08002305 ((u64)wiphy_to_rdev(wdev->wiphy)->wiphy_idx << 32);
Johannes Berg71bbc992012-06-15 15:30:18 +02002306}
Johannes Berg55682962007-09-20 13:09:35 -04002307
Johannes Berg683b6d32012-11-08 21:25:48 +01002308static int nl80211_send_chandef(struct sk_buff *msg,
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01002309 const struct cfg80211_chan_def *chandef)
Johannes Berg683b6d32012-11-08 21:25:48 +01002310{
Johannes Berg9f5e8f62012-11-22 16:59:45 +01002311 WARN_ON(!cfg80211_chandef_valid(chandef));
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002312
Johannes Berg683b6d32012-11-08 21:25:48 +01002313 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
2314 chandef->chan->center_freq))
2315 return -ENOBUFS;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002316 switch (chandef->width) {
2317 case NL80211_CHAN_WIDTH_20_NOHT:
2318 case NL80211_CHAN_WIDTH_20:
2319 case NL80211_CHAN_WIDTH_40:
2320 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
2321 cfg80211_get_chandef_type(chandef)))
2322 return -ENOBUFS;
2323 break;
2324 default:
2325 break;
2326 }
2327 if (nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, chandef->width))
2328 return -ENOBUFS;
2329 if (nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ1, chandef->center_freq1))
2330 return -ENOBUFS;
2331 if (chandef->center_freq2 &&
2332 nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ2, chandef->center_freq2))
Johannes Berg683b6d32012-11-08 21:25:48 +01002333 return -ENOBUFS;
2334 return 0;
2335}
2336
Eric W. Biederman15e47302012-09-07 20:12:54 +00002337static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
Johannes Bergd7264052009-04-19 16:23:20 +02002338 struct cfg80211_registered_device *rdev,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002339 struct wireless_dev *wdev)
Johannes Berg55682962007-09-20 13:09:35 -04002340{
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002341 struct net_device *dev = wdev->netdev;
Johannes Berg55682962007-09-20 13:09:35 -04002342 void *hdr;
2343
Eric W. Biederman15e47302012-09-07 20:12:54 +00002344 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_INTERFACE);
Johannes Berg55682962007-09-20 13:09:35 -04002345 if (!hdr)
2346 return -1;
2347
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002348 if (dev &&
2349 (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002350 nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002351 goto nla_put_failure;
2352
2353 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
2354 nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
Johannes Berg71bbc992012-06-15 15:30:18 +02002355 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002356 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04002357 nla_put_u32(msg, NL80211_ATTR_GENERATION,
2358 rdev->devlist_generation ^
2359 (cfg80211_rdev_list_generation << 2)))
2360 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02002361
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002362 if (rdev->ops->get_channel) {
Johannes Berg683b6d32012-11-08 21:25:48 +01002363 int ret;
2364 struct cfg80211_chan_def chandef;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002365
Johannes Berg683b6d32012-11-08 21:25:48 +01002366 ret = rdev_get_channel(rdev, wdev, &chandef);
2367 if (ret == 0) {
2368 if (nl80211_send_chandef(msg, &chandef))
2369 goto nla_put_failure;
2370 }
Pontus Fuchsd91df0e2012-04-03 16:39:58 +02002371 }
2372
Antonio Quartullib84e7a02012-11-07 12:52:20 +01002373 if (wdev->ssid_len) {
2374 if (nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid))
2375 goto nla_put_failure;
2376 }
2377
Johannes Berg55682962007-09-20 13:09:35 -04002378 return genlmsg_end(msg, hdr);
2379
2380 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07002381 genlmsg_cancel(msg, hdr);
2382 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04002383}
2384
2385static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
2386{
2387 int wp_idx = 0;
2388 int if_idx = 0;
2389 int wp_start = cb->args[0];
2390 int if_start = cb->args[1];
Johannes Bergf5ea9122009-08-07 16:17:38 +02002391 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -04002392 struct wireless_dev *wdev;
2393
Johannes Berg5fe231e2013-05-08 21:45:15 +02002394 rtnl_lock();
Johannes Bergf5ea9122009-08-07 16:17:38 +02002395 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2396 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02002397 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002398 if (wp_idx < wp_start) {
2399 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002400 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002401 }
Johannes Berg55682962007-09-20 13:09:35 -04002402 if_idx = 0;
2403
Johannes Berg89a54e42012-06-15 14:33:17 +02002404 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002405 if (if_idx < if_start) {
2406 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002407 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002408 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002409 if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).portid,
Johannes Berg55682962007-09-20 13:09:35 -04002410 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002411 rdev, wdev) < 0) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002412 goto out;
2413 }
2414 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002415 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002416
2417 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002418 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002419 out:
Johannes Berg5fe231e2013-05-08 21:45:15 +02002420 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04002421
2422 cb->args[0] = wp_idx;
2423 cb->args[1] = if_idx;
2424
2425 return skb->len;
2426}
2427
2428static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
2429{
2430 struct sk_buff *msg;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08002431 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002432 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002433
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002434 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04002435 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02002436 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04002437
Eric W. Biederman15e47302012-09-07 20:12:54 +00002438 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08002439 rdev, wdev) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02002440 nlmsg_free(msg);
2441 return -ENOBUFS;
2442 }
Johannes Berg55682962007-09-20 13:09:35 -04002443
Johannes Berg134e6372009-07-10 09:51:34 +00002444 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002445}
2446
Michael Wu66f7ac52008-01-31 19:48:22 +01002447static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
2448 [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
2449 [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
2450 [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
2451 [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
2452 [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002453 [NL80211_MNTR_FLAG_ACTIVE] = { .type = NLA_FLAG },
Michael Wu66f7ac52008-01-31 19:48:22 +01002454};
2455
2456static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
2457{
2458 struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
2459 int flag;
2460
2461 *mntrflags = 0;
2462
2463 if (!nla)
2464 return -EINVAL;
2465
2466 if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
2467 nla, mntr_flags_policy))
2468 return -EINVAL;
2469
2470 for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
2471 if (flags[flag])
2472 *mntrflags |= (1<<flag);
2473
2474 return 0;
2475}
2476
Johannes Berg9bc383d2009-11-19 11:55:19 +01002477static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002478 struct net_device *netdev, u8 use_4addr,
2479 enum nl80211_iftype iftype)
Johannes Berg9bc383d2009-11-19 11:55:19 +01002480{
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002481 if (!use_4addr) {
Jiri Pirkof350a0a82010-06-15 06:50:45 +00002482 if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002483 return -EBUSY;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002484 return 0;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002485 }
Johannes Berg9bc383d2009-11-19 11:55:19 +01002486
2487 switch (iftype) {
2488 case NL80211_IFTYPE_AP_VLAN:
2489 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP)
2490 return 0;
2491 break;
2492 case NL80211_IFTYPE_STATION:
2493 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION)
2494 return 0;
2495 break;
2496 default:
2497 break;
2498 }
2499
2500 return -EOPNOTSUPP;
2501}
2502
Johannes Berg55682962007-09-20 13:09:35 -04002503static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
2504{
Johannes Berg4c476992010-10-04 21:36:35 +02002505 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002506 struct vif_params params;
Johannes Berge36d56b2009-06-09 21:04:43 +02002507 int err;
Johannes Berg04a773a2009-04-19 21:24:32 +02002508 enum nl80211_iftype otype, ntype;
Johannes Berg4c476992010-10-04 21:36:35 +02002509 struct net_device *dev = info->user_ptr[1];
Johannes Berg92ffe052008-09-16 20:39:36 +02002510 u32 _flags, *flags = NULL;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002511 bool change = false;
Johannes Berg55682962007-09-20 13:09:35 -04002512
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002513 memset(&params, 0, sizeof(params));
2514
Johannes Berg04a773a2009-04-19 21:24:32 +02002515 otype = ntype = dev->ieee80211_ptr->iftype;
Johannes Berg55682962007-09-20 13:09:35 -04002516
Johannes Berg723b0382008-09-16 20:22:09 +02002517 if (info->attrs[NL80211_ATTR_IFTYPE]) {
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002518 ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
Johannes Berg04a773a2009-04-19 21:24:32 +02002519 if (otype != ntype)
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002520 change = true;
Johannes Berg4c476992010-10-04 21:36:35 +02002521 if (ntype > NL80211_IFTYPE_MAX)
2522 return -EINVAL;
Johannes Berg723b0382008-09-16 20:22:09 +02002523 }
2524
Johannes Berg92ffe052008-09-16 20:39:36 +02002525 if (info->attrs[NL80211_ATTR_MESH_ID]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01002526 struct wireless_dev *wdev = dev->ieee80211_ptr;
2527
Johannes Berg4c476992010-10-04 21:36:35 +02002528 if (ntype != NL80211_IFTYPE_MESH_POINT)
2529 return -EINVAL;
Johannes Berg29cbe682010-12-03 09:20:44 +01002530 if (netif_running(dev))
2531 return -EBUSY;
2532
2533 wdev_lock(wdev);
2534 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2535 IEEE80211_MAX_MESH_ID_LEN);
2536 wdev->mesh_id_up_len =
2537 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2538 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2539 wdev->mesh_id_up_len);
2540 wdev_unlock(wdev);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002541 }
2542
Felix Fietkau8b787642009-11-10 18:53:10 +01002543 if (info->attrs[NL80211_ATTR_4ADDR]) {
2544 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2545 change = true;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002546 err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002547 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002548 return err;
Felix Fietkau8b787642009-11-10 18:53:10 +01002549 } else {
2550 params.use_4addr = -1;
2551 }
2552
Johannes Berg92ffe052008-09-16 20:39:36 +02002553 if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
Johannes Berg4c476992010-10-04 21:36:35 +02002554 if (ntype != NL80211_IFTYPE_MONITOR)
2555 return -EINVAL;
Johannes Berg92ffe052008-09-16 20:39:36 +02002556 err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
2557 &_flags);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002558 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002559 return err;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002560
2561 flags = &_flags;
2562 change = true;
Johannes Berg92ffe052008-09-16 20:39:36 +02002563 }
Johannes Berg3b858752009-03-12 09:55:09 +01002564
Luciano Coelho18003292013-08-29 13:26:57 +03002565 if (flags && (*flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002566 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2567 return -EOPNOTSUPP;
2568
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002569 if (change)
Johannes Berg3d54d252009-08-21 14:51:05 +02002570 err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002571 else
2572 err = 0;
Johannes Berg60719ff2008-09-16 14:55:09 +02002573
Johannes Berg9bc383d2009-11-19 11:55:19 +01002574 if (!err && params.use_4addr != -1)
2575 dev->ieee80211_ptr->use_4addr = params.use_4addr;
2576
Johannes Berg55682962007-09-20 13:09:35 -04002577 return err;
2578}
2579
2580static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
2581{
Johannes Berg4c476992010-10-04 21:36:35 +02002582 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002583 struct vif_params params;
Johannes Berg84efbb82012-06-16 00:00:26 +02002584 struct wireless_dev *wdev;
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002585 struct sk_buff *msg;
Johannes Berg55682962007-09-20 13:09:35 -04002586 int err;
2587 enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
Michael Wu66f7ac52008-01-31 19:48:22 +01002588 u32 flags;
Johannes Berg55682962007-09-20 13:09:35 -04002589
Johannes Berg78f22b62014-03-24 17:57:27 +01002590 /* to avoid failing a new interface creation due to pending removal */
2591 cfg80211_destroy_ifaces(rdev);
2592
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002593 memset(&params, 0, sizeof(params));
2594
Johannes Berg55682962007-09-20 13:09:35 -04002595 if (!info->attrs[NL80211_ATTR_IFNAME])
2596 return -EINVAL;
2597
2598 if (info->attrs[NL80211_ATTR_IFTYPE]) {
2599 type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
2600 if (type > NL80211_IFTYPE_MAX)
2601 return -EINVAL;
2602 }
2603
Johannes Berg79c97e92009-07-07 03:56:12 +02002604 if (!rdev->ops->add_virtual_intf ||
Johannes Berg4c476992010-10-04 21:36:35 +02002605 !(rdev->wiphy.interface_modes & (1 << type)))
2606 return -EOPNOTSUPP;
Johannes Berg55682962007-09-20 13:09:35 -04002607
Arend van Spriel1c18f142013-01-08 10:17:27 +01002608 if (type == NL80211_IFTYPE_P2P_DEVICE && info->attrs[NL80211_ATTR_MAC]) {
2609 nla_memcpy(params.macaddr, info->attrs[NL80211_ATTR_MAC],
2610 ETH_ALEN);
2611 if (!is_valid_ether_addr(params.macaddr))
2612 return -EADDRNOTAVAIL;
2613 }
2614
Johannes Berg9bc383d2009-11-19 11:55:19 +01002615 if (info->attrs[NL80211_ATTR_4ADDR]) {
Felix Fietkau8b787642009-11-10 18:53:10 +01002616 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002617 err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002618 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002619 return err;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002620 }
Felix Fietkau8b787642009-11-10 18:53:10 +01002621
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002622 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2623 if (!msg)
2624 return -ENOMEM;
2625
Michael Wu66f7ac52008-01-31 19:48:22 +01002626 err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
2627 info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
2628 &flags);
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002629
Luciano Coelho18003292013-08-29 13:26:57 +03002630 if (!err && (flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002631 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2632 return -EOPNOTSUPP;
2633
Hila Gonene35e4d22012-06-27 17:19:42 +03002634 wdev = rdev_add_virtual_intf(rdev,
2635 nla_data(info->attrs[NL80211_ATTR_IFNAME]),
2636 type, err ? NULL : &flags, &params);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002637 if (IS_ERR(wdev)) {
2638 nlmsg_free(msg);
Johannes Berg84efbb82012-06-16 00:00:26 +02002639 return PTR_ERR(wdev);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002640 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002641
Johannes Berg78f22b62014-03-24 17:57:27 +01002642 if (info->attrs[NL80211_ATTR_IFACE_SOCKET_OWNER])
2643 wdev->owner_nlportid = info->snd_portid;
2644
Johannes Berg98104fde2012-06-16 00:19:54 +02002645 switch (type) {
2646 case NL80211_IFTYPE_MESH_POINT:
2647 if (!info->attrs[NL80211_ATTR_MESH_ID])
2648 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002649 wdev_lock(wdev);
2650 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2651 IEEE80211_MAX_MESH_ID_LEN);
2652 wdev->mesh_id_up_len =
2653 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2654 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2655 wdev->mesh_id_up_len);
2656 wdev_unlock(wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02002657 break;
2658 case NL80211_IFTYPE_P2P_DEVICE:
2659 /*
2660 * P2P Device doesn't have a netdev, so doesn't go
2661 * through the netdev notifier and must be added here
2662 */
2663 mutex_init(&wdev->mtx);
2664 INIT_LIST_HEAD(&wdev->event_list);
2665 spin_lock_init(&wdev->event_lock);
2666 INIT_LIST_HEAD(&wdev->mgmt_registrations);
2667 spin_lock_init(&wdev->mgmt_registrations_lock);
2668
Johannes Berg98104fde2012-06-16 00:19:54 +02002669 wdev->identifier = ++rdev->wdev_id;
2670 list_add_rcu(&wdev->list, &rdev->wdev_list);
2671 rdev->devlist_generation++;
Johannes Berg98104fde2012-06-16 00:19:54 +02002672 break;
2673 default:
2674 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002675 }
2676
Eric W. Biederman15e47302012-09-07 20:12:54 +00002677 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002678 rdev, wdev) < 0) {
2679 nlmsg_free(msg);
2680 return -ENOBUFS;
2681 }
2682
2683 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002684}
2685
2686static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
2687{
Johannes Berg4c476992010-10-04 21:36:35 +02002688 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg84efbb82012-06-16 00:00:26 +02002689 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002690
Johannes Berg4c476992010-10-04 21:36:35 +02002691 if (!rdev->ops->del_virtual_intf)
2692 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002693
Johannes Berg84efbb82012-06-16 00:00:26 +02002694 /*
2695 * If we remove a wireless device without a netdev then clear
2696 * user_ptr[1] so that nl80211_post_doit won't dereference it
2697 * to check if it needs to do dev_put(). Otherwise it crashes
2698 * since the wdev has been freed, unlike with a netdev where
2699 * we need the dev_put() for the netdev to really be freed.
2700 */
2701 if (!wdev->netdev)
2702 info->user_ptr[1] = NULL;
2703
Hila Gonene35e4d22012-06-27 17:19:42 +03002704 return rdev_del_virtual_intf(rdev, wdev);
Johannes Berg55682962007-09-20 13:09:35 -04002705}
2706
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002707static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info)
2708{
2709 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2710 struct net_device *dev = info->user_ptr[1];
2711 u16 noack_map;
2712
2713 if (!info->attrs[NL80211_ATTR_NOACK_MAP])
2714 return -EINVAL;
2715
2716 if (!rdev->ops->set_noack_map)
2717 return -EOPNOTSUPP;
2718
2719 noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]);
2720
Hila Gonene35e4d22012-06-27 17:19:42 +03002721 return rdev_set_noack_map(rdev, dev, noack_map);
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002722}
2723
Johannes Berg41ade002007-12-19 02:03:29 +01002724struct get_key_cookie {
2725 struct sk_buff *msg;
2726 int error;
Johannes Bergb9454e82009-07-08 13:29:08 +02002727 int idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002728};
2729
2730static void get_key_callback(void *c, struct key_params *params)
2731{
Johannes Bergb9454e82009-07-08 13:29:08 +02002732 struct nlattr *key;
Johannes Berg41ade002007-12-19 02:03:29 +01002733 struct get_key_cookie *cookie = c;
2734
David S. Miller9360ffd2012-03-29 04:41:26 -04002735 if ((params->key &&
2736 nla_put(cookie->msg, NL80211_ATTR_KEY_DATA,
2737 params->key_len, params->key)) ||
2738 (params->seq &&
2739 nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ,
2740 params->seq_len, params->seq)) ||
2741 (params->cipher &&
2742 nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
2743 params->cipher)))
2744 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002745
Johannes Bergb9454e82009-07-08 13:29:08 +02002746 key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
2747 if (!key)
2748 goto nla_put_failure;
2749
David S. Miller9360ffd2012-03-29 04:41:26 -04002750 if ((params->key &&
2751 nla_put(cookie->msg, NL80211_KEY_DATA,
2752 params->key_len, params->key)) ||
2753 (params->seq &&
2754 nla_put(cookie->msg, NL80211_KEY_SEQ,
2755 params->seq_len, params->seq)) ||
2756 (params->cipher &&
2757 nla_put_u32(cookie->msg, NL80211_KEY_CIPHER,
2758 params->cipher)))
2759 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002760
David S. Miller9360ffd2012-03-29 04:41:26 -04002761 if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
2762 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002763
2764 nla_nest_end(cookie->msg, key);
2765
Johannes Berg41ade002007-12-19 02:03:29 +01002766 return;
2767 nla_put_failure:
2768 cookie->error = 1;
2769}
2770
2771static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
2772{
Johannes Berg4c476992010-10-04 21:36:35 +02002773 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002774 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002775 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002776 u8 key_idx = 0;
Johannes Berge31b8212010-10-05 19:39:30 +02002777 const u8 *mac_addr = NULL;
2778 bool pairwise;
Johannes Berg41ade002007-12-19 02:03:29 +01002779 struct get_key_cookie cookie = {
2780 .error = 0,
2781 };
2782 void *hdr;
2783 struct sk_buff *msg;
2784
2785 if (info->attrs[NL80211_ATTR_KEY_IDX])
2786 key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
2787
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02002788 if (key_idx > 5)
Johannes Berg41ade002007-12-19 02:03:29 +01002789 return -EINVAL;
2790
2791 if (info->attrs[NL80211_ATTR_MAC])
2792 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2793
Johannes Berge31b8212010-10-05 19:39:30 +02002794 pairwise = !!mac_addr;
2795 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
2796 u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
2797 if (kt >= NUM_NL80211_KEYTYPES)
2798 return -EINVAL;
2799 if (kt != NL80211_KEYTYPE_GROUP &&
2800 kt != NL80211_KEYTYPE_PAIRWISE)
2801 return -EINVAL;
2802 pairwise = kt == NL80211_KEYTYPE_PAIRWISE;
2803 }
2804
Johannes Berg4c476992010-10-04 21:36:35 +02002805 if (!rdev->ops->get_key)
2806 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002807
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002808 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02002809 if (!msg)
2810 return -ENOMEM;
Johannes Berg41ade002007-12-19 02:03:29 +01002811
Eric W. Biederman15e47302012-09-07 20:12:54 +00002812 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg41ade002007-12-19 02:03:29 +01002813 NL80211_CMD_NEW_KEY);
Dan Carpentercb35fba2013-08-14 14:50:01 +03002814 if (!hdr)
Johannes Berg9fe271a2013-10-25 11:15:12 +02002815 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002816
2817 cookie.msg = msg;
Johannes Bergb9454e82009-07-08 13:29:08 +02002818 cookie.idx = key_idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002819
David S. Miller9360ffd2012-03-29 04:41:26 -04002820 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
2821 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx))
2822 goto nla_put_failure;
2823 if (mac_addr &&
2824 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
2825 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002826
Johannes Berge31b8212010-10-05 19:39:30 +02002827 if (pairwise && mac_addr &&
2828 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2829 return -ENOENT;
2830
Hila Gonene35e4d22012-06-27 17:19:42 +03002831 err = rdev_get_key(rdev, dev, key_idx, pairwise, mac_addr, &cookie,
2832 get_key_callback);
Johannes Berg41ade002007-12-19 02:03:29 +01002833
2834 if (err)
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002835 goto free_msg;
Johannes Berg41ade002007-12-19 02:03:29 +01002836
2837 if (cookie.error)
2838 goto nla_put_failure;
2839
2840 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02002841 return genlmsg_reply(msg, info);
Johannes Berg41ade002007-12-19 02:03:29 +01002842
2843 nla_put_failure:
2844 err = -ENOBUFS;
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002845 free_msg:
Johannes Berg41ade002007-12-19 02:03:29 +01002846 nlmsg_free(msg);
Johannes Berg41ade002007-12-19 02:03:29 +01002847 return err;
2848}
2849
2850static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
2851{
Johannes Berg4c476992010-10-04 21:36:35 +02002852 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergb9454e82009-07-08 13:29:08 +02002853 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002854 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002855 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002856
Johannes Bergb9454e82009-07-08 13:29:08 +02002857 err = nl80211_parse_key(info, &key);
2858 if (err)
2859 return err;
2860
2861 if (key.idx < 0)
Johannes Berg41ade002007-12-19 02:03:29 +01002862 return -EINVAL;
2863
Johannes Bergb9454e82009-07-08 13:29:08 +02002864 /* only support setting default key */
2865 if (!key.def && !key.defmgmt)
Johannes Berg41ade002007-12-19 02:03:29 +01002866 return -EINVAL;
2867
Johannes Bergfffd0932009-07-08 14:22:54 +02002868 wdev_lock(dev->ieee80211_ptr);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002869
2870 if (key.def) {
2871 if (!rdev->ops->set_default_key) {
2872 err = -EOPNOTSUPP;
2873 goto out;
2874 }
2875
2876 err = nl80211_key_allowed(dev->ieee80211_ptr);
2877 if (err)
2878 goto out;
2879
Hila Gonene35e4d22012-06-27 17:19:42 +03002880 err = rdev_set_default_key(rdev, dev, key.idx,
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002881 key.def_uni, key.def_multi);
2882
2883 if (err)
2884 goto out;
Johannes Bergfffd0932009-07-08 14:22:54 +02002885
Johannes Berg3d23e342009-09-29 23:27:28 +02002886#ifdef CONFIG_CFG80211_WEXT
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002887 dev->ieee80211_ptr->wext.default_key = key.idx;
Johannes Berg08645122009-05-11 13:54:58 +02002888#endif
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002889 } else {
2890 if (key.def_uni || !key.def_multi) {
2891 err = -EINVAL;
2892 goto out;
2893 }
2894
2895 if (!rdev->ops->set_default_mgmt_key) {
2896 err = -EOPNOTSUPP;
2897 goto out;
2898 }
2899
2900 err = nl80211_key_allowed(dev->ieee80211_ptr);
2901 if (err)
2902 goto out;
2903
Hila Gonene35e4d22012-06-27 17:19:42 +03002904 err = rdev_set_default_mgmt_key(rdev, dev, key.idx);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002905 if (err)
2906 goto out;
2907
2908#ifdef CONFIG_CFG80211_WEXT
2909 dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
2910#endif
2911 }
2912
2913 out:
Johannes Bergfffd0932009-07-08 14:22:54 +02002914 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002915
Johannes Berg41ade002007-12-19 02:03:29 +01002916 return err;
2917}
2918
2919static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
2920{
Johannes Berg4c476992010-10-04 21:36:35 +02002921 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfffd0932009-07-08 14:22:54 +02002922 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002923 struct net_device *dev = info->user_ptr[1];
Johannes Bergb9454e82009-07-08 13:29:08 +02002924 struct key_parse key;
Johannes Berge31b8212010-10-05 19:39:30 +02002925 const u8 *mac_addr = NULL;
Johannes Berg41ade002007-12-19 02:03:29 +01002926
Johannes Bergb9454e82009-07-08 13:29:08 +02002927 err = nl80211_parse_key(info, &key);
2928 if (err)
2929 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002930
Johannes Bergb9454e82009-07-08 13:29:08 +02002931 if (!key.p.key)
Johannes Berg41ade002007-12-19 02:03:29 +01002932 return -EINVAL;
2933
Johannes Berg41ade002007-12-19 02:03:29 +01002934 if (info->attrs[NL80211_ATTR_MAC])
2935 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2936
Johannes Berge31b8212010-10-05 19:39:30 +02002937 if (key.type == -1) {
2938 if (mac_addr)
2939 key.type = NL80211_KEYTYPE_PAIRWISE;
2940 else
2941 key.type = NL80211_KEYTYPE_GROUP;
2942 }
2943
2944 /* for now */
2945 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2946 key.type != NL80211_KEYTYPE_GROUP)
2947 return -EINVAL;
2948
Johannes Berg4c476992010-10-04 21:36:35 +02002949 if (!rdev->ops->add_key)
2950 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002951
Johannes Berge31b8212010-10-05 19:39:30 +02002952 if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
2953 key.type == NL80211_KEYTYPE_PAIRWISE,
2954 mac_addr))
Johannes Berg4c476992010-10-04 21:36:35 +02002955 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02002956
2957 wdev_lock(dev->ieee80211_ptr);
2958 err = nl80211_key_allowed(dev->ieee80211_ptr);
2959 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002960 err = rdev_add_key(rdev, dev, key.idx,
2961 key.type == NL80211_KEYTYPE_PAIRWISE,
2962 mac_addr, &key.p);
Johannes Bergfffd0932009-07-08 14:22:54 +02002963 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002964
Johannes Berg41ade002007-12-19 02:03:29 +01002965 return err;
2966}
2967
2968static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
2969{
Johannes Berg4c476992010-10-04 21:36:35 +02002970 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002971 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002972 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002973 u8 *mac_addr = NULL;
Johannes Bergb9454e82009-07-08 13:29:08 +02002974 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002975
Johannes Bergb9454e82009-07-08 13:29:08 +02002976 err = nl80211_parse_key(info, &key);
2977 if (err)
2978 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002979
2980 if (info->attrs[NL80211_ATTR_MAC])
2981 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2982
Johannes Berge31b8212010-10-05 19:39:30 +02002983 if (key.type == -1) {
2984 if (mac_addr)
2985 key.type = NL80211_KEYTYPE_PAIRWISE;
2986 else
2987 key.type = NL80211_KEYTYPE_GROUP;
2988 }
2989
2990 /* for now */
2991 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2992 key.type != NL80211_KEYTYPE_GROUP)
2993 return -EINVAL;
2994
Johannes Berg4c476992010-10-04 21:36:35 +02002995 if (!rdev->ops->del_key)
2996 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002997
Johannes Bergfffd0932009-07-08 14:22:54 +02002998 wdev_lock(dev->ieee80211_ptr);
2999 err = nl80211_key_allowed(dev->ieee80211_ptr);
Johannes Berge31b8212010-10-05 19:39:30 +02003000
3001 if (key.type == NL80211_KEYTYPE_PAIRWISE && mac_addr &&
3002 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
3003 err = -ENOENT;
3004
Johannes Bergfffd0932009-07-08 14:22:54 +02003005 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03003006 err = rdev_del_key(rdev, dev, key.idx,
3007 key.type == NL80211_KEYTYPE_PAIRWISE,
3008 mac_addr);
Johannes Berg41ade002007-12-19 02:03:29 +01003009
Johannes Berg3d23e342009-09-29 23:27:28 +02003010#ifdef CONFIG_CFG80211_WEXT
Johannes Berg08645122009-05-11 13:54:58 +02003011 if (!err) {
Johannes Bergb9454e82009-07-08 13:29:08 +02003012 if (key.idx == dev->ieee80211_ptr->wext.default_key)
Johannes Berg08645122009-05-11 13:54:58 +02003013 dev->ieee80211_ptr->wext.default_key = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +02003014 else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
Johannes Berg08645122009-05-11 13:54:58 +02003015 dev->ieee80211_ptr->wext.default_mgmt_key = -1;
3016 }
3017#endif
Johannes Bergfffd0932009-07-08 14:22:54 +02003018 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg08645122009-05-11 13:54:58 +02003019
Johannes Berg41ade002007-12-19 02:03:29 +01003020 return err;
3021}
3022
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303023/* This function returns an error or the number of nested attributes */
3024static int validate_acl_mac_addrs(struct nlattr *nl_attr)
3025{
3026 struct nlattr *attr;
3027 int n_entries = 0, tmp;
3028
3029 nla_for_each_nested(attr, nl_attr, tmp) {
3030 if (nla_len(attr) != ETH_ALEN)
3031 return -EINVAL;
3032
3033 n_entries++;
3034 }
3035
3036 return n_entries;
3037}
3038
3039/*
3040 * This function parses ACL information and allocates memory for ACL data.
3041 * On successful return, the calling function is responsible to free the
3042 * ACL buffer returned by this function.
3043 */
3044static struct cfg80211_acl_data *parse_acl_data(struct wiphy *wiphy,
3045 struct genl_info *info)
3046{
3047 enum nl80211_acl_policy acl_policy;
3048 struct nlattr *attr;
3049 struct cfg80211_acl_data *acl;
3050 int i = 0, n_entries, tmp;
3051
3052 if (!wiphy->max_acl_mac_addrs)
3053 return ERR_PTR(-EOPNOTSUPP);
3054
3055 if (!info->attrs[NL80211_ATTR_ACL_POLICY])
3056 return ERR_PTR(-EINVAL);
3057
3058 acl_policy = nla_get_u32(info->attrs[NL80211_ATTR_ACL_POLICY]);
3059 if (acl_policy != NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED &&
3060 acl_policy != NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
3061 return ERR_PTR(-EINVAL);
3062
3063 if (!info->attrs[NL80211_ATTR_MAC_ADDRS])
3064 return ERR_PTR(-EINVAL);
3065
3066 n_entries = validate_acl_mac_addrs(info->attrs[NL80211_ATTR_MAC_ADDRS]);
3067 if (n_entries < 0)
3068 return ERR_PTR(n_entries);
3069
3070 if (n_entries > wiphy->max_acl_mac_addrs)
3071 return ERR_PTR(-ENOTSUPP);
3072
3073 acl = kzalloc(sizeof(*acl) + (sizeof(struct mac_address) * n_entries),
3074 GFP_KERNEL);
3075 if (!acl)
3076 return ERR_PTR(-ENOMEM);
3077
3078 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_MAC_ADDRS], tmp) {
3079 memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN);
3080 i++;
3081 }
3082
3083 acl->n_acl_entries = n_entries;
3084 acl->acl_policy = acl_policy;
3085
3086 return acl;
3087}
3088
3089static int nl80211_set_mac_acl(struct sk_buff *skb, struct genl_info *info)
3090{
3091 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3092 struct net_device *dev = info->user_ptr[1];
3093 struct cfg80211_acl_data *acl;
3094 int err;
3095
3096 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3097 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3098 return -EOPNOTSUPP;
3099
3100 if (!dev->ieee80211_ptr->beacon_interval)
3101 return -EINVAL;
3102
3103 acl = parse_acl_data(&rdev->wiphy, info);
3104 if (IS_ERR(acl))
3105 return PTR_ERR(acl);
3106
3107 err = rdev_set_mac_acl(rdev, dev, acl);
3108
3109 kfree(acl);
3110
3111 return err;
3112}
3113
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003114static int nl80211_parse_beacon(struct nlattr *attrs[],
Johannes Berg88600202012-02-13 15:17:18 +01003115 struct cfg80211_beacon_data *bcn)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003116{
Johannes Berg88600202012-02-13 15:17:18 +01003117 bool haveinfo = false;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003118
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003119 if (!is_valid_ie_attr(attrs[NL80211_ATTR_BEACON_TAIL]) ||
3120 !is_valid_ie_attr(attrs[NL80211_ATTR_IE]) ||
3121 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_PROBE_RESP]) ||
3122 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_ASSOC_RESP]))
Johannes Bergf4a11bb2009-03-27 12:40:28 +01003123 return -EINVAL;
3124
Johannes Berg88600202012-02-13 15:17:18 +01003125 memset(bcn, 0, sizeof(*bcn));
Johannes Berged1b6cc2007-12-19 02:03:32 +01003126
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003127 if (attrs[NL80211_ATTR_BEACON_HEAD]) {
3128 bcn->head = nla_data(attrs[NL80211_ATTR_BEACON_HEAD]);
3129 bcn->head_len = nla_len(attrs[NL80211_ATTR_BEACON_HEAD]);
Johannes Berg88600202012-02-13 15:17:18 +01003130 if (!bcn->head_len)
3131 return -EINVAL;
3132 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003133 }
3134
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003135 if (attrs[NL80211_ATTR_BEACON_TAIL]) {
3136 bcn->tail = nla_data(attrs[NL80211_ATTR_BEACON_TAIL]);
3137 bcn->tail_len = nla_len(attrs[NL80211_ATTR_BEACON_TAIL]);
Johannes Berg88600202012-02-13 15:17:18 +01003138 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003139 }
3140
Johannes Berg4c476992010-10-04 21:36:35 +02003141 if (!haveinfo)
3142 return -EINVAL;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003143
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003144 if (attrs[NL80211_ATTR_IE]) {
3145 bcn->beacon_ies = nla_data(attrs[NL80211_ATTR_IE]);
3146 bcn->beacon_ies_len = nla_len(attrs[NL80211_ATTR_IE]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003147 }
3148
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003149 if (attrs[NL80211_ATTR_IE_PROBE_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003150 bcn->proberesp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003151 nla_data(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003152 bcn->proberesp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003153 nla_len(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003154 }
3155
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003156 if (attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003157 bcn->assocresp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003158 nla_data(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003159 bcn->assocresp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003160 nla_len(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003161 }
3162
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003163 if (attrs[NL80211_ATTR_PROBE_RESP]) {
3164 bcn->probe_resp = nla_data(attrs[NL80211_ATTR_PROBE_RESP]);
3165 bcn->probe_resp_len = nla_len(attrs[NL80211_ATTR_PROBE_RESP]);
Arik Nemtsov00f740e2011-11-10 11:28:56 +02003166 }
3167
Johannes Berg88600202012-02-13 15:17:18 +01003168 return 0;
3169}
3170
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003171static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev,
3172 struct cfg80211_ap_settings *params)
3173{
3174 struct wireless_dev *wdev;
3175 bool ret = false;
3176
Johannes Berg89a54e42012-06-15 14:33:17 +02003177 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003178 if (wdev->iftype != NL80211_IFTYPE_AP &&
3179 wdev->iftype != NL80211_IFTYPE_P2P_GO)
3180 continue;
3181
Johannes Berg683b6d32012-11-08 21:25:48 +01003182 if (!wdev->preset_chandef.chan)
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003183 continue;
3184
Johannes Berg683b6d32012-11-08 21:25:48 +01003185 params->chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003186 ret = true;
3187 break;
3188 }
3189
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003190 return ret;
3191}
3192
Jouni Malinene39e5b52012-09-30 19:29:39 +03003193static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
3194 enum nl80211_auth_type auth_type,
3195 enum nl80211_commands cmd)
3196{
3197 if (auth_type > NL80211_AUTHTYPE_MAX)
3198 return false;
3199
3200 switch (cmd) {
3201 case NL80211_CMD_AUTHENTICATE:
3202 if (!(rdev->wiphy.features & NL80211_FEATURE_SAE) &&
3203 auth_type == NL80211_AUTHTYPE_SAE)
3204 return false;
3205 return true;
3206 case NL80211_CMD_CONNECT:
3207 case NL80211_CMD_START_AP:
3208 /* SAE not supported yet */
3209 if (auth_type == NL80211_AUTHTYPE_SAE)
3210 return false;
3211 return true;
3212 default:
3213 return false;
3214 }
3215}
3216
Johannes Berg88600202012-02-13 15:17:18 +01003217static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
3218{
3219 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3220 struct net_device *dev = info->user_ptr[1];
3221 struct wireless_dev *wdev = dev->ieee80211_ptr;
3222 struct cfg80211_ap_settings params;
3223 int err;
3224
3225 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3226 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3227 return -EOPNOTSUPP;
3228
3229 if (!rdev->ops->start_ap)
3230 return -EOPNOTSUPP;
3231
3232 if (wdev->beacon_interval)
3233 return -EALREADY;
3234
3235 memset(&params, 0, sizeof(params));
3236
3237 /* these are required for START_AP */
3238 if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
3239 !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
3240 !info->attrs[NL80211_ATTR_BEACON_HEAD])
3241 return -EINVAL;
3242
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003243 err = nl80211_parse_beacon(info->attrs, &params.beacon);
Johannes Berg88600202012-02-13 15:17:18 +01003244 if (err)
3245 return err;
3246
3247 params.beacon_interval =
3248 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
3249 params.dtim_period =
3250 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
3251
3252 err = cfg80211_validate_beacon_int(rdev, params.beacon_interval);
3253 if (err)
3254 return err;
3255
3256 /*
3257 * In theory, some of these attributes should be required here
3258 * but since they were not used when the command was originally
3259 * added, keep them optional for old user space programs to let
3260 * them continue to work with drivers that do not need the
3261 * additional information -- drivers must check!
3262 */
3263 if (info->attrs[NL80211_ATTR_SSID]) {
3264 params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
3265 params.ssid_len =
3266 nla_len(info->attrs[NL80211_ATTR_SSID]);
3267 if (params.ssid_len == 0 ||
3268 params.ssid_len > IEEE80211_MAX_SSID_LEN)
3269 return -EINVAL;
3270 }
3271
3272 if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) {
3273 params.hidden_ssid = nla_get_u32(
3274 info->attrs[NL80211_ATTR_HIDDEN_SSID]);
3275 if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE &&
3276 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN &&
3277 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS)
3278 return -EINVAL;
3279 }
3280
3281 params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
3282
3283 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
3284 params.auth_type = nla_get_u32(
3285 info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03003286 if (!nl80211_valid_auth_type(rdev, params.auth_type,
3287 NL80211_CMD_START_AP))
Johannes Berg88600202012-02-13 15:17:18 +01003288 return -EINVAL;
3289 } else
3290 params.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
3291
3292 err = nl80211_crypto_settings(rdev, info, &params.crypto,
3293 NL80211_MAX_NR_CIPHER_SUITES);
3294 if (err)
3295 return err;
3296
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +05303297 if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) {
3298 if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER))
3299 return -EOPNOTSUPP;
3300 params.inactivity_timeout = nla_get_u16(
3301 info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]);
3302 }
3303
Johannes Berg53cabad2012-11-14 15:17:28 +01003304 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
3305 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3306 return -EINVAL;
3307 params.p2p_ctwindow =
3308 nla_get_u8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
3309 if (params.p2p_ctwindow > 127)
3310 return -EINVAL;
3311 if (params.p2p_ctwindow != 0 &&
3312 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
3313 return -EINVAL;
3314 }
3315
3316 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
3317 u8 tmp;
3318
3319 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3320 return -EINVAL;
3321 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
3322 if (tmp > 1)
3323 return -EINVAL;
3324 params.p2p_opp_ps = tmp;
3325 if (params.p2p_opp_ps != 0 &&
3326 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
3327 return -EINVAL;
3328 }
3329
Johannes Bergaa430da2012-05-16 23:50:18 +02003330 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003331 err = nl80211_parse_chandef(rdev, info, &params.chandef);
3332 if (err)
3333 return err;
3334 } else if (wdev->preset_chandef.chan) {
3335 params.chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003336 } else if (!nl80211_get_ap_channel(rdev, &params))
Johannes Bergaa430da2012-05-16 23:50:18 +02003337 return -EINVAL;
3338
Ilan Peer174e0cd2014-02-23 09:13:01 +02003339 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef,
3340 wdev->iftype))
Johannes Bergaa430da2012-05-16 23:50:18 +02003341 return -EINVAL;
3342
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303343 if (info->attrs[NL80211_ATTR_ACL_POLICY]) {
3344 params.acl = parse_acl_data(&rdev->wiphy, info);
3345 if (IS_ERR(params.acl))
3346 return PTR_ERR(params.acl);
3347 }
3348
Eliad Peller18998c32014-09-10 14:07:34 +03003349 if (info->attrs[NL80211_ATTR_SMPS_MODE]) {
3350 params.smps_mode =
3351 nla_get_u8(info->attrs[NL80211_ATTR_SMPS_MODE]);
3352 switch (params.smps_mode) {
3353 case NL80211_SMPS_OFF:
3354 break;
3355 case NL80211_SMPS_STATIC:
3356 if (!(rdev->wiphy.features &
3357 NL80211_FEATURE_STATIC_SMPS))
3358 return -EINVAL;
3359 break;
3360 case NL80211_SMPS_DYNAMIC:
3361 if (!(rdev->wiphy.features &
3362 NL80211_FEATURE_DYNAMIC_SMPS))
3363 return -EINVAL;
3364 break;
3365 default:
3366 return -EINVAL;
3367 }
3368 } else {
3369 params.smps_mode = NL80211_SMPS_OFF;
3370 }
3371
Simon Wunderlichc56589e2013-11-21 18:19:49 +01003372 wdev_lock(wdev);
Hila Gonene35e4d22012-06-27 17:19:42 +03003373 err = rdev_start_ap(rdev, dev, &params);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003374 if (!err) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003375 wdev->preset_chandef = params.chandef;
Johannes Berg88600202012-02-13 15:17:18 +01003376 wdev->beacon_interval = params.beacon_interval;
Michal Kazior9e0e2962014-01-29 14:22:27 +01003377 wdev->chandef = params.chandef;
Antonio Quartulli06e191e2012-11-07 12:52:19 +01003378 wdev->ssid_len = params.ssid_len;
3379 memcpy(wdev->ssid, params.ssid, wdev->ssid_len);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003380 }
Simon Wunderlichc56589e2013-11-21 18:19:49 +01003381 wdev_unlock(wdev);
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303382
3383 kfree(params.acl);
3384
Johannes Berg56d18932011-05-09 18:41:15 +02003385 return err;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003386}
3387
Johannes Berg88600202012-02-13 15:17:18 +01003388static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
3389{
3390 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3391 struct net_device *dev = info->user_ptr[1];
3392 struct wireless_dev *wdev = dev->ieee80211_ptr;
3393 struct cfg80211_beacon_data params;
3394 int err;
3395
3396 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3397 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3398 return -EOPNOTSUPP;
3399
3400 if (!rdev->ops->change_beacon)
3401 return -EOPNOTSUPP;
3402
3403 if (!wdev->beacon_interval)
3404 return -EINVAL;
3405
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003406 err = nl80211_parse_beacon(info->attrs, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003407 if (err)
3408 return err;
3409
Simon Wunderlichc56589e2013-11-21 18:19:49 +01003410 wdev_lock(wdev);
3411 err = rdev_change_beacon(rdev, dev, &params);
3412 wdev_unlock(wdev);
3413
3414 return err;
Johannes Berg88600202012-02-13 15:17:18 +01003415}
3416
3417static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003418{
Johannes Berg4c476992010-10-04 21:36:35 +02003419 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3420 struct net_device *dev = info->user_ptr[1];
Johannes Berged1b6cc2007-12-19 02:03:32 +01003421
Ilan Peer7c8d5e02014-02-25 15:33:38 +02003422 return cfg80211_stop_ap(rdev, dev, false);
Johannes Berged1b6cc2007-12-19 02:03:32 +01003423}
3424
Johannes Berg5727ef12007-12-19 02:03:34 +01003425static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
3426 [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
3427 [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
3428 [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
Jouni Malinen0e467242009-05-11 21:57:55 +03003429 [NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
Javier Cardonab39c48f2011-04-07 15:08:30 -07003430 [NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
Johannes Bergd83023d2011-12-14 09:29:15 +01003431 [NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
Johannes Berg5727ef12007-12-19 02:03:34 +01003432};
3433
Johannes Bergeccb8e82009-05-11 21:57:56 +03003434static int parse_station_flags(struct genl_info *info,
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003435 enum nl80211_iftype iftype,
Johannes Bergeccb8e82009-05-11 21:57:56 +03003436 struct station_parameters *params)
Johannes Berg5727ef12007-12-19 02:03:34 +01003437{
3438 struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
Johannes Bergeccb8e82009-05-11 21:57:56 +03003439 struct nlattr *nla;
Johannes Berg5727ef12007-12-19 02:03:34 +01003440 int flag;
3441
Johannes Bergeccb8e82009-05-11 21:57:56 +03003442 /*
3443 * Try parsing the new attribute first so userspace
3444 * can specify both for older kernels.
3445 */
3446 nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
3447 if (nla) {
3448 struct nl80211_sta_flag_update *sta_flags;
Johannes Berg5727ef12007-12-19 02:03:34 +01003449
Johannes Bergeccb8e82009-05-11 21:57:56 +03003450 sta_flags = nla_data(nla);
3451 params->sta_flags_mask = sta_flags->mask;
3452 params->sta_flags_set = sta_flags->set;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003453 params->sta_flags_set &= params->sta_flags_mask;
Johannes Bergeccb8e82009-05-11 21:57:56 +03003454 if ((params->sta_flags_mask |
3455 params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
3456 return -EINVAL;
3457 return 0;
3458 }
3459
3460 /* if present, parse the old attribute */
3461
3462 nla = info->attrs[NL80211_ATTR_STA_FLAGS];
Johannes Berg5727ef12007-12-19 02:03:34 +01003463 if (!nla)
3464 return 0;
3465
3466 if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
3467 nla, sta_flags_policy))
3468 return -EINVAL;
3469
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003470 /*
3471 * Only allow certain flags for interface types so that
3472 * other attributes are silently ignored. Remember that
3473 * this is backward compatibility code with old userspace
3474 * and shouldn't be hit in other cases anyway.
3475 */
3476 switch (iftype) {
3477 case NL80211_IFTYPE_AP:
3478 case NL80211_IFTYPE_AP_VLAN:
3479 case NL80211_IFTYPE_P2P_GO:
3480 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3481 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3482 BIT(NL80211_STA_FLAG_WME) |
3483 BIT(NL80211_STA_FLAG_MFP);
3484 break;
3485 case NL80211_IFTYPE_P2P_CLIENT:
3486 case NL80211_IFTYPE_STATION:
3487 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3488 BIT(NL80211_STA_FLAG_TDLS_PEER);
3489 break;
3490 case NL80211_IFTYPE_MESH_POINT:
3491 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3492 BIT(NL80211_STA_FLAG_MFP) |
3493 BIT(NL80211_STA_FLAG_AUTHORIZED);
3494 default:
3495 return -EINVAL;
3496 }
Johannes Berg5727ef12007-12-19 02:03:34 +01003497
Johannes Berg3383b5a2012-05-10 20:14:43 +02003498 for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
3499 if (flags[flag]) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03003500 params->sta_flags_set |= (1<<flag);
Johannes Berg5727ef12007-12-19 02:03:34 +01003501
Johannes Berg3383b5a2012-05-10 20:14:43 +02003502 /* no longer support new API additions in old API */
3503 if (flag > NL80211_STA_FLAG_MAX_OLD_API)
3504 return -EINVAL;
3505 }
3506 }
3507
Johannes Berg5727ef12007-12-19 02:03:34 +01003508 return 0;
3509}
3510
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003511static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
3512 int attr)
3513{
3514 struct nlattr *rate;
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003515 u32 bitrate;
3516 u16 bitrate_compat;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003517
3518 rate = nla_nest_start(msg, attr);
3519 if (!rate)
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003520 return false;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003521
3522 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
3523 bitrate = cfg80211_calculate_bitrate(info);
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003524 /* report 16-bit bitrate only if we can */
3525 bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003526 if (bitrate > 0 &&
3527 nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate))
3528 return false;
3529 if (bitrate_compat > 0 &&
3530 nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat))
3531 return false;
3532
3533 if (info->flags & RATE_INFO_FLAGS_MCS) {
3534 if (nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs))
3535 return false;
3536 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3537 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3538 return false;
3539 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3540 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3541 return false;
3542 } else if (info->flags & RATE_INFO_FLAGS_VHT_MCS) {
3543 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_MCS, info->mcs))
3544 return false;
3545 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_NSS, info->nss))
3546 return false;
3547 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3548 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3549 return false;
3550 if (info->flags & RATE_INFO_FLAGS_80_MHZ_WIDTH &&
3551 nla_put_flag(msg, NL80211_RATE_INFO_80_MHZ_WIDTH))
3552 return false;
3553 if (info->flags & RATE_INFO_FLAGS_80P80_MHZ_WIDTH &&
3554 nla_put_flag(msg, NL80211_RATE_INFO_80P80_MHZ_WIDTH))
3555 return false;
3556 if (info->flags & RATE_INFO_FLAGS_160_MHZ_WIDTH &&
3557 nla_put_flag(msg, NL80211_RATE_INFO_160_MHZ_WIDTH))
3558 return false;
3559 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3560 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3561 return false;
3562 }
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003563
3564 nla_nest_end(msg, rate);
3565 return true;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003566}
3567
Felix Fietkau119363c2013-04-22 16:29:30 +02003568static bool nl80211_put_signal(struct sk_buff *msg, u8 mask, s8 *signal,
3569 int id)
3570{
3571 void *attr;
3572 int i = 0;
3573
3574 if (!mask)
3575 return true;
3576
3577 attr = nla_nest_start(msg, id);
3578 if (!attr)
3579 return false;
3580
3581 for (i = 0; i < IEEE80211_MAX_CHAINS; i++) {
3582 if (!(mask & BIT(i)))
3583 continue;
3584
3585 if (nla_put_u8(msg, i, signal[i]))
3586 return false;
3587 }
3588
3589 nla_nest_end(msg, attr);
3590
3591 return true;
3592}
3593
Eric W. Biederman15e47302012-09-07 20:12:54 +00003594static int nl80211_send_station(struct sk_buff *msg, u32 portid, u32 seq,
John W. Linville66266b32012-03-15 13:25:41 -04003595 int flags,
3596 struct cfg80211_registered_device *rdev,
3597 struct net_device *dev,
Johannes Berg98b62182009-12-23 13:15:44 +01003598 const u8 *mac_addr, struct station_info *sinfo)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003599{
3600 void *hdr;
Paul Stewartf4263c92011-03-31 09:25:41 -07003601 struct nlattr *sinfoattr, *bss_param;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003602
Eric W. Biederman15e47302012-09-07 20:12:54 +00003603 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003604 if (!hdr)
3605 return -1;
3606
David S. Miller9360ffd2012-03-29 04:41:26 -04003607 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
3608 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
3609 nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation))
3610 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02003611
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003612 sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
3613 if (!sinfoattr)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003614 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04003615 if ((sinfo->filled & STATION_INFO_CONNECTED_TIME) &&
3616 nla_put_u32(msg, NL80211_STA_INFO_CONNECTED_TIME,
3617 sinfo->connected_time))
3618 goto nla_put_failure;
3619 if ((sinfo->filled & STATION_INFO_INACTIVE_TIME) &&
3620 nla_put_u32(msg, NL80211_STA_INFO_INACTIVE_TIME,
3621 sinfo->inactive_time))
3622 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003623 if ((sinfo->filled & (STATION_INFO_RX_BYTES |
3624 STATION_INFO_RX_BYTES64)) &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003625 nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003626 (u32)sinfo->rx_bytes))
3627 goto nla_put_failure;
3628 if ((sinfo->filled & (STATION_INFO_TX_BYTES |
Felix Fietkau4325d722013-05-23 15:05:59 +02003629 STATION_INFO_TX_BYTES64)) &&
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003630 nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
3631 (u32)sinfo->tx_bytes))
3632 goto nla_put_failure;
3633 if ((sinfo->filled & STATION_INFO_RX_BYTES64) &&
3634 nla_put_u64(msg, NL80211_STA_INFO_RX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003635 sinfo->rx_bytes))
3636 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003637 if ((sinfo->filled & STATION_INFO_TX_BYTES64) &&
3638 nla_put_u64(msg, NL80211_STA_INFO_TX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003639 sinfo->tx_bytes))
3640 goto nla_put_failure;
3641 if ((sinfo->filled & STATION_INFO_LLID) &&
3642 nla_put_u16(msg, NL80211_STA_INFO_LLID, sinfo->llid))
3643 goto nla_put_failure;
3644 if ((sinfo->filled & STATION_INFO_PLID) &&
3645 nla_put_u16(msg, NL80211_STA_INFO_PLID, sinfo->plid))
3646 goto nla_put_failure;
3647 if ((sinfo->filled & STATION_INFO_PLINK_STATE) &&
3648 nla_put_u8(msg, NL80211_STA_INFO_PLINK_STATE,
3649 sinfo->plink_state))
3650 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003651 switch (rdev->wiphy.signal_type) {
3652 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04003653 if ((sinfo->filled & STATION_INFO_SIGNAL) &&
3654 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL,
3655 sinfo->signal))
3656 goto nla_put_failure;
3657 if ((sinfo->filled & STATION_INFO_SIGNAL_AVG) &&
3658 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL_AVG,
3659 sinfo->signal_avg))
3660 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003661 break;
3662 default:
3663 break;
3664 }
Felix Fietkau119363c2013-04-22 16:29:30 +02003665 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL) {
3666 if (!nl80211_put_signal(msg, sinfo->chains,
3667 sinfo->chain_signal,
3668 NL80211_STA_INFO_CHAIN_SIGNAL))
3669 goto nla_put_failure;
3670 }
3671 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL_AVG) {
3672 if (!nl80211_put_signal(msg, sinfo->chains,
3673 sinfo->chain_signal_avg,
3674 NL80211_STA_INFO_CHAIN_SIGNAL_AVG))
3675 goto nla_put_failure;
3676 }
Henning Rogge420e7fa2008-12-11 22:04:19 +01003677 if (sinfo->filled & STATION_INFO_TX_BITRATE) {
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003678 if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
3679 NL80211_STA_INFO_TX_BITRATE))
Henning Rogge420e7fa2008-12-11 22:04:19 +01003680 goto nla_put_failure;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003681 }
3682 if (sinfo->filled & STATION_INFO_RX_BITRATE) {
3683 if (!nl80211_put_sta_rate(msg, &sinfo->rxrate,
3684 NL80211_STA_INFO_RX_BITRATE))
3685 goto nla_put_failure;
Henning Rogge420e7fa2008-12-11 22:04:19 +01003686 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003687 if ((sinfo->filled & STATION_INFO_RX_PACKETS) &&
3688 nla_put_u32(msg, NL80211_STA_INFO_RX_PACKETS,
3689 sinfo->rx_packets))
3690 goto nla_put_failure;
3691 if ((sinfo->filled & STATION_INFO_TX_PACKETS) &&
3692 nla_put_u32(msg, NL80211_STA_INFO_TX_PACKETS,
3693 sinfo->tx_packets))
3694 goto nla_put_failure;
3695 if ((sinfo->filled & STATION_INFO_TX_RETRIES) &&
3696 nla_put_u32(msg, NL80211_STA_INFO_TX_RETRIES,
3697 sinfo->tx_retries))
3698 goto nla_put_failure;
3699 if ((sinfo->filled & STATION_INFO_TX_FAILED) &&
3700 nla_put_u32(msg, NL80211_STA_INFO_TX_FAILED,
3701 sinfo->tx_failed))
3702 goto nla_put_failure;
Antonio Quartulli867d8492014-05-19 21:53:19 +02003703 if ((sinfo->filled & STATION_INFO_EXPECTED_THROUGHPUT) &&
3704 nla_put_u32(msg, NL80211_STA_INFO_EXPECTED_THROUGHPUT,
3705 sinfo->expected_throughput))
3706 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04003707 if ((sinfo->filled & STATION_INFO_BEACON_LOSS_COUNT) &&
3708 nla_put_u32(msg, NL80211_STA_INFO_BEACON_LOSS,
3709 sinfo->beacon_loss_count))
3710 goto nla_put_failure;
Marco Porsch3b1c5a52013-01-07 16:04:52 +01003711 if ((sinfo->filled & STATION_INFO_LOCAL_PM) &&
3712 nla_put_u32(msg, NL80211_STA_INFO_LOCAL_PM,
3713 sinfo->local_pm))
3714 goto nla_put_failure;
3715 if ((sinfo->filled & STATION_INFO_PEER_PM) &&
3716 nla_put_u32(msg, NL80211_STA_INFO_PEER_PM,
3717 sinfo->peer_pm))
3718 goto nla_put_failure;
3719 if ((sinfo->filled & STATION_INFO_NONPEER_PM) &&
3720 nla_put_u32(msg, NL80211_STA_INFO_NONPEER_PM,
3721 sinfo->nonpeer_pm))
3722 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003723 if (sinfo->filled & STATION_INFO_BSS_PARAM) {
3724 bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM);
3725 if (!bss_param)
3726 goto nla_put_failure;
3727
David S. Miller9360ffd2012-03-29 04:41:26 -04003728 if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) &&
3729 nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) ||
3730 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) &&
3731 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) ||
3732 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) &&
3733 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) ||
3734 nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD,
3735 sinfo->bss_param.dtim_period) ||
3736 nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL,
3737 sinfo->bss_param.beacon_interval))
3738 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003739
3740 nla_nest_end(msg, bss_param);
3741 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003742 if ((sinfo->filled & STATION_INFO_STA_FLAGS) &&
3743 nla_put(msg, NL80211_STA_INFO_STA_FLAGS,
3744 sizeof(struct nl80211_sta_flag_update),
3745 &sinfo->sta_flags))
3746 goto nla_put_failure;
John W. Linville7eab0f62012-04-12 14:25:14 -04003747 if ((sinfo->filled & STATION_INFO_T_OFFSET) &&
3748 nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET,
3749 sinfo->t_offset))
3750 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003751 nla_nest_end(msg, sinfoattr);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003752
David S. Miller9360ffd2012-03-29 04:41:26 -04003753 if ((sinfo->filled & STATION_INFO_ASSOC_REQ_IES) &&
3754 nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len,
3755 sinfo->assoc_req_ies))
3756 goto nla_put_failure;
Jouni Malinen50d3dfb2011-08-08 12:11:52 +03003757
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003758 return genlmsg_end(msg, hdr);
3759
3760 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07003761 genlmsg_cancel(msg, hdr);
3762 return -EMSGSIZE;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003763}
3764
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003765static int nl80211_dump_station(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003766 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003767{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003768 struct station_info sinfo;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003769 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02003770 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003771 u8 mac_addr[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02003772 int sta_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003773 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003774
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003775 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02003776 if (err)
3777 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003778
Johannes Berg97990a02013-04-19 01:02:55 +02003779 if (!wdev->netdev) {
3780 err = -EINVAL;
3781 goto out_err;
3782 }
3783
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003784 if (!rdev->ops->dump_station) {
Jouni Malineneec60b02009-03-20 21:21:19 +02003785 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003786 goto out_err;
3787 }
3788
Johannes Bergbba95fe2008-07-29 13:22:51 +02003789 while (1) {
Jouni Malinenf612ced2011-08-11 11:46:22 +03003790 memset(&sinfo, 0, sizeof(sinfo));
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003791 err = rdev_dump_station(rdev, wdev->netdev, sta_idx,
Hila Gonene35e4d22012-06-27 17:19:42 +03003792 mac_addr, &sinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003793 if (err == -ENOENT)
3794 break;
3795 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01003796 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003797
3798 if (nl80211_send_station(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003799 NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003800 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003801 rdev, wdev->netdev, mac_addr,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003802 &sinfo) < 0)
3803 goto out;
3804
3805 sta_idx++;
3806 }
3807
3808
3809 out:
Johannes Berg97990a02013-04-19 01:02:55 +02003810 cb->args[2] = sta_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003811 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003812 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08003813 nl80211_finish_wdev_dump(rdev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003814
3815 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003816}
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003817
Johannes Berg5727ef12007-12-19 02:03:34 +01003818static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
3819{
Johannes Berg4c476992010-10-04 21:36:35 +02003820 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3821 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003822 struct station_info sinfo;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003823 struct sk_buff *msg;
3824 u8 *mac_addr = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02003825 int err;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003826
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003827 memset(&sinfo, 0, sizeof(sinfo));
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003828
3829 if (!info->attrs[NL80211_ATTR_MAC])
3830 return -EINVAL;
3831
3832 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3833
Johannes Berg4c476992010-10-04 21:36:35 +02003834 if (!rdev->ops->get_station)
3835 return -EOPNOTSUPP;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003836
Hila Gonene35e4d22012-06-27 17:19:42 +03003837 err = rdev_get_station(rdev, dev, mac_addr, &sinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003838 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02003839 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003840
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07003841 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003842 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02003843 return -ENOMEM;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003844
Eric W. Biederman15e47302012-09-07 20:12:54 +00003845 if (nl80211_send_station(msg, info->snd_portid, info->snd_seq, 0,
John W. Linville66266b32012-03-15 13:25:41 -04003846 rdev, dev, mac_addr, &sinfo) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02003847 nlmsg_free(msg);
3848 return -ENOBUFS;
3849 }
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003850
Johannes Berg4c476992010-10-04 21:36:35 +02003851 return genlmsg_reply(msg, info);
Johannes Berg5727ef12007-12-19 02:03:34 +01003852}
3853
Johannes Berg77ee7c82013-02-15 00:48:33 +01003854int cfg80211_check_station_change(struct wiphy *wiphy,
3855 struct station_parameters *params,
3856 enum cfg80211_station_type statype)
3857{
3858 if (params->listen_interval != -1)
3859 return -EINVAL;
Arik Nemtsovc72e1142014-07-17 17:14:29 +03003860 if (params->aid &&
3861 !(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
Johannes Berg77ee7c82013-02-15 00:48:33 +01003862 return -EINVAL;
3863
3864 /* When you run into this, adjust the code below for the new flag */
3865 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
3866
3867 switch (statype) {
Thomas Pederseneef941e2013-03-04 13:06:11 -08003868 case CFG80211_STA_MESH_PEER_KERNEL:
3869 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003870 /*
3871 * No ignoring the TDLS flag here -- the userspace mesh
3872 * code doesn't have the bug of including TDLS in the
3873 * mask everywhere.
3874 */
3875 if (params->sta_flags_mask &
3876 ~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3877 BIT(NL80211_STA_FLAG_MFP) |
3878 BIT(NL80211_STA_FLAG_AUTHORIZED)))
3879 return -EINVAL;
3880 break;
3881 case CFG80211_STA_TDLS_PEER_SETUP:
3882 case CFG80211_STA_TDLS_PEER_ACTIVE:
3883 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
3884 return -EINVAL;
3885 /* ignore since it can't change */
3886 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3887 break;
3888 default:
3889 /* disallow mesh-specific things */
3890 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3891 return -EINVAL;
3892 if (params->local_pm)
3893 return -EINVAL;
3894 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3895 return -EINVAL;
3896 }
3897
3898 if (statype != CFG80211_STA_TDLS_PEER_SETUP &&
3899 statype != CFG80211_STA_TDLS_PEER_ACTIVE) {
3900 /* TDLS can't be set, ... */
3901 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
3902 return -EINVAL;
3903 /*
3904 * ... but don't bother the driver with it. This works around
3905 * a hostapd/wpa_supplicant issue -- it always includes the
3906 * TLDS_PEER flag in the mask even for AP mode.
3907 */
3908 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3909 }
3910
3911 if (statype != CFG80211_STA_TDLS_PEER_SETUP) {
3912 /* reject other things that can't change */
3913 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD)
3914 return -EINVAL;
3915 if (params->sta_modify_mask & STATION_PARAM_APPLY_CAPABILITY)
3916 return -EINVAL;
3917 if (params->supported_rates)
3918 return -EINVAL;
3919 if (params->ext_capab || params->ht_capa || params->vht_capa)
3920 return -EINVAL;
3921 }
3922
3923 if (statype != CFG80211_STA_AP_CLIENT) {
3924 if (params->vlan)
3925 return -EINVAL;
3926 }
3927
3928 switch (statype) {
3929 case CFG80211_STA_AP_MLME_CLIENT:
3930 /* Use this only for authorizing/unauthorizing a station */
3931 if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)))
3932 return -EOPNOTSUPP;
3933 break;
3934 case CFG80211_STA_AP_CLIENT:
3935 /* accept only the listed bits */
3936 if (params->sta_flags_mask &
3937 ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3938 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3939 BIT(NL80211_STA_FLAG_ASSOCIATED) |
3940 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3941 BIT(NL80211_STA_FLAG_WME) |
3942 BIT(NL80211_STA_FLAG_MFP)))
3943 return -EINVAL;
3944
3945 /* but authenticated/associated only if driver handles it */
3946 if (!(wiphy->features & NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
3947 params->sta_flags_mask &
3948 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3949 BIT(NL80211_STA_FLAG_ASSOCIATED)))
3950 return -EINVAL;
3951 break;
3952 case CFG80211_STA_IBSS:
3953 case CFG80211_STA_AP_STA:
3954 /* reject any changes other than AUTHORIZED */
3955 if (params->sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
3956 return -EINVAL;
3957 break;
3958 case CFG80211_STA_TDLS_PEER_SETUP:
3959 /* reject any changes other than AUTHORIZED or WME */
3960 if (params->sta_flags_mask & ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3961 BIT(NL80211_STA_FLAG_WME)))
3962 return -EINVAL;
3963 /* force (at least) rates when authorizing */
3964 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED) &&
3965 !params->supported_rates)
3966 return -EINVAL;
3967 break;
3968 case CFG80211_STA_TDLS_PEER_ACTIVE:
3969 /* reject any changes */
3970 return -EINVAL;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003971 case CFG80211_STA_MESH_PEER_KERNEL:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003972 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3973 return -EINVAL;
3974 break;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003975 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003976 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3977 return -EINVAL;
3978 break;
3979 }
3980
3981 return 0;
3982}
3983EXPORT_SYMBOL(cfg80211_check_station_change);
3984
Johannes Berg5727ef12007-12-19 02:03:34 +01003985/*
Felix Fietkauc258d2d2009-11-11 17:23:31 +01003986 * Get vlan interface making sure it is running and on the right wiphy.
Johannes Berg5727ef12007-12-19 02:03:34 +01003987 */
Johannes Berg80b99892011-11-18 16:23:01 +01003988static struct net_device *get_vlan(struct genl_info *info,
3989 struct cfg80211_registered_device *rdev)
Johannes Berg5727ef12007-12-19 02:03:34 +01003990{
Johannes Berg463d0182009-07-14 00:33:35 +02003991 struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
Johannes Berg80b99892011-11-18 16:23:01 +01003992 struct net_device *v;
3993 int ret;
Johannes Berg5727ef12007-12-19 02:03:34 +01003994
Johannes Berg80b99892011-11-18 16:23:01 +01003995 if (!vlanattr)
3996 return NULL;
3997
3998 v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr));
3999 if (!v)
4000 return ERR_PTR(-ENODEV);
4001
4002 if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) {
4003 ret = -EINVAL;
4004 goto error;
Johannes Berg5727ef12007-12-19 02:03:34 +01004005 }
Johannes Berg80b99892011-11-18 16:23:01 +01004006
Johannes Berg77ee7c82013-02-15 00:48:33 +01004007 if (v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
4008 v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
4009 v->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
4010 ret = -EINVAL;
4011 goto error;
4012 }
4013
Johannes Berg80b99892011-11-18 16:23:01 +01004014 if (!netif_running(v)) {
4015 ret = -ENETDOWN;
4016 goto error;
4017 }
4018
4019 return v;
4020 error:
4021 dev_put(v);
4022 return ERR_PTR(ret);
Johannes Berg5727ef12007-12-19 02:03:34 +01004023}
4024
Johannes Berg94e860f2014-01-20 23:58:15 +01004025static const struct nla_policy
4026nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] = {
Jouni Malinendf881292013-02-14 21:10:54 +02004027 [NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 },
4028 [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
4029};
4030
Johannes Bergff276692013-02-15 00:09:01 +01004031static int nl80211_parse_sta_wme(struct genl_info *info,
4032 struct station_parameters *params)
Jouni Malinendf881292013-02-14 21:10:54 +02004033{
Jouni Malinendf881292013-02-14 21:10:54 +02004034 struct nlattr *tb[NL80211_STA_WME_MAX + 1];
4035 struct nlattr *nla;
4036 int err;
4037
Jouni Malinendf881292013-02-14 21:10:54 +02004038 /* parse WME attributes if present */
4039 if (!info->attrs[NL80211_ATTR_STA_WME])
4040 return 0;
4041
4042 nla = info->attrs[NL80211_ATTR_STA_WME];
4043 err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla,
4044 nl80211_sta_wme_policy);
4045 if (err)
4046 return err;
4047
4048 if (tb[NL80211_STA_WME_UAPSD_QUEUES])
4049 params->uapsd_queues = nla_get_u8(
4050 tb[NL80211_STA_WME_UAPSD_QUEUES]);
4051 if (params->uapsd_queues & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
4052 return -EINVAL;
4053
4054 if (tb[NL80211_STA_WME_MAX_SP])
4055 params->max_sp = nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
4056
4057 if (params->max_sp & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
4058 return -EINVAL;
4059
4060 params->sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
4061
4062 return 0;
4063}
4064
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304065static int nl80211_parse_sta_channel_info(struct genl_info *info,
4066 struct station_parameters *params)
4067{
4068 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]) {
4069 params->supported_channels =
4070 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
4071 params->supported_channels_len =
4072 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
4073 /*
4074 * Need to include at least one (first channel, number of
4075 * channels) tuple for each subband, and must have proper
4076 * tuples for the rest of the data as well.
4077 */
4078 if (params->supported_channels_len < 2)
4079 return -EINVAL;
4080 if (params->supported_channels_len % 2)
4081 return -EINVAL;
4082 }
4083
4084 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]) {
4085 params->supported_oper_classes =
4086 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
4087 params->supported_oper_classes_len =
4088 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
4089 /*
4090 * The value of the Length field of the Supported Operating
4091 * Classes element is between 2 and 253.
4092 */
4093 if (params->supported_oper_classes_len < 2 ||
4094 params->supported_oper_classes_len > 253)
4095 return -EINVAL;
4096 }
4097 return 0;
4098}
4099
Johannes Bergff276692013-02-15 00:09:01 +01004100static int nl80211_set_station_tdls(struct genl_info *info,
4101 struct station_parameters *params)
4102{
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304103 int err;
Johannes Bergff276692013-02-15 00:09:01 +01004104 /* Dummy STA entry gets updated once the peer capabilities are known */
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004105 if (info->attrs[NL80211_ATTR_PEER_AID])
4106 params->aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Johannes Bergff276692013-02-15 00:09:01 +01004107 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4108 params->ht_capa =
4109 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
4110 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4111 params->vht_capa =
4112 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4113
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304114 err = nl80211_parse_sta_channel_info(info, params);
4115 if (err)
4116 return err;
4117
Johannes Bergff276692013-02-15 00:09:01 +01004118 return nl80211_parse_sta_wme(info, params);
4119}
4120
Johannes Berg5727ef12007-12-19 02:03:34 +01004121static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
4122{
Johannes Berg4c476992010-10-04 21:36:35 +02004123 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02004124 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004125 struct station_parameters params;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004126 u8 *mac_addr;
4127 int err;
Johannes Berg5727ef12007-12-19 02:03:34 +01004128
4129 memset(&params, 0, sizeof(params));
4130
4131 params.listen_interval = -1;
4132
Johannes Berg77ee7c82013-02-15 00:48:33 +01004133 if (!rdev->ops->change_station)
4134 return -EOPNOTSUPP;
4135
Johannes Berg5727ef12007-12-19 02:03:34 +01004136 if (info->attrs[NL80211_ATTR_STA_AID])
4137 return -EINVAL;
4138
4139 if (!info->attrs[NL80211_ATTR_MAC])
4140 return -EINVAL;
4141
4142 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4143
4144 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
4145 params.supported_rates =
4146 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4147 params.supported_rates_len =
4148 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4149 }
4150
Jouni Malinen9d62a982013-02-14 21:10:13 +02004151 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4152 params.capability =
4153 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4154 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4155 }
4156
4157 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4158 params.ext_capab =
4159 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4160 params.ext_capab_len =
4161 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4162 }
4163
Jouni Malinendf881292013-02-14 21:10:54 +02004164 if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
Johannes Bergba23d202012-12-27 17:32:09 +01004165 return -EINVAL;
Jouni Malinen36aedc902008-08-25 11:58:58 +03004166
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004167 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004168 return -EINVAL;
4169
Johannes Bergf8bacc22013-02-14 23:27:01 +01004170 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004171 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004172 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4173 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4174 return -EINVAL;
4175 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004176
Johannes Bergf8bacc22013-02-14 23:27:01 +01004177 if (info->attrs[NL80211_ATTR_STA_PLINK_STATE]) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07004178 params.plink_state =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004179 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);
4180 if (params.plink_state >= NUM_NL80211_PLINK_STATES)
4181 return -EINVAL;
4182 params.sta_modify_mask |= STATION_PARAM_APPLY_PLINK_STATE;
4183 }
Javier Cardona9c3990a2011-05-03 16:57:11 -07004184
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004185 if (info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]) {
4186 enum nl80211_mesh_power_mode pm = nla_get_u32(
4187 info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]);
4188
4189 if (pm <= NL80211_MESH_POWER_UNKNOWN ||
4190 pm > NL80211_MESH_POWER_MAX)
4191 return -EINVAL;
4192
4193 params.local_pm = pm;
4194 }
4195
Johannes Berg77ee7c82013-02-15 00:48:33 +01004196 /* Include parameters for TDLS peer (will check later) */
4197 err = nl80211_set_station_tdls(info, &params);
4198 if (err)
4199 return err;
4200
4201 params.vlan = get_vlan(info, rdev);
4202 if (IS_ERR(params.vlan))
4203 return PTR_ERR(params.vlan);
4204
Johannes Berga97f4422009-06-18 17:23:43 +02004205 switch (dev->ieee80211_ptr->iftype) {
4206 case NL80211_IFTYPE_AP:
4207 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004208 case NL80211_IFTYPE_P2P_GO:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004209 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berga97f4422009-06-18 17:23:43 +02004210 case NL80211_IFTYPE_STATION:
Antonio Quartulli267335d2012-01-31 20:25:47 +01004211 case NL80211_IFTYPE_ADHOC:
Johannes Berga97f4422009-06-18 17:23:43 +02004212 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga97f4422009-06-18 17:23:43 +02004213 break;
4214 default:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004215 err = -EOPNOTSUPP;
4216 goto out_put_vlan;
Johannes Berg034d6552009-05-27 10:35:29 +02004217 }
4218
Johannes Berg77ee7c82013-02-15 00:48:33 +01004219 /* driver will call cfg80211_check_station_change() */
Hila Gonene35e4d22012-06-27 17:19:42 +03004220 err = rdev_change_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004221
Johannes Berg77ee7c82013-02-15 00:48:33 +01004222 out_put_vlan:
Johannes Berg5727ef12007-12-19 02:03:34 +01004223 if (params.vlan)
4224 dev_put(params.vlan);
Johannes Berg3b858752009-03-12 09:55:09 +01004225
Johannes Berg5727ef12007-12-19 02:03:34 +01004226 return err;
4227}
4228
4229static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
4230{
Johannes Berg4c476992010-10-04 21:36:35 +02004231 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg5727ef12007-12-19 02:03:34 +01004232 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004233 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004234 struct station_parameters params;
4235 u8 *mac_addr = NULL;
4236
4237 memset(&params, 0, sizeof(params));
4238
Johannes Berg984c3112013-02-14 23:43:25 +01004239 if (!rdev->ops->add_station)
4240 return -EOPNOTSUPP;
4241
Johannes Berg5727ef12007-12-19 02:03:34 +01004242 if (!info->attrs[NL80211_ATTR_MAC])
4243 return -EINVAL;
4244
Johannes Berg5727ef12007-12-19 02:03:34 +01004245 if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
4246 return -EINVAL;
4247
4248 if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
4249 return -EINVAL;
4250
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004251 if (!info->attrs[NL80211_ATTR_STA_AID] &&
4252 !info->attrs[NL80211_ATTR_PEER_AID])
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004253 return -EINVAL;
4254
Johannes Berg5727ef12007-12-19 02:03:34 +01004255 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4256 params.supported_rates =
4257 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4258 params.supported_rates_len =
4259 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4260 params.listen_interval =
4261 nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
Johannes Berg51b50fb2009-05-24 16:42:30 +02004262
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004263 if (info->attrs[NL80211_ATTR_PEER_AID])
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004264 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004265 else
4266 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004267 if (!params.aid || params.aid > IEEE80211_MAX_AID)
4268 return -EINVAL;
Johannes Berg51b50fb2009-05-24 16:42:30 +02004269
Jouni Malinen9d62a982013-02-14 21:10:13 +02004270 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4271 params.capability =
4272 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4273 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4274 }
4275
4276 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4277 params.ext_capab =
4278 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4279 params.ext_capab_len =
4280 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4281 }
4282
Jouni Malinen36aedc902008-08-25 11:58:58 +03004283 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4284 params.ht_capa =
4285 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
Johannes Berg5727ef12007-12-19 02:03:34 +01004286
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00004287 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4288 params.vht_capa =
4289 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4290
Marek Kwaczynski60f4a7b2013-12-03 10:04:59 +01004291 if (info->attrs[NL80211_ATTR_OPMODE_NOTIF]) {
4292 params.opmode_notif_used = true;
4293 params.opmode_notif =
4294 nla_get_u8(info->attrs[NL80211_ATTR_OPMODE_NOTIF]);
4295 }
4296
Johannes Bergf8bacc22013-02-14 23:27:01 +01004297 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Javier Cardona96b78df2011-04-07 15:08:33 -07004298 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004299 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4300 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4301 return -EINVAL;
4302 }
Javier Cardona96b78df2011-04-07 15:08:33 -07004303
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304304 err = nl80211_parse_sta_channel_info(info, &params);
4305 if (err)
4306 return err;
4307
Johannes Bergff276692013-02-15 00:09:01 +01004308 err = nl80211_parse_sta_wme(info, &params);
4309 if (err)
4310 return err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004311
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004312 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004313 return -EINVAL;
4314
Johannes Berg77ee7c82013-02-15 00:48:33 +01004315 /* When you run into this, adjust the code below for the new flag */
4316 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
4317
Johannes Bergbdd90d52011-12-14 12:20:27 +01004318 switch (dev->ieee80211_ptr->iftype) {
4319 case NL80211_IFTYPE_AP:
4320 case NL80211_IFTYPE_AP_VLAN:
4321 case NL80211_IFTYPE_P2P_GO:
Johannes Berg984c3112013-02-14 23:43:25 +01004322 /* ignore WME attributes if iface/sta is not capable */
4323 if (!(rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) ||
4324 !(params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)))
4325 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004326
Johannes Bergbdd90d52011-12-14 12:20:27 +01004327 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004328 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4329 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004330 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004331 /* but don't bother the driver with it */
4332 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
Eliad Pellerc75786c2011-08-23 14:37:46 +03004333
Johannes Bergd582cff2012-10-26 17:53:44 +02004334 /* allow authenticated/associated only if driver handles it */
4335 if (!(rdev->wiphy.features &
4336 NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
4337 params.sta_flags_mask &
4338 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4339 BIT(NL80211_STA_FLAG_ASSOCIATED)))
4340 return -EINVAL;
4341
Johannes Bergbdd90d52011-12-14 12:20:27 +01004342 /* must be last in here for error handling */
4343 params.vlan = get_vlan(info, rdev);
4344 if (IS_ERR(params.vlan))
4345 return PTR_ERR(params.vlan);
4346 break;
4347 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg984c3112013-02-14 23:43:25 +01004348 /* ignore uAPSD data */
4349 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4350
Johannes Bergd582cff2012-10-26 17:53:44 +02004351 /* associated is disallowed */
4352 if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
4353 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004354 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004355 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4356 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004357 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004358 break;
4359 case NL80211_IFTYPE_STATION:
Johannes Berg93d08f02013-03-04 09:29:46 +01004360 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg984c3112013-02-14 23:43:25 +01004361 /* ignore uAPSD data */
4362 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4363
Johannes Berg77ee7c82013-02-15 00:48:33 +01004364 /* these are disallowed */
4365 if (params.sta_flags_mask &
4366 (BIT(NL80211_STA_FLAG_ASSOCIATED) |
4367 BIT(NL80211_STA_FLAG_AUTHENTICATED)))
Johannes Bergd582cff2012-10-26 17:53:44 +02004368 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004369 /* Only TDLS peers can be added */
4370 if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4371 return -EINVAL;
4372 /* Can only add if TDLS ... */
4373 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS))
4374 return -EOPNOTSUPP;
4375 /* ... with external setup is supported */
4376 if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
4377 return -EOPNOTSUPP;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004378 /*
4379 * Older wpa_supplicant versions always mark the TDLS peer
4380 * as authorized, but it shouldn't yet be.
4381 */
4382 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_AUTHORIZED);
Johannes Bergbdd90d52011-12-14 12:20:27 +01004383 break;
4384 default:
4385 return -EOPNOTSUPP;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004386 }
4387
Johannes Bergbdd90d52011-12-14 12:20:27 +01004388 /* be aware of params.vlan when changing code here */
Johannes Berg5727ef12007-12-19 02:03:34 +01004389
Hila Gonene35e4d22012-06-27 17:19:42 +03004390 err = rdev_add_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004391
Johannes Berg5727ef12007-12-19 02:03:34 +01004392 if (params.vlan)
4393 dev_put(params.vlan);
Johannes Berg5727ef12007-12-19 02:03:34 +01004394 return err;
4395}
4396
4397static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
4398{
Johannes Berg4c476992010-10-04 21:36:35 +02004399 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4400 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004401 u8 *mac_addr = NULL;
4402
4403 if (info->attrs[NL80211_ATTR_MAC])
4404 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4405
Johannes Berge80cf852009-05-11 14:43:13 +02004406 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Marco Porschd5d9de02010-03-30 10:00:16 +02004407 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
Johannes Berg074ac8d2010-09-16 14:58:22 +02004408 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg4c476992010-10-04 21:36:35 +02004409 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4410 return -EINVAL;
Johannes Berge80cf852009-05-11 14:43:13 +02004411
Johannes Berg4c476992010-10-04 21:36:35 +02004412 if (!rdev->ops->del_station)
4413 return -EOPNOTSUPP;
Johannes Berg5727ef12007-12-19 02:03:34 +01004414
Hila Gonene35e4d22012-06-27 17:19:42 +03004415 return rdev_del_station(rdev, dev, mac_addr);
Johannes Berg5727ef12007-12-19 02:03:34 +01004416}
4417
Eric W. Biederman15e47302012-09-07 20:12:54 +00004418static int nl80211_send_mpath(struct sk_buff *msg, u32 portid, u32 seq,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004419 int flags, struct net_device *dev,
4420 u8 *dst, u8 *next_hop,
4421 struct mpath_info *pinfo)
4422{
4423 void *hdr;
4424 struct nlattr *pinfoattr;
4425
Eric W. Biederman15e47302012-09-07 20:12:54 +00004426 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004427 if (!hdr)
4428 return -1;
4429
David S. Miller9360ffd2012-03-29 04:41:26 -04004430 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4431 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) ||
4432 nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) ||
4433 nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation))
4434 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02004435
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004436 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
4437 if (!pinfoattr)
4438 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004439 if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) &&
4440 nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
4441 pinfo->frame_qlen))
4442 goto nla_put_failure;
4443 if (((pinfo->filled & MPATH_INFO_SN) &&
4444 nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) ||
4445 ((pinfo->filled & MPATH_INFO_METRIC) &&
4446 nla_put_u32(msg, NL80211_MPATH_INFO_METRIC,
4447 pinfo->metric)) ||
4448 ((pinfo->filled & MPATH_INFO_EXPTIME) &&
4449 nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME,
4450 pinfo->exptime)) ||
4451 ((pinfo->filled & MPATH_INFO_FLAGS) &&
4452 nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS,
4453 pinfo->flags)) ||
4454 ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) &&
4455 nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
4456 pinfo->discovery_timeout)) ||
4457 ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) &&
4458 nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
4459 pinfo->discovery_retries)))
4460 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004461
4462 nla_nest_end(msg, pinfoattr);
4463
4464 return genlmsg_end(msg, hdr);
4465
4466 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07004467 genlmsg_cancel(msg, hdr);
4468 return -EMSGSIZE;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004469}
4470
4471static int nl80211_dump_mpath(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004472 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004473{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004474 struct mpath_info pinfo;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004475 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02004476 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004477 u8 dst[ETH_ALEN];
4478 u8 next_hop[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02004479 int path_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004480 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004481
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004482 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02004483 if (err)
4484 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004485
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004486 if (!rdev->ops->dump_mpath) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004487 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004488 goto out_err;
4489 }
4490
Johannes Berg97990a02013-04-19 01:02:55 +02004491 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004492 err = -EOPNOTSUPP;
Roel Kluin0448b5f2009-08-22 21:15:49 +02004493 goto out_err;
Jouni Malineneec60b02009-03-20 21:21:19 +02004494 }
4495
Johannes Bergbba95fe2008-07-29 13:22:51 +02004496 while (1) {
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004497 err = rdev_dump_mpath(rdev, wdev->netdev, path_idx, dst,
Johannes Berg97990a02013-04-19 01:02:55 +02004498 next_hop, &pinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004499 if (err == -ENOENT)
4500 break;
4501 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01004502 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004503
Eric W. Biederman15e47302012-09-07 20:12:54 +00004504 if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004505 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02004506 wdev->netdev, dst, next_hop,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004507 &pinfo) < 0)
4508 goto out;
4509
4510 path_idx++;
4511 }
4512
4513
4514 out:
Johannes Berg97990a02013-04-19 01:02:55 +02004515 cb->args[2] = path_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004516 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004517 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08004518 nl80211_finish_wdev_dump(rdev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004519 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004520}
4521
4522static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
4523{
Johannes Berg4c476992010-10-04 21:36:35 +02004524 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004525 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004526 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004527 struct mpath_info pinfo;
4528 struct sk_buff *msg;
4529 u8 *dst = NULL;
4530 u8 next_hop[ETH_ALEN];
4531
4532 memset(&pinfo, 0, sizeof(pinfo));
4533
4534 if (!info->attrs[NL80211_ATTR_MAC])
4535 return -EINVAL;
4536
4537 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4538
Johannes Berg4c476992010-10-04 21:36:35 +02004539 if (!rdev->ops->get_mpath)
4540 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004541
Johannes Berg4c476992010-10-04 21:36:35 +02004542 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4543 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004544
Hila Gonene35e4d22012-06-27 17:19:42 +03004545 err = rdev_get_mpath(rdev, dev, dst, next_hop, &pinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004546 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004547 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004548
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004549 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004550 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02004551 return -ENOMEM;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004552
Eric W. Biederman15e47302012-09-07 20:12:54 +00004553 if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg4c476992010-10-04 21:36:35 +02004554 dev, dst, next_hop, &pinfo) < 0) {
4555 nlmsg_free(msg);
4556 return -ENOBUFS;
4557 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004558
Johannes Berg4c476992010-10-04 21:36:35 +02004559 return genlmsg_reply(msg, info);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004560}
4561
4562static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
4563{
Johannes Berg4c476992010-10-04 21:36:35 +02004564 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4565 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004566 u8 *dst = NULL;
4567 u8 *next_hop = NULL;
4568
4569 if (!info->attrs[NL80211_ATTR_MAC])
4570 return -EINVAL;
4571
4572 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4573 return -EINVAL;
4574
4575 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4576 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4577
Johannes Berg4c476992010-10-04 21:36:35 +02004578 if (!rdev->ops->change_mpath)
4579 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004580
Johannes Berg4c476992010-10-04 21:36:35 +02004581 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4582 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004583
Hila Gonene35e4d22012-06-27 17:19:42 +03004584 return rdev_change_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004585}
Johannes Berg4c476992010-10-04 21:36:35 +02004586
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004587static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
4588{
Johannes Berg4c476992010-10-04 21:36:35 +02004589 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4590 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004591 u8 *dst = NULL;
4592 u8 *next_hop = NULL;
4593
4594 if (!info->attrs[NL80211_ATTR_MAC])
4595 return -EINVAL;
4596
4597 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4598 return -EINVAL;
4599
4600 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4601 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4602
Johannes Berg4c476992010-10-04 21:36:35 +02004603 if (!rdev->ops->add_mpath)
4604 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004605
Johannes Berg4c476992010-10-04 21:36:35 +02004606 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4607 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004608
Hila Gonene35e4d22012-06-27 17:19:42 +03004609 return rdev_add_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004610}
4611
4612static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
4613{
Johannes Berg4c476992010-10-04 21:36:35 +02004614 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4615 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004616 u8 *dst = NULL;
4617
4618 if (info->attrs[NL80211_ATTR_MAC])
4619 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4620
Johannes Berg4c476992010-10-04 21:36:35 +02004621 if (!rdev->ops->del_mpath)
4622 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004623
Hila Gonene35e4d22012-06-27 17:19:42 +03004624 return rdev_del_mpath(rdev, dev, dst);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004625}
4626
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004627static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
4628{
Johannes Berg4c476992010-10-04 21:36:35 +02004629 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4630 struct net_device *dev = info->user_ptr[1];
Simon Wunderlichc56589e2013-11-21 18:19:49 +01004631 struct wireless_dev *wdev = dev->ieee80211_ptr;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004632 struct bss_parameters params;
Simon Wunderlichc56589e2013-11-21 18:19:49 +01004633 int err;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004634
4635 memset(&params, 0, sizeof(params));
4636 /* default to not changing parameters */
4637 params.use_cts_prot = -1;
4638 params.use_short_preamble = -1;
4639 params.use_short_slot_time = -1;
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004640 params.ap_isolate = -1;
Helmut Schaa50b12f52010-11-19 12:40:25 +01004641 params.ht_opmode = -1;
Johannes Berg53cabad2012-11-14 15:17:28 +01004642 params.p2p_ctwindow = -1;
4643 params.p2p_opp_ps = -1;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004644
4645 if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
4646 params.use_cts_prot =
4647 nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
4648 if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
4649 params.use_short_preamble =
4650 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
4651 if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
4652 params.use_short_slot_time =
4653 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
Jouni Malinen90c97a02008-10-30 16:59:22 +02004654 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
4655 params.basic_rates =
4656 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4657 params.basic_rates_len =
4658 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4659 }
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004660 if (info->attrs[NL80211_ATTR_AP_ISOLATE])
4661 params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
Helmut Schaa50b12f52010-11-19 12:40:25 +01004662 if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
4663 params.ht_opmode =
4664 nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004665
Johannes Berg53cabad2012-11-14 15:17:28 +01004666 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
4667 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4668 return -EINVAL;
4669 params.p2p_ctwindow =
4670 nla_get_s8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
4671 if (params.p2p_ctwindow < 0)
4672 return -EINVAL;
4673 if (params.p2p_ctwindow != 0 &&
4674 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
4675 return -EINVAL;
4676 }
4677
4678 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
4679 u8 tmp;
4680
4681 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4682 return -EINVAL;
4683 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
4684 if (tmp > 1)
4685 return -EINVAL;
4686 params.p2p_opp_ps = tmp;
4687 if (params.p2p_opp_ps &&
4688 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
4689 return -EINVAL;
4690 }
4691
Johannes Berg4c476992010-10-04 21:36:35 +02004692 if (!rdev->ops->change_bss)
4693 return -EOPNOTSUPP;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004694
Johannes Berg074ac8d2010-09-16 14:58:22 +02004695 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Johannes Berg4c476992010-10-04 21:36:35 +02004696 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4697 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004698
Simon Wunderlichc56589e2013-11-21 18:19:49 +01004699 wdev_lock(wdev);
4700 err = rdev_change_bss(rdev, dev, &params);
4701 wdev_unlock(wdev);
4702
4703 return err;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004704}
4705
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004706static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004707 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
4708 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
4709 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
4710 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
4711 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
4712 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
Janusz Dziedzic089027e2014-02-21 19:46:12 +01004713 [NL80211_ATTR_DFS_CAC_TIME] = { .type = NLA_U32 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004714};
4715
4716static int parse_reg_rule(struct nlattr *tb[],
4717 struct ieee80211_reg_rule *reg_rule)
4718{
4719 struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
4720 struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;
4721
4722 if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
4723 return -EINVAL;
4724 if (!tb[NL80211_ATTR_FREQ_RANGE_START])
4725 return -EINVAL;
4726 if (!tb[NL80211_ATTR_FREQ_RANGE_END])
4727 return -EINVAL;
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01004728 if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
4729 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004730 if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
4731 return -EINVAL;
4732
4733 reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);
4734
4735 freq_range->start_freq_khz =
4736 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
4737 freq_range->end_freq_khz =
4738 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
Janusz Dziedzicb0dfd2e2014-02-20 13:52:16 +01004739 freq_range->max_bandwidth_khz =
4740 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004741
4742 power_rule->max_eirp =
4743 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);
4744
4745 if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
4746 power_rule->max_antenna_gain =
4747 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);
4748
Janusz Dziedzic089027e2014-02-21 19:46:12 +01004749 if (tb[NL80211_ATTR_DFS_CAC_TIME])
4750 reg_rule->dfs_cac_ms =
4751 nla_get_u32(tb[NL80211_ATTR_DFS_CAC_TIME]);
4752
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004753 return 0;
4754}
4755
4756static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
4757{
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004758 char *data = NULL;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004759 enum nl80211_user_reg_hint_type user_reg_hint_type;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004760
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004761 /*
4762 * You should only get this when cfg80211 hasn't yet initialized
4763 * completely when built-in to the kernel right between the time
4764 * window between nl80211_init() and regulatory_init(), if that is
4765 * even possible.
4766 */
Johannes Berg458f4f92012-12-06 15:47:38 +01004767 if (unlikely(!rcu_access_pointer(cfg80211_regdomain)))
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004768 return -EINPROGRESS;
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004769
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004770 if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE])
4771 user_reg_hint_type =
4772 nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]);
4773 else
4774 user_reg_hint_type = NL80211_USER_REG_HINT_USER;
4775
4776 switch (user_reg_hint_type) {
4777 case NL80211_USER_REG_HINT_USER:
4778 case NL80211_USER_REG_HINT_CELL_BASE:
Ilan Peer52616f22014-02-25 16:26:00 +02004779 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
4780 return -EINVAL;
4781
4782 data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
4783 return regulatory_hint_user(data, user_reg_hint_type);
4784 case NL80211_USER_REG_HINT_INDOOR:
4785 return regulatory_hint_indoor_user();
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004786 default:
4787 return -EINVAL;
4788 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004789}
4790
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004791static int nl80211_get_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004792 struct genl_info *info)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004793{
Johannes Berg4c476992010-10-04 21:36:35 +02004794 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02004795 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004796 struct wireless_dev *wdev = dev->ieee80211_ptr;
4797 struct mesh_config cur_params;
4798 int err = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004799 void *hdr;
4800 struct nlattr *pinfoattr;
4801 struct sk_buff *msg;
4802
Johannes Berg29cbe682010-12-03 09:20:44 +01004803 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4804 return -EOPNOTSUPP;
4805
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004806 if (!rdev->ops->get_mesh_config)
Johannes Berg4c476992010-10-04 21:36:35 +02004807 return -EOPNOTSUPP;
Jouni Malinenf3f92582009-03-20 17:57:36 +02004808
Johannes Berg29cbe682010-12-03 09:20:44 +01004809 wdev_lock(wdev);
4810 /* If not connected, get default parameters */
4811 if (!wdev->mesh_id_len)
4812 memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
4813 else
Hila Gonene35e4d22012-06-27 17:19:42 +03004814 err = rdev_get_mesh_config(rdev, dev, &cur_params);
Johannes Berg29cbe682010-12-03 09:20:44 +01004815 wdev_unlock(wdev);
4816
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004817 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004818 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004819
4820 /* Draw up a netlink message to send back */
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004821 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02004822 if (!msg)
4823 return -ENOMEM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00004824 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004825 NL80211_CMD_GET_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004826 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01004827 goto out;
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004828 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004829 if (!pinfoattr)
4830 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004831 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4832 nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
4833 cur_params.dot11MeshRetryTimeout) ||
4834 nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4835 cur_params.dot11MeshConfirmTimeout) ||
4836 nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
4837 cur_params.dot11MeshHoldingTimeout) ||
4838 nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
4839 cur_params.dot11MeshMaxPeerLinks) ||
4840 nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES,
4841 cur_params.dot11MeshMaxRetries) ||
4842 nla_put_u8(msg, NL80211_MESHCONF_TTL,
4843 cur_params.dot11MeshTTL) ||
4844 nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL,
4845 cur_params.element_ttl) ||
4846 nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4847 cur_params.auto_open_plinks) ||
John W. Linville7eab0f62012-04-12 14:25:14 -04004848 nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4849 cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04004850 nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4851 cur_params.dot11MeshHWMPmaxPREQretries) ||
4852 nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
4853 cur_params.path_refresh_time) ||
4854 nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4855 cur_params.min_discovery_timeout) ||
4856 nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4857 cur_params.dot11MeshHWMPactivePathTimeout) ||
4858 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
4859 cur_params.dot11MeshHWMPpreqMinInterval) ||
4860 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
4861 cur_params.dot11MeshHWMPperrMinInterval) ||
4862 nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4863 cur_params.dot11MeshHWMPnetDiameterTraversalTime) ||
4864 nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE,
4865 cur_params.dot11MeshHWMPRootMode) ||
4866 nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
4867 cur_params.dot11MeshHWMPRannInterval) ||
4868 nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
4869 cur_params.dot11MeshGateAnnouncementProtocol) ||
4870 nla_put_u8(msg, NL80211_MESHCONF_FORWARDING,
4871 cur_params.dot11MeshForwarding) ||
4872 nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD,
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07004873 cur_params.rssi_threshold) ||
4874 nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004875 cur_params.ht_opmode) ||
4876 nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4877 cur_params.dot11MeshHWMPactivePathToRootTimeout) ||
4878 nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004879 cur_params.dot11MeshHWMProotInterval) ||
4880 nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004881 cur_params.dot11MeshHWMPconfirmationInterval) ||
4882 nla_put_u32(msg, NL80211_MESHCONF_POWER_MODE,
4883 cur_params.power_mode) ||
4884 nla_put_u16(msg, NL80211_MESHCONF_AWAKE_WINDOW,
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004885 cur_params.dot11MeshAwakeWindowDuration) ||
4886 nla_put_u32(msg, NL80211_MESHCONF_PLINK_TIMEOUT,
4887 cur_params.plink_timeout))
David S. Miller9360ffd2012-03-29 04:41:26 -04004888 goto nla_put_failure;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004889 nla_nest_end(msg, pinfoattr);
4890 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02004891 return genlmsg_reply(msg, info);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004892
Johannes Berg3b858752009-03-12 09:55:09 +01004893 nla_put_failure:
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004894 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01004895 out:
Yuri Ershovd080e272010-06-29 15:08:07 +04004896 nlmsg_free(msg);
Johannes Berg4c476992010-10-04 21:36:35 +02004897 return -ENOBUFS;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004898}
4899
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004900static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004901 [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
4902 [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
4903 [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
4904 [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
4905 [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
4906 [NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
Javier Cardona45904f22010-12-03 09:20:40 +01004907 [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004908 [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
Javier Cardonad299a1f2012-03-31 11:31:33 -07004909 [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004910 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
4911 [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
4912 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
4913 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
4914 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
Thomas Pedersendca7e942011-11-24 17:15:24 -08004915 [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004916 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
Javier Cardona699403d2011-08-09 16:45:09 -07004917 [NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
Javier Cardona0507e152011-08-09 16:45:10 -07004918 [NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
Javier Cardona16dd7262011-08-09 16:45:11 -07004919 [NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08004920 [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004921 [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
4922 [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004923 [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
4924 [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004925 [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004926 [NL80211_MESHCONF_POWER_MODE] = { .type = NLA_U32 },
4927 [NL80211_MESHCONF_AWAKE_WINDOW] = { .type = NLA_U16 },
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004928 [NL80211_MESHCONF_PLINK_TIMEOUT] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004929};
4930
Javier Cardonac80d5452010-12-16 17:37:49 -08004931static const struct nla_policy
4932 nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
Javier Cardonad299a1f2012-03-31 11:31:33 -07004933 [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
Javier Cardonac80d5452010-12-16 17:37:49 -08004934 [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
4935 [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
Javier Cardona15d5dda2011-04-07 15:08:28 -07004936 [NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
Colleen Twitty6e16d902013-05-08 11:45:59 -07004937 [NL80211_MESH_SETUP_AUTH_PROTOCOL] = { .type = NLA_U8 },
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004938 [NL80211_MESH_SETUP_USERSPACE_MPM] = { .type = NLA_FLAG },
Javier Cardona581a8b02011-04-07 15:08:27 -07004939 [NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004940 .len = IEEE80211_MAX_DATA_LEN },
Javier Cardonab130e5c2011-05-03 16:57:07 -07004941 [NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
Javier Cardonac80d5452010-12-16 17:37:49 -08004942};
4943
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004944static int nl80211_parse_mesh_config(struct genl_info *info,
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004945 struct mesh_config *cfg,
4946 u32 *mask_out)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004947{
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004948 struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004949 u32 mask = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004950
Marco Porschea54fba2013-01-07 16:04:48 +01004951#define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
4952do { \
4953 if (tb[attr]) { \
4954 if (fn(tb[attr]) < min || fn(tb[attr]) > max) \
4955 return -EINVAL; \
4956 cfg->param = fn(tb[attr]); \
4957 mask |= (1 << (attr - 1)); \
4958 } \
4959} while (0)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004960
4961
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004962 if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004963 return -EINVAL;
4964 if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004965 info->attrs[NL80211_ATTR_MESH_CONFIG],
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004966 nl80211_meshconf_params_policy))
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004967 return -EINVAL;
4968
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004969 /* This makes sure that there aren't more than 32 mesh config
4970 * parameters (otherwise our bitfield scheme would not work.) */
4971 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);
4972
4973 /* Fill in the params struct */
Marco Porschea54fba2013-01-07 16:04:48 +01004974 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004975 mask, NL80211_MESHCONF_RETRY_TIMEOUT,
4976 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004977 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004978 mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4979 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004980 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004981 mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
4982 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004983 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004984 mask, NL80211_MESHCONF_MAX_PEER_LINKS,
4985 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004986 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004987 mask, NL80211_MESHCONF_MAX_RETRIES,
4988 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004989 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004990 mask, NL80211_MESHCONF_TTL, nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004991 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004992 mask, NL80211_MESHCONF_ELEMENT_TTL,
4993 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004994 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004995 mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4996 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004997 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor,
4998 1, 255, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004999 NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
5000 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01005001 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005002 mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
5003 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005004 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005005 mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
5006 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01005007 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005008 mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
5009 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005010 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
5011 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005012 NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
5013 nla_get_u32);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005014 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01005015 1, 65535, mask,
5016 NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005017 nla_get_u16);
Thomas Pedersendca7e942011-11-24 17:15:24 -08005018 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01005019 1, 65535, mask,
5020 NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005021 nla_get_u16);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005022 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01005023 dot11MeshHWMPnetDiameterTraversalTime,
5024 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005025 NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
5026 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01005027 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, 0, 4,
5028 mask, NL80211_MESHCONF_HWMP_ROOTMODE,
5029 nla_get_u8);
5030 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, 1, 65535,
5031 mask, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005032 nla_get_u16);
Rui Paulo63c57232009-11-09 23:46:57 +00005033 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01005034 dot11MeshGateAnnouncementProtocol, 0, 1,
5035 mask, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005036 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01005037 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005038 mask, NL80211_MESHCONF_FORWARDING,
5039 nla_get_u8);
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08005040 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, -255, 0,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005041 mask, NL80211_MESHCONF_RSSI_THRESHOLD,
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08005042 nla_get_s32);
Marco Porschea54fba2013-01-07 16:04:48 +01005043 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08005044 mask, NL80211_MESHCONF_HT_OPMODE,
5045 nla_get_u16);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005046 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
Marco Porschea54fba2013-01-07 16:04:48 +01005047 1, 65535, mask,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005048 NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
5049 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01005050 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, 1, 65535,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08005051 mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
5052 nla_get_u16);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08005053 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01005054 dot11MeshHWMPconfirmationInterval,
5055 1, 65535, mask,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08005056 NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
5057 nla_get_u16);
Marco Porsch3b1c5a52013-01-07 16:04:52 +01005058 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, power_mode,
5059 NL80211_MESH_POWER_ACTIVE,
5060 NL80211_MESH_POWER_MAX,
5061 mask, NL80211_MESHCONF_POWER_MODE,
5062 nla_get_u32);
5063 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshAwakeWindowDuration,
5064 0, 65535, mask,
5065 NL80211_MESHCONF_AWAKE_WINDOW, nla_get_u16);
Colleen Twitty8e7c0532013-06-03 09:53:39 -07005066 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, plink_timeout, 1, 0xffffffff,
5067 mask, NL80211_MESHCONF_PLINK_TIMEOUT,
5068 nla_get_u32);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005069 if (mask_out)
5070 *mask_out = mask;
Javier Cardonac80d5452010-12-16 17:37:49 -08005071
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005072 return 0;
5073
5074#undef FILL_IN_MESH_PARAM_IF_SET
5075}
5076
Javier Cardonac80d5452010-12-16 17:37:49 -08005077static int nl80211_parse_mesh_setup(struct genl_info *info,
5078 struct mesh_setup *setup)
5079{
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005080 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Javier Cardonac80d5452010-12-16 17:37:49 -08005081 struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1];
5082
5083 if (!info->attrs[NL80211_ATTR_MESH_SETUP])
5084 return -EINVAL;
5085 if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX,
5086 info->attrs[NL80211_ATTR_MESH_SETUP],
5087 nl80211_mesh_setup_params_policy))
5088 return -EINVAL;
5089
Javier Cardonad299a1f2012-03-31 11:31:33 -07005090 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])
5091 setup->sync_method =
5092 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ?
5093 IEEE80211_SYNC_METHOD_VENDOR :
5094 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET;
5095
Javier Cardonac80d5452010-12-16 17:37:49 -08005096 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])
5097 setup->path_sel_proto =
5098 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ?
5099 IEEE80211_PATH_PROTOCOL_VENDOR :
5100 IEEE80211_PATH_PROTOCOL_HWMP;
5101
5102 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])
5103 setup->path_metric =
5104 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ?
5105 IEEE80211_PATH_METRIC_VENDOR :
5106 IEEE80211_PATH_METRIC_AIRTIME;
5107
Javier Cardona581a8b02011-04-07 15:08:27 -07005108
5109 if (tb[NL80211_MESH_SETUP_IE]) {
Javier Cardonac80d5452010-12-16 17:37:49 -08005110 struct nlattr *ieattr =
Javier Cardona581a8b02011-04-07 15:08:27 -07005111 tb[NL80211_MESH_SETUP_IE];
Javier Cardonac80d5452010-12-16 17:37:49 -08005112 if (!is_valid_ie_attr(ieattr))
5113 return -EINVAL;
Javier Cardona581a8b02011-04-07 15:08:27 -07005114 setup->ie = nla_data(ieattr);
5115 setup->ie_len = nla_len(ieattr);
Javier Cardonac80d5452010-12-16 17:37:49 -08005116 }
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005117 if (tb[NL80211_MESH_SETUP_USERSPACE_MPM] &&
5118 !(rdev->wiphy.features & NL80211_FEATURE_USERSPACE_MPM))
5119 return -EINVAL;
5120 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]);
Javier Cardonab130e5c2011-05-03 16:57:07 -07005121 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
5122 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08005123 if (setup->is_secure)
5124 setup->user_mpm = true;
Javier Cardonac80d5452010-12-16 17:37:49 -08005125
Colleen Twitty6e16d902013-05-08 11:45:59 -07005126 if (tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]) {
5127 if (!setup->user_mpm)
5128 return -EINVAL;
5129 setup->auth_id =
5130 nla_get_u8(tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]);
5131 }
5132
Javier Cardonac80d5452010-12-16 17:37:49 -08005133 return 0;
5134}
5135
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005136static int nl80211_update_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01005137 struct genl_info *info)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005138{
5139 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5140 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01005141 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005142 struct mesh_config cfg;
5143 u32 mask;
5144 int err;
5145
Johannes Berg29cbe682010-12-03 09:20:44 +01005146 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
5147 return -EOPNOTSUPP;
5148
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005149 if (!rdev->ops->update_mesh_config)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005150 return -EOPNOTSUPP;
5151
Javier Cardona24bdd9f2010-12-16 17:37:48 -08005152 err = nl80211_parse_mesh_config(info, &cfg, &mask);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01005153 if (err)
5154 return err;
5155
Johannes Berg29cbe682010-12-03 09:20:44 +01005156 wdev_lock(wdev);
5157 if (!wdev->mesh_id_len)
5158 err = -ENOLINK;
5159
5160 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03005161 err = rdev_update_mesh_config(rdev, dev, mask, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01005162
5163 wdev_unlock(wdev);
5164
5165 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005166}
5167
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005168static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
5169{
Johannes Berg458f4f92012-12-06 15:47:38 +01005170 const struct ieee80211_regdomain *regdom;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005171 struct sk_buff *msg;
5172 void *hdr = NULL;
5173 struct nlattr *nl_reg_rules;
5174 unsigned int i;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005175
5176 if (!cfg80211_regdomain)
Johannes Berg5fe231e2013-05-08 21:45:15 +02005177 return -EINVAL;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005178
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07005179 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005180 if (!msg)
5181 return -ENOBUFS;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005182
Eric W. Biederman15e47302012-09-07 20:12:54 +00005183 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005184 NL80211_CMD_GET_REG);
5185 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01005186 goto put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005187
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07005188 if (reg_last_request_cell_base() &&
5189 nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
5190 NL80211_USER_REG_HINT_CELL_BASE))
5191 goto nla_put_failure;
5192
Johannes Berg458f4f92012-12-06 15:47:38 +01005193 rcu_read_lock();
5194 regdom = rcu_dereference(cfg80211_regdomain);
5195
5196 if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, regdom->alpha2) ||
5197 (regdom->dfs_region &&
5198 nla_put_u8(msg, NL80211_ATTR_DFS_REGION, regdom->dfs_region)))
5199 goto nla_put_failure_rcu;
5200
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005201 nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
5202 if (!nl_reg_rules)
Johannes Berg458f4f92012-12-06 15:47:38 +01005203 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005204
Johannes Berg458f4f92012-12-06 15:47:38 +01005205 for (i = 0; i < regdom->n_reg_rules; i++) {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005206 struct nlattr *nl_reg_rule;
5207 const struct ieee80211_reg_rule *reg_rule;
5208 const struct ieee80211_freq_range *freq_range;
5209 const struct ieee80211_power_rule *power_rule;
Janusz Dziedzic97524822014-01-30 09:52:20 +01005210 unsigned int max_bandwidth_khz;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005211
Johannes Berg458f4f92012-12-06 15:47:38 +01005212 reg_rule = &regdom->reg_rules[i];
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005213 freq_range = &reg_rule->freq_range;
5214 power_rule = &reg_rule->power_rule;
5215
5216 nl_reg_rule = nla_nest_start(msg, i);
5217 if (!nl_reg_rule)
Johannes Berg458f4f92012-12-06 15:47:38 +01005218 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005219
Janusz Dziedzic97524822014-01-30 09:52:20 +01005220 max_bandwidth_khz = freq_range->max_bandwidth_khz;
5221 if (!max_bandwidth_khz)
5222 max_bandwidth_khz = reg_get_max_bandwidth(regdom,
5223 reg_rule);
5224
David S. Miller9360ffd2012-03-29 04:41:26 -04005225 if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS,
5226 reg_rule->flags) ||
5227 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START,
5228 freq_range->start_freq_khz) ||
5229 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END,
5230 freq_range->end_freq_khz) ||
5231 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
Janusz Dziedzic97524822014-01-30 09:52:20 +01005232 max_bandwidth_khz) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005233 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
5234 power_rule->max_antenna_gain) ||
5235 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
Janusz Dziedzic089027e2014-02-21 19:46:12 +01005236 power_rule->max_eirp) ||
5237 nla_put_u32(msg, NL80211_ATTR_DFS_CAC_TIME,
5238 reg_rule->dfs_cac_ms))
Johannes Berg458f4f92012-12-06 15:47:38 +01005239 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005240
5241 nla_nest_end(msg, nl_reg_rule);
5242 }
Johannes Berg458f4f92012-12-06 15:47:38 +01005243 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005244
5245 nla_nest_end(msg, nl_reg_rules);
5246
5247 genlmsg_end(msg, hdr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005248 return genlmsg_reply(msg, info);
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005249
Johannes Berg458f4f92012-12-06 15:47:38 +01005250nla_put_failure_rcu:
5251 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005252nla_put_failure:
5253 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01005254put_failure:
Yuri Ershovd080e272010-06-29 15:08:07 +04005255 nlmsg_free(msg);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005256 return -EMSGSIZE;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005257}
5258
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005259static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
5260{
5261 struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
5262 struct nlattr *nl_reg_rule;
5263 char *alpha2 = NULL;
5264 int rem_reg_rules = 0, r = 0;
5265 u32 num_rules = 0, rule_idx = 0, size_of_regd;
Luis R. Rodriguez4c7d3982013-11-13 18:54:02 +01005266 enum nl80211_dfs_regions dfs_region = NL80211_DFS_UNSET;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005267 struct ieee80211_regdomain *rd = NULL;
5268
5269 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
5270 return -EINVAL;
5271
5272 if (!info->attrs[NL80211_ATTR_REG_RULES])
5273 return -EINVAL;
5274
5275 alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
5276
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005277 if (info->attrs[NL80211_ATTR_DFS_REGION])
5278 dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);
5279
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005280 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005281 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005282 num_rules++;
5283 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
Luis R. Rodriguez4776c6e2009-05-13 17:04:39 -04005284 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005285 }
5286
Luis R. Rodrigueze4387682013-11-05 09:18:01 -08005287 if (!reg_is_valid_request(alpha2))
5288 return -EINVAL;
5289
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005290 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg1a919312012-12-03 17:21:11 +01005291 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005292
5293 rd = kzalloc(size_of_regd, GFP_KERNEL);
Johannes Berg6913b492012-12-04 00:48:59 +01005294 if (!rd)
5295 return -ENOMEM;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005296
5297 rd->n_reg_rules = num_rules;
5298 rd->alpha2[0] = alpha2[0];
5299 rd->alpha2[1] = alpha2[1];
5300
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005301 /*
5302 * Disable DFS master mode if the DFS region was
5303 * not supported or known on this kernel.
5304 */
5305 if (reg_supported_dfs_region(dfs_region))
5306 rd->dfs_region = dfs_region;
5307
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005308 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005309 rem_reg_rules) {
Johannes Bergae811e22014-01-24 10:17:47 +01005310 r = nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
5311 nla_data(nl_reg_rule), nla_len(nl_reg_rule),
5312 reg_rule_policy);
5313 if (r)
5314 goto bad_reg;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005315 r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
5316 if (r)
5317 goto bad_reg;
5318
5319 rule_idx++;
5320
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005321 if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
5322 r = -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005323 goto bad_reg;
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005324 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005325 }
5326
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005327 r = set_regdom(rd);
Johannes Berg6913b492012-12-04 00:48:59 +01005328 /* set_regdom took ownership */
Johannes Berg1a919312012-12-03 17:21:11 +01005329 rd = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005330
Johannes Bergd2372b32008-10-24 20:32:20 +02005331 bad_reg:
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005332 kfree(rd);
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005333 return r;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005334}
5335
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005336static int validate_scan_freqs(struct nlattr *freqs)
5337{
5338 struct nlattr *attr1, *attr2;
5339 int n_channels = 0, tmp1, tmp2;
5340
5341 nla_for_each_nested(attr1, freqs, tmp1) {
5342 n_channels++;
5343 /*
5344 * Some hardware has a limited channel list for
5345 * scanning, and it is pretty much nonsensical
5346 * to scan for a channel twice, so disallow that
5347 * and don't require drivers to check that the
5348 * channel list they get isn't longer than what
5349 * they can scan, as long as they can scan all
5350 * the channels they registered at once.
5351 */
5352 nla_for_each_nested(attr2, freqs, tmp2)
5353 if (attr1 != attr2 &&
5354 nla_get_u32(attr1) == nla_get_u32(attr2))
5355 return 0;
5356 }
5357
5358 return n_channels;
5359}
5360
Johannes Berg2a519312009-02-10 21:25:55 +01005361static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
5362{
Johannes Berg4c476992010-10-04 21:36:35 +02005363 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfd014282012-06-18 19:17:03 +02005364 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2a519312009-02-10 21:25:55 +01005365 struct cfg80211_scan_request *request;
Johannes Berg2a519312009-02-10 21:25:55 +01005366 struct nlattr *attr;
5367 struct wiphy *wiphy;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005368 int err, tmp, n_ssids = 0, n_channels, i;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005369 size_t ie_len;
Johannes Berg2a519312009-02-10 21:25:55 +01005370
Johannes Bergf4a11bb2009-03-27 12:40:28 +01005371 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5372 return -EINVAL;
5373
Johannes Berg79c97e92009-07-07 03:56:12 +02005374 wiphy = &rdev->wiphy;
Johannes Berg2a519312009-02-10 21:25:55 +01005375
Johannes Berg4c476992010-10-04 21:36:35 +02005376 if (!rdev->ops->scan)
5377 return -EOPNOTSUPP;
Johannes Berg2a519312009-02-10 21:25:55 +01005378
Johannes Bergf9d15d12014-01-22 11:14:19 +02005379 if (rdev->scan_req || rdev->scan_msg) {
Johannes Bergf9f47522013-03-19 15:04:07 +01005380 err = -EBUSY;
5381 goto unlock;
5382 }
Johannes Berg2a519312009-02-10 21:25:55 +01005383
5384 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005385 n_channels = validate_scan_freqs(
5386 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
Johannes Bergf9f47522013-03-19 15:04:07 +01005387 if (!n_channels) {
5388 err = -EINVAL;
5389 goto unlock;
5390 }
Johannes Berg2a519312009-02-10 21:25:55 +01005391 } else {
Ilan Peerbdfbec22014-01-09 11:37:23 +02005392 n_channels = ieee80211_get_num_supported_channels(wiphy);
Johannes Berg2a519312009-02-10 21:25:55 +01005393 }
5394
5395 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5396 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
5397 n_ssids++;
5398
Johannes Bergf9f47522013-03-19 15:04:07 +01005399 if (n_ssids > wiphy->max_scan_ssids) {
5400 err = -EINVAL;
5401 goto unlock;
5402 }
Johannes Berg2a519312009-02-10 21:25:55 +01005403
Jouni Malinen70692ad2009-02-16 19:39:13 +02005404 if (info->attrs[NL80211_ATTR_IE])
5405 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5406 else
5407 ie_len = 0;
5408
Johannes Bergf9f47522013-03-19 15:04:07 +01005409 if (ie_len > wiphy->max_scan_ie_len) {
5410 err = -EINVAL;
5411 goto unlock;
5412 }
Johannes Berg18a83652009-03-31 12:12:05 +02005413
Johannes Berg2a519312009-02-10 21:25:55 +01005414 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005415 + sizeof(*request->ssids) * n_ssids
5416 + sizeof(*request->channels) * n_channels
Jouni Malinen70692ad2009-02-16 19:39:13 +02005417 + ie_len, GFP_KERNEL);
Johannes Bergf9f47522013-03-19 15:04:07 +01005418 if (!request) {
5419 err = -ENOMEM;
5420 goto unlock;
5421 }
Johannes Berg2a519312009-02-10 21:25:55 +01005422
Johannes Berg2a519312009-02-10 21:25:55 +01005423 if (n_ssids)
Johannes Berg5ba63532009-08-07 17:54:07 +02005424 request->ssids = (void *)&request->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01005425 request->n_ssids = n_ssids;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005426 if (ie_len) {
5427 if (request->ssids)
5428 request->ie = (void *)(request->ssids + n_ssids);
5429 else
5430 request->ie = (void *)(request->channels + n_channels);
5431 }
Johannes Berg2a519312009-02-10 21:25:55 +01005432
Johannes Berg584991d2009-11-02 13:32:03 +01005433 i = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005434 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5435 /* user specified, bail out if channel not found */
Johannes Berg2a519312009-02-10 21:25:55 +01005436 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
Johannes Berg584991d2009-11-02 13:32:03 +01005437 struct ieee80211_channel *chan;
5438
5439 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5440
5441 if (!chan) {
Johannes Berg2a519312009-02-10 21:25:55 +01005442 err = -EINVAL;
5443 goto out_free;
5444 }
Johannes Berg584991d2009-11-02 13:32:03 +01005445
5446 /* ignore disabled channels */
5447 if (chan->flags & IEEE80211_CHAN_DISABLED)
5448 continue;
5449
5450 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005451 i++;
5452 }
5453 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005454 enum ieee80211_band band;
5455
Johannes Berg2a519312009-02-10 21:25:55 +01005456 /* all channels */
Johannes Berg2a519312009-02-10 21:25:55 +01005457 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5458 int j;
5459 if (!wiphy->bands[band])
5460 continue;
5461 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01005462 struct ieee80211_channel *chan;
5463
5464 chan = &wiphy->bands[band]->channels[j];
5465
5466 if (chan->flags & IEEE80211_CHAN_DISABLED)
5467 continue;
5468
5469 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005470 i++;
5471 }
5472 }
5473 }
5474
Johannes Berg584991d2009-11-02 13:32:03 +01005475 if (!i) {
5476 err = -EINVAL;
5477 goto out_free;
5478 }
5479
5480 request->n_channels = i;
5481
Johannes Berg2a519312009-02-10 21:25:55 +01005482 i = 0;
5483 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5484 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005485 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Johannes Berg2a519312009-02-10 21:25:55 +01005486 err = -EINVAL;
5487 goto out_free;
5488 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005489 request->ssids[i].ssid_len = nla_len(attr);
Johannes Berg2a519312009-02-10 21:25:55 +01005490 memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
Johannes Berg2a519312009-02-10 21:25:55 +01005491 i++;
5492 }
5493 }
5494
Jouni Malinen70692ad2009-02-16 19:39:13 +02005495 if (info->attrs[NL80211_ATTR_IE]) {
5496 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Johannes Bergde95a542009-04-01 11:58:36 +02005497 memcpy((void *)request->ie,
5498 nla_data(info->attrs[NL80211_ATTR_IE]),
Jouni Malinen70692ad2009-02-16 19:39:13 +02005499 request->ie_len);
5500 }
5501
Johannes Berg34850ab2011-07-18 18:08:35 +02005502 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02005503 if (wiphy->bands[i])
5504 request->rates[i] =
5505 (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02005506
5507 if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) {
5508 nla_for_each_nested(attr,
5509 info->attrs[NL80211_ATTR_SCAN_SUPP_RATES],
5510 tmp) {
5511 enum ieee80211_band band = nla_type(attr);
5512
Dan Carpenter84404622011-07-29 11:52:18 +03005513 if (band < 0 || band >= IEEE80211_NUM_BANDS) {
Johannes Berg34850ab2011-07-18 18:08:35 +02005514 err = -EINVAL;
5515 goto out_free;
5516 }
Felix Fietkau1b09cd82013-11-20 19:40:41 +01005517
5518 if (!wiphy->bands[band])
5519 continue;
5520
Johannes Berg34850ab2011-07-18 18:08:35 +02005521 err = ieee80211_get_ratemask(wiphy->bands[band],
5522 nla_data(attr),
5523 nla_len(attr),
5524 &request->rates[band]);
5525 if (err)
5526 goto out_free;
5527 }
5528 }
5529
Sam Leffler46856bb2012-10-11 21:03:32 -07005530 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005531 request->flags = nla_get_u32(
5532 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Johannes Berg00c3a6e2013-10-26 17:14:38 +02005533 if ((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5534 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005535 err = -EOPNOTSUPP;
5536 goto out_free;
5537 }
5538 }
Sam Lefflered4737712012-10-11 21:03:31 -07005539
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05305540 request->no_cck =
5541 nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
5542
Johannes Bergfd014282012-06-18 19:17:03 +02005543 request->wdev = wdev;
Johannes Berg79c97e92009-07-07 03:56:12 +02005544 request->wiphy = &rdev->wiphy;
Sam Leffler15d60302012-10-11 21:03:34 -07005545 request->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01005546
Johannes Berg79c97e92009-07-07 03:56:12 +02005547 rdev->scan_req = request;
Hila Gonene35e4d22012-06-27 17:19:42 +03005548 err = rdev_scan(rdev, request);
Johannes Berg2a519312009-02-10 21:25:55 +01005549
Johannes Berg463d0182009-07-14 00:33:35 +02005550 if (!err) {
Johannes Bergfd014282012-06-18 19:17:03 +02005551 nl80211_send_scan_start(rdev, wdev);
5552 if (wdev->netdev)
5553 dev_hold(wdev->netdev);
Johannes Berg4c476992010-10-04 21:36:35 +02005554 } else {
Johannes Berg2a519312009-02-10 21:25:55 +01005555 out_free:
Johannes Berg79c97e92009-07-07 03:56:12 +02005556 rdev->scan_req = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01005557 kfree(request);
5558 }
Johannes Berg3b858752009-03-12 09:55:09 +01005559
Johannes Bergf9f47522013-03-19 15:04:07 +01005560 unlock:
Johannes Berg2a519312009-02-10 21:25:55 +01005561 return err;
5562}
5563
Luciano Coelho807f8a82011-05-11 17:09:35 +03005564static int nl80211_start_sched_scan(struct sk_buff *skb,
5565 struct genl_info *info)
5566{
5567 struct cfg80211_sched_scan_request *request;
5568 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5569 struct net_device *dev = info->user_ptr[1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005570 struct nlattr *attr;
5571 struct wiphy *wiphy;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005572 int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005573 u32 interval;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005574 enum ieee80211_band band;
5575 size_t ie_len;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005576 struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
Johannes Bergea73cbc2014-01-24 10:53:53 +01005577 s32 default_match_rssi = NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005578
5579 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5580 !rdev->ops->sched_scan_start)
5581 return -EOPNOTSUPP;
5582
5583 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5584 return -EINVAL;
5585
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005586 if (!info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
5587 return -EINVAL;
5588
5589 interval = nla_get_u32(info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]);
5590 if (interval == 0)
5591 return -EINVAL;
5592
Luciano Coelho807f8a82011-05-11 17:09:35 +03005593 wiphy = &rdev->wiphy;
5594
5595 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5596 n_channels = validate_scan_freqs(
5597 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
5598 if (!n_channels)
5599 return -EINVAL;
5600 } else {
Ilan Peerbdfbec22014-01-09 11:37:23 +02005601 n_channels = ieee80211_get_num_supported_channels(wiphy);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005602 }
5603
5604 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5605 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5606 tmp)
5607 n_ssids++;
5608
Luciano Coelho93b6aa62011-07-13 14:57:28 +03005609 if (n_ssids > wiphy->max_sched_scan_ssids)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005610 return -EINVAL;
5611
Johannes Bergea73cbc2014-01-24 10:53:53 +01005612 /*
5613 * First, count the number of 'real' matchsets. Due to an issue with
5614 * the old implementation, matchsets containing only the RSSI attribute
5615 * (NL80211_SCHED_SCAN_MATCH_ATTR_RSSI) are considered as the 'default'
5616 * RSSI for all matchsets, rather than their own matchset for reporting
5617 * all APs with a strong RSSI. This is needed to be compatible with
5618 * older userspace that treated a matchset with only the RSSI as the
5619 * global RSSI for all other matchsets - if there are other matchsets.
5620 */
5621 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005622 nla_for_each_nested(attr,
5623 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
Johannes Bergea73cbc2014-01-24 10:53:53 +01005624 tmp) {
5625 struct nlattr *rssi;
5626
5627 err = nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
5628 nla_data(attr), nla_len(attr),
5629 nl80211_match_policy);
5630 if (err)
5631 return err;
5632 /* add other standalone attributes here */
5633 if (tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID]) {
5634 n_match_sets++;
5635 continue;
5636 }
5637 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
5638 if (rssi)
5639 default_match_rssi = nla_get_s32(rssi);
5640 }
5641 }
5642
5643 /* However, if there's no other matchset, add the RSSI one */
5644 if (!n_match_sets && default_match_rssi != NL80211_SCAN_RSSI_THOLD_OFF)
5645 n_match_sets = 1;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005646
5647 if (n_match_sets > wiphy->max_match_sets)
5648 return -EINVAL;
5649
Luciano Coelho807f8a82011-05-11 17:09:35 +03005650 if (info->attrs[NL80211_ATTR_IE])
5651 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5652 else
5653 ie_len = 0;
5654
Luciano Coelho5a865ba2011-07-13 14:57:29 +03005655 if (ie_len > wiphy->max_sched_scan_ie_len)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005656 return -EINVAL;
5657
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005658 if (rdev->sched_scan_req) {
5659 err = -EINPROGRESS;
5660 goto out;
5661 }
5662
Luciano Coelho807f8a82011-05-11 17:09:35 +03005663 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005664 + sizeof(*request->ssids) * n_ssids
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005665 + sizeof(*request->match_sets) * n_match_sets
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005666 + sizeof(*request->channels) * n_channels
Luciano Coelho807f8a82011-05-11 17:09:35 +03005667 + ie_len, GFP_KERNEL);
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005668 if (!request) {
5669 err = -ENOMEM;
5670 goto out;
5671 }
Luciano Coelho807f8a82011-05-11 17:09:35 +03005672
5673 if (n_ssids)
5674 request->ssids = (void *)&request->channels[n_channels];
5675 request->n_ssids = n_ssids;
5676 if (ie_len) {
5677 if (request->ssids)
5678 request->ie = (void *)(request->ssids + n_ssids);
5679 else
5680 request->ie = (void *)(request->channels + n_channels);
5681 }
5682
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005683 if (n_match_sets) {
5684 if (request->ie)
5685 request->match_sets = (void *)(request->ie + ie_len);
5686 else if (request->ssids)
5687 request->match_sets =
5688 (void *)(request->ssids + n_ssids);
5689 else
5690 request->match_sets =
5691 (void *)(request->channels + n_channels);
5692 }
5693 request->n_match_sets = n_match_sets;
5694
Luciano Coelho807f8a82011-05-11 17:09:35 +03005695 i = 0;
5696 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5697 /* user specified, bail out if channel not found */
5698 nla_for_each_nested(attr,
5699 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES],
5700 tmp) {
5701 struct ieee80211_channel *chan;
5702
5703 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5704
5705 if (!chan) {
5706 err = -EINVAL;
5707 goto out_free;
5708 }
5709
5710 /* ignore disabled channels */
5711 if (chan->flags & IEEE80211_CHAN_DISABLED)
5712 continue;
5713
5714 request->channels[i] = chan;
5715 i++;
5716 }
5717 } else {
5718 /* all channels */
5719 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5720 int j;
5721 if (!wiphy->bands[band])
5722 continue;
5723 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
5724 struct ieee80211_channel *chan;
5725
5726 chan = &wiphy->bands[band]->channels[j];
5727
5728 if (chan->flags & IEEE80211_CHAN_DISABLED)
5729 continue;
5730
5731 request->channels[i] = chan;
5732 i++;
5733 }
5734 }
5735 }
5736
5737 if (!i) {
5738 err = -EINVAL;
5739 goto out_free;
5740 }
5741
5742 request->n_channels = i;
5743
5744 i = 0;
5745 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5746 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5747 tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005748 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03005749 err = -EINVAL;
5750 goto out_free;
5751 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005752 request->ssids[i].ssid_len = nla_len(attr);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005753 memcpy(request->ssids[i].ssid, nla_data(attr),
5754 nla_len(attr));
Luciano Coelho807f8a82011-05-11 17:09:35 +03005755 i++;
5756 }
5757 }
5758
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005759 i = 0;
5760 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
5761 nla_for_each_nested(attr,
5762 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5763 tmp) {
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005764 struct nlattr *ssid, *rssi;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005765
Johannes Bergae811e22014-01-24 10:17:47 +01005766 err = nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
5767 nla_data(attr), nla_len(attr),
5768 nl80211_match_policy);
5769 if (err)
5770 goto out_free;
Johannes Berg4a4ab0d2012-06-13 11:17:11 +02005771 ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005772 if (ssid) {
Johannes Bergea73cbc2014-01-24 10:53:53 +01005773 if (WARN_ON(i >= n_match_sets)) {
5774 /* this indicates a programming error,
5775 * the loop above should have verified
5776 * things properly
5777 */
5778 err = -EINVAL;
5779 goto out_free;
5780 }
5781
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005782 if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) {
5783 err = -EINVAL;
5784 goto out_free;
5785 }
5786 memcpy(request->match_sets[i].ssid.ssid,
5787 nla_data(ssid), nla_len(ssid));
5788 request->match_sets[i].ssid.ssid_len =
5789 nla_len(ssid);
Johannes Bergea73cbc2014-01-24 10:53:53 +01005790 /* special attribute - old implemenation w/a */
5791 request->match_sets[i].rssi_thold =
5792 default_match_rssi;
5793 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
5794 if (rssi)
5795 request->match_sets[i].rssi_thold =
5796 nla_get_s32(rssi);
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005797 }
5798 i++;
5799 }
Johannes Bergea73cbc2014-01-24 10:53:53 +01005800
5801 /* there was no other matchset, so the RSSI one is alone */
5802 if (i == 0)
5803 request->match_sets[0].rssi_thold = default_match_rssi;
5804
5805 request->min_rssi_thold = INT_MAX;
5806 for (i = 0; i < n_match_sets; i++)
5807 request->min_rssi_thold =
5808 min(request->match_sets[i].rssi_thold,
5809 request->min_rssi_thold);
5810 } else {
5811 request->min_rssi_thold = NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005812 }
5813
Johannes Berg9900e482014-02-04 21:01:25 +01005814 if (ie_len) {
5815 request->ie_len = ie_len;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005816 memcpy((void *)request->ie,
5817 nla_data(info->attrs[NL80211_ATTR_IE]),
5818 request->ie_len);
5819 }
5820
Sam Leffler46856bb2012-10-11 21:03:32 -07005821 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005822 request->flags = nla_get_u32(
5823 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Johannes Berg00c3a6e2013-10-26 17:14:38 +02005824 if ((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5825 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005826 err = -EOPNOTSUPP;
5827 goto out_free;
5828 }
5829 }
Sam Lefflered4737712012-10-11 21:03:31 -07005830
Luciano Coelho807f8a82011-05-11 17:09:35 +03005831 request->dev = dev;
5832 request->wiphy = &rdev->wiphy;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005833 request->interval = interval;
Sam Leffler15d60302012-10-11 21:03:34 -07005834 request->scan_start = jiffies;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005835
Hila Gonene35e4d22012-06-27 17:19:42 +03005836 err = rdev_sched_scan_start(rdev, dev, request);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005837 if (!err) {
5838 rdev->sched_scan_req = request;
5839 nl80211_send_sched_scan(rdev, dev,
5840 NL80211_CMD_START_SCHED_SCAN);
5841 goto out;
5842 }
5843
5844out_free:
5845 kfree(request);
5846out:
5847 return err;
5848}
5849
5850static int nl80211_stop_sched_scan(struct sk_buff *skb,
5851 struct genl_info *info)
5852{
5853 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5854
5855 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5856 !rdev->ops->sched_scan_stop)
5857 return -EOPNOTSUPP;
5858
Johannes Berg5fe231e2013-05-08 21:45:15 +02005859 return __cfg80211_stop_sched_scan(rdev, false);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005860}
5861
Simon Wunderlich04f39042013-02-08 18:16:19 +01005862static int nl80211_start_radar_detection(struct sk_buff *skb,
5863 struct genl_info *info)
5864{
5865 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5866 struct net_device *dev = info->user_ptr[1];
5867 struct wireless_dev *wdev = dev->ieee80211_ptr;
5868 struct cfg80211_chan_def chandef;
Luis R. Rodriguez55f74352013-11-25 20:56:10 +01005869 enum nl80211_dfs_regions dfs_region;
Janusz Dziedzic31559f32014-02-21 19:46:13 +01005870 unsigned int cac_time_ms;
Simon Wunderlich04f39042013-02-08 18:16:19 +01005871 int err;
5872
Luis R. Rodriguez55f74352013-11-25 20:56:10 +01005873 dfs_region = reg_get_dfs_region(wdev->wiphy);
5874 if (dfs_region == NL80211_DFS_UNSET)
5875 return -EINVAL;
5876
Simon Wunderlich04f39042013-02-08 18:16:19 +01005877 err = nl80211_parse_chandef(rdev, info, &chandef);
5878 if (err)
5879 return err;
5880
Simon Wunderlichff311bc2013-09-03 19:43:18 +02005881 if (netif_carrier_ok(dev))
5882 return -EBUSY;
5883
Simon Wunderlich04f39042013-02-08 18:16:19 +01005884 if (wdev->cac_started)
5885 return -EBUSY;
5886
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02005887 err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef,
Luciano Coelho00ec75f2014-05-15 13:05:39 +03005888 wdev->iftype);
Simon Wunderlich04f39042013-02-08 18:16:19 +01005889 if (err < 0)
5890 return err;
5891
5892 if (err == 0)
5893 return -EINVAL;
5894
Janusz Dziedzicfe7c3a12013-11-05 14:48:48 +01005895 if (!cfg80211_chandef_dfs_usable(wdev->wiphy, &chandef))
Simon Wunderlich04f39042013-02-08 18:16:19 +01005896 return -EINVAL;
5897
5898 if (!rdev->ops->start_radar_detection)
5899 return -EOPNOTSUPP;
5900
Janusz Dziedzic31559f32014-02-21 19:46:13 +01005901 cac_time_ms = cfg80211_chandef_dfs_cac_time(&rdev->wiphy, &chandef);
5902 if (WARN_ON(!cac_time_ms))
5903 cac_time_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
5904
5905 err = rdev->ops->start_radar_detection(&rdev->wiphy, dev, &chandef,
5906 cac_time_ms);
Simon Wunderlich04f39042013-02-08 18:16:19 +01005907 if (!err) {
Michal Kazior9e0e2962014-01-29 14:22:27 +01005908 wdev->chandef = chandef;
Simon Wunderlich04f39042013-02-08 18:16:19 +01005909 wdev->cac_started = true;
5910 wdev->cac_start_time = jiffies;
Janusz Dziedzic31559f32014-02-21 19:46:13 +01005911 wdev->cac_time_ms = cac_time_ms;
Simon Wunderlich04f39042013-02-08 18:16:19 +01005912 }
Simon Wunderlich04f39042013-02-08 18:16:19 +01005913 return err;
5914}
5915
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005916static int nl80211_channel_switch(struct sk_buff *skb, struct genl_info *info)
5917{
5918 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5919 struct net_device *dev = info->user_ptr[1];
5920 struct wireless_dev *wdev = dev->ieee80211_ptr;
5921 struct cfg80211_csa_settings params;
5922 /* csa_attrs is defined static to avoid waste of stack size - this
5923 * function is called under RTNL lock, so this should not be a problem.
5924 */
5925 static struct nlattr *csa_attrs[NL80211_ATTR_MAX+1];
5926 u8 radar_detect_width = 0;
5927 int err;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005928 bool need_new_beacon = false;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03005929 int len, i;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005930
5931 if (!rdev->ops->channel_switch ||
5932 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH))
5933 return -EOPNOTSUPP;
5934
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005935 switch (dev->ieee80211_ptr->iftype) {
5936 case NL80211_IFTYPE_AP:
5937 case NL80211_IFTYPE_P2P_GO:
5938 need_new_beacon = true;
5939
5940 /* useless if AP is not running */
5941 if (!wdev->beacon_interval)
Johannes Berg1ff79df2014-01-22 10:05:27 +01005942 return -ENOTCONN;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005943 break;
5944 case NL80211_IFTYPE_ADHOC:
Johannes Berg1ff79df2014-01-22 10:05:27 +01005945 if (!wdev->ssid_len)
5946 return -ENOTCONN;
5947 break;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07005948 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg1ff79df2014-01-22 10:05:27 +01005949 if (!wdev->mesh_id_len)
5950 return -ENOTCONN;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005951 break;
5952 default:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005953 return -EOPNOTSUPP;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005954 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005955
5956 memset(&params, 0, sizeof(params));
5957
5958 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
5959 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
5960 return -EINVAL;
5961
5962 /* only important for AP, IBSS and mesh create IEs internally */
Andrei Otcheretianskid0a361a2013-10-17 10:52:17 +02005963 if (need_new_beacon && !info->attrs[NL80211_ATTR_CSA_IES])
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005964 return -EINVAL;
5965
5966 params.count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5967
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005968 if (!need_new_beacon)
5969 goto skip_beacons;
5970
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005971 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5972 if (err)
5973 return err;
5974
5975 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5976 info->attrs[NL80211_ATTR_CSA_IES],
5977 nl80211_policy);
5978 if (err)
5979 return err;
5980
5981 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5982 if (err)
5983 return err;
5984
5985 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5986 return -EINVAL;
5987
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03005988 len = nla_len(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5989 if (!len || (len % sizeof(u16)))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005990 return -EINVAL;
5991
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03005992 params.n_counter_offsets_beacon = len / sizeof(u16);
5993 if (rdev->wiphy.max_num_csa_counters &&
5994 (params.n_counter_offsets_beacon >
5995 rdev->wiphy.max_num_csa_counters))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005996 return -EINVAL;
5997
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03005998 params.counter_offsets_beacon =
5999 nla_data(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
6000
6001 /* sanity checks - counters should fit and be the same */
6002 for (i = 0; i < params.n_counter_offsets_beacon; i++) {
6003 u16 offset = params.counter_offsets_beacon[i];
6004
6005 if (offset >= params.beacon_csa.tail_len)
6006 return -EINVAL;
6007
6008 if (params.beacon_csa.tail[offset] != params.count)
6009 return -EINVAL;
6010 }
6011
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006012 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006013 len = nla_len(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
6014 if (!len || (len % sizeof(u16)))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006015 return -EINVAL;
6016
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006017 params.n_counter_offsets_presp = len / sizeof(u16);
6018 if (rdev->wiphy.max_num_csa_counters &&
6019 (params.n_counter_offsets_beacon >
6020 rdev->wiphy.max_num_csa_counters))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006021 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006022
6023 params.counter_offsets_presp =
6024 nla_data(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
6025
6026 /* sanity checks - counters should fit and be the same */
6027 for (i = 0; i < params.n_counter_offsets_presp; i++) {
6028 u16 offset = params.counter_offsets_presp[i];
6029
6030 if (offset >= params.beacon_csa.probe_resp_len)
6031 return -EINVAL;
6032
6033 if (params.beacon_csa.probe_resp[offset] !=
6034 params.count)
6035 return -EINVAL;
6036 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006037 }
6038
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006039skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006040 err = nl80211_parse_chandef(rdev, info, &params.chandef);
6041 if (err)
6042 return err;
6043
Ilan Peer174e0cd2014-02-23 09:13:01 +02006044 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef,
6045 wdev->iftype))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006046 return -EINVAL;
6047
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02006048 err = cfg80211_chandef_dfs_required(wdev->wiphy,
6049 &params.chandef,
6050 wdev->iftype);
6051 if (err < 0)
6052 return err;
6053
6054 if (err > 0) {
6055 radar_detect_width = BIT(params.chandef.width);
6056 params.radar_required = true;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006057 }
6058
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006059 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
6060 params.block_tx = true;
6061
Simon Wunderlichc56589e2013-11-21 18:19:49 +01006062 wdev_lock(wdev);
6063 err = rdev_channel_switch(rdev, dev, &params);
6064 wdev_unlock(wdev);
6065
6066 return err;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006067}
6068
Johannes Berg9720bb32011-06-21 09:45:33 +02006069static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
6070 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01006071 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02006072 struct wireless_dev *wdev,
6073 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01006074{
Johannes Berg48ab9052009-07-10 18:42:31 +02006075 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01006076 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01006077 void *hdr;
6078 struct nlattr *bss;
Johannes Berg48ab9052009-07-10 18:42:31 +02006079
6080 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01006081
Eric W. Biederman15e47302012-09-07 20:12:54 +00006082 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01006083 NL80211_CMD_NEW_SCAN_RESULTS);
6084 if (!hdr)
6085 return -1;
6086
Johannes Berg9720bb32011-06-21 09:45:33 +02006087 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
6088
Johannes Berg97990a02013-04-19 01:02:55 +02006089 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
6090 goto nla_put_failure;
6091 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04006092 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
6093 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02006094 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
6095 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006096
6097 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
6098 if (!bss)
6099 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04006100 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01006101 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04006102 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01006103
6104 rcu_read_lock();
Johannes Berg0e227082014-08-12 20:34:30 +02006105 /* indicate whether we have probe response data or not */
6106 if (rcu_access_pointer(res->proberesp_ies) &&
6107 nla_put_flag(msg, NL80211_BSS_PRESP_DATA))
6108 goto fail_unlock_rcu;
6109
6110 /* this pointer prefers to be pointed to probe response data
6111 * but is always valid
6112 */
Johannes Berg9caf0362012-11-29 01:25:20 +01006113 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01006114 if (ies) {
6115 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
6116 goto fail_unlock_rcu;
Johannes Berg8cef2c92013-02-05 16:54:31 +01006117 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
6118 ies->len, ies->data))
6119 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01006120 }
Johannes Berg0e227082014-08-12 20:34:30 +02006121
6122 /* and this pointer is always (unless driver didn't know) beacon data */
Johannes Berg9caf0362012-11-29 01:25:20 +01006123 ies = rcu_dereference(res->beacon_ies);
Johannes Berg0e227082014-08-12 20:34:30 +02006124 if (ies && ies->from_beacon) {
6125 if (nla_put_u64(msg, NL80211_BSS_BEACON_TSF, ies->tsf))
Johannes Berg8cef2c92013-02-05 16:54:31 +01006126 goto fail_unlock_rcu;
6127 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
6128 ies->len, ies->data))
6129 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01006130 }
6131 rcu_read_unlock();
6132
David S. Miller9360ffd2012-03-29 04:41:26 -04006133 if (res->beacon_interval &&
6134 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
6135 goto nla_put_failure;
6136 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
6137 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02006138 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04006139 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
6140 jiffies_to_msecs(jiffies - intbss->ts)))
6141 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006142
Johannes Berg77965c92009-02-18 18:45:06 +01006143 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01006144 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04006145 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
6146 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006147 break;
6148 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04006149 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
6150 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006151 break;
6152 default:
6153 break;
6154 }
6155
Johannes Berg48ab9052009-07-10 18:42:31 +02006156 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02006157 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02006158 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04006159 if (intbss == wdev->current_bss &&
6160 nla_put_u32(msg, NL80211_BSS_STATUS,
6161 NL80211_BSS_STATUS_ASSOCIATED))
6162 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02006163 break;
6164 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04006165 if (intbss == wdev->current_bss &&
6166 nla_put_u32(msg, NL80211_BSS_STATUS,
6167 NL80211_BSS_STATUS_IBSS_JOINED))
6168 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02006169 break;
6170 default:
6171 break;
6172 }
6173
Johannes Berg2a519312009-02-10 21:25:55 +01006174 nla_nest_end(msg, bss);
6175
6176 return genlmsg_end(msg, hdr);
6177
Johannes Berg8cef2c92013-02-05 16:54:31 +01006178 fail_unlock_rcu:
6179 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01006180 nla_put_failure:
6181 genlmsg_cancel(msg, hdr);
6182 return -EMSGSIZE;
6183}
6184
Johannes Berg97990a02013-04-19 01:02:55 +02006185static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01006186{
Johannes Berg48ab9052009-07-10 18:42:31 +02006187 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01006188 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02006189 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02006190 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01006191 int err;
6192
Johannes Berg97990a02013-04-19 01:02:55 +02006193 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006194 if (err)
6195 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01006196
Johannes Berg48ab9052009-07-10 18:42:31 +02006197 wdev_lock(wdev);
6198 spin_lock_bh(&rdev->bss_lock);
6199 cfg80211_bss_expire(rdev);
6200
Johannes Berg9720bb32011-06-21 09:45:33 +02006201 cb->seq = rdev->bss_generation;
6202
Johannes Berg48ab9052009-07-10 18:42:31 +02006203 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01006204 if (++idx <= start)
6205 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02006206 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01006207 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02006208 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01006209 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02006210 break;
Johannes Berg2a519312009-02-10 21:25:55 +01006211 }
6212 }
6213
Johannes Berg48ab9052009-07-10 18:42:31 +02006214 spin_unlock_bh(&rdev->bss_lock);
6215 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01006216
Johannes Berg97990a02013-04-19 01:02:55 +02006217 cb->args[2] = idx;
6218 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01006219
Johannes Berg67748892010-10-04 21:14:06 +02006220 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01006221}
6222
Eric W. Biederman15e47302012-09-07 20:12:54 +00006223static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01006224 int flags, struct net_device *dev,
6225 struct survey_info *survey)
6226{
6227 void *hdr;
6228 struct nlattr *infoattr;
6229
Eric W. Biederman15e47302012-09-07 20:12:54 +00006230 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01006231 NL80211_CMD_NEW_SURVEY_RESULTS);
6232 if (!hdr)
6233 return -ENOMEM;
6234
David S. Miller9360ffd2012-03-29 04:41:26 -04006235 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
6236 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01006237
6238 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
6239 if (!infoattr)
6240 goto nla_put_failure;
6241
David S. Miller9360ffd2012-03-29 04:41:26 -04006242 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
6243 survey->channel->center_freq))
6244 goto nla_put_failure;
6245
6246 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
6247 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
6248 goto nla_put_failure;
6249 if ((survey->filled & SURVEY_INFO_IN_USE) &&
6250 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
6251 goto nla_put_failure;
6252 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
6253 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
6254 survey->channel_time))
6255 goto nla_put_failure;
6256 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
6257 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
6258 survey->channel_time_busy))
6259 goto nla_put_failure;
6260 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
6261 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
6262 survey->channel_time_ext_busy))
6263 goto nla_put_failure;
6264 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
6265 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
6266 survey->channel_time_rx))
6267 goto nla_put_failure;
6268 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
6269 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
6270 survey->channel_time_tx))
6271 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01006272
6273 nla_nest_end(msg, infoattr);
6274
6275 return genlmsg_end(msg, hdr);
6276
6277 nla_put_failure:
6278 genlmsg_cancel(msg, hdr);
6279 return -EMSGSIZE;
6280}
6281
6282static int nl80211_dump_survey(struct sk_buff *skb,
6283 struct netlink_callback *cb)
6284{
6285 struct survey_info survey;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006286 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02006287 struct wireless_dev *wdev;
6288 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01006289 int res;
6290
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006291 res = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006292 if (res)
6293 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01006294
Johannes Berg97990a02013-04-19 01:02:55 +02006295 if (!wdev->netdev) {
6296 res = -EINVAL;
6297 goto out_err;
6298 }
6299
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006300 if (!rdev->ops->dump_survey) {
Holger Schurig61fa7132009-11-11 12:25:40 +01006301 res = -EOPNOTSUPP;
6302 goto out_err;
6303 }
6304
6305 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006306 struct ieee80211_channel *chan;
6307
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006308 res = rdev_dump_survey(rdev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01006309 if (res == -ENOENT)
6310 break;
6311 if (res)
6312 goto out_err;
6313
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006314 /* Survey without a channel doesn't make sense */
6315 if (!survey.channel) {
6316 res = -EINVAL;
6317 goto out;
6318 }
6319
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006320 chan = ieee80211_get_channel(&rdev->wiphy,
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006321 survey.channel->center_freq);
6322 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
6323 survey_idx++;
6324 continue;
6325 }
6326
Holger Schurig61fa7132009-11-11 12:25:40 +01006327 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006328 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01006329 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02006330 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01006331 goto out;
6332 survey_idx++;
6333 }
6334
6335 out:
Johannes Berg97990a02013-04-19 01:02:55 +02006336 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01006337 res = skb->len;
6338 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006339 nl80211_finish_wdev_dump(rdev);
Holger Schurig61fa7132009-11-11 12:25:40 +01006340 return res;
6341}
6342
Samuel Ortizb23aa672009-07-01 21:26:54 +02006343static bool nl80211_valid_wpa_versions(u32 wpa_versions)
6344{
6345 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
6346 NL80211_WPA_VERSION_2));
6347}
6348
Jouni Malinen636a5d32009-03-19 13:39:22 +02006349static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6350{
Johannes Berg4c476992010-10-04 21:36:35 +02006351 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6352 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006353 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006354 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6355 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006356 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006357 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006358 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006359
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006360 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6361 return -EINVAL;
6362
6363 if (!info->attrs[NL80211_ATTR_MAC])
6364 return -EINVAL;
6365
Jouni Malinen17780922009-03-27 20:52:47 +02006366 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6367 return -EINVAL;
6368
Johannes Berg19957bb2009-07-02 17:20:43 +02006369 if (!info->attrs[NL80211_ATTR_SSID])
6370 return -EINVAL;
6371
6372 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6373 return -EINVAL;
6374
Johannes Bergfffd0932009-07-08 14:22:54 +02006375 err = nl80211_parse_key(info, &key);
6376 if (err)
6377 return err;
6378
6379 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006380 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6381 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006382 if (!key.p.key || !key.p.key_len)
6383 return -EINVAL;
6384 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6385 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6386 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6387 key.p.key_len != WLAN_KEY_LEN_WEP104))
6388 return -EINVAL;
6389 if (key.idx > 4)
6390 return -EINVAL;
6391 } else {
6392 key.p.key_len = 0;
6393 key.p.key = NULL;
6394 }
6395
Johannes Bergafea0b72010-08-10 09:46:42 +02006396 if (key.idx >= 0) {
6397 int i;
6398 bool ok = false;
6399 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6400 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6401 ok = true;
6402 break;
6403 }
6404 }
Johannes Berg4c476992010-10-04 21:36:35 +02006405 if (!ok)
6406 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006407 }
6408
Johannes Berg4c476992010-10-04 21:36:35 +02006409 if (!rdev->ops->auth)
6410 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006411
Johannes Berg074ac8d2010-09-16 14:58:22 +02006412 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006413 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6414 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006415
Johannes Berg19957bb2009-07-02 17:20:43 +02006416 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen664834d2014-01-15 00:01:44 +02006417 chan = nl80211_get_valid_chan(&rdev->wiphy,
6418 info->attrs[NL80211_ATTR_WIPHY_FREQ]);
6419 if (!chan)
Johannes Berg4c476992010-10-04 21:36:35 +02006420 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006421
Johannes Berg19957bb2009-07-02 17:20:43 +02006422 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6423 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6424
6425 if (info->attrs[NL80211_ATTR_IE]) {
6426 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6427 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6428 }
6429
6430 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006431 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006432 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006433
Jouni Malinene39e5b52012-09-30 19:29:39 +03006434 if (auth_type == NL80211_AUTHTYPE_SAE &&
6435 !info->attrs[NL80211_ATTR_SAE_DATA])
6436 return -EINVAL;
6437
6438 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6439 if (auth_type != NL80211_AUTHTYPE_SAE)
6440 return -EINVAL;
6441 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6442 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6443 /* need to include at least Auth Transaction and Status Code */
6444 if (sae_data_len < 4)
6445 return -EINVAL;
6446 }
6447
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006448 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6449
Johannes Berg95de8172012-01-20 13:55:25 +01006450 /*
6451 * Since we no longer track auth state, ignore
6452 * requests to only change local state.
6453 */
6454 if (local_state_change)
6455 return 0;
6456
Johannes Berg91bf9b22013-05-15 17:44:01 +02006457 wdev_lock(dev->ieee80211_ptr);
6458 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6459 ssid, ssid_len, ie, ie_len,
6460 key.p.key, key.p.key_len, key.idx,
6461 sae_data, sae_data_len);
6462 wdev_unlock(dev->ieee80211_ptr);
6463 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006464}
6465
Johannes Bergc0692b82010-08-27 14:26:53 +03006466static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6467 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006468 struct cfg80211_crypto_settings *settings,
6469 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006470{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006471 memset(settings, 0, sizeof(*settings));
6472
Samuel Ortizb23aa672009-07-01 21:26:54 +02006473 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6474
Johannes Bergc0692b82010-08-27 14:26:53 +03006475 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6476 u16 proto;
6477 proto = nla_get_u16(
6478 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6479 settings->control_port_ethertype = cpu_to_be16(proto);
6480 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6481 proto != ETH_P_PAE)
6482 return -EINVAL;
6483 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6484 settings->control_port_no_encrypt = true;
6485 } else
6486 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6487
Samuel Ortizb23aa672009-07-01 21:26:54 +02006488 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6489 void *data;
6490 int len, i;
6491
6492 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6493 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6494 settings->n_ciphers_pairwise = len / sizeof(u32);
6495
6496 if (len % sizeof(u32))
6497 return -EINVAL;
6498
Johannes Berg3dc27d22009-07-02 21:36:37 +02006499 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006500 return -EINVAL;
6501
6502 memcpy(settings->ciphers_pairwise, data, len);
6503
6504 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006505 if (!cfg80211_supported_cipher_suite(
6506 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006507 settings->ciphers_pairwise[i]))
6508 return -EINVAL;
6509 }
6510
6511 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6512 settings->cipher_group =
6513 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006514 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6515 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006516 return -EINVAL;
6517 }
6518
6519 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6520 settings->wpa_versions =
6521 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6522 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6523 return -EINVAL;
6524 }
6525
6526 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6527 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006528 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006529
6530 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6531 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6532 settings->n_akm_suites = len / sizeof(u32);
6533
6534 if (len % sizeof(u32))
6535 return -EINVAL;
6536
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006537 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6538 return -EINVAL;
6539
Samuel Ortizb23aa672009-07-01 21:26:54 +02006540 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006541 }
6542
6543 return 0;
6544}
6545
Jouni Malinen636a5d32009-03-19 13:39:22 +02006546static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6547{
Johannes Berg4c476992010-10-04 21:36:35 +02006548 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6549 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006550 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006551 struct cfg80211_assoc_request req = {};
6552 const u8 *bssid, *ssid;
6553 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006554
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006555 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6556 return -EINVAL;
6557
6558 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006559 !info->attrs[NL80211_ATTR_SSID] ||
6560 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006561 return -EINVAL;
6562
Johannes Berg4c476992010-10-04 21:36:35 +02006563 if (!rdev->ops->assoc)
6564 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006565
Johannes Berg074ac8d2010-09-16 14:58:22 +02006566 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006567 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6568 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006569
Johannes Berg19957bb2009-07-02 17:20:43 +02006570 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006571
Jouni Malinen664834d2014-01-15 00:01:44 +02006572 chan = nl80211_get_valid_chan(&rdev->wiphy,
6573 info->attrs[NL80211_ATTR_WIPHY_FREQ]);
6574 if (!chan)
Johannes Berg4c476992010-10-04 21:36:35 +02006575 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006576
Johannes Berg19957bb2009-07-02 17:20:43 +02006577 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6578 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006579
6580 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006581 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6582 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006583 }
6584
Jouni Malinendc6382c2009-05-06 22:09:37 +03006585 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006586 enum nl80211_mfp mfp =
Jouni Malinendc6382c2009-05-06 22:09:37 +03006587 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006588 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006589 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006590 else if (mfp != NL80211_MFP_NO)
6591 return -EINVAL;
Jouni Malinendc6382c2009-05-06 22:09:37 +03006592 }
6593
Johannes Berg3e5d7642009-07-07 14:37:26 +02006594 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006595 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006596
Ben Greear7e7c8922011-11-18 11:31:59 -08006597 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006598 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006599
6600 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006601 memcpy(&req.ht_capa_mask,
6602 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6603 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006604
6605 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006606 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006607 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006608 memcpy(&req.ht_capa,
6609 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6610 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006611 }
6612
Johannes Bergee2aca32013-02-21 17:36:01 +01006613 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006614 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006615
6616 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006617 memcpy(&req.vht_capa_mask,
6618 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6619 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006620
6621 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006622 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006623 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006624 memcpy(&req.vht_capa,
6625 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6626 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006627 }
6628
Assaf Kraussbab5ab72014-09-03 15:25:01 +03006629 if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
6630 if (!(rdev->wiphy.features &
6631 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) ||
6632 !(rdev->wiphy.features & NL80211_FEATURE_QUIET))
6633 return -EINVAL;
6634 req.flags |= ASSOC_REQ_USE_RRM;
6635 }
6636
Johannes Bergf62fab72013-02-21 20:09:09 +01006637 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006638 if (!err) {
6639 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006640 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6641 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006642 wdev_unlock(dev->ieee80211_ptr);
6643 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006644
Jouni Malinen636a5d32009-03-19 13:39:22 +02006645 return err;
6646}
6647
6648static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6649{
Johannes Berg4c476992010-10-04 21:36:35 +02006650 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6651 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006652 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006653 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006654 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006655 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006656
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006657 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6658 return -EINVAL;
6659
6660 if (!info->attrs[NL80211_ATTR_MAC])
6661 return -EINVAL;
6662
6663 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6664 return -EINVAL;
6665
Johannes Berg4c476992010-10-04 21:36:35 +02006666 if (!rdev->ops->deauth)
6667 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006668
Johannes Berg074ac8d2010-09-16 14:58:22 +02006669 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006670 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6671 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006672
Johannes Berg19957bb2009-07-02 17:20:43 +02006673 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006674
Johannes Berg19957bb2009-07-02 17:20:43 +02006675 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6676 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006677 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006678 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006679 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006680
6681 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006682 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6683 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006684 }
6685
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006686 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6687
Johannes Berg91bf9b22013-05-15 17:44:01 +02006688 wdev_lock(dev->ieee80211_ptr);
6689 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6690 local_state_change);
6691 wdev_unlock(dev->ieee80211_ptr);
6692 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006693}
6694
6695static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6696{
Johannes Berg4c476992010-10-04 21:36:35 +02006697 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6698 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006699 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006700 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006701 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006702 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006703
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006704 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6705 return -EINVAL;
6706
6707 if (!info->attrs[NL80211_ATTR_MAC])
6708 return -EINVAL;
6709
6710 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6711 return -EINVAL;
6712
Johannes Berg4c476992010-10-04 21:36:35 +02006713 if (!rdev->ops->disassoc)
6714 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006715
Johannes Berg074ac8d2010-09-16 14:58:22 +02006716 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006717 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6718 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006719
Johannes Berg19957bb2009-07-02 17:20:43 +02006720 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006721
Johannes Berg19957bb2009-07-02 17:20:43 +02006722 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6723 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006724 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006725 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006726 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006727
6728 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006729 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6730 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006731 }
6732
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006733 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6734
Johannes Berg91bf9b22013-05-15 17:44:01 +02006735 wdev_lock(dev->ieee80211_ptr);
6736 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6737 local_state_change);
6738 wdev_unlock(dev->ieee80211_ptr);
6739 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006740}
6741
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006742static bool
6743nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6744 int mcast_rate[IEEE80211_NUM_BANDS],
6745 int rateval)
6746{
6747 struct wiphy *wiphy = &rdev->wiphy;
6748 bool found = false;
6749 int band, i;
6750
6751 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6752 struct ieee80211_supported_band *sband;
6753
6754 sband = wiphy->bands[band];
6755 if (!sband)
6756 continue;
6757
6758 for (i = 0; i < sband->n_bitrates; i++) {
6759 if (sband->bitrates[i].bitrate == rateval) {
6760 mcast_rate[band] = i + 1;
6761 found = true;
6762 break;
6763 }
6764 }
6765 }
6766
6767 return found;
6768}
6769
Johannes Berg04a773a2009-04-19 21:24:32 +02006770static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6771{
Johannes Berg4c476992010-10-04 21:36:35 +02006772 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6773 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006774 struct cfg80211_ibss_params ibss;
6775 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006776 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006777 int err;
6778
Johannes Berg8e30bc52009-04-22 17:45:38 +02006779 memset(&ibss, 0, sizeof(ibss));
6780
Johannes Berg04a773a2009-04-19 21:24:32 +02006781 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6782 return -EINVAL;
6783
Johannes Berg683b6d32012-11-08 21:25:48 +01006784 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006785 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6786 return -EINVAL;
6787
Johannes Berg8e30bc52009-04-22 17:45:38 +02006788 ibss.beacon_interval = 100;
6789
6790 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6791 ibss.beacon_interval =
6792 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6793 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6794 return -EINVAL;
6795 }
6796
Johannes Berg4c476992010-10-04 21:36:35 +02006797 if (!rdev->ops->join_ibss)
6798 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006799
Johannes Berg4c476992010-10-04 21:36:35 +02006800 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6801 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006802
Johannes Berg79c97e92009-07-07 03:56:12 +02006803 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006804
Johannes Berg39193492011-09-16 13:45:25 +02006805 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006806 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006807
6808 if (!is_valid_ether_addr(ibss.bssid))
6809 return -EINVAL;
6810 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006811 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6812 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6813
6814 if (info->attrs[NL80211_ATTR_IE]) {
6815 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6816 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6817 }
6818
Johannes Berg683b6d32012-11-08 21:25:48 +01006819 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6820 if (err)
6821 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006822
Ilan Peer174e0cd2014-02-23 09:13:01 +02006823 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef,
6824 NL80211_IFTYPE_ADHOC))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006825 return -EINVAL;
6826
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006827 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006828 case NL80211_CHAN_WIDTH_5:
6829 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006830 case NL80211_CHAN_WIDTH_20_NOHT:
6831 break;
6832 case NL80211_CHAN_WIDTH_20:
6833 case NL80211_CHAN_WIDTH_40:
6834 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6835 break;
6836 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006837 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006838 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006839
Johannes Berg04a773a2009-04-19 21:24:32 +02006840 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006841 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006842
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006843 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6844 u8 *rates =
6845 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6846 int n_rates =
6847 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6848 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006849 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006850
Johannes Berg34850ab2011-07-18 18:08:35 +02006851 err = ieee80211_get_ratemask(sband, rates, n_rates,
6852 &ibss.basic_rates);
6853 if (err)
6854 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006855 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006856
Simon Wunderlich803768f2013-06-28 10:39:58 +02006857 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6858 memcpy(&ibss.ht_capa_mask,
6859 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6860 sizeof(ibss.ht_capa_mask));
6861
6862 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6863 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6864 return -EINVAL;
6865 memcpy(&ibss.ht_capa,
6866 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6867 sizeof(ibss.ht_capa));
6868 }
6869
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006870 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6871 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6872 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6873 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006874
Johannes Berg4c476992010-10-04 21:36:35 +02006875 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306876 bool no_ht = false;
6877
Johannes Berg4c476992010-10-04 21:36:35 +02006878 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306879 info->attrs[NL80211_ATTR_KEYS],
6880 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006881 if (IS_ERR(connkeys))
6882 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306883
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006884 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6885 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306886 kfree(connkeys);
6887 return -EINVAL;
6888 }
Johannes Berg4c476992010-10-04 21:36:35 +02006889 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006890
Antonio Quartulli267335d2012-01-31 20:25:47 +01006891 ibss.control_port =
6892 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6893
Simon Wunderlich5336fa82013-10-07 18:41:05 +02006894 ibss.userspace_handles_dfs =
6895 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
6896
Johannes Berg4c476992010-10-04 21:36:35 +02006897 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006898 if (err)
Johannes Bergb47f6102014-09-10 13:39:54 +03006899 kzfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006900 return err;
6901}
6902
6903static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6904{
Johannes Berg4c476992010-10-04 21:36:35 +02006905 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6906 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006907
Johannes Berg4c476992010-10-04 21:36:35 +02006908 if (!rdev->ops->leave_ibss)
6909 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006910
Johannes Berg4c476992010-10-04 21:36:35 +02006911 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6912 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006913
Johannes Berg4c476992010-10-04 21:36:35 +02006914 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006915}
6916
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006917static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6918{
6919 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6920 struct net_device *dev = info->user_ptr[1];
6921 int mcast_rate[IEEE80211_NUM_BANDS];
6922 u32 nla_rate;
6923 int err;
6924
6925 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6926 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6927 return -EOPNOTSUPP;
6928
6929 if (!rdev->ops->set_mcast_rate)
6930 return -EOPNOTSUPP;
6931
6932 memset(mcast_rate, 0, sizeof(mcast_rate));
6933
6934 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6935 return -EINVAL;
6936
6937 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6938 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6939 return -EINVAL;
6940
6941 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6942
6943 return err;
6944}
6945
Johannes Bergad7e7182013-11-13 13:37:47 +01006946static struct sk_buff *
6947__cfg80211_alloc_vendor_skb(struct cfg80211_registered_device *rdev,
6948 int approxlen, u32 portid, u32 seq,
6949 enum nl80211_commands cmd,
Johannes Berg567ffc32013-12-18 14:43:31 +01006950 enum nl80211_attrs attr,
6951 const struct nl80211_vendor_cmd_info *info,
6952 gfp_t gfp)
Johannes Bergad7e7182013-11-13 13:37:47 +01006953{
6954 struct sk_buff *skb;
6955 void *hdr;
6956 struct nlattr *data;
6957
6958 skb = nlmsg_new(approxlen + 100, gfp);
6959 if (!skb)
6960 return NULL;
6961
6962 hdr = nl80211hdr_put(skb, portid, seq, 0, cmd);
6963 if (!hdr) {
6964 kfree_skb(skb);
6965 return NULL;
6966 }
6967
6968 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6969 goto nla_put_failure;
Johannes Berg567ffc32013-12-18 14:43:31 +01006970
6971 if (info) {
6972 if (nla_put_u32(skb, NL80211_ATTR_VENDOR_ID,
6973 info->vendor_id))
6974 goto nla_put_failure;
6975 if (nla_put_u32(skb, NL80211_ATTR_VENDOR_SUBCMD,
6976 info->subcmd))
6977 goto nla_put_failure;
6978 }
6979
Johannes Bergad7e7182013-11-13 13:37:47 +01006980 data = nla_nest_start(skb, attr);
6981
6982 ((void **)skb->cb)[0] = rdev;
6983 ((void **)skb->cb)[1] = hdr;
6984 ((void **)skb->cb)[2] = data;
6985
6986 return skb;
6987
6988 nla_put_failure:
6989 kfree_skb(skb);
6990 return NULL;
6991}
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006992
Johannes Berge03ad6e2014-01-01 17:22:30 +01006993struct sk_buff *__cfg80211_alloc_event_skb(struct wiphy *wiphy,
6994 enum nl80211_commands cmd,
6995 enum nl80211_attrs attr,
6996 int vendor_event_idx,
6997 int approxlen, gfp_t gfp)
6998{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08006999 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berge03ad6e2014-01-01 17:22:30 +01007000 const struct nl80211_vendor_cmd_info *info;
7001
7002 switch (cmd) {
7003 case NL80211_CMD_TESTMODE:
7004 if (WARN_ON(vendor_event_idx != -1))
7005 return NULL;
7006 info = NULL;
7007 break;
7008 case NL80211_CMD_VENDOR:
7009 if (WARN_ON(vendor_event_idx < 0 ||
7010 vendor_event_idx >= wiphy->n_vendor_events))
7011 return NULL;
7012 info = &wiphy->vendor_events[vendor_event_idx];
7013 break;
7014 default:
7015 WARN_ON(1);
7016 return NULL;
7017 }
7018
7019 return __cfg80211_alloc_vendor_skb(rdev, approxlen, 0, 0,
7020 cmd, attr, info, gfp);
7021}
7022EXPORT_SYMBOL(__cfg80211_alloc_event_skb);
7023
7024void __cfg80211_send_event_skb(struct sk_buff *skb, gfp_t gfp)
7025{
7026 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
7027 void *hdr = ((void **)skb->cb)[1];
7028 struct nlattr *data = ((void **)skb->cb)[2];
7029 enum nl80211_multicast_groups mcgrp = NL80211_MCGRP_TESTMODE;
7030
7031 nla_nest_end(skb, data);
7032 genlmsg_end(skb, hdr);
7033
7034 if (data->nla_type == NL80211_ATTR_VENDOR_DATA)
7035 mcgrp = NL80211_MCGRP_VENDOR;
7036
7037 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), skb, 0,
7038 mcgrp, gfp);
7039}
7040EXPORT_SYMBOL(__cfg80211_send_event_skb);
7041
Johannes Bergaff89a92009-07-01 21:26:51 +02007042#ifdef CONFIG_NL80211_TESTMODE
Johannes Bergaff89a92009-07-01 21:26:51 +02007043static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
7044{
Johannes Berg4c476992010-10-04 21:36:35 +02007045 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03007046 struct wireless_dev *wdev =
7047 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02007048 int err;
7049
David Spinadelfc73f112013-07-31 18:04:15 +03007050 if (!rdev->ops->testmode_cmd)
7051 return -EOPNOTSUPP;
7052
7053 if (IS_ERR(wdev)) {
7054 err = PTR_ERR(wdev);
7055 if (err != -EINVAL)
7056 return err;
7057 wdev = NULL;
7058 } else if (wdev->wiphy != &rdev->wiphy) {
7059 return -EINVAL;
7060 }
7061
Johannes Bergaff89a92009-07-01 21:26:51 +02007062 if (!info->attrs[NL80211_ATTR_TESTDATA])
7063 return -EINVAL;
7064
Johannes Bergad7e7182013-11-13 13:37:47 +01007065 rdev->cur_cmd_info = info;
David Spinadelfc73f112013-07-31 18:04:15 +03007066 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02007067 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
7068 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
Johannes Bergad7e7182013-11-13 13:37:47 +01007069 rdev->cur_cmd_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02007070
Johannes Bergaff89a92009-07-01 21:26:51 +02007071 return err;
7072}
7073
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007074static int nl80211_testmode_dump(struct sk_buff *skb,
7075 struct netlink_callback *cb)
7076{
Johannes Berg00918d32011-12-13 17:22:05 +01007077 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007078 int err;
7079 long phy_idx;
7080 void *data = NULL;
7081 int data_len = 0;
7082
Johannes Berg5fe231e2013-05-08 21:45:15 +02007083 rtnl_lock();
7084
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007085 if (cb->args[0]) {
7086 /*
7087 * 0 is a valid index, but not valid for args[0],
7088 * so we need to offset by 1.
7089 */
7090 phy_idx = cb->args[0] - 1;
7091 } else {
7092 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
7093 nl80211_fam.attrbuf, nl80211_fam.maxattr,
7094 nl80211_policy);
7095 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02007096 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01007097
Johannes Berg2bd7e352012-06-15 14:23:16 +02007098 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
7099 nl80211_fam.attrbuf);
7100 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02007101 err = PTR_ERR(rdev);
7102 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01007103 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02007104 phy_idx = rdev->wiphy_idx;
7105 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02007106
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007107 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
7108 cb->args[1] =
7109 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
7110 }
7111
7112 if (cb->args[1]) {
7113 data = nla_data((void *)cb->args[1]);
7114 data_len = nla_len((void *)cb->args[1]);
7115 }
7116
Johannes Berg00918d32011-12-13 17:22:05 +01007117 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
7118 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02007119 err = -ENOENT;
7120 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007121 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007122
Johannes Berg00918d32011-12-13 17:22:05 +01007123 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007124 err = -EOPNOTSUPP;
7125 goto out_err;
7126 }
7127
7128 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00007129 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007130 cb->nlh->nlmsg_seq, NLM_F_MULTI,
7131 NL80211_CMD_TESTMODE);
7132 struct nlattr *tmdata;
7133
Dan Carpentercb35fba2013-08-14 14:50:01 +03007134 if (!hdr)
7135 break;
7136
David S. Miller9360ffd2012-03-29 04:41:26 -04007137 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007138 genlmsg_cancel(skb, hdr);
7139 break;
7140 }
7141
7142 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
7143 if (!tmdata) {
7144 genlmsg_cancel(skb, hdr);
7145 break;
7146 }
Hila Gonene35e4d22012-06-27 17:19:42 +03007147 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007148 nla_nest_end(skb, tmdata);
7149
7150 if (err == -ENOBUFS || err == -ENOENT) {
7151 genlmsg_cancel(skb, hdr);
7152 break;
7153 } else if (err) {
7154 genlmsg_cancel(skb, hdr);
7155 goto out_err;
7156 }
7157
7158 genlmsg_end(skb, hdr);
7159 }
7160
7161 err = skb->len;
7162 /* see above */
7163 cb->args[0] = phy_idx + 1;
7164 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02007165 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007166 return err;
7167}
Johannes Bergaff89a92009-07-01 21:26:51 +02007168#endif
7169
Samuel Ortizb23aa672009-07-01 21:26:54 +02007170static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
7171{
Johannes Berg4c476992010-10-04 21:36:35 +02007172 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7173 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007174 struct cfg80211_connect_params connect;
7175 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02007176 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007177 int err;
7178
7179 memset(&connect, 0, sizeof(connect));
7180
7181 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7182 return -EINVAL;
7183
7184 if (!info->attrs[NL80211_ATTR_SSID] ||
7185 !nla_len(info->attrs[NL80211_ATTR_SSID]))
7186 return -EINVAL;
7187
7188 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
7189 connect.auth_type =
7190 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03007191 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
7192 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02007193 return -EINVAL;
7194 } else
7195 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
7196
7197 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
7198
Johannes Bergc0692b82010-08-27 14:26:53 +03007199 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02007200 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007201 if (err)
7202 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007203
Johannes Berg074ac8d2010-09-16 14:58:22 +02007204 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007205 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7206 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007207
Johannes Berg79c97e92009-07-07 03:56:12 +02007208 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007209
Bala Shanmugam4486ea92012-03-07 17:27:12 +05307210 connect.bg_scan_period = -1;
7211 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
7212 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
7213 connect.bg_scan_period =
7214 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
7215 }
7216
Samuel Ortizb23aa672009-07-01 21:26:54 +02007217 if (info->attrs[NL80211_ATTR_MAC])
7218 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen1df4a512014-01-15 00:00:47 +02007219 else if (info->attrs[NL80211_ATTR_MAC_HINT])
7220 connect.bssid_hint =
7221 nla_data(info->attrs[NL80211_ATTR_MAC_HINT]);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007222 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
7223 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
7224
7225 if (info->attrs[NL80211_ATTR_IE]) {
7226 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7227 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
7228 }
7229
Jouni Malinencee00a92013-01-15 17:15:57 +02007230 if (info->attrs[NL80211_ATTR_USE_MFP]) {
7231 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
7232 if (connect.mfp != NL80211_MFP_REQUIRED &&
7233 connect.mfp != NL80211_MFP_NO)
7234 return -EINVAL;
7235 } else {
7236 connect.mfp = NL80211_MFP_NO;
7237 }
7238
Samuel Ortizb23aa672009-07-01 21:26:54 +02007239 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Jouni Malinen664834d2014-01-15 00:01:44 +02007240 connect.channel = nl80211_get_valid_chan(
7241 wiphy, info->attrs[NL80211_ATTR_WIPHY_FREQ]);
7242 if (!connect.channel)
Johannes Berg4c476992010-10-04 21:36:35 +02007243 return -EINVAL;
Jouni Malinen1df4a512014-01-15 00:00:47 +02007244 } else if (info->attrs[NL80211_ATTR_WIPHY_FREQ_HINT]) {
Jouni Malinen664834d2014-01-15 00:01:44 +02007245 connect.channel_hint = nl80211_get_valid_chan(
7246 wiphy, info->attrs[NL80211_ATTR_WIPHY_FREQ_HINT]);
7247 if (!connect.channel_hint)
Jouni Malinen1df4a512014-01-15 00:00:47 +02007248 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007249 }
7250
Johannes Bergfffd0932009-07-08 14:22:54 +02007251 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
7252 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05307253 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02007254 if (IS_ERR(connkeys))
7255 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02007256 }
7257
Ben Greear7e7c8922011-11-18 11:31:59 -08007258 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
7259 connect.flags |= ASSOC_REQ_DISABLE_HT;
7260
7261 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
7262 memcpy(&connect.ht_capa_mask,
7263 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
7264 sizeof(connect.ht_capa_mask));
7265
7266 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08007267 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
Johannes Bergb47f6102014-09-10 13:39:54 +03007268 kzfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08007269 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08007270 }
Ben Greear7e7c8922011-11-18 11:31:59 -08007271 memcpy(&connect.ht_capa,
7272 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
7273 sizeof(connect.ht_capa));
7274 }
7275
Johannes Bergee2aca32013-02-21 17:36:01 +01007276 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
7277 connect.flags |= ASSOC_REQ_DISABLE_VHT;
7278
7279 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
7280 memcpy(&connect.vht_capa_mask,
7281 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
7282 sizeof(connect.vht_capa_mask));
7283
7284 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
7285 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
Johannes Bergb47f6102014-09-10 13:39:54 +03007286 kzfree(connkeys);
Johannes Bergee2aca32013-02-21 17:36:01 +01007287 return -EINVAL;
7288 }
7289 memcpy(&connect.vht_capa,
7290 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
7291 sizeof(connect.vht_capa));
7292 }
7293
Assaf Kraussbab5ab72014-09-03 15:25:01 +03007294 if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
7295 if (!(rdev->wiphy.features &
7296 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) ||
7297 !(rdev->wiphy.features & NL80211_FEATURE_QUIET))
7298 return -EINVAL;
7299 connect.flags |= ASSOC_REQ_USE_RRM;
7300 }
7301
Johannes Berg83739b02013-05-15 17:44:01 +02007302 wdev_lock(dev->ieee80211_ptr);
7303 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
7304 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02007305 if (err)
Johannes Bergb47f6102014-09-10 13:39:54 +03007306 kzfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007307 return err;
7308}
7309
7310static int nl80211_disconnect(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];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007314 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02007315 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007316
7317 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7318 reason = WLAN_REASON_DEAUTH_LEAVING;
7319 else
7320 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7321
7322 if (reason == 0)
7323 return -EINVAL;
7324
Johannes Berg074ac8d2010-09-16 14:58:22 +02007325 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007326 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7327 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007328
Johannes Berg83739b02013-05-15 17:44:01 +02007329 wdev_lock(dev->ieee80211_ptr);
7330 ret = cfg80211_disconnect(rdev, dev, reason, true);
7331 wdev_unlock(dev->ieee80211_ptr);
7332 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007333}
7334
Johannes Berg463d0182009-07-14 00:33:35 +02007335static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
7336{
Johannes Berg4c476992010-10-04 21:36:35 +02007337 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02007338 struct net *net;
7339 int err;
7340 u32 pid;
7341
7342 if (!info->attrs[NL80211_ATTR_PID])
7343 return -EINVAL;
7344
7345 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
7346
Johannes Berg463d0182009-07-14 00:33:35 +02007347 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02007348 if (IS_ERR(net))
7349 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007350
7351 err = 0;
7352
7353 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02007354 if (!net_eq(wiphy_net(&rdev->wiphy), net))
7355 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02007356
Johannes Berg463d0182009-07-14 00:33:35 +02007357 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007358 return err;
7359}
7360
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007361static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
7362{
Johannes Berg4c476992010-10-04 21:36:35 +02007363 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007364 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
7365 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02007366 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007367 struct cfg80211_pmksa pmksa;
7368
7369 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
7370
7371 if (!info->attrs[NL80211_ATTR_MAC])
7372 return -EINVAL;
7373
7374 if (!info->attrs[NL80211_ATTR_PMKID])
7375 return -EINVAL;
7376
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007377 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7378 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7379
Johannes Berg074ac8d2010-09-16 14:58:22 +02007380 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007381 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7382 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007383
7384 switch (info->genlhdr->cmd) {
7385 case NL80211_CMD_SET_PMKSA:
7386 rdev_ops = rdev->ops->set_pmksa;
7387 break;
7388 case NL80211_CMD_DEL_PMKSA:
7389 rdev_ops = rdev->ops->del_pmksa;
7390 break;
7391 default:
7392 WARN_ON(1);
7393 break;
7394 }
7395
Johannes Berg4c476992010-10-04 21:36:35 +02007396 if (!rdev_ops)
7397 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007398
Johannes Berg4c476992010-10-04 21:36:35 +02007399 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007400}
7401
7402static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7403{
Johannes Berg4c476992010-10-04 21:36:35 +02007404 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7405 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007406
Johannes Berg074ac8d2010-09-16 14:58:22 +02007407 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007408 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7409 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007410
Johannes Berg4c476992010-10-04 21:36:35 +02007411 if (!rdev->ops->flush_pmksa)
7412 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007413
Hila Gonene35e4d22012-06-27 17:19:42 +03007414 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007415}
7416
Arik Nemtsov109086c2011-09-28 14:12:50 +03007417static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7418{
7419 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7420 struct net_device *dev = info->user_ptr[1];
7421 u8 action_code, dialog_token;
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05307422 u32 peer_capability = 0;
Arik Nemtsov109086c2011-09-28 14:12:50 +03007423 u16 status_code;
7424 u8 *peer;
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03007425 bool initiator;
Arik Nemtsov109086c2011-09-28 14:12:50 +03007426
7427 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7428 !rdev->ops->tdls_mgmt)
7429 return -EOPNOTSUPP;
7430
7431 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7432 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7433 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7434 !info->attrs[NL80211_ATTR_IE] ||
7435 !info->attrs[NL80211_ATTR_MAC])
7436 return -EINVAL;
7437
7438 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7439 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7440 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7441 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03007442 initiator = nla_get_flag(info->attrs[NL80211_ATTR_TDLS_INITIATOR]);
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05307443 if (info->attrs[NL80211_ATTR_TDLS_PEER_CAPABILITY])
7444 peer_capability =
7445 nla_get_u32(info->attrs[NL80211_ATTR_TDLS_PEER_CAPABILITY]);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007446
Hila Gonene35e4d22012-06-27 17:19:42 +03007447 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05307448 dialog_token, status_code, peer_capability,
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03007449 initiator,
Hila Gonene35e4d22012-06-27 17:19:42 +03007450 nla_data(info->attrs[NL80211_ATTR_IE]),
7451 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007452}
7453
7454static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7455{
7456 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7457 struct net_device *dev = info->user_ptr[1];
7458 enum nl80211_tdls_operation operation;
7459 u8 *peer;
7460
7461 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7462 !rdev->ops->tdls_oper)
7463 return -EOPNOTSUPP;
7464
7465 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7466 !info->attrs[NL80211_ATTR_MAC])
7467 return -EINVAL;
7468
7469 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7470 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7471
Hila Gonene35e4d22012-06-27 17:19:42 +03007472 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007473}
7474
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007475static int nl80211_remain_on_channel(struct sk_buff *skb,
7476 struct genl_info *info)
7477{
Johannes Berg4c476992010-10-04 21:36:35 +02007478 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007479 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007480 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007481 struct sk_buff *msg;
7482 void *hdr;
7483 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007484 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007485 int err;
7486
7487 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7488 !info->attrs[NL80211_ATTR_DURATION])
7489 return -EINVAL;
7490
7491 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7492
Johannes Berg7c4ef712011-11-18 15:33:48 +01007493 if (!rdev->ops->remain_on_channel ||
7494 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007495 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007496
Johannes Bergebf348f2012-06-01 12:50:54 +02007497 /*
7498 * We should be on that channel for at least a minimum amount of
7499 * time (10ms) but no longer than the driver supports.
7500 */
7501 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7502 duration > rdev->wiphy.max_remain_on_channel_duration)
7503 return -EINVAL;
7504
Johannes Berg683b6d32012-11-08 21:25:48 +01007505 err = nl80211_parse_chandef(rdev, info, &chandef);
7506 if (err)
7507 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007508
7509 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007510 if (!msg)
7511 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007512
Eric W. Biederman15e47302012-09-07 20:12:54 +00007513 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007514 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007515 if (!hdr) {
7516 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007517 goto free_msg;
7518 }
7519
Johannes Berg683b6d32012-11-08 21:25:48 +01007520 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7521 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007522
7523 if (err)
7524 goto free_msg;
7525
David S. Miller9360ffd2012-03-29 04:41:26 -04007526 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7527 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007528
7529 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007530
7531 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007532
7533 nla_put_failure:
7534 err = -ENOBUFS;
7535 free_msg:
7536 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007537 return err;
7538}
7539
7540static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7541 struct genl_info *info)
7542{
Johannes Berg4c476992010-10-04 21:36:35 +02007543 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007544 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007545 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007546
7547 if (!info->attrs[NL80211_ATTR_COOKIE])
7548 return -EINVAL;
7549
Johannes Berg4c476992010-10-04 21:36:35 +02007550 if (!rdev->ops->cancel_remain_on_channel)
7551 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007552
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007553 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7554
Hila Gonene35e4d22012-06-27 17:19:42 +03007555 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007556}
7557
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007558static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7559 u8 *rates, u8 rates_len)
7560{
7561 u8 i;
7562 u32 mask = 0;
7563
7564 for (i = 0; i < rates_len; i++) {
7565 int rate = (rates[i] & 0x7f) * 5;
7566 int ridx;
7567 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7568 struct ieee80211_rate *srate =
7569 &sband->bitrates[ridx];
7570 if (rate == srate->bitrate) {
7571 mask |= 1 << ridx;
7572 break;
7573 }
7574 }
7575 if (ridx == sband->n_bitrates)
7576 return 0; /* rate not found */
7577 }
7578
7579 return mask;
7580}
7581
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007582static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7583 u8 *rates, u8 rates_len,
7584 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7585{
7586 u8 i;
7587
7588 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7589
7590 for (i = 0; i < rates_len; i++) {
7591 int ridx, rbit;
7592
7593 ridx = rates[i] / 8;
7594 rbit = BIT(rates[i] % 8);
7595
7596 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007597 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007598 return false;
7599
7600 /* check availability */
7601 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7602 mcs[ridx] |= rbit;
7603 else
7604 return false;
7605 }
7606
7607 return true;
7608}
7609
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007610static u16 vht_mcs_map_to_mcs_mask(u8 vht_mcs_map)
7611{
7612 u16 mcs_mask = 0;
7613
7614 switch (vht_mcs_map) {
7615 case IEEE80211_VHT_MCS_NOT_SUPPORTED:
7616 break;
7617 case IEEE80211_VHT_MCS_SUPPORT_0_7:
7618 mcs_mask = 0x00FF;
7619 break;
7620 case IEEE80211_VHT_MCS_SUPPORT_0_8:
7621 mcs_mask = 0x01FF;
7622 break;
7623 case IEEE80211_VHT_MCS_SUPPORT_0_9:
7624 mcs_mask = 0x03FF;
7625 break;
7626 default:
7627 break;
7628 }
7629
7630 return mcs_mask;
7631}
7632
7633static void vht_build_mcs_mask(u16 vht_mcs_map,
7634 u16 vht_mcs_mask[NL80211_VHT_NSS_MAX])
7635{
7636 u8 nss;
7637
7638 for (nss = 0; nss < NL80211_VHT_NSS_MAX; nss++) {
7639 vht_mcs_mask[nss] = vht_mcs_map_to_mcs_mask(vht_mcs_map & 0x03);
7640 vht_mcs_map >>= 2;
7641 }
7642}
7643
7644static bool vht_set_mcs_mask(struct ieee80211_supported_band *sband,
7645 struct nl80211_txrate_vht *txrate,
7646 u16 mcs[NL80211_VHT_NSS_MAX])
7647{
7648 u16 tx_mcs_map = le16_to_cpu(sband->vht_cap.vht_mcs.tx_mcs_map);
7649 u16 tx_mcs_mask[NL80211_VHT_NSS_MAX] = {};
7650 u8 i;
7651
7652 if (!sband->vht_cap.vht_supported)
7653 return false;
7654
7655 memset(mcs, 0, sizeof(u16) * NL80211_VHT_NSS_MAX);
7656
7657 /* Build vht_mcs_mask from VHT capabilities */
7658 vht_build_mcs_mask(tx_mcs_map, tx_mcs_mask);
7659
7660 for (i = 0; i < NL80211_VHT_NSS_MAX; i++) {
7661 if ((tx_mcs_mask[i] & txrate->mcs[i]) == txrate->mcs[i])
7662 mcs[i] = txrate->mcs[i];
7663 else
7664 return false;
7665 }
7666
7667 return true;
7668}
7669
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007670static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007671 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7672 .len = NL80211_MAX_SUPP_RATES },
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007673 [NL80211_TXRATE_HT] = { .type = NLA_BINARY,
7674 .len = NL80211_MAX_SUPP_HT_RATES },
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007675 [NL80211_TXRATE_VHT] = { .len = sizeof(struct nl80211_txrate_vht)},
Janusz Dziedzic0b9323f2014-01-08 08:46:02 +01007676 [NL80211_TXRATE_GI] = { .type = NLA_U8 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007677};
7678
7679static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7680 struct genl_info *info)
7681{
7682 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007683 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007684 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007685 int rem, i;
7686 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007687 struct nlattr *tx_rates;
7688 struct ieee80211_supported_band *sband;
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007689 u16 vht_tx_mcs_map;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007690
Johannes Berg4c476992010-10-04 21:36:35 +02007691 if (!rdev->ops->set_bitrate_mask)
7692 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007693
7694 memset(&mask, 0, sizeof(mask));
7695 /* Default to all rates enabled */
7696 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7697 sband = rdev->wiphy.bands[i];
Janusz Dziedzic78693032013-12-03 09:50:44 +01007698
7699 if (!sband)
7700 continue;
7701
7702 mask.control[i].legacy = (1 << sband->n_bitrates) - 1;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007703 memcpy(mask.control[i].ht_mcs,
Janusz Dziedzic78693032013-12-03 09:50:44 +01007704 sband->ht_cap.mcs.rx_mask,
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007705 sizeof(mask.control[i].ht_mcs));
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007706
7707 if (!sband->vht_cap.vht_supported)
7708 continue;
7709
7710 vht_tx_mcs_map = le16_to_cpu(sband->vht_cap.vht_mcs.tx_mcs_map);
7711 vht_build_mcs_mask(vht_tx_mcs_map, mask.control[i].vht_mcs);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007712 }
7713
Janusz Dziedzicb9243ab2013-12-05 10:02:14 +01007714 /* if no rates are given set it back to the defaults */
7715 if (!info->attrs[NL80211_ATTR_TX_RATES])
7716 goto out;
7717
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007718 /*
7719 * The nested attribute uses enum nl80211_band as the index. This maps
7720 * directly to the enum ieee80211_band values used in cfg80211.
7721 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007722 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Johannes Bergae811e22014-01-24 10:17:47 +01007723 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem) {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007724 enum ieee80211_band band = nla_type(tx_rates);
Johannes Bergae811e22014-01-24 10:17:47 +01007725 int err;
7726
Johannes Berg4c476992010-10-04 21:36:35 +02007727 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7728 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007729 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007730 if (sband == NULL)
7731 return -EINVAL;
Johannes Bergae811e22014-01-24 10:17:47 +01007732 err = nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7733 nla_len(tx_rates), nl80211_txattr_policy);
7734 if (err)
7735 return err;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007736 if (tb[NL80211_TXRATE_LEGACY]) {
7737 mask.control[band].legacy = rateset_to_mask(
7738 sband,
7739 nla_data(tb[NL80211_TXRATE_LEGACY]),
7740 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307741 if ((mask.control[band].legacy == 0) &&
7742 nla_len(tb[NL80211_TXRATE_LEGACY]))
7743 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007744 }
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007745 if (tb[NL80211_TXRATE_HT]) {
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007746 if (!ht_rateset_to_mask(
7747 sband,
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007748 nla_data(tb[NL80211_TXRATE_HT]),
7749 nla_len(tb[NL80211_TXRATE_HT]),
7750 mask.control[band].ht_mcs))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007751 return -EINVAL;
7752 }
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007753 if (tb[NL80211_TXRATE_VHT]) {
7754 if (!vht_set_mcs_mask(
7755 sband,
7756 nla_data(tb[NL80211_TXRATE_VHT]),
7757 mask.control[band].vht_mcs))
7758 return -EINVAL;
7759 }
Janusz Dziedzic0b9323f2014-01-08 08:46:02 +01007760 if (tb[NL80211_TXRATE_GI]) {
7761 mask.control[band].gi =
7762 nla_get_u8(tb[NL80211_TXRATE_GI]);
7763 if (mask.control[band].gi > NL80211_TXRATE_FORCE_LGI)
7764 return -EINVAL;
7765 }
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007766
7767 if (mask.control[band].legacy == 0) {
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007768 /* don't allow empty legacy rates if HT or VHT
7769 * are not even supported.
7770 */
7771 if (!(rdev->wiphy.bands[band]->ht_cap.ht_supported ||
7772 rdev->wiphy.bands[band]->vht_cap.vht_supported))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007773 return -EINVAL;
7774
7775 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007776 if (mask.control[band].ht_mcs[i])
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007777 goto out;
7778
7779 for (i = 0; i < NL80211_VHT_NSS_MAX; i++)
7780 if (mask.control[band].vht_mcs[i])
7781 goto out;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007782
7783 /* legacy and mcs rates may not be both empty */
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007784 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007785 }
7786 }
7787
Janusz Dziedzicb9243ab2013-12-05 10:02:14 +01007788out:
Hila Gonene35e4d22012-06-27 17:19:42 +03007789 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007790}
7791
Johannes Berg2e161f72010-08-12 15:38:38 +02007792static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007793{
Johannes Berg4c476992010-10-04 21:36:35 +02007794 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007795 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007796 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007797
7798 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7799 return -EINVAL;
7800
Johannes Berg2e161f72010-08-12 15:38:38 +02007801 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7802 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007803
Johannes Berg71bbc992012-06-15 15:30:18 +02007804 switch (wdev->iftype) {
7805 case NL80211_IFTYPE_STATION:
7806 case NL80211_IFTYPE_ADHOC:
7807 case NL80211_IFTYPE_P2P_CLIENT:
7808 case NL80211_IFTYPE_AP:
7809 case NL80211_IFTYPE_AP_VLAN:
7810 case NL80211_IFTYPE_MESH_POINT:
7811 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007812 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007813 break;
7814 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007815 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007816 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007817
7818 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007819 if (!rdev->ops->mgmt_tx)
7820 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007821
Eric W. Biederman15e47302012-09-07 20:12:54 +00007822 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007823 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7824 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007825}
7826
Johannes Berg2e161f72010-08-12 15:38:38 +02007827static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007828{
Johannes Berg4c476992010-10-04 21:36:35 +02007829 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007830 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007831 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007832 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007833 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007834 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007835 struct sk_buff *msg = NULL;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007836 struct cfg80211_mgmt_tx_params params = {
7837 .dont_wait_for_ack =
7838 info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK],
7839 };
Jouni Malinen026331c2010-02-15 12:53:10 +02007840
Johannes Berg683b6d32012-11-08 21:25:48 +01007841 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007842 return -EINVAL;
7843
Johannes Berg4c476992010-10-04 21:36:35 +02007844 if (!rdev->ops->mgmt_tx)
7845 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007846
Johannes Berg71bbc992012-06-15 15:30:18 +02007847 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007848 case NL80211_IFTYPE_P2P_DEVICE:
7849 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7850 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007851 case NL80211_IFTYPE_STATION:
7852 case NL80211_IFTYPE_ADHOC:
7853 case NL80211_IFTYPE_P2P_CLIENT:
7854 case NL80211_IFTYPE_AP:
7855 case NL80211_IFTYPE_AP_VLAN:
7856 case NL80211_IFTYPE_MESH_POINT:
7857 case NL80211_IFTYPE_P2P_GO:
7858 break;
7859 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007860 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007861 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007862
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007863 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007864 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007865 return -EINVAL;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007866 params.wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007867
7868 /*
7869 * We should wait on the channel for at least a minimum amount
7870 * of time (10ms) but no longer than the driver supports.
7871 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007872 if (params.wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7873 params.wait > rdev->wiphy.max_remain_on_channel_duration)
Johannes Bergebf348f2012-06-01 12:50:54 +02007874 return -EINVAL;
7875
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007876 }
7877
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007878 params.offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007879
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007880 if (params.offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Berg7c4ef712011-11-18 15:33:48 +01007881 return -EINVAL;
7882
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007883 params.no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307884
Antonio Quartulliea141b752013-06-11 14:20:03 +02007885 /* get the channel if any has been specified, otherwise pass NULL to
7886 * the driver. The latter will use the current one
7887 */
7888 chandef.chan = NULL;
7889 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7890 err = nl80211_parse_chandef(rdev, info, &chandef);
7891 if (err)
7892 return err;
7893 }
7894
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007895 if (!chandef.chan && params.offchan)
Antonio Quartulliea141b752013-06-11 14:20:03 +02007896 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007897
Andrei Otcheretianski34d22ce2014-05-09 14:11:44 +03007898 params.buf = nla_data(info->attrs[NL80211_ATTR_FRAME]);
7899 params.len = nla_len(info->attrs[NL80211_ATTR_FRAME]);
7900
7901 if (info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]) {
7902 int len = nla_len(info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]);
7903 int i;
7904
7905 if (len % sizeof(u16))
7906 return -EINVAL;
7907
7908 params.n_csa_offsets = len / sizeof(u16);
7909 params.csa_offsets =
7910 nla_data(info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]);
7911
7912 /* check that all the offsets fit the frame */
7913 for (i = 0; i < params.n_csa_offsets; i++) {
7914 if (params.csa_offsets[i] >= params.len)
7915 return -EINVAL;
7916 }
7917 }
7918
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007919 if (!params.dont_wait_for_ack) {
Johannes Berge247bd902011-11-04 11:18:21 +01007920 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7921 if (!msg)
7922 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007923
Eric W. Biederman15e47302012-09-07 20:12:54 +00007924 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007925 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007926 if (!hdr) {
7927 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007928 goto free_msg;
7929 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007930 }
Johannes Berge247bd902011-11-04 11:18:21 +01007931
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007932 params.chan = chandef.chan;
7933 err = cfg80211_mlme_mgmt_tx(rdev, wdev, &params, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007934 if (err)
7935 goto free_msg;
7936
Johannes Berge247bd902011-11-04 11:18:21 +01007937 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007938 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7939 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007940
Johannes Berge247bd902011-11-04 11:18:21 +01007941 genlmsg_end(msg, hdr);
7942 return genlmsg_reply(msg, info);
7943 }
7944
7945 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007946
7947 nla_put_failure:
7948 err = -ENOBUFS;
7949 free_msg:
7950 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007951 return err;
7952}
7953
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007954static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7955{
7956 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007957 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007958 u64 cookie;
7959
7960 if (!info->attrs[NL80211_ATTR_COOKIE])
7961 return -EINVAL;
7962
7963 if (!rdev->ops->mgmt_tx_cancel_wait)
7964 return -EOPNOTSUPP;
7965
Johannes Berg71bbc992012-06-15 15:30:18 +02007966 switch (wdev->iftype) {
7967 case NL80211_IFTYPE_STATION:
7968 case NL80211_IFTYPE_ADHOC:
7969 case NL80211_IFTYPE_P2P_CLIENT:
7970 case NL80211_IFTYPE_AP:
7971 case NL80211_IFTYPE_AP_VLAN:
7972 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007973 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007974 break;
7975 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007976 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007977 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007978
7979 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7980
Hila Gonene35e4d22012-06-27 17:19:42 +03007981 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007982}
7983
Kalle Valoffb9eb32010-02-17 17:58:10 +02007984static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7985{
Johannes Berg4c476992010-10-04 21:36:35 +02007986 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007987 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007988 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007989 u8 ps_state;
7990 bool state;
7991 int err;
7992
Johannes Berg4c476992010-10-04 21:36:35 +02007993 if (!info->attrs[NL80211_ATTR_PS_STATE])
7994 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007995
7996 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
7997
Johannes Berg4c476992010-10-04 21:36:35 +02007998 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
7999 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008000
8001 wdev = dev->ieee80211_ptr;
8002
Johannes Berg4c476992010-10-04 21:36:35 +02008003 if (!rdev->ops->set_power_mgmt)
8004 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008005
8006 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
8007
8008 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02008009 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008010
Hila Gonene35e4d22012-06-27 17:19:42 +03008011 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02008012 if (!err)
8013 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008014 return err;
8015}
8016
8017static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
8018{
Johannes Berg4c476992010-10-04 21:36:35 +02008019 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02008020 enum nl80211_ps_state ps_state;
8021 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008022 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02008023 struct sk_buff *msg;
8024 void *hdr;
8025 int err;
8026
Kalle Valoffb9eb32010-02-17 17:58:10 +02008027 wdev = dev->ieee80211_ptr;
8028
Johannes Berg4c476992010-10-04 21:36:35 +02008029 if (!rdev->ops->set_power_mgmt)
8030 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008031
8032 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02008033 if (!msg)
8034 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008035
Eric W. Biederman15e47302012-09-07 20:12:54 +00008036 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02008037 NL80211_CMD_GET_POWER_SAVE);
8038 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02008039 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008040 goto free_msg;
8041 }
8042
8043 if (wdev->ps)
8044 ps_state = NL80211_PS_ENABLED;
8045 else
8046 ps_state = NL80211_PS_DISABLED;
8047
David S. Miller9360ffd2012-03-29 04:41:26 -04008048 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
8049 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008050
8051 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02008052 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02008053
Johannes Berg4c476992010-10-04 21:36:35 +02008054 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02008055 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02008056 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02008057 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02008058 return err;
8059}
8060
Johannes Berg94e860f2014-01-20 23:58:15 +01008061static const struct nla_policy
8062nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008063 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
8064 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
8065 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07008066 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
8067 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
8068 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008069};
8070
Thomas Pedersen84f10702012-07-12 16:17:33 -07008071static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01008072 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07008073{
8074 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07008075 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008076 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07008077
Johannes Bergd9d8b012012-11-26 12:51:52 +01008078 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07008079 return -EINVAL;
8080
Thomas Pedersen84f10702012-07-12 16:17:33 -07008081 if (!rdev->ops->set_cqm_txe_config)
8082 return -EOPNOTSUPP;
8083
8084 if (wdev->iftype != NL80211_IFTYPE_STATION &&
8085 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
8086 return -EOPNOTSUPP;
8087
Hila Gonene35e4d22012-06-27 17:19:42 +03008088 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07008089}
8090
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008091static int nl80211_set_cqm_rssi(struct genl_info *info,
8092 s32 threshold, u32 hysteresis)
8093{
Johannes Berg4c476992010-10-04 21:36:35 +02008094 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02008095 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008096 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008097
8098 if (threshold > 0)
8099 return -EINVAL;
8100
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008101 /* disabling - hysteresis should also be zero then */
8102 if (threshold == 0)
8103 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008104
Johannes Berg4c476992010-10-04 21:36:35 +02008105 if (!rdev->ops->set_cqm_rssi_config)
8106 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008107
Johannes Berg074ac8d2010-09-16 14:58:22 +02008108 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02008109 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
8110 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008111
Hila Gonene35e4d22012-06-27 17:19:42 +03008112 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008113}
8114
8115static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
8116{
8117 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
8118 struct nlattr *cqm;
8119 int err;
8120
8121 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008122 if (!cqm)
8123 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008124
8125 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
8126 nl80211_attr_cqm_policy);
8127 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008128 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008129
8130 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
8131 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008132 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
8133 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008134
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008135 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
8136 }
8137
8138 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
8139 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
8140 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
8141 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
8142 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
8143 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
8144
8145 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
8146 }
8147
8148 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008149}
8150
Johannes Berg29cbe682010-12-03 09:20:44 +01008151static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
8152{
8153 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8154 struct net_device *dev = info->user_ptr[1];
8155 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08008156 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01008157 int err;
8158
8159 /* start with default */
8160 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08008161 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01008162
Javier Cardona24bdd9f2010-12-16 17:37:48 -08008163 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01008164 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08008165 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01008166 if (err)
8167 return err;
8168 }
8169
8170 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
8171 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
8172 return -EINVAL;
8173
Javier Cardonac80d5452010-12-16 17:37:49 -08008174 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
8175 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
8176
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08008177 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
8178 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
8179 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
8180 return -EINVAL;
8181
Marco Porsch9bdbf042013-01-07 16:04:51 +01008182 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
8183 setup.beacon_interval =
8184 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
8185 if (setup.beacon_interval < 10 ||
8186 setup.beacon_interval > 10000)
8187 return -EINVAL;
8188 }
8189
8190 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
8191 setup.dtim_period =
8192 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
8193 if (setup.dtim_period < 1 || setup.dtim_period > 100)
8194 return -EINVAL;
8195 }
8196
Javier Cardonac80d5452010-12-16 17:37:49 -08008197 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
8198 /* parse additional setup parameters if given */
8199 err = nl80211_parse_mesh_setup(info, &setup);
8200 if (err)
8201 return err;
8202 }
8203
Thomas Pedersend37bb182013-03-04 13:06:13 -08008204 if (setup.user_mpm)
8205 cfg.auto_open_plinks = false;
8206
Johannes Bergcc1d2802012-05-16 23:50:20 +02008207 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01008208 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
8209 if (err)
8210 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02008211 } else {
8212 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01008213 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02008214 }
8215
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07008216 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
8217 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
8218 int n_rates =
8219 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
8220 struct ieee80211_supported_band *sband;
8221
8222 if (!setup.chandef.chan)
8223 return -EINVAL;
8224
8225 sband = rdev->wiphy.bands[setup.chandef.chan->band];
8226
8227 err = ieee80211_get_ratemask(sband, rates, n_rates,
8228 &setup.basic_rates);
8229 if (err)
8230 return err;
8231 }
8232
Javier Cardonac80d5452010-12-16 17:37:49 -08008233 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01008234}
8235
8236static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
8237{
8238 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8239 struct net_device *dev = info->user_ptr[1];
8240
8241 return cfg80211_leave_mesh(rdev, dev);
8242}
8243
Johannes Bergdfb89c52012-06-27 09:23:48 +02008244#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008245static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
8246 struct cfg80211_registered_device *rdev)
8247{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008248 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008249 struct nlattr *nl_pats, *nl_pat;
8250 int i, pat_len;
8251
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008252 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008253 return 0;
8254
8255 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
8256 if (!nl_pats)
8257 return -ENOBUFS;
8258
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008259 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008260 nl_pat = nla_nest_start(msg, i + 1);
8261 if (!nl_pat)
8262 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008263 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008264 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008265 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008266 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8267 wowlan->patterns[i].pattern) ||
8268 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008269 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008270 return -ENOBUFS;
8271 nla_nest_end(msg, nl_pat);
8272 }
8273 nla_nest_end(msg, nl_pats);
8274
8275 return 0;
8276}
8277
Johannes Berg2a0e0472013-01-23 22:57:40 +01008278static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
8279 struct cfg80211_wowlan_tcp *tcp)
8280{
8281 struct nlattr *nl_tcp;
8282
8283 if (!tcp)
8284 return 0;
8285
8286 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
8287 if (!nl_tcp)
8288 return -ENOBUFS;
8289
8290 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
8291 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
8292 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
8293 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
8294 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
8295 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
8296 tcp->payload_len, tcp->payload) ||
8297 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
8298 tcp->data_interval) ||
8299 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
8300 tcp->wake_len, tcp->wake_data) ||
8301 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
8302 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
8303 return -ENOBUFS;
8304
8305 if (tcp->payload_seq.len &&
8306 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
8307 sizeof(tcp->payload_seq), &tcp->payload_seq))
8308 return -ENOBUFS;
8309
8310 if (tcp->payload_tok.len &&
8311 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
8312 sizeof(tcp->payload_tok) + tcp->tokens_size,
8313 &tcp->payload_tok))
8314 return -ENOBUFS;
8315
Johannes Berge248ad32013-05-16 10:24:28 +02008316 nla_nest_end(msg, nl_tcp);
8317
Johannes Berg2a0e0472013-01-23 22:57:40 +01008318 return 0;
8319}
8320
Johannes Bergff1b6e62011-05-04 15:37:28 +02008321static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
8322{
8323 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8324 struct sk_buff *msg;
8325 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008326 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008327
Johannes Berg964dc9e2013-06-03 17:25:34 +02008328 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008329 return -EOPNOTSUPP;
8330
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008331 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01008332 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008333 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
8334 rdev->wiphy.wowlan_config->tcp->payload_len +
8335 rdev->wiphy.wowlan_config->tcp->wake_len +
8336 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008337 }
8338
8339 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008340 if (!msg)
8341 return -ENOMEM;
8342
Eric W. Biederman15e47302012-09-07 20:12:54 +00008343 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02008344 NL80211_CMD_GET_WOWLAN);
8345 if (!hdr)
8346 goto nla_put_failure;
8347
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008348 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02008349 struct nlattr *nl_wowlan;
8350
8351 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
8352 if (!nl_wowlan)
8353 goto nla_put_failure;
8354
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008355 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008356 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008357 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008358 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008359 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008360 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008361 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008362 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008363 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008364 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008365 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008366 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008367 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008368 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
8369 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008370
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008371 if (nl80211_send_wowlan_patterns(msg, rdev))
8372 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008373
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008374 if (nl80211_send_wowlan_tcp(msg,
8375 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01008376 goto nla_put_failure;
8377
Johannes Bergff1b6e62011-05-04 15:37:28 +02008378 nla_nest_end(msg, nl_wowlan);
8379 }
8380
8381 genlmsg_end(msg, hdr);
8382 return genlmsg_reply(msg, info);
8383
8384nla_put_failure:
8385 nlmsg_free(msg);
8386 return -ENOBUFS;
8387}
8388
Johannes Berg2a0e0472013-01-23 22:57:40 +01008389static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
8390 struct nlattr *attr,
8391 struct cfg80211_wowlan *trig)
8392{
8393 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
8394 struct cfg80211_wowlan_tcp *cfg;
8395 struct nl80211_wowlan_tcp_data_token *tok = NULL;
8396 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
8397 u32 size;
8398 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
8399 int err, port;
8400
Johannes Berg964dc9e2013-06-03 17:25:34 +02008401 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008402 return -EINVAL;
8403
8404 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
8405 nla_data(attr), nla_len(attr),
8406 nl80211_wowlan_tcp_policy);
8407 if (err)
8408 return err;
8409
8410 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
8411 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
8412 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
8413 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
8414 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
8415 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
8416 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
8417 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
8418 return -EINVAL;
8419
8420 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008421 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008422 return -EINVAL;
8423
8424 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02008425 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01008426 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008427 return -EINVAL;
8428
8429 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008430 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008431 return -EINVAL;
8432
8433 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
8434 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
8435 return -EINVAL;
8436
8437 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
8438 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8439
8440 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8441 tokens_size = tokln - sizeof(*tok);
8442
8443 if (!tok->len || tokens_size % tok->len)
8444 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008445 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008446 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008447 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008448 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008449 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008450 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008451 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008452 return -EINVAL;
8453 if (tok->offset + tok->len > data_size)
8454 return -EINVAL;
8455 }
8456
8457 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
8458 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008459 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008460 return -EINVAL;
8461 if (seq->len == 0 || seq->len > 4)
8462 return -EINVAL;
8463 if (seq->len + seq->offset > data_size)
8464 return -EINVAL;
8465 }
8466
8467 size = sizeof(*cfg);
8468 size += data_size;
8469 size += wake_size + wake_mask_size;
8470 size += tokens_size;
8471
8472 cfg = kzalloc(size, GFP_KERNEL);
8473 if (!cfg)
8474 return -ENOMEM;
8475 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
8476 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
8477 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
8478 ETH_ALEN);
8479 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
8480 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
8481 else
8482 port = 0;
8483#ifdef CONFIG_INET
8484 /* allocate a socket and port for it and use it */
8485 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
8486 IPPROTO_TCP, &cfg->sock, 1);
8487 if (err) {
8488 kfree(cfg);
8489 return err;
8490 }
8491 if (inet_csk_get_port(cfg->sock->sk, port)) {
8492 sock_release(cfg->sock);
8493 kfree(cfg);
8494 return -EADDRINUSE;
8495 }
8496 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8497#else
8498 if (!port) {
8499 kfree(cfg);
8500 return -EINVAL;
8501 }
8502 cfg->src_port = port;
8503#endif
8504
8505 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8506 cfg->payload_len = data_size;
8507 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8508 memcpy((void *)cfg->payload,
8509 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8510 data_size);
8511 if (seq)
8512 cfg->payload_seq = *seq;
8513 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8514 cfg->wake_len = wake_size;
8515 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8516 memcpy((void *)cfg->wake_data,
8517 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8518 wake_size);
8519 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8520 data_size + wake_size;
8521 memcpy((void *)cfg->wake_mask,
8522 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8523 wake_mask_size);
8524 if (tok) {
8525 cfg->tokens_size = tokens_size;
8526 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8527 }
8528
8529 trig->tcp = cfg;
8530
8531 return 0;
8532}
8533
Johannes Bergff1b6e62011-05-04 15:37:28 +02008534static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8535{
8536 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8537 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008538 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008539 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008540 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008541 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008542 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008543
Johannes Berg964dc9e2013-06-03 17:25:34 +02008544 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008545 return -EOPNOTSUPP;
8546
Johannes Bergae33bd82012-07-12 16:25:02 +02008547 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8548 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008549 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008550 goto set_wakeup;
8551 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008552
8553 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8554 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8555 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8556 nl80211_wowlan_policy);
8557 if (err)
8558 return err;
8559
8560 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8561 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8562 return -EINVAL;
8563 new_triggers.any = true;
8564 }
8565
8566 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8567 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8568 return -EINVAL;
8569 new_triggers.disconnect = true;
8570 }
8571
8572 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8573 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8574 return -EINVAL;
8575 new_triggers.magic_pkt = true;
8576 }
8577
Johannes Berg77dbbb12011-07-13 10:48:55 +02008578 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8579 return -EINVAL;
8580
8581 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8582 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8583 return -EINVAL;
8584 new_triggers.gtk_rekey_failure = true;
8585 }
8586
8587 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8588 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8589 return -EINVAL;
8590 new_triggers.eap_identity_req = true;
8591 }
8592
8593 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8594 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8595 return -EINVAL;
8596 new_triggers.four_way_handshake = true;
8597 }
8598
8599 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8600 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8601 return -EINVAL;
8602 new_triggers.rfkill_release = true;
8603 }
8604
Johannes Bergff1b6e62011-05-04 15:37:28 +02008605 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8606 struct nlattr *pat;
8607 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008608 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008609 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008610
8611 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8612 rem)
8613 n_patterns++;
8614 if (n_patterns > wowlan->n_patterns)
8615 return -EINVAL;
8616
8617 new_triggers.patterns = kcalloc(n_patterns,
8618 sizeof(new_triggers.patterns[0]),
8619 GFP_KERNEL);
8620 if (!new_triggers.patterns)
8621 return -ENOMEM;
8622
8623 new_triggers.n_patterns = n_patterns;
8624 i = 0;
8625
8626 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8627 rem) {
Johannes Berg922bd802014-05-19 17:59:50 +02008628 u8 *mask_pat;
8629
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008630 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8631 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008632 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008633 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8634 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008635 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008636 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008637 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008638 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008639 goto error;
8640 if (pat_len > wowlan->pattern_max_len ||
8641 pat_len < wowlan->pattern_min_len)
8642 goto error;
8643
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008644 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008645 pkt_offset = 0;
8646 else
8647 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008648 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008649 if (pkt_offset > wowlan->max_pkt_offset)
8650 goto error;
8651 new_triggers.patterns[i].pkt_offset = pkt_offset;
8652
Johannes Berg922bd802014-05-19 17:59:50 +02008653 mask_pat = kmalloc(mask_len + pat_len, GFP_KERNEL);
8654 if (!mask_pat) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02008655 err = -ENOMEM;
8656 goto error;
8657 }
Johannes Berg922bd802014-05-19 17:59:50 +02008658 new_triggers.patterns[i].mask = mask_pat;
8659 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008660 mask_len);
Johannes Berg922bd802014-05-19 17:59:50 +02008661 mask_pat += mask_len;
8662 new_triggers.patterns[i].pattern = mask_pat;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008663 new_triggers.patterns[i].pattern_len = pat_len;
Johannes Berg922bd802014-05-19 17:59:50 +02008664 memcpy(mask_pat,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008665 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008666 pat_len);
8667 i++;
8668 }
8669 }
8670
Johannes Berg2a0e0472013-01-23 22:57:40 +01008671 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8672 err = nl80211_parse_wowlan_tcp(
8673 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8674 &new_triggers);
8675 if (err)
8676 goto error;
8677 }
8678
Johannes Bergae33bd82012-07-12 16:25:02 +02008679 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8680 if (!ntrig) {
8681 err = -ENOMEM;
8682 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008683 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008684 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008685 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008686
Johannes Bergae33bd82012-07-12 16:25:02 +02008687 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008688 if (rdev->ops->set_wakeup &&
8689 prev_enabled != !!rdev->wiphy.wowlan_config)
8690 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008691
Johannes Bergff1b6e62011-05-04 15:37:28 +02008692 return 0;
8693 error:
8694 for (i = 0; i < new_triggers.n_patterns; i++)
8695 kfree(new_triggers.patterns[i].mask);
8696 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008697 if (new_triggers.tcp && new_triggers.tcp->sock)
8698 sock_release(new_triggers.tcp->sock);
8699 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008700 return err;
8701}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008702#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008703
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008704static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8705 struct cfg80211_registered_device *rdev)
8706{
8707 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8708 int i, j, pat_len;
8709 struct cfg80211_coalesce_rules *rule;
8710
8711 if (!rdev->coalesce->n_rules)
8712 return 0;
8713
8714 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8715 if (!nl_rules)
8716 return -ENOBUFS;
8717
8718 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8719 nl_rule = nla_nest_start(msg, i + 1);
8720 if (!nl_rule)
8721 return -ENOBUFS;
8722
8723 rule = &rdev->coalesce->rules[i];
8724 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8725 rule->delay))
8726 return -ENOBUFS;
8727
8728 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8729 rule->condition))
8730 return -ENOBUFS;
8731
8732 nl_pats = nla_nest_start(msg,
8733 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8734 if (!nl_pats)
8735 return -ENOBUFS;
8736
8737 for (j = 0; j < rule->n_patterns; j++) {
8738 nl_pat = nla_nest_start(msg, j + 1);
8739 if (!nl_pat)
8740 return -ENOBUFS;
8741 pat_len = rule->patterns[j].pattern_len;
8742 if (nla_put(msg, NL80211_PKTPAT_MASK,
8743 DIV_ROUND_UP(pat_len, 8),
8744 rule->patterns[j].mask) ||
8745 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8746 rule->patterns[j].pattern) ||
8747 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8748 rule->patterns[j].pkt_offset))
8749 return -ENOBUFS;
8750 nla_nest_end(msg, nl_pat);
8751 }
8752 nla_nest_end(msg, nl_pats);
8753 nla_nest_end(msg, nl_rule);
8754 }
8755 nla_nest_end(msg, nl_rules);
8756
8757 return 0;
8758}
8759
8760static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8761{
8762 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8763 struct sk_buff *msg;
8764 void *hdr;
8765
8766 if (!rdev->wiphy.coalesce)
8767 return -EOPNOTSUPP;
8768
8769 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8770 if (!msg)
8771 return -ENOMEM;
8772
8773 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8774 NL80211_CMD_GET_COALESCE);
8775 if (!hdr)
8776 goto nla_put_failure;
8777
8778 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8779 goto nla_put_failure;
8780
8781 genlmsg_end(msg, hdr);
8782 return genlmsg_reply(msg, info);
8783
8784nla_put_failure:
8785 nlmsg_free(msg);
8786 return -ENOBUFS;
8787}
8788
8789void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8790{
8791 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8792 int i, j;
8793 struct cfg80211_coalesce_rules *rule;
8794
8795 if (!coalesce)
8796 return;
8797
8798 for (i = 0; i < coalesce->n_rules; i++) {
8799 rule = &coalesce->rules[i];
8800 for (j = 0; j < rule->n_patterns; j++)
8801 kfree(rule->patterns[j].mask);
8802 kfree(rule->patterns);
8803 }
8804 kfree(coalesce->rules);
8805 kfree(coalesce);
8806 rdev->coalesce = NULL;
8807}
8808
8809static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8810 struct nlattr *rule,
8811 struct cfg80211_coalesce_rules *new_rule)
8812{
8813 int err, i;
8814 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8815 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8816 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8817 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8818
8819 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8820 nla_len(rule), nl80211_coalesce_policy);
8821 if (err)
8822 return err;
8823
8824 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8825 new_rule->delay =
8826 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8827 if (new_rule->delay > coalesce->max_delay)
8828 return -EINVAL;
8829
8830 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8831 new_rule->condition =
8832 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8833 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8834 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8835 return -EINVAL;
8836
8837 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8838 return -EINVAL;
8839
8840 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8841 rem)
8842 n_patterns++;
8843 if (n_patterns > coalesce->n_patterns)
8844 return -EINVAL;
8845
8846 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8847 GFP_KERNEL);
8848 if (!new_rule->patterns)
8849 return -ENOMEM;
8850
8851 new_rule->n_patterns = n_patterns;
8852 i = 0;
8853
8854 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8855 rem) {
Johannes Berg922bd802014-05-19 17:59:50 +02008856 u8 *mask_pat;
8857
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008858 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8859 nla_len(pat), NULL);
8860 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8861 !pat_tb[NL80211_PKTPAT_PATTERN])
8862 return -EINVAL;
8863 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8864 mask_len = DIV_ROUND_UP(pat_len, 8);
8865 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8866 return -EINVAL;
8867 if (pat_len > coalesce->pattern_max_len ||
8868 pat_len < coalesce->pattern_min_len)
8869 return -EINVAL;
8870
8871 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8872 pkt_offset = 0;
8873 else
8874 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8875 if (pkt_offset > coalesce->max_pkt_offset)
8876 return -EINVAL;
8877 new_rule->patterns[i].pkt_offset = pkt_offset;
8878
Johannes Berg922bd802014-05-19 17:59:50 +02008879 mask_pat = kmalloc(mask_len + pat_len, GFP_KERNEL);
8880 if (!mask_pat)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008881 return -ENOMEM;
Johannes Berg922bd802014-05-19 17:59:50 +02008882
8883 new_rule->patterns[i].mask = mask_pat;
8884 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_MASK]),
8885 mask_len);
8886
8887 mask_pat += mask_len;
8888 new_rule->patterns[i].pattern = mask_pat;
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008889 new_rule->patterns[i].pattern_len = pat_len;
Johannes Berg922bd802014-05-19 17:59:50 +02008890 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
8891 pat_len);
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008892 i++;
8893 }
8894
8895 return 0;
8896}
8897
8898static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8899{
8900 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8901 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8902 struct cfg80211_coalesce new_coalesce = {};
8903 struct cfg80211_coalesce *n_coalesce;
8904 int err, rem_rule, n_rules = 0, i, j;
8905 struct nlattr *rule;
8906 struct cfg80211_coalesce_rules *tmp_rule;
8907
8908 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8909 return -EOPNOTSUPP;
8910
8911 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8912 cfg80211_rdev_free_coalesce(rdev);
8913 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8914 return 0;
8915 }
8916
8917 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8918 rem_rule)
8919 n_rules++;
8920 if (n_rules > coalesce->n_rules)
8921 return -EINVAL;
8922
8923 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8924 GFP_KERNEL);
8925 if (!new_coalesce.rules)
8926 return -ENOMEM;
8927
8928 new_coalesce.n_rules = n_rules;
8929 i = 0;
8930
8931 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8932 rem_rule) {
8933 err = nl80211_parse_coalesce_rule(rdev, rule,
8934 &new_coalesce.rules[i]);
8935 if (err)
8936 goto error;
8937
8938 i++;
8939 }
8940
8941 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8942 if (err)
8943 goto error;
8944
8945 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8946 if (!n_coalesce) {
8947 err = -ENOMEM;
8948 goto error;
8949 }
8950 cfg80211_rdev_free_coalesce(rdev);
8951 rdev->coalesce = n_coalesce;
8952
8953 return 0;
8954error:
8955 for (i = 0; i < new_coalesce.n_rules; i++) {
8956 tmp_rule = &new_coalesce.rules[i];
8957 for (j = 0; j < tmp_rule->n_patterns; j++)
8958 kfree(tmp_rule->patterns[j].mask);
8959 kfree(tmp_rule->patterns);
8960 }
8961 kfree(new_coalesce.rules);
8962
8963 return err;
8964}
8965
Johannes Berge5497d72011-07-05 16:35:40 +02008966static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8967{
8968 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8969 struct net_device *dev = info->user_ptr[1];
8970 struct wireless_dev *wdev = dev->ieee80211_ptr;
8971 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8972 struct cfg80211_gtk_rekey_data rekey_data;
8973 int err;
8974
8975 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8976 return -EINVAL;
8977
8978 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8979 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8980 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8981 nl80211_rekey_policy);
8982 if (err)
8983 return err;
8984
8985 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8986 return -ERANGE;
8987 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8988 return -ERANGE;
8989 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
8990 return -ERANGE;
8991
Johannes Berg78f686c2014-09-10 22:28:06 +03008992 rekey_data.kek = nla_data(tb[NL80211_REKEY_DATA_KEK]);
8993 rekey_data.kck = nla_data(tb[NL80211_REKEY_DATA_KCK]);
8994 rekey_data.replay_ctr = nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]);
Johannes Berge5497d72011-07-05 16:35:40 +02008995
8996 wdev_lock(wdev);
8997 if (!wdev->current_bss) {
8998 err = -ENOTCONN;
8999 goto out;
9000 }
9001
9002 if (!rdev->ops->set_rekey_data) {
9003 err = -EOPNOTSUPP;
9004 goto out;
9005 }
9006
Hila Gonene35e4d22012-06-27 17:19:42 +03009007 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02009008 out:
9009 wdev_unlock(wdev);
9010 return err;
9011}
9012
Johannes Berg28946da2011-11-04 11:18:12 +01009013static int nl80211_register_unexpected_frame(struct sk_buff *skb,
9014 struct genl_info *info)
9015{
9016 struct net_device *dev = info->user_ptr[1];
9017 struct wireless_dev *wdev = dev->ieee80211_ptr;
9018
9019 if (wdev->iftype != NL80211_IFTYPE_AP &&
9020 wdev->iftype != NL80211_IFTYPE_P2P_GO)
9021 return -EINVAL;
9022
Eric W. Biederman15e47302012-09-07 20:12:54 +00009023 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01009024 return -EBUSY;
9025
Eric W. Biederman15e47302012-09-07 20:12:54 +00009026 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01009027 return 0;
9028}
9029
Johannes Berg7f6cf312011-11-04 11:18:15 +01009030static int nl80211_probe_client(struct sk_buff *skb,
9031 struct genl_info *info)
9032{
9033 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9034 struct net_device *dev = info->user_ptr[1];
9035 struct wireless_dev *wdev = dev->ieee80211_ptr;
9036 struct sk_buff *msg;
9037 void *hdr;
9038 const u8 *addr;
9039 u64 cookie;
9040 int err;
9041
9042 if (wdev->iftype != NL80211_IFTYPE_AP &&
9043 wdev->iftype != NL80211_IFTYPE_P2P_GO)
9044 return -EOPNOTSUPP;
9045
9046 if (!info->attrs[NL80211_ATTR_MAC])
9047 return -EINVAL;
9048
9049 if (!rdev->ops->probe_client)
9050 return -EOPNOTSUPP;
9051
9052 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9053 if (!msg)
9054 return -ENOMEM;
9055
Eric W. Biederman15e47302012-09-07 20:12:54 +00009056 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01009057 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03009058 if (!hdr) {
9059 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01009060 goto free_msg;
9061 }
9062
9063 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
9064
Hila Gonene35e4d22012-06-27 17:19:42 +03009065 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01009066 if (err)
9067 goto free_msg;
9068
David S. Miller9360ffd2012-03-29 04:41:26 -04009069 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
9070 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01009071
9072 genlmsg_end(msg, hdr);
9073
9074 return genlmsg_reply(msg, info);
9075
9076 nla_put_failure:
9077 err = -ENOBUFS;
9078 free_msg:
9079 nlmsg_free(msg);
9080 return err;
9081}
9082
Johannes Berg5e7602302011-11-04 11:18:17 +01009083static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
9084{
9085 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07009086 struct cfg80211_beacon_registration *reg, *nreg;
9087 int rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01009088
9089 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
9090 return -EOPNOTSUPP;
9091
Ben Greear37c73b52012-10-26 14:49:25 -07009092 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
9093 if (!nreg)
9094 return -ENOMEM;
Johannes Berg5e7602302011-11-04 11:18:17 +01009095
Ben Greear37c73b52012-10-26 14:49:25 -07009096 /* First, check if already registered. */
9097 spin_lock_bh(&rdev->beacon_registrations_lock);
9098 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
9099 if (reg->nlportid == info->snd_portid) {
9100 rv = -EALREADY;
9101 goto out_err;
9102 }
9103 }
9104 /* Add it to the list */
9105 nreg->nlportid = info->snd_portid;
9106 list_add(&nreg->list, &rdev->beacon_registrations);
9107
9108 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +01009109
9110 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07009111out_err:
9112 spin_unlock_bh(&rdev->beacon_registrations_lock);
9113 kfree(nreg);
9114 return rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01009115}
9116
Johannes Berg98104fde2012-06-16 00:19:54 +02009117static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
9118{
9119 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9120 struct wireless_dev *wdev = info->user_ptr[1];
9121 int err;
9122
9123 if (!rdev->ops->start_p2p_device)
9124 return -EOPNOTSUPP;
9125
9126 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
9127 return -EOPNOTSUPP;
9128
9129 if (wdev->p2p_started)
9130 return 0;
9131
Luciano Coelhob6a55012014-02-27 11:07:21 +02009132 if (rfkill_blocked(rdev->rfkill))
9133 return -ERFKILL;
Johannes Berg98104fde2012-06-16 00:19:54 +02009134
Johannes Bergeeb126e2012-10-23 15:16:50 +02009135 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02009136 if (err)
9137 return err;
9138
9139 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02009140 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02009141
9142 return 0;
9143}
9144
9145static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
9146{
9147 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9148 struct wireless_dev *wdev = info->user_ptr[1];
9149
9150 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
9151 return -EOPNOTSUPP;
9152
9153 if (!rdev->ops->stop_p2p_device)
9154 return -EOPNOTSUPP;
9155
Johannes Bergf9f47522013-03-19 15:04:07 +01009156 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02009157
9158 return 0;
9159}
9160
Johannes Berg3713b4e2013-02-14 16:19:38 +01009161static int nl80211_get_protocol_features(struct sk_buff *skb,
9162 struct genl_info *info)
9163{
9164 void *hdr;
9165 struct sk_buff *msg;
9166
9167 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9168 if (!msg)
9169 return -ENOMEM;
9170
9171 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
9172 NL80211_CMD_GET_PROTOCOL_FEATURES);
9173 if (!hdr)
9174 goto nla_put_failure;
9175
9176 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
9177 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
9178 goto nla_put_failure;
9179
9180 genlmsg_end(msg, hdr);
9181 return genlmsg_reply(msg, info);
9182
9183 nla_put_failure:
9184 kfree_skb(msg);
9185 return -ENOBUFS;
9186}
9187
Jouni Malinen355199e2013-02-27 17:14:27 +02009188static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
9189{
9190 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9191 struct cfg80211_update_ft_ies_params ft_params;
9192 struct net_device *dev = info->user_ptr[1];
9193
9194 if (!rdev->ops->update_ft_ies)
9195 return -EOPNOTSUPP;
9196
9197 if (!info->attrs[NL80211_ATTR_MDID] ||
9198 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
9199 return -EINVAL;
9200
9201 memset(&ft_params, 0, sizeof(ft_params));
9202 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
9203 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
9204 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
9205
9206 return rdev_update_ft_ies(rdev, dev, &ft_params);
9207}
9208
Arend van Spriel5de17982013-04-18 15:49:00 +02009209static int nl80211_crit_protocol_start(struct sk_buff *skb,
9210 struct genl_info *info)
9211{
9212 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9213 struct wireless_dev *wdev = info->user_ptr[1];
9214 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
9215 u16 duration;
9216 int ret;
9217
9218 if (!rdev->ops->crit_proto_start)
9219 return -EOPNOTSUPP;
9220
9221 if (WARN_ON(!rdev->ops->crit_proto_stop))
9222 return -EINVAL;
9223
9224 if (rdev->crit_proto_nlportid)
9225 return -EBUSY;
9226
9227 /* determine protocol if provided */
9228 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
9229 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
9230
9231 if (proto >= NUM_NL80211_CRIT_PROTO)
9232 return -EINVAL;
9233
9234 /* timeout must be provided */
9235 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
9236 return -EINVAL;
9237
9238 duration =
9239 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
9240
9241 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
9242 return -ERANGE;
9243
9244 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
9245 if (!ret)
9246 rdev->crit_proto_nlportid = info->snd_portid;
9247
9248 return ret;
9249}
9250
9251static int nl80211_crit_protocol_stop(struct sk_buff *skb,
9252 struct genl_info *info)
9253{
9254 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9255 struct wireless_dev *wdev = info->user_ptr[1];
9256
9257 if (!rdev->ops->crit_proto_stop)
9258 return -EOPNOTSUPP;
9259
9260 if (rdev->crit_proto_nlportid) {
9261 rdev->crit_proto_nlportid = 0;
9262 rdev_crit_proto_stop(rdev, wdev);
9263 }
9264 return 0;
9265}
9266
Johannes Bergad7e7182013-11-13 13:37:47 +01009267static int nl80211_vendor_cmd(struct sk_buff *skb, struct genl_info *info)
9268{
9269 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9270 struct wireless_dev *wdev =
9271 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
9272 int i, err;
9273 u32 vid, subcmd;
9274
9275 if (!rdev->wiphy.vendor_commands)
9276 return -EOPNOTSUPP;
9277
9278 if (IS_ERR(wdev)) {
9279 err = PTR_ERR(wdev);
9280 if (err != -EINVAL)
9281 return err;
9282 wdev = NULL;
9283 } else if (wdev->wiphy != &rdev->wiphy) {
9284 return -EINVAL;
9285 }
9286
9287 if (!info->attrs[NL80211_ATTR_VENDOR_ID] ||
9288 !info->attrs[NL80211_ATTR_VENDOR_SUBCMD])
9289 return -EINVAL;
9290
9291 vid = nla_get_u32(info->attrs[NL80211_ATTR_VENDOR_ID]);
9292 subcmd = nla_get_u32(info->attrs[NL80211_ATTR_VENDOR_SUBCMD]);
9293 for (i = 0; i < rdev->wiphy.n_vendor_commands; i++) {
9294 const struct wiphy_vendor_command *vcmd;
9295 void *data = NULL;
9296 int len = 0;
9297
9298 vcmd = &rdev->wiphy.vendor_commands[i];
9299
9300 if (vcmd->info.vendor_id != vid || vcmd->info.subcmd != subcmd)
9301 continue;
9302
9303 if (vcmd->flags & (WIPHY_VENDOR_CMD_NEED_WDEV |
9304 WIPHY_VENDOR_CMD_NEED_NETDEV)) {
9305 if (!wdev)
9306 return -EINVAL;
9307 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_NETDEV &&
9308 !wdev->netdev)
9309 return -EINVAL;
9310
9311 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_RUNNING) {
9312 if (wdev->netdev &&
9313 !netif_running(wdev->netdev))
9314 return -ENETDOWN;
9315 if (!wdev->netdev && !wdev->p2p_started)
9316 return -ENETDOWN;
9317 }
9318 } else {
9319 wdev = NULL;
9320 }
9321
9322 if (info->attrs[NL80211_ATTR_VENDOR_DATA]) {
9323 data = nla_data(info->attrs[NL80211_ATTR_VENDOR_DATA]);
9324 len = nla_len(info->attrs[NL80211_ATTR_VENDOR_DATA]);
9325 }
9326
9327 rdev->cur_cmd_info = info;
9328 err = rdev->wiphy.vendor_commands[i].doit(&rdev->wiphy, wdev,
9329 data, len);
9330 rdev->cur_cmd_info = NULL;
9331 return err;
9332 }
9333
9334 return -EOPNOTSUPP;
9335}
9336
9337struct sk_buff *__cfg80211_alloc_reply_skb(struct wiphy *wiphy,
9338 enum nl80211_commands cmd,
9339 enum nl80211_attrs attr,
9340 int approxlen)
9341{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08009342 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergad7e7182013-11-13 13:37:47 +01009343
9344 if (WARN_ON(!rdev->cur_cmd_info))
9345 return NULL;
9346
9347 return __cfg80211_alloc_vendor_skb(rdev, approxlen,
9348 rdev->cur_cmd_info->snd_portid,
9349 rdev->cur_cmd_info->snd_seq,
Johannes Berg567ffc32013-12-18 14:43:31 +01009350 cmd, attr, NULL, GFP_KERNEL);
Johannes Bergad7e7182013-11-13 13:37:47 +01009351}
9352EXPORT_SYMBOL(__cfg80211_alloc_reply_skb);
9353
9354int cfg80211_vendor_cmd_reply(struct sk_buff *skb)
9355{
9356 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
9357 void *hdr = ((void **)skb->cb)[1];
9358 struct nlattr *data = ((void **)skb->cb)[2];
9359
9360 if (WARN_ON(!rdev->cur_cmd_info)) {
9361 kfree_skb(skb);
9362 return -EINVAL;
9363 }
9364
9365 nla_nest_end(skb, data);
9366 genlmsg_end(skb, hdr);
9367 return genlmsg_reply(skb, rdev->cur_cmd_info);
9368}
9369EXPORT_SYMBOL_GPL(cfg80211_vendor_cmd_reply);
9370
9371
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -08009372static int nl80211_set_qos_map(struct sk_buff *skb,
9373 struct genl_info *info)
9374{
9375 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9376 struct cfg80211_qos_map *qos_map = NULL;
9377 struct net_device *dev = info->user_ptr[1];
9378 u8 *pos, len, num_des, des_len, des;
9379 int ret;
9380
9381 if (!rdev->ops->set_qos_map)
9382 return -EOPNOTSUPP;
9383
9384 if (info->attrs[NL80211_ATTR_QOS_MAP]) {
9385 pos = nla_data(info->attrs[NL80211_ATTR_QOS_MAP]);
9386 len = nla_len(info->attrs[NL80211_ATTR_QOS_MAP]);
9387
9388 if (len % 2 || len < IEEE80211_QOS_MAP_LEN_MIN ||
9389 len > IEEE80211_QOS_MAP_LEN_MAX)
9390 return -EINVAL;
9391
9392 qos_map = kzalloc(sizeof(struct cfg80211_qos_map), GFP_KERNEL);
9393 if (!qos_map)
9394 return -ENOMEM;
9395
9396 num_des = (len - IEEE80211_QOS_MAP_LEN_MIN) >> 1;
9397 if (num_des) {
9398 des_len = num_des *
9399 sizeof(struct cfg80211_dscp_exception);
9400 memcpy(qos_map->dscp_exception, pos, des_len);
9401 qos_map->num_des = num_des;
9402 for (des = 0; des < num_des; des++) {
9403 if (qos_map->dscp_exception[des].up > 7) {
9404 kfree(qos_map);
9405 return -EINVAL;
9406 }
9407 }
9408 pos += des_len;
9409 }
9410 memcpy(qos_map->up, pos, IEEE80211_QOS_MAP_LEN_MIN);
9411 }
9412
9413 wdev_lock(dev->ieee80211_ptr);
9414 ret = nl80211_key_allowed(dev->ieee80211_ptr);
9415 if (!ret)
9416 ret = rdev_set_qos_map(rdev, dev, qos_map);
9417 wdev_unlock(dev->ieee80211_ptr);
9418
9419 kfree(qos_map);
9420 return ret;
9421}
9422
Johannes Berg960d01a2014-09-09 22:55:35 +03009423static int nl80211_add_tx_ts(struct sk_buff *skb, struct genl_info *info)
9424{
9425 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9426 struct net_device *dev = info->user_ptr[1];
9427 struct wireless_dev *wdev = dev->ieee80211_ptr;
9428 const u8 *peer;
9429 u8 tsid, up;
9430 u16 admitted_time = 0;
9431 int err;
9432
9433 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_WMM_ADMISSION))
9434 return -EOPNOTSUPP;
9435
9436 if (!info->attrs[NL80211_ATTR_TSID] || !info->attrs[NL80211_ATTR_MAC] ||
9437 !info->attrs[NL80211_ATTR_USER_PRIO])
9438 return -EINVAL;
9439
9440 tsid = nla_get_u8(info->attrs[NL80211_ATTR_TSID]);
9441 if (tsid >= IEEE80211_NUM_TIDS)
9442 return -EINVAL;
9443
9444 up = nla_get_u8(info->attrs[NL80211_ATTR_USER_PRIO]);
9445 if (up >= IEEE80211_NUM_UPS)
9446 return -EINVAL;
9447
9448 /* WMM uses TIDs 0-7 even for TSPEC */
9449 if (tsid < IEEE80211_FIRST_TSPEC_TSID) {
9450 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_WMM_ADMISSION))
9451 return -EINVAL;
9452 } else {
9453 /* TODO: handle 802.11 TSPEC/admission control
9454 * need more attributes for that (e.g. BA session requirement)
9455 */
9456 return -EINVAL;
9457 }
9458
9459 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
9460
9461 if (info->attrs[NL80211_ATTR_ADMITTED_TIME]) {
9462 admitted_time =
9463 nla_get_u16(info->attrs[NL80211_ATTR_ADMITTED_TIME]);
9464 if (!admitted_time)
9465 return -EINVAL;
9466 }
9467
9468 wdev_lock(wdev);
9469 switch (wdev->iftype) {
9470 case NL80211_IFTYPE_STATION:
9471 case NL80211_IFTYPE_P2P_CLIENT:
9472 if (wdev->current_bss)
9473 break;
9474 err = -ENOTCONN;
9475 goto out;
9476 default:
9477 err = -EOPNOTSUPP;
9478 goto out;
9479 }
9480
9481 err = rdev_add_tx_ts(rdev, dev, tsid, peer, up, admitted_time);
9482
9483 out:
9484 wdev_unlock(wdev);
9485 return err;
9486}
9487
9488static int nl80211_del_tx_ts(struct sk_buff *skb, struct genl_info *info)
9489{
9490 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9491 struct net_device *dev = info->user_ptr[1];
9492 struct wireless_dev *wdev = dev->ieee80211_ptr;
9493 const u8 *peer;
9494 u8 tsid;
9495 int err;
9496
9497 if (!info->attrs[NL80211_ATTR_TSID] || !info->attrs[NL80211_ATTR_MAC])
9498 return -EINVAL;
9499
9500 tsid = nla_get_u8(info->attrs[NL80211_ATTR_TSID]);
9501 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
9502
9503 wdev_lock(wdev);
9504 err = rdev_del_tx_ts(rdev, dev, tsid, peer);
9505 wdev_unlock(wdev);
9506
9507 return err;
9508}
9509
Johannes Berg4c476992010-10-04 21:36:35 +02009510#define NL80211_FLAG_NEED_WIPHY 0x01
9511#define NL80211_FLAG_NEED_NETDEV 0x02
9512#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02009513#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
9514#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
9515 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02009516#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02009517/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02009518#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
9519 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg5393b912014-09-10 15:00:16 +03009520#define NL80211_FLAG_CLEAR_SKB 0x20
Johannes Berg4c476992010-10-04 21:36:35 +02009521
Johannes Bergf84f7712013-11-14 17:14:45 +01009522static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +02009523 struct genl_info *info)
9524{
9525 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02009526 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02009527 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02009528 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
9529
9530 if (rtnl)
9531 rtnl_lock();
9532
9533 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02009534 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02009535 if (IS_ERR(rdev)) {
9536 if (rtnl)
9537 rtnl_unlock();
9538 return PTR_ERR(rdev);
9539 }
9540 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02009541 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
9542 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02009543 ASSERT_RTNL();
9544
Johannes Berg89a54e42012-06-15 14:33:17 +02009545 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
9546 info->attrs);
9547 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02009548 if (rtnl)
9549 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02009550 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02009551 }
Johannes Berg89a54e42012-06-15 14:33:17 +02009552
Johannes Berg89a54e42012-06-15 14:33:17 +02009553 dev = wdev->netdev;
Zhao, Gangf26cbf42014-04-21 12:53:03 +08009554 rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg89a54e42012-06-15 14:33:17 +02009555
Johannes Berg1bf614e2012-06-15 15:23:36 +02009556 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
9557 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02009558 if (rtnl)
9559 rtnl_unlock();
9560 return -EINVAL;
9561 }
9562
9563 info->user_ptr[1] = dev;
9564 } else {
9565 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02009566 }
Johannes Berg89a54e42012-06-15 14:33:17 +02009567
Johannes Berg1bf614e2012-06-15 15:23:36 +02009568 if (dev) {
9569 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
9570 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02009571 if (rtnl)
9572 rtnl_unlock();
9573 return -ENETDOWN;
9574 }
9575
9576 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02009577 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
9578 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02009579 if (rtnl)
9580 rtnl_unlock();
9581 return -ENETDOWN;
9582 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02009583 }
9584
Johannes Berg4c476992010-10-04 21:36:35 +02009585 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02009586 }
9587
9588 return 0;
9589}
9590
Johannes Bergf84f7712013-11-14 17:14:45 +01009591static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +02009592 struct genl_info *info)
9593{
Johannes Berg1bf614e2012-06-15 15:23:36 +02009594 if (info->user_ptr[1]) {
9595 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
9596 struct wireless_dev *wdev = info->user_ptr[1];
9597
9598 if (wdev->netdev)
9599 dev_put(wdev->netdev);
9600 } else {
9601 dev_put(info->user_ptr[1]);
9602 }
9603 }
Johannes Berg5393b912014-09-10 15:00:16 +03009604
Johannes Berg4c476992010-10-04 21:36:35 +02009605 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
9606 rtnl_unlock();
Johannes Berg5393b912014-09-10 15:00:16 +03009607
9608 /* If needed, clear the netlink message payload from the SKB
9609 * as it might contain key data that shouldn't stick around on
9610 * the heap after the SKB is freed. The netlink message header
9611 * is still needed for further processing, so leave it intact.
9612 */
9613 if (ops->internal_flags & NL80211_FLAG_CLEAR_SKB) {
9614 struct nlmsghdr *nlh = nlmsg_hdr(skb);
9615
9616 memset(nlmsg_data(nlh), 0, nlmsg_len(nlh));
9617 }
Johannes Berg4c476992010-10-04 21:36:35 +02009618}
9619
Johannes Berg4534de82013-11-14 17:14:46 +01009620static const struct genl_ops nl80211_ops[] = {
Johannes Berg55682962007-09-20 13:09:35 -04009621 {
9622 .cmd = NL80211_CMD_GET_WIPHY,
9623 .doit = nl80211_get_wiphy,
9624 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02009625 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04009626 .policy = nl80211_policy,
9627 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02009628 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9629 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009630 },
9631 {
9632 .cmd = NL80211_CMD_SET_WIPHY,
9633 .doit = nl80211_set_wiphy,
9634 .policy = nl80211_policy,
9635 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009636 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009637 },
9638 {
9639 .cmd = NL80211_CMD_GET_INTERFACE,
9640 .doit = nl80211_get_interface,
9641 .dumpit = nl80211_dump_interface,
9642 .policy = nl80211_policy,
9643 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02009644 .internal_flags = NL80211_FLAG_NEED_WDEV |
9645 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009646 },
9647 {
9648 .cmd = NL80211_CMD_SET_INTERFACE,
9649 .doit = nl80211_set_interface,
9650 .policy = nl80211_policy,
9651 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009652 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9653 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009654 },
9655 {
9656 .cmd = NL80211_CMD_NEW_INTERFACE,
9657 .doit = nl80211_new_interface,
9658 .policy = nl80211_policy,
9659 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009660 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9661 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009662 },
9663 {
9664 .cmd = NL80211_CMD_DEL_INTERFACE,
9665 .doit = nl80211_del_interface,
9666 .policy = nl80211_policy,
9667 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02009668 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009669 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009670 },
Johannes Berg41ade002007-12-19 02:03:29 +01009671 {
9672 .cmd = NL80211_CMD_GET_KEY,
9673 .doit = nl80211_get_key,
9674 .policy = nl80211_policy,
9675 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009676 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009677 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009678 },
9679 {
9680 .cmd = NL80211_CMD_SET_KEY,
9681 .doit = nl80211_set_key,
9682 .policy = nl80211_policy,
9683 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009684 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +03009685 NL80211_FLAG_NEED_RTNL |
9686 NL80211_FLAG_CLEAR_SKB,
Johannes Berg41ade002007-12-19 02:03:29 +01009687 },
9688 {
9689 .cmd = NL80211_CMD_NEW_KEY,
9690 .doit = nl80211_new_key,
9691 .policy = nl80211_policy,
9692 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009693 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +03009694 NL80211_FLAG_NEED_RTNL |
9695 NL80211_FLAG_CLEAR_SKB,
Johannes Berg41ade002007-12-19 02:03:29 +01009696 },
9697 {
9698 .cmd = NL80211_CMD_DEL_KEY,
9699 .doit = nl80211_del_key,
9700 .policy = nl80211_policy,
9701 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009702 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009703 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009704 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01009705 {
9706 .cmd = NL80211_CMD_SET_BEACON,
9707 .policy = nl80211_policy,
9708 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009709 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009710 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009711 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009712 },
9713 {
Johannes Berg88600202012-02-13 15:17:18 +01009714 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009715 .policy = nl80211_policy,
9716 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009717 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009718 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009719 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009720 },
9721 {
Johannes Berg88600202012-02-13 15:17:18 +01009722 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009723 .policy = nl80211_policy,
9724 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009725 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009726 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009727 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009728 },
Johannes Berg5727ef12007-12-19 02:03:34 +01009729 {
9730 .cmd = NL80211_CMD_GET_STATION,
9731 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009732 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01009733 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02009734 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9735 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009736 },
9737 {
9738 .cmd = NL80211_CMD_SET_STATION,
9739 .doit = nl80211_set_station,
9740 .policy = nl80211_policy,
9741 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009742 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009743 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009744 },
9745 {
9746 .cmd = NL80211_CMD_NEW_STATION,
9747 .doit = nl80211_new_station,
9748 .policy = nl80211_policy,
9749 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009750 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009751 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009752 },
9753 {
9754 .cmd = NL80211_CMD_DEL_STATION,
9755 .doit = nl80211_del_station,
9756 .policy = nl80211_policy,
9757 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009758 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009759 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009760 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009761 {
9762 .cmd = NL80211_CMD_GET_MPATH,
9763 .doit = nl80211_get_mpath,
9764 .dumpit = nl80211_dump_mpath,
9765 .policy = nl80211_policy,
9766 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009767 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009768 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009769 },
9770 {
9771 .cmd = NL80211_CMD_SET_MPATH,
9772 .doit = nl80211_set_mpath,
9773 .policy = nl80211_policy,
9774 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009775 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009776 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009777 },
9778 {
9779 .cmd = NL80211_CMD_NEW_MPATH,
9780 .doit = nl80211_new_mpath,
9781 .policy = nl80211_policy,
9782 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009783 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009784 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009785 },
9786 {
9787 .cmd = NL80211_CMD_DEL_MPATH,
9788 .doit = nl80211_del_mpath,
9789 .policy = nl80211_policy,
9790 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009791 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009792 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009793 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009794 {
9795 .cmd = NL80211_CMD_SET_BSS,
9796 .doit = nl80211_set_bss,
9797 .policy = nl80211_policy,
9798 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009799 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009800 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009801 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009802 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009803 .cmd = NL80211_CMD_GET_REG,
9804 .doit = nl80211_get_reg,
9805 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009806 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009807 /* can be retrieved by unprivileged users */
9808 },
9809 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009810 .cmd = NL80211_CMD_SET_REG,
9811 .doit = nl80211_set_reg,
9812 .policy = nl80211_policy,
9813 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009814 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009815 },
9816 {
9817 .cmd = NL80211_CMD_REQ_SET_REG,
9818 .doit = nl80211_req_set_reg,
9819 .policy = nl80211_policy,
9820 .flags = GENL_ADMIN_PERM,
9821 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009822 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009823 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9824 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009825 .policy = nl80211_policy,
9826 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009827 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009828 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009829 },
9830 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009831 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9832 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009833 .policy = nl80211_policy,
9834 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009835 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009836 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009837 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009838 {
Johannes Berg2a519312009-02-10 21:25:55 +01009839 .cmd = NL80211_CMD_TRIGGER_SCAN,
9840 .doit = nl80211_trigger_scan,
9841 .policy = nl80211_policy,
9842 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009843 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009844 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009845 },
9846 {
9847 .cmd = NL80211_CMD_GET_SCAN,
9848 .policy = nl80211_policy,
9849 .dumpit = nl80211_dump_scan,
9850 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009851 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009852 .cmd = NL80211_CMD_START_SCHED_SCAN,
9853 .doit = nl80211_start_sched_scan,
9854 .policy = nl80211_policy,
9855 .flags = GENL_ADMIN_PERM,
9856 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9857 NL80211_FLAG_NEED_RTNL,
9858 },
9859 {
9860 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9861 .doit = nl80211_stop_sched_scan,
9862 .policy = nl80211_policy,
9863 .flags = GENL_ADMIN_PERM,
9864 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9865 NL80211_FLAG_NEED_RTNL,
9866 },
9867 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009868 .cmd = NL80211_CMD_AUTHENTICATE,
9869 .doit = nl80211_authenticate,
9870 .policy = nl80211_policy,
9871 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009872 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +03009873 NL80211_FLAG_NEED_RTNL |
9874 NL80211_FLAG_CLEAR_SKB,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009875 },
9876 {
9877 .cmd = NL80211_CMD_ASSOCIATE,
9878 .doit = nl80211_associate,
9879 .policy = nl80211_policy,
9880 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009881 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009882 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009883 },
9884 {
9885 .cmd = NL80211_CMD_DEAUTHENTICATE,
9886 .doit = nl80211_deauthenticate,
9887 .policy = nl80211_policy,
9888 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009889 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009890 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009891 },
9892 {
9893 .cmd = NL80211_CMD_DISASSOCIATE,
9894 .doit = nl80211_disassociate,
9895 .policy = nl80211_policy,
9896 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009897 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009898 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009899 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009900 {
9901 .cmd = NL80211_CMD_JOIN_IBSS,
9902 .doit = nl80211_join_ibss,
9903 .policy = nl80211_policy,
9904 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009905 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009906 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009907 },
9908 {
9909 .cmd = NL80211_CMD_LEAVE_IBSS,
9910 .doit = nl80211_leave_ibss,
9911 .policy = nl80211_policy,
9912 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009913 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009914 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009915 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009916#ifdef CONFIG_NL80211_TESTMODE
9917 {
9918 .cmd = NL80211_CMD_TESTMODE,
9919 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009920 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009921 .policy = nl80211_policy,
9922 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009923 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9924 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009925 },
9926#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009927 {
9928 .cmd = NL80211_CMD_CONNECT,
9929 .doit = nl80211_connect,
9930 .policy = nl80211_policy,
9931 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009932 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009933 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009934 },
9935 {
9936 .cmd = NL80211_CMD_DISCONNECT,
9937 .doit = nl80211_disconnect,
9938 .policy = nl80211_policy,
9939 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009940 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009941 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009942 },
Johannes Berg463d0182009-07-14 00:33:35 +02009943 {
9944 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9945 .doit = nl80211_wiphy_netns,
9946 .policy = nl80211_policy,
9947 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009948 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9949 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009950 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009951 {
9952 .cmd = NL80211_CMD_GET_SURVEY,
9953 .policy = nl80211_policy,
9954 .dumpit = nl80211_dump_survey,
9955 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009956 {
9957 .cmd = NL80211_CMD_SET_PMKSA,
9958 .doit = nl80211_setdel_pmksa,
9959 .policy = nl80211_policy,
9960 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009961 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009962 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009963 },
9964 {
9965 .cmd = NL80211_CMD_DEL_PMKSA,
9966 .doit = nl80211_setdel_pmksa,
9967 .policy = nl80211_policy,
9968 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009969 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009970 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009971 },
9972 {
9973 .cmd = NL80211_CMD_FLUSH_PMKSA,
9974 .doit = nl80211_flush_pmksa,
9975 .policy = nl80211_policy,
9976 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009977 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009978 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009979 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009980 {
9981 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9982 .doit = nl80211_remain_on_channel,
9983 .policy = nl80211_policy,
9984 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009985 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009986 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009987 },
9988 {
9989 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9990 .doit = nl80211_cancel_remain_on_channel,
9991 .policy = nl80211_policy,
9992 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009993 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009994 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009995 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009996 {
9997 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
9998 .doit = nl80211_set_tx_bitrate_mask,
9999 .policy = nl80211_policy,
10000 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010001 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10002 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +020010003 },
Jouni Malinen026331c2010-02-15 12:53:10 +020010004 {
Johannes Berg2e161f72010-08-12 15:38:38 +020010005 .cmd = NL80211_CMD_REGISTER_FRAME,
10006 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +020010007 .policy = nl80211_policy,
10008 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010009 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +020010010 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +020010011 },
10012 {
Johannes Berg2e161f72010-08-12 15:38:38 +020010013 .cmd = NL80211_CMD_FRAME,
10014 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +020010015 .policy = nl80211_policy,
10016 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010017 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020010018 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +020010019 },
Kalle Valoffb9eb32010-02-17 17:58:10 +020010020 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +010010021 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
10022 .doit = nl80211_tx_mgmt_cancel_wait,
10023 .policy = nl80211_policy,
10024 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010025 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +010010026 NL80211_FLAG_NEED_RTNL,
10027 },
10028 {
Kalle Valoffb9eb32010-02-17 17:58:10 +020010029 .cmd = NL80211_CMD_SET_POWER_SAVE,
10030 .doit = nl80211_set_power_save,
10031 .policy = nl80211_policy,
10032 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010033 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10034 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +020010035 },
10036 {
10037 .cmd = NL80211_CMD_GET_POWER_SAVE,
10038 .doit = nl80211_get_power_save,
10039 .policy = nl80211_policy,
10040 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +020010041 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10042 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +020010043 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010044 {
10045 .cmd = NL80211_CMD_SET_CQM,
10046 .doit = nl80211_set_cqm,
10047 .policy = nl80211_policy,
10048 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010049 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10050 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010051 },
Johannes Bergf444de02010-05-05 15:25:02 +020010052 {
10053 .cmd = NL80211_CMD_SET_CHANNEL,
10054 .doit = nl80211_set_channel,
10055 .policy = nl80211_policy,
10056 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010057 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10058 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +020010059 },
Bill Jordane8347eb2010-10-01 13:54:28 -040010060 {
10061 .cmd = NL80211_CMD_SET_WDS_PEER,
10062 .doit = nl80211_set_wds_peer,
10063 .policy = nl80211_policy,
10064 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +020010065 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10066 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -040010067 },
Johannes Berg29cbe682010-12-03 09:20:44 +010010068 {
10069 .cmd = NL80211_CMD_JOIN_MESH,
10070 .doit = nl80211_join_mesh,
10071 .policy = nl80211_policy,
10072 .flags = GENL_ADMIN_PERM,
10073 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10074 NL80211_FLAG_NEED_RTNL,
10075 },
10076 {
10077 .cmd = NL80211_CMD_LEAVE_MESH,
10078 .doit = nl80211_leave_mesh,
10079 .policy = nl80211_policy,
10080 .flags = GENL_ADMIN_PERM,
10081 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10082 NL80211_FLAG_NEED_RTNL,
10083 },
Johannes Bergdfb89c52012-06-27 09:23:48 +020010084#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +020010085 {
10086 .cmd = NL80211_CMD_GET_WOWLAN,
10087 .doit = nl80211_get_wowlan,
10088 .policy = nl80211_policy,
10089 /* can be retrieved by unprivileged users */
10090 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10091 NL80211_FLAG_NEED_RTNL,
10092 },
10093 {
10094 .cmd = NL80211_CMD_SET_WOWLAN,
10095 .doit = nl80211_set_wowlan,
10096 .policy = nl80211_policy,
10097 .flags = GENL_ADMIN_PERM,
10098 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10099 NL80211_FLAG_NEED_RTNL,
10100 },
Johannes Bergdfb89c52012-06-27 09:23:48 +020010101#endif
Johannes Berge5497d72011-07-05 16:35:40 +020010102 {
10103 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
10104 .doit = nl80211_set_rekey_data,
10105 .policy = nl80211_policy,
10106 .flags = GENL_ADMIN_PERM,
10107 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +030010108 NL80211_FLAG_NEED_RTNL |
10109 NL80211_FLAG_CLEAR_SKB,
Johannes Berge5497d72011-07-05 16:35:40 +020010110 },
Arik Nemtsov109086c2011-09-28 14:12:50 +030010111 {
10112 .cmd = NL80211_CMD_TDLS_MGMT,
10113 .doit = nl80211_tdls_mgmt,
10114 .policy = nl80211_policy,
10115 .flags = GENL_ADMIN_PERM,
10116 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10117 NL80211_FLAG_NEED_RTNL,
10118 },
10119 {
10120 .cmd = NL80211_CMD_TDLS_OPER,
10121 .doit = nl80211_tdls_oper,
10122 .policy = nl80211_policy,
10123 .flags = GENL_ADMIN_PERM,
10124 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10125 NL80211_FLAG_NEED_RTNL,
10126 },
Johannes Berg28946da2011-11-04 11:18:12 +010010127 {
10128 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
10129 .doit = nl80211_register_unexpected_frame,
10130 .policy = nl80211_policy,
10131 .flags = GENL_ADMIN_PERM,
10132 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10133 NL80211_FLAG_NEED_RTNL,
10134 },
Johannes Berg7f6cf312011-11-04 11:18:15 +010010135 {
10136 .cmd = NL80211_CMD_PROBE_CLIENT,
10137 .doit = nl80211_probe_client,
10138 .policy = nl80211_policy,
10139 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020010140 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +010010141 NL80211_FLAG_NEED_RTNL,
10142 },
Johannes Berg5e7602302011-11-04 11:18:17 +010010143 {
10144 .cmd = NL80211_CMD_REGISTER_BEACONS,
10145 .doit = nl80211_register_beacons,
10146 .policy = nl80211_policy,
10147 .flags = GENL_ADMIN_PERM,
10148 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10149 NL80211_FLAG_NEED_RTNL,
10150 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +010010151 {
10152 .cmd = NL80211_CMD_SET_NOACK_MAP,
10153 .doit = nl80211_set_noack_map,
10154 .policy = nl80211_policy,
10155 .flags = GENL_ADMIN_PERM,
10156 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10157 NL80211_FLAG_NEED_RTNL,
10158 },
Johannes Berg98104fde2012-06-16 00:19:54 +020010159 {
10160 .cmd = NL80211_CMD_START_P2P_DEVICE,
10161 .doit = nl80211_start_p2p_device,
10162 .policy = nl80211_policy,
10163 .flags = GENL_ADMIN_PERM,
10164 .internal_flags = NL80211_FLAG_NEED_WDEV |
10165 NL80211_FLAG_NEED_RTNL,
10166 },
10167 {
10168 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
10169 .doit = nl80211_stop_p2p_device,
10170 .policy = nl80211_policy,
10171 .flags = GENL_ADMIN_PERM,
10172 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
10173 NL80211_FLAG_NEED_RTNL,
10174 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +010010175 {
10176 .cmd = NL80211_CMD_SET_MCAST_RATE,
10177 .doit = nl80211_set_mcast_rate,
10178 .policy = nl80211_policy,
10179 .flags = GENL_ADMIN_PERM,
10180 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10181 NL80211_FLAG_NEED_RTNL,
10182 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +053010183 {
10184 .cmd = NL80211_CMD_SET_MAC_ACL,
10185 .doit = nl80211_set_mac_acl,
10186 .policy = nl80211_policy,
10187 .flags = GENL_ADMIN_PERM,
10188 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10189 NL80211_FLAG_NEED_RTNL,
10190 },
Simon Wunderlich04f39042013-02-08 18:16:19 +010010191 {
10192 .cmd = NL80211_CMD_RADAR_DETECT,
10193 .doit = nl80211_start_radar_detection,
10194 .policy = nl80211_policy,
10195 .flags = GENL_ADMIN_PERM,
10196 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10197 NL80211_FLAG_NEED_RTNL,
10198 },
Johannes Berg3713b4e2013-02-14 16:19:38 +010010199 {
10200 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
10201 .doit = nl80211_get_protocol_features,
10202 .policy = nl80211_policy,
10203 },
Jouni Malinen355199e2013-02-27 17:14:27 +020010204 {
10205 .cmd = NL80211_CMD_UPDATE_FT_IES,
10206 .doit = nl80211_update_ft_ies,
10207 .policy = nl80211_policy,
10208 .flags = GENL_ADMIN_PERM,
10209 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10210 NL80211_FLAG_NEED_RTNL,
10211 },
Arend van Spriel5de17982013-04-18 15:49:00 +020010212 {
10213 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
10214 .doit = nl80211_crit_protocol_start,
10215 .policy = nl80211_policy,
10216 .flags = GENL_ADMIN_PERM,
10217 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
10218 NL80211_FLAG_NEED_RTNL,
10219 },
10220 {
10221 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
10222 .doit = nl80211_crit_protocol_stop,
10223 .policy = nl80211_policy,
10224 .flags = GENL_ADMIN_PERM,
10225 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
10226 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010227 },
10228 {
10229 .cmd = NL80211_CMD_GET_COALESCE,
10230 .doit = nl80211_get_coalesce,
10231 .policy = nl80211_policy,
10232 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10233 NL80211_FLAG_NEED_RTNL,
10234 },
10235 {
10236 .cmd = NL80211_CMD_SET_COALESCE,
10237 .doit = nl80211_set_coalesce,
10238 .policy = nl80211_policy,
10239 .flags = GENL_ADMIN_PERM,
10240 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10241 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +020010242 },
10243 {
10244 .cmd = NL80211_CMD_CHANNEL_SWITCH,
10245 .doit = nl80211_channel_switch,
10246 .policy = nl80211_policy,
10247 .flags = GENL_ADMIN_PERM,
10248 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10249 NL80211_FLAG_NEED_RTNL,
10250 },
Johannes Bergad7e7182013-11-13 13:37:47 +010010251 {
10252 .cmd = NL80211_CMD_VENDOR,
10253 .doit = nl80211_vendor_cmd,
10254 .policy = nl80211_policy,
10255 .flags = GENL_ADMIN_PERM,
10256 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10257 NL80211_FLAG_NEED_RTNL,
10258 },
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -080010259 {
10260 .cmd = NL80211_CMD_SET_QOS_MAP,
10261 .doit = nl80211_set_qos_map,
10262 .policy = nl80211_policy,
10263 .flags = GENL_ADMIN_PERM,
10264 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10265 NL80211_FLAG_NEED_RTNL,
10266 },
Johannes Berg960d01a2014-09-09 22:55:35 +030010267 {
10268 .cmd = NL80211_CMD_ADD_TX_TS,
10269 .doit = nl80211_add_tx_ts,
10270 .policy = nl80211_policy,
10271 .flags = GENL_ADMIN_PERM,
10272 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10273 NL80211_FLAG_NEED_RTNL,
10274 },
10275 {
10276 .cmd = NL80211_CMD_DEL_TX_TS,
10277 .doit = nl80211_del_tx_ts,
10278 .policy = nl80211_policy,
10279 .flags = GENL_ADMIN_PERM,
10280 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10281 NL80211_FLAG_NEED_RTNL,
10282 },
Johannes Berg55682962007-09-20 13:09:35 -040010283};
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010284
Johannes Berg55682962007-09-20 13:09:35 -040010285/* notification functions */
10286
Johannes Berg3bb20552014-05-26 13:52:25 +020010287void nl80211_notify_wiphy(struct cfg80211_registered_device *rdev,
10288 enum nl80211_commands cmd)
Johannes Berg55682962007-09-20 13:09:35 -040010289{
10290 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +020010291 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -040010292
Johannes Berg3bb20552014-05-26 13:52:25 +020010293 WARN_ON(cmd != NL80211_CMD_NEW_WIPHY &&
10294 cmd != NL80211_CMD_DEL_WIPHY);
10295
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010296 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -040010297 if (!msg)
10298 return;
10299
Johannes Berg3bb20552014-05-26 13:52:25 +020010300 if (nl80211_send_wiphy(rdev, cmd, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -040010301 nlmsg_free(msg);
10302 return;
10303 }
10304
Johannes Berg68eb5502013-11-19 15:19:38 +010010305 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010306 NL80211_MCGRP_CONFIG, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -040010307}
10308
Johannes Berg362a4152009-05-24 16:43:15 +020010309static int nl80211_add_scan_req(struct sk_buff *msg,
10310 struct cfg80211_registered_device *rdev)
10311{
10312 struct cfg80211_scan_request *req = rdev->scan_req;
10313 struct nlattr *nest;
10314 int i;
10315
10316 if (WARN_ON(!req))
10317 return 0;
10318
10319 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
10320 if (!nest)
10321 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -040010322 for (i = 0; i < req->n_ssids; i++) {
10323 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
10324 goto nla_put_failure;
10325 }
Johannes Berg362a4152009-05-24 16:43:15 +020010326 nla_nest_end(msg, nest);
10327
10328 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
10329 if (!nest)
10330 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -040010331 for (i = 0; i < req->n_channels; i++) {
10332 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
10333 goto nla_put_failure;
10334 }
Johannes Berg362a4152009-05-24 16:43:15 +020010335 nla_nest_end(msg, nest);
10336
David S. Miller9360ffd2012-03-29 04:41:26 -040010337 if (req->ie &&
10338 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
10339 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +020010340
Johannes Bergae917c92013-10-25 11:05:22 +020010341 if (req->flags &&
10342 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags))
10343 goto nla_put_failure;
Sam Lefflered4737712012-10-11 21:03:31 -070010344
Johannes Berg362a4152009-05-24 16:43:15 +020010345 return 0;
10346 nla_put_failure:
10347 return -ENOBUFS;
10348}
10349
Johannes Berga538e2d2009-06-16 19:56:42 +020010350static int nl80211_send_scan_msg(struct sk_buff *msg,
10351 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +020010352 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010353 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +020010354 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +010010355{
10356 void *hdr;
10357
Eric W. Biederman15e47302012-09-07 20:12:54 +000010358 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +010010359 if (!hdr)
10360 return -1;
10361
David S. Miller9360ffd2012-03-29 04:41:26 -040010362 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +020010363 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10364 wdev->netdev->ifindex)) ||
10365 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
David S. Miller9360ffd2012-03-29 04:41:26 -040010366 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +010010367
Johannes Berg362a4152009-05-24 16:43:15 +020010368 /* ignore errors and send incomplete event anyway */
10369 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +010010370
10371 return genlmsg_end(msg, hdr);
10372
10373 nla_put_failure:
10374 genlmsg_cancel(msg, hdr);
10375 return -EMSGSIZE;
10376}
10377
Luciano Coelho807f8a82011-05-11 17:09:35 +030010378static int
10379nl80211_send_sched_scan_msg(struct sk_buff *msg,
10380 struct cfg80211_registered_device *rdev,
10381 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010382 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +030010383{
10384 void *hdr;
10385
Eric W. Biederman15e47302012-09-07 20:12:54 +000010386 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010387 if (!hdr)
10388 return -1;
10389
David S. Miller9360ffd2012-03-29 04:41:26 -040010390 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10391 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10392 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +030010393
10394 return genlmsg_end(msg, hdr);
10395
10396 nla_put_failure:
10397 genlmsg_cancel(msg, hdr);
10398 return -EMSGSIZE;
10399}
10400
Johannes Berga538e2d2009-06-16 19:56:42 +020010401void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +020010402 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +020010403{
10404 struct sk_buff *msg;
10405
Thomas Graf58050fc2012-06-28 03:57:45 +000010406 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +020010407 if (!msg)
10408 return;
10409
Johannes Bergfd014282012-06-18 19:17:03 +020010410 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +020010411 NL80211_CMD_TRIGGER_SCAN) < 0) {
10412 nlmsg_free(msg);
10413 return;
10414 }
10415
Johannes Berg68eb5502013-11-19 15:19:38 +010010416 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010417 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +020010418}
10419
Johannes Bergf9d15d12014-01-22 11:14:19 +020010420struct sk_buff *nl80211_build_scan_msg(struct cfg80211_registered_device *rdev,
10421 struct wireless_dev *wdev, bool aborted)
Johannes Berg2a519312009-02-10 21:25:55 +010010422{
10423 struct sk_buff *msg;
10424
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010425 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +010010426 if (!msg)
Johannes Bergf9d15d12014-01-22 11:14:19 +020010427 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +010010428
Johannes Bergfd014282012-06-18 19:17:03 +020010429 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Bergf9d15d12014-01-22 11:14:19 +020010430 aborted ? NL80211_CMD_SCAN_ABORTED :
10431 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +010010432 nlmsg_free(msg);
Johannes Bergf9d15d12014-01-22 11:14:19 +020010433 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +010010434 }
10435
Johannes Bergf9d15d12014-01-22 11:14:19 +020010436 return msg;
Johannes Berg2a519312009-02-10 21:25:55 +010010437}
10438
Johannes Bergf9d15d12014-01-22 11:14:19 +020010439void nl80211_send_scan_result(struct cfg80211_registered_device *rdev,
10440 struct sk_buff *msg)
Johannes Berg2a519312009-02-10 21:25:55 +010010441{
Johannes Berg2a519312009-02-10 21:25:55 +010010442 if (!msg)
10443 return;
10444
Johannes Berg68eb5502013-11-19 15:19:38 +010010445 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010446 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +010010447}
10448
Luciano Coelho807f8a82011-05-11 17:09:35 +030010449void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
10450 struct net_device *netdev)
10451{
10452 struct sk_buff *msg;
10453
10454 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
10455 if (!msg)
10456 return;
10457
10458 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
10459 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
10460 nlmsg_free(msg);
10461 return;
10462 }
10463
Johannes Berg68eb5502013-11-19 15:19:38 +010010464 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010465 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010466}
10467
10468void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
10469 struct net_device *netdev, u32 cmd)
10470{
10471 struct sk_buff *msg;
10472
Thomas Graf58050fc2012-06-28 03:57:45 +000010473 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010474 if (!msg)
10475 return;
10476
10477 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
10478 nlmsg_free(msg);
10479 return;
10480 }
10481
Johannes Berg68eb5502013-11-19 15:19:38 +010010482 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010483 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010484}
10485
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010486/*
10487 * This can happen on global regulatory changes or device specific settings
10488 * based on custom world regulatory domains.
10489 */
10490void nl80211_send_reg_change_event(struct regulatory_request *request)
10491{
10492 struct sk_buff *msg;
10493 void *hdr;
10494
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010495 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010496 if (!msg)
10497 return;
10498
10499 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
10500 if (!hdr) {
10501 nlmsg_free(msg);
10502 return;
10503 }
10504
10505 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -040010506 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
10507 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010508
David S. Miller9360ffd2012-03-29 04:41:26 -040010509 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
10510 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10511 NL80211_REGDOM_TYPE_WORLD))
10512 goto nla_put_failure;
10513 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
10514 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10515 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
10516 goto nla_put_failure;
10517 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
10518 request->intersect) {
10519 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10520 NL80211_REGDOM_TYPE_INTERSECTION))
10521 goto nla_put_failure;
10522 } else {
10523 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10524 NL80211_REGDOM_TYPE_COUNTRY) ||
10525 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
10526 request->alpha2))
10527 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010528 }
10529
Johannes Bergf4173762012-12-03 18:23:37 +010010530 if (request->wiphy_idx != WIPHY_IDX_INVALID &&
David S. Miller9360ffd2012-03-29 04:41:26 -040010531 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
10532 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010533
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010534 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010535
Johannes Bergbc43b282009-07-25 10:54:13 +020010536 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010010537 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010538 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Bergbc43b282009-07-25 10:54:13 +020010539 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010540
10541 return;
10542
10543nla_put_failure:
10544 genlmsg_cancel(msg, hdr);
10545 nlmsg_free(msg);
10546}
10547
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010548static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
10549 struct net_device *netdev,
10550 const u8 *buf, size_t len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010551 enum nl80211_commands cmd, gfp_t gfp,
10552 int uapsd_queues)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010553{
10554 struct sk_buff *msg;
10555 void *hdr;
10556
Johannes Berge6d6e342009-07-01 21:26:47 +020010557 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010558 if (!msg)
10559 return;
10560
10561 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10562 if (!hdr) {
10563 nlmsg_free(msg);
10564 return;
10565 }
10566
David S. Miller9360ffd2012-03-29 04:41:26 -040010567 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10568 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10569 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
10570 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010571
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010572 if (uapsd_queues >= 0) {
10573 struct nlattr *nla_wmm =
10574 nla_nest_start(msg, NL80211_ATTR_STA_WME);
10575 if (!nla_wmm)
10576 goto nla_put_failure;
10577
10578 if (nla_put_u8(msg, NL80211_STA_WME_UAPSD_QUEUES,
10579 uapsd_queues))
10580 goto nla_put_failure;
10581
10582 nla_nest_end(msg, nla_wmm);
10583 }
10584
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010585 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010586
Johannes Berg68eb5502013-11-19 15:19:38 +010010587 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010588 NL80211_MCGRP_MLME, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010589 return;
10590
10591 nla_put_failure:
10592 genlmsg_cancel(msg, hdr);
10593 nlmsg_free(msg);
10594}
10595
10596void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010597 struct net_device *netdev, const u8 *buf,
10598 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010599{
10600 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010601 NL80211_CMD_AUTHENTICATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010602}
10603
10604void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
10605 struct net_device *netdev, const u8 *buf,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010606 size_t len, gfp_t gfp, int uapsd_queues)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010607{
Johannes Berge6d6e342009-07-01 21:26:47 +020010608 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010609 NL80211_CMD_ASSOCIATE, gfp, uapsd_queues);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010610}
10611
Jouni Malinen53b46b82009-03-27 20:53:56 +020010612void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010613 struct net_device *netdev, const u8 *buf,
10614 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010615{
10616 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010617 NL80211_CMD_DEAUTHENTICATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010618}
10619
Jouni Malinen53b46b82009-03-27 20:53:56 +020010620void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
10621 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +020010622 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010623{
10624 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010625 NL80211_CMD_DISASSOCIATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010626}
10627
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010628void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
10629 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +020010630{
Johannes Berg947add32013-02-22 22:05:20 +010010631 struct wireless_dev *wdev = dev->ieee80211_ptr;
10632 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080010633 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010634 const struct ieee80211_mgmt *mgmt = (void *)buf;
10635 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +020010636
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010637 if (WARN_ON(len < 2))
10638 return;
10639
10640 if (ieee80211_is_deauth(mgmt->frame_control))
10641 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
10642 else
10643 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
10644
10645 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010646 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC, -1);
Jouni Malinencf4e5942010-12-16 00:52:40 +020010647}
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010648EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +020010649
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -040010650static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
10651 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +020010652 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030010653{
10654 struct sk_buff *msg;
10655 void *hdr;
10656
Johannes Berge6d6e342009-07-01 21:26:47 +020010657 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010658 if (!msg)
10659 return;
10660
10661 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10662 if (!hdr) {
10663 nlmsg_free(msg);
10664 return;
10665 }
10666
David S. Miller9360ffd2012-03-29 04:41:26 -040010667 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10668 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10669 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
10670 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
10671 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +030010672
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010673 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +030010674
Johannes Berg68eb5502013-11-19 15:19:38 +010010675 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010676 NL80211_MCGRP_MLME, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010677 return;
10678
10679 nla_put_failure:
10680 genlmsg_cancel(msg, hdr);
10681 nlmsg_free(msg);
10682}
10683
10684void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010685 struct net_device *netdev, const u8 *addr,
10686 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030010687{
10688 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +020010689 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010690}
10691
10692void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010693 struct net_device *netdev, const u8 *addr,
10694 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030010695{
Johannes Berge6d6e342009-07-01 21:26:47 +020010696 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
10697 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010698}
10699
Samuel Ortizb23aa672009-07-01 21:26:54 +020010700void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
10701 struct net_device *netdev, const u8 *bssid,
10702 const u8 *req_ie, size_t req_ie_len,
10703 const u8 *resp_ie, size_t resp_ie_len,
10704 u16 status, gfp_t gfp)
10705{
10706 struct sk_buff *msg;
10707 void *hdr;
10708
Thomas Graf58050fc2012-06-28 03:57:45 +000010709 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010710 if (!msg)
10711 return;
10712
10713 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
10714 if (!hdr) {
10715 nlmsg_free(msg);
10716 return;
10717 }
10718
David S. Miller9360ffd2012-03-29 04:41:26 -040010719 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10720 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10721 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
10722 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
10723 (req_ie &&
10724 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10725 (resp_ie &&
10726 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10727 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010728
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010729 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010730
Johannes Berg68eb5502013-11-19 15:19:38 +010010731 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010732 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010733 return;
10734
10735 nla_put_failure:
10736 genlmsg_cancel(msg, hdr);
10737 nlmsg_free(msg);
10738
10739}
10740
10741void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
10742 struct net_device *netdev, const u8 *bssid,
10743 const u8 *req_ie, size_t req_ie_len,
10744 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
10745{
10746 struct sk_buff *msg;
10747 void *hdr;
10748
Thomas Graf58050fc2012-06-28 03:57:45 +000010749 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010750 if (!msg)
10751 return;
10752
10753 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
10754 if (!hdr) {
10755 nlmsg_free(msg);
10756 return;
10757 }
10758
David S. Miller9360ffd2012-03-29 04:41:26 -040010759 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10760 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10761 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
10762 (req_ie &&
10763 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10764 (resp_ie &&
10765 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10766 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010767
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010768 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010769
Johannes Berg68eb5502013-11-19 15:19:38 +010010770 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010771 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010772 return;
10773
10774 nla_put_failure:
10775 genlmsg_cancel(msg, hdr);
10776 nlmsg_free(msg);
10777
10778}
10779
10780void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
10781 struct net_device *netdev, u16 reason,
Johannes Berg667503dd2009-07-07 03:56:11 +020010782 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020010783{
10784 struct sk_buff *msg;
10785 void *hdr;
10786
Thomas Graf58050fc2012-06-28 03:57:45 +000010787 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010788 if (!msg)
10789 return;
10790
10791 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
10792 if (!hdr) {
10793 nlmsg_free(msg);
10794 return;
10795 }
10796
David S. Miller9360ffd2012-03-29 04:41:26 -040010797 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10798 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10799 (from_ap && reason &&
10800 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
10801 (from_ap &&
10802 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
10803 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
10804 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010805
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010806 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010807
Johannes Berg68eb5502013-11-19 15:19:38 +010010808 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010809 NL80211_MCGRP_MLME, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010810 return;
10811
10812 nla_put_failure:
10813 genlmsg_cancel(msg, hdr);
10814 nlmsg_free(msg);
10815
10816}
10817
Johannes Berg04a773a2009-04-19 21:24:32 +020010818void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
10819 struct net_device *netdev, const u8 *bssid,
10820 gfp_t gfp)
10821{
10822 struct sk_buff *msg;
10823 void *hdr;
10824
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010825 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010826 if (!msg)
10827 return;
10828
10829 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
10830 if (!hdr) {
10831 nlmsg_free(msg);
10832 return;
10833 }
10834
David S. Miller9360ffd2012-03-29 04:41:26 -040010835 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10836 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10837 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10838 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020010839
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010840 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020010841
Johannes Berg68eb5502013-11-19 15:19:38 +010010842 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010843 NL80211_MCGRP_MLME, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010844 return;
10845
10846 nla_put_failure:
10847 genlmsg_cancel(msg, hdr);
10848 nlmsg_free(msg);
10849}
10850
Johannes Berg947add32013-02-22 22:05:20 +010010851void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
10852 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070010853{
Johannes Berg947add32013-02-22 22:05:20 +010010854 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080010855 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010856 struct sk_buff *msg;
10857 void *hdr;
10858
Johannes Berg947add32013-02-22 22:05:20 +010010859 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
10860 return;
10861
10862 trace_cfg80211_notify_new_peer_candidate(dev, addr);
10863
Javier Cardonac93b5e72011-04-07 15:08:34 -070010864 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10865 if (!msg)
10866 return;
10867
10868 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
10869 if (!hdr) {
10870 nlmsg_free(msg);
10871 return;
10872 }
10873
David S. Miller9360ffd2012-03-29 04:41:26 -040010874 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010875 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10876 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010877 (ie_len && ie &&
10878 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
10879 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070010880
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010881 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010882
Johannes Berg68eb5502013-11-19 15:19:38 +010010883 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010884 NL80211_MCGRP_MLME, gfp);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010885 return;
10886
10887 nla_put_failure:
10888 genlmsg_cancel(msg, hdr);
10889 nlmsg_free(msg);
10890}
Johannes Berg947add32013-02-22 22:05:20 +010010891EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010892
Jouni Malinena3b8b052009-03-27 21:59:49 +020010893void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
10894 struct net_device *netdev, const u8 *addr,
10895 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020010896 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020010897{
10898 struct sk_buff *msg;
10899 void *hdr;
10900
Johannes Berge6d6e342009-07-01 21:26:47 +020010901 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010902 if (!msg)
10903 return;
10904
10905 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
10906 if (!hdr) {
10907 nlmsg_free(msg);
10908 return;
10909 }
10910
David S. Miller9360ffd2012-03-29 04:41:26 -040010911 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10912 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10913 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
10914 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
10915 (key_id != -1 &&
10916 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
10917 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
10918 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020010919
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010920 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010921
Johannes Berg68eb5502013-11-19 15:19:38 +010010922 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010923 NL80211_MCGRP_MLME, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010924 return;
10925
10926 nla_put_failure:
10927 genlmsg_cancel(msg, hdr);
10928 nlmsg_free(msg);
10929}
10930
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010931void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
10932 struct ieee80211_channel *channel_before,
10933 struct ieee80211_channel *channel_after)
10934{
10935 struct sk_buff *msg;
10936 void *hdr;
10937 struct nlattr *nl_freq;
10938
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010939 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010940 if (!msg)
10941 return;
10942
10943 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
10944 if (!hdr) {
10945 nlmsg_free(msg);
10946 return;
10947 }
10948
10949 /*
10950 * Since we are applying the beacon hint to a wiphy we know its
10951 * wiphy_idx is valid
10952 */
David S. Miller9360ffd2012-03-29 04:41:26 -040010953 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
10954 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010955
10956 /* Before */
10957 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
10958 if (!nl_freq)
10959 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010960 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010961 goto nla_put_failure;
10962 nla_nest_end(msg, nl_freq);
10963
10964 /* After */
10965 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
10966 if (!nl_freq)
10967 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010968 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010969 goto nla_put_failure;
10970 nla_nest_end(msg, nl_freq);
10971
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010972 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010973
Johannes Berg463d0182009-07-14 00:33:35 +020010974 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010010975 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010976 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Berg463d0182009-07-14 00:33:35 +020010977 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010978
10979 return;
10980
10981nla_put_failure:
10982 genlmsg_cancel(msg, hdr);
10983 nlmsg_free(msg);
10984}
10985
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010986static void nl80211_send_remain_on_chan_event(
10987 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020010988 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010989 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010990 unsigned int duration, gfp_t gfp)
10991{
10992 struct sk_buff *msg;
10993 void *hdr;
10994
10995 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10996 if (!msg)
10997 return;
10998
10999 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
11000 if (!hdr) {
11001 nlmsg_free(msg);
11002 return;
11003 }
11004
David S. Miller9360ffd2012-03-29 04:41:26 -040011005 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020011006 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11007 wdev->netdev->ifindex)) ||
Johannes Berg00f53352012-07-17 11:53:12 +020011008 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011009 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010011010 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
11011 NL80211_CHAN_NO_HT) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011012 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
11013 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011014
David S. Miller9360ffd2012-03-29 04:41:26 -040011015 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
11016 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
11017 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011018
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011019 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011020
Johannes Berg68eb5502013-11-19 15:19:38 +010011021 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011022 NL80211_MCGRP_MLME, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011023 return;
11024
11025 nla_put_failure:
11026 genlmsg_cancel(msg, hdr);
11027 nlmsg_free(msg);
11028}
11029
Johannes Berg947add32013-02-22 22:05:20 +010011030void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
11031 struct ieee80211_channel *chan,
11032 unsigned int duration, gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011033{
Johannes Berg947add32013-02-22 22:05:20 +010011034 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011035 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011036
11037 trace_cfg80211_ready_on_channel(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011038 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020011039 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010011040 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011041}
Johannes Berg947add32013-02-22 22:05:20 +010011042EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011043
Johannes Berg947add32013-02-22 22:05:20 +010011044void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
11045 struct ieee80211_channel *chan,
11046 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011047{
Johannes Berg947add32013-02-22 22:05:20 +010011048 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011049 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011050
11051 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011052 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010011053 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011054}
Johannes Berg947add32013-02-22 22:05:20 +010011055EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011056
Johannes Berg947add32013-02-22 22:05:20 +010011057void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
11058 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010011059{
Johannes Berg947add32013-02-22 22:05:20 +010011060 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011061 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010011062 struct sk_buff *msg;
11063
Johannes Berg947add32013-02-22 22:05:20 +010011064 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
11065
Thomas Graf58050fc2012-06-28 03:57:45 +000011066 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010011067 if (!msg)
11068 return;
11069
John W. Linville66266b32012-03-15 13:25:41 -040011070 if (nl80211_send_station(msg, 0, 0, 0,
11071 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010011072 nlmsg_free(msg);
11073 return;
11074 }
11075
Johannes Berg68eb5502013-11-19 15:19:38 +010011076 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011077 NL80211_MCGRP_MLME, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010011078}
Johannes Berg947add32013-02-22 22:05:20 +010011079EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010011080
Johannes Berg947add32013-02-22 22:05:20 +010011081void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020011082{
Johannes Berg947add32013-02-22 22:05:20 +010011083 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011084 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020011085 struct sk_buff *msg;
11086 void *hdr;
11087
Johannes Berg947add32013-02-22 22:05:20 +010011088 trace_cfg80211_del_sta(dev, mac_addr);
11089
Thomas Graf58050fc2012-06-28 03:57:45 +000011090 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020011091 if (!msg)
11092 return;
11093
11094 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
11095 if (!hdr) {
11096 nlmsg_free(msg);
11097 return;
11098 }
11099
David S. Miller9360ffd2012-03-29 04:41:26 -040011100 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11101 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
11102 goto nla_put_failure;
Jouni Malinenec15e682011-03-23 15:29:52 +020011103
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011104 genlmsg_end(msg, hdr);
Jouni Malinenec15e682011-03-23 15:29:52 +020011105
Johannes Berg68eb5502013-11-19 15:19:38 +010011106 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011107 NL80211_MCGRP_MLME, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020011108 return;
11109
11110 nla_put_failure:
11111 genlmsg_cancel(msg, hdr);
11112 nlmsg_free(msg);
11113}
Johannes Berg947add32013-02-22 22:05:20 +010011114EXPORT_SYMBOL(cfg80211_del_sta);
Jouni Malinenec15e682011-03-23 15:29:52 +020011115
Johannes Berg947add32013-02-22 22:05:20 +010011116void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
11117 enum nl80211_connect_failed_reason reason,
11118 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011119{
Johannes Berg947add32013-02-22 22:05:20 +010011120 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011121 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011122 struct sk_buff *msg;
11123 void *hdr;
11124
11125 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
11126 if (!msg)
11127 return;
11128
11129 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
11130 if (!hdr) {
11131 nlmsg_free(msg);
11132 return;
11133 }
11134
11135 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11136 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
11137 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
11138 goto nla_put_failure;
11139
11140 genlmsg_end(msg, hdr);
11141
Johannes Berg68eb5502013-11-19 15:19:38 +010011142 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011143 NL80211_MCGRP_MLME, gfp);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011144 return;
11145
11146 nla_put_failure:
11147 genlmsg_cancel(msg, hdr);
11148 nlmsg_free(msg);
11149}
Johannes Berg947add32013-02-22 22:05:20 +010011150EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011151
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011152static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
11153 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010011154{
11155 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011156 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg28946da2011-11-04 11:18:12 +010011157 struct sk_buff *msg;
11158 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000011159 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010011160
Eric W. Biederman15e47302012-09-07 20:12:54 +000011161 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010011162 return false;
11163
11164 msg = nlmsg_new(100, gfp);
11165 if (!msg)
11166 return true;
11167
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011168 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010011169 if (!hdr) {
11170 nlmsg_free(msg);
11171 return true;
11172 }
11173
David S. Miller9360ffd2012-03-29 04:41:26 -040011174 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11175 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11176 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
11177 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010011178
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011179 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000011180 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010011181 return true;
11182
11183 nla_put_failure:
11184 genlmsg_cancel(msg, hdr);
11185 nlmsg_free(msg);
11186 return true;
11187}
11188
Johannes Berg947add32013-02-22 22:05:20 +010011189bool cfg80211_rx_spurious_frame(struct net_device *dev,
11190 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011191{
Johannes Berg947add32013-02-22 22:05:20 +010011192 struct wireless_dev *wdev = dev->ieee80211_ptr;
11193 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011194
Johannes Berg947add32013-02-22 22:05:20 +010011195 trace_cfg80211_rx_spurious_frame(dev, addr);
11196
11197 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
11198 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
11199 trace_cfg80211_return_bool(false);
11200 return false;
11201 }
11202 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
11203 addr, gfp);
11204 trace_cfg80211_return_bool(ret);
11205 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011206}
Johannes Berg947add32013-02-22 22:05:20 +010011207EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
11208
11209bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
11210 const u8 *addr, gfp_t gfp)
11211{
11212 struct wireless_dev *wdev = dev->ieee80211_ptr;
11213 bool ret;
11214
11215 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
11216
11217 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
11218 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
11219 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
11220 trace_cfg80211_return_bool(false);
11221 return false;
11222 }
11223 ret = __nl80211_unexpected_frame(dev,
11224 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
11225 addr, gfp);
11226 trace_cfg80211_return_bool(ret);
11227 return ret;
11228}
11229EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011230
Johannes Berg2e161f72010-08-12 15:38:38 +020011231int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000011232 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010011233 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030011234 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020011235{
Johannes Berg71bbc992012-06-15 15:30:18 +020011236 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020011237 struct sk_buff *msg;
11238 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020011239
11240 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11241 if (!msg)
11242 return -ENOMEM;
11243
Johannes Berg2e161f72010-08-12 15:38:38 +020011244 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020011245 if (!hdr) {
11246 nlmsg_free(msg);
11247 return -ENOMEM;
11248 }
11249
David S. Miller9360ffd2012-03-29 04:41:26 -040011250 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020011251 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11252 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030011253 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011254 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
11255 (sig_dbm &&
11256 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030011257 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
11258 (flags &&
11259 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040011260 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020011261
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011262 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020011263
Eric W. Biederman15e47302012-09-07 20:12:54 +000011264 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020011265
11266 nla_put_failure:
11267 genlmsg_cancel(msg, hdr);
11268 nlmsg_free(msg);
11269 return -ENOBUFS;
11270}
11271
Johannes Berg947add32013-02-22 22:05:20 +010011272void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
11273 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020011274{
Johannes Berg947add32013-02-22 22:05:20 +010011275 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011276 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020011277 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020011278 struct sk_buff *msg;
11279 void *hdr;
11280
Johannes Berg947add32013-02-22 22:05:20 +010011281 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
11282
Jouni Malinen026331c2010-02-15 12:53:10 +020011283 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11284 if (!msg)
11285 return;
11286
Johannes Berg2e161f72010-08-12 15:38:38 +020011287 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020011288 if (!hdr) {
11289 nlmsg_free(msg);
11290 return;
11291 }
11292
David S. Miller9360ffd2012-03-29 04:41:26 -040011293 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020011294 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11295 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030011296 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011297 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
11298 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11299 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
11300 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020011301
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011302 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020011303
Johannes Berg68eb5502013-11-19 15:19:38 +010011304 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011305 NL80211_MCGRP_MLME, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020011306 return;
11307
11308 nla_put_failure:
11309 genlmsg_cancel(msg, hdr);
11310 nlmsg_free(msg);
11311}
Johannes Berg947add32013-02-22 22:05:20 +010011312EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020011313
Johannes Berg947add32013-02-22 22:05:20 +010011314void cfg80211_cqm_rssi_notify(struct net_device *dev,
11315 enum nl80211_cqm_rssi_threshold_event rssi_event,
11316 gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011317{
Johannes Berg947add32013-02-22 22:05:20 +010011318 struct wireless_dev *wdev = dev->ieee80211_ptr;
11319 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011320 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011321 struct sk_buff *msg;
11322 struct nlattr *pinfoattr;
11323 void *hdr;
11324
Johannes Berg947add32013-02-22 22:05:20 +010011325 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
11326
Thomas Graf58050fc2012-06-28 03:57:45 +000011327 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011328 if (!msg)
11329 return;
11330
11331 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
11332 if (!hdr) {
11333 nlmsg_free(msg);
11334 return;
11335 }
11336
David S. Miller9360ffd2012-03-29 04:41:26 -040011337 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010011338 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040011339 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011340
11341 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
11342 if (!pinfoattr)
11343 goto nla_put_failure;
11344
David S. Miller9360ffd2012-03-29 04:41:26 -040011345 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
11346 rssi_event))
11347 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011348
11349 nla_nest_end(msg, pinfoattr);
11350
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011351 genlmsg_end(msg, hdr);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011352
Johannes Berg68eb5502013-11-19 15:19:38 +010011353 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011354 NL80211_MCGRP_MLME, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011355 return;
11356
11357 nla_put_failure:
11358 genlmsg_cancel(msg, hdr);
11359 nlmsg_free(msg);
11360}
Johannes Berg947add32013-02-22 22:05:20 +010011361EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011362
Johannes Berg947add32013-02-22 22:05:20 +010011363static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
11364 struct net_device *netdev, const u8 *bssid,
11365 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020011366{
11367 struct sk_buff *msg;
11368 struct nlattr *rekey_attr;
11369 void *hdr;
11370
Thomas Graf58050fc2012-06-28 03:57:45 +000011371 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020011372 if (!msg)
11373 return;
11374
11375 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
11376 if (!hdr) {
11377 nlmsg_free(msg);
11378 return;
11379 }
11380
David S. Miller9360ffd2012-03-29 04:41:26 -040011381 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11382 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
11383 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
11384 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020011385
11386 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
11387 if (!rekey_attr)
11388 goto nla_put_failure;
11389
David S. Miller9360ffd2012-03-29 04:41:26 -040011390 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
11391 NL80211_REPLAY_CTR_LEN, replay_ctr))
11392 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020011393
11394 nla_nest_end(msg, rekey_attr);
11395
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011396 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020011397
Johannes Berg68eb5502013-11-19 15:19:38 +010011398 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011399 NL80211_MCGRP_MLME, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020011400 return;
11401
11402 nla_put_failure:
11403 genlmsg_cancel(msg, hdr);
11404 nlmsg_free(msg);
11405}
11406
Johannes Berg947add32013-02-22 22:05:20 +010011407void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
11408 const u8 *replay_ctr, gfp_t gfp)
11409{
11410 struct wireless_dev *wdev = dev->ieee80211_ptr;
11411 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011412 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011413
11414 trace_cfg80211_gtk_rekey_notify(dev, bssid);
11415 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
11416}
11417EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
11418
11419static void
11420nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
11421 struct net_device *netdev, int index,
11422 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011423{
11424 struct sk_buff *msg;
11425 struct nlattr *attr;
11426 void *hdr;
11427
Thomas Graf58050fc2012-06-28 03:57:45 +000011428 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011429 if (!msg)
11430 return;
11431
11432 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
11433 if (!hdr) {
11434 nlmsg_free(msg);
11435 return;
11436 }
11437
David S. Miller9360ffd2012-03-29 04:41:26 -040011438 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11439 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
11440 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011441
11442 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
11443 if (!attr)
11444 goto nla_put_failure;
11445
David S. Miller9360ffd2012-03-29 04:41:26 -040011446 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
11447 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
11448 (preauth &&
11449 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
11450 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011451
11452 nla_nest_end(msg, attr);
11453
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011454 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011455
Johannes Berg68eb5502013-11-19 15:19:38 +010011456 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011457 NL80211_MCGRP_MLME, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011458 return;
11459
11460 nla_put_failure:
11461 genlmsg_cancel(msg, hdr);
11462 nlmsg_free(msg);
11463}
11464
Johannes Berg947add32013-02-22 22:05:20 +010011465void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
11466 const u8 *bssid, bool preauth, gfp_t gfp)
11467{
11468 struct wireless_dev *wdev = dev->ieee80211_ptr;
11469 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011470 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011471
11472 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
11473 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
11474}
11475EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
11476
11477static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
11478 struct net_device *netdev,
11479 struct cfg80211_chan_def *chandef,
11480 gfp_t gfp)
Thomas Pedersen53145262012-04-06 13:35:47 -070011481{
11482 struct sk_buff *msg;
11483 void *hdr;
11484
Thomas Graf58050fc2012-06-28 03:57:45 +000011485 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070011486 if (!msg)
11487 return;
11488
11489 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
11490 if (!hdr) {
11491 nlmsg_free(msg);
11492 return;
11493 }
11494
Johannes Berg683b6d32012-11-08 21:25:48 +010011495 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
11496 goto nla_put_failure;
11497
11498 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040011499 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070011500
11501 genlmsg_end(msg, hdr);
11502
Johannes Berg68eb5502013-11-19 15:19:38 +010011503 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011504 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070011505 return;
11506
11507 nla_put_failure:
11508 genlmsg_cancel(msg, hdr);
11509 nlmsg_free(msg);
11510}
11511
Johannes Berg947add32013-02-22 22:05:20 +010011512void cfg80211_ch_switch_notify(struct net_device *dev,
11513 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070011514{
Johannes Berg947add32013-02-22 22:05:20 +010011515 struct wireless_dev *wdev = dev->ieee80211_ptr;
11516 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011517 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011518
Simon Wunderliche487eae2013-11-21 18:19:51 +010011519 ASSERT_WDEV_LOCK(wdev);
Johannes Berg947add32013-02-22 22:05:20 +010011520
Simon Wunderliche487eae2013-11-21 18:19:51 +010011521 trace_cfg80211_ch_switch_notify(dev, chandef);
Johannes Berg947add32013-02-22 22:05:20 +010011522
11523 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +020011524 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070011525 wdev->iftype != NL80211_IFTYPE_ADHOC &&
11526 wdev->iftype != NL80211_IFTYPE_MESH_POINT))
Simon Wunderliche487eae2013-11-21 18:19:51 +010011527 return;
Johannes Berg947add32013-02-22 22:05:20 +010011528
Michal Kazior9e0e2962014-01-29 14:22:27 +010011529 wdev->chandef = *chandef;
Janusz Dziedzic96f55f12014-01-24 14:29:21 +010011530 wdev->preset_chandef = *chandef;
Johannes Berg947add32013-02-22 22:05:20 +010011531 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
Johannes Berg947add32013-02-22 22:05:20 +010011532}
11533EXPORT_SYMBOL(cfg80211_ch_switch_notify);
11534
11535void cfg80211_cqm_txe_notify(struct net_device *dev,
11536 const u8 *peer, u32 num_packets,
11537 u32 rate, u32 intvl, gfp_t gfp)
11538{
11539 struct wireless_dev *wdev = dev->ieee80211_ptr;
11540 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011541 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070011542 struct sk_buff *msg;
11543 struct nlattr *pinfoattr;
11544 void *hdr;
11545
11546 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
11547 if (!msg)
11548 return;
11549
11550 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
11551 if (!hdr) {
11552 nlmsg_free(msg);
11553 return;
11554 }
11555
11556 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010011557 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070011558 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
11559 goto nla_put_failure;
11560
11561 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
11562 if (!pinfoattr)
11563 goto nla_put_failure;
11564
11565 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
11566 goto nla_put_failure;
11567
11568 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
11569 goto nla_put_failure;
11570
11571 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
11572 goto nla_put_failure;
11573
11574 nla_nest_end(msg, pinfoattr);
11575
11576 genlmsg_end(msg, hdr);
11577
Johannes Berg68eb5502013-11-19 15:19:38 +010011578 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011579 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen84f10702012-07-12 16:17:33 -070011580 return;
11581
11582 nla_put_failure:
11583 genlmsg_cancel(msg, hdr);
11584 nlmsg_free(msg);
11585}
Johannes Berg947add32013-02-22 22:05:20 +010011586EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070011587
11588void
Simon Wunderlich04f39042013-02-08 18:16:19 +010011589nl80211_radar_notify(struct cfg80211_registered_device *rdev,
Janusz Dziedzicd2859df2013-11-06 13:55:51 +010011590 const struct cfg80211_chan_def *chandef,
Simon Wunderlich04f39042013-02-08 18:16:19 +010011591 enum nl80211_radar_event event,
11592 struct net_device *netdev, gfp_t gfp)
11593{
11594 struct sk_buff *msg;
11595 void *hdr;
11596
11597 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11598 if (!msg)
11599 return;
11600
11601 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
11602 if (!hdr) {
11603 nlmsg_free(msg);
11604 return;
11605 }
11606
11607 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
11608 goto nla_put_failure;
11609
11610 /* NOP and radar events don't need a netdev parameter */
11611 if (netdev) {
11612 struct wireless_dev *wdev = netdev->ieee80211_ptr;
11613
11614 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
11615 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11616 goto nla_put_failure;
11617 }
11618
11619 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
11620 goto nla_put_failure;
11621
11622 if (nl80211_send_chandef(msg, chandef))
11623 goto nla_put_failure;
11624
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011625 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010011626
Johannes Berg68eb5502013-11-19 15:19:38 +010011627 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011628 NL80211_MCGRP_MLME, gfp);
Simon Wunderlich04f39042013-02-08 18:16:19 +010011629 return;
11630
11631 nla_put_failure:
11632 genlmsg_cancel(msg, hdr);
11633 nlmsg_free(msg);
11634}
11635
Johannes Berg947add32013-02-22 22:05:20 +010011636void cfg80211_cqm_pktloss_notify(struct net_device *dev,
11637 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010011638{
Johannes Berg947add32013-02-22 22:05:20 +010011639 struct wireless_dev *wdev = dev->ieee80211_ptr;
11640 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011641 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011642 struct sk_buff *msg;
11643 struct nlattr *pinfoattr;
11644 void *hdr;
11645
Johannes Berg947add32013-02-22 22:05:20 +010011646 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
11647
Thomas Graf58050fc2012-06-28 03:57:45 +000011648 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011649 if (!msg)
11650 return;
11651
11652 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
11653 if (!hdr) {
11654 nlmsg_free(msg);
11655 return;
11656 }
11657
David S. Miller9360ffd2012-03-29 04:41:26 -040011658 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010011659 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011660 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
11661 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010011662
11663 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
11664 if (!pinfoattr)
11665 goto nla_put_failure;
11666
David S. Miller9360ffd2012-03-29 04:41:26 -040011667 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
11668 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010011669
11670 nla_nest_end(msg, pinfoattr);
11671
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011672 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011673
Johannes Berg68eb5502013-11-19 15:19:38 +010011674 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011675 NL80211_MCGRP_MLME, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011676 return;
11677
11678 nla_put_failure:
11679 genlmsg_cancel(msg, hdr);
11680 nlmsg_free(msg);
11681}
Johannes Berg947add32013-02-22 22:05:20 +010011682EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011683
Johannes Berg7f6cf312011-11-04 11:18:15 +010011684void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
11685 u64 cookie, bool acked, gfp_t gfp)
11686{
11687 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011688 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011689 struct sk_buff *msg;
11690 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011691
Beni Lev4ee3e062012-08-27 12:49:39 +030011692 trace_cfg80211_probe_status(dev, addr, cookie, acked);
11693
Thomas Graf58050fc2012-06-28 03:57:45 +000011694 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030011695
Johannes Berg7f6cf312011-11-04 11:18:15 +010011696 if (!msg)
11697 return;
11698
11699 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
11700 if (!hdr) {
11701 nlmsg_free(msg);
11702 return;
11703 }
11704
David S. Miller9360ffd2012-03-29 04:41:26 -040011705 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11706 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11707 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
11708 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11709 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
11710 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011711
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011712 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011713
Johannes Berg68eb5502013-11-19 15:19:38 +010011714 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011715 NL80211_MCGRP_MLME, gfp);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011716 return;
11717
11718 nla_put_failure:
11719 genlmsg_cancel(msg, hdr);
11720 nlmsg_free(msg);
11721}
11722EXPORT_SYMBOL(cfg80211_probe_status);
11723
Johannes Berg5e7602302011-11-04 11:18:17 +010011724void cfg80211_report_obss_beacon(struct wiphy *wiphy,
11725 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070011726 int freq, int sig_dbm)
Johannes Berg5e7602302011-11-04 11:18:17 +010011727{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011728 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg5e7602302011-11-04 11:18:17 +010011729 struct sk_buff *msg;
11730 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070011731 struct cfg80211_beacon_registration *reg;
Johannes Berg5e7602302011-11-04 11:18:17 +010011732
Beni Lev4ee3e062012-08-27 12:49:39 +030011733 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
11734
Ben Greear37c73b52012-10-26 14:49:25 -070011735 spin_lock_bh(&rdev->beacon_registrations_lock);
11736 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
11737 msg = nlmsg_new(len + 100, GFP_ATOMIC);
11738 if (!msg) {
11739 spin_unlock_bh(&rdev->beacon_registrations_lock);
11740 return;
11741 }
Johannes Berg5e7602302011-11-04 11:18:17 +010011742
Ben Greear37c73b52012-10-26 14:49:25 -070011743 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
11744 if (!hdr)
11745 goto nla_put_failure;
Johannes Berg5e7602302011-11-04 11:18:17 +010011746
Ben Greear37c73b52012-10-26 14:49:25 -070011747 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11748 (freq &&
11749 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
11750 (sig_dbm &&
11751 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
11752 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
11753 goto nla_put_failure;
11754
11755 genlmsg_end(msg, hdr);
11756
11757 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e7602302011-11-04 11:18:17 +010011758 }
Ben Greear37c73b52012-10-26 14:49:25 -070011759 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010011760 return;
11761
11762 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070011763 spin_unlock_bh(&rdev->beacon_registrations_lock);
11764 if (hdr)
11765 genlmsg_cancel(msg, hdr);
Johannes Berg5e7602302011-11-04 11:18:17 +010011766 nlmsg_free(msg);
11767}
11768EXPORT_SYMBOL(cfg80211_report_obss_beacon);
11769
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011770#ifdef CONFIG_PM
11771void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
11772 struct cfg80211_wowlan_wakeup *wakeup,
11773 gfp_t gfp)
11774{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011775 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011776 struct sk_buff *msg;
11777 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011778 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011779
11780 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11781
11782 if (wakeup)
11783 size += wakeup->packet_present_len;
11784
11785 msg = nlmsg_new(size, gfp);
11786 if (!msg)
11787 return;
11788
11789 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11790 if (!hdr)
11791 goto free_msg;
11792
11793 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11794 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11795 goto free_msg;
11796
11797 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11798 wdev->netdev->ifindex))
11799 goto free_msg;
11800
11801 if (wakeup) {
11802 struct nlattr *reasons;
11803
11804 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
Johannes Berg7fa322c2013-10-25 11:16:58 +020011805 if (!reasons)
11806 goto free_msg;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011807
11808 if (wakeup->disconnect &&
11809 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11810 goto free_msg;
11811 if (wakeup->magic_pkt &&
11812 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11813 goto free_msg;
11814 if (wakeup->gtk_rekey_failure &&
11815 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11816 goto free_msg;
11817 if (wakeup->eap_identity_req &&
11818 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11819 goto free_msg;
11820 if (wakeup->four_way_handshake &&
11821 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11822 goto free_msg;
11823 if (wakeup->rfkill_release &&
11824 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11825 goto free_msg;
11826
11827 if (wakeup->pattern_idx >= 0 &&
11828 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11829 wakeup->pattern_idx))
11830 goto free_msg;
11831
Johannes Bergae917c92013-10-25 11:05:22 +020011832 if (wakeup->tcp_match &&
11833 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH))
11834 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011835
Johannes Bergae917c92013-10-25 11:05:22 +020011836 if (wakeup->tcp_connlost &&
11837 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST))
11838 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011839
Johannes Bergae917c92013-10-25 11:05:22 +020011840 if (wakeup->tcp_nomoretokens &&
11841 nla_put_flag(msg,
11842 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS))
11843 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011844
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011845 if (wakeup->packet) {
11846 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11847 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11848
11849 if (!wakeup->packet_80211) {
11850 pkt_attr =
11851 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11852 len_attr =
11853 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11854 }
11855
11856 if (wakeup->packet_len &&
11857 nla_put_u32(msg, len_attr, wakeup->packet_len))
11858 goto free_msg;
11859
11860 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11861 wakeup->packet))
11862 goto free_msg;
11863 }
11864
11865 nla_nest_end(msg, reasons);
11866 }
11867
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011868 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011869
Johannes Berg68eb5502013-11-19 15:19:38 +010011870 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011871 NL80211_MCGRP_MLME, gfp);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011872 return;
11873
11874 free_msg:
11875 nlmsg_free(msg);
11876}
11877EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11878#endif
11879
Jouni Malinen3475b092012-11-16 22:49:57 +020011880void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11881 enum nl80211_tdls_operation oper,
11882 u16 reason_code, gfp_t gfp)
11883{
11884 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011885 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Jouni Malinen3475b092012-11-16 22:49:57 +020011886 struct sk_buff *msg;
11887 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011888
11889 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11890 reason_code);
11891
11892 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11893 if (!msg)
11894 return;
11895
11896 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11897 if (!hdr) {
11898 nlmsg_free(msg);
11899 return;
11900 }
11901
11902 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11903 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11904 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11905 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11906 (reason_code > 0 &&
11907 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11908 goto nla_put_failure;
11909
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011910 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011911
Johannes Berg68eb5502013-11-19 15:19:38 +010011912 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011913 NL80211_MCGRP_MLME, gfp);
Jouni Malinen3475b092012-11-16 22:49:57 +020011914 return;
11915
11916 nla_put_failure:
11917 genlmsg_cancel(msg, hdr);
11918 nlmsg_free(msg);
11919}
11920EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11921
Jouni Malinen026331c2010-02-15 12:53:10 +020011922static int nl80211_netlink_notify(struct notifier_block * nb,
11923 unsigned long state,
11924 void *_notify)
11925{
11926 struct netlink_notify *notify = _notify;
11927 struct cfg80211_registered_device *rdev;
11928 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011929 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011930
11931 if (state != NETLINK_URELEASE)
11932 return NOTIFY_DONE;
11933
11934 rcu_read_lock();
11935
Johannes Berg5e7602302011-11-04 11:18:17 +010011936 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg78f22b62014-03-24 17:57:27 +010011937 bool schedule_destroy_work = false;
11938
11939 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +000011940 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011941
Johannes Berg78f22b62014-03-24 17:57:27 +010011942 if (wdev->owner_nlportid == notify->portid)
11943 schedule_destroy_work = true;
11944 }
11945
Ben Greear37c73b52012-10-26 14:49:25 -070011946 spin_lock_bh(&rdev->beacon_registrations_lock);
11947 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11948 list) {
11949 if (reg->nlportid == notify->portid) {
11950 list_del(&reg->list);
11951 kfree(reg);
11952 break;
11953 }
11954 }
11955 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg78f22b62014-03-24 17:57:27 +010011956
11957 if (schedule_destroy_work) {
11958 struct cfg80211_iface_destroy *destroy;
11959
11960 destroy = kzalloc(sizeof(*destroy), GFP_ATOMIC);
11961 if (destroy) {
11962 destroy->nlportid = notify->portid;
11963 spin_lock(&rdev->destroy_list_lock);
11964 list_add(&destroy->list, &rdev->destroy_list);
11965 spin_unlock(&rdev->destroy_list_lock);
11966 schedule_work(&rdev->destroy_work);
11967 }
11968 }
Johannes Berg5e7602302011-11-04 11:18:17 +010011969 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011970
11971 rcu_read_unlock();
11972
Zhao, Gang6784c7d2014-04-21 12:53:04 +080011973 return NOTIFY_OK;
Jouni Malinen026331c2010-02-15 12:53:10 +020011974}
11975
11976static struct notifier_block nl80211_netlink_notifier = {
11977 .notifier_call = nl80211_netlink_notify,
11978};
11979
Jouni Malinen355199e2013-02-27 17:14:27 +020011980void cfg80211_ft_event(struct net_device *netdev,
11981 struct cfg80211_ft_event_params *ft_event)
11982{
11983 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011984 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jouni Malinen355199e2013-02-27 17:14:27 +020011985 struct sk_buff *msg;
11986 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020011987
11988 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
11989
11990 if (!ft_event->target_ap)
11991 return;
11992
11993 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11994 if (!msg)
11995 return;
11996
11997 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
Johannes Bergae917c92013-10-25 11:05:22 +020011998 if (!hdr)
11999 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020012000
Johannes Bergae917c92013-10-25 11:05:22 +020012001 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12002 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12003 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap))
12004 goto out;
12005
12006 if (ft_event->ies &&
12007 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies))
12008 goto out;
12009 if (ft_event->ric_ies &&
12010 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
12011 ft_event->ric_ies))
12012 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020012013
Johannes Berg9c90a9f2013-06-04 12:46:03 +020012014 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020012015
Johannes Berg68eb5502013-11-19 15:19:38 +010012016 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012017 NL80211_MCGRP_MLME, GFP_KERNEL);
Johannes Bergae917c92013-10-25 11:05:22 +020012018 return;
12019 out:
12020 nlmsg_free(msg);
Jouni Malinen355199e2013-02-27 17:14:27 +020012021}
12022EXPORT_SYMBOL(cfg80211_ft_event);
12023
Arend van Spriel5de17982013-04-18 15:49:00 +020012024void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
12025{
12026 struct cfg80211_registered_device *rdev;
12027 struct sk_buff *msg;
12028 void *hdr;
12029 u32 nlportid;
12030
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012031 rdev = wiphy_to_rdev(wdev->wiphy);
Arend van Spriel5de17982013-04-18 15:49:00 +020012032 if (!rdev->crit_proto_nlportid)
12033 return;
12034
12035 nlportid = rdev->crit_proto_nlportid;
12036 rdev->crit_proto_nlportid = 0;
12037
12038 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12039 if (!msg)
12040 return;
12041
12042 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
12043 if (!hdr)
12044 goto nla_put_failure;
12045
12046 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12047 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
12048 goto nla_put_failure;
12049
12050 genlmsg_end(msg, hdr);
12051
12052 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
12053 return;
12054
12055 nla_put_failure:
12056 if (hdr)
12057 genlmsg_cancel(msg, hdr);
12058 nlmsg_free(msg);
12059
12060}
12061EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
12062
Johannes Berg348baf02014-01-24 14:06:29 +010012063void nl80211_send_ap_stopped(struct wireless_dev *wdev)
12064{
12065 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012066 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg348baf02014-01-24 14:06:29 +010012067 struct sk_buff *msg;
12068 void *hdr;
12069
12070 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
12071 if (!msg)
12072 return;
12073
12074 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_STOP_AP);
12075 if (!hdr)
12076 goto out;
12077
12078 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12079 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex) ||
12080 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
12081 goto out;
12082
12083 genlmsg_end(msg, hdr);
12084
12085 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(wiphy), msg, 0,
12086 NL80211_MCGRP_MLME, GFP_KERNEL);
12087 return;
12088 out:
12089 nlmsg_free(msg);
12090}
12091
Johannes Berg55682962007-09-20 13:09:35 -040012092/* initialisation/exit functions */
12093
12094int nl80211_init(void)
12095{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000012096 int err;
Johannes Berg55682962007-09-20 13:09:35 -040012097
Johannes Berg2a94fe42013-11-19 15:19:39 +010012098 err = genl_register_family_with_ops_groups(&nl80211_fam, nl80211_ops,
12099 nl80211_mcgrps);
Johannes Berg55682962007-09-20 13:09:35 -040012100 if (err)
12101 return err;
12102
Jouni Malinen026331c2010-02-15 12:53:10 +020012103 err = netlink_register_notifier(&nl80211_netlink_notifier);
12104 if (err)
12105 goto err_out;
12106
Johannes Berg55682962007-09-20 13:09:35 -040012107 return 0;
12108 err_out:
12109 genl_unregister_family(&nl80211_fam);
12110 return err;
12111}
12112
12113void nl80211_exit(void)
12114{
Jouni Malinen026331c2010-02-15 12:53:10 +020012115 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040012116 genl_unregister_family(&nl80211_fam);
12117}