blob: 5839c85075f15407e86d84526cfb29087c70aa81 [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;
Luciano Coelho252e07c2014-10-08 09:48:34 +03005930 u32 cs_count;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005931
5932 if (!rdev->ops->channel_switch ||
5933 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH))
5934 return -EOPNOTSUPP;
5935
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005936 switch (dev->ieee80211_ptr->iftype) {
5937 case NL80211_IFTYPE_AP:
5938 case NL80211_IFTYPE_P2P_GO:
5939 need_new_beacon = true;
5940
5941 /* useless if AP is not running */
5942 if (!wdev->beacon_interval)
Johannes Berg1ff79df2014-01-22 10:05:27 +01005943 return -ENOTCONN;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005944 break;
5945 case NL80211_IFTYPE_ADHOC:
Johannes Berg1ff79df2014-01-22 10:05:27 +01005946 if (!wdev->ssid_len)
5947 return -ENOTCONN;
5948 break;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07005949 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg1ff79df2014-01-22 10:05:27 +01005950 if (!wdev->mesh_id_len)
5951 return -ENOTCONN;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005952 break;
5953 default:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005954 return -EOPNOTSUPP;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005955 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005956
5957 memset(&params, 0, sizeof(params));
5958
5959 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
5960 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
5961 return -EINVAL;
5962
5963 /* only important for AP, IBSS and mesh create IEs internally */
Andrei Otcheretianskid0a361a2013-10-17 10:52:17 +02005964 if (need_new_beacon && !info->attrs[NL80211_ATTR_CSA_IES])
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005965 return -EINVAL;
5966
Luciano Coelho252e07c2014-10-08 09:48:34 +03005967 /* Even though the attribute is u32, the specification says
5968 * u8, so let's make sure we don't overflow.
5969 */
5970 cs_count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5971 if (cs_count > 255)
5972 return -EINVAL;
5973
5974 params.count = cs_count;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005975
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005976 if (!need_new_beacon)
5977 goto skip_beacons;
5978
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005979 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5980 if (err)
5981 return err;
5982
5983 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5984 info->attrs[NL80211_ATTR_CSA_IES],
5985 nl80211_policy);
5986 if (err)
5987 return err;
5988
5989 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5990 if (err)
5991 return err;
5992
5993 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5994 return -EINVAL;
5995
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03005996 len = nla_len(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5997 if (!len || (len % sizeof(u16)))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005998 return -EINVAL;
5999
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006000 params.n_counter_offsets_beacon = len / sizeof(u16);
6001 if (rdev->wiphy.max_num_csa_counters &&
6002 (params.n_counter_offsets_beacon >
6003 rdev->wiphy.max_num_csa_counters))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006004 return -EINVAL;
6005
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006006 params.counter_offsets_beacon =
6007 nla_data(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
6008
6009 /* sanity checks - counters should fit and be the same */
6010 for (i = 0; i < params.n_counter_offsets_beacon; i++) {
6011 u16 offset = params.counter_offsets_beacon[i];
6012
6013 if (offset >= params.beacon_csa.tail_len)
6014 return -EINVAL;
6015
6016 if (params.beacon_csa.tail[offset] != params.count)
6017 return -EINVAL;
6018 }
6019
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006020 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006021 len = nla_len(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
6022 if (!len || (len % sizeof(u16)))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006023 return -EINVAL;
6024
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006025 params.n_counter_offsets_presp = len / sizeof(u16);
6026 if (rdev->wiphy.max_num_csa_counters &&
6027 (params.n_counter_offsets_beacon >
6028 rdev->wiphy.max_num_csa_counters))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006029 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03006030
6031 params.counter_offsets_presp =
6032 nla_data(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
6033
6034 /* sanity checks - counters should fit and be the same */
6035 for (i = 0; i < params.n_counter_offsets_presp; i++) {
6036 u16 offset = params.counter_offsets_presp[i];
6037
6038 if (offset >= params.beacon_csa.probe_resp_len)
6039 return -EINVAL;
6040
6041 if (params.beacon_csa.probe_resp[offset] !=
6042 params.count)
6043 return -EINVAL;
6044 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006045 }
6046
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02006047skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006048 err = nl80211_parse_chandef(rdev, info, &params.chandef);
6049 if (err)
6050 return err;
6051
Ilan Peer174e0cd2014-02-23 09:13:01 +02006052 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef,
6053 wdev->iftype))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006054 return -EINVAL;
6055
Luciano Coelho2beb6dab2014-02-18 11:40:36 +02006056 err = cfg80211_chandef_dfs_required(wdev->wiphy,
6057 &params.chandef,
6058 wdev->iftype);
6059 if (err < 0)
6060 return err;
6061
6062 if (err > 0) {
6063 radar_detect_width = BIT(params.chandef.width);
6064 params.radar_required = true;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006065 }
6066
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006067 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
6068 params.block_tx = true;
6069
Simon Wunderlichc56589e2013-11-21 18:19:49 +01006070 wdev_lock(wdev);
6071 err = rdev_channel_switch(rdev, dev, &params);
6072 wdev_unlock(wdev);
6073
6074 return err;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02006075}
6076
Johannes Berg9720bb32011-06-21 09:45:33 +02006077static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
6078 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01006079 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02006080 struct wireless_dev *wdev,
6081 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01006082{
Johannes Berg48ab9052009-07-10 18:42:31 +02006083 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01006084 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01006085 void *hdr;
6086 struct nlattr *bss;
Johannes Berg48ab9052009-07-10 18:42:31 +02006087
6088 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01006089
Eric W. Biederman15e47302012-09-07 20:12:54 +00006090 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01006091 NL80211_CMD_NEW_SCAN_RESULTS);
6092 if (!hdr)
6093 return -1;
6094
Johannes Berg9720bb32011-06-21 09:45:33 +02006095 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
6096
Johannes Berg97990a02013-04-19 01:02:55 +02006097 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
6098 goto nla_put_failure;
6099 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04006100 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
6101 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02006102 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
6103 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006104
6105 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
6106 if (!bss)
6107 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04006108 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01006109 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04006110 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01006111
6112 rcu_read_lock();
Johannes Berg0e227082014-08-12 20:34:30 +02006113 /* indicate whether we have probe response data or not */
6114 if (rcu_access_pointer(res->proberesp_ies) &&
6115 nla_put_flag(msg, NL80211_BSS_PRESP_DATA))
6116 goto fail_unlock_rcu;
6117
6118 /* this pointer prefers to be pointed to probe response data
6119 * but is always valid
6120 */
Johannes Berg9caf0362012-11-29 01:25:20 +01006121 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01006122 if (ies) {
6123 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
6124 goto fail_unlock_rcu;
Johannes Berg8cef2c92013-02-05 16:54:31 +01006125 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
6126 ies->len, ies->data))
6127 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01006128 }
Johannes Berg0e227082014-08-12 20:34:30 +02006129
6130 /* and this pointer is always (unless driver didn't know) beacon data */
Johannes Berg9caf0362012-11-29 01:25:20 +01006131 ies = rcu_dereference(res->beacon_ies);
Johannes Berg0e227082014-08-12 20:34:30 +02006132 if (ies && ies->from_beacon) {
6133 if (nla_put_u64(msg, NL80211_BSS_BEACON_TSF, ies->tsf))
Johannes Berg8cef2c92013-02-05 16:54:31 +01006134 goto fail_unlock_rcu;
6135 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
6136 ies->len, ies->data))
6137 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01006138 }
6139 rcu_read_unlock();
6140
David S. Miller9360ffd2012-03-29 04:41:26 -04006141 if (res->beacon_interval &&
6142 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
6143 goto nla_put_failure;
6144 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
6145 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02006146 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04006147 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
6148 jiffies_to_msecs(jiffies - intbss->ts)))
6149 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006150
Johannes Berg77965c92009-02-18 18:45:06 +01006151 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01006152 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04006153 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
6154 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006155 break;
6156 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04006157 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
6158 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01006159 break;
6160 default:
6161 break;
6162 }
6163
Johannes Berg48ab9052009-07-10 18:42:31 +02006164 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02006165 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02006166 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04006167 if (intbss == wdev->current_bss &&
6168 nla_put_u32(msg, NL80211_BSS_STATUS,
6169 NL80211_BSS_STATUS_ASSOCIATED))
6170 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02006171 break;
6172 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04006173 if (intbss == wdev->current_bss &&
6174 nla_put_u32(msg, NL80211_BSS_STATUS,
6175 NL80211_BSS_STATUS_IBSS_JOINED))
6176 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02006177 break;
6178 default:
6179 break;
6180 }
6181
Johannes Berg2a519312009-02-10 21:25:55 +01006182 nla_nest_end(msg, bss);
6183
6184 return genlmsg_end(msg, hdr);
6185
Johannes Berg8cef2c92013-02-05 16:54:31 +01006186 fail_unlock_rcu:
6187 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01006188 nla_put_failure:
6189 genlmsg_cancel(msg, hdr);
6190 return -EMSGSIZE;
6191}
6192
Johannes Berg97990a02013-04-19 01:02:55 +02006193static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01006194{
Johannes Berg48ab9052009-07-10 18:42:31 +02006195 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01006196 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02006197 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02006198 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01006199 int err;
6200
Johannes Berg97990a02013-04-19 01:02:55 +02006201 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006202 if (err)
6203 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01006204
Johannes Berg48ab9052009-07-10 18:42:31 +02006205 wdev_lock(wdev);
6206 spin_lock_bh(&rdev->bss_lock);
6207 cfg80211_bss_expire(rdev);
6208
Johannes Berg9720bb32011-06-21 09:45:33 +02006209 cb->seq = rdev->bss_generation;
6210
Johannes Berg48ab9052009-07-10 18:42:31 +02006211 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01006212 if (++idx <= start)
6213 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02006214 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01006215 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02006216 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01006217 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02006218 break;
Johannes Berg2a519312009-02-10 21:25:55 +01006219 }
6220 }
6221
Johannes Berg48ab9052009-07-10 18:42:31 +02006222 spin_unlock_bh(&rdev->bss_lock);
6223 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01006224
Johannes Berg97990a02013-04-19 01:02:55 +02006225 cb->args[2] = idx;
6226 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01006227
Johannes Berg67748892010-10-04 21:14:06 +02006228 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01006229}
6230
Eric W. Biederman15e47302012-09-07 20:12:54 +00006231static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01006232 int flags, struct net_device *dev,
6233 struct survey_info *survey)
6234{
6235 void *hdr;
6236 struct nlattr *infoattr;
6237
Eric W. Biederman15e47302012-09-07 20:12:54 +00006238 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01006239 NL80211_CMD_NEW_SURVEY_RESULTS);
6240 if (!hdr)
6241 return -ENOMEM;
6242
David S. Miller9360ffd2012-03-29 04:41:26 -04006243 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
6244 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01006245
6246 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
6247 if (!infoattr)
6248 goto nla_put_failure;
6249
David S. Miller9360ffd2012-03-29 04:41:26 -04006250 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
6251 survey->channel->center_freq))
6252 goto nla_put_failure;
6253
6254 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
6255 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
6256 goto nla_put_failure;
6257 if ((survey->filled & SURVEY_INFO_IN_USE) &&
6258 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
6259 goto nla_put_failure;
6260 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
6261 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
6262 survey->channel_time))
6263 goto nla_put_failure;
6264 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
6265 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
6266 survey->channel_time_busy))
6267 goto nla_put_failure;
6268 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
6269 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
6270 survey->channel_time_ext_busy))
6271 goto nla_put_failure;
6272 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
6273 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
6274 survey->channel_time_rx))
6275 goto nla_put_failure;
6276 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
6277 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
6278 survey->channel_time_tx))
6279 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01006280
6281 nla_nest_end(msg, infoattr);
6282
6283 return genlmsg_end(msg, hdr);
6284
6285 nla_put_failure:
6286 genlmsg_cancel(msg, hdr);
6287 return -EMSGSIZE;
6288}
6289
6290static int nl80211_dump_survey(struct sk_buff *skb,
6291 struct netlink_callback *cb)
6292{
6293 struct survey_info survey;
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006294 struct cfg80211_registered_device *rdev;
Johannes Berg97990a02013-04-19 01:02:55 +02006295 struct wireless_dev *wdev;
6296 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01006297 int res;
6298
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006299 res = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006300 if (res)
6301 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01006302
Johannes Berg97990a02013-04-19 01:02:55 +02006303 if (!wdev->netdev) {
6304 res = -EINVAL;
6305 goto out_err;
6306 }
6307
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006308 if (!rdev->ops->dump_survey) {
Holger Schurig61fa7132009-11-11 12:25:40 +01006309 res = -EOPNOTSUPP;
6310 goto out_err;
6311 }
6312
6313 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006314 struct ieee80211_channel *chan;
6315
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006316 res = rdev_dump_survey(rdev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01006317 if (res == -ENOENT)
6318 break;
6319 if (res)
6320 goto out_err;
6321
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006322 /* Survey without a channel doesn't make sense */
6323 if (!survey.channel) {
6324 res = -EINVAL;
6325 goto out;
6326 }
6327
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006328 chan = ieee80211_get_channel(&rdev->wiphy,
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006329 survey.channel->center_freq);
6330 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
6331 survey_idx++;
6332 continue;
6333 }
6334
Holger Schurig61fa7132009-11-11 12:25:40 +01006335 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006336 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01006337 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02006338 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01006339 goto out;
6340 survey_idx++;
6341 }
6342
6343 out:
Johannes Berg97990a02013-04-19 01:02:55 +02006344 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01006345 res = skb->len;
6346 out_err:
Zhao, Gang1b8ec872014-04-21 12:53:02 +08006347 nl80211_finish_wdev_dump(rdev);
Holger Schurig61fa7132009-11-11 12:25:40 +01006348 return res;
6349}
6350
Samuel Ortizb23aa672009-07-01 21:26:54 +02006351static bool nl80211_valid_wpa_versions(u32 wpa_versions)
6352{
6353 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
6354 NL80211_WPA_VERSION_2));
6355}
6356
Jouni Malinen636a5d32009-03-19 13:39:22 +02006357static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6358{
Johannes Berg4c476992010-10-04 21:36:35 +02006359 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6360 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006361 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006362 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6363 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006364 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006365 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006366 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006367
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006368 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6369 return -EINVAL;
6370
6371 if (!info->attrs[NL80211_ATTR_MAC])
6372 return -EINVAL;
6373
Jouni Malinen17780922009-03-27 20:52:47 +02006374 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6375 return -EINVAL;
6376
Johannes Berg19957bb2009-07-02 17:20:43 +02006377 if (!info->attrs[NL80211_ATTR_SSID])
6378 return -EINVAL;
6379
6380 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6381 return -EINVAL;
6382
Johannes Bergfffd0932009-07-08 14:22:54 +02006383 err = nl80211_parse_key(info, &key);
6384 if (err)
6385 return err;
6386
6387 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006388 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6389 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006390 if (!key.p.key || !key.p.key_len)
6391 return -EINVAL;
6392 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6393 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6394 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6395 key.p.key_len != WLAN_KEY_LEN_WEP104))
6396 return -EINVAL;
6397 if (key.idx > 4)
6398 return -EINVAL;
6399 } else {
6400 key.p.key_len = 0;
6401 key.p.key = NULL;
6402 }
6403
Johannes Bergafea0b72010-08-10 09:46:42 +02006404 if (key.idx >= 0) {
6405 int i;
6406 bool ok = false;
6407 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6408 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6409 ok = true;
6410 break;
6411 }
6412 }
Johannes Berg4c476992010-10-04 21:36:35 +02006413 if (!ok)
6414 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006415 }
6416
Johannes Berg4c476992010-10-04 21:36:35 +02006417 if (!rdev->ops->auth)
6418 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006419
Johannes Berg074ac8d2010-09-16 14:58:22 +02006420 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006421 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6422 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006423
Johannes Berg19957bb2009-07-02 17:20:43 +02006424 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen664834d2014-01-15 00:01:44 +02006425 chan = nl80211_get_valid_chan(&rdev->wiphy,
6426 info->attrs[NL80211_ATTR_WIPHY_FREQ]);
6427 if (!chan)
Johannes Berg4c476992010-10-04 21:36:35 +02006428 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006429
Johannes Berg19957bb2009-07-02 17:20:43 +02006430 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6431 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6432
6433 if (info->attrs[NL80211_ATTR_IE]) {
6434 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6435 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6436 }
6437
6438 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006439 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006440 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006441
Jouni Malinene39e5b52012-09-30 19:29:39 +03006442 if (auth_type == NL80211_AUTHTYPE_SAE &&
6443 !info->attrs[NL80211_ATTR_SAE_DATA])
6444 return -EINVAL;
6445
6446 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6447 if (auth_type != NL80211_AUTHTYPE_SAE)
6448 return -EINVAL;
6449 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6450 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6451 /* need to include at least Auth Transaction and Status Code */
6452 if (sae_data_len < 4)
6453 return -EINVAL;
6454 }
6455
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006456 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6457
Johannes Berg95de8172012-01-20 13:55:25 +01006458 /*
6459 * Since we no longer track auth state, ignore
6460 * requests to only change local state.
6461 */
6462 if (local_state_change)
6463 return 0;
6464
Johannes Berg91bf9b22013-05-15 17:44:01 +02006465 wdev_lock(dev->ieee80211_ptr);
6466 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6467 ssid, ssid_len, ie, ie_len,
6468 key.p.key, key.p.key_len, key.idx,
6469 sae_data, sae_data_len);
6470 wdev_unlock(dev->ieee80211_ptr);
6471 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006472}
6473
Johannes Bergc0692b82010-08-27 14:26:53 +03006474static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6475 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006476 struct cfg80211_crypto_settings *settings,
6477 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006478{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006479 memset(settings, 0, sizeof(*settings));
6480
Samuel Ortizb23aa672009-07-01 21:26:54 +02006481 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6482
Johannes Bergc0692b82010-08-27 14:26:53 +03006483 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6484 u16 proto;
6485 proto = nla_get_u16(
6486 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6487 settings->control_port_ethertype = cpu_to_be16(proto);
6488 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6489 proto != ETH_P_PAE)
6490 return -EINVAL;
6491 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6492 settings->control_port_no_encrypt = true;
6493 } else
6494 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6495
Samuel Ortizb23aa672009-07-01 21:26:54 +02006496 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6497 void *data;
6498 int len, i;
6499
6500 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6501 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6502 settings->n_ciphers_pairwise = len / sizeof(u32);
6503
6504 if (len % sizeof(u32))
6505 return -EINVAL;
6506
Johannes Berg3dc27d22009-07-02 21:36:37 +02006507 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006508 return -EINVAL;
6509
6510 memcpy(settings->ciphers_pairwise, data, len);
6511
6512 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006513 if (!cfg80211_supported_cipher_suite(
6514 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006515 settings->ciphers_pairwise[i]))
6516 return -EINVAL;
6517 }
6518
6519 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6520 settings->cipher_group =
6521 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006522 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6523 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006524 return -EINVAL;
6525 }
6526
6527 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6528 settings->wpa_versions =
6529 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6530 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6531 return -EINVAL;
6532 }
6533
6534 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6535 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006536 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006537
6538 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6539 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6540 settings->n_akm_suites = len / sizeof(u32);
6541
6542 if (len % sizeof(u32))
6543 return -EINVAL;
6544
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006545 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6546 return -EINVAL;
6547
Samuel Ortizb23aa672009-07-01 21:26:54 +02006548 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006549 }
6550
6551 return 0;
6552}
6553
Jouni Malinen636a5d32009-03-19 13:39:22 +02006554static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6555{
Johannes Berg4c476992010-10-04 21:36:35 +02006556 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6557 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006558 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006559 struct cfg80211_assoc_request req = {};
6560 const u8 *bssid, *ssid;
6561 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006562
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006563 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6564 return -EINVAL;
6565
6566 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006567 !info->attrs[NL80211_ATTR_SSID] ||
6568 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006569 return -EINVAL;
6570
Johannes Berg4c476992010-10-04 21:36:35 +02006571 if (!rdev->ops->assoc)
6572 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006573
Johannes Berg074ac8d2010-09-16 14:58:22 +02006574 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006575 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6576 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006577
Johannes Berg19957bb2009-07-02 17:20:43 +02006578 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006579
Jouni Malinen664834d2014-01-15 00:01:44 +02006580 chan = nl80211_get_valid_chan(&rdev->wiphy,
6581 info->attrs[NL80211_ATTR_WIPHY_FREQ]);
6582 if (!chan)
Johannes Berg4c476992010-10-04 21:36:35 +02006583 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006584
Johannes Berg19957bb2009-07-02 17:20:43 +02006585 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6586 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006587
6588 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006589 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6590 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006591 }
6592
Jouni Malinendc6382c2009-05-06 22:09:37 +03006593 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006594 enum nl80211_mfp mfp =
Jouni Malinendc6382c2009-05-06 22:09:37 +03006595 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006596 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006597 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006598 else if (mfp != NL80211_MFP_NO)
6599 return -EINVAL;
Jouni Malinendc6382c2009-05-06 22:09:37 +03006600 }
6601
Johannes Berg3e5d7642009-07-07 14:37:26 +02006602 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006603 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006604
Ben Greear7e7c8922011-11-18 11:31:59 -08006605 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006606 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006607
6608 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006609 memcpy(&req.ht_capa_mask,
6610 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6611 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006612
6613 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006614 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006615 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006616 memcpy(&req.ht_capa,
6617 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6618 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006619 }
6620
Johannes Bergee2aca32013-02-21 17:36:01 +01006621 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006622 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006623
6624 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006625 memcpy(&req.vht_capa_mask,
6626 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6627 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006628
6629 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006630 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006631 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006632 memcpy(&req.vht_capa,
6633 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6634 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006635 }
6636
Assaf Kraussbab5ab72014-09-03 15:25:01 +03006637 if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
6638 if (!(rdev->wiphy.features &
6639 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) ||
6640 !(rdev->wiphy.features & NL80211_FEATURE_QUIET))
6641 return -EINVAL;
6642 req.flags |= ASSOC_REQ_USE_RRM;
6643 }
6644
Johannes Bergf62fab72013-02-21 20:09:09 +01006645 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006646 if (!err) {
6647 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006648 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6649 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006650 wdev_unlock(dev->ieee80211_ptr);
6651 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006652
Jouni Malinen636a5d32009-03-19 13:39:22 +02006653 return err;
6654}
6655
6656static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6657{
Johannes Berg4c476992010-10-04 21:36:35 +02006658 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6659 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006660 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006661 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006662 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006663 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006664
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006665 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6666 return -EINVAL;
6667
6668 if (!info->attrs[NL80211_ATTR_MAC])
6669 return -EINVAL;
6670
6671 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6672 return -EINVAL;
6673
Johannes Berg4c476992010-10-04 21:36:35 +02006674 if (!rdev->ops->deauth)
6675 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006676
Johannes Berg074ac8d2010-09-16 14:58:22 +02006677 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006678 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6679 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006680
Johannes Berg19957bb2009-07-02 17:20:43 +02006681 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006682
Johannes Berg19957bb2009-07-02 17:20:43 +02006683 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6684 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006685 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006686 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006687 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006688
6689 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006690 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6691 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006692 }
6693
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006694 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6695
Johannes Berg91bf9b22013-05-15 17:44:01 +02006696 wdev_lock(dev->ieee80211_ptr);
6697 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6698 local_state_change);
6699 wdev_unlock(dev->ieee80211_ptr);
6700 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006701}
6702
6703static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6704{
Johannes Berg4c476992010-10-04 21:36:35 +02006705 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6706 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006707 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006708 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006709 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006710 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006711
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006712 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6713 return -EINVAL;
6714
6715 if (!info->attrs[NL80211_ATTR_MAC])
6716 return -EINVAL;
6717
6718 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6719 return -EINVAL;
6720
Johannes Berg4c476992010-10-04 21:36:35 +02006721 if (!rdev->ops->disassoc)
6722 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006723
Johannes Berg074ac8d2010-09-16 14:58:22 +02006724 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006725 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6726 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006727
Johannes Berg19957bb2009-07-02 17:20:43 +02006728 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006729
Johannes Berg19957bb2009-07-02 17:20:43 +02006730 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6731 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006732 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006733 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006734 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006735
6736 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006737 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6738 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006739 }
6740
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006741 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6742
Johannes Berg91bf9b22013-05-15 17:44:01 +02006743 wdev_lock(dev->ieee80211_ptr);
6744 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6745 local_state_change);
6746 wdev_unlock(dev->ieee80211_ptr);
6747 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006748}
6749
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006750static bool
6751nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6752 int mcast_rate[IEEE80211_NUM_BANDS],
6753 int rateval)
6754{
6755 struct wiphy *wiphy = &rdev->wiphy;
6756 bool found = false;
6757 int band, i;
6758
6759 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6760 struct ieee80211_supported_band *sband;
6761
6762 sband = wiphy->bands[band];
6763 if (!sband)
6764 continue;
6765
6766 for (i = 0; i < sband->n_bitrates; i++) {
6767 if (sband->bitrates[i].bitrate == rateval) {
6768 mcast_rate[band] = i + 1;
6769 found = true;
6770 break;
6771 }
6772 }
6773 }
6774
6775 return found;
6776}
6777
Johannes Berg04a773a2009-04-19 21:24:32 +02006778static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6779{
Johannes Berg4c476992010-10-04 21:36:35 +02006780 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6781 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006782 struct cfg80211_ibss_params ibss;
6783 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006784 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006785 int err;
6786
Johannes Berg8e30bc52009-04-22 17:45:38 +02006787 memset(&ibss, 0, sizeof(ibss));
6788
Johannes Berg04a773a2009-04-19 21:24:32 +02006789 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6790 return -EINVAL;
6791
Johannes Berg683b6d32012-11-08 21:25:48 +01006792 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006793 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6794 return -EINVAL;
6795
Johannes Berg8e30bc52009-04-22 17:45:38 +02006796 ibss.beacon_interval = 100;
6797
6798 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6799 ibss.beacon_interval =
6800 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6801 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6802 return -EINVAL;
6803 }
6804
Johannes Berg4c476992010-10-04 21:36:35 +02006805 if (!rdev->ops->join_ibss)
6806 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006807
Johannes Berg4c476992010-10-04 21:36:35 +02006808 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6809 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006810
Johannes Berg79c97e92009-07-07 03:56:12 +02006811 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006812
Johannes Berg39193492011-09-16 13:45:25 +02006813 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006814 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006815
6816 if (!is_valid_ether_addr(ibss.bssid))
6817 return -EINVAL;
6818 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006819 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6820 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6821
6822 if (info->attrs[NL80211_ATTR_IE]) {
6823 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6824 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6825 }
6826
Johannes Berg683b6d32012-11-08 21:25:48 +01006827 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6828 if (err)
6829 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006830
Ilan Peer174e0cd2014-02-23 09:13:01 +02006831 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef,
6832 NL80211_IFTYPE_ADHOC))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006833 return -EINVAL;
6834
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006835 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006836 case NL80211_CHAN_WIDTH_5:
6837 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006838 case NL80211_CHAN_WIDTH_20_NOHT:
6839 break;
6840 case NL80211_CHAN_WIDTH_20:
6841 case NL80211_CHAN_WIDTH_40:
6842 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6843 break;
6844 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006845 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006846 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006847
Johannes Berg04a773a2009-04-19 21:24:32 +02006848 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006849 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006850
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006851 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6852 u8 *rates =
6853 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6854 int n_rates =
6855 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6856 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006857 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006858
Johannes Berg34850ab2011-07-18 18:08:35 +02006859 err = ieee80211_get_ratemask(sband, rates, n_rates,
6860 &ibss.basic_rates);
6861 if (err)
6862 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006863 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006864
Simon Wunderlich803768f2013-06-28 10:39:58 +02006865 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6866 memcpy(&ibss.ht_capa_mask,
6867 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6868 sizeof(ibss.ht_capa_mask));
6869
6870 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6871 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6872 return -EINVAL;
6873 memcpy(&ibss.ht_capa,
6874 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6875 sizeof(ibss.ht_capa));
6876 }
6877
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006878 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6879 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6880 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6881 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006882
Johannes Berg4c476992010-10-04 21:36:35 +02006883 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306884 bool no_ht = false;
6885
Johannes Berg4c476992010-10-04 21:36:35 +02006886 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306887 info->attrs[NL80211_ATTR_KEYS],
6888 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006889 if (IS_ERR(connkeys))
6890 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306891
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006892 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6893 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306894 kfree(connkeys);
6895 return -EINVAL;
6896 }
Johannes Berg4c476992010-10-04 21:36:35 +02006897 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006898
Antonio Quartulli267335d2012-01-31 20:25:47 +01006899 ibss.control_port =
6900 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6901
Simon Wunderlich5336fa82013-10-07 18:41:05 +02006902 ibss.userspace_handles_dfs =
6903 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
6904
Johannes Berg4c476992010-10-04 21:36:35 +02006905 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006906 if (err)
Johannes Bergb47f6102014-09-10 13:39:54 +03006907 kzfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006908 return err;
6909}
6910
6911static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6912{
Johannes Berg4c476992010-10-04 21:36:35 +02006913 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6914 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006915
Johannes Berg4c476992010-10-04 21:36:35 +02006916 if (!rdev->ops->leave_ibss)
6917 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006918
Johannes Berg4c476992010-10-04 21:36:35 +02006919 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6920 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006921
Johannes Berg4c476992010-10-04 21:36:35 +02006922 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006923}
6924
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006925static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6926{
6927 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6928 struct net_device *dev = info->user_ptr[1];
6929 int mcast_rate[IEEE80211_NUM_BANDS];
6930 u32 nla_rate;
6931 int err;
6932
6933 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6934 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6935 return -EOPNOTSUPP;
6936
6937 if (!rdev->ops->set_mcast_rate)
6938 return -EOPNOTSUPP;
6939
6940 memset(mcast_rate, 0, sizeof(mcast_rate));
6941
6942 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6943 return -EINVAL;
6944
6945 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6946 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6947 return -EINVAL;
6948
6949 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6950
6951 return err;
6952}
6953
Johannes Bergad7e7182013-11-13 13:37:47 +01006954static struct sk_buff *
6955__cfg80211_alloc_vendor_skb(struct cfg80211_registered_device *rdev,
6956 int approxlen, u32 portid, u32 seq,
6957 enum nl80211_commands cmd,
Johannes Berg567ffc32013-12-18 14:43:31 +01006958 enum nl80211_attrs attr,
6959 const struct nl80211_vendor_cmd_info *info,
6960 gfp_t gfp)
Johannes Bergad7e7182013-11-13 13:37:47 +01006961{
6962 struct sk_buff *skb;
6963 void *hdr;
6964 struct nlattr *data;
6965
6966 skb = nlmsg_new(approxlen + 100, gfp);
6967 if (!skb)
6968 return NULL;
6969
6970 hdr = nl80211hdr_put(skb, portid, seq, 0, cmd);
6971 if (!hdr) {
6972 kfree_skb(skb);
6973 return NULL;
6974 }
6975
6976 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6977 goto nla_put_failure;
Johannes Berg567ffc32013-12-18 14:43:31 +01006978
6979 if (info) {
6980 if (nla_put_u32(skb, NL80211_ATTR_VENDOR_ID,
6981 info->vendor_id))
6982 goto nla_put_failure;
6983 if (nla_put_u32(skb, NL80211_ATTR_VENDOR_SUBCMD,
6984 info->subcmd))
6985 goto nla_put_failure;
6986 }
6987
Johannes Bergad7e7182013-11-13 13:37:47 +01006988 data = nla_nest_start(skb, attr);
6989
6990 ((void **)skb->cb)[0] = rdev;
6991 ((void **)skb->cb)[1] = hdr;
6992 ((void **)skb->cb)[2] = data;
6993
6994 return skb;
6995
6996 nla_put_failure:
6997 kfree_skb(skb);
6998 return NULL;
6999}
Antonio Quartullif4e583c2012-11-02 13:27:48 +01007000
Johannes Berge03ad6e2014-01-01 17:22:30 +01007001struct sk_buff *__cfg80211_alloc_event_skb(struct wiphy *wiphy,
7002 enum nl80211_commands cmd,
7003 enum nl80211_attrs attr,
7004 int vendor_event_idx,
7005 int approxlen, gfp_t gfp)
7006{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08007007 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berge03ad6e2014-01-01 17:22:30 +01007008 const struct nl80211_vendor_cmd_info *info;
7009
7010 switch (cmd) {
7011 case NL80211_CMD_TESTMODE:
7012 if (WARN_ON(vendor_event_idx != -1))
7013 return NULL;
7014 info = NULL;
7015 break;
7016 case NL80211_CMD_VENDOR:
7017 if (WARN_ON(vendor_event_idx < 0 ||
7018 vendor_event_idx >= wiphy->n_vendor_events))
7019 return NULL;
7020 info = &wiphy->vendor_events[vendor_event_idx];
7021 break;
7022 default:
7023 WARN_ON(1);
7024 return NULL;
7025 }
7026
7027 return __cfg80211_alloc_vendor_skb(rdev, approxlen, 0, 0,
7028 cmd, attr, info, gfp);
7029}
7030EXPORT_SYMBOL(__cfg80211_alloc_event_skb);
7031
7032void __cfg80211_send_event_skb(struct sk_buff *skb, gfp_t gfp)
7033{
7034 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
7035 void *hdr = ((void **)skb->cb)[1];
7036 struct nlattr *data = ((void **)skb->cb)[2];
7037 enum nl80211_multicast_groups mcgrp = NL80211_MCGRP_TESTMODE;
7038
Johannes Bergbd8c78e2014-07-30 14:55:26 +02007039 /* clear CB data for netlink core to own from now on */
7040 memset(skb->cb, 0, sizeof(skb->cb));
7041
Johannes Berge03ad6e2014-01-01 17:22:30 +01007042 nla_nest_end(skb, data);
7043 genlmsg_end(skb, hdr);
7044
7045 if (data->nla_type == NL80211_ATTR_VENDOR_DATA)
7046 mcgrp = NL80211_MCGRP_VENDOR;
7047
7048 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), skb, 0,
7049 mcgrp, gfp);
7050}
7051EXPORT_SYMBOL(__cfg80211_send_event_skb);
7052
Johannes Bergaff89a92009-07-01 21:26:51 +02007053#ifdef CONFIG_NL80211_TESTMODE
Johannes Bergaff89a92009-07-01 21:26:51 +02007054static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
7055{
Johannes Berg4c476992010-10-04 21:36:35 +02007056 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03007057 struct wireless_dev *wdev =
7058 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02007059 int err;
7060
David Spinadelfc73f112013-07-31 18:04:15 +03007061 if (!rdev->ops->testmode_cmd)
7062 return -EOPNOTSUPP;
7063
7064 if (IS_ERR(wdev)) {
7065 err = PTR_ERR(wdev);
7066 if (err != -EINVAL)
7067 return err;
7068 wdev = NULL;
7069 } else if (wdev->wiphy != &rdev->wiphy) {
7070 return -EINVAL;
7071 }
7072
Johannes Bergaff89a92009-07-01 21:26:51 +02007073 if (!info->attrs[NL80211_ATTR_TESTDATA])
7074 return -EINVAL;
7075
Johannes Bergad7e7182013-11-13 13:37:47 +01007076 rdev->cur_cmd_info = info;
David Spinadelfc73f112013-07-31 18:04:15 +03007077 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02007078 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
7079 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
Johannes Bergad7e7182013-11-13 13:37:47 +01007080 rdev->cur_cmd_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02007081
Johannes Bergaff89a92009-07-01 21:26:51 +02007082 return err;
7083}
7084
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007085static int nl80211_testmode_dump(struct sk_buff *skb,
7086 struct netlink_callback *cb)
7087{
Johannes Berg00918d32011-12-13 17:22:05 +01007088 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007089 int err;
7090 long phy_idx;
7091 void *data = NULL;
7092 int data_len = 0;
7093
Johannes Berg5fe231e2013-05-08 21:45:15 +02007094 rtnl_lock();
7095
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007096 if (cb->args[0]) {
7097 /*
7098 * 0 is a valid index, but not valid for args[0],
7099 * so we need to offset by 1.
7100 */
7101 phy_idx = cb->args[0] - 1;
7102 } else {
7103 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
7104 nl80211_fam.attrbuf, nl80211_fam.maxattr,
7105 nl80211_policy);
7106 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02007107 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01007108
Johannes Berg2bd7e352012-06-15 14:23:16 +02007109 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
7110 nl80211_fam.attrbuf);
7111 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02007112 err = PTR_ERR(rdev);
7113 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01007114 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02007115 phy_idx = rdev->wiphy_idx;
7116 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02007117
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007118 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
7119 cb->args[1] =
7120 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
7121 }
7122
7123 if (cb->args[1]) {
7124 data = nla_data((void *)cb->args[1]);
7125 data_len = nla_len((void *)cb->args[1]);
7126 }
7127
Johannes Berg00918d32011-12-13 17:22:05 +01007128 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
7129 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02007130 err = -ENOENT;
7131 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007132 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007133
Johannes Berg00918d32011-12-13 17:22:05 +01007134 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007135 err = -EOPNOTSUPP;
7136 goto out_err;
7137 }
7138
7139 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00007140 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007141 cb->nlh->nlmsg_seq, NLM_F_MULTI,
7142 NL80211_CMD_TESTMODE);
7143 struct nlattr *tmdata;
7144
Dan Carpentercb35fba2013-08-14 14:50:01 +03007145 if (!hdr)
7146 break;
7147
David S. Miller9360ffd2012-03-29 04:41:26 -04007148 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007149 genlmsg_cancel(skb, hdr);
7150 break;
7151 }
7152
7153 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
7154 if (!tmdata) {
7155 genlmsg_cancel(skb, hdr);
7156 break;
7157 }
Hila Gonene35e4d22012-06-27 17:19:42 +03007158 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007159 nla_nest_end(skb, tmdata);
7160
7161 if (err == -ENOBUFS || err == -ENOENT) {
7162 genlmsg_cancel(skb, hdr);
7163 break;
7164 } else if (err) {
7165 genlmsg_cancel(skb, hdr);
7166 goto out_err;
7167 }
7168
7169 genlmsg_end(skb, hdr);
7170 }
7171
7172 err = skb->len;
7173 /* see above */
7174 cb->args[0] = phy_idx + 1;
7175 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02007176 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07007177 return err;
7178}
Johannes Bergaff89a92009-07-01 21:26:51 +02007179#endif
7180
Samuel Ortizb23aa672009-07-01 21:26:54 +02007181static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
7182{
Johannes Berg4c476992010-10-04 21:36:35 +02007183 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7184 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007185 struct cfg80211_connect_params connect;
7186 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02007187 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007188 int err;
7189
7190 memset(&connect, 0, sizeof(connect));
7191
7192 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
7193 return -EINVAL;
7194
7195 if (!info->attrs[NL80211_ATTR_SSID] ||
7196 !nla_len(info->attrs[NL80211_ATTR_SSID]))
7197 return -EINVAL;
7198
7199 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
7200 connect.auth_type =
7201 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03007202 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
7203 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02007204 return -EINVAL;
7205 } else
7206 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
7207
7208 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
7209
Johannes Bergc0692b82010-08-27 14:26:53 +03007210 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02007211 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007212 if (err)
7213 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007214
Johannes Berg074ac8d2010-09-16 14:58:22 +02007215 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007216 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7217 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007218
Johannes Berg79c97e92009-07-07 03:56:12 +02007219 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007220
Bala Shanmugam4486ea92012-03-07 17:27:12 +05307221 connect.bg_scan_period = -1;
7222 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
7223 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
7224 connect.bg_scan_period =
7225 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
7226 }
7227
Samuel Ortizb23aa672009-07-01 21:26:54 +02007228 if (info->attrs[NL80211_ATTR_MAC])
7229 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen1df4a512014-01-15 00:00:47 +02007230 else if (info->attrs[NL80211_ATTR_MAC_HINT])
7231 connect.bssid_hint =
7232 nla_data(info->attrs[NL80211_ATTR_MAC_HINT]);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007233 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
7234 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
7235
7236 if (info->attrs[NL80211_ATTR_IE]) {
7237 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
7238 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
7239 }
7240
Jouni Malinencee00a92013-01-15 17:15:57 +02007241 if (info->attrs[NL80211_ATTR_USE_MFP]) {
7242 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
7243 if (connect.mfp != NL80211_MFP_REQUIRED &&
7244 connect.mfp != NL80211_MFP_NO)
7245 return -EINVAL;
7246 } else {
7247 connect.mfp = NL80211_MFP_NO;
7248 }
7249
Samuel Ortizb23aa672009-07-01 21:26:54 +02007250 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Jouni Malinen664834d2014-01-15 00:01:44 +02007251 connect.channel = nl80211_get_valid_chan(
7252 wiphy, info->attrs[NL80211_ATTR_WIPHY_FREQ]);
7253 if (!connect.channel)
Johannes Berg4c476992010-10-04 21:36:35 +02007254 return -EINVAL;
Jouni Malinen1df4a512014-01-15 00:00:47 +02007255 } else if (info->attrs[NL80211_ATTR_WIPHY_FREQ_HINT]) {
Jouni Malinen664834d2014-01-15 00:01:44 +02007256 connect.channel_hint = nl80211_get_valid_chan(
7257 wiphy, info->attrs[NL80211_ATTR_WIPHY_FREQ_HINT]);
7258 if (!connect.channel_hint)
Jouni Malinen1df4a512014-01-15 00:00:47 +02007259 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007260 }
7261
Johannes Bergfffd0932009-07-08 14:22:54 +02007262 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
7263 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05307264 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02007265 if (IS_ERR(connkeys))
7266 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02007267 }
7268
Ben Greear7e7c8922011-11-18 11:31:59 -08007269 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
7270 connect.flags |= ASSOC_REQ_DISABLE_HT;
7271
7272 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
7273 memcpy(&connect.ht_capa_mask,
7274 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
7275 sizeof(connect.ht_capa_mask));
7276
7277 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08007278 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
Johannes Bergb47f6102014-09-10 13:39:54 +03007279 kzfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08007280 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08007281 }
Ben Greear7e7c8922011-11-18 11:31:59 -08007282 memcpy(&connect.ht_capa,
7283 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
7284 sizeof(connect.ht_capa));
7285 }
7286
Johannes Bergee2aca32013-02-21 17:36:01 +01007287 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
7288 connect.flags |= ASSOC_REQ_DISABLE_VHT;
7289
7290 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
7291 memcpy(&connect.vht_capa_mask,
7292 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
7293 sizeof(connect.vht_capa_mask));
7294
7295 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
7296 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
Johannes Bergb47f6102014-09-10 13:39:54 +03007297 kzfree(connkeys);
Johannes Bergee2aca32013-02-21 17:36:01 +01007298 return -EINVAL;
7299 }
7300 memcpy(&connect.vht_capa,
7301 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
7302 sizeof(connect.vht_capa));
7303 }
7304
Assaf Kraussbab5ab72014-09-03 15:25:01 +03007305 if (nla_get_flag(info->attrs[NL80211_ATTR_USE_RRM])) {
7306 if (!(rdev->wiphy.features &
7307 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES) ||
7308 !(rdev->wiphy.features & NL80211_FEATURE_QUIET))
7309 return -EINVAL;
7310 connect.flags |= ASSOC_REQ_USE_RRM;
7311 }
7312
Johannes Berg83739b02013-05-15 17:44:01 +02007313 wdev_lock(dev->ieee80211_ptr);
7314 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
7315 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02007316 if (err)
Johannes Bergb47f6102014-09-10 13:39:54 +03007317 kzfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007318 return err;
7319}
7320
7321static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
7322{
Johannes Berg4c476992010-10-04 21:36:35 +02007323 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7324 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007325 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02007326 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007327
7328 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7329 reason = WLAN_REASON_DEAUTH_LEAVING;
7330 else
7331 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7332
7333 if (reason == 0)
7334 return -EINVAL;
7335
Johannes Berg074ac8d2010-09-16 14:58:22 +02007336 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007337 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7338 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007339
Johannes Berg83739b02013-05-15 17:44:01 +02007340 wdev_lock(dev->ieee80211_ptr);
7341 ret = cfg80211_disconnect(rdev, dev, reason, true);
7342 wdev_unlock(dev->ieee80211_ptr);
7343 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007344}
7345
Johannes Berg463d0182009-07-14 00:33:35 +02007346static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
7347{
Johannes Berg4c476992010-10-04 21:36:35 +02007348 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02007349 struct net *net;
7350 int err;
7351 u32 pid;
7352
7353 if (!info->attrs[NL80211_ATTR_PID])
7354 return -EINVAL;
7355
7356 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
7357
Johannes Berg463d0182009-07-14 00:33:35 +02007358 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02007359 if (IS_ERR(net))
7360 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007361
7362 err = 0;
7363
7364 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02007365 if (!net_eq(wiphy_net(&rdev->wiphy), net))
7366 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02007367
Johannes Berg463d0182009-07-14 00:33:35 +02007368 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007369 return err;
7370}
7371
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007372static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
7373{
Johannes Berg4c476992010-10-04 21:36:35 +02007374 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007375 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
7376 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02007377 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007378 struct cfg80211_pmksa pmksa;
7379
7380 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
7381
7382 if (!info->attrs[NL80211_ATTR_MAC])
7383 return -EINVAL;
7384
7385 if (!info->attrs[NL80211_ATTR_PMKID])
7386 return -EINVAL;
7387
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007388 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7389 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7390
Johannes Berg074ac8d2010-09-16 14:58:22 +02007391 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007392 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7393 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007394
7395 switch (info->genlhdr->cmd) {
7396 case NL80211_CMD_SET_PMKSA:
7397 rdev_ops = rdev->ops->set_pmksa;
7398 break;
7399 case NL80211_CMD_DEL_PMKSA:
7400 rdev_ops = rdev->ops->del_pmksa;
7401 break;
7402 default:
7403 WARN_ON(1);
7404 break;
7405 }
7406
Johannes Berg4c476992010-10-04 21:36:35 +02007407 if (!rdev_ops)
7408 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007409
Johannes Berg4c476992010-10-04 21:36:35 +02007410 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007411}
7412
7413static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7414{
Johannes Berg4c476992010-10-04 21:36:35 +02007415 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7416 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007417
Johannes Berg074ac8d2010-09-16 14:58:22 +02007418 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007419 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7420 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007421
Johannes Berg4c476992010-10-04 21:36:35 +02007422 if (!rdev->ops->flush_pmksa)
7423 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007424
Hila Gonene35e4d22012-06-27 17:19:42 +03007425 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007426}
7427
Arik Nemtsov109086c2011-09-28 14:12:50 +03007428static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7429{
7430 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7431 struct net_device *dev = info->user_ptr[1];
7432 u8 action_code, dialog_token;
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05307433 u32 peer_capability = 0;
Arik Nemtsov109086c2011-09-28 14:12:50 +03007434 u16 status_code;
7435 u8 *peer;
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03007436 bool initiator;
Arik Nemtsov109086c2011-09-28 14:12:50 +03007437
7438 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7439 !rdev->ops->tdls_mgmt)
7440 return -EOPNOTSUPP;
7441
7442 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7443 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7444 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7445 !info->attrs[NL80211_ATTR_IE] ||
7446 !info->attrs[NL80211_ATTR_MAC])
7447 return -EINVAL;
7448
7449 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7450 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7451 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7452 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03007453 initiator = nla_get_flag(info->attrs[NL80211_ATTR_TDLS_INITIATOR]);
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05307454 if (info->attrs[NL80211_ATTR_TDLS_PEER_CAPABILITY])
7455 peer_capability =
7456 nla_get_u32(info->attrs[NL80211_ATTR_TDLS_PEER_CAPABILITY]);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007457
Hila Gonene35e4d22012-06-27 17:19:42 +03007458 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
Sunil Dutt Undekaridf942e72014-02-20 16:22:09 +05307459 dialog_token, status_code, peer_capability,
Arik Nemtsov31fa97c2014-06-11 17:18:21 +03007460 initiator,
Hila Gonene35e4d22012-06-27 17:19:42 +03007461 nla_data(info->attrs[NL80211_ATTR_IE]),
7462 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007463}
7464
7465static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7466{
7467 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7468 struct net_device *dev = info->user_ptr[1];
7469 enum nl80211_tdls_operation operation;
7470 u8 *peer;
7471
7472 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7473 !rdev->ops->tdls_oper)
7474 return -EOPNOTSUPP;
7475
7476 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7477 !info->attrs[NL80211_ATTR_MAC])
7478 return -EINVAL;
7479
7480 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7481 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7482
Hila Gonene35e4d22012-06-27 17:19:42 +03007483 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007484}
7485
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007486static int nl80211_remain_on_channel(struct sk_buff *skb,
7487 struct genl_info *info)
7488{
Johannes Berg4c476992010-10-04 21:36:35 +02007489 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007490 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007491 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007492 struct sk_buff *msg;
7493 void *hdr;
7494 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007495 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007496 int err;
7497
7498 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7499 !info->attrs[NL80211_ATTR_DURATION])
7500 return -EINVAL;
7501
7502 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7503
Johannes Berg7c4ef712011-11-18 15:33:48 +01007504 if (!rdev->ops->remain_on_channel ||
7505 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007506 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007507
Johannes Bergebf348f2012-06-01 12:50:54 +02007508 /*
7509 * We should be on that channel for at least a minimum amount of
7510 * time (10ms) but no longer than the driver supports.
7511 */
7512 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7513 duration > rdev->wiphy.max_remain_on_channel_duration)
7514 return -EINVAL;
7515
Johannes Berg683b6d32012-11-08 21:25:48 +01007516 err = nl80211_parse_chandef(rdev, info, &chandef);
7517 if (err)
7518 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007519
7520 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007521 if (!msg)
7522 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007523
Eric W. Biederman15e47302012-09-07 20:12:54 +00007524 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007525 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007526 if (!hdr) {
7527 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007528 goto free_msg;
7529 }
7530
Johannes Berg683b6d32012-11-08 21:25:48 +01007531 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7532 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007533
7534 if (err)
7535 goto free_msg;
7536
David S. Miller9360ffd2012-03-29 04:41:26 -04007537 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7538 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007539
7540 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007541
7542 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007543
7544 nla_put_failure:
7545 err = -ENOBUFS;
7546 free_msg:
7547 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007548 return err;
7549}
7550
7551static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7552 struct genl_info *info)
7553{
Johannes Berg4c476992010-10-04 21:36:35 +02007554 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007555 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007556 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007557
7558 if (!info->attrs[NL80211_ATTR_COOKIE])
7559 return -EINVAL;
7560
Johannes Berg4c476992010-10-04 21:36:35 +02007561 if (!rdev->ops->cancel_remain_on_channel)
7562 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007563
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007564 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7565
Hila Gonene35e4d22012-06-27 17:19:42 +03007566 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007567}
7568
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007569static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7570 u8 *rates, u8 rates_len)
7571{
7572 u8 i;
7573 u32 mask = 0;
7574
7575 for (i = 0; i < rates_len; i++) {
7576 int rate = (rates[i] & 0x7f) * 5;
7577 int ridx;
7578 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7579 struct ieee80211_rate *srate =
7580 &sband->bitrates[ridx];
7581 if (rate == srate->bitrate) {
7582 mask |= 1 << ridx;
7583 break;
7584 }
7585 }
7586 if (ridx == sband->n_bitrates)
7587 return 0; /* rate not found */
7588 }
7589
7590 return mask;
7591}
7592
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007593static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7594 u8 *rates, u8 rates_len,
7595 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7596{
7597 u8 i;
7598
7599 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7600
7601 for (i = 0; i < rates_len; i++) {
7602 int ridx, rbit;
7603
7604 ridx = rates[i] / 8;
7605 rbit = BIT(rates[i] % 8);
7606
7607 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007608 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007609 return false;
7610
7611 /* check availability */
7612 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7613 mcs[ridx] |= rbit;
7614 else
7615 return false;
7616 }
7617
7618 return true;
7619}
7620
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007621static u16 vht_mcs_map_to_mcs_mask(u8 vht_mcs_map)
7622{
7623 u16 mcs_mask = 0;
7624
7625 switch (vht_mcs_map) {
7626 case IEEE80211_VHT_MCS_NOT_SUPPORTED:
7627 break;
7628 case IEEE80211_VHT_MCS_SUPPORT_0_7:
7629 mcs_mask = 0x00FF;
7630 break;
7631 case IEEE80211_VHT_MCS_SUPPORT_0_8:
7632 mcs_mask = 0x01FF;
7633 break;
7634 case IEEE80211_VHT_MCS_SUPPORT_0_9:
7635 mcs_mask = 0x03FF;
7636 break;
7637 default:
7638 break;
7639 }
7640
7641 return mcs_mask;
7642}
7643
7644static void vht_build_mcs_mask(u16 vht_mcs_map,
7645 u16 vht_mcs_mask[NL80211_VHT_NSS_MAX])
7646{
7647 u8 nss;
7648
7649 for (nss = 0; nss < NL80211_VHT_NSS_MAX; nss++) {
7650 vht_mcs_mask[nss] = vht_mcs_map_to_mcs_mask(vht_mcs_map & 0x03);
7651 vht_mcs_map >>= 2;
7652 }
7653}
7654
7655static bool vht_set_mcs_mask(struct ieee80211_supported_band *sband,
7656 struct nl80211_txrate_vht *txrate,
7657 u16 mcs[NL80211_VHT_NSS_MAX])
7658{
7659 u16 tx_mcs_map = le16_to_cpu(sband->vht_cap.vht_mcs.tx_mcs_map);
7660 u16 tx_mcs_mask[NL80211_VHT_NSS_MAX] = {};
7661 u8 i;
7662
7663 if (!sband->vht_cap.vht_supported)
7664 return false;
7665
7666 memset(mcs, 0, sizeof(u16) * NL80211_VHT_NSS_MAX);
7667
7668 /* Build vht_mcs_mask from VHT capabilities */
7669 vht_build_mcs_mask(tx_mcs_map, tx_mcs_mask);
7670
7671 for (i = 0; i < NL80211_VHT_NSS_MAX; i++) {
7672 if ((tx_mcs_mask[i] & txrate->mcs[i]) == txrate->mcs[i])
7673 mcs[i] = txrate->mcs[i];
7674 else
7675 return false;
7676 }
7677
7678 return true;
7679}
7680
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007681static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007682 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7683 .len = NL80211_MAX_SUPP_RATES },
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007684 [NL80211_TXRATE_HT] = { .type = NLA_BINARY,
7685 .len = NL80211_MAX_SUPP_HT_RATES },
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007686 [NL80211_TXRATE_VHT] = { .len = sizeof(struct nl80211_txrate_vht)},
Janusz Dziedzic0b9323f2014-01-08 08:46:02 +01007687 [NL80211_TXRATE_GI] = { .type = NLA_U8 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007688};
7689
7690static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7691 struct genl_info *info)
7692{
7693 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007694 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007695 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007696 int rem, i;
7697 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007698 struct nlattr *tx_rates;
7699 struct ieee80211_supported_band *sband;
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007700 u16 vht_tx_mcs_map;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007701
Johannes Berg4c476992010-10-04 21:36:35 +02007702 if (!rdev->ops->set_bitrate_mask)
7703 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007704
7705 memset(&mask, 0, sizeof(mask));
7706 /* Default to all rates enabled */
7707 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7708 sband = rdev->wiphy.bands[i];
Janusz Dziedzic78693032013-12-03 09:50:44 +01007709
7710 if (!sband)
7711 continue;
7712
7713 mask.control[i].legacy = (1 << sband->n_bitrates) - 1;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007714 memcpy(mask.control[i].ht_mcs,
Janusz Dziedzic78693032013-12-03 09:50:44 +01007715 sband->ht_cap.mcs.rx_mask,
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007716 sizeof(mask.control[i].ht_mcs));
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007717
7718 if (!sband->vht_cap.vht_supported)
7719 continue;
7720
7721 vht_tx_mcs_map = le16_to_cpu(sband->vht_cap.vht_mcs.tx_mcs_map);
7722 vht_build_mcs_mask(vht_tx_mcs_map, mask.control[i].vht_mcs);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007723 }
7724
Janusz Dziedzicb9243ab2013-12-05 10:02:14 +01007725 /* if no rates are given set it back to the defaults */
7726 if (!info->attrs[NL80211_ATTR_TX_RATES])
7727 goto out;
7728
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007729 /*
7730 * The nested attribute uses enum nl80211_band as the index. This maps
7731 * directly to the enum ieee80211_band values used in cfg80211.
7732 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007733 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Johannes Bergae811e22014-01-24 10:17:47 +01007734 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem) {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007735 enum ieee80211_band band = nla_type(tx_rates);
Johannes Bergae811e22014-01-24 10:17:47 +01007736 int err;
7737
Johannes Berg4c476992010-10-04 21:36:35 +02007738 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7739 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007740 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007741 if (sband == NULL)
7742 return -EINVAL;
Johannes Bergae811e22014-01-24 10:17:47 +01007743 err = nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7744 nla_len(tx_rates), nl80211_txattr_policy);
7745 if (err)
7746 return err;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007747 if (tb[NL80211_TXRATE_LEGACY]) {
7748 mask.control[band].legacy = rateset_to_mask(
7749 sband,
7750 nla_data(tb[NL80211_TXRATE_LEGACY]),
7751 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307752 if ((mask.control[band].legacy == 0) &&
7753 nla_len(tb[NL80211_TXRATE_LEGACY]))
7754 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007755 }
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007756 if (tb[NL80211_TXRATE_HT]) {
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007757 if (!ht_rateset_to_mask(
7758 sband,
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007759 nla_data(tb[NL80211_TXRATE_HT]),
7760 nla_len(tb[NL80211_TXRATE_HT]),
7761 mask.control[band].ht_mcs))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007762 return -EINVAL;
7763 }
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007764 if (tb[NL80211_TXRATE_VHT]) {
7765 if (!vht_set_mcs_mask(
7766 sband,
7767 nla_data(tb[NL80211_TXRATE_VHT]),
7768 mask.control[band].vht_mcs))
7769 return -EINVAL;
7770 }
Janusz Dziedzic0b9323f2014-01-08 08:46:02 +01007771 if (tb[NL80211_TXRATE_GI]) {
7772 mask.control[band].gi =
7773 nla_get_u8(tb[NL80211_TXRATE_GI]);
7774 if (mask.control[band].gi > NL80211_TXRATE_FORCE_LGI)
7775 return -EINVAL;
7776 }
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007777
7778 if (mask.control[band].legacy == 0) {
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007779 /* don't allow empty legacy rates if HT or VHT
7780 * are not even supported.
7781 */
7782 if (!(rdev->wiphy.bands[band]->ht_cap.ht_supported ||
7783 rdev->wiphy.bands[band]->vht_cap.vht_supported))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007784 return -EINVAL;
7785
7786 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01007787 if (mask.control[band].ht_mcs[i])
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007788 goto out;
7789
7790 for (i = 0; i < NL80211_VHT_NSS_MAX; i++)
7791 if (mask.control[band].vht_mcs[i])
7792 goto out;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007793
7794 /* legacy and mcs rates may not be both empty */
Janusz Dziedzic204e35a2013-12-05 20:42:58 +01007795 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007796 }
7797 }
7798
Janusz Dziedzicb9243ab2013-12-05 10:02:14 +01007799out:
Hila Gonene35e4d22012-06-27 17:19:42 +03007800 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007801}
7802
Johannes Berg2e161f72010-08-12 15:38:38 +02007803static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007804{
Johannes Berg4c476992010-10-04 21:36:35 +02007805 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007806 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007807 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007808
7809 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7810 return -EINVAL;
7811
Johannes Berg2e161f72010-08-12 15:38:38 +02007812 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7813 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007814
Johannes Berg71bbc992012-06-15 15:30:18 +02007815 switch (wdev->iftype) {
7816 case NL80211_IFTYPE_STATION:
7817 case NL80211_IFTYPE_ADHOC:
7818 case NL80211_IFTYPE_P2P_CLIENT:
7819 case NL80211_IFTYPE_AP:
7820 case NL80211_IFTYPE_AP_VLAN:
7821 case NL80211_IFTYPE_MESH_POINT:
7822 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007823 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007824 break;
7825 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007826 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007827 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007828
7829 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007830 if (!rdev->ops->mgmt_tx)
7831 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007832
Eric W. Biederman15e47302012-09-07 20:12:54 +00007833 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007834 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7835 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007836}
7837
Johannes Berg2e161f72010-08-12 15:38:38 +02007838static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007839{
Johannes Berg4c476992010-10-04 21:36:35 +02007840 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007841 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007842 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007843 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007844 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007845 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007846 struct sk_buff *msg = NULL;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007847 struct cfg80211_mgmt_tx_params params = {
7848 .dont_wait_for_ack =
7849 info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK],
7850 };
Jouni Malinen026331c2010-02-15 12:53:10 +02007851
Johannes Berg683b6d32012-11-08 21:25:48 +01007852 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007853 return -EINVAL;
7854
Johannes Berg4c476992010-10-04 21:36:35 +02007855 if (!rdev->ops->mgmt_tx)
7856 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007857
Johannes Berg71bbc992012-06-15 15:30:18 +02007858 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007859 case NL80211_IFTYPE_P2P_DEVICE:
7860 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7861 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007862 case NL80211_IFTYPE_STATION:
7863 case NL80211_IFTYPE_ADHOC:
7864 case NL80211_IFTYPE_P2P_CLIENT:
7865 case NL80211_IFTYPE_AP:
7866 case NL80211_IFTYPE_AP_VLAN:
7867 case NL80211_IFTYPE_MESH_POINT:
7868 case NL80211_IFTYPE_P2P_GO:
7869 break;
7870 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007871 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007872 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007873
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007874 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007875 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007876 return -EINVAL;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007877 params.wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007878
7879 /*
7880 * We should wait on the channel for at least a minimum amount
7881 * of time (10ms) but no longer than the driver supports.
7882 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007883 if (params.wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7884 params.wait > rdev->wiphy.max_remain_on_channel_duration)
Johannes Bergebf348f2012-06-01 12:50:54 +02007885 return -EINVAL;
7886
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007887 }
7888
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007889 params.offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007890
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007891 if (params.offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Berg7c4ef712011-11-18 15:33:48 +01007892 return -EINVAL;
7893
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007894 params.no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307895
Antonio Quartulliea141b752013-06-11 14:20:03 +02007896 /* get the channel if any has been specified, otherwise pass NULL to
7897 * the driver. The latter will use the current one
7898 */
7899 chandef.chan = NULL;
7900 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7901 err = nl80211_parse_chandef(rdev, info, &chandef);
7902 if (err)
7903 return err;
7904 }
7905
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007906 if (!chandef.chan && params.offchan)
Antonio Quartulliea141b752013-06-11 14:20:03 +02007907 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007908
Andrei Otcheretianski34d22ce2014-05-09 14:11:44 +03007909 params.buf = nla_data(info->attrs[NL80211_ATTR_FRAME]);
7910 params.len = nla_len(info->attrs[NL80211_ATTR_FRAME]);
7911
7912 if (info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]) {
7913 int len = nla_len(info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]);
7914 int i;
7915
7916 if (len % sizeof(u16))
7917 return -EINVAL;
7918
7919 params.n_csa_offsets = len / sizeof(u16);
7920 params.csa_offsets =
7921 nla_data(info->attrs[NL80211_ATTR_CSA_C_OFFSETS_TX]);
7922
7923 /* check that all the offsets fit the frame */
7924 for (i = 0; i < params.n_csa_offsets; i++) {
7925 if (params.csa_offsets[i] >= params.len)
7926 return -EINVAL;
7927 }
7928 }
7929
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007930 if (!params.dont_wait_for_ack) {
Johannes Berge247bd902011-11-04 11:18:21 +01007931 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7932 if (!msg)
7933 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007934
Eric W. Biederman15e47302012-09-07 20:12:54 +00007935 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007936 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007937 if (!hdr) {
7938 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007939 goto free_msg;
7940 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007941 }
Johannes Berge247bd902011-11-04 11:18:21 +01007942
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02007943 params.chan = chandef.chan;
7944 err = cfg80211_mlme_mgmt_tx(rdev, wdev, &params, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007945 if (err)
7946 goto free_msg;
7947
Johannes Berge247bd902011-11-04 11:18:21 +01007948 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007949 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7950 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007951
Johannes Berge247bd902011-11-04 11:18:21 +01007952 genlmsg_end(msg, hdr);
7953 return genlmsg_reply(msg, info);
7954 }
7955
7956 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007957
7958 nla_put_failure:
7959 err = -ENOBUFS;
7960 free_msg:
7961 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007962 return err;
7963}
7964
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007965static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7966{
7967 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007968 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007969 u64 cookie;
7970
7971 if (!info->attrs[NL80211_ATTR_COOKIE])
7972 return -EINVAL;
7973
7974 if (!rdev->ops->mgmt_tx_cancel_wait)
7975 return -EOPNOTSUPP;
7976
Johannes Berg71bbc992012-06-15 15:30:18 +02007977 switch (wdev->iftype) {
7978 case NL80211_IFTYPE_STATION:
7979 case NL80211_IFTYPE_ADHOC:
7980 case NL80211_IFTYPE_P2P_CLIENT:
7981 case NL80211_IFTYPE_AP:
7982 case NL80211_IFTYPE_AP_VLAN:
7983 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007984 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007985 break;
7986 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007987 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007988 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007989
7990 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7991
Hila Gonene35e4d22012-06-27 17:19:42 +03007992 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007993}
7994
Kalle Valoffb9eb32010-02-17 17:58:10 +02007995static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7996{
Johannes Berg4c476992010-10-04 21:36:35 +02007997 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007998 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007999 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02008000 u8 ps_state;
8001 bool state;
8002 int err;
8003
Johannes Berg4c476992010-10-04 21:36:35 +02008004 if (!info->attrs[NL80211_ATTR_PS_STATE])
8005 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008006
8007 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
8008
Johannes Berg4c476992010-10-04 21:36:35 +02008009 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
8010 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008011
8012 wdev = dev->ieee80211_ptr;
8013
Johannes Berg4c476992010-10-04 21:36:35 +02008014 if (!rdev->ops->set_power_mgmt)
8015 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008016
8017 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
8018
8019 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02008020 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008021
Hila Gonene35e4d22012-06-27 17:19:42 +03008022 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02008023 if (!err)
8024 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008025 return err;
8026}
8027
8028static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
8029{
Johannes Berg4c476992010-10-04 21:36:35 +02008030 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02008031 enum nl80211_ps_state ps_state;
8032 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008033 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02008034 struct sk_buff *msg;
8035 void *hdr;
8036 int err;
8037
Kalle Valoffb9eb32010-02-17 17:58:10 +02008038 wdev = dev->ieee80211_ptr;
8039
Johannes Berg4c476992010-10-04 21:36:35 +02008040 if (!rdev->ops->set_power_mgmt)
8041 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008042
8043 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02008044 if (!msg)
8045 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008046
Eric W. Biederman15e47302012-09-07 20:12:54 +00008047 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02008048 NL80211_CMD_GET_POWER_SAVE);
8049 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02008050 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008051 goto free_msg;
8052 }
8053
8054 if (wdev->ps)
8055 ps_state = NL80211_PS_ENABLED;
8056 else
8057 ps_state = NL80211_PS_DISABLED;
8058
David S. Miller9360ffd2012-03-29 04:41:26 -04008059 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
8060 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02008061
8062 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02008063 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02008064
Johannes Berg4c476992010-10-04 21:36:35 +02008065 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02008066 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02008067 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02008068 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02008069 return err;
8070}
8071
Johannes Berg94e860f2014-01-20 23:58:15 +01008072static const struct nla_policy
8073nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008074 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
8075 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
8076 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07008077 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
8078 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
8079 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008080};
8081
Thomas Pedersen84f10702012-07-12 16:17:33 -07008082static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01008083 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07008084{
8085 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07008086 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008087 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07008088
Johannes Bergd9d8b012012-11-26 12:51:52 +01008089 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07008090 return -EINVAL;
8091
Thomas Pedersen84f10702012-07-12 16:17:33 -07008092 if (!rdev->ops->set_cqm_txe_config)
8093 return -EOPNOTSUPP;
8094
8095 if (wdev->iftype != NL80211_IFTYPE_STATION &&
8096 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
8097 return -EOPNOTSUPP;
8098
Hila Gonene35e4d22012-06-27 17:19:42 +03008099 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07008100}
8101
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008102static int nl80211_set_cqm_rssi(struct genl_info *info,
8103 s32 threshold, u32 hysteresis)
8104{
Johannes Berg4c476992010-10-04 21:36:35 +02008105 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02008106 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008107 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008108
8109 if (threshold > 0)
8110 return -EINVAL;
8111
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008112 /* disabling - hysteresis should also be zero then */
8113 if (threshold == 0)
8114 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008115
Johannes Berg4c476992010-10-04 21:36:35 +02008116 if (!rdev->ops->set_cqm_rssi_config)
8117 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008118
Johannes Berg074ac8d2010-09-16 14:58:22 +02008119 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02008120 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
8121 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008122
Hila Gonene35e4d22012-06-27 17:19:42 +03008123 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008124}
8125
8126static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
8127{
8128 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
8129 struct nlattr *cqm;
8130 int err;
8131
8132 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008133 if (!cqm)
8134 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008135
8136 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
8137 nl80211_attr_cqm_policy);
8138 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008139 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008140
8141 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
8142 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008143 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
8144 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008145
Johannes Berg1da5fcc2013-08-06 14:10:48 +02008146 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
8147 }
8148
8149 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
8150 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
8151 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
8152 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
8153 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
8154 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
8155
8156 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
8157 }
8158
8159 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02008160}
8161
Johannes Berg29cbe682010-12-03 09:20:44 +01008162static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
8163{
8164 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8165 struct net_device *dev = info->user_ptr[1];
8166 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08008167 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01008168 int err;
8169
8170 /* start with default */
8171 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08008172 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01008173
Javier Cardona24bdd9f2010-12-16 17:37:48 -08008174 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01008175 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08008176 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01008177 if (err)
8178 return err;
8179 }
8180
8181 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
8182 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
8183 return -EINVAL;
8184
Javier Cardonac80d5452010-12-16 17:37:49 -08008185 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
8186 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
8187
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08008188 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
8189 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
8190 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
8191 return -EINVAL;
8192
Marco Porsch9bdbf042013-01-07 16:04:51 +01008193 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
8194 setup.beacon_interval =
8195 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
8196 if (setup.beacon_interval < 10 ||
8197 setup.beacon_interval > 10000)
8198 return -EINVAL;
8199 }
8200
8201 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
8202 setup.dtim_period =
8203 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
8204 if (setup.dtim_period < 1 || setup.dtim_period > 100)
8205 return -EINVAL;
8206 }
8207
Javier Cardonac80d5452010-12-16 17:37:49 -08008208 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
8209 /* parse additional setup parameters if given */
8210 err = nl80211_parse_mesh_setup(info, &setup);
8211 if (err)
8212 return err;
8213 }
8214
Thomas Pedersend37bb182013-03-04 13:06:13 -08008215 if (setup.user_mpm)
8216 cfg.auto_open_plinks = false;
8217
Johannes Bergcc1d2802012-05-16 23:50:20 +02008218 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01008219 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
8220 if (err)
8221 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02008222 } else {
8223 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01008224 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02008225 }
8226
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07008227 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
8228 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
8229 int n_rates =
8230 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
8231 struct ieee80211_supported_band *sband;
8232
8233 if (!setup.chandef.chan)
8234 return -EINVAL;
8235
8236 sband = rdev->wiphy.bands[setup.chandef.chan->band];
8237
8238 err = ieee80211_get_ratemask(sband, rates, n_rates,
8239 &setup.basic_rates);
8240 if (err)
8241 return err;
8242 }
8243
Javier Cardonac80d5452010-12-16 17:37:49 -08008244 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01008245}
8246
8247static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
8248{
8249 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8250 struct net_device *dev = info->user_ptr[1];
8251
8252 return cfg80211_leave_mesh(rdev, dev);
8253}
8254
Johannes Bergdfb89c52012-06-27 09:23:48 +02008255#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008256static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
8257 struct cfg80211_registered_device *rdev)
8258{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008259 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008260 struct nlattr *nl_pats, *nl_pat;
8261 int i, pat_len;
8262
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008263 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008264 return 0;
8265
8266 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
8267 if (!nl_pats)
8268 return -ENOBUFS;
8269
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008270 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008271 nl_pat = nla_nest_start(msg, i + 1);
8272 if (!nl_pat)
8273 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008274 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008275 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008276 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008277 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8278 wowlan->patterns[i].pattern) ||
8279 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008280 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008281 return -ENOBUFS;
8282 nla_nest_end(msg, nl_pat);
8283 }
8284 nla_nest_end(msg, nl_pats);
8285
8286 return 0;
8287}
8288
Johannes Berg2a0e0472013-01-23 22:57:40 +01008289static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
8290 struct cfg80211_wowlan_tcp *tcp)
8291{
8292 struct nlattr *nl_tcp;
8293
8294 if (!tcp)
8295 return 0;
8296
8297 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
8298 if (!nl_tcp)
8299 return -ENOBUFS;
8300
8301 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
8302 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
8303 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
8304 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
8305 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
8306 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
8307 tcp->payload_len, tcp->payload) ||
8308 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
8309 tcp->data_interval) ||
8310 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
8311 tcp->wake_len, tcp->wake_data) ||
8312 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
8313 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
8314 return -ENOBUFS;
8315
8316 if (tcp->payload_seq.len &&
8317 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
8318 sizeof(tcp->payload_seq), &tcp->payload_seq))
8319 return -ENOBUFS;
8320
8321 if (tcp->payload_tok.len &&
8322 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
8323 sizeof(tcp->payload_tok) + tcp->tokens_size,
8324 &tcp->payload_tok))
8325 return -ENOBUFS;
8326
Johannes Berge248ad32013-05-16 10:24:28 +02008327 nla_nest_end(msg, nl_tcp);
8328
Johannes Berg2a0e0472013-01-23 22:57:40 +01008329 return 0;
8330}
8331
Johannes Bergff1b6e62011-05-04 15:37:28 +02008332static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
8333{
8334 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8335 struct sk_buff *msg;
8336 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008337 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008338
Johannes Berg964dc9e2013-06-03 17:25:34 +02008339 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008340 return -EOPNOTSUPP;
8341
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008342 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01008343 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008344 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
8345 rdev->wiphy.wowlan_config->tcp->payload_len +
8346 rdev->wiphy.wowlan_config->tcp->wake_len +
8347 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008348 }
8349
8350 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008351 if (!msg)
8352 return -ENOMEM;
8353
Eric W. Biederman15e47302012-09-07 20:12:54 +00008354 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02008355 NL80211_CMD_GET_WOWLAN);
8356 if (!hdr)
8357 goto nla_put_failure;
8358
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008359 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02008360 struct nlattr *nl_wowlan;
8361
8362 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
8363 if (!nl_wowlan)
8364 goto nla_put_failure;
8365
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008366 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008367 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008368 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008369 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008370 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008371 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008372 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008373 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008374 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008375 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008376 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008377 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008378 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04008379 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
8380 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008381
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008382 if (nl80211_send_wowlan_patterns(msg, rdev))
8383 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01008384
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008385 if (nl80211_send_wowlan_tcp(msg,
8386 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01008387 goto nla_put_failure;
8388
Johannes Bergff1b6e62011-05-04 15:37:28 +02008389 nla_nest_end(msg, nl_wowlan);
8390 }
8391
8392 genlmsg_end(msg, hdr);
8393 return genlmsg_reply(msg, info);
8394
8395nla_put_failure:
8396 nlmsg_free(msg);
8397 return -ENOBUFS;
8398}
8399
Johannes Berg2a0e0472013-01-23 22:57:40 +01008400static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
8401 struct nlattr *attr,
8402 struct cfg80211_wowlan *trig)
8403{
8404 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
8405 struct cfg80211_wowlan_tcp *cfg;
8406 struct nl80211_wowlan_tcp_data_token *tok = NULL;
8407 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
8408 u32 size;
8409 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
8410 int err, port;
8411
Johannes Berg964dc9e2013-06-03 17:25:34 +02008412 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008413 return -EINVAL;
8414
8415 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
8416 nla_data(attr), nla_len(attr),
8417 nl80211_wowlan_tcp_policy);
8418 if (err)
8419 return err;
8420
8421 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
8422 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
8423 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
8424 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
8425 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
8426 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
8427 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
8428 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
8429 return -EINVAL;
8430
8431 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008432 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008433 return -EINVAL;
8434
8435 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02008436 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01008437 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008438 return -EINVAL;
8439
8440 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008441 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008442 return -EINVAL;
8443
8444 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
8445 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
8446 return -EINVAL;
8447
8448 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
8449 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8450
8451 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8452 tokens_size = tokln - sizeof(*tok);
8453
8454 if (!tok->len || tokens_size % tok->len)
8455 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008456 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008457 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008458 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008459 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008460 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008461 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008462 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008463 return -EINVAL;
8464 if (tok->offset + tok->len > data_size)
8465 return -EINVAL;
8466 }
8467
8468 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
8469 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008470 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008471 return -EINVAL;
8472 if (seq->len == 0 || seq->len > 4)
8473 return -EINVAL;
8474 if (seq->len + seq->offset > data_size)
8475 return -EINVAL;
8476 }
8477
8478 size = sizeof(*cfg);
8479 size += data_size;
8480 size += wake_size + wake_mask_size;
8481 size += tokens_size;
8482
8483 cfg = kzalloc(size, GFP_KERNEL);
8484 if (!cfg)
8485 return -ENOMEM;
8486 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
8487 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
8488 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
8489 ETH_ALEN);
8490 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
8491 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
8492 else
8493 port = 0;
8494#ifdef CONFIG_INET
8495 /* allocate a socket and port for it and use it */
8496 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
8497 IPPROTO_TCP, &cfg->sock, 1);
8498 if (err) {
8499 kfree(cfg);
8500 return err;
8501 }
8502 if (inet_csk_get_port(cfg->sock->sk, port)) {
8503 sock_release(cfg->sock);
8504 kfree(cfg);
8505 return -EADDRINUSE;
8506 }
8507 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8508#else
8509 if (!port) {
8510 kfree(cfg);
8511 return -EINVAL;
8512 }
8513 cfg->src_port = port;
8514#endif
8515
8516 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8517 cfg->payload_len = data_size;
8518 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8519 memcpy((void *)cfg->payload,
8520 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8521 data_size);
8522 if (seq)
8523 cfg->payload_seq = *seq;
8524 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8525 cfg->wake_len = wake_size;
8526 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8527 memcpy((void *)cfg->wake_data,
8528 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8529 wake_size);
8530 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8531 data_size + wake_size;
8532 memcpy((void *)cfg->wake_mask,
8533 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8534 wake_mask_size);
8535 if (tok) {
8536 cfg->tokens_size = tokens_size;
8537 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8538 }
8539
8540 trig->tcp = cfg;
8541
8542 return 0;
8543}
8544
Johannes Bergff1b6e62011-05-04 15:37:28 +02008545static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8546{
8547 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8548 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008549 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008550 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008551 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008552 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008553 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008554
Johannes Berg964dc9e2013-06-03 17:25:34 +02008555 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008556 return -EOPNOTSUPP;
8557
Johannes Bergae33bd82012-07-12 16:25:02 +02008558 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8559 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008560 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008561 goto set_wakeup;
8562 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008563
8564 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8565 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8566 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8567 nl80211_wowlan_policy);
8568 if (err)
8569 return err;
8570
8571 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8572 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8573 return -EINVAL;
8574 new_triggers.any = true;
8575 }
8576
8577 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8578 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8579 return -EINVAL;
8580 new_triggers.disconnect = true;
8581 }
8582
8583 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8584 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8585 return -EINVAL;
8586 new_triggers.magic_pkt = true;
8587 }
8588
Johannes Berg77dbbb12011-07-13 10:48:55 +02008589 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8590 return -EINVAL;
8591
8592 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8593 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8594 return -EINVAL;
8595 new_triggers.gtk_rekey_failure = true;
8596 }
8597
8598 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8599 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8600 return -EINVAL;
8601 new_triggers.eap_identity_req = true;
8602 }
8603
8604 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8605 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8606 return -EINVAL;
8607 new_triggers.four_way_handshake = true;
8608 }
8609
8610 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8611 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8612 return -EINVAL;
8613 new_triggers.rfkill_release = true;
8614 }
8615
Johannes Bergff1b6e62011-05-04 15:37:28 +02008616 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8617 struct nlattr *pat;
8618 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008619 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008620 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008621
8622 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8623 rem)
8624 n_patterns++;
8625 if (n_patterns > wowlan->n_patterns)
8626 return -EINVAL;
8627
8628 new_triggers.patterns = kcalloc(n_patterns,
8629 sizeof(new_triggers.patterns[0]),
8630 GFP_KERNEL);
8631 if (!new_triggers.patterns)
8632 return -ENOMEM;
8633
8634 new_triggers.n_patterns = n_patterns;
8635 i = 0;
8636
8637 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8638 rem) {
Johannes Berg922bd802014-05-19 17:59:50 +02008639 u8 *mask_pat;
8640
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008641 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8642 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008643 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008644 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8645 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008646 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008647 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008648 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008649 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008650 goto error;
8651 if (pat_len > wowlan->pattern_max_len ||
8652 pat_len < wowlan->pattern_min_len)
8653 goto error;
8654
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008655 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008656 pkt_offset = 0;
8657 else
8658 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008659 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008660 if (pkt_offset > wowlan->max_pkt_offset)
8661 goto error;
8662 new_triggers.patterns[i].pkt_offset = pkt_offset;
8663
Johannes Berg922bd802014-05-19 17:59:50 +02008664 mask_pat = kmalloc(mask_len + pat_len, GFP_KERNEL);
8665 if (!mask_pat) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02008666 err = -ENOMEM;
8667 goto error;
8668 }
Johannes Berg922bd802014-05-19 17:59:50 +02008669 new_triggers.patterns[i].mask = mask_pat;
8670 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008671 mask_len);
Johannes Berg922bd802014-05-19 17:59:50 +02008672 mask_pat += mask_len;
8673 new_triggers.patterns[i].pattern = mask_pat;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008674 new_triggers.patterns[i].pattern_len = pat_len;
Johannes Berg922bd802014-05-19 17:59:50 +02008675 memcpy(mask_pat,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008676 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008677 pat_len);
8678 i++;
8679 }
8680 }
8681
Johannes Berg2a0e0472013-01-23 22:57:40 +01008682 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8683 err = nl80211_parse_wowlan_tcp(
8684 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8685 &new_triggers);
8686 if (err)
8687 goto error;
8688 }
8689
Johannes Bergae33bd82012-07-12 16:25:02 +02008690 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8691 if (!ntrig) {
8692 err = -ENOMEM;
8693 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008694 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008695 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008696 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008697
Johannes Bergae33bd82012-07-12 16:25:02 +02008698 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008699 if (rdev->ops->set_wakeup &&
8700 prev_enabled != !!rdev->wiphy.wowlan_config)
8701 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008702
Johannes Bergff1b6e62011-05-04 15:37:28 +02008703 return 0;
8704 error:
8705 for (i = 0; i < new_triggers.n_patterns; i++)
8706 kfree(new_triggers.patterns[i].mask);
8707 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008708 if (new_triggers.tcp && new_triggers.tcp->sock)
8709 sock_release(new_triggers.tcp->sock);
8710 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008711 return err;
8712}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008713#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008714
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008715static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8716 struct cfg80211_registered_device *rdev)
8717{
8718 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8719 int i, j, pat_len;
8720 struct cfg80211_coalesce_rules *rule;
8721
8722 if (!rdev->coalesce->n_rules)
8723 return 0;
8724
8725 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8726 if (!nl_rules)
8727 return -ENOBUFS;
8728
8729 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8730 nl_rule = nla_nest_start(msg, i + 1);
8731 if (!nl_rule)
8732 return -ENOBUFS;
8733
8734 rule = &rdev->coalesce->rules[i];
8735 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8736 rule->delay))
8737 return -ENOBUFS;
8738
8739 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8740 rule->condition))
8741 return -ENOBUFS;
8742
8743 nl_pats = nla_nest_start(msg,
8744 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8745 if (!nl_pats)
8746 return -ENOBUFS;
8747
8748 for (j = 0; j < rule->n_patterns; j++) {
8749 nl_pat = nla_nest_start(msg, j + 1);
8750 if (!nl_pat)
8751 return -ENOBUFS;
8752 pat_len = rule->patterns[j].pattern_len;
8753 if (nla_put(msg, NL80211_PKTPAT_MASK,
8754 DIV_ROUND_UP(pat_len, 8),
8755 rule->patterns[j].mask) ||
8756 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8757 rule->patterns[j].pattern) ||
8758 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8759 rule->patterns[j].pkt_offset))
8760 return -ENOBUFS;
8761 nla_nest_end(msg, nl_pat);
8762 }
8763 nla_nest_end(msg, nl_pats);
8764 nla_nest_end(msg, nl_rule);
8765 }
8766 nla_nest_end(msg, nl_rules);
8767
8768 return 0;
8769}
8770
8771static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8772{
8773 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8774 struct sk_buff *msg;
8775 void *hdr;
8776
8777 if (!rdev->wiphy.coalesce)
8778 return -EOPNOTSUPP;
8779
8780 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8781 if (!msg)
8782 return -ENOMEM;
8783
8784 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8785 NL80211_CMD_GET_COALESCE);
8786 if (!hdr)
8787 goto nla_put_failure;
8788
8789 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8790 goto nla_put_failure;
8791
8792 genlmsg_end(msg, hdr);
8793 return genlmsg_reply(msg, info);
8794
8795nla_put_failure:
8796 nlmsg_free(msg);
8797 return -ENOBUFS;
8798}
8799
8800void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8801{
8802 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8803 int i, j;
8804 struct cfg80211_coalesce_rules *rule;
8805
8806 if (!coalesce)
8807 return;
8808
8809 for (i = 0; i < coalesce->n_rules; i++) {
8810 rule = &coalesce->rules[i];
8811 for (j = 0; j < rule->n_patterns; j++)
8812 kfree(rule->patterns[j].mask);
8813 kfree(rule->patterns);
8814 }
8815 kfree(coalesce->rules);
8816 kfree(coalesce);
8817 rdev->coalesce = NULL;
8818}
8819
8820static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8821 struct nlattr *rule,
8822 struct cfg80211_coalesce_rules *new_rule)
8823{
8824 int err, i;
8825 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8826 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8827 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8828 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8829
8830 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8831 nla_len(rule), nl80211_coalesce_policy);
8832 if (err)
8833 return err;
8834
8835 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8836 new_rule->delay =
8837 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8838 if (new_rule->delay > coalesce->max_delay)
8839 return -EINVAL;
8840
8841 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8842 new_rule->condition =
8843 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8844 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8845 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8846 return -EINVAL;
8847
8848 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8849 return -EINVAL;
8850
8851 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8852 rem)
8853 n_patterns++;
8854 if (n_patterns > coalesce->n_patterns)
8855 return -EINVAL;
8856
8857 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8858 GFP_KERNEL);
8859 if (!new_rule->patterns)
8860 return -ENOMEM;
8861
8862 new_rule->n_patterns = n_patterns;
8863 i = 0;
8864
8865 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8866 rem) {
Johannes Berg922bd802014-05-19 17:59:50 +02008867 u8 *mask_pat;
8868
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008869 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8870 nla_len(pat), NULL);
8871 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8872 !pat_tb[NL80211_PKTPAT_PATTERN])
8873 return -EINVAL;
8874 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8875 mask_len = DIV_ROUND_UP(pat_len, 8);
8876 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8877 return -EINVAL;
8878 if (pat_len > coalesce->pattern_max_len ||
8879 pat_len < coalesce->pattern_min_len)
8880 return -EINVAL;
8881
8882 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8883 pkt_offset = 0;
8884 else
8885 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8886 if (pkt_offset > coalesce->max_pkt_offset)
8887 return -EINVAL;
8888 new_rule->patterns[i].pkt_offset = pkt_offset;
8889
Johannes Berg922bd802014-05-19 17:59:50 +02008890 mask_pat = kmalloc(mask_len + pat_len, GFP_KERNEL);
8891 if (!mask_pat)
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008892 return -ENOMEM;
Johannes Berg922bd802014-05-19 17:59:50 +02008893
8894 new_rule->patterns[i].mask = mask_pat;
8895 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_MASK]),
8896 mask_len);
8897
8898 mask_pat += mask_len;
8899 new_rule->patterns[i].pattern = mask_pat;
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008900 new_rule->patterns[i].pattern_len = pat_len;
Johannes Berg922bd802014-05-19 17:59:50 +02008901 memcpy(mask_pat, nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
8902 pat_len);
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008903 i++;
8904 }
8905
8906 return 0;
8907}
8908
8909static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8910{
8911 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8912 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8913 struct cfg80211_coalesce new_coalesce = {};
8914 struct cfg80211_coalesce *n_coalesce;
8915 int err, rem_rule, n_rules = 0, i, j;
8916 struct nlattr *rule;
8917 struct cfg80211_coalesce_rules *tmp_rule;
8918
8919 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8920 return -EOPNOTSUPP;
8921
8922 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8923 cfg80211_rdev_free_coalesce(rdev);
8924 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8925 return 0;
8926 }
8927
8928 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8929 rem_rule)
8930 n_rules++;
8931 if (n_rules > coalesce->n_rules)
8932 return -EINVAL;
8933
8934 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8935 GFP_KERNEL);
8936 if (!new_coalesce.rules)
8937 return -ENOMEM;
8938
8939 new_coalesce.n_rules = n_rules;
8940 i = 0;
8941
8942 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8943 rem_rule) {
8944 err = nl80211_parse_coalesce_rule(rdev, rule,
8945 &new_coalesce.rules[i]);
8946 if (err)
8947 goto error;
8948
8949 i++;
8950 }
8951
8952 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8953 if (err)
8954 goto error;
8955
8956 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8957 if (!n_coalesce) {
8958 err = -ENOMEM;
8959 goto error;
8960 }
8961 cfg80211_rdev_free_coalesce(rdev);
8962 rdev->coalesce = n_coalesce;
8963
8964 return 0;
8965error:
8966 for (i = 0; i < new_coalesce.n_rules; i++) {
8967 tmp_rule = &new_coalesce.rules[i];
8968 for (j = 0; j < tmp_rule->n_patterns; j++)
8969 kfree(tmp_rule->patterns[j].mask);
8970 kfree(tmp_rule->patterns);
8971 }
8972 kfree(new_coalesce.rules);
8973
8974 return err;
8975}
8976
Johannes Berge5497d72011-07-05 16:35:40 +02008977static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8978{
8979 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8980 struct net_device *dev = info->user_ptr[1];
8981 struct wireless_dev *wdev = dev->ieee80211_ptr;
8982 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8983 struct cfg80211_gtk_rekey_data rekey_data;
8984 int err;
8985
8986 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8987 return -EINVAL;
8988
8989 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8990 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8991 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8992 nl80211_rekey_policy);
8993 if (err)
8994 return err;
8995
8996 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8997 return -ERANGE;
8998 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8999 return -ERANGE;
9000 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
9001 return -ERANGE;
9002
Johannes Berg78f686c2014-09-10 22:28:06 +03009003 rekey_data.kek = nla_data(tb[NL80211_REKEY_DATA_KEK]);
9004 rekey_data.kck = nla_data(tb[NL80211_REKEY_DATA_KCK]);
9005 rekey_data.replay_ctr = nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]);
Johannes Berge5497d72011-07-05 16:35:40 +02009006
9007 wdev_lock(wdev);
9008 if (!wdev->current_bss) {
9009 err = -ENOTCONN;
9010 goto out;
9011 }
9012
9013 if (!rdev->ops->set_rekey_data) {
9014 err = -EOPNOTSUPP;
9015 goto out;
9016 }
9017
Hila Gonene35e4d22012-06-27 17:19:42 +03009018 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02009019 out:
9020 wdev_unlock(wdev);
9021 return err;
9022}
9023
Johannes Berg28946da2011-11-04 11:18:12 +01009024static int nl80211_register_unexpected_frame(struct sk_buff *skb,
9025 struct genl_info *info)
9026{
9027 struct net_device *dev = info->user_ptr[1];
9028 struct wireless_dev *wdev = dev->ieee80211_ptr;
9029
9030 if (wdev->iftype != NL80211_IFTYPE_AP &&
9031 wdev->iftype != NL80211_IFTYPE_P2P_GO)
9032 return -EINVAL;
9033
Eric W. Biederman15e47302012-09-07 20:12:54 +00009034 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01009035 return -EBUSY;
9036
Eric W. Biederman15e47302012-09-07 20:12:54 +00009037 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01009038 return 0;
9039}
9040
Johannes Berg7f6cf312011-11-04 11:18:15 +01009041static int nl80211_probe_client(struct sk_buff *skb,
9042 struct genl_info *info)
9043{
9044 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9045 struct net_device *dev = info->user_ptr[1];
9046 struct wireless_dev *wdev = dev->ieee80211_ptr;
9047 struct sk_buff *msg;
9048 void *hdr;
9049 const u8 *addr;
9050 u64 cookie;
9051 int err;
9052
9053 if (wdev->iftype != NL80211_IFTYPE_AP &&
9054 wdev->iftype != NL80211_IFTYPE_P2P_GO)
9055 return -EOPNOTSUPP;
9056
9057 if (!info->attrs[NL80211_ATTR_MAC])
9058 return -EINVAL;
9059
9060 if (!rdev->ops->probe_client)
9061 return -EOPNOTSUPP;
9062
9063 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9064 if (!msg)
9065 return -ENOMEM;
9066
Eric W. Biederman15e47302012-09-07 20:12:54 +00009067 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01009068 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03009069 if (!hdr) {
9070 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01009071 goto free_msg;
9072 }
9073
9074 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
9075
Hila Gonene35e4d22012-06-27 17:19:42 +03009076 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01009077 if (err)
9078 goto free_msg;
9079
David S. Miller9360ffd2012-03-29 04:41:26 -04009080 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
9081 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01009082
9083 genlmsg_end(msg, hdr);
9084
9085 return genlmsg_reply(msg, info);
9086
9087 nla_put_failure:
9088 err = -ENOBUFS;
9089 free_msg:
9090 nlmsg_free(msg);
9091 return err;
9092}
9093
Johannes Berg5e7602302011-11-04 11:18:17 +01009094static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
9095{
9096 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07009097 struct cfg80211_beacon_registration *reg, *nreg;
9098 int rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01009099
9100 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
9101 return -EOPNOTSUPP;
9102
Ben Greear37c73b52012-10-26 14:49:25 -07009103 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
9104 if (!nreg)
9105 return -ENOMEM;
Johannes Berg5e7602302011-11-04 11:18:17 +01009106
Ben Greear37c73b52012-10-26 14:49:25 -07009107 /* First, check if already registered. */
9108 spin_lock_bh(&rdev->beacon_registrations_lock);
9109 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
9110 if (reg->nlportid == info->snd_portid) {
9111 rv = -EALREADY;
9112 goto out_err;
9113 }
9114 }
9115 /* Add it to the list */
9116 nreg->nlportid = info->snd_portid;
9117 list_add(&nreg->list, &rdev->beacon_registrations);
9118
9119 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +01009120
9121 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07009122out_err:
9123 spin_unlock_bh(&rdev->beacon_registrations_lock);
9124 kfree(nreg);
9125 return rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01009126}
9127
Johannes Berg98104fde2012-06-16 00:19:54 +02009128static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
9129{
9130 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9131 struct wireless_dev *wdev = info->user_ptr[1];
9132 int err;
9133
9134 if (!rdev->ops->start_p2p_device)
9135 return -EOPNOTSUPP;
9136
9137 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
9138 return -EOPNOTSUPP;
9139
9140 if (wdev->p2p_started)
9141 return 0;
9142
Luciano Coelhob6a55012014-02-27 11:07:21 +02009143 if (rfkill_blocked(rdev->rfkill))
9144 return -ERFKILL;
Johannes Berg98104fde2012-06-16 00:19:54 +02009145
Johannes Bergeeb126e2012-10-23 15:16:50 +02009146 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02009147 if (err)
9148 return err;
9149
9150 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02009151 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02009152
9153 return 0;
9154}
9155
9156static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
9157{
9158 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9159 struct wireless_dev *wdev = info->user_ptr[1];
9160
9161 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
9162 return -EOPNOTSUPP;
9163
9164 if (!rdev->ops->stop_p2p_device)
9165 return -EOPNOTSUPP;
9166
Johannes Bergf9f47522013-03-19 15:04:07 +01009167 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02009168
9169 return 0;
9170}
9171
Johannes Berg3713b4e2013-02-14 16:19:38 +01009172static int nl80211_get_protocol_features(struct sk_buff *skb,
9173 struct genl_info *info)
9174{
9175 void *hdr;
9176 struct sk_buff *msg;
9177
9178 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9179 if (!msg)
9180 return -ENOMEM;
9181
9182 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
9183 NL80211_CMD_GET_PROTOCOL_FEATURES);
9184 if (!hdr)
9185 goto nla_put_failure;
9186
9187 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
9188 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
9189 goto nla_put_failure;
9190
9191 genlmsg_end(msg, hdr);
9192 return genlmsg_reply(msg, info);
9193
9194 nla_put_failure:
9195 kfree_skb(msg);
9196 return -ENOBUFS;
9197}
9198
Jouni Malinen355199e2013-02-27 17:14:27 +02009199static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
9200{
9201 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9202 struct cfg80211_update_ft_ies_params ft_params;
9203 struct net_device *dev = info->user_ptr[1];
9204
9205 if (!rdev->ops->update_ft_ies)
9206 return -EOPNOTSUPP;
9207
9208 if (!info->attrs[NL80211_ATTR_MDID] ||
9209 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
9210 return -EINVAL;
9211
9212 memset(&ft_params, 0, sizeof(ft_params));
9213 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
9214 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
9215 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
9216
9217 return rdev_update_ft_ies(rdev, dev, &ft_params);
9218}
9219
Arend van Spriel5de17982013-04-18 15:49:00 +02009220static int nl80211_crit_protocol_start(struct sk_buff *skb,
9221 struct genl_info *info)
9222{
9223 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9224 struct wireless_dev *wdev = info->user_ptr[1];
9225 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
9226 u16 duration;
9227 int ret;
9228
9229 if (!rdev->ops->crit_proto_start)
9230 return -EOPNOTSUPP;
9231
9232 if (WARN_ON(!rdev->ops->crit_proto_stop))
9233 return -EINVAL;
9234
9235 if (rdev->crit_proto_nlportid)
9236 return -EBUSY;
9237
9238 /* determine protocol if provided */
9239 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
9240 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
9241
9242 if (proto >= NUM_NL80211_CRIT_PROTO)
9243 return -EINVAL;
9244
9245 /* timeout must be provided */
9246 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
9247 return -EINVAL;
9248
9249 duration =
9250 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
9251
9252 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
9253 return -ERANGE;
9254
9255 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
9256 if (!ret)
9257 rdev->crit_proto_nlportid = info->snd_portid;
9258
9259 return ret;
9260}
9261
9262static int nl80211_crit_protocol_stop(struct sk_buff *skb,
9263 struct genl_info *info)
9264{
9265 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9266 struct wireless_dev *wdev = info->user_ptr[1];
9267
9268 if (!rdev->ops->crit_proto_stop)
9269 return -EOPNOTSUPP;
9270
9271 if (rdev->crit_proto_nlportid) {
9272 rdev->crit_proto_nlportid = 0;
9273 rdev_crit_proto_stop(rdev, wdev);
9274 }
9275 return 0;
9276}
9277
Johannes Bergad7e7182013-11-13 13:37:47 +01009278static int nl80211_vendor_cmd(struct sk_buff *skb, struct genl_info *info)
9279{
9280 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9281 struct wireless_dev *wdev =
9282 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
9283 int i, err;
9284 u32 vid, subcmd;
9285
9286 if (!rdev->wiphy.vendor_commands)
9287 return -EOPNOTSUPP;
9288
9289 if (IS_ERR(wdev)) {
9290 err = PTR_ERR(wdev);
9291 if (err != -EINVAL)
9292 return err;
9293 wdev = NULL;
9294 } else if (wdev->wiphy != &rdev->wiphy) {
9295 return -EINVAL;
9296 }
9297
9298 if (!info->attrs[NL80211_ATTR_VENDOR_ID] ||
9299 !info->attrs[NL80211_ATTR_VENDOR_SUBCMD])
9300 return -EINVAL;
9301
9302 vid = nla_get_u32(info->attrs[NL80211_ATTR_VENDOR_ID]);
9303 subcmd = nla_get_u32(info->attrs[NL80211_ATTR_VENDOR_SUBCMD]);
9304 for (i = 0; i < rdev->wiphy.n_vendor_commands; i++) {
9305 const struct wiphy_vendor_command *vcmd;
9306 void *data = NULL;
9307 int len = 0;
9308
9309 vcmd = &rdev->wiphy.vendor_commands[i];
9310
9311 if (vcmd->info.vendor_id != vid || vcmd->info.subcmd != subcmd)
9312 continue;
9313
9314 if (vcmd->flags & (WIPHY_VENDOR_CMD_NEED_WDEV |
9315 WIPHY_VENDOR_CMD_NEED_NETDEV)) {
9316 if (!wdev)
9317 return -EINVAL;
9318 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_NETDEV &&
9319 !wdev->netdev)
9320 return -EINVAL;
9321
9322 if (vcmd->flags & WIPHY_VENDOR_CMD_NEED_RUNNING) {
9323 if (wdev->netdev &&
9324 !netif_running(wdev->netdev))
9325 return -ENETDOWN;
9326 if (!wdev->netdev && !wdev->p2p_started)
9327 return -ENETDOWN;
9328 }
9329 } else {
9330 wdev = NULL;
9331 }
9332
9333 if (info->attrs[NL80211_ATTR_VENDOR_DATA]) {
9334 data = nla_data(info->attrs[NL80211_ATTR_VENDOR_DATA]);
9335 len = nla_len(info->attrs[NL80211_ATTR_VENDOR_DATA]);
9336 }
9337
9338 rdev->cur_cmd_info = info;
9339 err = rdev->wiphy.vendor_commands[i].doit(&rdev->wiphy, wdev,
9340 data, len);
9341 rdev->cur_cmd_info = NULL;
9342 return err;
9343 }
9344
9345 return -EOPNOTSUPP;
9346}
9347
9348struct sk_buff *__cfg80211_alloc_reply_skb(struct wiphy *wiphy,
9349 enum nl80211_commands cmd,
9350 enum nl80211_attrs attr,
9351 int approxlen)
9352{
Zhao, Gangf26cbf42014-04-21 12:53:03 +08009353 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergad7e7182013-11-13 13:37:47 +01009354
9355 if (WARN_ON(!rdev->cur_cmd_info))
9356 return NULL;
9357
9358 return __cfg80211_alloc_vendor_skb(rdev, approxlen,
9359 rdev->cur_cmd_info->snd_portid,
9360 rdev->cur_cmd_info->snd_seq,
Johannes Berg567ffc32013-12-18 14:43:31 +01009361 cmd, attr, NULL, GFP_KERNEL);
Johannes Bergad7e7182013-11-13 13:37:47 +01009362}
9363EXPORT_SYMBOL(__cfg80211_alloc_reply_skb);
9364
9365int cfg80211_vendor_cmd_reply(struct sk_buff *skb)
9366{
9367 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
9368 void *hdr = ((void **)skb->cb)[1];
9369 struct nlattr *data = ((void **)skb->cb)[2];
9370
Johannes Bergbd8c78e2014-07-30 14:55:26 +02009371 /* clear CB data for netlink core to own from now on */
9372 memset(skb->cb, 0, sizeof(skb->cb));
9373
Johannes Bergad7e7182013-11-13 13:37:47 +01009374 if (WARN_ON(!rdev->cur_cmd_info)) {
9375 kfree_skb(skb);
9376 return -EINVAL;
9377 }
9378
9379 nla_nest_end(skb, data);
9380 genlmsg_end(skb, hdr);
9381 return genlmsg_reply(skb, rdev->cur_cmd_info);
9382}
9383EXPORT_SYMBOL_GPL(cfg80211_vendor_cmd_reply);
9384
9385
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -08009386static int nl80211_set_qos_map(struct sk_buff *skb,
9387 struct genl_info *info)
9388{
9389 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9390 struct cfg80211_qos_map *qos_map = NULL;
9391 struct net_device *dev = info->user_ptr[1];
9392 u8 *pos, len, num_des, des_len, des;
9393 int ret;
9394
9395 if (!rdev->ops->set_qos_map)
9396 return -EOPNOTSUPP;
9397
9398 if (info->attrs[NL80211_ATTR_QOS_MAP]) {
9399 pos = nla_data(info->attrs[NL80211_ATTR_QOS_MAP]);
9400 len = nla_len(info->attrs[NL80211_ATTR_QOS_MAP]);
9401
9402 if (len % 2 || len < IEEE80211_QOS_MAP_LEN_MIN ||
9403 len > IEEE80211_QOS_MAP_LEN_MAX)
9404 return -EINVAL;
9405
9406 qos_map = kzalloc(sizeof(struct cfg80211_qos_map), GFP_KERNEL);
9407 if (!qos_map)
9408 return -ENOMEM;
9409
9410 num_des = (len - IEEE80211_QOS_MAP_LEN_MIN) >> 1;
9411 if (num_des) {
9412 des_len = num_des *
9413 sizeof(struct cfg80211_dscp_exception);
9414 memcpy(qos_map->dscp_exception, pos, des_len);
9415 qos_map->num_des = num_des;
9416 for (des = 0; des < num_des; des++) {
9417 if (qos_map->dscp_exception[des].up > 7) {
9418 kfree(qos_map);
9419 return -EINVAL;
9420 }
9421 }
9422 pos += des_len;
9423 }
9424 memcpy(qos_map->up, pos, IEEE80211_QOS_MAP_LEN_MIN);
9425 }
9426
9427 wdev_lock(dev->ieee80211_ptr);
9428 ret = nl80211_key_allowed(dev->ieee80211_ptr);
9429 if (!ret)
9430 ret = rdev_set_qos_map(rdev, dev, qos_map);
9431 wdev_unlock(dev->ieee80211_ptr);
9432
9433 kfree(qos_map);
9434 return ret;
9435}
9436
Johannes Berg960d01a2014-09-09 22:55:35 +03009437static int nl80211_add_tx_ts(struct sk_buff *skb, struct genl_info *info)
9438{
9439 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9440 struct net_device *dev = info->user_ptr[1];
9441 struct wireless_dev *wdev = dev->ieee80211_ptr;
9442 const u8 *peer;
9443 u8 tsid, up;
9444 u16 admitted_time = 0;
9445 int err;
9446
9447 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_WMM_ADMISSION))
9448 return -EOPNOTSUPP;
9449
9450 if (!info->attrs[NL80211_ATTR_TSID] || !info->attrs[NL80211_ATTR_MAC] ||
9451 !info->attrs[NL80211_ATTR_USER_PRIO])
9452 return -EINVAL;
9453
9454 tsid = nla_get_u8(info->attrs[NL80211_ATTR_TSID]);
9455 if (tsid >= IEEE80211_NUM_TIDS)
9456 return -EINVAL;
9457
9458 up = nla_get_u8(info->attrs[NL80211_ATTR_USER_PRIO]);
9459 if (up >= IEEE80211_NUM_UPS)
9460 return -EINVAL;
9461
9462 /* WMM uses TIDs 0-7 even for TSPEC */
9463 if (tsid < IEEE80211_FIRST_TSPEC_TSID) {
9464 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_WMM_ADMISSION))
9465 return -EINVAL;
9466 } else {
9467 /* TODO: handle 802.11 TSPEC/admission control
9468 * need more attributes for that (e.g. BA session requirement)
9469 */
9470 return -EINVAL;
9471 }
9472
9473 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
9474
9475 if (info->attrs[NL80211_ATTR_ADMITTED_TIME]) {
9476 admitted_time =
9477 nla_get_u16(info->attrs[NL80211_ATTR_ADMITTED_TIME]);
9478 if (!admitted_time)
9479 return -EINVAL;
9480 }
9481
9482 wdev_lock(wdev);
9483 switch (wdev->iftype) {
9484 case NL80211_IFTYPE_STATION:
9485 case NL80211_IFTYPE_P2P_CLIENT:
9486 if (wdev->current_bss)
9487 break;
9488 err = -ENOTCONN;
9489 goto out;
9490 default:
9491 err = -EOPNOTSUPP;
9492 goto out;
9493 }
9494
9495 err = rdev_add_tx_ts(rdev, dev, tsid, peer, up, admitted_time);
9496
9497 out:
9498 wdev_unlock(wdev);
9499 return err;
9500}
9501
9502static int nl80211_del_tx_ts(struct sk_buff *skb, struct genl_info *info)
9503{
9504 struct cfg80211_registered_device *rdev = info->user_ptr[0];
9505 struct net_device *dev = info->user_ptr[1];
9506 struct wireless_dev *wdev = dev->ieee80211_ptr;
9507 const u8 *peer;
9508 u8 tsid;
9509 int err;
9510
9511 if (!info->attrs[NL80211_ATTR_TSID] || !info->attrs[NL80211_ATTR_MAC])
9512 return -EINVAL;
9513
9514 tsid = nla_get_u8(info->attrs[NL80211_ATTR_TSID]);
9515 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
9516
9517 wdev_lock(wdev);
9518 err = rdev_del_tx_ts(rdev, dev, tsid, peer);
9519 wdev_unlock(wdev);
9520
9521 return err;
9522}
9523
Johannes Berg4c476992010-10-04 21:36:35 +02009524#define NL80211_FLAG_NEED_WIPHY 0x01
9525#define NL80211_FLAG_NEED_NETDEV 0x02
9526#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02009527#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
9528#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
9529 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02009530#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02009531/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02009532#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
9533 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg5393b912014-09-10 15:00:16 +03009534#define NL80211_FLAG_CLEAR_SKB 0x20
Johannes Berg4c476992010-10-04 21:36:35 +02009535
Johannes Bergf84f7712013-11-14 17:14:45 +01009536static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +02009537 struct genl_info *info)
9538{
9539 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02009540 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02009541 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02009542 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
9543
9544 if (rtnl)
9545 rtnl_lock();
9546
9547 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02009548 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02009549 if (IS_ERR(rdev)) {
9550 if (rtnl)
9551 rtnl_unlock();
9552 return PTR_ERR(rdev);
9553 }
9554 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02009555 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
9556 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02009557 ASSERT_RTNL();
9558
Johannes Berg89a54e42012-06-15 14:33:17 +02009559 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
9560 info->attrs);
9561 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02009562 if (rtnl)
9563 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02009564 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02009565 }
Johannes Berg89a54e42012-06-15 14:33:17 +02009566
Johannes Berg89a54e42012-06-15 14:33:17 +02009567 dev = wdev->netdev;
Zhao, Gangf26cbf42014-04-21 12:53:03 +08009568 rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg89a54e42012-06-15 14:33:17 +02009569
Johannes Berg1bf614e2012-06-15 15:23:36 +02009570 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
9571 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02009572 if (rtnl)
9573 rtnl_unlock();
9574 return -EINVAL;
9575 }
9576
9577 info->user_ptr[1] = dev;
9578 } else {
9579 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02009580 }
Johannes Berg89a54e42012-06-15 14:33:17 +02009581
Johannes Berg1bf614e2012-06-15 15:23:36 +02009582 if (dev) {
9583 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
9584 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02009585 if (rtnl)
9586 rtnl_unlock();
9587 return -ENETDOWN;
9588 }
9589
9590 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02009591 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
9592 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02009593 if (rtnl)
9594 rtnl_unlock();
9595 return -ENETDOWN;
9596 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02009597 }
9598
Johannes Berg4c476992010-10-04 21:36:35 +02009599 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02009600 }
9601
9602 return 0;
9603}
9604
Johannes Bergf84f7712013-11-14 17:14:45 +01009605static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +02009606 struct genl_info *info)
9607{
Johannes Berg1bf614e2012-06-15 15:23:36 +02009608 if (info->user_ptr[1]) {
9609 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
9610 struct wireless_dev *wdev = info->user_ptr[1];
9611
9612 if (wdev->netdev)
9613 dev_put(wdev->netdev);
9614 } else {
9615 dev_put(info->user_ptr[1]);
9616 }
9617 }
Johannes Berg5393b912014-09-10 15:00:16 +03009618
Johannes Berg4c476992010-10-04 21:36:35 +02009619 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
9620 rtnl_unlock();
Johannes Berg5393b912014-09-10 15:00:16 +03009621
9622 /* If needed, clear the netlink message payload from the SKB
9623 * as it might contain key data that shouldn't stick around on
9624 * the heap after the SKB is freed. The netlink message header
9625 * is still needed for further processing, so leave it intact.
9626 */
9627 if (ops->internal_flags & NL80211_FLAG_CLEAR_SKB) {
9628 struct nlmsghdr *nlh = nlmsg_hdr(skb);
9629
9630 memset(nlmsg_data(nlh), 0, nlmsg_len(nlh));
9631 }
Johannes Berg4c476992010-10-04 21:36:35 +02009632}
9633
Johannes Berg4534de82013-11-14 17:14:46 +01009634static const struct genl_ops nl80211_ops[] = {
Johannes Berg55682962007-09-20 13:09:35 -04009635 {
9636 .cmd = NL80211_CMD_GET_WIPHY,
9637 .doit = nl80211_get_wiphy,
9638 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02009639 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04009640 .policy = nl80211_policy,
9641 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02009642 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9643 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009644 },
9645 {
9646 .cmd = NL80211_CMD_SET_WIPHY,
9647 .doit = nl80211_set_wiphy,
9648 .policy = nl80211_policy,
9649 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009650 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009651 },
9652 {
9653 .cmd = NL80211_CMD_GET_INTERFACE,
9654 .doit = nl80211_get_interface,
9655 .dumpit = nl80211_dump_interface,
9656 .policy = nl80211_policy,
9657 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02009658 .internal_flags = NL80211_FLAG_NEED_WDEV |
9659 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009660 },
9661 {
9662 .cmd = NL80211_CMD_SET_INTERFACE,
9663 .doit = nl80211_set_interface,
9664 .policy = nl80211_policy,
9665 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009666 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9667 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009668 },
9669 {
9670 .cmd = NL80211_CMD_NEW_INTERFACE,
9671 .doit = nl80211_new_interface,
9672 .policy = nl80211_policy,
9673 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009674 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9675 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009676 },
9677 {
9678 .cmd = NL80211_CMD_DEL_INTERFACE,
9679 .doit = nl80211_del_interface,
9680 .policy = nl80211_policy,
9681 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02009682 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009683 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009684 },
Johannes Berg41ade002007-12-19 02:03:29 +01009685 {
9686 .cmd = NL80211_CMD_GET_KEY,
9687 .doit = nl80211_get_key,
9688 .policy = nl80211_policy,
9689 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009690 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009691 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009692 },
9693 {
9694 .cmd = NL80211_CMD_SET_KEY,
9695 .doit = nl80211_set_key,
9696 .policy = nl80211_policy,
9697 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009698 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +03009699 NL80211_FLAG_NEED_RTNL |
9700 NL80211_FLAG_CLEAR_SKB,
Johannes Berg41ade002007-12-19 02:03:29 +01009701 },
9702 {
9703 .cmd = NL80211_CMD_NEW_KEY,
9704 .doit = nl80211_new_key,
9705 .policy = nl80211_policy,
9706 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009707 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +03009708 NL80211_FLAG_NEED_RTNL |
9709 NL80211_FLAG_CLEAR_SKB,
Johannes Berg41ade002007-12-19 02:03:29 +01009710 },
9711 {
9712 .cmd = NL80211_CMD_DEL_KEY,
9713 .doit = nl80211_del_key,
9714 .policy = nl80211_policy,
9715 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009716 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009717 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009718 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01009719 {
9720 .cmd = NL80211_CMD_SET_BEACON,
9721 .policy = nl80211_policy,
9722 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009723 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009724 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009725 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009726 },
9727 {
Johannes Berg88600202012-02-13 15:17:18 +01009728 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009729 .policy = nl80211_policy,
9730 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009731 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009732 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009733 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009734 },
9735 {
Johannes Berg88600202012-02-13 15:17:18 +01009736 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009737 .policy = nl80211_policy,
9738 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009739 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009740 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009741 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009742 },
Johannes Berg5727ef12007-12-19 02:03:34 +01009743 {
9744 .cmd = NL80211_CMD_GET_STATION,
9745 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009746 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01009747 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02009748 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9749 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009750 },
9751 {
9752 .cmd = NL80211_CMD_SET_STATION,
9753 .doit = nl80211_set_station,
9754 .policy = nl80211_policy,
9755 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009756 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009757 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009758 },
9759 {
9760 .cmd = NL80211_CMD_NEW_STATION,
9761 .doit = nl80211_new_station,
9762 .policy = nl80211_policy,
9763 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009764 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009765 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009766 },
9767 {
9768 .cmd = NL80211_CMD_DEL_STATION,
9769 .doit = nl80211_del_station,
9770 .policy = nl80211_policy,
9771 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009772 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009773 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009774 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009775 {
9776 .cmd = NL80211_CMD_GET_MPATH,
9777 .doit = nl80211_get_mpath,
9778 .dumpit = nl80211_dump_mpath,
9779 .policy = nl80211_policy,
9780 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009781 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009782 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009783 },
9784 {
9785 .cmd = NL80211_CMD_SET_MPATH,
9786 .doit = nl80211_set_mpath,
9787 .policy = nl80211_policy,
9788 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009789 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009790 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009791 },
9792 {
9793 .cmd = NL80211_CMD_NEW_MPATH,
9794 .doit = nl80211_new_mpath,
9795 .policy = nl80211_policy,
9796 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009797 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009798 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009799 },
9800 {
9801 .cmd = NL80211_CMD_DEL_MPATH,
9802 .doit = nl80211_del_mpath,
9803 .policy = nl80211_policy,
9804 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009805 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009806 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009807 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009808 {
9809 .cmd = NL80211_CMD_SET_BSS,
9810 .doit = nl80211_set_bss,
9811 .policy = nl80211_policy,
9812 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009813 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009814 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009815 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009816 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009817 .cmd = NL80211_CMD_GET_REG,
9818 .doit = nl80211_get_reg,
9819 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009820 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009821 /* can be retrieved by unprivileged users */
9822 },
9823 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009824 .cmd = NL80211_CMD_SET_REG,
9825 .doit = nl80211_set_reg,
9826 .policy = nl80211_policy,
9827 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009828 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009829 },
9830 {
9831 .cmd = NL80211_CMD_REQ_SET_REG,
9832 .doit = nl80211_req_set_reg,
9833 .policy = nl80211_policy,
9834 .flags = GENL_ADMIN_PERM,
9835 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009836 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009837 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9838 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009839 .policy = nl80211_policy,
9840 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009841 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009842 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009843 },
9844 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009845 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9846 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009847 .policy = nl80211_policy,
9848 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009849 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009850 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009851 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009852 {
Johannes Berg2a519312009-02-10 21:25:55 +01009853 .cmd = NL80211_CMD_TRIGGER_SCAN,
9854 .doit = nl80211_trigger_scan,
9855 .policy = nl80211_policy,
9856 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009857 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009858 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009859 },
9860 {
9861 .cmd = NL80211_CMD_GET_SCAN,
9862 .policy = nl80211_policy,
9863 .dumpit = nl80211_dump_scan,
9864 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009865 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009866 .cmd = NL80211_CMD_START_SCHED_SCAN,
9867 .doit = nl80211_start_sched_scan,
9868 .policy = nl80211_policy,
9869 .flags = GENL_ADMIN_PERM,
9870 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9871 NL80211_FLAG_NEED_RTNL,
9872 },
9873 {
9874 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9875 .doit = nl80211_stop_sched_scan,
9876 .policy = nl80211_policy,
9877 .flags = GENL_ADMIN_PERM,
9878 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9879 NL80211_FLAG_NEED_RTNL,
9880 },
9881 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009882 .cmd = NL80211_CMD_AUTHENTICATE,
9883 .doit = nl80211_authenticate,
9884 .policy = nl80211_policy,
9885 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009886 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +03009887 NL80211_FLAG_NEED_RTNL |
9888 NL80211_FLAG_CLEAR_SKB,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009889 },
9890 {
9891 .cmd = NL80211_CMD_ASSOCIATE,
9892 .doit = nl80211_associate,
9893 .policy = nl80211_policy,
9894 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009895 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009896 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009897 },
9898 {
9899 .cmd = NL80211_CMD_DEAUTHENTICATE,
9900 .doit = nl80211_deauthenticate,
9901 .policy = nl80211_policy,
9902 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009903 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009904 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009905 },
9906 {
9907 .cmd = NL80211_CMD_DISASSOCIATE,
9908 .doit = nl80211_disassociate,
9909 .policy = nl80211_policy,
9910 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009911 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009912 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009913 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009914 {
9915 .cmd = NL80211_CMD_JOIN_IBSS,
9916 .doit = nl80211_join_ibss,
9917 .policy = nl80211_policy,
9918 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009919 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009920 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009921 },
9922 {
9923 .cmd = NL80211_CMD_LEAVE_IBSS,
9924 .doit = nl80211_leave_ibss,
9925 .policy = nl80211_policy,
9926 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009927 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009928 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009929 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009930#ifdef CONFIG_NL80211_TESTMODE
9931 {
9932 .cmd = NL80211_CMD_TESTMODE,
9933 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009934 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009935 .policy = nl80211_policy,
9936 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009937 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9938 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009939 },
9940#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009941 {
9942 .cmd = NL80211_CMD_CONNECT,
9943 .doit = nl80211_connect,
9944 .policy = nl80211_policy,
9945 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009946 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009947 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009948 },
9949 {
9950 .cmd = NL80211_CMD_DISCONNECT,
9951 .doit = nl80211_disconnect,
9952 .policy = nl80211_policy,
9953 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009954 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009955 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009956 },
Johannes Berg463d0182009-07-14 00:33:35 +02009957 {
9958 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9959 .doit = nl80211_wiphy_netns,
9960 .policy = nl80211_policy,
9961 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009962 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9963 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009964 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009965 {
9966 .cmd = NL80211_CMD_GET_SURVEY,
9967 .policy = nl80211_policy,
9968 .dumpit = nl80211_dump_survey,
9969 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009970 {
9971 .cmd = NL80211_CMD_SET_PMKSA,
9972 .doit = nl80211_setdel_pmksa,
9973 .policy = nl80211_policy,
9974 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009975 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009976 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009977 },
9978 {
9979 .cmd = NL80211_CMD_DEL_PMKSA,
9980 .doit = nl80211_setdel_pmksa,
9981 .policy = nl80211_policy,
9982 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009983 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009984 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009985 },
9986 {
9987 .cmd = NL80211_CMD_FLUSH_PMKSA,
9988 .doit = nl80211_flush_pmksa,
9989 .policy = nl80211_policy,
9990 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009991 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009992 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009993 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009994 {
9995 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9996 .doit = nl80211_remain_on_channel,
9997 .policy = nl80211_policy,
9998 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009999 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020010000 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010001 },
10002 {
10003 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
10004 .doit = nl80211_cancel_remain_on_channel,
10005 .policy = nl80211_policy,
10006 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010007 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020010008 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010009 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +020010010 {
10011 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
10012 .doit = nl80211_set_tx_bitrate_mask,
10013 .policy = nl80211_policy,
10014 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010015 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10016 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +020010017 },
Jouni Malinen026331c2010-02-15 12:53:10 +020010018 {
Johannes Berg2e161f72010-08-12 15:38:38 +020010019 .cmd = NL80211_CMD_REGISTER_FRAME,
10020 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +020010021 .policy = nl80211_policy,
10022 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010023 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +020010024 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +020010025 },
10026 {
Johannes Berg2e161f72010-08-12 15:38:38 +020010027 .cmd = NL80211_CMD_FRAME,
10028 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +020010029 .policy = nl80211_policy,
10030 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010031 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +020010032 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +020010033 },
Kalle Valoffb9eb32010-02-17 17:58:10 +020010034 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +010010035 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
10036 .doit = nl80211_tx_mgmt_cancel_wait,
10037 .policy = nl80211_policy,
10038 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +020010039 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +010010040 NL80211_FLAG_NEED_RTNL,
10041 },
10042 {
Kalle Valoffb9eb32010-02-17 17:58:10 +020010043 .cmd = NL80211_CMD_SET_POWER_SAVE,
10044 .doit = nl80211_set_power_save,
10045 .policy = nl80211_policy,
10046 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010047 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10048 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +020010049 },
10050 {
10051 .cmd = NL80211_CMD_GET_POWER_SAVE,
10052 .doit = nl80211_get_power_save,
10053 .policy = nl80211_policy,
10054 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +020010055 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10056 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +020010057 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010058 {
10059 .cmd = NL80211_CMD_SET_CQM,
10060 .doit = nl80211_set_cqm,
10061 .policy = nl80211_policy,
10062 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010063 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10064 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010065 },
Johannes Bergf444de02010-05-05 15:25:02 +020010066 {
10067 .cmd = NL80211_CMD_SET_CHANNEL,
10068 .doit = nl80211_set_channel,
10069 .policy = nl80211_policy,
10070 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +020010071 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10072 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +020010073 },
Bill Jordane8347eb2010-10-01 13:54:28 -040010074 {
10075 .cmd = NL80211_CMD_SET_WDS_PEER,
10076 .doit = nl80211_set_wds_peer,
10077 .policy = nl80211_policy,
10078 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +020010079 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10080 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -040010081 },
Johannes Berg29cbe682010-12-03 09:20:44 +010010082 {
10083 .cmd = NL80211_CMD_JOIN_MESH,
10084 .doit = nl80211_join_mesh,
10085 .policy = nl80211_policy,
10086 .flags = GENL_ADMIN_PERM,
10087 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10088 NL80211_FLAG_NEED_RTNL,
10089 },
10090 {
10091 .cmd = NL80211_CMD_LEAVE_MESH,
10092 .doit = nl80211_leave_mesh,
10093 .policy = nl80211_policy,
10094 .flags = GENL_ADMIN_PERM,
10095 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10096 NL80211_FLAG_NEED_RTNL,
10097 },
Johannes Bergdfb89c52012-06-27 09:23:48 +020010098#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +020010099 {
10100 .cmd = NL80211_CMD_GET_WOWLAN,
10101 .doit = nl80211_get_wowlan,
10102 .policy = nl80211_policy,
10103 /* can be retrieved by unprivileged users */
10104 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10105 NL80211_FLAG_NEED_RTNL,
10106 },
10107 {
10108 .cmd = NL80211_CMD_SET_WOWLAN,
10109 .doit = nl80211_set_wowlan,
10110 .policy = nl80211_policy,
10111 .flags = GENL_ADMIN_PERM,
10112 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10113 NL80211_FLAG_NEED_RTNL,
10114 },
Johannes Bergdfb89c52012-06-27 09:23:48 +020010115#endif
Johannes Berge5497d72011-07-05 16:35:40 +020010116 {
10117 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
10118 .doit = nl80211_set_rekey_data,
10119 .policy = nl80211_policy,
10120 .flags = GENL_ADMIN_PERM,
10121 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg5393b912014-09-10 15:00:16 +030010122 NL80211_FLAG_NEED_RTNL |
10123 NL80211_FLAG_CLEAR_SKB,
Johannes Berge5497d72011-07-05 16:35:40 +020010124 },
Arik Nemtsov109086c2011-09-28 14:12:50 +030010125 {
10126 .cmd = NL80211_CMD_TDLS_MGMT,
10127 .doit = nl80211_tdls_mgmt,
10128 .policy = nl80211_policy,
10129 .flags = GENL_ADMIN_PERM,
10130 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10131 NL80211_FLAG_NEED_RTNL,
10132 },
10133 {
10134 .cmd = NL80211_CMD_TDLS_OPER,
10135 .doit = nl80211_tdls_oper,
10136 .policy = nl80211_policy,
10137 .flags = GENL_ADMIN_PERM,
10138 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10139 NL80211_FLAG_NEED_RTNL,
10140 },
Johannes Berg28946da2011-11-04 11:18:12 +010010141 {
10142 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
10143 .doit = nl80211_register_unexpected_frame,
10144 .policy = nl80211_policy,
10145 .flags = GENL_ADMIN_PERM,
10146 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10147 NL80211_FLAG_NEED_RTNL,
10148 },
Johannes Berg7f6cf312011-11-04 11:18:15 +010010149 {
10150 .cmd = NL80211_CMD_PROBE_CLIENT,
10151 .doit = nl80211_probe_client,
10152 .policy = nl80211_policy,
10153 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +020010154 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +010010155 NL80211_FLAG_NEED_RTNL,
10156 },
Johannes Berg5e7602302011-11-04 11:18:17 +010010157 {
10158 .cmd = NL80211_CMD_REGISTER_BEACONS,
10159 .doit = nl80211_register_beacons,
10160 .policy = nl80211_policy,
10161 .flags = GENL_ADMIN_PERM,
10162 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10163 NL80211_FLAG_NEED_RTNL,
10164 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +010010165 {
10166 .cmd = NL80211_CMD_SET_NOACK_MAP,
10167 .doit = nl80211_set_noack_map,
10168 .policy = nl80211_policy,
10169 .flags = GENL_ADMIN_PERM,
10170 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10171 NL80211_FLAG_NEED_RTNL,
10172 },
Johannes Berg98104fde2012-06-16 00:19:54 +020010173 {
10174 .cmd = NL80211_CMD_START_P2P_DEVICE,
10175 .doit = nl80211_start_p2p_device,
10176 .policy = nl80211_policy,
10177 .flags = GENL_ADMIN_PERM,
10178 .internal_flags = NL80211_FLAG_NEED_WDEV |
10179 NL80211_FLAG_NEED_RTNL,
10180 },
10181 {
10182 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
10183 .doit = nl80211_stop_p2p_device,
10184 .policy = nl80211_policy,
10185 .flags = GENL_ADMIN_PERM,
10186 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
10187 NL80211_FLAG_NEED_RTNL,
10188 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +010010189 {
10190 .cmd = NL80211_CMD_SET_MCAST_RATE,
10191 .doit = nl80211_set_mcast_rate,
10192 .policy = nl80211_policy,
10193 .flags = GENL_ADMIN_PERM,
10194 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10195 NL80211_FLAG_NEED_RTNL,
10196 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +053010197 {
10198 .cmd = NL80211_CMD_SET_MAC_ACL,
10199 .doit = nl80211_set_mac_acl,
10200 .policy = nl80211_policy,
10201 .flags = GENL_ADMIN_PERM,
10202 .internal_flags = NL80211_FLAG_NEED_NETDEV |
10203 NL80211_FLAG_NEED_RTNL,
10204 },
Simon Wunderlich04f39042013-02-08 18:16:19 +010010205 {
10206 .cmd = NL80211_CMD_RADAR_DETECT,
10207 .doit = nl80211_start_radar_detection,
10208 .policy = nl80211_policy,
10209 .flags = GENL_ADMIN_PERM,
10210 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10211 NL80211_FLAG_NEED_RTNL,
10212 },
Johannes Berg3713b4e2013-02-14 16:19:38 +010010213 {
10214 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
10215 .doit = nl80211_get_protocol_features,
10216 .policy = nl80211_policy,
10217 },
Jouni Malinen355199e2013-02-27 17:14:27 +020010218 {
10219 .cmd = NL80211_CMD_UPDATE_FT_IES,
10220 .doit = nl80211_update_ft_ies,
10221 .policy = nl80211_policy,
10222 .flags = GENL_ADMIN_PERM,
10223 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10224 NL80211_FLAG_NEED_RTNL,
10225 },
Arend van Spriel5de17982013-04-18 15:49:00 +020010226 {
10227 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
10228 .doit = nl80211_crit_protocol_start,
10229 .policy = nl80211_policy,
10230 .flags = GENL_ADMIN_PERM,
10231 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
10232 NL80211_FLAG_NEED_RTNL,
10233 },
10234 {
10235 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
10236 .doit = nl80211_crit_protocol_stop,
10237 .policy = nl80211_policy,
10238 .flags = GENL_ADMIN_PERM,
10239 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
10240 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -070010241 },
10242 {
10243 .cmd = NL80211_CMD_GET_COALESCE,
10244 .doit = nl80211_get_coalesce,
10245 .policy = nl80211_policy,
10246 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10247 NL80211_FLAG_NEED_RTNL,
10248 },
10249 {
10250 .cmd = NL80211_CMD_SET_COALESCE,
10251 .doit = nl80211_set_coalesce,
10252 .policy = nl80211_policy,
10253 .flags = GENL_ADMIN_PERM,
10254 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10255 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +020010256 },
10257 {
10258 .cmd = NL80211_CMD_CHANNEL_SWITCH,
10259 .doit = nl80211_channel_switch,
10260 .policy = nl80211_policy,
10261 .flags = GENL_ADMIN_PERM,
10262 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10263 NL80211_FLAG_NEED_RTNL,
10264 },
Johannes Bergad7e7182013-11-13 13:37:47 +010010265 {
10266 .cmd = NL80211_CMD_VENDOR,
10267 .doit = nl80211_vendor_cmd,
10268 .policy = nl80211_policy,
10269 .flags = GENL_ADMIN_PERM,
10270 .internal_flags = NL80211_FLAG_NEED_WIPHY |
10271 NL80211_FLAG_NEED_RTNL,
10272 },
Kyeyoon Parkfa9ffc72013-12-16 23:01:30 -080010273 {
10274 .cmd = NL80211_CMD_SET_QOS_MAP,
10275 .doit = nl80211_set_qos_map,
10276 .policy = nl80211_policy,
10277 .flags = GENL_ADMIN_PERM,
10278 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10279 NL80211_FLAG_NEED_RTNL,
10280 },
Johannes Berg960d01a2014-09-09 22:55:35 +030010281 {
10282 .cmd = NL80211_CMD_ADD_TX_TS,
10283 .doit = nl80211_add_tx_ts,
10284 .policy = nl80211_policy,
10285 .flags = GENL_ADMIN_PERM,
10286 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10287 NL80211_FLAG_NEED_RTNL,
10288 },
10289 {
10290 .cmd = NL80211_CMD_DEL_TX_TS,
10291 .doit = nl80211_del_tx_ts,
10292 .policy = nl80211_policy,
10293 .flags = GENL_ADMIN_PERM,
10294 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
10295 NL80211_FLAG_NEED_RTNL,
10296 },
Johannes Berg55682962007-09-20 13:09:35 -040010297};
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010298
Johannes Berg55682962007-09-20 13:09:35 -040010299/* notification functions */
10300
Johannes Berg3bb20552014-05-26 13:52:25 +020010301void nl80211_notify_wiphy(struct cfg80211_registered_device *rdev,
10302 enum nl80211_commands cmd)
Johannes Berg55682962007-09-20 13:09:35 -040010303{
10304 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +020010305 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -040010306
Johannes Berg3bb20552014-05-26 13:52:25 +020010307 WARN_ON(cmd != NL80211_CMD_NEW_WIPHY &&
10308 cmd != NL80211_CMD_DEL_WIPHY);
10309
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010310 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -040010311 if (!msg)
10312 return;
10313
Johannes Berg3bb20552014-05-26 13:52:25 +020010314 if (nl80211_send_wiphy(rdev, cmd, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -040010315 nlmsg_free(msg);
10316 return;
10317 }
10318
Johannes Berg68eb5502013-11-19 15:19:38 +010010319 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010320 NL80211_MCGRP_CONFIG, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -040010321}
10322
Johannes Berg362a4152009-05-24 16:43:15 +020010323static int nl80211_add_scan_req(struct sk_buff *msg,
10324 struct cfg80211_registered_device *rdev)
10325{
10326 struct cfg80211_scan_request *req = rdev->scan_req;
10327 struct nlattr *nest;
10328 int i;
10329
10330 if (WARN_ON(!req))
10331 return 0;
10332
10333 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
10334 if (!nest)
10335 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -040010336 for (i = 0; i < req->n_ssids; i++) {
10337 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
10338 goto nla_put_failure;
10339 }
Johannes Berg362a4152009-05-24 16:43:15 +020010340 nla_nest_end(msg, nest);
10341
10342 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
10343 if (!nest)
10344 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -040010345 for (i = 0; i < req->n_channels; i++) {
10346 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
10347 goto nla_put_failure;
10348 }
Johannes Berg362a4152009-05-24 16:43:15 +020010349 nla_nest_end(msg, nest);
10350
David S. Miller9360ffd2012-03-29 04:41:26 -040010351 if (req->ie &&
10352 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
10353 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +020010354
Johannes Bergae917c92013-10-25 11:05:22 +020010355 if (req->flags &&
10356 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags))
10357 goto nla_put_failure;
Sam Lefflered4737712012-10-11 21:03:31 -070010358
Johannes Berg362a4152009-05-24 16:43:15 +020010359 return 0;
10360 nla_put_failure:
10361 return -ENOBUFS;
10362}
10363
Johannes Berga538e2d2009-06-16 19:56:42 +020010364static int nl80211_send_scan_msg(struct sk_buff *msg,
10365 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +020010366 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010367 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +020010368 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +010010369{
10370 void *hdr;
10371
Eric W. Biederman15e47302012-09-07 20:12:54 +000010372 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +010010373 if (!hdr)
10374 return -1;
10375
David S. Miller9360ffd2012-03-29 04:41:26 -040010376 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +020010377 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10378 wdev->netdev->ifindex)) ||
10379 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
David S. Miller9360ffd2012-03-29 04:41:26 -040010380 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +010010381
Johannes Berg362a4152009-05-24 16:43:15 +020010382 /* ignore errors and send incomplete event anyway */
10383 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +010010384
10385 return genlmsg_end(msg, hdr);
10386
10387 nla_put_failure:
10388 genlmsg_cancel(msg, hdr);
10389 return -EMSGSIZE;
10390}
10391
Luciano Coelho807f8a82011-05-11 17:09:35 +030010392static int
10393nl80211_send_sched_scan_msg(struct sk_buff *msg,
10394 struct cfg80211_registered_device *rdev,
10395 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010396 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +030010397{
10398 void *hdr;
10399
Eric W. Biederman15e47302012-09-07 20:12:54 +000010400 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010401 if (!hdr)
10402 return -1;
10403
David S. Miller9360ffd2012-03-29 04:41:26 -040010404 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10405 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10406 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +030010407
10408 return genlmsg_end(msg, hdr);
10409
10410 nla_put_failure:
10411 genlmsg_cancel(msg, hdr);
10412 return -EMSGSIZE;
10413}
10414
Johannes Berga538e2d2009-06-16 19:56:42 +020010415void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +020010416 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +020010417{
10418 struct sk_buff *msg;
10419
Thomas Graf58050fc2012-06-28 03:57:45 +000010420 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +020010421 if (!msg)
10422 return;
10423
Johannes Bergfd014282012-06-18 19:17:03 +020010424 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +020010425 NL80211_CMD_TRIGGER_SCAN) < 0) {
10426 nlmsg_free(msg);
10427 return;
10428 }
10429
Johannes Berg68eb5502013-11-19 15:19:38 +010010430 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010431 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +020010432}
10433
Johannes Bergf9d15d12014-01-22 11:14:19 +020010434struct sk_buff *nl80211_build_scan_msg(struct cfg80211_registered_device *rdev,
10435 struct wireless_dev *wdev, bool aborted)
Johannes Berg2a519312009-02-10 21:25:55 +010010436{
10437 struct sk_buff *msg;
10438
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010439 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +010010440 if (!msg)
Johannes Bergf9d15d12014-01-22 11:14:19 +020010441 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +010010442
Johannes Bergfd014282012-06-18 19:17:03 +020010443 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Bergf9d15d12014-01-22 11:14:19 +020010444 aborted ? NL80211_CMD_SCAN_ABORTED :
10445 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +010010446 nlmsg_free(msg);
Johannes Bergf9d15d12014-01-22 11:14:19 +020010447 return NULL;
Johannes Berg2a519312009-02-10 21:25:55 +010010448 }
10449
Johannes Bergf9d15d12014-01-22 11:14:19 +020010450 return msg;
Johannes Berg2a519312009-02-10 21:25:55 +010010451}
10452
Johannes Bergf9d15d12014-01-22 11:14:19 +020010453void nl80211_send_scan_result(struct cfg80211_registered_device *rdev,
10454 struct sk_buff *msg)
Johannes Berg2a519312009-02-10 21:25:55 +010010455{
Johannes Berg2a519312009-02-10 21:25:55 +010010456 if (!msg)
10457 return;
10458
Johannes Berg68eb5502013-11-19 15:19:38 +010010459 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010460 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +010010461}
10462
Luciano Coelho807f8a82011-05-11 17:09:35 +030010463void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
10464 struct net_device *netdev)
10465{
10466 struct sk_buff *msg;
10467
10468 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
10469 if (!msg)
10470 return;
10471
10472 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
10473 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
10474 nlmsg_free(msg);
10475 return;
10476 }
10477
Johannes Berg68eb5502013-11-19 15:19:38 +010010478 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010479 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010480}
10481
10482void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
10483 struct net_device *netdev, u32 cmd)
10484{
10485 struct sk_buff *msg;
10486
Thomas Graf58050fc2012-06-28 03:57:45 +000010487 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010488 if (!msg)
10489 return;
10490
10491 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
10492 nlmsg_free(msg);
10493 return;
10494 }
10495
Johannes Berg68eb5502013-11-19 15:19:38 +010010496 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010497 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +030010498}
10499
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010500/*
10501 * This can happen on global regulatory changes or device specific settings
10502 * based on custom world regulatory domains.
10503 */
10504void nl80211_send_reg_change_event(struct regulatory_request *request)
10505{
10506 struct sk_buff *msg;
10507 void *hdr;
10508
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010509 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010510 if (!msg)
10511 return;
10512
10513 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
10514 if (!hdr) {
10515 nlmsg_free(msg);
10516 return;
10517 }
10518
10519 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -040010520 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
10521 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010522
David S. Miller9360ffd2012-03-29 04:41:26 -040010523 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
10524 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10525 NL80211_REGDOM_TYPE_WORLD))
10526 goto nla_put_failure;
10527 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
10528 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10529 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
10530 goto nla_put_failure;
10531 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
10532 request->intersect) {
10533 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10534 NL80211_REGDOM_TYPE_INTERSECTION))
10535 goto nla_put_failure;
10536 } else {
10537 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
10538 NL80211_REGDOM_TYPE_COUNTRY) ||
10539 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
10540 request->alpha2))
10541 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010542 }
10543
Johannes Bergf4173762012-12-03 18:23:37 +010010544 if (request->wiphy_idx != WIPHY_IDX_INVALID &&
David S. Miller9360ffd2012-03-29 04:41:26 -040010545 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
10546 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010547
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010548 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010549
Johannes Bergbc43b282009-07-25 10:54:13 +020010550 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010010551 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010552 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Bergbc43b282009-07-25 10:54:13 +020010553 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040010554
10555 return;
10556
10557nla_put_failure:
10558 genlmsg_cancel(msg, hdr);
10559 nlmsg_free(msg);
10560}
10561
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010562static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
10563 struct net_device *netdev,
10564 const u8 *buf, size_t len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010565 enum nl80211_commands cmd, gfp_t gfp,
10566 int uapsd_queues)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010567{
10568 struct sk_buff *msg;
10569 void *hdr;
10570
Johannes Berge6d6e342009-07-01 21:26:47 +020010571 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010572 if (!msg)
10573 return;
10574
10575 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10576 if (!hdr) {
10577 nlmsg_free(msg);
10578 return;
10579 }
10580
David S. Miller9360ffd2012-03-29 04:41:26 -040010581 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10582 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10583 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
10584 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010585
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010586 if (uapsd_queues >= 0) {
10587 struct nlattr *nla_wmm =
10588 nla_nest_start(msg, NL80211_ATTR_STA_WME);
10589 if (!nla_wmm)
10590 goto nla_put_failure;
10591
10592 if (nla_put_u8(msg, NL80211_STA_WME_UAPSD_QUEUES,
10593 uapsd_queues))
10594 goto nla_put_failure;
10595
10596 nla_nest_end(msg, nla_wmm);
10597 }
10598
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010599 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010600
Johannes Berg68eb5502013-11-19 15:19:38 +010010601 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010602 NL80211_MCGRP_MLME, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010603 return;
10604
10605 nla_put_failure:
10606 genlmsg_cancel(msg, hdr);
10607 nlmsg_free(msg);
10608}
10609
10610void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010611 struct net_device *netdev, const u8 *buf,
10612 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010613{
10614 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010615 NL80211_CMD_AUTHENTICATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010616}
10617
10618void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
10619 struct net_device *netdev, const u8 *buf,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010620 size_t len, gfp_t gfp, int uapsd_queues)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010621{
Johannes Berge6d6e342009-07-01 21:26:47 +020010622 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010623 NL80211_CMD_ASSOCIATE, gfp, uapsd_queues);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010624}
10625
Jouni Malinen53b46b82009-03-27 20:53:56 +020010626void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010627 struct net_device *netdev, const u8 *buf,
10628 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010629{
10630 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010631 NL80211_CMD_DEAUTHENTICATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010632}
10633
Jouni Malinen53b46b82009-03-27 20:53:56 +020010634void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
10635 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +020010636 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010637{
10638 nl80211_send_mlme_event(rdev, netdev, buf, len,
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010639 NL80211_CMD_DISASSOCIATE, gfp, -1);
Jouni Malinen6039f6d2009-03-19 13:39:21 +020010640}
10641
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010642void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
10643 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +020010644{
Johannes Berg947add32013-02-22 22:05:20 +010010645 struct wireless_dev *wdev = dev->ieee80211_ptr;
10646 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080010647 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010648 const struct ieee80211_mgmt *mgmt = (void *)buf;
10649 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +020010650
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010651 if (WARN_ON(len < 2))
10652 return;
10653
10654 if (ieee80211_is_deauth(mgmt->frame_control))
10655 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
10656 else
10657 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
10658
10659 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
Eliad Pellerb0b6aa22014-09-09 17:09:45 +030010660 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC, -1);
Jouni Malinencf4e5942010-12-16 00:52:40 +020010661}
Johannes Berg6ff57cf2013-05-16 00:55:00 +020010662EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +020010663
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -040010664static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
10665 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +020010666 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030010667{
10668 struct sk_buff *msg;
10669 void *hdr;
10670
Johannes Berge6d6e342009-07-01 21:26:47 +020010671 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010672 if (!msg)
10673 return;
10674
10675 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10676 if (!hdr) {
10677 nlmsg_free(msg);
10678 return;
10679 }
10680
David S. Miller9360ffd2012-03-29 04:41:26 -040010681 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10682 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10683 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
10684 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
10685 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +030010686
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010687 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +030010688
Johannes Berg68eb5502013-11-19 15:19:38 +010010689 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010690 NL80211_MCGRP_MLME, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010691 return;
10692
10693 nla_put_failure:
10694 genlmsg_cancel(msg, hdr);
10695 nlmsg_free(msg);
10696}
10697
10698void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010699 struct net_device *netdev, const u8 *addr,
10700 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030010701{
10702 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +020010703 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010704}
10705
10706void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +020010707 struct net_device *netdev, const u8 *addr,
10708 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +030010709{
Johannes Berge6d6e342009-07-01 21:26:47 +020010710 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
10711 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +030010712}
10713
Samuel Ortizb23aa672009-07-01 21:26:54 +020010714void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
10715 struct net_device *netdev, const u8 *bssid,
10716 const u8 *req_ie, size_t req_ie_len,
10717 const u8 *resp_ie, size_t resp_ie_len,
10718 u16 status, gfp_t gfp)
10719{
10720 struct sk_buff *msg;
10721 void *hdr;
10722
Thomas Graf58050fc2012-06-28 03:57:45 +000010723 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010724 if (!msg)
10725 return;
10726
10727 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
10728 if (!hdr) {
10729 nlmsg_free(msg);
10730 return;
10731 }
10732
David S. Miller9360ffd2012-03-29 04:41:26 -040010733 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10734 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10735 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
10736 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
10737 (req_ie &&
10738 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10739 (resp_ie &&
10740 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10741 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010742
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010743 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010744
Johannes Berg68eb5502013-11-19 15:19:38 +010010745 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010746 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010747 return;
10748
10749 nla_put_failure:
10750 genlmsg_cancel(msg, hdr);
10751 nlmsg_free(msg);
10752
10753}
10754
10755void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
10756 struct net_device *netdev, const u8 *bssid,
10757 const u8 *req_ie, size_t req_ie_len,
10758 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
10759{
10760 struct sk_buff *msg;
10761 void *hdr;
10762
Thomas Graf58050fc2012-06-28 03:57:45 +000010763 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010764 if (!msg)
10765 return;
10766
10767 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
10768 if (!hdr) {
10769 nlmsg_free(msg);
10770 return;
10771 }
10772
David S. Miller9360ffd2012-03-29 04:41:26 -040010773 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10774 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10775 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
10776 (req_ie &&
10777 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10778 (resp_ie &&
10779 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10780 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010781
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010782 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010783
Johannes Berg68eb5502013-11-19 15:19:38 +010010784 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010785 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010786 return;
10787
10788 nla_put_failure:
10789 genlmsg_cancel(msg, hdr);
10790 nlmsg_free(msg);
10791
10792}
10793
10794void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
10795 struct net_device *netdev, u16 reason,
Johannes Berg667503dd2009-07-07 03:56:11 +020010796 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020010797{
10798 struct sk_buff *msg;
10799 void *hdr;
10800
Thomas Graf58050fc2012-06-28 03:57:45 +000010801 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010802 if (!msg)
10803 return;
10804
10805 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
10806 if (!hdr) {
10807 nlmsg_free(msg);
10808 return;
10809 }
10810
David S. Miller9360ffd2012-03-29 04:41:26 -040010811 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10812 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10813 (from_ap && reason &&
10814 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
10815 (from_ap &&
10816 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
10817 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
10818 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010819
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010820 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010821
Johannes Berg68eb5502013-11-19 15:19:38 +010010822 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010823 NL80211_MCGRP_MLME, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010824 return;
10825
10826 nla_put_failure:
10827 genlmsg_cancel(msg, hdr);
10828 nlmsg_free(msg);
10829
10830}
10831
Johannes Berg04a773a2009-04-19 21:24:32 +020010832void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
10833 struct net_device *netdev, const u8 *bssid,
10834 gfp_t gfp)
10835{
10836 struct sk_buff *msg;
10837 void *hdr;
10838
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010839 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010840 if (!msg)
10841 return;
10842
10843 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
10844 if (!hdr) {
10845 nlmsg_free(msg);
10846 return;
10847 }
10848
David S. Miller9360ffd2012-03-29 04:41:26 -040010849 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10850 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10851 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10852 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020010853
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010854 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020010855
Johannes Berg68eb5502013-11-19 15:19:38 +010010856 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010857 NL80211_MCGRP_MLME, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010858 return;
10859
10860 nla_put_failure:
10861 genlmsg_cancel(msg, hdr);
10862 nlmsg_free(msg);
10863}
10864
Johannes Berg947add32013-02-22 22:05:20 +010010865void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
10866 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070010867{
Johannes Berg947add32013-02-22 22:05:20 +010010868 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080010869 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010870 struct sk_buff *msg;
10871 void *hdr;
10872
Johannes Berg947add32013-02-22 22:05:20 +010010873 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
10874 return;
10875
10876 trace_cfg80211_notify_new_peer_candidate(dev, addr);
10877
Javier Cardonac93b5e72011-04-07 15:08:34 -070010878 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10879 if (!msg)
10880 return;
10881
10882 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
10883 if (!hdr) {
10884 nlmsg_free(msg);
10885 return;
10886 }
10887
David S. Miller9360ffd2012-03-29 04:41:26 -040010888 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010889 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10890 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010891 (ie_len && ie &&
10892 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
10893 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070010894
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010895 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010896
Johannes Berg68eb5502013-11-19 15:19:38 +010010897 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010898 NL80211_MCGRP_MLME, gfp);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010899 return;
10900
10901 nla_put_failure:
10902 genlmsg_cancel(msg, hdr);
10903 nlmsg_free(msg);
10904}
Johannes Berg947add32013-02-22 22:05:20 +010010905EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010906
Jouni Malinena3b8b052009-03-27 21:59:49 +020010907void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
10908 struct net_device *netdev, const u8 *addr,
10909 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020010910 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020010911{
10912 struct sk_buff *msg;
10913 void *hdr;
10914
Johannes Berge6d6e342009-07-01 21:26:47 +020010915 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010916 if (!msg)
10917 return;
10918
10919 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
10920 if (!hdr) {
10921 nlmsg_free(msg);
10922 return;
10923 }
10924
David S. Miller9360ffd2012-03-29 04:41:26 -040010925 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10926 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10927 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
10928 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
10929 (key_id != -1 &&
10930 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
10931 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
10932 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020010933
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010934 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010935
Johannes Berg68eb5502013-11-19 15:19:38 +010010936 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010937 NL80211_MCGRP_MLME, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010938 return;
10939
10940 nla_put_failure:
10941 genlmsg_cancel(msg, hdr);
10942 nlmsg_free(msg);
10943}
10944
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010945void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
10946 struct ieee80211_channel *channel_before,
10947 struct ieee80211_channel *channel_after)
10948{
10949 struct sk_buff *msg;
10950 void *hdr;
10951 struct nlattr *nl_freq;
10952
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010953 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010954 if (!msg)
10955 return;
10956
10957 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
10958 if (!hdr) {
10959 nlmsg_free(msg);
10960 return;
10961 }
10962
10963 /*
10964 * Since we are applying the beacon hint to a wiphy we know its
10965 * wiphy_idx is valid
10966 */
David S. Miller9360ffd2012-03-29 04:41:26 -040010967 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
10968 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010969
10970 /* Before */
10971 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
10972 if (!nl_freq)
10973 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010974 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010975 goto nla_put_failure;
10976 nla_nest_end(msg, nl_freq);
10977
10978 /* After */
10979 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
10980 if (!nl_freq)
10981 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010982 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010983 goto nla_put_failure;
10984 nla_nest_end(msg, nl_freq);
10985
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010986 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010987
Johannes Berg463d0182009-07-14 00:33:35 +020010988 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010010989 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010990 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Berg463d0182009-07-14 00:33:35 +020010991 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010992
10993 return;
10994
10995nla_put_failure:
10996 genlmsg_cancel(msg, hdr);
10997 nlmsg_free(msg);
10998}
10999
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011000static void nl80211_send_remain_on_chan_event(
11001 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020011002 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011003 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011004 unsigned int duration, gfp_t gfp)
11005{
11006 struct sk_buff *msg;
11007 void *hdr;
11008
11009 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11010 if (!msg)
11011 return;
11012
11013 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
11014 if (!hdr) {
11015 nlmsg_free(msg);
11016 return;
11017 }
11018
David S. Miller9360ffd2012-03-29 04:41:26 -040011019 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020011020 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11021 wdev->netdev->ifindex)) ||
Johannes Berg00f53352012-07-17 11:53:12 +020011022 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011023 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010011024 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
11025 NL80211_CHAN_NO_HT) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011026 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
11027 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011028
David S. Miller9360ffd2012-03-29 04:41:26 -040011029 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
11030 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
11031 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011032
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011033 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011034
Johannes Berg68eb5502013-11-19 15:19:38 +010011035 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011036 NL80211_MCGRP_MLME, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011037 return;
11038
11039 nla_put_failure:
11040 genlmsg_cancel(msg, hdr);
11041 nlmsg_free(msg);
11042}
11043
Johannes Berg947add32013-02-22 22:05:20 +010011044void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
11045 struct ieee80211_channel *chan,
11046 unsigned int duration, 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(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011052 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020011053 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010011054 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011055}
Johannes Berg947add32013-02-22 22:05:20 +010011056EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011057
Johannes Berg947add32013-02-22 22:05:20 +010011058void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
11059 struct ieee80211_channel *chan,
11060 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011061{
Johannes Berg947add32013-02-22 22:05:20 +010011062 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011063 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011064
11065 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011066 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010011067 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011068}
Johannes Berg947add32013-02-22 22:05:20 +010011069EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010011070
Johannes Berg947add32013-02-22 22:05:20 +010011071void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
11072 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010011073{
Johannes Berg947add32013-02-22 22:05:20 +010011074 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011075 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010011076 struct sk_buff *msg;
11077
Johannes Berg947add32013-02-22 22:05:20 +010011078 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
11079
Thomas Graf58050fc2012-06-28 03:57:45 +000011080 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010011081 if (!msg)
11082 return;
11083
John W. Linville66266b32012-03-15 13:25:41 -040011084 if (nl80211_send_station(msg, 0, 0, 0,
11085 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010011086 nlmsg_free(msg);
11087 return;
11088 }
11089
Johannes Berg68eb5502013-11-19 15:19:38 +010011090 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011091 NL80211_MCGRP_MLME, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010011092}
Johannes Berg947add32013-02-22 22:05:20 +010011093EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010011094
Johannes Berg947add32013-02-22 22:05:20 +010011095void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020011096{
Johannes Berg947add32013-02-22 22:05:20 +010011097 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011098 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020011099 struct sk_buff *msg;
11100 void *hdr;
11101
Johannes Berg947add32013-02-22 22:05:20 +010011102 trace_cfg80211_del_sta(dev, mac_addr);
11103
Thomas Graf58050fc2012-06-28 03:57:45 +000011104 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020011105 if (!msg)
11106 return;
11107
11108 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
11109 if (!hdr) {
11110 nlmsg_free(msg);
11111 return;
11112 }
11113
David S. Miller9360ffd2012-03-29 04:41:26 -040011114 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11115 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
11116 goto nla_put_failure;
Jouni Malinenec15e682011-03-23 15:29:52 +020011117
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011118 genlmsg_end(msg, hdr);
Jouni Malinenec15e682011-03-23 15:29:52 +020011119
Johannes Berg68eb5502013-11-19 15:19:38 +010011120 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011121 NL80211_MCGRP_MLME, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020011122 return;
11123
11124 nla_put_failure:
11125 genlmsg_cancel(msg, hdr);
11126 nlmsg_free(msg);
11127}
Johannes Berg947add32013-02-22 22:05:20 +010011128EXPORT_SYMBOL(cfg80211_del_sta);
Jouni Malinenec15e682011-03-23 15:29:52 +020011129
Johannes Berg947add32013-02-22 22:05:20 +010011130void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
11131 enum nl80211_connect_failed_reason reason,
11132 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011133{
Johannes Berg947add32013-02-22 22:05:20 +010011134 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011135 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011136 struct sk_buff *msg;
11137 void *hdr;
11138
11139 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
11140 if (!msg)
11141 return;
11142
11143 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
11144 if (!hdr) {
11145 nlmsg_free(msg);
11146 return;
11147 }
11148
11149 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11150 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
11151 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
11152 goto nla_put_failure;
11153
11154 genlmsg_end(msg, hdr);
11155
Johannes Berg68eb5502013-11-19 15:19:38 +010011156 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011157 NL80211_MCGRP_MLME, gfp);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011158 return;
11159
11160 nla_put_failure:
11161 genlmsg_cancel(msg, hdr);
11162 nlmsg_free(msg);
11163}
Johannes Berg947add32013-02-22 22:05:20 +010011164EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053011165
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011166static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
11167 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010011168{
11169 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011170 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg28946da2011-11-04 11:18:12 +010011171 struct sk_buff *msg;
11172 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000011173 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010011174
Eric W. Biederman15e47302012-09-07 20:12:54 +000011175 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010011176 return false;
11177
11178 msg = nlmsg_new(100, gfp);
11179 if (!msg)
11180 return true;
11181
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011182 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010011183 if (!hdr) {
11184 nlmsg_free(msg);
11185 return true;
11186 }
11187
David S. Miller9360ffd2012-03-29 04:41:26 -040011188 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11189 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11190 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
11191 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010011192
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011193 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000011194 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010011195 return true;
11196
11197 nla_put_failure:
11198 genlmsg_cancel(msg, hdr);
11199 nlmsg_free(msg);
11200 return true;
11201}
11202
Johannes Berg947add32013-02-22 22:05:20 +010011203bool cfg80211_rx_spurious_frame(struct net_device *dev,
11204 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011205{
Johannes Berg947add32013-02-22 22:05:20 +010011206 struct wireless_dev *wdev = dev->ieee80211_ptr;
11207 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011208
Johannes Berg947add32013-02-22 22:05:20 +010011209 trace_cfg80211_rx_spurious_frame(dev, addr);
11210
11211 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
11212 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
11213 trace_cfg80211_return_bool(false);
11214 return false;
11215 }
11216 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
11217 addr, gfp);
11218 trace_cfg80211_return_bool(ret);
11219 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011220}
Johannes Berg947add32013-02-22 22:05:20 +010011221EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
11222
11223bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
11224 const u8 *addr, gfp_t gfp)
11225{
11226 struct wireless_dev *wdev = dev->ieee80211_ptr;
11227 bool ret;
11228
11229 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
11230
11231 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
11232 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
11233 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
11234 trace_cfg80211_return_bool(false);
11235 return false;
11236 }
11237 ret = __nl80211_unexpected_frame(dev,
11238 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
11239 addr, gfp);
11240 trace_cfg80211_return_bool(ret);
11241 return ret;
11242}
11243EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010011244
Johannes Berg2e161f72010-08-12 15:38:38 +020011245int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000011246 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010011247 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030011248 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020011249{
Johannes Berg71bbc992012-06-15 15:30:18 +020011250 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020011251 struct sk_buff *msg;
11252 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020011253
11254 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11255 if (!msg)
11256 return -ENOMEM;
11257
Johannes Berg2e161f72010-08-12 15:38:38 +020011258 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020011259 if (!hdr) {
11260 nlmsg_free(msg);
11261 return -ENOMEM;
11262 }
11263
David S. Miller9360ffd2012-03-29 04:41:26 -040011264 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020011265 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11266 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030011267 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011268 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
11269 (sig_dbm &&
11270 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030011271 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
11272 (flags &&
11273 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040011274 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020011275
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011276 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020011277
Eric W. Biederman15e47302012-09-07 20:12:54 +000011278 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020011279
11280 nla_put_failure:
11281 genlmsg_cancel(msg, hdr);
11282 nlmsg_free(msg);
11283 return -ENOBUFS;
11284}
11285
Johannes Berg947add32013-02-22 22:05:20 +010011286void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
11287 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020011288{
Johannes Berg947add32013-02-22 22:05:20 +010011289 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011290 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020011291 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020011292 struct sk_buff *msg;
11293 void *hdr;
11294
Johannes Berg947add32013-02-22 22:05:20 +010011295 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
11296
Jouni Malinen026331c2010-02-15 12:53:10 +020011297 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11298 if (!msg)
11299 return;
11300
Johannes Berg2e161f72010-08-12 15:38:38 +020011301 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020011302 if (!hdr) {
11303 nlmsg_free(msg);
11304 return;
11305 }
11306
David S. Miller9360ffd2012-03-29 04:41:26 -040011307 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020011308 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11309 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030011310 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011311 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
11312 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11313 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
11314 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020011315
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011316 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020011317
Johannes Berg68eb5502013-11-19 15:19:38 +010011318 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011319 NL80211_MCGRP_MLME, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020011320 return;
11321
11322 nla_put_failure:
11323 genlmsg_cancel(msg, hdr);
11324 nlmsg_free(msg);
11325}
Johannes Berg947add32013-02-22 22:05:20 +010011326EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020011327
Johannes Berg947add32013-02-22 22:05:20 +010011328void cfg80211_cqm_rssi_notify(struct net_device *dev,
11329 enum nl80211_cqm_rssi_threshold_event rssi_event,
11330 gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011331{
Johannes Berg947add32013-02-22 22:05:20 +010011332 struct wireless_dev *wdev = dev->ieee80211_ptr;
11333 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011334 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011335 struct sk_buff *msg;
11336 struct nlattr *pinfoattr;
11337 void *hdr;
11338
Johannes Berg947add32013-02-22 22:05:20 +010011339 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
11340
Thomas Graf58050fc2012-06-28 03:57:45 +000011341 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011342 if (!msg)
11343 return;
11344
11345 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
11346 if (!hdr) {
11347 nlmsg_free(msg);
11348 return;
11349 }
11350
David S. Miller9360ffd2012-03-29 04:41:26 -040011351 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010011352 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040011353 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011354
11355 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
11356 if (!pinfoattr)
11357 goto nla_put_failure;
11358
David S. Miller9360ffd2012-03-29 04:41:26 -040011359 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
11360 rssi_event))
11361 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011362
11363 nla_nest_end(msg, pinfoattr);
11364
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011365 genlmsg_end(msg, hdr);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011366
Johannes Berg68eb5502013-11-19 15:19:38 +010011367 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011368 NL80211_MCGRP_MLME, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011369 return;
11370
11371 nla_put_failure:
11372 genlmsg_cancel(msg, hdr);
11373 nlmsg_free(msg);
11374}
Johannes Berg947add32013-02-22 22:05:20 +010011375EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020011376
Johannes Berg947add32013-02-22 22:05:20 +010011377static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
11378 struct net_device *netdev, const u8 *bssid,
11379 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020011380{
11381 struct sk_buff *msg;
11382 struct nlattr *rekey_attr;
11383 void *hdr;
11384
Thomas Graf58050fc2012-06-28 03:57:45 +000011385 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020011386 if (!msg)
11387 return;
11388
11389 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
11390 if (!hdr) {
11391 nlmsg_free(msg);
11392 return;
11393 }
11394
David S. Miller9360ffd2012-03-29 04:41:26 -040011395 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11396 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
11397 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
11398 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020011399
11400 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
11401 if (!rekey_attr)
11402 goto nla_put_failure;
11403
David S. Miller9360ffd2012-03-29 04:41:26 -040011404 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
11405 NL80211_REPLAY_CTR_LEN, replay_ctr))
11406 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020011407
11408 nla_nest_end(msg, rekey_attr);
11409
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011410 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020011411
Johannes Berg68eb5502013-11-19 15:19:38 +010011412 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011413 NL80211_MCGRP_MLME, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020011414 return;
11415
11416 nla_put_failure:
11417 genlmsg_cancel(msg, hdr);
11418 nlmsg_free(msg);
11419}
11420
Johannes Berg947add32013-02-22 22:05:20 +010011421void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
11422 const u8 *replay_ctr, gfp_t gfp)
11423{
11424 struct wireless_dev *wdev = dev->ieee80211_ptr;
11425 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011426 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011427
11428 trace_cfg80211_gtk_rekey_notify(dev, bssid);
11429 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
11430}
11431EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
11432
11433static void
11434nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
11435 struct net_device *netdev, int index,
11436 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011437{
11438 struct sk_buff *msg;
11439 struct nlattr *attr;
11440 void *hdr;
11441
Thomas Graf58050fc2012-06-28 03:57:45 +000011442 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011443 if (!msg)
11444 return;
11445
11446 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
11447 if (!hdr) {
11448 nlmsg_free(msg);
11449 return;
11450 }
11451
David S. Miller9360ffd2012-03-29 04:41:26 -040011452 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11453 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
11454 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011455
11456 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
11457 if (!attr)
11458 goto nla_put_failure;
11459
David S. Miller9360ffd2012-03-29 04:41:26 -040011460 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
11461 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
11462 (preauth &&
11463 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
11464 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011465
11466 nla_nest_end(msg, attr);
11467
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011468 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011469
Johannes Berg68eb5502013-11-19 15:19:38 +010011470 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011471 NL80211_MCGRP_MLME, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030011472 return;
11473
11474 nla_put_failure:
11475 genlmsg_cancel(msg, hdr);
11476 nlmsg_free(msg);
11477}
11478
Johannes Berg947add32013-02-22 22:05:20 +010011479void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
11480 const u8 *bssid, bool preauth, gfp_t gfp)
11481{
11482 struct wireless_dev *wdev = dev->ieee80211_ptr;
11483 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011484 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011485
11486 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
11487 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
11488}
11489EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
11490
11491static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
11492 struct net_device *netdev,
11493 struct cfg80211_chan_def *chandef,
11494 gfp_t gfp)
Thomas Pedersen53145262012-04-06 13:35:47 -070011495{
11496 struct sk_buff *msg;
11497 void *hdr;
11498
Thomas Graf58050fc2012-06-28 03:57:45 +000011499 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070011500 if (!msg)
11501 return;
11502
11503 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
11504 if (!hdr) {
11505 nlmsg_free(msg);
11506 return;
11507 }
11508
Johannes Berg683b6d32012-11-08 21:25:48 +010011509 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
11510 goto nla_put_failure;
11511
11512 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040011513 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070011514
11515 genlmsg_end(msg, hdr);
11516
Johannes Berg68eb5502013-11-19 15:19:38 +010011517 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011518 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070011519 return;
11520
11521 nla_put_failure:
11522 genlmsg_cancel(msg, hdr);
11523 nlmsg_free(msg);
11524}
11525
Johannes Berg947add32013-02-22 22:05:20 +010011526void cfg80211_ch_switch_notify(struct net_device *dev,
11527 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070011528{
Johannes Berg947add32013-02-22 22:05:20 +010011529 struct wireless_dev *wdev = dev->ieee80211_ptr;
11530 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011531 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg947add32013-02-22 22:05:20 +010011532
Simon Wunderliche487eae2013-11-21 18:19:51 +010011533 ASSERT_WDEV_LOCK(wdev);
Johannes Berg947add32013-02-22 22:05:20 +010011534
Simon Wunderliche487eae2013-11-21 18:19:51 +010011535 trace_cfg80211_ch_switch_notify(dev, chandef);
Johannes Berg947add32013-02-22 22:05:20 +010011536
11537 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +020011538 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070011539 wdev->iftype != NL80211_IFTYPE_ADHOC &&
11540 wdev->iftype != NL80211_IFTYPE_MESH_POINT))
Simon Wunderliche487eae2013-11-21 18:19:51 +010011541 return;
Johannes Berg947add32013-02-22 22:05:20 +010011542
Michal Kazior9e0e2962014-01-29 14:22:27 +010011543 wdev->chandef = *chandef;
Janusz Dziedzic96f55f12014-01-24 14:29:21 +010011544 wdev->preset_chandef = *chandef;
Johannes Berg947add32013-02-22 22:05:20 +010011545 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
Johannes Berg947add32013-02-22 22:05:20 +010011546}
11547EXPORT_SYMBOL(cfg80211_ch_switch_notify);
11548
11549void cfg80211_cqm_txe_notify(struct net_device *dev,
11550 const u8 *peer, u32 num_packets,
11551 u32 rate, u32 intvl, gfp_t gfp)
11552{
11553 struct wireless_dev *wdev = dev->ieee80211_ptr;
11554 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011555 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070011556 struct sk_buff *msg;
11557 struct nlattr *pinfoattr;
11558 void *hdr;
11559
11560 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
11561 if (!msg)
11562 return;
11563
11564 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
11565 if (!hdr) {
11566 nlmsg_free(msg);
11567 return;
11568 }
11569
11570 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010011571 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070011572 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
11573 goto nla_put_failure;
11574
11575 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
11576 if (!pinfoattr)
11577 goto nla_put_failure;
11578
11579 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
11580 goto nla_put_failure;
11581
11582 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
11583 goto nla_put_failure;
11584
11585 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
11586 goto nla_put_failure;
11587
11588 nla_nest_end(msg, pinfoattr);
11589
11590 genlmsg_end(msg, hdr);
11591
Johannes Berg68eb5502013-11-19 15:19:38 +010011592 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011593 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen84f10702012-07-12 16:17:33 -070011594 return;
11595
11596 nla_put_failure:
11597 genlmsg_cancel(msg, hdr);
11598 nlmsg_free(msg);
11599}
Johannes Berg947add32013-02-22 22:05:20 +010011600EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070011601
11602void
Simon Wunderlich04f39042013-02-08 18:16:19 +010011603nl80211_radar_notify(struct cfg80211_registered_device *rdev,
Janusz Dziedzicd2859df2013-11-06 13:55:51 +010011604 const struct cfg80211_chan_def *chandef,
Simon Wunderlich04f39042013-02-08 18:16:19 +010011605 enum nl80211_radar_event event,
11606 struct net_device *netdev, gfp_t gfp)
11607{
11608 struct sk_buff *msg;
11609 void *hdr;
11610
11611 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11612 if (!msg)
11613 return;
11614
11615 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
11616 if (!hdr) {
11617 nlmsg_free(msg);
11618 return;
11619 }
11620
11621 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
11622 goto nla_put_failure;
11623
11624 /* NOP and radar events don't need a netdev parameter */
11625 if (netdev) {
11626 struct wireless_dev *wdev = netdev->ieee80211_ptr;
11627
11628 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
11629 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11630 goto nla_put_failure;
11631 }
11632
11633 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
11634 goto nla_put_failure;
11635
11636 if (nl80211_send_chandef(msg, chandef))
11637 goto nla_put_failure;
11638
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011639 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010011640
Johannes Berg68eb5502013-11-19 15:19:38 +010011641 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011642 NL80211_MCGRP_MLME, gfp);
Simon Wunderlich04f39042013-02-08 18:16:19 +010011643 return;
11644
11645 nla_put_failure:
11646 genlmsg_cancel(msg, hdr);
11647 nlmsg_free(msg);
11648}
11649
Johannes Berg947add32013-02-22 22:05:20 +010011650void cfg80211_cqm_pktloss_notify(struct net_device *dev,
11651 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010011652{
Johannes Berg947add32013-02-22 22:05:20 +010011653 struct wireless_dev *wdev = dev->ieee80211_ptr;
11654 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011655 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011656 struct sk_buff *msg;
11657 struct nlattr *pinfoattr;
11658 void *hdr;
11659
Johannes Berg947add32013-02-22 22:05:20 +010011660 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
11661
Thomas Graf58050fc2012-06-28 03:57:45 +000011662 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011663 if (!msg)
11664 return;
11665
11666 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
11667 if (!hdr) {
11668 nlmsg_free(msg);
11669 return;
11670 }
11671
David S. Miller9360ffd2012-03-29 04:41:26 -040011672 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010011673 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040011674 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
11675 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010011676
11677 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
11678 if (!pinfoattr)
11679 goto nla_put_failure;
11680
David S. Miller9360ffd2012-03-29 04:41:26 -040011681 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
11682 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010011683
11684 nla_nest_end(msg, pinfoattr);
11685
Johannes Berg3b7b72e2011-10-22 19:05:51 +020011686 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011687
Johannes Berg68eb5502013-11-19 15:19:38 +010011688 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011689 NL80211_MCGRP_MLME, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011690 return;
11691
11692 nla_put_failure:
11693 genlmsg_cancel(msg, hdr);
11694 nlmsg_free(msg);
11695}
Johannes Berg947add32013-02-22 22:05:20 +010011696EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010011697
Johannes Berg7f6cf312011-11-04 11:18:15 +010011698void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
11699 u64 cookie, bool acked, gfp_t gfp)
11700{
11701 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011702 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011703 struct sk_buff *msg;
11704 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011705
Beni Lev4ee3e062012-08-27 12:49:39 +030011706 trace_cfg80211_probe_status(dev, addr, cookie, acked);
11707
Thomas Graf58050fc2012-06-28 03:57:45 +000011708 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030011709
Johannes Berg7f6cf312011-11-04 11:18:15 +010011710 if (!msg)
11711 return;
11712
11713 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
11714 if (!hdr) {
11715 nlmsg_free(msg);
11716 return;
11717 }
11718
David S. Miller9360ffd2012-03-29 04:41:26 -040011719 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11720 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11721 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
11722 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11723 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
11724 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011725
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011726 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011727
Johannes Berg68eb5502013-11-19 15:19:38 +010011728 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011729 NL80211_MCGRP_MLME, gfp);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011730 return;
11731
11732 nla_put_failure:
11733 genlmsg_cancel(msg, hdr);
11734 nlmsg_free(msg);
11735}
11736EXPORT_SYMBOL(cfg80211_probe_status);
11737
Johannes Berg5e7602302011-11-04 11:18:17 +010011738void cfg80211_report_obss_beacon(struct wiphy *wiphy,
11739 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070011740 int freq, int sig_dbm)
Johannes Berg5e7602302011-11-04 11:18:17 +010011741{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011742 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg5e7602302011-11-04 11:18:17 +010011743 struct sk_buff *msg;
11744 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070011745 struct cfg80211_beacon_registration *reg;
Johannes Berg5e7602302011-11-04 11:18:17 +010011746
Beni Lev4ee3e062012-08-27 12:49:39 +030011747 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
11748
Ben Greear37c73b52012-10-26 14:49:25 -070011749 spin_lock_bh(&rdev->beacon_registrations_lock);
11750 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
11751 msg = nlmsg_new(len + 100, GFP_ATOMIC);
11752 if (!msg) {
11753 spin_unlock_bh(&rdev->beacon_registrations_lock);
11754 return;
11755 }
Johannes Berg5e7602302011-11-04 11:18:17 +010011756
Ben Greear37c73b52012-10-26 14:49:25 -070011757 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
11758 if (!hdr)
11759 goto nla_put_failure;
Johannes Berg5e7602302011-11-04 11:18:17 +010011760
Ben Greear37c73b52012-10-26 14:49:25 -070011761 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11762 (freq &&
11763 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
11764 (sig_dbm &&
11765 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
11766 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
11767 goto nla_put_failure;
11768
11769 genlmsg_end(msg, hdr);
11770
11771 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e7602302011-11-04 11:18:17 +010011772 }
Ben Greear37c73b52012-10-26 14:49:25 -070011773 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010011774 return;
11775
11776 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070011777 spin_unlock_bh(&rdev->beacon_registrations_lock);
11778 if (hdr)
11779 genlmsg_cancel(msg, hdr);
Johannes Berg5e7602302011-11-04 11:18:17 +010011780 nlmsg_free(msg);
11781}
11782EXPORT_SYMBOL(cfg80211_report_obss_beacon);
11783
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011784#ifdef CONFIG_PM
11785void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
11786 struct cfg80211_wowlan_wakeup *wakeup,
11787 gfp_t gfp)
11788{
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011789 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011790 struct sk_buff *msg;
11791 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011792 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011793
11794 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11795
11796 if (wakeup)
11797 size += wakeup->packet_present_len;
11798
11799 msg = nlmsg_new(size, gfp);
11800 if (!msg)
11801 return;
11802
11803 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11804 if (!hdr)
11805 goto free_msg;
11806
11807 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11808 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11809 goto free_msg;
11810
11811 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11812 wdev->netdev->ifindex))
11813 goto free_msg;
11814
11815 if (wakeup) {
11816 struct nlattr *reasons;
11817
11818 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
Johannes Berg7fa322c2013-10-25 11:16:58 +020011819 if (!reasons)
11820 goto free_msg;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011821
11822 if (wakeup->disconnect &&
11823 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11824 goto free_msg;
11825 if (wakeup->magic_pkt &&
11826 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11827 goto free_msg;
11828 if (wakeup->gtk_rekey_failure &&
11829 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11830 goto free_msg;
11831 if (wakeup->eap_identity_req &&
11832 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11833 goto free_msg;
11834 if (wakeup->four_way_handshake &&
11835 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11836 goto free_msg;
11837 if (wakeup->rfkill_release &&
11838 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11839 goto free_msg;
11840
11841 if (wakeup->pattern_idx >= 0 &&
11842 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11843 wakeup->pattern_idx))
11844 goto free_msg;
11845
Johannes Bergae917c92013-10-25 11:05:22 +020011846 if (wakeup->tcp_match &&
11847 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH))
11848 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011849
Johannes Bergae917c92013-10-25 11:05:22 +020011850 if (wakeup->tcp_connlost &&
11851 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST))
11852 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011853
Johannes Bergae917c92013-10-25 11:05:22 +020011854 if (wakeup->tcp_nomoretokens &&
11855 nla_put_flag(msg,
11856 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS))
11857 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011858
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011859 if (wakeup->packet) {
11860 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11861 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11862
11863 if (!wakeup->packet_80211) {
11864 pkt_attr =
11865 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11866 len_attr =
11867 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11868 }
11869
11870 if (wakeup->packet_len &&
11871 nla_put_u32(msg, len_attr, wakeup->packet_len))
11872 goto free_msg;
11873
11874 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11875 wakeup->packet))
11876 goto free_msg;
11877 }
11878
11879 nla_nest_end(msg, reasons);
11880 }
11881
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011882 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011883
Johannes Berg68eb5502013-11-19 15:19:38 +010011884 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011885 NL80211_MCGRP_MLME, gfp);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011886 return;
11887
11888 free_msg:
11889 nlmsg_free(msg);
11890}
11891EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11892#endif
11893
Jouni Malinen3475b092012-11-16 22:49:57 +020011894void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11895 enum nl80211_tdls_operation oper,
11896 u16 reason_code, gfp_t gfp)
11897{
11898 struct wireless_dev *wdev = dev->ieee80211_ptr;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011899 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy);
Jouni Malinen3475b092012-11-16 22:49:57 +020011900 struct sk_buff *msg;
11901 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011902
11903 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11904 reason_code);
11905
11906 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11907 if (!msg)
11908 return;
11909
11910 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11911 if (!hdr) {
11912 nlmsg_free(msg);
11913 return;
11914 }
11915
11916 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11917 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11918 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11919 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11920 (reason_code > 0 &&
11921 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11922 goto nla_put_failure;
11923
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011924 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011925
Johannes Berg68eb5502013-11-19 15:19:38 +010011926 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011927 NL80211_MCGRP_MLME, gfp);
Jouni Malinen3475b092012-11-16 22:49:57 +020011928 return;
11929
11930 nla_put_failure:
11931 genlmsg_cancel(msg, hdr);
11932 nlmsg_free(msg);
11933}
11934EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11935
Jouni Malinen026331c2010-02-15 12:53:10 +020011936static int nl80211_netlink_notify(struct notifier_block * nb,
11937 unsigned long state,
11938 void *_notify)
11939{
11940 struct netlink_notify *notify = _notify;
11941 struct cfg80211_registered_device *rdev;
11942 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011943 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011944
11945 if (state != NETLINK_URELEASE)
11946 return NOTIFY_DONE;
11947
11948 rcu_read_lock();
11949
Johannes Berg5e7602302011-11-04 11:18:17 +010011950 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg78f22b62014-03-24 17:57:27 +010011951 bool schedule_destroy_work = false;
11952
11953 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list) {
Eric W. Biederman15e47302012-09-07 20:12:54 +000011954 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011955
Johannes Berg78f22b62014-03-24 17:57:27 +010011956 if (wdev->owner_nlportid == notify->portid)
11957 schedule_destroy_work = true;
11958 }
11959
Ben Greear37c73b52012-10-26 14:49:25 -070011960 spin_lock_bh(&rdev->beacon_registrations_lock);
11961 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11962 list) {
11963 if (reg->nlportid == notify->portid) {
11964 list_del(&reg->list);
11965 kfree(reg);
11966 break;
11967 }
11968 }
11969 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg78f22b62014-03-24 17:57:27 +010011970
11971 if (schedule_destroy_work) {
11972 struct cfg80211_iface_destroy *destroy;
11973
11974 destroy = kzalloc(sizeof(*destroy), GFP_ATOMIC);
11975 if (destroy) {
11976 destroy->nlportid = notify->portid;
11977 spin_lock(&rdev->destroy_list_lock);
11978 list_add(&destroy->list, &rdev->destroy_list);
11979 spin_unlock(&rdev->destroy_list_lock);
11980 schedule_work(&rdev->destroy_work);
11981 }
11982 }
Johannes Berg5e7602302011-11-04 11:18:17 +010011983 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011984
11985 rcu_read_unlock();
11986
Zhao, Gang6784c7d2014-04-21 12:53:04 +080011987 return NOTIFY_OK;
Jouni Malinen026331c2010-02-15 12:53:10 +020011988}
11989
11990static struct notifier_block nl80211_netlink_notifier = {
11991 .notifier_call = nl80211_netlink_notify,
11992};
11993
Jouni Malinen355199e2013-02-27 17:14:27 +020011994void cfg80211_ft_event(struct net_device *netdev,
11995 struct cfg80211_ft_event_params *ft_event)
11996{
11997 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080011998 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Jouni Malinen355199e2013-02-27 17:14:27 +020011999 struct sk_buff *msg;
12000 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020012001
12002 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
12003
12004 if (!ft_event->target_ap)
12005 return;
12006
12007 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
12008 if (!msg)
12009 return;
12010
12011 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
Johannes Bergae917c92013-10-25 11:05:22 +020012012 if (!hdr)
12013 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020012014
Johannes Bergae917c92013-10-25 11:05:22 +020012015 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12016 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
12017 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap))
12018 goto out;
12019
12020 if (ft_event->ies &&
12021 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies))
12022 goto out;
12023 if (ft_event->ric_ies &&
12024 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
12025 ft_event->ric_ies))
12026 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020012027
Johannes Berg9c90a9f2013-06-04 12:46:03 +020012028 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020012029
Johannes Berg68eb5502013-11-19 15:19:38 +010012030 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010012031 NL80211_MCGRP_MLME, GFP_KERNEL);
Johannes Bergae917c92013-10-25 11:05:22 +020012032 return;
12033 out:
12034 nlmsg_free(msg);
Jouni Malinen355199e2013-02-27 17:14:27 +020012035}
12036EXPORT_SYMBOL(cfg80211_ft_event);
12037
Arend van Spriel5de17982013-04-18 15:49:00 +020012038void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
12039{
12040 struct cfg80211_registered_device *rdev;
12041 struct sk_buff *msg;
12042 void *hdr;
12043 u32 nlportid;
12044
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012045 rdev = wiphy_to_rdev(wdev->wiphy);
Arend van Spriel5de17982013-04-18 15:49:00 +020012046 if (!rdev->crit_proto_nlportid)
12047 return;
12048
12049 nlportid = rdev->crit_proto_nlportid;
12050 rdev->crit_proto_nlportid = 0;
12051
12052 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
12053 if (!msg)
12054 return;
12055
12056 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
12057 if (!hdr)
12058 goto nla_put_failure;
12059
12060 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12061 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
12062 goto nla_put_failure;
12063
12064 genlmsg_end(msg, hdr);
12065
12066 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
12067 return;
12068
12069 nla_put_failure:
12070 if (hdr)
12071 genlmsg_cancel(msg, hdr);
12072 nlmsg_free(msg);
12073
12074}
12075EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
12076
Johannes Berg348baf02014-01-24 14:06:29 +010012077void nl80211_send_ap_stopped(struct wireless_dev *wdev)
12078{
12079 struct wiphy *wiphy = wdev->wiphy;
Zhao, Gangf26cbf42014-04-21 12:53:03 +080012080 struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy);
Johannes Berg348baf02014-01-24 14:06:29 +010012081 struct sk_buff *msg;
12082 void *hdr;
12083
12084 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
12085 if (!msg)
12086 return;
12087
12088 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_STOP_AP);
12089 if (!hdr)
12090 goto out;
12091
12092 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
12093 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex) ||
12094 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
12095 goto out;
12096
12097 genlmsg_end(msg, hdr);
12098
12099 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(wiphy), msg, 0,
12100 NL80211_MCGRP_MLME, GFP_KERNEL);
12101 return;
12102 out:
12103 nlmsg_free(msg);
12104}
12105
Johannes Berg55682962007-09-20 13:09:35 -040012106/* initialisation/exit functions */
12107
12108int nl80211_init(void)
12109{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000012110 int err;
Johannes Berg55682962007-09-20 13:09:35 -040012111
Johannes Berg2a94fe42013-11-19 15:19:39 +010012112 err = genl_register_family_with_ops_groups(&nl80211_fam, nl80211_ops,
12113 nl80211_mcgrps);
Johannes Berg55682962007-09-20 13:09:35 -040012114 if (err)
12115 return err;
12116
Jouni Malinen026331c2010-02-15 12:53:10 +020012117 err = netlink_register_notifier(&nl80211_netlink_notifier);
12118 if (err)
12119 goto err_out;
12120
Johannes Berg55682962007-09-20 13:09:35 -040012121 return 0;
12122 err_out:
12123 genl_unregister_family(&nl80211_fam);
12124 return err;
12125}
12126
12127void nl80211_exit(void)
12128{
Jouni Malinen026331c2010-02-15 12:53:10 +020012129 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040012130 genl_unregister_family(&nl80211_fam);
12131}