blob: e20c27ff0f14cd0aff0e586026c8a02901a4bd47 [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 Berg55682962007-09-20 13:09:35 -04005 */
6
7#include <linux/if.h>
8#include <linux/module.h>
9#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Johannes Berg55682962007-09-20 13:09:35 -040011#include <linux/list.h>
12#include <linux/if_ether.h>
13#include <linux/ieee80211.h>
14#include <linux/nl80211.h>
15#include <linux/rtnetlink.h>
16#include <linux/netlink.h>
Johannes Berg2a519312009-02-10 21:25:55 +010017#include <linux/etherdevice.h>
Johannes Berg463d0182009-07-14 00:33:35 +020018#include <net/net_namespace.h>
Johannes Berg55682962007-09-20 13:09:35 -040019#include <net/genetlink.h>
20#include <net/cfg80211.h>
Johannes Berg463d0182009-07-14 00:33:35 +020021#include <net/sock.h>
Johannes Berg2a0e0472013-01-23 22:57:40 +010022#include <net/inet_connection_sock.h>
Johannes Berg55682962007-09-20 13:09:35 -040023#include "core.h"
24#include "nl80211.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070025#include "reg.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030026#include "rdev-ops.h"
Johannes Berg55682962007-09-20 13:09:35 -040027
Jouni Malinen5fb628e2011-08-10 23:54:35 +030028static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
29 struct genl_info *info,
30 struct cfg80211_crypto_settings *settings,
31 int cipher_limit);
32
Johannes Bergf84f7712013-11-14 17:14:45 +010033static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020034 struct genl_info *info);
Johannes Bergf84f7712013-11-14 17:14:45 +010035static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +020036 struct genl_info *info);
37
Johannes Berg55682962007-09-20 13:09:35 -040038/* the netlink family */
39static struct genl_family nl80211_fam = {
Marcel Holtmannfb4e1562013-04-28 16:22:06 -070040 .id = GENL_ID_GENERATE, /* don't bother with a hardcoded ID */
41 .name = NL80211_GENL_NAME, /* have users key off the name instead */
42 .hdrsize = 0, /* no private header */
43 .version = 1, /* no particular meaning now */
Johannes Berg55682962007-09-20 13:09:35 -040044 .maxattr = NL80211_ATTR_MAX,
Johannes Berg463d0182009-07-14 00:33:35 +020045 .netnsok = true,
Johannes Berg4c476992010-10-04 21:36:35 +020046 .pre_doit = nl80211_pre_doit,
47 .post_doit = nl80211_post_doit,
Johannes Berg55682962007-09-20 13:09:35 -040048};
49
Johannes Berg2a94fe42013-11-19 15:19:39 +010050/* multicast groups */
51enum nl80211_multicast_groups {
52 NL80211_MCGRP_CONFIG,
53 NL80211_MCGRP_SCAN,
54 NL80211_MCGRP_REGULATORY,
55 NL80211_MCGRP_MLME,
56 NL80211_MCGRP_TESTMODE /* keep last - ifdef! */
57};
58
59static const struct genl_multicast_group nl80211_mcgrps[] = {
60 [NL80211_MCGRP_CONFIG] = { .name = "config", },
61 [NL80211_MCGRP_SCAN] = { .name = "scan", },
62 [NL80211_MCGRP_REGULATORY] = { .name = "regulatory", },
63 [NL80211_MCGRP_MLME] = { .name = "mlme", },
64#ifdef CONFIG_NL80211_TESTMODE
65 [NL80211_MCGRP_TESTMODE] = { .name = "testmode", }
66#endif
67};
68
Johannes Berg89a54e42012-06-15 14:33:17 +020069/* returns ERR_PTR values */
70static struct wireless_dev *
71__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berg55682962007-09-20 13:09:35 -040072{
Johannes Berg89a54e42012-06-15 14:33:17 +020073 struct cfg80211_registered_device *rdev;
74 struct wireless_dev *result = NULL;
75 bool have_ifidx = attrs[NL80211_ATTR_IFINDEX];
76 bool have_wdev_id = attrs[NL80211_ATTR_WDEV];
77 u64 wdev_id;
78 int wiphy_idx = -1;
79 int ifidx = -1;
Johannes Berg55682962007-09-20 13:09:35 -040080
Johannes Berg5fe231e2013-05-08 21:45:15 +020081 ASSERT_RTNL();
Johannes Berg55682962007-09-20 13:09:35 -040082
Johannes Berg89a54e42012-06-15 14:33:17 +020083 if (!have_ifidx && !have_wdev_id)
84 return ERR_PTR(-EINVAL);
Johannes Berg55682962007-09-20 13:09:35 -040085
Johannes Berg89a54e42012-06-15 14:33:17 +020086 if (have_ifidx)
87 ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
88 if (have_wdev_id) {
89 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
90 wiphy_idx = wdev_id >> 32;
Johannes Berg55682962007-09-20 13:09:35 -040091 }
92
Johannes Berg89a54e42012-06-15 14:33:17 +020093 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
94 struct wireless_dev *wdev;
95
96 if (wiphy_net(&rdev->wiphy) != netns)
97 continue;
98
99 if (have_wdev_id && rdev->wiphy_idx != wiphy_idx)
100 continue;
101
Johannes Berg89a54e42012-06-15 14:33:17 +0200102 list_for_each_entry(wdev, &rdev->wdev_list, list) {
103 if (have_ifidx && wdev->netdev &&
104 wdev->netdev->ifindex == ifidx) {
105 result = wdev;
106 break;
107 }
108 if (have_wdev_id && wdev->identifier == (u32)wdev_id) {
109 result = wdev;
110 break;
111 }
112 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200113
114 if (result)
115 break;
116 }
117
118 if (result)
119 return result;
120 return ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400121}
122
Johannes Berga9455402012-06-15 13:32:49 +0200123static struct cfg80211_registered_device *
Johannes Berg878d9ec2012-06-15 14:18:32 +0200124__cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berga9455402012-06-15 13:32:49 +0200125{
Johannes Berg7fee4772012-06-15 14:09:58 +0200126 struct cfg80211_registered_device *rdev = NULL, *tmp;
127 struct net_device *netdev;
Johannes Berga9455402012-06-15 13:32:49 +0200128
Johannes Berg5fe231e2013-05-08 21:45:15 +0200129 ASSERT_RTNL();
Johannes Berga9455402012-06-15 13:32:49 +0200130
Johannes Berg878d9ec2012-06-15 14:18:32 +0200131 if (!attrs[NL80211_ATTR_WIPHY] &&
Johannes Berg89a54e42012-06-15 14:33:17 +0200132 !attrs[NL80211_ATTR_IFINDEX] &&
133 !attrs[NL80211_ATTR_WDEV])
Johannes Berg7fee4772012-06-15 14:09:58 +0200134 return ERR_PTR(-EINVAL);
135
Johannes Berg878d9ec2012-06-15 14:18:32 +0200136 if (attrs[NL80211_ATTR_WIPHY])
Johannes Berg7fee4772012-06-15 14:09:58 +0200137 rdev = cfg80211_rdev_by_wiphy_idx(
Johannes Berg878d9ec2012-06-15 14:18:32 +0200138 nla_get_u32(attrs[NL80211_ATTR_WIPHY]));
Johannes Berga9455402012-06-15 13:32:49 +0200139
Johannes Berg89a54e42012-06-15 14:33:17 +0200140 if (attrs[NL80211_ATTR_WDEV]) {
141 u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
142 struct wireless_dev *wdev;
143 bool found = false;
144
145 tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32);
146 if (tmp) {
147 /* make sure wdev exists */
Johannes Berg89a54e42012-06-15 14:33:17 +0200148 list_for_each_entry(wdev, &tmp->wdev_list, list) {
149 if (wdev->identifier != (u32)wdev_id)
150 continue;
151 found = true;
152 break;
153 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200154
155 if (!found)
156 tmp = NULL;
157
158 if (rdev && tmp != rdev)
159 return ERR_PTR(-EINVAL);
160 rdev = tmp;
161 }
162 }
163
Johannes Berg878d9ec2012-06-15 14:18:32 +0200164 if (attrs[NL80211_ATTR_IFINDEX]) {
165 int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
Johannes Berg4f7eff12012-06-15 14:14:22 +0200166 netdev = dev_get_by_index(netns, ifindex);
Johannes Berg7fee4772012-06-15 14:09:58 +0200167 if (netdev) {
168 if (netdev->ieee80211_ptr)
169 tmp = wiphy_to_dev(
170 netdev->ieee80211_ptr->wiphy);
171 else
172 tmp = NULL;
173
174 dev_put(netdev);
175
176 /* not wireless device -- return error */
177 if (!tmp)
178 return ERR_PTR(-EINVAL);
179
180 /* mismatch -- return error */
181 if (rdev && tmp != rdev)
182 return ERR_PTR(-EINVAL);
183
184 rdev = tmp;
Johannes Berga9455402012-06-15 13:32:49 +0200185 }
Johannes Berga9455402012-06-15 13:32:49 +0200186 }
187
Johannes Berg4f7eff12012-06-15 14:14:22 +0200188 if (!rdev)
189 return ERR_PTR(-ENODEV);
Johannes Berga9455402012-06-15 13:32:49 +0200190
Johannes Berg4f7eff12012-06-15 14:14:22 +0200191 if (netns != wiphy_net(&rdev->wiphy))
192 return ERR_PTR(-ENODEV);
193
194 return rdev;
Johannes Berga9455402012-06-15 13:32:49 +0200195}
196
197/*
198 * This function returns a pointer to the driver
199 * that the genl_info item that is passed refers to.
Johannes Berga9455402012-06-15 13:32:49 +0200200 *
201 * The result of this can be a PTR_ERR and hence must
202 * be checked with IS_ERR() for errors.
203 */
204static struct cfg80211_registered_device *
Johannes Berg4f7eff12012-06-15 14:14:22 +0200205cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
Johannes Berga9455402012-06-15 13:32:49 +0200206{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200207 return __cfg80211_rdev_from_attrs(netns, info->attrs);
Johannes Berga9455402012-06-15 13:32:49 +0200208}
209
Johannes Berg55682962007-09-20 13:09:35 -0400210/* policy for the attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000211static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
Johannes Berg55682962007-09-20 13:09:35 -0400212 [NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
213 [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
David S. Miller079e24e2009-05-26 21:15:00 -0700214 .len = 20-1 },
Jouni Malinen31888482008-10-30 16:59:24 +0200215 [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100216
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200217 [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
Sujith094d05d2008-12-12 11:57:43 +0530218 [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100219 [NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 },
220 [NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 },
221 [NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 },
222
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200223 [NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
224 [NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
225 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
226 [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
Lukáš Turek81077e82009-12-21 22:50:47 +0100227 [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
Johannes Berg55682962007-09-20 13:09:35 -0400228
229 [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
230 [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
231 [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
Johannes Berg41ade002007-12-19 02:03:29 +0100232
Eliad Pellere007b852011-11-24 18:13:56 +0200233 [NL80211_ATTR_MAC] = { .len = ETH_ALEN },
234 [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
Johannes Berg41ade002007-12-19 02:03:29 +0100235
Johannes Bergb9454e82009-07-08 13:29:08 +0200236 [NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
Johannes Berg41ade002007-12-19 02:03:29 +0100237 [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
238 .len = WLAN_MAX_KEY_LEN },
239 [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
240 [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
241 [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
Jouni Malinen81962262011-11-02 23:36:31 +0200242 [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Berge31b8212010-10-05 19:39:30 +0200243 [NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
Johannes Berged1b6cc2007-12-19 02:03:32 +0100244
245 [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
246 [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
247 [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
248 .len = IEEE80211_MAX_DATA_LEN },
249 [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
250 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg5727ef12007-12-19 02:03:34 +0100251 [NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
252 [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
253 [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
254 [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
255 .len = NL80211_MAX_SUPP_RATES },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100256 [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
Johannes Berg5727ef12007-12-19 02:03:34 +0100257 [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
Johannes Berg0a9542e2008-10-15 11:54:04 +0200258 [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100259 [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800260 .len = IEEE80211_MAX_MESH_ID_LEN },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100261 [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300262
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700263 [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
264 [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },
265
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300266 [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
267 [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
268 [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
Jouni Malinen90c97a02008-10-30 16:59:22 +0200269 [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
270 .len = NL80211_MAX_SUPP_RATES },
Helmut Schaa50b12f52010-11-19 12:40:25 +0100271 [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
Jouni Malinen36aedc92008-08-25 11:58:58 +0300272
Javier Cardona24bdd9f2010-12-16 17:37:48 -0800273 [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
Javier Cardona15d5dda2011-04-07 15:08:28 -0700274 [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700275
Johannes Berg6c739412011-11-03 09:27:01 +0100276 [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200277
278 [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
279 [NL80211_ATTR_IE] = { .type = NLA_BINARY,
280 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg2a519312009-02-10 21:25:55 +0100281 [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
282 [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
Jouni Malinen636a5d32009-03-19 13:39:22 +0200283
284 [NL80211_ATTR_SSID] = { .type = NLA_BINARY,
285 .len = IEEE80211_MAX_SSID_LEN },
286 [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
287 [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
Johannes Berg04a773a2009-04-19 21:24:32 +0200288 [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
Jouni Malinen1965c852009-04-22 21:38:25 +0300289 [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
Jouni Malinendc6382ce2009-05-06 22:09:37 +0300290 [NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
Johannes Bergeccb8e82009-05-11 21:57:56 +0300291 [NL80211_ATTR_STA_FLAGS2] = {
292 .len = sizeof(struct nl80211_sta_flag_update),
293 },
Jouni Malinen3f77316c2009-05-11 21:57:57 +0300294 [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
Johannes Bergc0692b82010-08-27 14:26:53 +0300295 [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
296 [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
Samuel Ortizb23aa672009-07-01 21:26:54 +0200297 [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
298 [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
299 [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
Johannes Berg463d0182009-07-14 00:33:35 +0200300 [NL80211_ATTR_PID] = { .type = NLA_U32 },
Felix Fietkau8b787642009-11-10 18:53:10 +0100301 [NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +0100302 [NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
303 .len = WLAN_PMKID_LEN },
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100304 [NL80211_ATTR_DURATION] = { .type = NLA_U32 },
305 [NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +0200306 [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
Jouni Malinen026331c2010-02-15 12:53:10 +0200307 [NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
308 .len = IEEE80211_MAX_DATA_LEN },
309 [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
Kalle Valoffb9eb32010-02-17 17:58:10 +0200310 [NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200311 [NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300312 [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200313 [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +0300314 [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
315 [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
Johannes Berg2e161f72010-08-12 15:38:38 +0200316 [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
Bruno Randolfafe0cbf2010-11-10 12:50:50 +0900317 [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
318 [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
Felix Fietkau885a46d2010-11-11 15:07:22 +0100319 [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100320 [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100321 [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200322 [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
Javier Cardona9c3990a2011-05-03 16:57:11 -0700323 [NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300324 [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
Johannes Berge5497d72011-07-05 16:35:40 +0200325 [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
Johannes Berg34850ab2011-07-18 18:08:35 +0200326 [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
Jouni Malinen32e9de82011-08-10 23:53:31 +0300327 [NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
Jouni Malinen9946ecf2011-08-10 23:55:56 +0300328 [NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY,
329 .len = IEEE80211_MAX_DATA_LEN },
330 [NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY,
331 .len = IEEE80211_MAX_DATA_LEN },
Vivek Natarajanf4b34b52011-08-29 14:23:03 +0530332 [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300333 [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530334 [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
Arik Nemtsov109086c2011-09-28 14:12:50 +0300335 [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 },
336 [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 },
337 [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
338 [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
339 [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
Johannes Berge247bd902011-11-04 11:18:21 +0100340 [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
Arik Nemtsov00f740e2011-11-10 11:28:56 +0200341 [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
342 .len = IEEE80211_MAX_DATA_LEN },
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -0700343 [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
Ben Greear7e7c8922011-11-18 11:31:59 -0800344 [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
345 [NL80211_ATTR_HT_CAPABILITY_MASK] = {
346 .len = NL80211_HT_CAPABILITY_LEN
347 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +0100348 [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +0530349 [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
Bala Shanmugam4486ea92012-03-07 17:27:12 +0530350 [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
Johannes Berg89a54e42012-06-15 14:33:17 +0200351 [NL80211_ATTR_WDEV] = { .type = NLA_U64 },
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700352 [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
Jouni Malinene39e5b52012-09-30 19:29:39 +0300353 [NL80211_ATTR_SAE_DATA] = { .type = NLA_BINARY, },
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +0000354 [NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN },
Sam Lefflered4737712012-10-11 21:03:31 -0700355 [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 },
Johannes Berg53cabad2012-11-14 15:17:28 +0100356 [NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 },
357 [NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530358 [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 },
359 [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED },
Jouni Malinen9d62a982013-02-14 21:10:13 +0200360 [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 },
361 [NL80211_ATTR_STA_EXT_CAPABILITY] = { .type = NLA_BINARY, },
Johannes Berg3713b4e2013-02-14 16:19:38 +0100362 [NL80211_ATTR_SPLIT_WIPHY_DUMP] = { .type = NLA_FLAG, },
Johannes Bergee2aca32013-02-21 17:36:01 +0100363 [NL80211_ATTR_DISABLE_VHT] = { .type = NLA_FLAG },
364 [NL80211_ATTR_VHT_CAPABILITY_MASK] = {
365 .len = NL80211_VHT_CAPABILITY_LEN,
366 },
Jouni Malinen355199e2013-02-27 17:14:27 +0200367 [NL80211_ATTR_MDID] = { .type = NLA_U16 },
368 [NL80211_ATTR_IE_RIC] = { .type = NLA_BINARY,
369 .len = IEEE80211_MAX_DATA_LEN },
Jouni Malinen5e4b6f52013-05-16 20:11:08 +0300370 [NL80211_ATTR_PEER_AID] = { .type = NLA_U16 },
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +0200371 [NL80211_ATTR_CH_SWITCH_COUNT] = { .type = NLA_U32 },
372 [NL80211_ATTR_CH_SWITCH_BLOCK_TX] = { .type = NLA_FLAG },
373 [NL80211_ATTR_CSA_IES] = { .type = NLA_NESTED },
374 [NL80211_ATTR_CSA_C_OFF_BEACON] = { .type = NLA_U16 },
375 [NL80211_ATTR_CSA_C_OFF_PRESP] = { .type = NLA_U16 },
Sunil Duttc01fc9a2013-10-09 20:45:21 +0530376 [NL80211_ATTR_STA_SUPPORTED_CHANNELS] = { .type = NLA_BINARY },
377 [NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES] = { .type = NLA_BINARY },
Simon Wunderlich5336fa82013-10-07 18:41:05 +0200378 [NL80211_ATTR_HANDLE_DFS] = { .type = NLA_FLAG },
Johannes Berg55682962007-09-20 13:09:35 -0400379};
380
Johannes Berge31b8212010-10-05 19:39:30 +0200381/* policy for the key attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000382static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
Johannes Bergfffd0932009-07-08 14:22:54 +0200383 [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
Johannes Bergb9454e82009-07-08 13:29:08 +0200384 [NL80211_KEY_IDX] = { .type = NLA_U8 },
385 [NL80211_KEY_CIPHER] = { .type = NLA_U32 },
Jouni Malinen81962262011-11-02 23:36:31 +0200386 [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Bergb9454e82009-07-08 13:29:08 +0200387 [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
388 [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
Johannes Berge31b8212010-10-05 19:39:30 +0200389 [NL80211_KEY_TYPE] = { .type = NLA_U32 },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100390 [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
391};
392
393/* policy for the key default flags */
394static const struct nla_policy
395nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = {
396 [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG },
397 [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG },
Johannes Bergb9454e82009-07-08 13:29:08 +0200398};
399
Johannes Bergff1b6e62011-05-04 15:37:28 +0200400/* policy for WoWLAN attributes */
401static const struct nla_policy
402nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
403 [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
404 [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
405 [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
406 [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED },
Johannes Berg77dbbb12011-07-13 10:48:55 +0200407 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
408 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
409 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
410 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
Johannes Berg2a0e0472013-01-23 22:57:40 +0100411 [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
412};
413
414static const struct nla_policy
415nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = {
416 [NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 },
417 [NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 },
418 [NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN },
419 [NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 },
420 [NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 },
421 [NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 },
422 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = {
423 .len = sizeof(struct nl80211_wowlan_tcp_data_seq)
424 },
425 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = {
426 .len = sizeof(struct nl80211_wowlan_tcp_data_token)
427 },
428 [NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 },
429 [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 },
430 [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200431};
432
Amitkumar Karwarbe29b992013-06-28 11:51:26 -0700433/* policy for coalesce rule attributes */
434static const struct nla_policy
435nl80211_coalesce_policy[NUM_NL80211_ATTR_COALESCE_RULE] = {
436 [NL80211_ATTR_COALESCE_RULE_DELAY] = { .type = NLA_U32 },
437 [NL80211_ATTR_COALESCE_RULE_CONDITION] = { .type = NLA_U32 },
438 [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN] = { .type = NLA_NESTED },
439};
440
Johannes Berge5497d72011-07-05 16:35:40 +0200441/* policy for GTK rekey offload attributes */
442static const struct nla_policy
443nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = {
444 [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN },
445 [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN },
446 [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN },
447};
448
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300449static const struct nla_policy
450nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
Johannes Berg4a4ab0d2012-06-13 11:17:11 +0200451 [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300452 .len = IEEE80211_MAX_SSID_LEN },
Thomas Pedersen88e920b2012-06-21 11:09:54 -0700453 [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300454};
455
Johannes Berg97990a02013-04-19 01:02:55 +0200456static int nl80211_prepare_wdev_dump(struct sk_buff *skb,
457 struct netlink_callback *cb,
458 struct cfg80211_registered_device **rdev,
459 struct wireless_dev **wdev)
Holger Schuriga0438972009-11-11 11:30:02 +0100460{
Johannes Berg67748892010-10-04 21:14:06 +0200461 int err;
462
Johannes Berg67748892010-10-04 21:14:06 +0200463 rtnl_lock();
464
Johannes Berg97990a02013-04-19 01:02:55 +0200465 if (!cb->args[0]) {
466 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
467 nl80211_fam.attrbuf, nl80211_fam.maxattr,
468 nl80211_policy);
469 if (err)
470 goto out_unlock;
471
472 *wdev = __cfg80211_wdev_from_attrs(sock_net(skb->sk),
473 nl80211_fam.attrbuf);
474 if (IS_ERR(*wdev)) {
475 err = PTR_ERR(*wdev);
476 goto out_unlock;
477 }
478 *rdev = wiphy_to_dev((*wdev)->wiphy);
Johannes Bergc319d502013-07-30 22:34:28 +0200479 /* 0 is the first index - add 1 to parse only once */
480 cb->args[0] = (*rdev)->wiphy_idx + 1;
Johannes Berg97990a02013-04-19 01:02:55 +0200481 cb->args[1] = (*wdev)->identifier;
482 } else {
Johannes Bergc319d502013-07-30 22:34:28 +0200483 /* subtract the 1 again here */
484 struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1);
Johannes Berg97990a02013-04-19 01:02:55 +0200485 struct wireless_dev *tmp;
486
487 if (!wiphy) {
488 err = -ENODEV;
489 goto out_unlock;
490 }
491 *rdev = wiphy_to_dev(wiphy);
492 *wdev = NULL;
493
Johannes Berg97990a02013-04-19 01:02:55 +0200494 list_for_each_entry(tmp, &(*rdev)->wdev_list, list) {
495 if (tmp->identifier == cb->args[1]) {
496 *wdev = tmp;
497 break;
498 }
499 }
Johannes Berg97990a02013-04-19 01:02:55 +0200500
501 if (!*wdev) {
502 err = -ENODEV;
503 goto out_unlock;
504 }
Johannes Berg67748892010-10-04 21:14:06 +0200505 }
506
Johannes Berg67748892010-10-04 21:14:06 +0200507 return 0;
Johannes Berg97990a02013-04-19 01:02:55 +0200508 out_unlock:
Johannes Berg67748892010-10-04 21:14:06 +0200509 rtnl_unlock();
510 return err;
511}
512
Johannes Berg97990a02013-04-19 01:02:55 +0200513static void nl80211_finish_wdev_dump(struct cfg80211_registered_device *rdev)
Johannes Berg67748892010-10-04 21:14:06 +0200514{
Johannes Berg67748892010-10-04 21:14:06 +0200515 rtnl_unlock();
516}
517
Johannes Bergf4a11bb2009-03-27 12:40:28 +0100518/* IE validation */
519static bool is_valid_ie_attr(const struct nlattr *attr)
520{
521 const u8 *pos;
522 int len;
523
524 if (!attr)
525 return true;
526
527 pos = nla_data(attr);
528 len = nla_len(attr);
529
530 while (len) {
531 u8 elemlen;
532
533 if (len < 2)
534 return false;
535 len -= 2;
536
537 elemlen = pos[1];
538 if (elemlen > len)
539 return false;
540
541 len -= elemlen;
542 pos += 2 + elemlen;
543 }
544
545 return true;
546}
547
Johannes Berg55682962007-09-20 13:09:35 -0400548/* message building helper */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000549static inline void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
Johannes Berg55682962007-09-20 13:09:35 -0400550 int flags, u8 cmd)
551{
552 /* since there is no private header just add the generic one */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000553 return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -0400554}
555
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400556static int nl80211_msg_put_channel(struct sk_buff *msg,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100557 struct ieee80211_channel *chan,
558 bool large)
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400559{
David S. Miller9360ffd2012-03-29 04:41:26 -0400560 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
561 chan->center_freq))
562 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400563
David S. Miller9360ffd2012-03-29 04:41:26 -0400564 if ((chan->flags & IEEE80211_CHAN_DISABLED) &&
565 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED))
566 goto nla_put_failure;
567 if ((chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) &&
568 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN))
569 goto nla_put_failure;
570 if ((chan->flags & IEEE80211_CHAN_NO_IBSS) &&
571 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IBSS))
572 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100573 if (chan->flags & IEEE80211_CHAN_RADAR) {
574 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
575 goto nla_put_failure;
576 if (large) {
577 u32 time;
578
579 time = elapsed_jiffies_msecs(chan->dfs_state_entered);
580
581 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE,
582 chan->dfs_state))
583 goto nla_put_failure;
584 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME,
585 time))
586 goto nla_put_failure;
587 }
588 }
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400589
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100590 if (large) {
591 if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) &&
592 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS))
593 goto nla_put_failure;
594 if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) &&
595 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS))
596 goto nla_put_failure;
597 if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) &&
598 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ))
599 goto nla_put_failure;
600 if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) &&
601 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ))
602 goto nla_put_failure;
603 }
604
David S. Miller9360ffd2012-03-29 04:41:26 -0400605 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
606 DBM_TO_MBM(chan->max_power)))
607 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400608
609 return 0;
610
611 nla_put_failure:
612 return -ENOBUFS;
613}
614
Johannes Berg55682962007-09-20 13:09:35 -0400615/* netlink command implementations */
616
Johannes Bergb9454e82009-07-08 13:29:08 +0200617struct key_parse {
618 struct key_params p;
619 int idx;
Johannes Berge31b8212010-10-05 19:39:30 +0200620 int type;
Johannes Bergb9454e82009-07-08 13:29:08 +0200621 bool def, defmgmt;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100622 bool def_uni, def_multi;
Johannes Bergb9454e82009-07-08 13:29:08 +0200623};
624
625static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k)
626{
627 struct nlattr *tb[NL80211_KEY_MAX + 1];
628 int err = nla_parse_nested(tb, NL80211_KEY_MAX, key,
629 nl80211_key_policy);
630 if (err)
631 return err;
632
633 k->def = !!tb[NL80211_KEY_DEFAULT];
634 k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT];
635
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100636 if (k->def) {
637 k->def_uni = true;
638 k->def_multi = true;
639 }
640 if (k->defmgmt)
641 k->def_multi = true;
642
Johannes Bergb9454e82009-07-08 13:29:08 +0200643 if (tb[NL80211_KEY_IDX])
644 k->idx = nla_get_u8(tb[NL80211_KEY_IDX]);
645
646 if (tb[NL80211_KEY_DATA]) {
647 k->p.key = nla_data(tb[NL80211_KEY_DATA]);
648 k->p.key_len = nla_len(tb[NL80211_KEY_DATA]);
649 }
650
651 if (tb[NL80211_KEY_SEQ]) {
652 k->p.seq = nla_data(tb[NL80211_KEY_SEQ]);
653 k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]);
654 }
655
656 if (tb[NL80211_KEY_CIPHER])
657 k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]);
658
Johannes Berge31b8212010-10-05 19:39:30 +0200659 if (tb[NL80211_KEY_TYPE]) {
660 k->type = nla_get_u32(tb[NL80211_KEY_TYPE]);
661 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
662 return -EINVAL;
663 }
664
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100665 if (tb[NL80211_KEY_DEFAULT_TYPES]) {
666 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
Johannes Berg2da8f412012-01-20 13:52:37 +0100667 err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
668 tb[NL80211_KEY_DEFAULT_TYPES],
669 nl80211_key_default_policy);
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100670 if (err)
671 return err;
672
673 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
674 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
675 }
676
Johannes Bergb9454e82009-07-08 13:29:08 +0200677 return 0;
678}
679
680static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k)
681{
682 if (info->attrs[NL80211_ATTR_KEY_DATA]) {
683 k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
684 k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
685 }
686
687 if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
688 k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
689 k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
690 }
691
692 if (info->attrs[NL80211_ATTR_KEY_IDX])
693 k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
694
695 if (info->attrs[NL80211_ATTR_KEY_CIPHER])
696 k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);
697
698 k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT];
699 k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT];
700
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100701 if (k->def) {
702 k->def_uni = true;
703 k->def_multi = true;
704 }
705 if (k->defmgmt)
706 k->def_multi = true;
707
Johannes Berge31b8212010-10-05 19:39:30 +0200708 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
709 k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
710 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
711 return -EINVAL;
712 }
713
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100714 if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) {
715 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
716 int err = nla_parse_nested(
717 kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
718 info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES],
719 nl80211_key_default_policy);
720 if (err)
721 return err;
722
723 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
724 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
725 }
726
Johannes Bergb9454e82009-07-08 13:29:08 +0200727 return 0;
728}
729
730static int nl80211_parse_key(struct genl_info *info, struct key_parse *k)
731{
732 int err;
733
734 memset(k, 0, sizeof(*k));
735 k->idx = -1;
Johannes Berge31b8212010-10-05 19:39:30 +0200736 k->type = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +0200737
738 if (info->attrs[NL80211_ATTR_KEY])
739 err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k);
740 else
741 err = nl80211_parse_key_old(info, k);
742
743 if (err)
744 return err;
745
746 if (k->def && k->defmgmt)
747 return -EINVAL;
748
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100749 if (k->defmgmt) {
750 if (k->def_uni || !k->def_multi)
751 return -EINVAL;
752 }
753
Johannes Bergb9454e82009-07-08 13:29:08 +0200754 if (k->idx != -1) {
755 if (k->defmgmt) {
756 if (k->idx < 4 || k->idx > 5)
757 return -EINVAL;
758 } else if (k->def) {
759 if (k->idx < 0 || k->idx > 3)
760 return -EINVAL;
761 } else {
762 if (k->idx < 0 || k->idx > 5)
763 return -EINVAL;
764 }
765 }
766
767 return 0;
768}
769
Johannes Bergfffd0932009-07-08 14:22:54 +0200770static struct cfg80211_cached_keys *
771nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +0530772 struct nlattr *keys, bool *no_ht)
Johannes Bergfffd0932009-07-08 14:22:54 +0200773{
774 struct key_parse parse;
775 struct nlattr *key;
776 struct cfg80211_cached_keys *result;
777 int rem, err, def = 0;
778
779 result = kzalloc(sizeof(*result), GFP_KERNEL);
780 if (!result)
781 return ERR_PTR(-ENOMEM);
782
783 result->def = -1;
784 result->defmgmt = -1;
785
786 nla_for_each_nested(key, keys, rem) {
787 memset(&parse, 0, sizeof(parse));
788 parse.idx = -1;
789
790 err = nl80211_parse_key_new(key, &parse);
791 if (err)
792 goto error;
793 err = -EINVAL;
794 if (!parse.p.key)
795 goto error;
796 if (parse.idx < 0 || parse.idx > 4)
797 goto error;
798 if (parse.def) {
799 if (def)
800 goto error;
801 def = 1;
802 result->def = parse.idx;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100803 if (!parse.def_uni || !parse.def_multi)
804 goto error;
Johannes Bergfffd0932009-07-08 14:22:54 +0200805 } else if (parse.defmgmt)
806 goto error;
807 err = cfg80211_validate_key_settings(rdev, &parse.p,
Johannes Berge31b8212010-10-05 19:39:30 +0200808 parse.idx, false, NULL);
Johannes Bergfffd0932009-07-08 14:22:54 +0200809 if (err)
810 goto error;
811 result->params[parse.idx].cipher = parse.p.cipher;
812 result->params[parse.idx].key_len = parse.p.key_len;
813 result->params[parse.idx].key = result->data[parse.idx];
814 memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len);
Sujith Manoharande7044e2012-10-18 10:19:28 +0530815
816 if (parse.p.cipher == WLAN_CIPHER_SUITE_WEP40 ||
817 parse.p.cipher == WLAN_CIPHER_SUITE_WEP104) {
818 if (no_ht)
819 *no_ht = true;
820 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200821 }
822
823 return result;
824 error:
825 kfree(result);
826 return ERR_PTR(err);
827}
828
829static int nl80211_key_allowed(struct wireless_dev *wdev)
830{
831 ASSERT_WDEV_LOCK(wdev);
832
Johannes Bergfffd0932009-07-08 14:22:54 +0200833 switch (wdev->iftype) {
834 case NL80211_IFTYPE_AP:
835 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200836 case NL80211_IFTYPE_P2P_GO:
Thomas Pedersenff973af2011-05-03 16:57:12 -0700837 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergfffd0932009-07-08 14:22:54 +0200838 break;
839 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200840 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200841 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergceca7b72013-05-16 00:55:45 +0200842 if (!wdev->current_bss)
Johannes Bergfffd0932009-07-08 14:22:54 +0200843 return -ENOLINK;
844 break;
845 default:
846 return -EINVAL;
847 }
848
849 return 0;
850}
851
Johannes Berg7527a782011-05-13 10:58:57 +0200852static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes)
853{
854 struct nlattr *nl_modes = nla_nest_start(msg, attr);
855 int i;
856
857 if (!nl_modes)
858 goto nla_put_failure;
859
860 i = 0;
861 while (ifmodes) {
David S. Miller9360ffd2012-03-29 04:41:26 -0400862 if ((ifmodes & 1) && nla_put_flag(msg, i))
863 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200864 ifmodes >>= 1;
865 i++;
866 }
867
868 nla_nest_end(msg, nl_modes);
869 return 0;
870
871nla_put_failure:
872 return -ENOBUFS;
873}
874
875static int nl80211_put_iface_combinations(struct wiphy *wiphy,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100876 struct sk_buff *msg,
877 bool large)
Johannes Berg7527a782011-05-13 10:58:57 +0200878{
879 struct nlattr *nl_combis;
880 int i, j;
881
882 nl_combis = nla_nest_start(msg,
883 NL80211_ATTR_INTERFACE_COMBINATIONS);
884 if (!nl_combis)
885 goto nla_put_failure;
886
887 for (i = 0; i < wiphy->n_iface_combinations; i++) {
888 const struct ieee80211_iface_combination *c;
889 struct nlattr *nl_combi, *nl_limits;
890
891 c = &wiphy->iface_combinations[i];
892
893 nl_combi = nla_nest_start(msg, i + 1);
894 if (!nl_combi)
895 goto nla_put_failure;
896
897 nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS);
898 if (!nl_limits)
899 goto nla_put_failure;
900
901 for (j = 0; j < c->n_limits; j++) {
902 struct nlattr *nl_limit;
903
904 nl_limit = nla_nest_start(msg, j + 1);
905 if (!nl_limit)
906 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -0400907 if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
908 c->limits[j].max))
909 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200910 if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES,
911 c->limits[j].types))
912 goto nla_put_failure;
913 nla_nest_end(msg, nl_limit);
914 }
915
916 nla_nest_end(msg, nl_limits);
917
David S. Miller9360ffd2012-03-29 04:41:26 -0400918 if (c->beacon_int_infra_match &&
919 nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH))
920 goto nla_put_failure;
921 if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS,
922 c->num_different_channels) ||
923 nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM,
924 c->max_interfaces))
925 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100926 if (large &&
927 nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
928 c->radar_detect_widths))
929 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200930
931 nla_nest_end(msg, nl_combi);
932 }
933
934 nla_nest_end(msg, nl_combis);
935
936 return 0;
937nla_put_failure:
938 return -ENOBUFS;
939}
940
Johannes Berg3713b4e2013-02-14 16:19:38 +0100941#ifdef CONFIG_PM
Johannes Bergb56cf722013-02-20 01:02:38 +0100942static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev,
943 struct sk_buff *msg)
944{
Johannes Berg964dc9e2013-06-03 17:25:34 +0200945 const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan->tcp;
Johannes Bergb56cf722013-02-20 01:02:38 +0100946 struct nlattr *nl_tcp;
947
948 if (!tcp)
949 return 0;
950
951 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
952 if (!nl_tcp)
953 return -ENOBUFS;
954
955 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
956 tcp->data_payload_max))
957 return -ENOBUFS;
958
959 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
960 tcp->data_payload_max))
961 return -ENOBUFS;
962
963 if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ))
964 return -ENOBUFS;
965
966 if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
967 sizeof(*tcp->tok), tcp->tok))
968 return -ENOBUFS;
969
970 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
971 tcp->data_interval_max))
972 return -ENOBUFS;
973
974 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
975 tcp->wake_payload_max))
976 return -ENOBUFS;
977
978 nla_nest_end(msg, nl_tcp);
979 return 0;
980}
981
Johannes Berg3713b4e2013-02-14 16:19:38 +0100982static int nl80211_send_wowlan(struct sk_buff *msg,
Johannes Bergb56cf722013-02-20 01:02:38 +0100983 struct cfg80211_registered_device *dev,
984 bool large)
Johannes Berg3713b4e2013-02-14 16:19:38 +0100985{
986 struct nlattr *nl_wowlan;
987
Johannes Berg964dc9e2013-06-03 17:25:34 +0200988 if (!dev->wiphy.wowlan)
Johannes Berg3713b4e2013-02-14 16:19:38 +0100989 return 0;
990
991 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED);
992 if (!nl_wowlan)
993 return -ENOBUFS;
994
Johannes Berg964dc9e2013-06-03 17:25:34 +0200995 if (((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_ANY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100996 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200997 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_DISCONNECT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100998 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200999 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001000 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +02001001 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001002 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +02001003 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001004 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +02001005 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001006 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +02001007 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001008 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +02001009 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +01001010 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
1011 return -ENOBUFS;
1012
Johannes Berg964dc9e2013-06-03 17:25:34 +02001013 if (dev->wiphy.wowlan->n_patterns) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07001014 struct nl80211_pattern_support pat = {
Johannes Berg964dc9e2013-06-03 17:25:34 +02001015 .max_patterns = dev->wiphy.wowlan->n_patterns,
1016 .min_pattern_len = dev->wiphy.wowlan->pattern_min_len,
1017 .max_pattern_len = dev->wiphy.wowlan->pattern_max_len,
1018 .max_pkt_offset = dev->wiphy.wowlan->max_pkt_offset,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001019 };
1020
1021 if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
1022 sizeof(pat), &pat))
1023 return -ENOBUFS;
1024 }
1025
Johannes Bergb56cf722013-02-20 01:02:38 +01001026 if (large && nl80211_send_wowlan_tcp_caps(dev, msg))
1027 return -ENOBUFS;
1028
Johannes Berg3713b4e2013-02-14 16:19:38 +01001029 nla_nest_end(msg, nl_wowlan);
1030
1031 return 0;
1032}
1033#endif
1034
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001035static int nl80211_send_coalesce(struct sk_buff *msg,
1036 struct cfg80211_registered_device *dev)
1037{
1038 struct nl80211_coalesce_rule_support rule;
1039
1040 if (!dev->wiphy.coalesce)
1041 return 0;
1042
1043 rule.max_rules = dev->wiphy.coalesce->n_rules;
1044 rule.max_delay = dev->wiphy.coalesce->max_delay;
1045 rule.pat.max_patterns = dev->wiphy.coalesce->n_patterns;
1046 rule.pat.min_pattern_len = dev->wiphy.coalesce->pattern_min_len;
1047 rule.pat.max_pattern_len = dev->wiphy.coalesce->pattern_max_len;
1048 rule.pat.max_pkt_offset = dev->wiphy.coalesce->max_pkt_offset;
1049
1050 if (nla_put(msg, NL80211_ATTR_COALESCE_RULE, sizeof(rule), &rule))
1051 return -ENOBUFS;
1052
1053 return 0;
1054}
1055
Johannes Berg3713b4e2013-02-14 16:19:38 +01001056static int nl80211_send_band_rateinfo(struct sk_buff *msg,
1057 struct ieee80211_supported_band *sband)
1058{
1059 struct nlattr *nl_rates, *nl_rate;
1060 struct ieee80211_rate *rate;
1061 int i;
1062
1063 /* add HT info */
1064 if (sband->ht_cap.ht_supported &&
1065 (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET,
1066 sizeof(sband->ht_cap.mcs),
1067 &sband->ht_cap.mcs) ||
1068 nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA,
1069 sband->ht_cap.cap) ||
1070 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
1071 sband->ht_cap.ampdu_factor) ||
1072 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
1073 sband->ht_cap.ampdu_density)))
1074 return -ENOBUFS;
1075
1076 /* add VHT info */
1077 if (sband->vht_cap.vht_supported &&
1078 (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET,
1079 sizeof(sband->vht_cap.vht_mcs),
1080 &sband->vht_cap.vht_mcs) ||
1081 nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA,
1082 sband->vht_cap.cap)))
1083 return -ENOBUFS;
1084
1085 /* add bitrates */
1086 nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
1087 if (!nl_rates)
1088 return -ENOBUFS;
1089
1090 for (i = 0; i < sband->n_bitrates; i++) {
1091 nl_rate = nla_nest_start(msg, i);
1092 if (!nl_rate)
1093 return -ENOBUFS;
1094
1095 rate = &sband->bitrates[i];
1096 if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE,
1097 rate->bitrate))
1098 return -ENOBUFS;
1099 if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
1100 nla_put_flag(msg,
1101 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE))
1102 return -ENOBUFS;
1103
1104 nla_nest_end(msg, nl_rate);
1105 }
1106
1107 nla_nest_end(msg, nl_rates);
1108
1109 return 0;
1110}
1111
1112static int
1113nl80211_send_mgmt_stypes(struct sk_buff *msg,
1114 const struct ieee80211_txrx_stypes *mgmt_stypes)
1115{
1116 u16 stypes;
1117 struct nlattr *nl_ftypes, *nl_ifs;
1118 enum nl80211_iftype ift;
1119 int i;
1120
1121 if (!mgmt_stypes)
1122 return 0;
1123
1124 nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES);
1125 if (!nl_ifs)
1126 return -ENOBUFS;
1127
1128 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1129 nl_ftypes = nla_nest_start(msg, ift);
1130 if (!nl_ftypes)
1131 return -ENOBUFS;
1132 i = 0;
1133 stypes = mgmt_stypes[ift].tx;
1134 while (stypes) {
1135 if ((stypes & 1) &&
1136 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1137 (i << 4) | IEEE80211_FTYPE_MGMT))
1138 return -ENOBUFS;
1139 stypes >>= 1;
1140 i++;
1141 }
1142 nla_nest_end(msg, nl_ftypes);
1143 }
1144
1145 nla_nest_end(msg, nl_ifs);
1146
1147 nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES);
1148 if (!nl_ifs)
1149 return -ENOBUFS;
1150
1151 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1152 nl_ftypes = nla_nest_start(msg, ift);
1153 if (!nl_ftypes)
1154 return -ENOBUFS;
1155 i = 0;
1156 stypes = mgmt_stypes[ift].rx;
1157 while (stypes) {
1158 if ((stypes & 1) &&
1159 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1160 (i << 4) | IEEE80211_FTYPE_MGMT))
1161 return -ENOBUFS;
1162 stypes >>= 1;
1163 i++;
1164 }
1165 nla_nest_end(msg, nl_ftypes);
1166 }
1167 nla_nest_end(msg, nl_ifs);
1168
1169 return 0;
1170}
1171
Johannes Berg86e8cf92013-06-19 10:57:22 +02001172struct nl80211_dump_wiphy_state {
1173 s64 filter_wiphy;
1174 long start;
1175 long split_start, band_start, chan_start;
1176 bool split;
1177};
1178
Johannes Berg3713b4e2013-02-14 16:19:38 +01001179static int nl80211_send_wiphy(struct cfg80211_registered_device *dev,
1180 struct sk_buff *msg, u32 portid, u32 seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001181 int flags, struct nl80211_dump_wiphy_state *state)
Johannes Berg55682962007-09-20 13:09:35 -04001182{
1183 void *hdr;
Johannes Bergee688b002008-01-24 19:38:39 +01001184 struct nlattr *nl_bands, *nl_band;
1185 struct nlattr *nl_freqs, *nl_freq;
Johannes Berg8fdc6212009-03-14 09:34:01 +01001186 struct nlattr *nl_cmds;
Johannes Bergee688b002008-01-24 19:38:39 +01001187 enum ieee80211_band band;
1188 struct ieee80211_channel *chan;
Johannes Bergee688b002008-01-24 19:38:39 +01001189 int i;
Johannes Berg2e161f72010-08-12 15:38:38 +02001190 const struct ieee80211_txrx_stypes *mgmt_stypes =
1191 dev->wiphy.mgmt_stypes;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001192 u32 features;
Johannes Berg55682962007-09-20 13:09:35 -04001193
Eric W. Biederman15e47302012-09-07 20:12:54 +00001194 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_WIPHY);
Johannes Berg55682962007-09-20 13:09:35 -04001195 if (!hdr)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001196 return -ENOBUFS;
1197
Johannes Berg86e8cf92013-06-19 10:57:22 +02001198 if (WARN_ON(!state))
1199 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -04001200
David S. Miller9360ffd2012-03-29 04:41:26 -04001201 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, dev->wiphy_idx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001202 nla_put_string(msg, NL80211_ATTR_WIPHY_NAME,
1203 wiphy_name(&dev->wiphy)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04001204 nla_put_u32(msg, NL80211_ATTR_GENERATION,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001205 cfg80211_rdev_list_generation))
David S. Miller9360ffd2012-03-29 04:41:26 -04001206 goto nla_put_failure;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001207
Johannes Berg86e8cf92013-06-19 10:57:22 +02001208 switch (state->split_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001209 case 0:
1210 if (nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
1211 dev->wiphy.retry_short) ||
1212 nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
1213 dev->wiphy.retry_long) ||
1214 nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
1215 dev->wiphy.frag_threshold) ||
1216 nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
1217 dev->wiphy.rts_threshold) ||
1218 nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS,
1219 dev->wiphy.coverage_class) ||
1220 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
1221 dev->wiphy.max_scan_ssids) ||
1222 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
1223 dev->wiphy.max_sched_scan_ssids) ||
1224 nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
1225 dev->wiphy.max_scan_ie_len) ||
1226 nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,
1227 dev->wiphy.max_sched_scan_ie_len) ||
1228 nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS,
1229 dev->wiphy.max_match_sets))
Johannes Bergee688b002008-01-24 19:38:39 +01001230 goto nla_put_failure;
1231
Johannes Berg3713b4e2013-02-14 16:19:38 +01001232 if ((dev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) &&
1233 nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN))
1234 goto nla_put_failure;
1235 if ((dev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
1236 nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH))
1237 goto nla_put_failure;
1238 if ((dev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
1239 nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD))
1240 goto nla_put_failure;
1241 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
1242 nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT))
1243 goto nla_put_failure;
1244 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
1245 nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT))
1246 goto nla_put_failure;
1247 if ((dev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) &&
1248 nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP))
David S. Miller9360ffd2012-03-29 04:41:26 -04001249 goto nla_put_failure;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001250 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ) &&
1251 nla_put_flag(msg, WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1252 goto nla_put_failure;
Johannes Bergd51626d2008-10-09 12:20:13 +02001253
Johannes Berg86e8cf92013-06-19 10:57:22 +02001254 state->split_start++;
1255 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001256 break;
1257 case 1:
1258 if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
1259 sizeof(u32) * dev->wiphy.n_cipher_suites,
1260 dev->wiphy.cipher_suites))
Mahesh Palivelabf0c111e2012-06-22 07:27:46 +00001261 goto nla_put_failure;
1262
Johannes Berg3713b4e2013-02-14 16:19:38 +01001263 if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS,
1264 dev->wiphy.max_num_pmkids))
Johannes Bergee688b002008-01-24 19:38:39 +01001265 goto nla_put_failure;
1266
Johannes Berg3713b4e2013-02-14 16:19:38 +01001267 if ((dev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
1268 nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE))
1269 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001270
Johannes Berg3713b4e2013-02-14 16:19:38 +01001271 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
1272 dev->wiphy.available_antennas_tx) ||
1273 nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
1274 dev->wiphy.available_antennas_rx))
1275 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001276
Johannes Berg3713b4e2013-02-14 16:19:38 +01001277 if ((dev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) &&
1278 nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD,
1279 dev->wiphy.probe_resp_offload))
1280 goto nla_put_failure;
Jouni Malinene2f367f262008-11-21 19:01:30 +02001281
Johannes Berg3713b4e2013-02-14 16:19:38 +01001282 if ((dev->wiphy.available_antennas_tx ||
1283 dev->wiphy.available_antennas_rx) &&
1284 dev->ops->get_antenna) {
1285 u32 tx_ant = 0, rx_ant = 0;
1286 int res;
1287 res = rdev_get_antenna(dev, &tx_ant, &rx_ant);
1288 if (!res) {
1289 if (nla_put_u32(msg,
1290 NL80211_ATTR_WIPHY_ANTENNA_TX,
1291 tx_ant) ||
1292 nla_put_u32(msg,
1293 NL80211_ATTR_WIPHY_ANTENNA_RX,
1294 rx_ant))
1295 goto nla_put_failure;
1296 }
Johannes Bergee688b002008-01-24 19:38:39 +01001297 }
1298
Johannes Berg86e8cf92013-06-19 10:57:22 +02001299 state->split_start++;
1300 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001301 break;
1302 case 2:
1303 if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
1304 dev->wiphy.interface_modes))
1305 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001306 state->split_start++;
1307 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001308 break;
1309 case 3:
1310 nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
1311 if (!nl_bands)
Johannes Bergee688b002008-01-24 19:38:39 +01001312 goto nla_put_failure;
1313
Johannes Berg86e8cf92013-06-19 10:57:22 +02001314 for (band = state->band_start;
1315 band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001316 struct ieee80211_supported_band *sband;
1317
1318 sband = dev->wiphy.bands[band];
1319
1320 if (!sband)
1321 continue;
1322
1323 nl_band = nla_nest_start(msg, band);
1324 if (!nl_band)
Johannes Bergee688b002008-01-24 19:38:39 +01001325 goto nla_put_failure;
1326
Johannes Berg86e8cf92013-06-19 10:57:22 +02001327 switch (state->chan_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001328 case 0:
1329 if (nl80211_send_band_rateinfo(msg, sband))
1330 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001331 state->chan_start++;
1332 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001333 break;
1334 default:
1335 /* add frequencies */
1336 nl_freqs = nla_nest_start(
1337 msg, NL80211_BAND_ATTR_FREQS);
1338 if (!nl_freqs)
1339 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001340
Johannes Berg86e8cf92013-06-19 10:57:22 +02001341 for (i = state->chan_start - 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001342 i < sband->n_channels;
1343 i++) {
1344 nl_freq = nla_nest_start(msg, i);
1345 if (!nl_freq)
1346 goto nla_put_failure;
1347
1348 chan = &sband->channels[i];
1349
Johannes Berg86e8cf92013-06-19 10:57:22 +02001350 if (nl80211_msg_put_channel(
1351 msg, chan,
1352 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001353 goto nla_put_failure;
1354
1355 nla_nest_end(msg, nl_freq);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001356 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001357 break;
1358 }
1359 if (i < sband->n_channels)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001360 state->chan_start = i + 2;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001361 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001362 state->chan_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001363 nla_nest_end(msg, nl_freqs);
1364 }
1365
1366 nla_nest_end(msg, nl_band);
1367
Johannes Berg86e8cf92013-06-19 10:57:22 +02001368 if (state->split) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001369 /* start again here */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001370 if (state->chan_start)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001371 band--;
1372 break;
1373 }
Johannes Bergee688b002008-01-24 19:38:39 +01001374 }
Johannes Berg3713b4e2013-02-14 16:19:38 +01001375 nla_nest_end(msg, nl_bands);
Johannes Bergee688b002008-01-24 19:38:39 +01001376
Johannes Berg3713b4e2013-02-14 16:19:38 +01001377 if (band < IEEE80211_NUM_BANDS)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001378 state->band_start = band + 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001379 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001380 state->band_start = 0;
Johannes Bergee688b002008-01-24 19:38:39 +01001381
Johannes Berg3713b4e2013-02-14 16:19:38 +01001382 /* if bands & channels are done, continue outside */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001383 if (state->band_start == 0 && state->chan_start == 0)
1384 state->split_start++;
1385 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001386 break;
1387 case 4:
1388 nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
1389 if (!nl_cmds)
David S. Miller9360ffd2012-03-29 04:41:26 -04001390 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001391
1392 i = 0;
1393#define CMD(op, n) \
1394 do { \
1395 if (dev->ops->op) { \
1396 i++; \
1397 if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
1398 goto nla_put_failure; \
1399 } \
1400 } while (0)
1401
1402 CMD(add_virtual_intf, NEW_INTERFACE);
1403 CMD(change_virtual_intf, SET_INTERFACE);
1404 CMD(add_key, NEW_KEY);
1405 CMD(start_ap, START_AP);
1406 CMD(add_station, NEW_STATION);
1407 CMD(add_mpath, NEW_MPATH);
1408 CMD(update_mesh_config, SET_MESH_CONFIG);
1409 CMD(change_bss, SET_BSS);
1410 CMD(auth, AUTHENTICATE);
1411 CMD(assoc, ASSOCIATE);
1412 CMD(deauth, DEAUTHENTICATE);
1413 CMD(disassoc, DISASSOCIATE);
1414 CMD(join_ibss, JOIN_IBSS);
1415 CMD(join_mesh, JOIN_MESH);
1416 CMD(set_pmksa, SET_PMKSA);
1417 CMD(del_pmksa, DEL_PMKSA);
1418 CMD(flush_pmksa, FLUSH_PMKSA);
1419 if (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
1420 CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1421 CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1422 CMD(mgmt_tx, FRAME);
1423 CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
1424 if (dev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
1425 i++;
1426 if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
1427 goto nla_put_failure;
1428 }
1429 if (dev->ops->set_monitor_channel || dev->ops->start_ap ||
1430 dev->ops->join_mesh) {
1431 i++;
1432 if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
1433 goto nla_put_failure;
1434 }
1435 CMD(set_wds_peer, SET_WDS_PEER);
1436 if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
1437 CMD(tdls_mgmt, TDLS_MGMT);
1438 CMD(tdls_oper, TDLS_OPER);
1439 }
1440 if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
1441 CMD(sched_scan_start, START_SCHED_SCAN);
1442 CMD(probe_client, PROBE_CLIENT);
1443 CMD(set_noack_map, SET_NOACK_MAP);
1444 if (dev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
1445 i++;
1446 if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
1447 goto nla_put_failure;
1448 }
1449 CMD(start_p2p_device, START_P2P_DEVICE);
1450 CMD(set_mcast_rate, SET_MCAST_RATE);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001451 if (state->split) {
Arend van Spriel5de17982013-04-18 15:49:00 +02001452 CMD(crit_proto_start, CRIT_PROTOCOL_START);
1453 CMD(crit_proto_stop, CRIT_PROTOCOL_STOP);
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02001454 if (dev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH)
1455 CMD(channel_switch, CHANNEL_SWITCH);
Arend van Spriel5de17982013-04-18 15:49:00 +02001456 }
Johannes Berg8fdc6212009-03-14 09:34:01 +01001457
Kalle Valo4745fc02011-11-17 19:06:10 +02001458#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg3713b4e2013-02-14 16:19:38 +01001459 CMD(testmode_cmd, TESTMODE);
Kalle Valo4745fc02011-11-17 19:06:10 +02001460#endif
1461
Johannes Berg8fdc6212009-03-14 09:34:01 +01001462#undef CMD
Samuel Ortizb23aa672009-07-01 21:26:54 +02001463
Johannes Berg3713b4e2013-02-14 16:19:38 +01001464 if (dev->ops->connect || dev->ops->auth) {
1465 i++;
1466 if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
Johannes Berg2e161f72010-08-12 15:38:38 +02001467 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001468 }
1469
Johannes Berg3713b4e2013-02-14 16:19:38 +01001470 if (dev->ops->disconnect || dev->ops->deauth) {
1471 i++;
1472 if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
1473 goto nla_put_failure;
1474 }
Johannes Berg74b70a42010-08-24 12:15:53 +02001475
Johannes Berg3713b4e2013-02-14 16:19:38 +01001476 nla_nest_end(msg, nl_cmds);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001477 state->split_start++;
1478 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001479 break;
1480 case 5:
1481 if (dev->ops->remain_on_channel &&
1482 (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
1483 nla_put_u32(msg,
1484 NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,
1485 dev->wiphy.max_remain_on_channel_duration))
Johannes Berg2e161f72010-08-12 15:38:38 +02001486 goto nla_put_failure;
1487
Johannes Berg3713b4e2013-02-14 16:19:38 +01001488 if ((dev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
1489 nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
1490 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001491
Johannes Berg3713b4e2013-02-14 16:19:38 +01001492 if (nl80211_send_mgmt_stypes(msg, mgmt_stypes))
1493 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001494 state->split_start++;
1495 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001496 break;
1497 case 6:
Johannes Bergdfb89c52012-06-27 09:23:48 +02001498#ifdef CONFIG_PM
Johannes Berg86e8cf92013-06-19 10:57:22 +02001499 if (nl80211_send_wowlan(msg, dev, state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001500 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001501 state->split_start++;
1502 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001503 break;
1504#else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001505 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001506#endif
1507 case 7:
1508 if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
1509 dev->wiphy.software_iftypes))
Johannes Bergff1b6e62011-05-04 15:37:28 +02001510 goto nla_put_failure;
1511
Johannes Berg86e8cf92013-06-19 10:57:22 +02001512 if (nl80211_put_iface_combinations(&dev->wiphy, msg,
1513 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001514 goto nla_put_failure;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001515
Johannes Berg86e8cf92013-06-19 10:57:22 +02001516 state->split_start++;
1517 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001518 break;
1519 case 8:
1520 if ((dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
1521 nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
1522 dev->wiphy.ap_sme_capa))
1523 goto nla_put_failure;
1524
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001525 features = dev->wiphy.features;
1526 /*
1527 * We can only add the per-channel limit information if the
1528 * dump is split, otherwise it makes it too big. Therefore
1529 * only advertise it in that case.
1530 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001531 if (state->split)
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001532 features |= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS;
1533 if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, features))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001534 goto nla_put_failure;
1535
1536 if (dev->wiphy.ht_capa_mod_mask &&
1537 nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK,
1538 sizeof(*dev->wiphy.ht_capa_mod_mask),
1539 dev->wiphy.ht_capa_mod_mask))
1540 goto nla_put_failure;
1541
1542 if (dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME &&
1543 dev->wiphy.max_acl_mac_addrs &&
1544 nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX,
1545 dev->wiphy.max_acl_mac_addrs))
1546 goto nla_put_failure;
1547
1548 /*
1549 * Any information below this point is only available to
1550 * applications that can deal with it being split. This
1551 * helps ensure that newly added capabilities don't break
1552 * older tools by overrunning their buffers.
1553 *
1554 * We still increment split_start so that in the split
1555 * case we'll continue with more data in the next round,
1556 * but break unconditionally so unsplit data stops here.
1557 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001558 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001559 break;
1560 case 9:
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001561 if (dev->wiphy.extended_capabilities &&
1562 (nla_put(msg, NL80211_ATTR_EXT_CAPA,
1563 dev->wiphy.extended_capabilities_len,
1564 dev->wiphy.extended_capabilities) ||
1565 nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK,
1566 dev->wiphy.extended_capabilities_len,
1567 dev->wiphy.extended_capabilities_mask)))
1568 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001569
Johannes Bergee2aca32013-02-21 17:36:01 +01001570 if (dev->wiphy.vht_capa_mod_mask &&
1571 nla_put(msg, NL80211_ATTR_VHT_CAPABILITY_MASK,
1572 sizeof(*dev->wiphy.vht_capa_mod_mask),
1573 dev->wiphy.vht_capa_mod_mask))
1574 goto nla_put_failure;
1575
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001576 state->split_start++;
1577 break;
1578 case 10:
1579 if (nl80211_send_coalesce(msg, dev))
1580 goto nla_put_failure;
1581
Johannes Berg3713b4e2013-02-14 16:19:38 +01001582 /* done */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001583 state->split_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001584 break;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001585 }
Johannes Berg55682962007-09-20 13:09:35 -04001586 return genlmsg_end(msg, hdr);
1587
1588 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001589 genlmsg_cancel(msg, hdr);
1590 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04001591}
1592
Johannes Berg86e8cf92013-06-19 10:57:22 +02001593static int nl80211_dump_wiphy_parse(struct sk_buff *skb,
1594 struct netlink_callback *cb,
1595 struct nl80211_dump_wiphy_state *state)
1596{
1597 struct nlattr **tb = nl80211_fam.attrbuf;
1598 int ret = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
1599 tb, nl80211_fam.maxattr, nl80211_policy);
1600 /* ignore parse errors for backward compatibility */
1601 if (ret)
1602 return 0;
1603
1604 state->split = tb[NL80211_ATTR_SPLIT_WIPHY_DUMP];
1605 if (tb[NL80211_ATTR_WIPHY])
1606 state->filter_wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
1607 if (tb[NL80211_ATTR_WDEV])
1608 state->filter_wiphy = nla_get_u64(tb[NL80211_ATTR_WDEV]) >> 32;
1609 if (tb[NL80211_ATTR_IFINDEX]) {
1610 struct net_device *netdev;
1611 struct cfg80211_registered_device *rdev;
1612 int ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
1613
1614 netdev = dev_get_by_index(sock_net(skb->sk), ifidx);
1615 if (!netdev)
1616 return -ENODEV;
1617 if (netdev->ieee80211_ptr) {
1618 rdev = wiphy_to_dev(
1619 netdev->ieee80211_ptr->wiphy);
1620 state->filter_wiphy = rdev->wiphy_idx;
1621 }
1622 dev_put(netdev);
1623 }
1624
1625 return 0;
1626}
1627
Johannes Berg55682962007-09-20 13:09:35 -04001628static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
1629{
Johannes Berg645e77d2013-03-01 14:03:49 +01001630 int idx = 0, ret;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001631 struct nl80211_dump_wiphy_state *state = (void *)cb->args[0];
Johannes Berg55682962007-09-20 13:09:35 -04001632 struct cfg80211_registered_device *dev;
Johannes Berg3a5a4232013-06-19 10:09:57 +02001633
Johannes Berg5fe231e2013-05-08 21:45:15 +02001634 rtnl_lock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001635 if (!state) {
1636 state = kzalloc(sizeof(*state), GFP_KERNEL);
John W. Linville57ed5cd2013-06-28 13:18:21 -04001637 if (!state) {
1638 rtnl_unlock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001639 return -ENOMEM;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001640 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001641 state->filter_wiphy = -1;
1642 ret = nl80211_dump_wiphy_parse(skb, cb, state);
1643 if (ret) {
1644 kfree(state);
1645 rtnl_unlock();
1646 return ret;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001647 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001648 cb->args[0] = (long)state;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001649 }
1650
Johannes Berg79c97e92009-07-07 03:56:12 +02001651 list_for_each_entry(dev, &cfg80211_rdev_list, list) {
Johannes Berg463d0182009-07-14 00:33:35 +02001652 if (!net_eq(wiphy_net(&dev->wiphy), sock_net(skb->sk)))
1653 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001654 if (++idx <= state->start)
Johannes Berg55682962007-09-20 13:09:35 -04001655 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001656 if (state->filter_wiphy != -1 &&
1657 state->filter_wiphy != dev->wiphy_idx)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001658 continue;
1659 /* attempt to fit multiple wiphy data chunks into the skb */
1660 do {
1661 ret = nl80211_send_wiphy(dev, skb,
1662 NETLINK_CB(cb->skb).portid,
1663 cb->nlh->nlmsg_seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001664 NLM_F_MULTI, state);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001665 if (ret < 0) {
1666 /*
1667 * If sending the wiphy data didn't fit (ENOBUFS
1668 * or EMSGSIZE returned), this SKB is still
1669 * empty (so it's not too big because another
1670 * wiphy dataset is already in the skb) and
1671 * we've not tried to adjust the dump allocation
1672 * yet ... then adjust the alloc size to be
1673 * bigger, and return 1 but with the empty skb.
1674 * This results in an empty message being RX'ed
1675 * in userspace, but that is ignored.
1676 *
1677 * We can then retry with the larger buffer.
1678 */
1679 if ((ret == -ENOBUFS || ret == -EMSGSIZE) &&
1680 !skb->len &&
1681 cb->min_dump_alloc < 4096) {
1682 cb->min_dump_alloc = 4096;
David S. Millerd98cae64e2013-06-19 16:49:39 -07001683 rtnl_unlock();
Johannes Berg3713b4e2013-02-14 16:19:38 +01001684 return 1;
1685 }
1686 idx--;
1687 break;
Johannes Berg645e77d2013-03-01 14:03:49 +01001688 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001689 } while (state->split_start > 0);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001690 break;
Johannes Berg55682962007-09-20 13:09:35 -04001691 }
Johannes Berg5fe231e2013-05-08 21:45:15 +02001692 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04001693
Johannes Berg86e8cf92013-06-19 10:57:22 +02001694 state->start = idx;
Johannes Berg55682962007-09-20 13:09:35 -04001695
1696 return skb->len;
1697}
1698
Johannes Berg86e8cf92013-06-19 10:57:22 +02001699static int nl80211_dump_wiphy_done(struct netlink_callback *cb)
1700{
1701 kfree((void *)cb->args[0]);
1702 return 0;
1703}
1704
Johannes Berg55682962007-09-20 13:09:35 -04001705static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
1706{
1707 struct sk_buff *msg;
Johannes Berg4c476992010-10-04 21:36:35 +02001708 struct cfg80211_registered_device *dev = info->user_ptr[0];
Johannes Berg86e8cf92013-06-19 10:57:22 +02001709 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04001710
Johannes Berg645e77d2013-03-01 14:03:49 +01001711 msg = nlmsg_new(4096, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04001712 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02001713 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04001714
Johannes Berg3713b4e2013-02-14 16:19:38 +01001715 if (nl80211_send_wiphy(dev, msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001716 &state) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02001717 nlmsg_free(msg);
1718 return -ENOBUFS;
1719 }
Johannes Berg55682962007-09-20 13:09:35 -04001720
Johannes Berg134e6372009-07-10 09:51:34 +00001721 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04001722}
1723
Jouni Malinen31888482008-10-30 16:59:24 +02001724static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
1725 [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 },
1726 [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 },
1727 [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 },
1728 [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 },
1729 [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 },
1730};
1731
1732static int parse_txq_params(struct nlattr *tb[],
1733 struct ieee80211_txq_params *txq_params)
1734{
Johannes Berga3304b02012-03-28 11:04:24 +02001735 if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
Jouni Malinen31888482008-10-30 16:59:24 +02001736 !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
1737 !tb[NL80211_TXQ_ATTR_AIFS])
1738 return -EINVAL;
1739
Johannes Berga3304b02012-03-28 11:04:24 +02001740 txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
Jouni Malinen31888482008-10-30 16:59:24 +02001741 txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
1742 txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
1743 txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
1744 txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);
1745
Johannes Berga3304b02012-03-28 11:04:24 +02001746 if (txq_params->ac >= NL80211_NUM_ACS)
1747 return -EINVAL;
1748
Jouni Malinen31888482008-10-30 16:59:24 +02001749 return 0;
1750}
1751
Johannes Bergf444de02010-05-05 15:25:02 +02001752static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
1753{
1754 /*
Johannes Bergcc1d2802012-05-16 23:50:20 +02001755 * You can only set the channel explicitly for WDS interfaces,
1756 * all others have their channel managed via their respective
1757 * "establish a connection" command (connect, join, ...)
1758 *
1759 * For AP/GO and mesh mode, the channel can be set with the
1760 * channel userspace API, but is only stored and passed to the
1761 * low-level driver when the AP starts or the mesh is joined.
1762 * This is for backward compatibility, userspace can also give
1763 * the channel in the start-ap or join-mesh commands instead.
Johannes Bergf444de02010-05-05 15:25:02 +02001764 *
1765 * Monitors are special as they are normally slaved to
Johannes Berge8c9bd52012-06-06 08:18:22 +02001766 * whatever else is going on, so they have their own special
1767 * operation to set the monitor channel if possible.
Johannes Bergf444de02010-05-05 15:25:02 +02001768 */
1769 return !wdev ||
1770 wdev->iftype == NL80211_IFTYPE_AP ||
Johannes Bergf444de02010-05-05 15:25:02 +02001771 wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
Johannes Berg074ac8d2010-09-16 14:58:22 +02001772 wdev->iftype == NL80211_IFTYPE_MONITOR ||
1773 wdev->iftype == NL80211_IFTYPE_P2P_GO;
Johannes Bergf444de02010-05-05 15:25:02 +02001774}
1775
Johannes Berg683b6d32012-11-08 21:25:48 +01001776static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
1777 struct genl_info *info,
1778 struct cfg80211_chan_def *chandef)
1779{
Mahesh Paliveladbeca2e2012-11-29 14:11:07 +05301780 u32 control_freq;
Johannes Berg683b6d32012-11-08 21:25:48 +01001781
1782 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
1783 return -EINVAL;
1784
1785 control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
1786
1787 chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq);
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001788 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
1789 chandef->center_freq1 = control_freq;
1790 chandef->center_freq2 = 0;
Johannes Berg683b6d32012-11-08 21:25:48 +01001791
1792 /* Primary channel not allowed */
1793 if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
1794 return -EINVAL;
1795
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001796 if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
1797 enum nl80211_channel_type chantype;
Johannes Berg683b6d32012-11-08 21:25:48 +01001798
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001799 chantype = nla_get_u32(
1800 info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1801
1802 switch (chantype) {
1803 case NL80211_CHAN_NO_HT:
1804 case NL80211_CHAN_HT20:
1805 case NL80211_CHAN_HT40PLUS:
1806 case NL80211_CHAN_HT40MINUS:
1807 cfg80211_chandef_create(chandef, chandef->chan,
1808 chantype);
1809 break;
1810 default:
Johannes Berg683b6d32012-11-08 21:25:48 +01001811 return -EINVAL;
Johannes Berg683b6d32012-11-08 21:25:48 +01001812 }
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001813 } else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
1814 chandef->width =
1815 nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
1816 if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
1817 chandef->center_freq1 =
1818 nla_get_u32(
1819 info->attrs[NL80211_ATTR_CENTER_FREQ1]);
1820 if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
1821 chandef->center_freq2 =
1822 nla_get_u32(
1823 info->attrs[NL80211_ATTR_CENTER_FREQ2]);
1824 }
1825
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001826 if (!cfg80211_chandef_valid(chandef))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001827 return -EINVAL;
1828
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001829 if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
1830 IEEE80211_CHAN_DISABLED))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001831 return -EINVAL;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001832
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001833 if ((chandef->width == NL80211_CHAN_WIDTH_5 ||
1834 chandef->width == NL80211_CHAN_WIDTH_10) &&
1835 !(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1836 return -EINVAL;
1837
Johannes Berg683b6d32012-11-08 21:25:48 +01001838 return 0;
1839}
1840
Johannes Bergf444de02010-05-05 15:25:02 +02001841static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
1842 struct wireless_dev *wdev,
1843 struct genl_info *info)
1844{
Johannes Berg683b6d32012-11-08 21:25:48 +01001845 struct cfg80211_chan_def chandef;
Johannes Bergf444de02010-05-05 15:25:02 +02001846 int result;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001847 enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;
1848
1849 if (wdev)
1850 iftype = wdev->iftype;
Johannes Bergf444de02010-05-05 15:25:02 +02001851
Johannes Bergf444de02010-05-05 15:25:02 +02001852 if (!nl80211_can_set_dev_channel(wdev))
1853 return -EOPNOTSUPP;
1854
Johannes Berg683b6d32012-11-08 21:25:48 +01001855 result = nl80211_parse_chandef(rdev, info, &chandef);
1856 if (result)
1857 return result;
Johannes Bergf444de02010-05-05 15:25:02 +02001858
Johannes Berge8c9bd52012-06-06 08:18:22 +02001859 switch (iftype) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001860 case NL80211_IFTYPE_AP:
1861 case NL80211_IFTYPE_P2P_GO:
1862 if (wdev->beacon_interval) {
1863 result = -EBUSY;
1864 break;
1865 }
Johannes Berg683b6d32012-11-08 21:25:48 +01001866 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &chandef)) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001867 result = -EINVAL;
1868 break;
1869 }
Johannes Berg683b6d32012-11-08 21:25:48 +01001870 wdev->preset_chandef = chandef;
Johannes Bergaa430da2012-05-16 23:50:18 +02001871 result = 0;
1872 break;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001873 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg683b6d32012-11-08 21:25:48 +01001874 result = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001875 break;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001876 case NL80211_IFTYPE_MONITOR:
Johannes Berg683b6d32012-11-08 21:25:48 +01001877 result = cfg80211_set_monitor_channel(rdev, &chandef);
Johannes Berge8c9bd52012-06-06 08:18:22 +02001878 break;
Johannes Bergaa430da2012-05-16 23:50:18 +02001879 default:
Johannes Berge8c9bd52012-06-06 08:18:22 +02001880 result = -EINVAL;
Johannes Bergf444de02010-05-05 15:25:02 +02001881 }
Johannes Bergf444de02010-05-05 15:25:02 +02001882
1883 return result;
1884}
1885
1886static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info)
1887{
Johannes Berg4c476992010-10-04 21:36:35 +02001888 struct cfg80211_registered_device *rdev = info->user_ptr[0];
1889 struct net_device *netdev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02001890
Johannes Berg4c476992010-10-04 21:36:35 +02001891 return __nl80211_set_channel(rdev, netdev->ieee80211_ptr, info);
Johannes Bergf444de02010-05-05 15:25:02 +02001892}
1893
Bill Jordane8347eb2010-10-01 13:54:28 -04001894static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
1895{
Johannes Berg43b19952010-10-07 13:10:30 +02001896 struct cfg80211_registered_device *rdev = info->user_ptr[0];
1897 struct net_device *dev = info->user_ptr[1];
1898 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg388ac772010-10-07 13:11:09 +02001899 const u8 *bssid;
Bill Jordane8347eb2010-10-01 13:54:28 -04001900
1901 if (!info->attrs[NL80211_ATTR_MAC])
1902 return -EINVAL;
1903
Johannes Berg43b19952010-10-07 13:10:30 +02001904 if (netif_running(dev))
1905 return -EBUSY;
Bill Jordane8347eb2010-10-01 13:54:28 -04001906
Johannes Berg43b19952010-10-07 13:10:30 +02001907 if (!rdev->ops->set_wds_peer)
1908 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04001909
Johannes Berg43b19952010-10-07 13:10:30 +02001910 if (wdev->iftype != NL80211_IFTYPE_WDS)
1911 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04001912
1913 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Hila Gonene35e4d22012-06-27 17:19:42 +03001914 return rdev_set_wds_peer(rdev, dev, bssid);
Bill Jordane8347eb2010-10-01 13:54:28 -04001915}
1916
1917
Johannes Berg55682962007-09-20 13:09:35 -04001918static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
1919{
1920 struct cfg80211_registered_device *rdev;
Johannes Bergf444de02010-05-05 15:25:02 +02001921 struct net_device *netdev = NULL;
1922 struct wireless_dev *wdev;
Bill Jordana1e567c2010-09-10 11:22:32 -04001923 int result = 0, rem_txq_params = 0;
Jouni Malinen31888482008-10-30 16:59:24 +02001924 struct nlattr *nl_txq_params;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001925 u32 changed;
1926 u8 retry_short = 0, retry_long = 0;
1927 u32 frag_threshold = 0, rts_threshold = 0;
Lukáš Turek81077e82009-12-21 22:50:47 +01001928 u8 coverage_class = 0;
Johannes Berg55682962007-09-20 13:09:35 -04001929
Johannes Berg5fe231e2013-05-08 21:45:15 +02001930 ASSERT_RTNL();
1931
Johannes Bergf444de02010-05-05 15:25:02 +02001932 /*
1933 * Try to find the wiphy and netdev. Normally this
1934 * function shouldn't need the netdev, but this is
1935 * done for backward compatibility -- previously
1936 * setting the channel was done per wiphy, but now
1937 * it is per netdev. Previous userland like hostapd
1938 * also passed a netdev to set_wiphy, so that it is
1939 * possible to let that go to the right netdev!
1940 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001941
Johannes Bergf444de02010-05-05 15:25:02 +02001942 if (info->attrs[NL80211_ATTR_IFINDEX]) {
1943 int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
1944
1945 netdev = dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001946 if (netdev && netdev->ieee80211_ptr)
Johannes Bergf444de02010-05-05 15:25:02 +02001947 rdev = wiphy_to_dev(netdev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001948 else
Johannes Bergf444de02010-05-05 15:25:02 +02001949 netdev = NULL;
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001950 }
1951
Johannes Bergf444de02010-05-05 15:25:02 +02001952 if (!netdev) {
Johannes Berg878d9ec2012-06-15 14:18:32 +02001953 rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
1954 info->attrs);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001955 if (IS_ERR(rdev))
Johannes Berg4c476992010-10-04 21:36:35 +02001956 return PTR_ERR(rdev);
Johannes Bergf444de02010-05-05 15:25:02 +02001957 wdev = NULL;
1958 netdev = NULL;
1959 result = 0;
Johannes Berg71fe96b2012-10-24 10:04:58 +02001960 } else
Johannes Bergf444de02010-05-05 15:25:02 +02001961 wdev = netdev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02001962
1963 /*
1964 * end workaround code, by now the rdev is available
1965 * and locked, and wdev may or may not be NULL.
1966 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001967
1968 if (info->attrs[NL80211_ATTR_WIPHY_NAME])
Jouni Malinen31888482008-10-30 16:59:24 +02001969 result = cfg80211_dev_rename(
1970 rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001971
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001972 if (result)
1973 goto bad_res;
Johannes Berg55682962007-09-20 13:09:35 -04001974
Jouni Malinen31888482008-10-30 16:59:24 +02001975 if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
1976 struct ieee80211_txq_params txq_params;
1977 struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];
1978
1979 if (!rdev->ops->set_txq_params) {
1980 result = -EOPNOTSUPP;
1981 goto bad_res;
1982 }
1983
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001984 if (!netdev) {
1985 result = -EINVAL;
1986 goto bad_res;
1987 }
1988
Johannes Berg133a3ff2011-11-03 14:50:13 +01001989 if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
1990 netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
1991 result = -EINVAL;
1992 goto bad_res;
1993 }
1994
Johannes Berg2b5f8b02012-04-02 10:51:55 +02001995 if (!netif_running(netdev)) {
1996 result = -ENETDOWN;
1997 goto bad_res;
1998 }
1999
Jouni Malinen31888482008-10-30 16:59:24 +02002000 nla_for_each_nested(nl_txq_params,
2001 info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
2002 rem_txq_params) {
2003 nla_parse(tb, NL80211_TXQ_ATTR_MAX,
2004 nla_data(nl_txq_params),
2005 nla_len(nl_txq_params),
2006 txq_params_policy);
2007 result = parse_txq_params(tb, &txq_params);
2008 if (result)
2009 goto bad_res;
2010
Hila Gonene35e4d22012-06-27 17:19:42 +03002011 result = rdev_set_txq_params(rdev, netdev,
2012 &txq_params);
Jouni Malinen31888482008-10-30 16:59:24 +02002013 if (result)
2014 goto bad_res;
2015 }
2016 }
2017
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002018 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg71fe96b2012-10-24 10:04:58 +02002019 result = __nl80211_set_channel(rdev,
2020 nl80211_can_set_dev_channel(wdev) ? wdev : NULL,
2021 info);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002022 if (result)
2023 goto bad_res;
2024 }
2025
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002026 if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
Johannes Bergc8442112012-10-24 10:17:18 +02002027 struct wireless_dev *txp_wdev = wdev;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002028 enum nl80211_tx_power_setting type;
2029 int idx, mbm = 0;
2030
Johannes Bergc8442112012-10-24 10:17:18 +02002031 if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER))
2032 txp_wdev = NULL;
2033
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002034 if (!rdev->ops->set_tx_power) {
Jiri Slaby60ea3852010-07-07 15:02:46 +02002035 result = -EOPNOTSUPP;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002036 goto bad_res;
2037 }
2038
2039 idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING;
2040 type = nla_get_u32(info->attrs[idx]);
2041
2042 if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] &&
2043 (type != NL80211_TX_POWER_AUTOMATIC)) {
2044 result = -EINVAL;
2045 goto bad_res;
2046 }
2047
2048 if (type != NL80211_TX_POWER_AUTOMATIC) {
2049 idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL;
2050 mbm = nla_get_u32(info->attrs[idx]);
2051 }
2052
Johannes Bergc8442112012-10-24 10:17:18 +02002053 result = rdev_set_tx_power(rdev, txp_wdev, type, mbm);
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002054 if (result)
2055 goto bad_res;
2056 }
2057
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002058 if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
2059 info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
2060 u32 tx_ant, rx_ant;
Bruno Randolf7f531e02010-12-16 11:30:22 +09002061 if ((!rdev->wiphy.available_antennas_tx &&
2062 !rdev->wiphy.available_antennas_rx) ||
2063 !rdev->ops->set_antenna) {
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002064 result = -EOPNOTSUPP;
2065 goto bad_res;
2066 }
2067
2068 tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]);
2069 rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]);
2070
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002071 /* reject antenna configurations which don't match the
Bruno Randolf7f531e02010-12-16 11:30:22 +09002072 * available antenna masks, except for the "all" mask */
2073 if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) ||
2074 (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx))) {
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002075 result = -EINVAL;
2076 goto bad_res;
2077 }
2078
Bruno Randolf7f531e02010-12-16 11:30:22 +09002079 tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
2080 rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002081
Hila Gonene35e4d22012-06-27 17:19:42 +03002082 result = rdev_set_antenna(rdev, tx_ant, rx_ant);
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002083 if (result)
2084 goto bad_res;
2085 }
2086
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002087 changed = 0;
2088
2089 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
2090 retry_short = nla_get_u8(
2091 info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
2092 if (retry_short == 0) {
2093 result = -EINVAL;
2094 goto bad_res;
2095 }
2096 changed |= WIPHY_PARAM_RETRY_SHORT;
2097 }
2098
2099 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
2100 retry_long = nla_get_u8(
2101 info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
2102 if (retry_long == 0) {
2103 result = -EINVAL;
2104 goto bad_res;
2105 }
2106 changed |= WIPHY_PARAM_RETRY_LONG;
2107 }
2108
2109 if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
2110 frag_threshold = nla_get_u32(
2111 info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
2112 if (frag_threshold < 256) {
2113 result = -EINVAL;
2114 goto bad_res;
2115 }
2116 if (frag_threshold != (u32) -1) {
2117 /*
2118 * Fragments (apart from the last one) are required to
2119 * have even length. Make the fragmentation code
2120 * simpler by stripping LSB should someone try to use
2121 * odd threshold value.
2122 */
2123 frag_threshold &= ~0x1;
2124 }
2125 changed |= WIPHY_PARAM_FRAG_THRESHOLD;
2126 }
2127
2128 if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
2129 rts_threshold = nla_get_u32(
2130 info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
2131 changed |= WIPHY_PARAM_RTS_THRESHOLD;
2132 }
2133
Lukáš Turek81077e82009-12-21 22:50:47 +01002134 if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
2135 coverage_class = nla_get_u8(
2136 info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
2137 changed |= WIPHY_PARAM_COVERAGE_CLASS;
2138 }
2139
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002140 if (changed) {
2141 u8 old_retry_short, old_retry_long;
2142 u32 old_frag_threshold, old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002143 u8 old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002144
2145 if (!rdev->ops->set_wiphy_params) {
2146 result = -EOPNOTSUPP;
2147 goto bad_res;
2148 }
2149
2150 old_retry_short = rdev->wiphy.retry_short;
2151 old_retry_long = rdev->wiphy.retry_long;
2152 old_frag_threshold = rdev->wiphy.frag_threshold;
2153 old_rts_threshold = rdev->wiphy.rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002154 old_coverage_class = rdev->wiphy.coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002155
2156 if (changed & WIPHY_PARAM_RETRY_SHORT)
2157 rdev->wiphy.retry_short = retry_short;
2158 if (changed & WIPHY_PARAM_RETRY_LONG)
2159 rdev->wiphy.retry_long = retry_long;
2160 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
2161 rdev->wiphy.frag_threshold = frag_threshold;
2162 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
2163 rdev->wiphy.rts_threshold = rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002164 if (changed & WIPHY_PARAM_COVERAGE_CLASS)
2165 rdev->wiphy.coverage_class = coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002166
Hila Gonene35e4d22012-06-27 17:19:42 +03002167 result = rdev_set_wiphy_params(rdev, changed);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002168 if (result) {
2169 rdev->wiphy.retry_short = old_retry_short;
2170 rdev->wiphy.retry_long = old_retry_long;
2171 rdev->wiphy.frag_threshold = old_frag_threshold;
2172 rdev->wiphy.rts_threshold = old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002173 rdev->wiphy.coverage_class = old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002174 }
2175 }
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002176
Johannes Berg306d6112008-12-08 12:39:04 +01002177 bad_res:
Johannes Bergf444de02010-05-05 15:25:02 +02002178 if (netdev)
2179 dev_put(netdev);
Johannes Berg55682962007-09-20 13:09:35 -04002180 return result;
2181}
2182
Johannes Berg71bbc992012-06-15 15:30:18 +02002183static inline u64 wdev_id(struct wireless_dev *wdev)
2184{
2185 return (u64)wdev->identifier |
2186 ((u64)wiphy_to_dev(wdev->wiphy)->wiphy_idx << 32);
2187}
Johannes Berg55682962007-09-20 13:09:35 -04002188
Johannes Berg683b6d32012-11-08 21:25:48 +01002189static int nl80211_send_chandef(struct sk_buff *msg,
2190 struct cfg80211_chan_def *chandef)
2191{
Johannes Berg9f5e8f62012-11-22 16:59:45 +01002192 WARN_ON(!cfg80211_chandef_valid(chandef));
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002193
Johannes Berg683b6d32012-11-08 21:25:48 +01002194 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
2195 chandef->chan->center_freq))
2196 return -ENOBUFS;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002197 switch (chandef->width) {
2198 case NL80211_CHAN_WIDTH_20_NOHT:
2199 case NL80211_CHAN_WIDTH_20:
2200 case NL80211_CHAN_WIDTH_40:
2201 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
2202 cfg80211_get_chandef_type(chandef)))
2203 return -ENOBUFS;
2204 break;
2205 default:
2206 break;
2207 }
2208 if (nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, chandef->width))
2209 return -ENOBUFS;
2210 if (nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ1, chandef->center_freq1))
2211 return -ENOBUFS;
2212 if (chandef->center_freq2 &&
2213 nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ2, chandef->center_freq2))
Johannes Berg683b6d32012-11-08 21:25:48 +01002214 return -ENOBUFS;
2215 return 0;
2216}
2217
Eric W. Biederman15e47302012-09-07 20:12:54 +00002218static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
Johannes Bergd7264052009-04-19 16:23:20 +02002219 struct cfg80211_registered_device *rdev,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002220 struct wireless_dev *wdev)
Johannes Berg55682962007-09-20 13:09:35 -04002221{
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002222 struct net_device *dev = wdev->netdev;
Johannes Berg55682962007-09-20 13:09:35 -04002223 void *hdr;
2224
Eric W. Biederman15e47302012-09-07 20:12:54 +00002225 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_INTERFACE);
Johannes Berg55682962007-09-20 13:09:35 -04002226 if (!hdr)
2227 return -1;
2228
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002229 if (dev &&
2230 (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002231 nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002232 goto nla_put_failure;
2233
2234 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
2235 nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
Johannes Berg71bbc992012-06-15 15:30:18 +02002236 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002237 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04002238 nla_put_u32(msg, NL80211_ATTR_GENERATION,
2239 rdev->devlist_generation ^
2240 (cfg80211_rdev_list_generation << 2)))
2241 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02002242
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002243 if (rdev->ops->get_channel) {
Johannes Berg683b6d32012-11-08 21:25:48 +01002244 int ret;
2245 struct cfg80211_chan_def chandef;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002246
Johannes Berg683b6d32012-11-08 21:25:48 +01002247 ret = rdev_get_channel(rdev, wdev, &chandef);
2248 if (ret == 0) {
2249 if (nl80211_send_chandef(msg, &chandef))
2250 goto nla_put_failure;
2251 }
Pontus Fuchsd91df0e2012-04-03 16:39:58 +02002252 }
2253
Antonio Quartullib84e7a02012-11-07 12:52:20 +01002254 if (wdev->ssid_len) {
2255 if (nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid))
2256 goto nla_put_failure;
2257 }
2258
Johannes Berg55682962007-09-20 13:09:35 -04002259 return genlmsg_end(msg, hdr);
2260
2261 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07002262 genlmsg_cancel(msg, hdr);
2263 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04002264}
2265
2266static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
2267{
2268 int wp_idx = 0;
2269 int if_idx = 0;
2270 int wp_start = cb->args[0];
2271 int if_start = cb->args[1];
Johannes Bergf5ea9122009-08-07 16:17:38 +02002272 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -04002273 struct wireless_dev *wdev;
2274
Johannes Berg5fe231e2013-05-08 21:45:15 +02002275 rtnl_lock();
Johannes Bergf5ea9122009-08-07 16:17:38 +02002276 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2277 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02002278 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002279 if (wp_idx < wp_start) {
2280 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002281 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002282 }
Johannes Berg55682962007-09-20 13:09:35 -04002283 if_idx = 0;
2284
Johannes Berg89a54e42012-06-15 14:33:17 +02002285 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002286 if (if_idx < if_start) {
2287 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002288 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002289 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002290 if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).portid,
Johannes Berg55682962007-09-20 13:09:35 -04002291 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002292 rdev, wdev) < 0) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002293 goto out;
2294 }
2295 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002296 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002297
2298 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002299 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002300 out:
Johannes Berg5fe231e2013-05-08 21:45:15 +02002301 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04002302
2303 cb->args[0] = wp_idx;
2304 cb->args[1] = if_idx;
2305
2306 return skb->len;
2307}
2308
2309static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
2310{
2311 struct sk_buff *msg;
Johannes Berg4c476992010-10-04 21:36:35 +02002312 struct cfg80211_registered_device *dev = info->user_ptr[0];
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002313 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002314
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002315 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04002316 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02002317 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04002318
Eric W. Biederman15e47302012-09-07 20:12:54 +00002319 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002320 dev, wdev) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02002321 nlmsg_free(msg);
2322 return -ENOBUFS;
2323 }
Johannes Berg55682962007-09-20 13:09:35 -04002324
Johannes Berg134e6372009-07-10 09:51:34 +00002325 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002326}
2327
Michael Wu66f7ac52008-01-31 19:48:22 +01002328static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
2329 [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
2330 [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
2331 [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
2332 [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
2333 [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002334 [NL80211_MNTR_FLAG_ACTIVE] = { .type = NLA_FLAG },
Michael Wu66f7ac52008-01-31 19:48:22 +01002335};
2336
2337static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
2338{
2339 struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
2340 int flag;
2341
2342 *mntrflags = 0;
2343
2344 if (!nla)
2345 return -EINVAL;
2346
2347 if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
2348 nla, mntr_flags_policy))
2349 return -EINVAL;
2350
2351 for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
2352 if (flags[flag])
2353 *mntrflags |= (1<<flag);
2354
2355 return 0;
2356}
2357
Johannes Berg9bc383d2009-11-19 11:55:19 +01002358static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002359 struct net_device *netdev, u8 use_4addr,
2360 enum nl80211_iftype iftype)
Johannes Berg9bc383d2009-11-19 11:55:19 +01002361{
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002362 if (!use_4addr) {
Jiri Pirkof350a0a82010-06-15 06:50:45 +00002363 if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002364 return -EBUSY;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002365 return 0;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002366 }
Johannes Berg9bc383d2009-11-19 11:55:19 +01002367
2368 switch (iftype) {
2369 case NL80211_IFTYPE_AP_VLAN:
2370 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP)
2371 return 0;
2372 break;
2373 case NL80211_IFTYPE_STATION:
2374 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION)
2375 return 0;
2376 break;
2377 default:
2378 break;
2379 }
2380
2381 return -EOPNOTSUPP;
2382}
2383
Johannes Berg55682962007-09-20 13:09:35 -04002384static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
2385{
Johannes Berg4c476992010-10-04 21:36:35 +02002386 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002387 struct vif_params params;
Johannes Berge36d56b2009-06-09 21:04:43 +02002388 int err;
Johannes Berg04a773a2009-04-19 21:24:32 +02002389 enum nl80211_iftype otype, ntype;
Johannes Berg4c476992010-10-04 21:36:35 +02002390 struct net_device *dev = info->user_ptr[1];
Johannes Berg92ffe052008-09-16 20:39:36 +02002391 u32 _flags, *flags = NULL;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002392 bool change = false;
Johannes Berg55682962007-09-20 13:09:35 -04002393
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002394 memset(&params, 0, sizeof(params));
2395
Johannes Berg04a773a2009-04-19 21:24:32 +02002396 otype = ntype = dev->ieee80211_ptr->iftype;
Johannes Berg55682962007-09-20 13:09:35 -04002397
Johannes Berg723b0382008-09-16 20:22:09 +02002398 if (info->attrs[NL80211_ATTR_IFTYPE]) {
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002399 ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
Johannes Berg04a773a2009-04-19 21:24:32 +02002400 if (otype != ntype)
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002401 change = true;
Johannes Berg4c476992010-10-04 21:36:35 +02002402 if (ntype > NL80211_IFTYPE_MAX)
2403 return -EINVAL;
Johannes Berg723b0382008-09-16 20:22:09 +02002404 }
2405
Johannes Berg92ffe052008-09-16 20:39:36 +02002406 if (info->attrs[NL80211_ATTR_MESH_ID]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01002407 struct wireless_dev *wdev = dev->ieee80211_ptr;
2408
Johannes Berg4c476992010-10-04 21:36:35 +02002409 if (ntype != NL80211_IFTYPE_MESH_POINT)
2410 return -EINVAL;
Johannes Berg29cbe682010-12-03 09:20:44 +01002411 if (netif_running(dev))
2412 return -EBUSY;
2413
2414 wdev_lock(wdev);
2415 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2416 IEEE80211_MAX_MESH_ID_LEN);
2417 wdev->mesh_id_up_len =
2418 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2419 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2420 wdev->mesh_id_up_len);
2421 wdev_unlock(wdev);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002422 }
2423
Felix Fietkau8b787642009-11-10 18:53:10 +01002424 if (info->attrs[NL80211_ATTR_4ADDR]) {
2425 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2426 change = true;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002427 err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002428 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002429 return err;
Felix Fietkau8b787642009-11-10 18:53:10 +01002430 } else {
2431 params.use_4addr = -1;
2432 }
2433
Johannes Berg92ffe052008-09-16 20:39:36 +02002434 if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
Johannes Berg4c476992010-10-04 21:36:35 +02002435 if (ntype != NL80211_IFTYPE_MONITOR)
2436 return -EINVAL;
Johannes Berg92ffe052008-09-16 20:39:36 +02002437 err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
2438 &_flags);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002439 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002440 return err;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002441
2442 flags = &_flags;
2443 change = true;
Johannes Berg92ffe052008-09-16 20:39:36 +02002444 }
Johannes Berg3b858752009-03-12 09:55:09 +01002445
Luciano Coelho18003292013-08-29 13:26:57 +03002446 if (flags && (*flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002447 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2448 return -EOPNOTSUPP;
2449
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002450 if (change)
Johannes Berg3d54d252009-08-21 14:51:05 +02002451 err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002452 else
2453 err = 0;
Johannes Berg60719ff2008-09-16 14:55:09 +02002454
Johannes Berg9bc383d2009-11-19 11:55:19 +01002455 if (!err && params.use_4addr != -1)
2456 dev->ieee80211_ptr->use_4addr = params.use_4addr;
2457
Johannes Berg55682962007-09-20 13:09:35 -04002458 return err;
2459}
2460
2461static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
2462{
Johannes Berg4c476992010-10-04 21:36:35 +02002463 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002464 struct vif_params params;
Johannes Berg84efbb82012-06-16 00:00:26 +02002465 struct wireless_dev *wdev;
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002466 struct sk_buff *msg;
Johannes Berg55682962007-09-20 13:09:35 -04002467 int err;
2468 enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
Michael Wu66f7ac52008-01-31 19:48:22 +01002469 u32 flags;
Johannes Berg55682962007-09-20 13:09:35 -04002470
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002471 memset(&params, 0, sizeof(params));
2472
Johannes Berg55682962007-09-20 13:09:35 -04002473 if (!info->attrs[NL80211_ATTR_IFNAME])
2474 return -EINVAL;
2475
2476 if (info->attrs[NL80211_ATTR_IFTYPE]) {
2477 type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
2478 if (type > NL80211_IFTYPE_MAX)
2479 return -EINVAL;
2480 }
2481
Johannes Berg79c97e92009-07-07 03:56:12 +02002482 if (!rdev->ops->add_virtual_intf ||
Johannes Berg4c476992010-10-04 21:36:35 +02002483 !(rdev->wiphy.interface_modes & (1 << type)))
2484 return -EOPNOTSUPP;
Johannes Berg55682962007-09-20 13:09:35 -04002485
Arend van Spriel1c18f142013-01-08 10:17:27 +01002486 if (type == NL80211_IFTYPE_P2P_DEVICE && info->attrs[NL80211_ATTR_MAC]) {
2487 nla_memcpy(params.macaddr, info->attrs[NL80211_ATTR_MAC],
2488 ETH_ALEN);
2489 if (!is_valid_ether_addr(params.macaddr))
2490 return -EADDRNOTAVAIL;
2491 }
2492
Johannes Berg9bc383d2009-11-19 11:55:19 +01002493 if (info->attrs[NL80211_ATTR_4ADDR]) {
Felix Fietkau8b787642009-11-10 18:53:10 +01002494 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002495 err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002496 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002497 return err;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002498 }
Felix Fietkau8b787642009-11-10 18:53:10 +01002499
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002500 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2501 if (!msg)
2502 return -ENOMEM;
2503
Michael Wu66f7ac52008-01-31 19:48:22 +01002504 err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
2505 info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
2506 &flags);
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002507
Luciano Coelho18003292013-08-29 13:26:57 +03002508 if (!err && (flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002509 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2510 return -EOPNOTSUPP;
2511
Hila Gonene35e4d22012-06-27 17:19:42 +03002512 wdev = rdev_add_virtual_intf(rdev,
2513 nla_data(info->attrs[NL80211_ATTR_IFNAME]),
2514 type, err ? NULL : &flags, &params);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002515 if (IS_ERR(wdev)) {
2516 nlmsg_free(msg);
Johannes Berg84efbb82012-06-16 00:00:26 +02002517 return PTR_ERR(wdev);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002518 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002519
Johannes Berg98104fde2012-06-16 00:19:54 +02002520 switch (type) {
2521 case NL80211_IFTYPE_MESH_POINT:
2522 if (!info->attrs[NL80211_ATTR_MESH_ID])
2523 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002524 wdev_lock(wdev);
2525 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2526 IEEE80211_MAX_MESH_ID_LEN);
2527 wdev->mesh_id_up_len =
2528 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2529 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2530 wdev->mesh_id_up_len);
2531 wdev_unlock(wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02002532 break;
2533 case NL80211_IFTYPE_P2P_DEVICE:
2534 /*
2535 * P2P Device doesn't have a netdev, so doesn't go
2536 * through the netdev notifier and must be added here
2537 */
2538 mutex_init(&wdev->mtx);
2539 INIT_LIST_HEAD(&wdev->event_list);
2540 spin_lock_init(&wdev->event_lock);
2541 INIT_LIST_HEAD(&wdev->mgmt_registrations);
2542 spin_lock_init(&wdev->mgmt_registrations_lock);
2543
Johannes Berg98104fde2012-06-16 00:19:54 +02002544 wdev->identifier = ++rdev->wdev_id;
2545 list_add_rcu(&wdev->list, &rdev->wdev_list);
2546 rdev->devlist_generation++;
Johannes Berg98104fde2012-06-16 00:19:54 +02002547 break;
2548 default:
2549 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002550 }
2551
Eric W. Biederman15e47302012-09-07 20:12:54 +00002552 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002553 rdev, wdev) < 0) {
2554 nlmsg_free(msg);
2555 return -ENOBUFS;
2556 }
2557
2558 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002559}
2560
2561static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
2562{
Johannes Berg4c476992010-10-04 21:36:35 +02002563 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg84efbb82012-06-16 00:00:26 +02002564 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002565
Johannes Berg4c476992010-10-04 21:36:35 +02002566 if (!rdev->ops->del_virtual_intf)
2567 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002568
Johannes Berg84efbb82012-06-16 00:00:26 +02002569 /*
2570 * If we remove a wireless device without a netdev then clear
2571 * user_ptr[1] so that nl80211_post_doit won't dereference it
2572 * to check if it needs to do dev_put(). Otherwise it crashes
2573 * since the wdev has been freed, unlike with a netdev where
2574 * we need the dev_put() for the netdev to really be freed.
2575 */
2576 if (!wdev->netdev)
2577 info->user_ptr[1] = NULL;
2578
Hila Gonene35e4d22012-06-27 17:19:42 +03002579 return rdev_del_virtual_intf(rdev, wdev);
Johannes Berg55682962007-09-20 13:09:35 -04002580}
2581
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002582static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info)
2583{
2584 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2585 struct net_device *dev = info->user_ptr[1];
2586 u16 noack_map;
2587
2588 if (!info->attrs[NL80211_ATTR_NOACK_MAP])
2589 return -EINVAL;
2590
2591 if (!rdev->ops->set_noack_map)
2592 return -EOPNOTSUPP;
2593
2594 noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]);
2595
Hila Gonene35e4d22012-06-27 17:19:42 +03002596 return rdev_set_noack_map(rdev, dev, noack_map);
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002597}
2598
Johannes Berg41ade002007-12-19 02:03:29 +01002599struct get_key_cookie {
2600 struct sk_buff *msg;
2601 int error;
Johannes Bergb9454e82009-07-08 13:29:08 +02002602 int idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002603};
2604
2605static void get_key_callback(void *c, struct key_params *params)
2606{
Johannes Bergb9454e82009-07-08 13:29:08 +02002607 struct nlattr *key;
Johannes Berg41ade002007-12-19 02:03:29 +01002608 struct get_key_cookie *cookie = c;
2609
David S. Miller9360ffd2012-03-29 04:41:26 -04002610 if ((params->key &&
2611 nla_put(cookie->msg, NL80211_ATTR_KEY_DATA,
2612 params->key_len, params->key)) ||
2613 (params->seq &&
2614 nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ,
2615 params->seq_len, params->seq)) ||
2616 (params->cipher &&
2617 nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
2618 params->cipher)))
2619 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002620
Johannes Bergb9454e82009-07-08 13:29:08 +02002621 key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
2622 if (!key)
2623 goto nla_put_failure;
2624
David S. Miller9360ffd2012-03-29 04:41:26 -04002625 if ((params->key &&
2626 nla_put(cookie->msg, NL80211_KEY_DATA,
2627 params->key_len, params->key)) ||
2628 (params->seq &&
2629 nla_put(cookie->msg, NL80211_KEY_SEQ,
2630 params->seq_len, params->seq)) ||
2631 (params->cipher &&
2632 nla_put_u32(cookie->msg, NL80211_KEY_CIPHER,
2633 params->cipher)))
2634 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002635
David S. Miller9360ffd2012-03-29 04:41:26 -04002636 if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
2637 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002638
2639 nla_nest_end(cookie->msg, key);
2640
Johannes Berg41ade002007-12-19 02:03:29 +01002641 return;
2642 nla_put_failure:
2643 cookie->error = 1;
2644}
2645
2646static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
2647{
Johannes Berg4c476992010-10-04 21:36:35 +02002648 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002649 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002650 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002651 u8 key_idx = 0;
Johannes Berge31b8212010-10-05 19:39:30 +02002652 const u8 *mac_addr = NULL;
2653 bool pairwise;
Johannes Berg41ade002007-12-19 02:03:29 +01002654 struct get_key_cookie cookie = {
2655 .error = 0,
2656 };
2657 void *hdr;
2658 struct sk_buff *msg;
2659
2660 if (info->attrs[NL80211_ATTR_KEY_IDX])
2661 key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
2662
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02002663 if (key_idx > 5)
Johannes Berg41ade002007-12-19 02:03:29 +01002664 return -EINVAL;
2665
2666 if (info->attrs[NL80211_ATTR_MAC])
2667 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2668
Johannes Berge31b8212010-10-05 19:39:30 +02002669 pairwise = !!mac_addr;
2670 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
2671 u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
2672 if (kt >= NUM_NL80211_KEYTYPES)
2673 return -EINVAL;
2674 if (kt != NL80211_KEYTYPE_GROUP &&
2675 kt != NL80211_KEYTYPE_PAIRWISE)
2676 return -EINVAL;
2677 pairwise = kt == NL80211_KEYTYPE_PAIRWISE;
2678 }
2679
Johannes Berg4c476992010-10-04 21:36:35 +02002680 if (!rdev->ops->get_key)
2681 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002682
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002683 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02002684 if (!msg)
2685 return -ENOMEM;
Johannes Berg41ade002007-12-19 02:03:29 +01002686
Eric W. Biederman15e47302012-09-07 20:12:54 +00002687 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg41ade002007-12-19 02:03:29 +01002688 NL80211_CMD_NEW_KEY);
Dan Carpentercb35fba2013-08-14 14:50:01 +03002689 if (!hdr)
Johannes Berg9fe271a2013-10-25 11:15:12 +02002690 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002691
2692 cookie.msg = msg;
Johannes Bergb9454e82009-07-08 13:29:08 +02002693 cookie.idx = key_idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002694
David S. Miller9360ffd2012-03-29 04:41:26 -04002695 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
2696 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx))
2697 goto nla_put_failure;
2698 if (mac_addr &&
2699 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
2700 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002701
Johannes Berge31b8212010-10-05 19:39:30 +02002702 if (pairwise && mac_addr &&
2703 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2704 return -ENOENT;
2705
Hila Gonene35e4d22012-06-27 17:19:42 +03002706 err = rdev_get_key(rdev, dev, key_idx, pairwise, mac_addr, &cookie,
2707 get_key_callback);
Johannes Berg41ade002007-12-19 02:03:29 +01002708
2709 if (err)
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002710 goto free_msg;
Johannes Berg41ade002007-12-19 02:03:29 +01002711
2712 if (cookie.error)
2713 goto nla_put_failure;
2714
2715 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02002716 return genlmsg_reply(msg, info);
Johannes Berg41ade002007-12-19 02:03:29 +01002717
2718 nla_put_failure:
2719 err = -ENOBUFS;
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002720 free_msg:
Johannes Berg41ade002007-12-19 02:03:29 +01002721 nlmsg_free(msg);
Johannes Berg41ade002007-12-19 02:03:29 +01002722 return err;
2723}
2724
2725static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
2726{
Johannes Berg4c476992010-10-04 21:36:35 +02002727 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergb9454e82009-07-08 13:29:08 +02002728 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002729 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002730 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002731
Johannes Bergb9454e82009-07-08 13:29:08 +02002732 err = nl80211_parse_key(info, &key);
2733 if (err)
2734 return err;
2735
2736 if (key.idx < 0)
Johannes Berg41ade002007-12-19 02:03:29 +01002737 return -EINVAL;
2738
Johannes Bergb9454e82009-07-08 13:29:08 +02002739 /* only support setting default key */
2740 if (!key.def && !key.defmgmt)
Johannes Berg41ade002007-12-19 02:03:29 +01002741 return -EINVAL;
2742
Johannes Bergfffd0932009-07-08 14:22:54 +02002743 wdev_lock(dev->ieee80211_ptr);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002744
2745 if (key.def) {
2746 if (!rdev->ops->set_default_key) {
2747 err = -EOPNOTSUPP;
2748 goto out;
2749 }
2750
2751 err = nl80211_key_allowed(dev->ieee80211_ptr);
2752 if (err)
2753 goto out;
2754
Hila Gonene35e4d22012-06-27 17:19:42 +03002755 err = rdev_set_default_key(rdev, dev, key.idx,
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002756 key.def_uni, key.def_multi);
2757
2758 if (err)
2759 goto out;
Johannes Bergfffd0932009-07-08 14:22:54 +02002760
Johannes Berg3d23e342009-09-29 23:27:28 +02002761#ifdef CONFIG_CFG80211_WEXT
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002762 dev->ieee80211_ptr->wext.default_key = key.idx;
Johannes Berg08645122009-05-11 13:54:58 +02002763#endif
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002764 } else {
2765 if (key.def_uni || !key.def_multi) {
2766 err = -EINVAL;
2767 goto out;
2768 }
2769
2770 if (!rdev->ops->set_default_mgmt_key) {
2771 err = -EOPNOTSUPP;
2772 goto out;
2773 }
2774
2775 err = nl80211_key_allowed(dev->ieee80211_ptr);
2776 if (err)
2777 goto out;
2778
Hila Gonene35e4d22012-06-27 17:19:42 +03002779 err = rdev_set_default_mgmt_key(rdev, dev, key.idx);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002780 if (err)
2781 goto out;
2782
2783#ifdef CONFIG_CFG80211_WEXT
2784 dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
2785#endif
2786 }
2787
2788 out:
Johannes Bergfffd0932009-07-08 14:22:54 +02002789 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002790
Johannes Berg41ade002007-12-19 02:03:29 +01002791 return err;
2792}
2793
2794static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
2795{
Johannes Berg4c476992010-10-04 21:36:35 +02002796 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfffd0932009-07-08 14:22:54 +02002797 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002798 struct net_device *dev = info->user_ptr[1];
Johannes Bergb9454e82009-07-08 13:29:08 +02002799 struct key_parse key;
Johannes Berge31b8212010-10-05 19:39:30 +02002800 const u8 *mac_addr = NULL;
Johannes Berg41ade002007-12-19 02:03:29 +01002801
Johannes Bergb9454e82009-07-08 13:29:08 +02002802 err = nl80211_parse_key(info, &key);
2803 if (err)
2804 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002805
Johannes Bergb9454e82009-07-08 13:29:08 +02002806 if (!key.p.key)
Johannes Berg41ade002007-12-19 02:03:29 +01002807 return -EINVAL;
2808
Johannes Berg41ade002007-12-19 02:03:29 +01002809 if (info->attrs[NL80211_ATTR_MAC])
2810 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2811
Johannes Berge31b8212010-10-05 19:39:30 +02002812 if (key.type == -1) {
2813 if (mac_addr)
2814 key.type = NL80211_KEYTYPE_PAIRWISE;
2815 else
2816 key.type = NL80211_KEYTYPE_GROUP;
2817 }
2818
2819 /* for now */
2820 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2821 key.type != NL80211_KEYTYPE_GROUP)
2822 return -EINVAL;
2823
Johannes Berg4c476992010-10-04 21:36:35 +02002824 if (!rdev->ops->add_key)
2825 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002826
Johannes Berge31b8212010-10-05 19:39:30 +02002827 if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
2828 key.type == NL80211_KEYTYPE_PAIRWISE,
2829 mac_addr))
Johannes Berg4c476992010-10-04 21:36:35 +02002830 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02002831
2832 wdev_lock(dev->ieee80211_ptr);
2833 err = nl80211_key_allowed(dev->ieee80211_ptr);
2834 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002835 err = rdev_add_key(rdev, dev, key.idx,
2836 key.type == NL80211_KEYTYPE_PAIRWISE,
2837 mac_addr, &key.p);
Johannes Bergfffd0932009-07-08 14:22:54 +02002838 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002839
Johannes Berg41ade002007-12-19 02:03:29 +01002840 return err;
2841}
2842
2843static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
2844{
Johannes Berg4c476992010-10-04 21:36:35 +02002845 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002846 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002847 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002848 u8 *mac_addr = NULL;
Johannes Bergb9454e82009-07-08 13:29:08 +02002849 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002850
Johannes Bergb9454e82009-07-08 13:29:08 +02002851 err = nl80211_parse_key(info, &key);
2852 if (err)
2853 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002854
2855 if (info->attrs[NL80211_ATTR_MAC])
2856 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2857
Johannes Berge31b8212010-10-05 19:39:30 +02002858 if (key.type == -1) {
2859 if (mac_addr)
2860 key.type = NL80211_KEYTYPE_PAIRWISE;
2861 else
2862 key.type = NL80211_KEYTYPE_GROUP;
2863 }
2864
2865 /* for now */
2866 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2867 key.type != NL80211_KEYTYPE_GROUP)
2868 return -EINVAL;
2869
Johannes Berg4c476992010-10-04 21:36:35 +02002870 if (!rdev->ops->del_key)
2871 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002872
Johannes Bergfffd0932009-07-08 14:22:54 +02002873 wdev_lock(dev->ieee80211_ptr);
2874 err = nl80211_key_allowed(dev->ieee80211_ptr);
Johannes Berge31b8212010-10-05 19:39:30 +02002875
2876 if (key.type == NL80211_KEYTYPE_PAIRWISE && mac_addr &&
2877 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2878 err = -ENOENT;
2879
Johannes Bergfffd0932009-07-08 14:22:54 +02002880 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002881 err = rdev_del_key(rdev, dev, key.idx,
2882 key.type == NL80211_KEYTYPE_PAIRWISE,
2883 mac_addr);
Johannes Berg41ade002007-12-19 02:03:29 +01002884
Johannes Berg3d23e342009-09-29 23:27:28 +02002885#ifdef CONFIG_CFG80211_WEXT
Johannes Berg08645122009-05-11 13:54:58 +02002886 if (!err) {
Johannes Bergb9454e82009-07-08 13:29:08 +02002887 if (key.idx == dev->ieee80211_ptr->wext.default_key)
Johannes Berg08645122009-05-11 13:54:58 +02002888 dev->ieee80211_ptr->wext.default_key = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +02002889 else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
Johannes Berg08645122009-05-11 13:54:58 +02002890 dev->ieee80211_ptr->wext.default_mgmt_key = -1;
2891 }
2892#endif
Johannes Bergfffd0932009-07-08 14:22:54 +02002893 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg08645122009-05-11 13:54:58 +02002894
Johannes Berg41ade002007-12-19 02:03:29 +01002895 return err;
2896}
2897
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05302898/* This function returns an error or the number of nested attributes */
2899static int validate_acl_mac_addrs(struct nlattr *nl_attr)
2900{
2901 struct nlattr *attr;
2902 int n_entries = 0, tmp;
2903
2904 nla_for_each_nested(attr, nl_attr, tmp) {
2905 if (nla_len(attr) != ETH_ALEN)
2906 return -EINVAL;
2907
2908 n_entries++;
2909 }
2910
2911 return n_entries;
2912}
2913
2914/*
2915 * This function parses ACL information and allocates memory for ACL data.
2916 * On successful return, the calling function is responsible to free the
2917 * ACL buffer returned by this function.
2918 */
2919static struct cfg80211_acl_data *parse_acl_data(struct wiphy *wiphy,
2920 struct genl_info *info)
2921{
2922 enum nl80211_acl_policy acl_policy;
2923 struct nlattr *attr;
2924 struct cfg80211_acl_data *acl;
2925 int i = 0, n_entries, tmp;
2926
2927 if (!wiphy->max_acl_mac_addrs)
2928 return ERR_PTR(-EOPNOTSUPP);
2929
2930 if (!info->attrs[NL80211_ATTR_ACL_POLICY])
2931 return ERR_PTR(-EINVAL);
2932
2933 acl_policy = nla_get_u32(info->attrs[NL80211_ATTR_ACL_POLICY]);
2934 if (acl_policy != NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED &&
2935 acl_policy != NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
2936 return ERR_PTR(-EINVAL);
2937
2938 if (!info->attrs[NL80211_ATTR_MAC_ADDRS])
2939 return ERR_PTR(-EINVAL);
2940
2941 n_entries = validate_acl_mac_addrs(info->attrs[NL80211_ATTR_MAC_ADDRS]);
2942 if (n_entries < 0)
2943 return ERR_PTR(n_entries);
2944
2945 if (n_entries > wiphy->max_acl_mac_addrs)
2946 return ERR_PTR(-ENOTSUPP);
2947
2948 acl = kzalloc(sizeof(*acl) + (sizeof(struct mac_address) * n_entries),
2949 GFP_KERNEL);
2950 if (!acl)
2951 return ERR_PTR(-ENOMEM);
2952
2953 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_MAC_ADDRS], tmp) {
2954 memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN);
2955 i++;
2956 }
2957
2958 acl->n_acl_entries = n_entries;
2959 acl->acl_policy = acl_policy;
2960
2961 return acl;
2962}
2963
2964static int nl80211_set_mac_acl(struct sk_buff *skb, struct genl_info *info)
2965{
2966 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2967 struct net_device *dev = info->user_ptr[1];
2968 struct cfg80211_acl_data *acl;
2969 int err;
2970
2971 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
2972 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
2973 return -EOPNOTSUPP;
2974
2975 if (!dev->ieee80211_ptr->beacon_interval)
2976 return -EINVAL;
2977
2978 acl = parse_acl_data(&rdev->wiphy, info);
2979 if (IS_ERR(acl))
2980 return PTR_ERR(acl);
2981
2982 err = rdev_set_mac_acl(rdev, dev, acl);
2983
2984 kfree(acl);
2985
2986 return err;
2987}
2988
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002989static int nl80211_parse_beacon(struct nlattr *attrs[],
Johannes Berg88600202012-02-13 15:17:18 +01002990 struct cfg80211_beacon_data *bcn)
Johannes Berged1b6cc2007-12-19 02:03:32 +01002991{
Johannes Berg88600202012-02-13 15:17:18 +01002992 bool haveinfo = false;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002993
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002994 if (!is_valid_ie_attr(attrs[NL80211_ATTR_BEACON_TAIL]) ||
2995 !is_valid_ie_attr(attrs[NL80211_ATTR_IE]) ||
2996 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_PROBE_RESP]) ||
2997 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_ASSOC_RESP]))
Johannes Bergf4a11bb2009-03-27 12:40:28 +01002998 return -EINVAL;
2999
Johannes Berg88600202012-02-13 15:17:18 +01003000 memset(bcn, 0, sizeof(*bcn));
Johannes Berged1b6cc2007-12-19 02:03:32 +01003001
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003002 if (attrs[NL80211_ATTR_BEACON_HEAD]) {
3003 bcn->head = nla_data(attrs[NL80211_ATTR_BEACON_HEAD]);
3004 bcn->head_len = nla_len(attrs[NL80211_ATTR_BEACON_HEAD]);
Johannes Berg88600202012-02-13 15:17:18 +01003005 if (!bcn->head_len)
3006 return -EINVAL;
3007 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003008 }
3009
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003010 if (attrs[NL80211_ATTR_BEACON_TAIL]) {
3011 bcn->tail = nla_data(attrs[NL80211_ATTR_BEACON_TAIL]);
3012 bcn->tail_len = nla_len(attrs[NL80211_ATTR_BEACON_TAIL]);
Johannes Berg88600202012-02-13 15:17:18 +01003013 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003014 }
3015
Johannes Berg4c476992010-10-04 21:36:35 +02003016 if (!haveinfo)
3017 return -EINVAL;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003018
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003019 if (attrs[NL80211_ATTR_IE]) {
3020 bcn->beacon_ies = nla_data(attrs[NL80211_ATTR_IE]);
3021 bcn->beacon_ies_len = nla_len(attrs[NL80211_ATTR_IE]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003022 }
3023
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003024 if (attrs[NL80211_ATTR_IE_PROBE_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003025 bcn->proberesp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003026 nla_data(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003027 bcn->proberesp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003028 nla_len(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003029 }
3030
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003031 if (attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003032 bcn->assocresp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003033 nla_data(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003034 bcn->assocresp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003035 nla_len(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003036 }
3037
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003038 if (attrs[NL80211_ATTR_PROBE_RESP]) {
3039 bcn->probe_resp = nla_data(attrs[NL80211_ATTR_PROBE_RESP]);
3040 bcn->probe_resp_len = nla_len(attrs[NL80211_ATTR_PROBE_RESP]);
Arik Nemtsov00f740e2011-11-10 11:28:56 +02003041 }
3042
Johannes Berg88600202012-02-13 15:17:18 +01003043 return 0;
3044}
3045
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003046static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev,
3047 struct cfg80211_ap_settings *params)
3048{
3049 struct wireless_dev *wdev;
3050 bool ret = false;
3051
Johannes Berg89a54e42012-06-15 14:33:17 +02003052 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003053 if (wdev->iftype != NL80211_IFTYPE_AP &&
3054 wdev->iftype != NL80211_IFTYPE_P2P_GO)
3055 continue;
3056
Johannes Berg683b6d32012-11-08 21:25:48 +01003057 if (!wdev->preset_chandef.chan)
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003058 continue;
3059
Johannes Berg683b6d32012-11-08 21:25:48 +01003060 params->chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003061 ret = true;
3062 break;
3063 }
3064
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003065 return ret;
3066}
3067
Jouni Malinene39e5b52012-09-30 19:29:39 +03003068static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
3069 enum nl80211_auth_type auth_type,
3070 enum nl80211_commands cmd)
3071{
3072 if (auth_type > NL80211_AUTHTYPE_MAX)
3073 return false;
3074
3075 switch (cmd) {
3076 case NL80211_CMD_AUTHENTICATE:
3077 if (!(rdev->wiphy.features & NL80211_FEATURE_SAE) &&
3078 auth_type == NL80211_AUTHTYPE_SAE)
3079 return false;
3080 return true;
3081 case NL80211_CMD_CONNECT:
3082 case NL80211_CMD_START_AP:
3083 /* SAE not supported yet */
3084 if (auth_type == NL80211_AUTHTYPE_SAE)
3085 return false;
3086 return true;
3087 default:
3088 return false;
3089 }
3090}
3091
Johannes Berg88600202012-02-13 15:17:18 +01003092static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
3093{
3094 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3095 struct net_device *dev = info->user_ptr[1];
3096 struct wireless_dev *wdev = dev->ieee80211_ptr;
3097 struct cfg80211_ap_settings params;
3098 int err;
Simon Wunderlich04f39042013-02-08 18:16:19 +01003099 u8 radar_detect_width = 0;
Johannes Berg88600202012-02-13 15:17:18 +01003100
3101 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3102 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3103 return -EOPNOTSUPP;
3104
3105 if (!rdev->ops->start_ap)
3106 return -EOPNOTSUPP;
3107
3108 if (wdev->beacon_interval)
3109 return -EALREADY;
3110
3111 memset(&params, 0, sizeof(params));
3112
3113 /* these are required for START_AP */
3114 if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
3115 !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
3116 !info->attrs[NL80211_ATTR_BEACON_HEAD])
3117 return -EINVAL;
3118
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003119 err = nl80211_parse_beacon(info->attrs, &params.beacon);
Johannes Berg88600202012-02-13 15:17:18 +01003120 if (err)
3121 return err;
3122
3123 params.beacon_interval =
3124 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
3125 params.dtim_period =
3126 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
3127
3128 err = cfg80211_validate_beacon_int(rdev, params.beacon_interval);
3129 if (err)
3130 return err;
3131
3132 /*
3133 * In theory, some of these attributes should be required here
3134 * but since they were not used when the command was originally
3135 * added, keep them optional for old user space programs to let
3136 * them continue to work with drivers that do not need the
3137 * additional information -- drivers must check!
3138 */
3139 if (info->attrs[NL80211_ATTR_SSID]) {
3140 params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
3141 params.ssid_len =
3142 nla_len(info->attrs[NL80211_ATTR_SSID]);
3143 if (params.ssid_len == 0 ||
3144 params.ssid_len > IEEE80211_MAX_SSID_LEN)
3145 return -EINVAL;
3146 }
3147
3148 if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) {
3149 params.hidden_ssid = nla_get_u32(
3150 info->attrs[NL80211_ATTR_HIDDEN_SSID]);
3151 if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE &&
3152 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN &&
3153 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS)
3154 return -EINVAL;
3155 }
3156
3157 params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
3158
3159 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
3160 params.auth_type = nla_get_u32(
3161 info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03003162 if (!nl80211_valid_auth_type(rdev, params.auth_type,
3163 NL80211_CMD_START_AP))
Johannes Berg88600202012-02-13 15:17:18 +01003164 return -EINVAL;
3165 } else
3166 params.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
3167
3168 err = nl80211_crypto_settings(rdev, info, &params.crypto,
3169 NL80211_MAX_NR_CIPHER_SUITES);
3170 if (err)
3171 return err;
3172
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +05303173 if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) {
3174 if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER))
3175 return -EOPNOTSUPP;
3176 params.inactivity_timeout = nla_get_u16(
3177 info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]);
3178 }
3179
Johannes Berg53cabad2012-11-14 15:17:28 +01003180 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
3181 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3182 return -EINVAL;
3183 params.p2p_ctwindow =
3184 nla_get_u8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
3185 if (params.p2p_ctwindow > 127)
3186 return -EINVAL;
3187 if (params.p2p_ctwindow != 0 &&
3188 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
3189 return -EINVAL;
3190 }
3191
3192 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
3193 u8 tmp;
3194
3195 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3196 return -EINVAL;
3197 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
3198 if (tmp > 1)
3199 return -EINVAL;
3200 params.p2p_opp_ps = tmp;
3201 if (params.p2p_opp_ps != 0 &&
3202 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
3203 return -EINVAL;
3204 }
3205
Johannes Bergaa430da2012-05-16 23:50:18 +02003206 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003207 err = nl80211_parse_chandef(rdev, info, &params.chandef);
3208 if (err)
3209 return err;
3210 } else if (wdev->preset_chandef.chan) {
3211 params.chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003212 } else if (!nl80211_get_ap_channel(rdev, &params))
Johannes Bergaa430da2012-05-16 23:50:18 +02003213 return -EINVAL;
3214
Johannes Berg683b6d32012-11-08 21:25:48 +01003215 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
Johannes Bergaa430da2012-05-16 23:50:18 +02003216 return -EINVAL;
3217
Simon Wunderlich04f39042013-02-08 18:16:19 +01003218 err = cfg80211_chandef_dfs_required(wdev->wiphy, &params.chandef);
3219 if (err < 0)
3220 return err;
3221 if (err) {
3222 radar_detect_width = BIT(params.chandef.width);
3223 params.radar_required = true;
3224 }
3225
Simon Wunderlich04f39042013-02-08 18:16:19 +01003226 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
3227 params.chandef.chan,
3228 CHAN_MODE_SHARED,
3229 radar_detect_width);
Michal Kaziore4e32452012-06-29 12:47:08 +02003230 if (err)
3231 return err;
3232
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303233 if (info->attrs[NL80211_ATTR_ACL_POLICY]) {
3234 params.acl = parse_acl_data(&rdev->wiphy, info);
3235 if (IS_ERR(params.acl))
3236 return PTR_ERR(params.acl);
3237 }
3238
Hila Gonene35e4d22012-06-27 17:19:42 +03003239 err = rdev_start_ap(rdev, dev, &params);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003240 if (!err) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003241 wdev->preset_chandef = params.chandef;
Johannes Berg88600202012-02-13 15:17:18 +01003242 wdev->beacon_interval = params.beacon_interval;
Johannes Berg683b6d32012-11-08 21:25:48 +01003243 wdev->channel = params.chandef.chan;
Antonio Quartulli06e191e2012-11-07 12:52:19 +01003244 wdev->ssid_len = params.ssid_len;
3245 memcpy(wdev->ssid, params.ssid, wdev->ssid_len);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003246 }
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303247
3248 kfree(params.acl);
3249
Johannes Berg56d18932011-05-09 18:41:15 +02003250 return err;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003251}
3252
Johannes Berg88600202012-02-13 15:17:18 +01003253static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
3254{
3255 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3256 struct net_device *dev = info->user_ptr[1];
3257 struct wireless_dev *wdev = dev->ieee80211_ptr;
3258 struct cfg80211_beacon_data params;
3259 int err;
3260
3261 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3262 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3263 return -EOPNOTSUPP;
3264
3265 if (!rdev->ops->change_beacon)
3266 return -EOPNOTSUPP;
3267
3268 if (!wdev->beacon_interval)
3269 return -EINVAL;
3270
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003271 err = nl80211_parse_beacon(info->attrs, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003272 if (err)
3273 return err;
3274
Hila Gonene35e4d22012-06-27 17:19:42 +03003275 return rdev_change_beacon(rdev, dev, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003276}
3277
3278static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003279{
Johannes Berg4c476992010-10-04 21:36:35 +02003280 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3281 struct net_device *dev = info->user_ptr[1];
Johannes Berged1b6cc2007-12-19 02:03:32 +01003282
Michal Kazior60771782012-06-29 12:46:56 +02003283 return cfg80211_stop_ap(rdev, dev);
Johannes Berged1b6cc2007-12-19 02:03:32 +01003284}
3285
Johannes Berg5727ef12007-12-19 02:03:34 +01003286static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
3287 [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
3288 [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
3289 [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
Jouni Malinen0e467242009-05-11 21:57:55 +03003290 [NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
Javier Cardonab39c48f2011-04-07 15:08:30 -07003291 [NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
Johannes Bergd83023d2011-12-14 09:29:15 +01003292 [NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
Johannes Berg5727ef12007-12-19 02:03:34 +01003293};
3294
Johannes Bergeccb8e82009-05-11 21:57:56 +03003295static int parse_station_flags(struct genl_info *info,
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003296 enum nl80211_iftype iftype,
Johannes Bergeccb8e82009-05-11 21:57:56 +03003297 struct station_parameters *params)
Johannes Berg5727ef12007-12-19 02:03:34 +01003298{
3299 struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
Johannes Bergeccb8e82009-05-11 21:57:56 +03003300 struct nlattr *nla;
Johannes Berg5727ef12007-12-19 02:03:34 +01003301 int flag;
3302
Johannes Bergeccb8e82009-05-11 21:57:56 +03003303 /*
3304 * Try parsing the new attribute first so userspace
3305 * can specify both for older kernels.
3306 */
3307 nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
3308 if (nla) {
3309 struct nl80211_sta_flag_update *sta_flags;
Johannes Berg5727ef12007-12-19 02:03:34 +01003310
Johannes Bergeccb8e82009-05-11 21:57:56 +03003311 sta_flags = nla_data(nla);
3312 params->sta_flags_mask = sta_flags->mask;
3313 params->sta_flags_set = sta_flags->set;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003314 params->sta_flags_set &= params->sta_flags_mask;
Johannes Bergeccb8e82009-05-11 21:57:56 +03003315 if ((params->sta_flags_mask |
3316 params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
3317 return -EINVAL;
3318 return 0;
3319 }
3320
3321 /* if present, parse the old attribute */
3322
3323 nla = info->attrs[NL80211_ATTR_STA_FLAGS];
Johannes Berg5727ef12007-12-19 02:03:34 +01003324 if (!nla)
3325 return 0;
3326
3327 if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
3328 nla, sta_flags_policy))
3329 return -EINVAL;
3330
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003331 /*
3332 * Only allow certain flags for interface types so that
3333 * other attributes are silently ignored. Remember that
3334 * this is backward compatibility code with old userspace
3335 * and shouldn't be hit in other cases anyway.
3336 */
3337 switch (iftype) {
3338 case NL80211_IFTYPE_AP:
3339 case NL80211_IFTYPE_AP_VLAN:
3340 case NL80211_IFTYPE_P2P_GO:
3341 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3342 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3343 BIT(NL80211_STA_FLAG_WME) |
3344 BIT(NL80211_STA_FLAG_MFP);
3345 break;
3346 case NL80211_IFTYPE_P2P_CLIENT:
3347 case NL80211_IFTYPE_STATION:
3348 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3349 BIT(NL80211_STA_FLAG_TDLS_PEER);
3350 break;
3351 case NL80211_IFTYPE_MESH_POINT:
3352 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3353 BIT(NL80211_STA_FLAG_MFP) |
3354 BIT(NL80211_STA_FLAG_AUTHORIZED);
3355 default:
3356 return -EINVAL;
3357 }
Johannes Berg5727ef12007-12-19 02:03:34 +01003358
Johannes Berg3383b5a2012-05-10 20:14:43 +02003359 for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
3360 if (flags[flag]) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03003361 params->sta_flags_set |= (1<<flag);
Johannes Berg5727ef12007-12-19 02:03:34 +01003362
Johannes Berg3383b5a2012-05-10 20:14:43 +02003363 /* no longer support new API additions in old API */
3364 if (flag > NL80211_STA_FLAG_MAX_OLD_API)
3365 return -EINVAL;
3366 }
3367 }
3368
Johannes Berg5727ef12007-12-19 02:03:34 +01003369 return 0;
3370}
3371
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003372static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
3373 int attr)
3374{
3375 struct nlattr *rate;
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003376 u32 bitrate;
3377 u16 bitrate_compat;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003378
3379 rate = nla_nest_start(msg, attr);
3380 if (!rate)
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003381 return false;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003382
3383 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
3384 bitrate = cfg80211_calculate_bitrate(info);
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003385 /* report 16-bit bitrate only if we can */
3386 bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003387 if (bitrate > 0 &&
3388 nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate))
3389 return false;
3390 if (bitrate_compat > 0 &&
3391 nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat))
3392 return false;
3393
3394 if (info->flags & RATE_INFO_FLAGS_MCS) {
3395 if (nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs))
3396 return false;
3397 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3398 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3399 return false;
3400 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3401 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3402 return false;
3403 } else if (info->flags & RATE_INFO_FLAGS_VHT_MCS) {
3404 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_MCS, info->mcs))
3405 return false;
3406 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_NSS, info->nss))
3407 return false;
3408 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3409 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3410 return false;
3411 if (info->flags & RATE_INFO_FLAGS_80_MHZ_WIDTH &&
3412 nla_put_flag(msg, NL80211_RATE_INFO_80_MHZ_WIDTH))
3413 return false;
3414 if (info->flags & RATE_INFO_FLAGS_80P80_MHZ_WIDTH &&
3415 nla_put_flag(msg, NL80211_RATE_INFO_80P80_MHZ_WIDTH))
3416 return false;
3417 if (info->flags & RATE_INFO_FLAGS_160_MHZ_WIDTH &&
3418 nla_put_flag(msg, NL80211_RATE_INFO_160_MHZ_WIDTH))
3419 return false;
3420 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3421 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3422 return false;
3423 }
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003424
3425 nla_nest_end(msg, rate);
3426 return true;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003427}
3428
Felix Fietkau119363c2013-04-22 16:29:30 +02003429static bool nl80211_put_signal(struct sk_buff *msg, u8 mask, s8 *signal,
3430 int id)
3431{
3432 void *attr;
3433 int i = 0;
3434
3435 if (!mask)
3436 return true;
3437
3438 attr = nla_nest_start(msg, id);
3439 if (!attr)
3440 return false;
3441
3442 for (i = 0; i < IEEE80211_MAX_CHAINS; i++) {
3443 if (!(mask & BIT(i)))
3444 continue;
3445
3446 if (nla_put_u8(msg, i, signal[i]))
3447 return false;
3448 }
3449
3450 nla_nest_end(msg, attr);
3451
3452 return true;
3453}
3454
Eric W. Biederman15e47302012-09-07 20:12:54 +00003455static int nl80211_send_station(struct sk_buff *msg, u32 portid, u32 seq,
John W. Linville66266b32012-03-15 13:25:41 -04003456 int flags,
3457 struct cfg80211_registered_device *rdev,
3458 struct net_device *dev,
Johannes Berg98b62182009-12-23 13:15:44 +01003459 const u8 *mac_addr, struct station_info *sinfo)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003460{
3461 void *hdr;
Paul Stewartf4263c92011-03-31 09:25:41 -07003462 struct nlattr *sinfoattr, *bss_param;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003463
Eric W. Biederman15e47302012-09-07 20:12:54 +00003464 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003465 if (!hdr)
3466 return -1;
3467
David S. Miller9360ffd2012-03-29 04:41:26 -04003468 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
3469 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
3470 nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation))
3471 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02003472
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003473 sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
3474 if (!sinfoattr)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003475 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04003476 if ((sinfo->filled & STATION_INFO_CONNECTED_TIME) &&
3477 nla_put_u32(msg, NL80211_STA_INFO_CONNECTED_TIME,
3478 sinfo->connected_time))
3479 goto nla_put_failure;
3480 if ((sinfo->filled & STATION_INFO_INACTIVE_TIME) &&
3481 nla_put_u32(msg, NL80211_STA_INFO_INACTIVE_TIME,
3482 sinfo->inactive_time))
3483 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003484 if ((sinfo->filled & (STATION_INFO_RX_BYTES |
3485 STATION_INFO_RX_BYTES64)) &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003486 nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003487 (u32)sinfo->rx_bytes))
3488 goto nla_put_failure;
3489 if ((sinfo->filled & (STATION_INFO_TX_BYTES |
Felix Fietkau4325d722013-05-23 15:05:59 +02003490 STATION_INFO_TX_BYTES64)) &&
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003491 nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
3492 (u32)sinfo->tx_bytes))
3493 goto nla_put_failure;
3494 if ((sinfo->filled & STATION_INFO_RX_BYTES64) &&
3495 nla_put_u64(msg, NL80211_STA_INFO_RX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003496 sinfo->rx_bytes))
3497 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003498 if ((sinfo->filled & STATION_INFO_TX_BYTES64) &&
3499 nla_put_u64(msg, NL80211_STA_INFO_TX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003500 sinfo->tx_bytes))
3501 goto nla_put_failure;
3502 if ((sinfo->filled & STATION_INFO_LLID) &&
3503 nla_put_u16(msg, NL80211_STA_INFO_LLID, sinfo->llid))
3504 goto nla_put_failure;
3505 if ((sinfo->filled & STATION_INFO_PLID) &&
3506 nla_put_u16(msg, NL80211_STA_INFO_PLID, sinfo->plid))
3507 goto nla_put_failure;
3508 if ((sinfo->filled & STATION_INFO_PLINK_STATE) &&
3509 nla_put_u8(msg, NL80211_STA_INFO_PLINK_STATE,
3510 sinfo->plink_state))
3511 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003512 switch (rdev->wiphy.signal_type) {
3513 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04003514 if ((sinfo->filled & STATION_INFO_SIGNAL) &&
3515 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL,
3516 sinfo->signal))
3517 goto nla_put_failure;
3518 if ((sinfo->filled & STATION_INFO_SIGNAL_AVG) &&
3519 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL_AVG,
3520 sinfo->signal_avg))
3521 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003522 break;
3523 default:
3524 break;
3525 }
Felix Fietkau119363c2013-04-22 16:29:30 +02003526 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL) {
3527 if (!nl80211_put_signal(msg, sinfo->chains,
3528 sinfo->chain_signal,
3529 NL80211_STA_INFO_CHAIN_SIGNAL))
3530 goto nla_put_failure;
3531 }
3532 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL_AVG) {
3533 if (!nl80211_put_signal(msg, sinfo->chains,
3534 sinfo->chain_signal_avg,
3535 NL80211_STA_INFO_CHAIN_SIGNAL_AVG))
3536 goto nla_put_failure;
3537 }
Henning Rogge420e7fa2008-12-11 22:04:19 +01003538 if (sinfo->filled & STATION_INFO_TX_BITRATE) {
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003539 if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
3540 NL80211_STA_INFO_TX_BITRATE))
Henning Rogge420e7fa2008-12-11 22:04:19 +01003541 goto nla_put_failure;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003542 }
3543 if (sinfo->filled & STATION_INFO_RX_BITRATE) {
3544 if (!nl80211_put_sta_rate(msg, &sinfo->rxrate,
3545 NL80211_STA_INFO_RX_BITRATE))
3546 goto nla_put_failure;
Henning Rogge420e7fa2008-12-11 22:04:19 +01003547 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003548 if ((sinfo->filled & STATION_INFO_RX_PACKETS) &&
3549 nla_put_u32(msg, NL80211_STA_INFO_RX_PACKETS,
3550 sinfo->rx_packets))
3551 goto nla_put_failure;
3552 if ((sinfo->filled & STATION_INFO_TX_PACKETS) &&
3553 nla_put_u32(msg, NL80211_STA_INFO_TX_PACKETS,
3554 sinfo->tx_packets))
3555 goto nla_put_failure;
3556 if ((sinfo->filled & STATION_INFO_TX_RETRIES) &&
3557 nla_put_u32(msg, NL80211_STA_INFO_TX_RETRIES,
3558 sinfo->tx_retries))
3559 goto nla_put_failure;
3560 if ((sinfo->filled & STATION_INFO_TX_FAILED) &&
3561 nla_put_u32(msg, NL80211_STA_INFO_TX_FAILED,
3562 sinfo->tx_failed))
3563 goto nla_put_failure;
3564 if ((sinfo->filled & STATION_INFO_BEACON_LOSS_COUNT) &&
3565 nla_put_u32(msg, NL80211_STA_INFO_BEACON_LOSS,
3566 sinfo->beacon_loss_count))
3567 goto nla_put_failure;
Marco Porsch3b1c5a52013-01-07 16:04:52 +01003568 if ((sinfo->filled & STATION_INFO_LOCAL_PM) &&
3569 nla_put_u32(msg, NL80211_STA_INFO_LOCAL_PM,
3570 sinfo->local_pm))
3571 goto nla_put_failure;
3572 if ((sinfo->filled & STATION_INFO_PEER_PM) &&
3573 nla_put_u32(msg, NL80211_STA_INFO_PEER_PM,
3574 sinfo->peer_pm))
3575 goto nla_put_failure;
3576 if ((sinfo->filled & STATION_INFO_NONPEER_PM) &&
3577 nla_put_u32(msg, NL80211_STA_INFO_NONPEER_PM,
3578 sinfo->nonpeer_pm))
3579 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003580 if (sinfo->filled & STATION_INFO_BSS_PARAM) {
3581 bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM);
3582 if (!bss_param)
3583 goto nla_put_failure;
3584
David S. Miller9360ffd2012-03-29 04:41:26 -04003585 if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) &&
3586 nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) ||
3587 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) &&
3588 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) ||
3589 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) &&
3590 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) ||
3591 nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD,
3592 sinfo->bss_param.dtim_period) ||
3593 nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL,
3594 sinfo->bss_param.beacon_interval))
3595 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003596
3597 nla_nest_end(msg, bss_param);
3598 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003599 if ((sinfo->filled & STATION_INFO_STA_FLAGS) &&
3600 nla_put(msg, NL80211_STA_INFO_STA_FLAGS,
3601 sizeof(struct nl80211_sta_flag_update),
3602 &sinfo->sta_flags))
3603 goto nla_put_failure;
John W. Linville7eab0f62012-04-12 14:25:14 -04003604 if ((sinfo->filled & STATION_INFO_T_OFFSET) &&
3605 nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET,
3606 sinfo->t_offset))
3607 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003608 nla_nest_end(msg, sinfoattr);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003609
David S. Miller9360ffd2012-03-29 04:41:26 -04003610 if ((sinfo->filled & STATION_INFO_ASSOC_REQ_IES) &&
3611 nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len,
3612 sinfo->assoc_req_ies))
3613 goto nla_put_failure;
Jouni Malinen50d3dfb2011-08-08 12:11:52 +03003614
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003615 return genlmsg_end(msg, hdr);
3616
3617 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07003618 genlmsg_cancel(msg, hdr);
3619 return -EMSGSIZE;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003620}
3621
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003622static int nl80211_dump_station(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003623 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003624{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003625 struct station_info sinfo;
3626 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02003627 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003628 u8 mac_addr[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02003629 int sta_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003630 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003631
Johannes Berg97990a02013-04-19 01:02:55 +02003632 err = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02003633 if (err)
3634 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003635
Johannes Berg97990a02013-04-19 01:02:55 +02003636 if (!wdev->netdev) {
3637 err = -EINVAL;
3638 goto out_err;
3639 }
3640
Johannes Bergbba95fe2008-07-29 13:22:51 +02003641 if (!dev->ops->dump_station) {
Jouni Malineneec60b02009-03-20 21:21:19 +02003642 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003643 goto out_err;
3644 }
3645
Johannes Bergbba95fe2008-07-29 13:22:51 +02003646 while (1) {
Jouni Malinenf612ced2011-08-11 11:46:22 +03003647 memset(&sinfo, 0, sizeof(sinfo));
Johannes Berg97990a02013-04-19 01:02:55 +02003648 err = rdev_dump_station(dev, wdev->netdev, sta_idx,
Hila Gonene35e4d22012-06-27 17:19:42 +03003649 mac_addr, &sinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003650 if (err == -ENOENT)
3651 break;
3652 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01003653 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003654
3655 if (nl80211_send_station(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003656 NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003657 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02003658 dev, wdev->netdev, mac_addr,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003659 &sinfo) < 0)
3660 goto out;
3661
3662 sta_idx++;
3663 }
3664
3665
3666 out:
Johannes Berg97990a02013-04-19 01:02:55 +02003667 cb->args[2] = sta_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003668 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003669 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02003670 nl80211_finish_wdev_dump(dev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003671
3672 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003673}
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003674
Johannes Berg5727ef12007-12-19 02:03:34 +01003675static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
3676{
Johannes Berg4c476992010-10-04 21:36:35 +02003677 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3678 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003679 struct station_info sinfo;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003680 struct sk_buff *msg;
3681 u8 *mac_addr = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02003682 int err;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003683
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003684 memset(&sinfo, 0, sizeof(sinfo));
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003685
3686 if (!info->attrs[NL80211_ATTR_MAC])
3687 return -EINVAL;
3688
3689 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3690
Johannes Berg4c476992010-10-04 21:36:35 +02003691 if (!rdev->ops->get_station)
3692 return -EOPNOTSUPP;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003693
Hila Gonene35e4d22012-06-27 17:19:42 +03003694 err = rdev_get_station(rdev, dev, mac_addr, &sinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003695 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02003696 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003697
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07003698 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003699 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02003700 return -ENOMEM;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003701
Eric W. Biederman15e47302012-09-07 20:12:54 +00003702 if (nl80211_send_station(msg, info->snd_portid, info->snd_seq, 0,
John W. Linville66266b32012-03-15 13:25:41 -04003703 rdev, dev, mac_addr, &sinfo) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02003704 nlmsg_free(msg);
3705 return -ENOBUFS;
3706 }
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003707
Johannes Berg4c476992010-10-04 21:36:35 +02003708 return genlmsg_reply(msg, info);
Johannes Berg5727ef12007-12-19 02:03:34 +01003709}
3710
Johannes Berg77ee7c82013-02-15 00:48:33 +01003711int cfg80211_check_station_change(struct wiphy *wiphy,
3712 struct station_parameters *params,
3713 enum cfg80211_station_type statype)
3714{
3715 if (params->listen_interval != -1)
3716 return -EINVAL;
3717 if (params->aid)
3718 return -EINVAL;
3719
3720 /* When you run into this, adjust the code below for the new flag */
3721 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
3722
3723 switch (statype) {
Thomas Pederseneef941e2013-03-04 13:06:11 -08003724 case CFG80211_STA_MESH_PEER_KERNEL:
3725 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003726 /*
3727 * No ignoring the TDLS flag here -- the userspace mesh
3728 * code doesn't have the bug of including TDLS in the
3729 * mask everywhere.
3730 */
3731 if (params->sta_flags_mask &
3732 ~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3733 BIT(NL80211_STA_FLAG_MFP) |
3734 BIT(NL80211_STA_FLAG_AUTHORIZED)))
3735 return -EINVAL;
3736 break;
3737 case CFG80211_STA_TDLS_PEER_SETUP:
3738 case CFG80211_STA_TDLS_PEER_ACTIVE:
3739 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
3740 return -EINVAL;
3741 /* ignore since it can't change */
3742 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3743 break;
3744 default:
3745 /* disallow mesh-specific things */
3746 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3747 return -EINVAL;
3748 if (params->local_pm)
3749 return -EINVAL;
3750 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3751 return -EINVAL;
3752 }
3753
3754 if (statype != CFG80211_STA_TDLS_PEER_SETUP &&
3755 statype != CFG80211_STA_TDLS_PEER_ACTIVE) {
3756 /* TDLS can't be set, ... */
3757 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
3758 return -EINVAL;
3759 /*
3760 * ... but don't bother the driver with it. This works around
3761 * a hostapd/wpa_supplicant issue -- it always includes the
3762 * TLDS_PEER flag in the mask even for AP mode.
3763 */
3764 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3765 }
3766
3767 if (statype != CFG80211_STA_TDLS_PEER_SETUP) {
3768 /* reject other things that can't change */
3769 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD)
3770 return -EINVAL;
3771 if (params->sta_modify_mask & STATION_PARAM_APPLY_CAPABILITY)
3772 return -EINVAL;
3773 if (params->supported_rates)
3774 return -EINVAL;
3775 if (params->ext_capab || params->ht_capa || params->vht_capa)
3776 return -EINVAL;
3777 }
3778
3779 if (statype != CFG80211_STA_AP_CLIENT) {
3780 if (params->vlan)
3781 return -EINVAL;
3782 }
3783
3784 switch (statype) {
3785 case CFG80211_STA_AP_MLME_CLIENT:
3786 /* Use this only for authorizing/unauthorizing a station */
3787 if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)))
3788 return -EOPNOTSUPP;
3789 break;
3790 case CFG80211_STA_AP_CLIENT:
3791 /* accept only the listed bits */
3792 if (params->sta_flags_mask &
3793 ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3794 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3795 BIT(NL80211_STA_FLAG_ASSOCIATED) |
3796 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3797 BIT(NL80211_STA_FLAG_WME) |
3798 BIT(NL80211_STA_FLAG_MFP)))
3799 return -EINVAL;
3800
3801 /* but authenticated/associated only if driver handles it */
3802 if (!(wiphy->features & NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
3803 params->sta_flags_mask &
3804 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3805 BIT(NL80211_STA_FLAG_ASSOCIATED)))
3806 return -EINVAL;
3807 break;
3808 case CFG80211_STA_IBSS:
3809 case CFG80211_STA_AP_STA:
3810 /* reject any changes other than AUTHORIZED */
3811 if (params->sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
3812 return -EINVAL;
3813 break;
3814 case CFG80211_STA_TDLS_PEER_SETUP:
3815 /* reject any changes other than AUTHORIZED or WME */
3816 if (params->sta_flags_mask & ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3817 BIT(NL80211_STA_FLAG_WME)))
3818 return -EINVAL;
3819 /* force (at least) rates when authorizing */
3820 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED) &&
3821 !params->supported_rates)
3822 return -EINVAL;
3823 break;
3824 case CFG80211_STA_TDLS_PEER_ACTIVE:
3825 /* reject any changes */
3826 return -EINVAL;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003827 case CFG80211_STA_MESH_PEER_KERNEL:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003828 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3829 return -EINVAL;
3830 break;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003831 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003832 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3833 return -EINVAL;
3834 break;
3835 }
3836
3837 return 0;
3838}
3839EXPORT_SYMBOL(cfg80211_check_station_change);
3840
Johannes Berg5727ef12007-12-19 02:03:34 +01003841/*
Felix Fietkauc258d2d2009-11-11 17:23:31 +01003842 * Get vlan interface making sure it is running and on the right wiphy.
Johannes Berg5727ef12007-12-19 02:03:34 +01003843 */
Johannes Berg80b99892011-11-18 16:23:01 +01003844static struct net_device *get_vlan(struct genl_info *info,
3845 struct cfg80211_registered_device *rdev)
Johannes Berg5727ef12007-12-19 02:03:34 +01003846{
Johannes Berg463d0182009-07-14 00:33:35 +02003847 struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
Johannes Berg80b99892011-11-18 16:23:01 +01003848 struct net_device *v;
3849 int ret;
Johannes Berg5727ef12007-12-19 02:03:34 +01003850
Johannes Berg80b99892011-11-18 16:23:01 +01003851 if (!vlanattr)
3852 return NULL;
3853
3854 v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr));
3855 if (!v)
3856 return ERR_PTR(-ENODEV);
3857
3858 if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) {
3859 ret = -EINVAL;
3860 goto error;
Johannes Berg5727ef12007-12-19 02:03:34 +01003861 }
Johannes Berg80b99892011-11-18 16:23:01 +01003862
Johannes Berg77ee7c82013-02-15 00:48:33 +01003863 if (v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
3864 v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3865 v->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
3866 ret = -EINVAL;
3867 goto error;
3868 }
3869
Johannes Berg80b99892011-11-18 16:23:01 +01003870 if (!netif_running(v)) {
3871 ret = -ENETDOWN;
3872 goto error;
3873 }
3874
3875 return v;
3876 error:
3877 dev_put(v);
3878 return ERR_PTR(ret);
Johannes Berg5727ef12007-12-19 02:03:34 +01003879}
3880
Jouni Malinendf881292013-02-14 21:10:54 +02003881static struct nla_policy
3882nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] __read_mostly = {
3883 [NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 },
3884 [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
3885};
3886
Johannes Bergff276692013-02-15 00:09:01 +01003887static int nl80211_parse_sta_wme(struct genl_info *info,
3888 struct station_parameters *params)
Jouni Malinendf881292013-02-14 21:10:54 +02003889{
Jouni Malinendf881292013-02-14 21:10:54 +02003890 struct nlattr *tb[NL80211_STA_WME_MAX + 1];
3891 struct nlattr *nla;
3892 int err;
3893
Jouni Malinendf881292013-02-14 21:10:54 +02003894 /* parse WME attributes if present */
3895 if (!info->attrs[NL80211_ATTR_STA_WME])
3896 return 0;
3897
3898 nla = info->attrs[NL80211_ATTR_STA_WME];
3899 err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla,
3900 nl80211_sta_wme_policy);
3901 if (err)
3902 return err;
3903
3904 if (tb[NL80211_STA_WME_UAPSD_QUEUES])
3905 params->uapsd_queues = nla_get_u8(
3906 tb[NL80211_STA_WME_UAPSD_QUEUES]);
3907 if (params->uapsd_queues & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
3908 return -EINVAL;
3909
3910 if (tb[NL80211_STA_WME_MAX_SP])
3911 params->max_sp = nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
3912
3913 if (params->max_sp & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
3914 return -EINVAL;
3915
3916 params->sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
3917
3918 return 0;
3919}
3920
Sunil Duttc01fc9a2013-10-09 20:45:21 +05303921static int nl80211_parse_sta_channel_info(struct genl_info *info,
3922 struct station_parameters *params)
3923{
3924 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]) {
3925 params->supported_channels =
3926 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
3927 params->supported_channels_len =
3928 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
3929 /*
3930 * Need to include at least one (first channel, number of
3931 * channels) tuple for each subband, and must have proper
3932 * tuples for the rest of the data as well.
3933 */
3934 if (params->supported_channels_len < 2)
3935 return -EINVAL;
3936 if (params->supported_channels_len % 2)
3937 return -EINVAL;
3938 }
3939
3940 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]) {
3941 params->supported_oper_classes =
3942 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
3943 params->supported_oper_classes_len =
3944 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
3945 /*
3946 * The value of the Length field of the Supported Operating
3947 * Classes element is between 2 and 253.
3948 */
3949 if (params->supported_oper_classes_len < 2 ||
3950 params->supported_oper_classes_len > 253)
3951 return -EINVAL;
3952 }
3953 return 0;
3954}
3955
Johannes Bergff276692013-02-15 00:09:01 +01003956static int nl80211_set_station_tdls(struct genl_info *info,
3957 struct station_parameters *params)
3958{
Sunil Duttc01fc9a2013-10-09 20:45:21 +05303959 int err;
Johannes Bergff276692013-02-15 00:09:01 +01003960 /* Dummy STA entry gets updated once the peer capabilities are known */
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03003961 if (info->attrs[NL80211_ATTR_PEER_AID])
3962 params->aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Johannes Bergff276692013-02-15 00:09:01 +01003963 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
3964 params->ht_capa =
3965 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
3966 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
3967 params->vht_capa =
3968 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
3969
Sunil Duttc01fc9a2013-10-09 20:45:21 +05303970 err = nl80211_parse_sta_channel_info(info, params);
3971 if (err)
3972 return err;
3973
Johannes Bergff276692013-02-15 00:09:01 +01003974 return nl80211_parse_sta_wme(info, params);
3975}
3976
Johannes Berg5727ef12007-12-19 02:03:34 +01003977static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
3978{
Johannes Berg4c476992010-10-04 21:36:35 +02003979 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02003980 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01003981 struct station_parameters params;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003982 u8 *mac_addr;
3983 int err;
Johannes Berg5727ef12007-12-19 02:03:34 +01003984
3985 memset(&params, 0, sizeof(params));
3986
3987 params.listen_interval = -1;
3988
Johannes Berg77ee7c82013-02-15 00:48:33 +01003989 if (!rdev->ops->change_station)
3990 return -EOPNOTSUPP;
3991
Johannes Berg5727ef12007-12-19 02:03:34 +01003992 if (info->attrs[NL80211_ATTR_STA_AID])
3993 return -EINVAL;
3994
3995 if (!info->attrs[NL80211_ATTR_MAC])
3996 return -EINVAL;
3997
3998 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3999
4000 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
4001 params.supported_rates =
4002 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4003 params.supported_rates_len =
4004 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4005 }
4006
Jouni Malinen9d62a982013-02-14 21:10:13 +02004007 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4008 params.capability =
4009 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4010 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4011 }
4012
4013 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4014 params.ext_capab =
4015 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4016 params.ext_capab_len =
4017 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4018 }
4019
Jouni Malinendf881292013-02-14 21:10:54 +02004020 if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
Johannes Bergba23d202012-12-27 17:32:09 +01004021 return -EINVAL;
Jouni Malinen36aedc92008-08-25 11:58:58 +03004022
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004023 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004024 return -EINVAL;
4025
Johannes Bergf8bacc22013-02-14 23:27:01 +01004026 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004027 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004028 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4029 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4030 return -EINVAL;
4031 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004032
Johannes Bergf8bacc22013-02-14 23:27:01 +01004033 if (info->attrs[NL80211_ATTR_STA_PLINK_STATE]) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07004034 params.plink_state =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004035 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);
4036 if (params.plink_state >= NUM_NL80211_PLINK_STATES)
4037 return -EINVAL;
4038 params.sta_modify_mask |= STATION_PARAM_APPLY_PLINK_STATE;
4039 }
Javier Cardona9c3990a2011-05-03 16:57:11 -07004040
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004041 if (info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]) {
4042 enum nl80211_mesh_power_mode pm = nla_get_u32(
4043 info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]);
4044
4045 if (pm <= NL80211_MESH_POWER_UNKNOWN ||
4046 pm > NL80211_MESH_POWER_MAX)
4047 return -EINVAL;
4048
4049 params.local_pm = pm;
4050 }
4051
Johannes Berg77ee7c82013-02-15 00:48:33 +01004052 /* Include parameters for TDLS peer (will check later) */
4053 err = nl80211_set_station_tdls(info, &params);
4054 if (err)
4055 return err;
4056
4057 params.vlan = get_vlan(info, rdev);
4058 if (IS_ERR(params.vlan))
4059 return PTR_ERR(params.vlan);
4060
Johannes Berga97f4422009-06-18 17:23:43 +02004061 switch (dev->ieee80211_ptr->iftype) {
4062 case NL80211_IFTYPE_AP:
4063 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004064 case NL80211_IFTYPE_P2P_GO:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004065 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berga97f4422009-06-18 17:23:43 +02004066 case NL80211_IFTYPE_STATION:
Antonio Quartulli267335d2012-01-31 20:25:47 +01004067 case NL80211_IFTYPE_ADHOC:
Johannes Berga97f4422009-06-18 17:23:43 +02004068 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga97f4422009-06-18 17:23:43 +02004069 break;
4070 default:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004071 err = -EOPNOTSUPP;
4072 goto out_put_vlan;
Johannes Berg034d6552009-05-27 10:35:29 +02004073 }
4074
Johannes Berg77ee7c82013-02-15 00:48:33 +01004075 /* driver will call cfg80211_check_station_change() */
Hila Gonene35e4d22012-06-27 17:19:42 +03004076 err = rdev_change_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004077
Johannes Berg77ee7c82013-02-15 00:48:33 +01004078 out_put_vlan:
Johannes Berg5727ef12007-12-19 02:03:34 +01004079 if (params.vlan)
4080 dev_put(params.vlan);
Johannes Berg3b858752009-03-12 09:55:09 +01004081
Johannes Berg5727ef12007-12-19 02:03:34 +01004082 return err;
4083}
4084
4085static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
4086{
Johannes Berg4c476992010-10-04 21:36:35 +02004087 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg5727ef12007-12-19 02:03:34 +01004088 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004089 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004090 struct station_parameters params;
4091 u8 *mac_addr = NULL;
4092
4093 memset(&params, 0, sizeof(params));
4094
Johannes Berg984c3112013-02-14 23:43:25 +01004095 if (!rdev->ops->add_station)
4096 return -EOPNOTSUPP;
4097
Johannes Berg5727ef12007-12-19 02:03:34 +01004098 if (!info->attrs[NL80211_ATTR_MAC])
4099 return -EINVAL;
4100
Johannes Berg5727ef12007-12-19 02:03:34 +01004101 if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
4102 return -EINVAL;
4103
4104 if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
4105 return -EINVAL;
4106
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004107 if (!info->attrs[NL80211_ATTR_STA_AID] &&
4108 !info->attrs[NL80211_ATTR_PEER_AID])
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004109 return -EINVAL;
4110
Johannes Berg5727ef12007-12-19 02:03:34 +01004111 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4112 params.supported_rates =
4113 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4114 params.supported_rates_len =
4115 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4116 params.listen_interval =
4117 nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
Johannes Berg51b50fb2009-05-24 16:42:30 +02004118
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004119 if (info->attrs[NL80211_ATTR_PEER_AID])
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004120 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004121 else
4122 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004123 if (!params.aid || params.aid > IEEE80211_MAX_AID)
4124 return -EINVAL;
Johannes Berg51b50fb2009-05-24 16:42:30 +02004125
Jouni Malinen9d62a982013-02-14 21:10:13 +02004126 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4127 params.capability =
4128 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4129 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4130 }
4131
4132 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4133 params.ext_capab =
4134 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4135 params.ext_capab_len =
4136 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4137 }
4138
Jouni Malinen36aedc92008-08-25 11:58:58 +03004139 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4140 params.ht_capa =
4141 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
Johannes Berg5727ef12007-12-19 02:03:34 +01004142
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00004143 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4144 params.vht_capa =
4145 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4146
Johannes Bergf8bacc22013-02-14 23:27:01 +01004147 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Javier Cardona96b78df2011-04-07 15:08:33 -07004148 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004149 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4150 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4151 return -EINVAL;
4152 }
Javier Cardona96b78df2011-04-07 15:08:33 -07004153
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304154 err = nl80211_parse_sta_channel_info(info, &params);
4155 if (err)
4156 return err;
4157
Johannes Bergff276692013-02-15 00:09:01 +01004158 err = nl80211_parse_sta_wme(info, &params);
4159 if (err)
4160 return err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004161
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004162 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004163 return -EINVAL;
4164
Johannes Berg77ee7c82013-02-15 00:48:33 +01004165 /* When you run into this, adjust the code below for the new flag */
4166 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
4167
Johannes Bergbdd90d52011-12-14 12:20:27 +01004168 switch (dev->ieee80211_ptr->iftype) {
4169 case NL80211_IFTYPE_AP:
4170 case NL80211_IFTYPE_AP_VLAN:
4171 case NL80211_IFTYPE_P2P_GO:
Johannes Berg984c3112013-02-14 23:43:25 +01004172 /* ignore WME attributes if iface/sta is not capable */
4173 if (!(rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) ||
4174 !(params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)))
4175 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004176
Johannes Bergbdd90d52011-12-14 12:20:27 +01004177 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004178 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4179 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004180 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004181 /* but don't bother the driver with it */
4182 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
Eliad Pellerc75786c2011-08-23 14:37:46 +03004183
Johannes Bergd582cff2012-10-26 17:53:44 +02004184 /* allow authenticated/associated only if driver handles it */
4185 if (!(rdev->wiphy.features &
4186 NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
4187 params.sta_flags_mask &
4188 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4189 BIT(NL80211_STA_FLAG_ASSOCIATED)))
4190 return -EINVAL;
4191
Johannes Bergbdd90d52011-12-14 12:20:27 +01004192 /* must be last in here for error handling */
4193 params.vlan = get_vlan(info, rdev);
4194 if (IS_ERR(params.vlan))
4195 return PTR_ERR(params.vlan);
4196 break;
4197 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg984c3112013-02-14 23:43:25 +01004198 /* ignore uAPSD data */
4199 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4200
Johannes Bergd582cff2012-10-26 17:53:44 +02004201 /* associated is disallowed */
4202 if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
4203 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004204 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004205 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4206 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004207 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004208 break;
4209 case NL80211_IFTYPE_STATION:
Johannes Berg93d08f02013-03-04 09:29:46 +01004210 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg984c3112013-02-14 23:43:25 +01004211 /* ignore uAPSD data */
4212 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4213
Johannes Berg77ee7c82013-02-15 00:48:33 +01004214 /* these are disallowed */
4215 if (params.sta_flags_mask &
4216 (BIT(NL80211_STA_FLAG_ASSOCIATED) |
4217 BIT(NL80211_STA_FLAG_AUTHENTICATED)))
Johannes Bergd582cff2012-10-26 17:53:44 +02004218 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004219 /* Only TDLS peers can be added */
4220 if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4221 return -EINVAL;
4222 /* Can only add if TDLS ... */
4223 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS))
4224 return -EOPNOTSUPP;
4225 /* ... with external setup is supported */
4226 if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
4227 return -EOPNOTSUPP;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004228 /*
4229 * Older wpa_supplicant versions always mark the TDLS peer
4230 * as authorized, but it shouldn't yet be.
4231 */
4232 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_AUTHORIZED);
Johannes Bergbdd90d52011-12-14 12:20:27 +01004233 break;
4234 default:
4235 return -EOPNOTSUPP;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004236 }
4237
Johannes Bergbdd90d52011-12-14 12:20:27 +01004238 /* be aware of params.vlan when changing code here */
Johannes Berg5727ef12007-12-19 02:03:34 +01004239
Hila Gonene35e4d22012-06-27 17:19:42 +03004240 err = rdev_add_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004241
Johannes Berg5727ef12007-12-19 02:03:34 +01004242 if (params.vlan)
4243 dev_put(params.vlan);
Johannes Berg5727ef12007-12-19 02:03:34 +01004244 return err;
4245}
4246
4247static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
4248{
Johannes Berg4c476992010-10-04 21:36:35 +02004249 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4250 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004251 u8 *mac_addr = NULL;
4252
4253 if (info->attrs[NL80211_ATTR_MAC])
4254 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4255
Johannes Berge80cf852009-05-11 14:43:13 +02004256 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Marco Porschd5d9de02010-03-30 10:00:16 +02004257 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
Johannes Berg074ac8d2010-09-16 14:58:22 +02004258 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg4c476992010-10-04 21:36:35 +02004259 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4260 return -EINVAL;
Johannes Berge80cf852009-05-11 14:43:13 +02004261
Johannes Berg4c476992010-10-04 21:36:35 +02004262 if (!rdev->ops->del_station)
4263 return -EOPNOTSUPP;
Johannes Berg5727ef12007-12-19 02:03:34 +01004264
Hila Gonene35e4d22012-06-27 17:19:42 +03004265 return rdev_del_station(rdev, dev, mac_addr);
Johannes Berg5727ef12007-12-19 02:03:34 +01004266}
4267
Eric W. Biederman15e47302012-09-07 20:12:54 +00004268static int nl80211_send_mpath(struct sk_buff *msg, u32 portid, u32 seq,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004269 int flags, struct net_device *dev,
4270 u8 *dst, u8 *next_hop,
4271 struct mpath_info *pinfo)
4272{
4273 void *hdr;
4274 struct nlattr *pinfoattr;
4275
Eric W. Biederman15e47302012-09-07 20:12:54 +00004276 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004277 if (!hdr)
4278 return -1;
4279
David S. Miller9360ffd2012-03-29 04:41:26 -04004280 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4281 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) ||
4282 nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) ||
4283 nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation))
4284 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02004285
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004286 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
4287 if (!pinfoattr)
4288 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004289 if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) &&
4290 nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
4291 pinfo->frame_qlen))
4292 goto nla_put_failure;
4293 if (((pinfo->filled & MPATH_INFO_SN) &&
4294 nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) ||
4295 ((pinfo->filled & MPATH_INFO_METRIC) &&
4296 nla_put_u32(msg, NL80211_MPATH_INFO_METRIC,
4297 pinfo->metric)) ||
4298 ((pinfo->filled & MPATH_INFO_EXPTIME) &&
4299 nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME,
4300 pinfo->exptime)) ||
4301 ((pinfo->filled & MPATH_INFO_FLAGS) &&
4302 nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS,
4303 pinfo->flags)) ||
4304 ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) &&
4305 nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
4306 pinfo->discovery_timeout)) ||
4307 ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) &&
4308 nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
4309 pinfo->discovery_retries)))
4310 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004311
4312 nla_nest_end(msg, pinfoattr);
4313
4314 return genlmsg_end(msg, hdr);
4315
4316 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07004317 genlmsg_cancel(msg, hdr);
4318 return -EMSGSIZE;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004319}
4320
4321static int nl80211_dump_mpath(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004322 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004323{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004324 struct mpath_info pinfo;
4325 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02004326 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004327 u8 dst[ETH_ALEN];
4328 u8 next_hop[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02004329 int path_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004330 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004331
Johannes Berg97990a02013-04-19 01:02:55 +02004332 err = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02004333 if (err)
4334 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004335
4336 if (!dev->ops->dump_mpath) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004337 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004338 goto out_err;
4339 }
4340
Johannes Berg97990a02013-04-19 01:02:55 +02004341 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004342 err = -EOPNOTSUPP;
Roel Kluin0448b5f2009-08-22 21:15:49 +02004343 goto out_err;
Jouni Malineneec60b02009-03-20 21:21:19 +02004344 }
4345
Johannes Bergbba95fe2008-07-29 13:22:51 +02004346 while (1) {
Johannes Berg97990a02013-04-19 01:02:55 +02004347 err = rdev_dump_mpath(dev, wdev->netdev, path_idx, dst,
4348 next_hop, &pinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004349 if (err == -ENOENT)
4350 break;
4351 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01004352 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004353
Eric W. Biederman15e47302012-09-07 20:12:54 +00004354 if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004355 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02004356 wdev->netdev, dst, next_hop,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004357 &pinfo) < 0)
4358 goto out;
4359
4360 path_idx++;
4361 }
4362
4363
4364 out:
Johannes Berg97990a02013-04-19 01:02:55 +02004365 cb->args[2] = path_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004366 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004367 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02004368 nl80211_finish_wdev_dump(dev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004369 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004370}
4371
4372static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
4373{
Johannes Berg4c476992010-10-04 21:36:35 +02004374 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004375 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004376 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004377 struct mpath_info pinfo;
4378 struct sk_buff *msg;
4379 u8 *dst = NULL;
4380 u8 next_hop[ETH_ALEN];
4381
4382 memset(&pinfo, 0, sizeof(pinfo));
4383
4384 if (!info->attrs[NL80211_ATTR_MAC])
4385 return -EINVAL;
4386
4387 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4388
Johannes Berg4c476992010-10-04 21:36:35 +02004389 if (!rdev->ops->get_mpath)
4390 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004391
Johannes Berg4c476992010-10-04 21:36:35 +02004392 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4393 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004394
Hila Gonene35e4d22012-06-27 17:19:42 +03004395 err = rdev_get_mpath(rdev, dev, dst, next_hop, &pinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004396 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004397 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004398
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004399 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004400 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02004401 return -ENOMEM;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004402
Eric W. Biederman15e47302012-09-07 20:12:54 +00004403 if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg4c476992010-10-04 21:36:35 +02004404 dev, dst, next_hop, &pinfo) < 0) {
4405 nlmsg_free(msg);
4406 return -ENOBUFS;
4407 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004408
Johannes Berg4c476992010-10-04 21:36:35 +02004409 return genlmsg_reply(msg, info);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004410}
4411
4412static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
4413{
Johannes Berg4c476992010-10-04 21:36:35 +02004414 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4415 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004416 u8 *dst = NULL;
4417 u8 *next_hop = NULL;
4418
4419 if (!info->attrs[NL80211_ATTR_MAC])
4420 return -EINVAL;
4421
4422 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4423 return -EINVAL;
4424
4425 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4426 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4427
Johannes Berg4c476992010-10-04 21:36:35 +02004428 if (!rdev->ops->change_mpath)
4429 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004430
Johannes Berg4c476992010-10-04 21:36:35 +02004431 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4432 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004433
Hila Gonene35e4d22012-06-27 17:19:42 +03004434 return rdev_change_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004435}
Johannes Berg4c476992010-10-04 21:36:35 +02004436
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004437static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
4438{
Johannes Berg4c476992010-10-04 21:36:35 +02004439 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4440 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004441 u8 *dst = NULL;
4442 u8 *next_hop = NULL;
4443
4444 if (!info->attrs[NL80211_ATTR_MAC])
4445 return -EINVAL;
4446
4447 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4448 return -EINVAL;
4449
4450 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4451 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4452
Johannes Berg4c476992010-10-04 21:36:35 +02004453 if (!rdev->ops->add_mpath)
4454 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004455
Johannes Berg4c476992010-10-04 21:36:35 +02004456 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4457 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004458
Hila Gonene35e4d22012-06-27 17:19:42 +03004459 return rdev_add_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004460}
4461
4462static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
4463{
Johannes Berg4c476992010-10-04 21:36:35 +02004464 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4465 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004466 u8 *dst = NULL;
4467
4468 if (info->attrs[NL80211_ATTR_MAC])
4469 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4470
Johannes Berg4c476992010-10-04 21:36:35 +02004471 if (!rdev->ops->del_mpath)
4472 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004473
Hila Gonene35e4d22012-06-27 17:19:42 +03004474 return rdev_del_mpath(rdev, dev, dst);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004475}
4476
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004477static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
4478{
Johannes Berg4c476992010-10-04 21:36:35 +02004479 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4480 struct net_device *dev = info->user_ptr[1];
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004481 struct bss_parameters params;
4482
4483 memset(&params, 0, sizeof(params));
4484 /* default to not changing parameters */
4485 params.use_cts_prot = -1;
4486 params.use_short_preamble = -1;
4487 params.use_short_slot_time = -1;
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004488 params.ap_isolate = -1;
Helmut Schaa50b12f52010-11-19 12:40:25 +01004489 params.ht_opmode = -1;
Johannes Berg53cabad2012-11-14 15:17:28 +01004490 params.p2p_ctwindow = -1;
4491 params.p2p_opp_ps = -1;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004492
4493 if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
4494 params.use_cts_prot =
4495 nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
4496 if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
4497 params.use_short_preamble =
4498 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
4499 if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
4500 params.use_short_slot_time =
4501 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
Jouni Malinen90c97a02008-10-30 16:59:22 +02004502 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
4503 params.basic_rates =
4504 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4505 params.basic_rates_len =
4506 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4507 }
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004508 if (info->attrs[NL80211_ATTR_AP_ISOLATE])
4509 params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
Helmut Schaa50b12f52010-11-19 12:40:25 +01004510 if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
4511 params.ht_opmode =
4512 nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004513
Johannes Berg53cabad2012-11-14 15:17:28 +01004514 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
4515 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4516 return -EINVAL;
4517 params.p2p_ctwindow =
4518 nla_get_s8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
4519 if (params.p2p_ctwindow < 0)
4520 return -EINVAL;
4521 if (params.p2p_ctwindow != 0 &&
4522 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
4523 return -EINVAL;
4524 }
4525
4526 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
4527 u8 tmp;
4528
4529 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4530 return -EINVAL;
4531 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
4532 if (tmp > 1)
4533 return -EINVAL;
4534 params.p2p_opp_ps = tmp;
4535 if (params.p2p_opp_ps &&
4536 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
4537 return -EINVAL;
4538 }
4539
Johannes Berg4c476992010-10-04 21:36:35 +02004540 if (!rdev->ops->change_bss)
4541 return -EOPNOTSUPP;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004542
Johannes Berg074ac8d2010-09-16 14:58:22 +02004543 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Johannes Berg4c476992010-10-04 21:36:35 +02004544 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4545 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004546
Hila Gonene35e4d22012-06-27 17:19:42 +03004547 return rdev_change_bss(rdev, dev, &params);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004548}
4549
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004550static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004551 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
4552 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
4553 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
4554 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
4555 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
4556 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
4557};
4558
4559static int parse_reg_rule(struct nlattr *tb[],
4560 struct ieee80211_reg_rule *reg_rule)
4561{
4562 struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
4563 struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;
4564
4565 if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
4566 return -EINVAL;
4567 if (!tb[NL80211_ATTR_FREQ_RANGE_START])
4568 return -EINVAL;
4569 if (!tb[NL80211_ATTR_FREQ_RANGE_END])
4570 return -EINVAL;
4571 if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
4572 return -EINVAL;
4573 if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
4574 return -EINVAL;
4575
4576 reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);
4577
4578 freq_range->start_freq_khz =
4579 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
4580 freq_range->end_freq_khz =
4581 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
4582 freq_range->max_bandwidth_khz =
4583 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);
4584
4585 power_rule->max_eirp =
4586 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);
4587
4588 if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
4589 power_rule->max_antenna_gain =
4590 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);
4591
4592 return 0;
4593}
4594
4595static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
4596{
4597 int r;
4598 char *data = NULL;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004599 enum nl80211_user_reg_hint_type user_reg_hint_type;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004600
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004601 /*
4602 * You should only get this when cfg80211 hasn't yet initialized
4603 * completely when built-in to the kernel right between the time
4604 * window between nl80211_init() and regulatory_init(), if that is
4605 * even possible.
4606 */
Johannes Berg458f4f92012-12-06 15:47:38 +01004607 if (unlikely(!rcu_access_pointer(cfg80211_regdomain)))
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004608 return -EINPROGRESS;
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004609
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004610 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
4611 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004612
4613 data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
4614
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004615 if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE])
4616 user_reg_hint_type =
4617 nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]);
4618 else
4619 user_reg_hint_type = NL80211_USER_REG_HINT_USER;
4620
4621 switch (user_reg_hint_type) {
4622 case NL80211_USER_REG_HINT_USER:
4623 case NL80211_USER_REG_HINT_CELL_BASE:
4624 break;
4625 default:
4626 return -EINVAL;
4627 }
4628
4629 r = regulatory_hint_user(data, user_reg_hint_type);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004630
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004631 return r;
4632}
4633
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004634static int nl80211_get_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004635 struct genl_info *info)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004636{
Johannes Berg4c476992010-10-04 21:36:35 +02004637 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02004638 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004639 struct wireless_dev *wdev = dev->ieee80211_ptr;
4640 struct mesh_config cur_params;
4641 int err = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004642 void *hdr;
4643 struct nlattr *pinfoattr;
4644 struct sk_buff *msg;
4645
Johannes Berg29cbe682010-12-03 09:20:44 +01004646 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4647 return -EOPNOTSUPP;
4648
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004649 if (!rdev->ops->get_mesh_config)
Johannes Berg4c476992010-10-04 21:36:35 +02004650 return -EOPNOTSUPP;
Jouni Malinenf3f92582009-03-20 17:57:36 +02004651
Johannes Berg29cbe682010-12-03 09:20:44 +01004652 wdev_lock(wdev);
4653 /* If not connected, get default parameters */
4654 if (!wdev->mesh_id_len)
4655 memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
4656 else
Hila Gonene35e4d22012-06-27 17:19:42 +03004657 err = rdev_get_mesh_config(rdev, dev, &cur_params);
Johannes Berg29cbe682010-12-03 09:20:44 +01004658 wdev_unlock(wdev);
4659
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004660 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004661 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004662
4663 /* Draw up a netlink message to send back */
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004664 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02004665 if (!msg)
4666 return -ENOMEM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00004667 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004668 NL80211_CMD_GET_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004669 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01004670 goto out;
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004671 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004672 if (!pinfoattr)
4673 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004674 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4675 nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
4676 cur_params.dot11MeshRetryTimeout) ||
4677 nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4678 cur_params.dot11MeshConfirmTimeout) ||
4679 nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
4680 cur_params.dot11MeshHoldingTimeout) ||
4681 nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
4682 cur_params.dot11MeshMaxPeerLinks) ||
4683 nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES,
4684 cur_params.dot11MeshMaxRetries) ||
4685 nla_put_u8(msg, NL80211_MESHCONF_TTL,
4686 cur_params.dot11MeshTTL) ||
4687 nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL,
4688 cur_params.element_ttl) ||
4689 nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4690 cur_params.auto_open_plinks) ||
John W. Linville7eab0f62012-04-12 14:25:14 -04004691 nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4692 cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04004693 nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4694 cur_params.dot11MeshHWMPmaxPREQretries) ||
4695 nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
4696 cur_params.path_refresh_time) ||
4697 nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4698 cur_params.min_discovery_timeout) ||
4699 nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4700 cur_params.dot11MeshHWMPactivePathTimeout) ||
4701 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
4702 cur_params.dot11MeshHWMPpreqMinInterval) ||
4703 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
4704 cur_params.dot11MeshHWMPperrMinInterval) ||
4705 nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4706 cur_params.dot11MeshHWMPnetDiameterTraversalTime) ||
4707 nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE,
4708 cur_params.dot11MeshHWMPRootMode) ||
4709 nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
4710 cur_params.dot11MeshHWMPRannInterval) ||
4711 nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
4712 cur_params.dot11MeshGateAnnouncementProtocol) ||
4713 nla_put_u8(msg, NL80211_MESHCONF_FORWARDING,
4714 cur_params.dot11MeshForwarding) ||
4715 nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD,
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07004716 cur_params.rssi_threshold) ||
4717 nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004718 cur_params.ht_opmode) ||
4719 nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4720 cur_params.dot11MeshHWMPactivePathToRootTimeout) ||
4721 nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004722 cur_params.dot11MeshHWMProotInterval) ||
4723 nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004724 cur_params.dot11MeshHWMPconfirmationInterval) ||
4725 nla_put_u32(msg, NL80211_MESHCONF_POWER_MODE,
4726 cur_params.power_mode) ||
4727 nla_put_u16(msg, NL80211_MESHCONF_AWAKE_WINDOW,
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004728 cur_params.dot11MeshAwakeWindowDuration) ||
4729 nla_put_u32(msg, NL80211_MESHCONF_PLINK_TIMEOUT,
4730 cur_params.plink_timeout))
David S. Miller9360ffd2012-03-29 04:41:26 -04004731 goto nla_put_failure;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004732 nla_nest_end(msg, pinfoattr);
4733 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02004734 return genlmsg_reply(msg, info);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004735
Johannes Berg3b858752009-03-12 09:55:09 +01004736 nla_put_failure:
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004737 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01004738 out:
Yuri Ershovd080e272010-06-29 15:08:07 +04004739 nlmsg_free(msg);
Johannes Berg4c476992010-10-04 21:36:35 +02004740 return -ENOBUFS;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004741}
4742
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004743static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004744 [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
4745 [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
4746 [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
4747 [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
4748 [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
4749 [NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
Javier Cardona45904f22010-12-03 09:20:40 +01004750 [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004751 [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
Javier Cardonad299a1f2012-03-31 11:31:33 -07004752 [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004753 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
4754 [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
4755 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
4756 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
4757 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
Thomas Pedersendca7e942011-11-24 17:15:24 -08004758 [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004759 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
Javier Cardona699403d2011-08-09 16:45:09 -07004760 [NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
Javier Cardona0507e152011-08-09 16:45:10 -07004761 [NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
Javier Cardona16dd7262011-08-09 16:45:11 -07004762 [NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08004763 [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004764 [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
4765 [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004766 [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
4767 [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004768 [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004769 [NL80211_MESHCONF_POWER_MODE] = { .type = NLA_U32 },
4770 [NL80211_MESHCONF_AWAKE_WINDOW] = { .type = NLA_U16 },
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004771 [NL80211_MESHCONF_PLINK_TIMEOUT] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004772};
4773
Javier Cardonac80d5452010-12-16 17:37:49 -08004774static const struct nla_policy
4775 nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
Javier Cardonad299a1f2012-03-31 11:31:33 -07004776 [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
Javier Cardonac80d5452010-12-16 17:37:49 -08004777 [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
4778 [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
Javier Cardona15d5dda2011-04-07 15:08:28 -07004779 [NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
Colleen Twitty6e16d902013-05-08 11:45:59 -07004780 [NL80211_MESH_SETUP_AUTH_PROTOCOL] = { .type = NLA_U8 },
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004781 [NL80211_MESH_SETUP_USERSPACE_MPM] = { .type = NLA_FLAG },
Javier Cardona581a8b02011-04-07 15:08:27 -07004782 [NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004783 .len = IEEE80211_MAX_DATA_LEN },
Javier Cardonab130e5c2011-05-03 16:57:07 -07004784 [NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
Javier Cardonac80d5452010-12-16 17:37:49 -08004785};
4786
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004787static int nl80211_parse_mesh_config(struct genl_info *info,
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004788 struct mesh_config *cfg,
4789 u32 *mask_out)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004790{
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004791 struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004792 u32 mask = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004793
Marco Porschea54fba2013-01-07 16:04:48 +01004794#define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
4795do { \
4796 if (tb[attr]) { \
4797 if (fn(tb[attr]) < min || fn(tb[attr]) > max) \
4798 return -EINVAL; \
4799 cfg->param = fn(tb[attr]); \
4800 mask |= (1 << (attr - 1)); \
4801 } \
4802} while (0)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004803
4804
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004805 if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004806 return -EINVAL;
4807 if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004808 info->attrs[NL80211_ATTR_MESH_CONFIG],
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004809 nl80211_meshconf_params_policy))
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004810 return -EINVAL;
4811
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004812 /* This makes sure that there aren't more than 32 mesh config
4813 * parameters (otherwise our bitfield scheme would not work.) */
4814 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);
4815
4816 /* Fill in the params struct */
Marco Porschea54fba2013-01-07 16:04:48 +01004817 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004818 mask, NL80211_MESHCONF_RETRY_TIMEOUT,
4819 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004820 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004821 mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4822 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004823 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004824 mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
4825 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004826 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004827 mask, NL80211_MESHCONF_MAX_PEER_LINKS,
4828 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004829 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004830 mask, NL80211_MESHCONF_MAX_RETRIES,
4831 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004832 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004833 mask, NL80211_MESHCONF_TTL, nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004834 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004835 mask, NL80211_MESHCONF_ELEMENT_TTL,
4836 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004837 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004838 mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4839 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004840 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor,
4841 1, 255, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004842 NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4843 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004844 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004845 mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4846 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004847 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004848 mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
4849 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004850 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004851 mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4852 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004853 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
4854 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004855 NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4856 nla_get_u32);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004857 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01004858 1, 65535, mask,
4859 NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004860 nla_get_u16);
Thomas Pedersendca7e942011-11-24 17:15:24 -08004861 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01004862 1, 65535, mask,
4863 NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004864 nla_get_u16);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004865 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004866 dot11MeshHWMPnetDiameterTraversalTime,
4867 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004868 NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4869 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004870 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, 0, 4,
4871 mask, NL80211_MESHCONF_HWMP_ROOTMODE,
4872 nla_get_u8);
4873 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, 1, 65535,
4874 mask, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004875 nla_get_u16);
Rui Paulo63c57232009-11-09 23:46:57 +00004876 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004877 dot11MeshGateAnnouncementProtocol, 0, 1,
4878 mask, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004879 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004880 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004881 mask, NL80211_MESHCONF_FORWARDING,
4882 nla_get_u8);
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08004883 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, -255, 0,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004884 mask, NL80211_MESHCONF_RSSI_THRESHOLD,
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08004885 nla_get_s32);
Marco Porschea54fba2013-01-07 16:04:48 +01004886 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004887 mask, NL80211_MESHCONF_HT_OPMODE,
4888 nla_get_u16);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004889 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
Marco Porschea54fba2013-01-07 16:04:48 +01004890 1, 65535, mask,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004891 NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4892 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004893 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, 1, 65535,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004894 mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
4895 nla_get_u16);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004896 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004897 dot11MeshHWMPconfirmationInterval,
4898 1, 65535, mask,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004899 NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
4900 nla_get_u16);
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004901 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, power_mode,
4902 NL80211_MESH_POWER_ACTIVE,
4903 NL80211_MESH_POWER_MAX,
4904 mask, NL80211_MESHCONF_POWER_MODE,
4905 nla_get_u32);
4906 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshAwakeWindowDuration,
4907 0, 65535, mask,
4908 NL80211_MESHCONF_AWAKE_WINDOW, nla_get_u16);
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004909 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, plink_timeout, 1, 0xffffffff,
4910 mask, NL80211_MESHCONF_PLINK_TIMEOUT,
4911 nla_get_u32);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004912 if (mask_out)
4913 *mask_out = mask;
Javier Cardonac80d5452010-12-16 17:37:49 -08004914
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004915 return 0;
4916
4917#undef FILL_IN_MESH_PARAM_IF_SET
4918}
4919
Javier Cardonac80d5452010-12-16 17:37:49 -08004920static int nl80211_parse_mesh_setup(struct genl_info *info,
4921 struct mesh_setup *setup)
4922{
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004923 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Javier Cardonac80d5452010-12-16 17:37:49 -08004924 struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1];
4925
4926 if (!info->attrs[NL80211_ATTR_MESH_SETUP])
4927 return -EINVAL;
4928 if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX,
4929 info->attrs[NL80211_ATTR_MESH_SETUP],
4930 nl80211_mesh_setup_params_policy))
4931 return -EINVAL;
4932
Javier Cardonad299a1f2012-03-31 11:31:33 -07004933 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])
4934 setup->sync_method =
4935 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ?
4936 IEEE80211_SYNC_METHOD_VENDOR :
4937 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET;
4938
Javier Cardonac80d5452010-12-16 17:37:49 -08004939 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])
4940 setup->path_sel_proto =
4941 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ?
4942 IEEE80211_PATH_PROTOCOL_VENDOR :
4943 IEEE80211_PATH_PROTOCOL_HWMP;
4944
4945 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])
4946 setup->path_metric =
4947 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ?
4948 IEEE80211_PATH_METRIC_VENDOR :
4949 IEEE80211_PATH_METRIC_AIRTIME;
4950
Javier Cardona581a8b02011-04-07 15:08:27 -07004951
4952 if (tb[NL80211_MESH_SETUP_IE]) {
Javier Cardonac80d5452010-12-16 17:37:49 -08004953 struct nlattr *ieattr =
Javier Cardona581a8b02011-04-07 15:08:27 -07004954 tb[NL80211_MESH_SETUP_IE];
Javier Cardonac80d5452010-12-16 17:37:49 -08004955 if (!is_valid_ie_attr(ieattr))
4956 return -EINVAL;
Javier Cardona581a8b02011-04-07 15:08:27 -07004957 setup->ie = nla_data(ieattr);
4958 setup->ie_len = nla_len(ieattr);
Javier Cardonac80d5452010-12-16 17:37:49 -08004959 }
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004960 if (tb[NL80211_MESH_SETUP_USERSPACE_MPM] &&
4961 !(rdev->wiphy.features & NL80211_FEATURE_USERSPACE_MPM))
4962 return -EINVAL;
4963 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]);
Javier Cardonab130e5c2011-05-03 16:57:07 -07004964 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
4965 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004966 if (setup->is_secure)
4967 setup->user_mpm = true;
Javier Cardonac80d5452010-12-16 17:37:49 -08004968
Colleen Twitty6e16d902013-05-08 11:45:59 -07004969 if (tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]) {
4970 if (!setup->user_mpm)
4971 return -EINVAL;
4972 setup->auth_id =
4973 nla_get_u8(tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]);
4974 }
4975
Javier Cardonac80d5452010-12-16 17:37:49 -08004976 return 0;
4977}
4978
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004979static int nl80211_update_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004980 struct genl_info *info)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004981{
4982 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4983 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004984 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004985 struct mesh_config cfg;
4986 u32 mask;
4987 int err;
4988
Johannes Berg29cbe682010-12-03 09:20:44 +01004989 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4990 return -EOPNOTSUPP;
4991
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004992 if (!rdev->ops->update_mesh_config)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004993 return -EOPNOTSUPP;
4994
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004995 err = nl80211_parse_mesh_config(info, &cfg, &mask);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004996 if (err)
4997 return err;
4998
Johannes Berg29cbe682010-12-03 09:20:44 +01004999 wdev_lock(wdev);
5000 if (!wdev->mesh_id_len)
5001 err = -ENOLINK;
5002
5003 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03005004 err = rdev_update_mesh_config(rdev, dev, mask, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01005005
5006 wdev_unlock(wdev);
5007
5008 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07005009}
5010
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005011static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
5012{
Johannes Berg458f4f92012-12-06 15:47:38 +01005013 const struct ieee80211_regdomain *regdom;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005014 struct sk_buff *msg;
5015 void *hdr = NULL;
5016 struct nlattr *nl_reg_rules;
5017 unsigned int i;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005018
5019 if (!cfg80211_regdomain)
Johannes Berg5fe231e2013-05-08 21:45:15 +02005020 return -EINVAL;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005021
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07005022 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005023 if (!msg)
5024 return -ENOBUFS;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005025
Eric W. Biederman15e47302012-09-07 20:12:54 +00005026 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005027 NL80211_CMD_GET_REG);
5028 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01005029 goto put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005030
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07005031 if (reg_last_request_cell_base() &&
5032 nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
5033 NL80211_USER_REG_HINT_CELL_BASE))
5034 goto nla_put_failure;
5035
Johannes Berg458f4f92012-12-06 15:47:38 +01005036 rcu_read_lock();
5037 regdom = rcu_dereference(cfg80211_regdomain);
5038
5039 if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, regdom->alpha2) ||
5040 (regdom->dfs_region &&
5041 nla_put_u8(msg, NL80211_ATTR_DFS_REGION, regdom->dfs_region)))
5042 goto nla_put_failure_rcu;
5043
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005044 nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
5045 if (!nl_reg_rules)
Johannes Berg458f4f92012-12-06 15:47:38 +01005046 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005047
Johannes Berg458f4f92012-12-06 15:47:38 +01005048 for (i = 0; i < regdom->n_reg_rules; i++) {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005049 struct nlattr *nl_reg_rule;
5050 const struct ieee80211_reg_rule *reg_rule;
5051 const struct ieee80211_freq_range *freq_range;
5052 const struct ieee80211_power_rule *power_rule;
5053
Johannes Berg458f4f92012-12-06 15:47:38 +01005054 reg_rule = &regdom->reg_rules[i];
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005055 freq_range = &reg_rule->freq_range;
5056 power_rule = &reg_rule->power_rule;
5057
5058 nl_reg_rule = nla_nest_start(msg, i);
5059 if (!nl_reg_rule)
Johannes Berg458f4f92012-12-06 15:47:38 +01005060 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005061
David S. Miller9360ffd2012-03-29 04:41:26 -04005062 if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS,
5063 reg_rule->flags) ||
5064 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START,
5065 freq_range->start_freq_khz) ||
5066 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END,
5067 freq_range->end_freq_khz) ||
5068 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
5069 freq_range->max_bandwidth_khz) ||
5070 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
5071 power_rule->max_antenna_gain) ||
5072 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
5073 power_rule->max_eirp))
Johannes Berg458f4f92012-12-06 15:47:38 +01005074 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005075
5076 nla_nest_end(msg, nl_reg_rule);
5077 }
Johannes Berg458f4f92012-12-06 15:47:38 +01005078 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005079
5080 nla_nest_end(msg, nl_reg_rules);
5081
5082 genlmsg_end(msg, hdr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005083 return genlmsg_reply(msg, info);
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005084
Johannes Berg458f4f92012-12-06 15:47:38 +01005085nla_put_failure_rcu:
5086 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005087nla_put_failure:
5088 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01005089put_failure:
Yuri Ershovd080e272010-06-29 15:08:07 +04005090 nlmsg_free(msg);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005091 return -EMSGSIZE;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005092}
5093
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005094static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
5095{
5096 struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
5097 struct nlattr *nl_reg_rule;
5098 char *alpha2 = NULL;
5099 int rem_reg_rules = 0, r = 0;
5100 u32 num_rules = 0, rule_idx = 0, size_of_regd;
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005101 u8 dfs_region = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005102 struct ieee80211_regdomain *rd = NULL;
5103
5104 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
5105 return -EINVAL;
5106
5107 if (!info->attrs[NL80211_ATTR_REG_RULES])
5108 return -EINVAL;
5109
5110 alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
5111
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005112 if (info->attrs[NL80211_ATTR_DFS_REGION])
5113 dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);
5114
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005115 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005116 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005117 num_rules++;
5118 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
Luis R. Rodriguez4776c6e2009-05-13 17:04:39 -04005119 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005120 }
5121
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005122 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg1a919312012-12-03 17:21:11 +01005123 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005124
5125 rd = kzalloc(size_of_regd, GFP_KERNEL);
Johannes Berg6913b492012-12-04 00:48:59 +01005126 if (!rd)
5127 return -ENOMEM;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005128
5129 rd->n_reg_rules = num_rules;
5130 rd->alpha2[0] = alpha2[0];
5131 rd->alpha2[1] = alpha2[1];
5132
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005133 /*
5134 * Disable DFS master mode if the DFS region was
5135 * not supported or known on this kernel.
5136 */
5137 if (reg_supported_dfs_region(dfs_region))
5138 rd->dfs_region = dfs_region;
5139
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005140 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005141 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005142 nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
Johannes Berg1a919312012-12-03 17:21:11 +01005143 nla_data(nl_reg_rule), nla_len(nl_reg_rule),
5144 reg_rule_policy);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005145 r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
5146 if (r)
5147 goto bad_reg;
5148
5149 rule_idx++;
5150
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005151 if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
5152 r = -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005153 goto bad_reg;
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005154 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005155 }
5156
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005157 r = set_regdom(rd);
Johannes Berg6913b492012-12-04 00:48:59 +01005158 /* set_regdom took ownership */
Johannes Berg1a919312012-12-03 17:21:11 +01005159 rd = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005160
Johannes Bergd2372b32008-10-24 20:32:20 +02005161 bad_reg:
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005162 kfree(rd);
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005163 return r;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005164}
5165
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005166static int validate_scan_freqs(struct nlattr *freqs)
5167{
5168 struct nlattr *attr1, *attr2;
5169 int n_channels = 0, tmp1, tmp2;
5170
5171 nla_for_each_nested(attr1, freqs, tmp1) {
5172 n_channels++;
5173 /*
5174 * Some hardware has a limited channel list for
5175 * scanning, and it is pretty much nonsensical
5176 * to scan for a channel twice, so disallow that
5177 * and don't require drivers to check that the
5178 * channel list they get isn't longer than what
5179 * they can scan, as long as they can scan all
5180 * the channels they registered at once.
5181 */
5182 nla_for_each_nested(attr2, freqs, tmp2)
5183 if (attr1 != attr2 &&
5184 nla_get_u32(attr1) == nla_get_u32(attr2))
5185 return 0;
5186 }
5187
5188 return n_channels;
5189}
5190
Johannes Berg2a519312009-02-10 21:25:55 +01005191static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
5192{
Johannes Berg4c476992010-10-04 21:36:35 +02005193 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfd014282012-06-18 19:17:03 +02005194 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2a519312009-02-10 21:25:55 +01005195 struct cfg80211_scan_request *request;
Johannes Berg2a519312009-02-10 21:25:55 +01005196 struct nlattr *attr;
5197 struct wiphy *wiphy;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005198 int err, tmp, n_ssids = 0, n_channels, i;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005199 size_t ie_len;
Johannes Berg2a519312009-02-10 21:25:55 +01005200
Johannes Bergf4a11bb2009-03-27 12:40:28 +01005201 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5202 return -EINVAL;
5203
Johannes Berg79c97e92009-07-07 03:56:12 +02005204 wiphy = &rdev->wiphy;
Johannes Berg2a519312009-02-10 21:25:55 +01005205
Johannes Berg4c476992010-10-04 21:36:35 +02005206 if (!rdev->ops->scan)
5207 return -EOPNOTSUPP;
Johannes Berg2a519312009-02-10 21:25:55 +01005208
Johannes Bergf9f47522013-03-19 15:04:07 +01005209 if (rdev->scan_req) {
5210 err = -EBUSY;
5211 goto unlock;
5212 }
Johannes Berg2a519312009-02-10 21:25:55 +01005213
5214 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005215 n_channels = validate_scan_freqs(
5216 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
Johannes Bergf9f47522013-03-19 15:04:07 +01005217 if (!n_channels) {
5218 err = -EINVAL;
5219 goto unlock;
5220 }
Johannes Berg2a519312009-02-10 21:25:55 +01005221 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005222 enum ieee80211_band band;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005223 n_channels = 0;
5224
Johannes Berg2a519312009-02-10 21:25:55 +01005225 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
5226 if (wiphy->bands[band])
5227 n_channels += wiphy->bands[band]->n_channels;
5228 }
5229
5230 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5231 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
5232 n_ssids++;
5233
Johannes Bergf9f47522013-03-19 15:04:07 +01005234 if (n_ssids > wiphy->max_scan_ssids) {
5235 err = -EINVAL;
5236 goto unlock;
5237 }
Johannes Berg2a519312009-02-10 21:25:55 +01005238
Jouni Malinen70692ad2009-02-16 19:39:13 +02005239 if (info->attrs[NL80211_ATTR_IE])
5240 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5241 else
5242 ie_len = 0;
5243
Johannes Bergf9f47522013-03-19 15:04:07 +01005244 if (ie_len > wiphy->max_scan_ie_len) {
5245 err = -EINVAL;
5246 goto unlock;
5247 }
Johannes Berg18a83652009-03-31 12:12:05 +02005248
Johannes Berg2a519312009-02-10 21:25:55 +01005249 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005250 + sizeof(*request->ssids) * n_ssids
5251 + sizeof(*request->channels) * n_channels
Jouni Malinen70692ad2009-02-16 19:39:13 +02005252 + ie_len, GFP_KERNEL);
Johannes Bergf9f47522013-03-19 15:04:07 +01005253 if (!request) {
5254 err = -ENOMEM;
5255 goto unlock;
5256 }
Johannes Berg2a519312009-02-10 21:25:55 +01005257
Johannes Berg2a519312009-02-10 21:25:55 +01005258 if (n_ssids)
Johannes Berg5ba63532009-08-07 17:54:07 +02005259 request->ssids = (void *)&request->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01005260 request->n_ssids = n_ssids;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005261 if (ie_len) {
5262 if (request->ssids)
5263 request->ie = (void *)(request->ssids + n_ssids);
5264 else
5265 request->ie = (void *)(request->channels + n_channels);
5266 }
Johannes Berg2a519312009-02-10 21:25:55 +01005267
Johannes Berg584991d2009-11-02 13:32:03 +01005268 i = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005269 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5270 /* user specified, bail out if channel not found */
Johannes Berg2a519312009-02-10 21:25:55 +01005271 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
Johannes Berg584991d2009-11-02 13:32:03 +01005272 struct ieee80211_channel *chan;
5273
5274 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5275
5276 if (!chan) {
Johannes Berg2a519312009-02-10 21:25:55 +01005277 err = -EINVAL;
5278 goto out_free;
5279 }
Johannes Berg584991d2009-11-02 13:32:03 +01005280
5281 /* ignore disabled channels */
5282 if (chan->flags & IEEE80211_CHAN_DISABLED)
5283 continue;
5284
5285 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005286 i++;
5287 }
5288 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005289 enum ieee80211_band band;
5290
Johannes Berg2a519312009-02-10 21:25:55 +01005291 /* all channels */
Johannes Berg2a519312009-02-10 21:25:55 +01005292 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5293 int j;
5294 if (!wiphy->bands[band])
5295 continue;
5296 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01005297 struct ieee80211_channel *chan;
5298
5299 chan = &wiphy->bands[band]->channels[j];
5300
5301 if (chan->flags & IEEE80211_CHAN_DISABLED)
5302 continue;
5303
5304 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005305 i++;
5306 }
5307 }
5308 }
5309
Johannes Berg584991d2009-11-02 13:32:03 +01005310 if (!i) {
5311 err = -EINVAL;
5312 goto out_free;
5313 }
5314
5315 request->n_channels = i;
5316
Johannes Berg2a519312009-02-10 21:25:55 +01005317 i = 0;
5318 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5319 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005320 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Johannes Berg2a519312009-02-10 21:25:55 +01005321 err = -EINVAL;
5322 goto out_free;
5323 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005324 request->ssids[i].ssid_len = nla_len(attr);
Johannes Berg2a519312009-02-10 21:25:55 +01005325 memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
Johannes Berg2a519312009-02-10 21:25:55 +01005326 i++;
5327 }
5328 }
5329
Jouni Malinen70692ad2009-02-16 19:39:13 +02005330 if (info->attrs[NL80211_ATTR_IE]) {
5331 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Johannes Bergde95a542009-04-01 11:58:36 +02005332 memcpy((void *)request->ie,
5333 nla_data(info->attrs[NL80211_ATTR_IE]),
Jouni Malinen70692ad2009-02-16 19:39:13 +02005334 request->ie_len);
5335 }
5336
Johannes Berg34850ab2011-07-18 18:08:35 +02005337 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02005338 if (wiphy->bands[i])
5339 request->rates[i] =
5340 (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02005341
5342 if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) {
5343 nla_for_each_nested(attr,
5344 info->attrs[NL80211_ATTR_SCAN_SUPP_RATES],
5345 tmp) {
5346 enum ieee80211_band band = nla_type(attr);
5347
Dan Carpenter84404622011-07-29 11:52:18 +03005348 if (band < 0 || band >= IEEE80211_NUM_BANDS) {
Johannes Berg34850ab2011-07-18 18:08:35 +02005349 err = -EINVAL;
5350 goto out_free;
5351 }
5352 err = ieee80211_get_ratemask(wiphy->bands[band],
5353 nla_data(attr),
5354 nla_len(attr),
5355 &request->rates[band]);
5356 if (err)
5357 goto out_free;
5358 }
5359 }
5360
Sam Leffler46856bb2012-10-11 21:03:32 -07005361 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005362 request->flags = nla_get_u32(
5363 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Sam Leffler15d60302012-10-11 21:03:34 -07005364 if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5365 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
5366 ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
5367 !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005368 err = -EOPNOTSUPP;
5369 goto out_free;
5370 }
5371 }
Sam Lefflered4737712012-10-11 21:03:31 -07005372
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05305373 request->no_cck =
5374 nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
5375
Johannes Bergfd014282012-06-18 19:17:03 +02005376 request->wdev = wdev;
Johannes Berg79c97e92009-07-07 03:56:12 +02005377 request->wiphy = &rdev->wiphy;
Sam Leffler15d60302012-10-11 21:03:34 -07005378 request->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01005379
Johannes Berg79c97e92009-07-07 03:56:12 +02005380 rdev->scan_req = request;
Hila Gonene35e4d22012-06-27 17:19:42 +03005381 err = rdev_scan(rdev, request);
Johannes Berg2a519312009-02-10 21:25:55 +01005382
Johannes Berg463d0182009-07-14 00:33:35 +02005383 if (!err) {
Johannes Bergfd014282012-06-18 19:17:03 +02005384 nl80211_send_scan_start(rdev, wdev);
5385 if (wdev->netdev)
5386 dev_hold(wdev->netdev);
Johannes Berg4c476992010-10-04 21:36:35 +02005387 } else {
Johannes Berg2a519312009-02-10 21:25:55 +01005388 out_free:
Johannes Berg79c97e92009-07-07 03:56:12 +02005389 rdev->scan_req = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01005390 kfree(request);
5391 }
Johannes Berg3b858752009-03-12 09:55:09 +01005392
Johannes Bergf9f47522013-03-19 15:04:07 +01005393 unlock:
Johannes Berg2a519312009-02-10 21:25:55 +01005394 return err;
5395}
5396
Luciano Coelho807f8a82011-05-11 17:09:35 +03005397static int nl80211_start_sched_scan(struct sk_buff *skb,
5398 struct genl_info *info)
5399{
5400 struct cfg80211_sched_scan_request *request;
5401 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5402 struct net_device *dev = info->user_ptr[1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005403 struct nlattr *attr;
5404 struct wiphy *wiphy;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005405 int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005406 u32 interval;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005407 enum ieee80211_band band;
5408 size_t ie_len;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005409 struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005410
5411 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5412 !rdev->ops->sched_scan_start)
5413 return -EOPNOTSUPP;
5414
5415 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5416 return -EINVAL;
5417
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005418 if (!info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
5419 return -EINVAL;
5420
5421 interval = nla_get_u32(info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]);
5422 if (interval == 0)
5423 return -EINVAL;
5424
Luciano Coelho807f8a82011-05-11 17:09:35 +03005425 wiphy = &rdev->wiphy;
5426
5427 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5428 n_channels = validate_scan_freqs(
5429 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
5430 if (!n_channels)
5431 return -EINVAL;
5432 } else {
5433 n_channels = 0;
5434
5435 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
5436 if (wiphy->bands[band])
5437 n_channels += wiphy->bands[band]->n_channels;
5438 }
5439
5440 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5441 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5442 tmp)
5443 n_ssids++;
5444
Luciano Coelho93b6aa62011-07-13 14:57:28 +03005445 if (n_ssids > wiphy->max_sched_scan_ssids)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005446 return -EINVAL;
5447
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005448 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH])
5449 nla_for_each_nested(attr,
5450 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5451 tmp)
5452 n_match_sets++;
5453
5454 if (n_match_sets > wiphy->max_match_sets)
5455 return -EINVAL;
5456
Luciano Coelho807f8a82011-05-11 17:09:35 +03005457 if (info->attrs[NL80211_ATTR_IE])
5458 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5459 else
5460 ie_len = 0;
5461
Luciano Coelho5a865ba2011-07-13 14:57:29 +03005462 if (ie_len > wiphy->max_sched_scan_ie_len)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005463 return -EINVAL;
5464
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005465 if (rdev->sched_scan_req) {
5466 err = -EINPROGRESS;
5467 goto out;
5468 }
5469
Luciano Coelho807f8a82011-05-11 17:09:35 +03005470 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005471 + sizeof(*request->ssids) * n_ssids
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005472 + sizeof(*request->match_sets) * n_match_sets
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005473 + sizeof(*request->channels) * n_channels
Luciano Coelho807f8a82011-05-11 17:09:35 +03005474 + ie_len, GFP_KERNEL);
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005475 if (!request) {
5476 err = -ENOMEM;
5477 goto out;
5478 }
Luciano Coelho807f8a82011-05-11 17:09:35 +03005479
5480 if (n_ssids)
5481 request->ssids = (void *)&request->channels[n_channels];
5482 request->n_ssids = n_ssids;
5483 if (ie_len) {
5484 if (request->ssids)
5485 request->ie = (void *)(request->ssids + n_ssids);
5486 else
5487 request->ie = (void *)(request->channels + n_channels);
5488 }
5489
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005490 if (n_match_sets) {
5491 if (request->ie)
5492 request->match_sets = (void *)(request->ie + ie_len);
5493 else if (request->ssids)
5494 request->match_sets =
5495 (void *)(request->ssids + n_ssids);
5496 else
5497 request->match_sets =
5498 (void *)(request->channels + n_channels);
5499 }
5500 request->n_match_sets = n_match_sets;
5501
Luciano Coelho807f8a82011-05-11 17:09:35 +03005502 i = 0;
5503 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5504 /* user specified, bail out if channel not found */
5505 nla_for_each_nested(attr,
5506 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES],
5507 tmp) {
5508 struct ieee80211_channel *chan;
5509
5510 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5511
5512 if (!chan) {
5513 err = -EINVAL;
5514 goto out_free;
5515 }
5516
5517 /* ignore disabled channels */
5518 if (chan->flags & IEEE80211_CHAN_DISABLED)
5519 continue;
5520
5521 request->channels[i] = chan;
5522 i++;
5523 }
5524 } else {
5525 /* all channels */
5526 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5527 int j;
5528 if (!wiphy->bands[band])
5529 continue;
5530 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
5531 struct ieee80211_channel *chan;
5532
5533 chan = &wiphy->bands[band]->channels[j];
5534
5535 if (chan->flags & IEEE80211_CHAN_DISABLED)
5536 continue;
5537
5538 request->channels[i] = chan;
5539 i++;
5540 }
5541 }
5542 }
5543
5544 if (!i) {
5545 err = -EINVAL;
5546 goto out_free;
5547 }
5548
5549 request->n_channels = i;
5550
5551 i = 0;
5552 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5553 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5554 tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005555 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03005556 err = -EINVAL;
5557 goto out_free;
5558 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005559 request->ssids[i].ssid_len = nla_len(attr);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005560 memcpy(request->ssids[i].ssid, nla_data(attr),
5561 nla_len(attr));
Luciano Coelho807f8a82011-05-11 17:09:35 +03005562 i++;
5563 }
5564 }
5565
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005566 i = 0;
5567 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
5568 nla_for_each_nested(attr,
5569 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5570 tmp) {
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005571 struct nlattr *ssid, *rssi;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005572
5573 nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
5574 nla_data(attr), nla_len(attr),
5575 nl80211_match_policy);
Johannes Berg4a4ab0d2012-06-13 11:17:11 +02005576 ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005577 if (ssid) {
5578 if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) {
5579 err = -EINVAL;
5580 goto out_free;
5581 }
5582 memcpy(request->match_sets[i].ssid.ssid,
5583 nla_data(ssid), nla_len(ssid));
5584 request->match_sets[i].ssid.ssid_len =
5585 nla_len(ssid);
5586 }
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005587 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
5588 if (rssi)
5589 request->rssi_thold = nla_get_u32(rssi);
5590 else
5591 request->rssi_thold =
5592 NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005593 i++;
5594 }
5595 }
5596
Luciano Coelho807f8a82011-05-11 17:09:35 +03005597 if (info->attrs[NL80211_ATTR_IE]) {
5598 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5599 memcpy((void *)request->ie,
5600 nla_data(info->attrs[NL80211_ATTR_IE]),
5601 request->ie_len);
5602 }
5603
Sam Leffler46856bb2012-10-11 21:03:32 -07005604 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005605 request->flags = nla_get_u32(
5606 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Sam Leffler15d60302012-10-11 21:03:34 -07005607 if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5608 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
5609 ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
5610 !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005611 err = -EOPNOTSUPP;
5612 goto out_free;
5613 }
5614 }
Sam Lefflered4737712012-10-11 21:03:31 -07005615
Luciano Coelho807f8a82011-05-11 17:09:35 +03005616 request->dev = dev;
5617 request->wiphy = &rdev->wiphy;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005618 request->interval = interval;
Sam Leffler15d60302012-10-11 21:03:34 -07005619 request->scan_start = jiffies;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005620
Hila Gonene35e4d22012-06-27 17:19:42 +03005621 err = rdev_sched_scan_start(rdev, dev, request);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005622 if (!err) {
5623 rdev->sched_scan_req = request;
5624 nl80211_send_sched_scan(rdev, dev,
5625 NL80211_CMD_START_SCHED_SCAN);
5626 goto out;
5627 }
5628
5629out_free:
5630 kfree(request);
5631out:
5632 return err;
5633}
5634
5635static int nl80211_stop_sched_scan(struct sk_buff *skb,
5636 struct genl_info *info)
5637{
5638 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5639
5640 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5641 !rdev->ops->sched_scan_stop)
5642 return -EOPNOTSUPP;
5643
Johannes Berg5fe231e2013-05-08 21:45:15 +02005644 return __cfg80211_stop_sched_scan(rdev, false);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005645}
5646
Simon Wunderlich04f39042013-02-08 18:16:19 +01005647static int nl80211_start_radar_detection(struct sk_buff *skb,
5648 struct genl_info *info)
5649{
5650 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5651 struct net_device *dev = info->user_ptr[1];
5652 struct wireless_dev *wdev = dev->ieee80211_ptr;
5653 struct cfg80211_chan_def chandef;
5654 int err;
5655
5656 err = nl80211_parse_chandef(rdev, info, &chandef);
5657 if (err)
5658 return err;
5659
Simon Wunderlichff311bc2013-09-03 19:43:18 +02005660 if (netif_carrier_ok(dev))
5661 return -EBUSY;
5662
Simon Wunderlich04f39042013-02-08 18:16:19 +01005663 if (wdev->cac_started)
5664 return -EBUSY;
5665
5666 err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef);
5667 if (err < 0)
5668 return err;
5669
5670 if (err == 0)
5671 return -EINVAL;
5672
5673 if (chandef.chan->dfs_state != NL80211_DFS_USABLE)
5674 return -EINVAL;
5675
5676 if (!rdev->ops->start_radar_detection)
5677 return -EOPNOTSUPP;
5678
Simon Wunderlich04f39042013-02-08 18:16:19 +01005679 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5680 chandef.chan, CHAN_MODE_SHARED,
5681 BIT(chandef.width));
5682 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02005683 return err;
Simon Wunderlich04f39042013-02-08 18:16:19 +01005684
5685 err = rdev->ops->start_radar_detection(&rdev->wiphy, dev, &chandef);
5686 if (!err) {
5687 wdev->channel = chandef.chan;
5688 wdev->cac_started = true;
5689 wdev->cac_start_time = jiffies;
5690 }
Simon Wunderlich04f39042013-02-08 18:16:19 +01005691 return err;
5692}
5693
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005694static int nl80211_channel_switch(struct sk_buff *skb, struct genl_info *info)
5695{
5696 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5697 struct net_device *dev = info->user_ptr[1];
5698 struct wireless_dev *wdev = dev->ieee80211_ptr;
5699 struct cfg80211_csa_settings params;
5700 /* csa_attrs is defined static to avoid waste of stack size - this
5701 * function is called under RTNL lock, so this should not be a problem.
5702 */
5703 static struct nlattr *csa_attrs[NL80211_ATTR_MAX+1];
5704 u8 radar_detect_width = 0;
5705 int err;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005706 bool need_new_beacon = false;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005707
5708 if (!rdev->ops->channel_switch ||
5709 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH))
5710 return -EOPNOTSUPP;
5711
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005712 switch (dev->ieee80211_ptr->iftype) {
5713 case NL80211_IFTYPE_AP:
5714 case NL80211_IFTYPE_P2P_GO:
5715 need_new_beacon = true;
5716
5717 /* useless if AP is not running */
5718 if (!wdev->beacon_interval)
5719 return -EINVAL;
5720 break;
5721 case NL80211_IFTYPE_ADHOC:
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07005722 case NL80211_IFTYPE_MESH_POINT:
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005723 break;
5724 default:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005725 return -EOPNOTSUPP;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005726 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005727
5728 memset(&params, 0, sizeof(params));
5729
5730 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
5731 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
5732 return -EINVAL;
5733
5734 /* only important for AP, IBSS and mesh create IEs internally */
Andrei Otcheretianskid0a361a2013-10-17 10:52:17 +02005735 if (need_new_beacon && !info->attrs[NL80211_ATTR_CSA_IES])
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005736 return -EINVAL;
5737
5738 params.count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5739
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005740 if (!need_new_beacon)
5741 goto skip_beacons;
5742
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005743 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5744 if (err)
5745 return err;
5746
5747 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5748 info->attrs[NL80211_ATTR_CSA_IES],
5749 nl80211_policy);
5750 if (err)
5751 return err;
5752
5753 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5754 if (err)
5755 return err;
5756
5757 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5758 return -EINVAL;
5759
5760 params.counter_offset_beacon =
5761 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5762 if (params.counter_offset_beacon >= params.beacon_csa.tail_len)
5763 return -EINVAL;
5764
5765 /* sanity check - counters should be the same */
5766 if (params.beacon_csa.tail[params.counter_offset_beacon] !=
5767 params.count)
5768 return -EINVAL;
5769
5770 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
5771 params.counter_offset_presp =
5772 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
5773 if (params.counter_offset_presp >=
5774 params.beacon_csa.probe_resp_len)
5775 return -EINVAL;
5776
5777 if (params.beacon_csa.probe_resp[params.counter_offset_presp] !=
5778 params.count)
5779 return -EINVAL;
5780 }
5781
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005782skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005783 err = nl80211_parse_chandef(rdev, info, &params.chandef);
5784 if (err)
5785 return err;
5786
5787 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
5788 return -EINVAL;
5789
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005790 if (dev->ieee80211_ptr->iftype == NL80211_IFTYPE_AP ||
Simon Wunderlich5336fa82013-10-07 18:41:05 +02005791 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_P2P_GO ||
5792 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_ADHOC) {
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005793 err = cfg80211_chandef_dfs_required(wdev->wiphy,
5794 &params.chandef);
5795 if (err < 0) {
5796 return err;
5797 } else if (err) {
5798 radar_detect_width = BIT(params.chandef.width);
5799 params.radar_required = true;
5800 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005801 }
5802
5803 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5804 params.chandef.chan,
5805 CHAN_MODE_SHARED,
5806 radar_detect_width);
5807 if (err)
5808 return err;
5809
5810 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
5811 params.block_tx = true;
5812
5813 return rdev_channel_switch(rdev, dev, &params);
5814}
5815
Johannes Berg9720bb32011-06-21 09:45:33 +02005816static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
5817 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005818 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02005819 struct wireless_dev *wdev,
5820 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01005821{
Johannes Berg48ab9052009-07-10 18:42:31 +02005822 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01005823 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01005824 void *hdr;
5825 struct nlattr *bss;
Johannes Berg8cef2c92013-02-05 16:54:31 +01005826 bool tsf = false;
Johannes Berg48ab9052009-07-10 18:42:31 +02005827
5828 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005829
Eric W. Biederman15e47302012-09-07 20:12:54 +00005830 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005831 NL80211_CMD_NEW_SCAN_RESULTS);
5832 if (!hdr)
5833 return -1;
5834
Johannes Berg9720bb32011-06-21 09:45:33 +02005835 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
5836
Johannes Berg97990a02013-04-19 01:02:55 +02005837 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
5838 goto nla_put_failure;
5839 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04005840 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
5841 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02005842 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
5843 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005844
5845 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
5846 if (!bss)
5847 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04005848 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01005849 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04005850 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01005851
5852 rcu_read_lock();
5853 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005854 if (ies) {
5855 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5856 goto fail_unlock_rcu;
5857 tsf = true;
5858 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
5859 ies->len, ies->data))
5860 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005861 }
5862 ies = rcu_dereference(res->beacon_ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005863 if (ies) {
5864 if (!tsf && nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5865 goto fail_unlock_rcu;
5866 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
5867 ies->len, ies->data))
5868 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005869 }
5870 rcu_read_unlock();
5871
David S. Miller9360ffd2012-03-29 04:41:26 -04005872 if (res->beacon_interval &&
5873 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
5874 goto nla_put_failure;
5875 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
5876 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02005877 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005878 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
5879 jiffies_to_msecs(jiffies - intbss->ts)))
5880 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005881
Johannes Berg77965c92009-02-18 18:45:06 +01005882 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01005883 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04005884 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
5885 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005886 break;
5887 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005888 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
5889 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005890 break;
5891 default:
5892 break;
5893 }
5894
Johannes Berg48ab9052009-07-10 18:42:31 +02005895 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02005896 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02005897 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04005898 if (intbss == wdev->current_bss &&
5899 nla_put_u32(msg, NL80211_BSS_STATUS,
5900 NL80211_BSS_STATUS_ASSOCIATED))
5901 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005902 break;
5903 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005904 if (intbss == wdev->current_bss &&
5905 nla_put_u32(msg, NL80211_BSS_STATUS,
5906 NL80211_BSS_STATUS_IBSS_JOINED))
5907 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005908 break;
5909 default:
5910 break;
5911 }
5912
Johannes Berg2a519312009-02-10 21:25:55 +01005913 nla_nest_end(msg, bss);
5914
5915 return genlmsg_end(msg, hdr);
5916
Johannes Berg8cef2c92013-02-05 16:54:31 +01005917 fail_unlock_rcu:
5918 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01005919 nla_put_failure:
5920 genlmsg_cancel(msg, hdr);
5921 return -EMSGSIZE;
5922}
5923
Johannes Berg97990a02013-04-19 01:02:55 +02005924static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01005925{
Johannes Berg48ab9052009-07-10 18:42:31 +02005926 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01005927 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02005928 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02005929 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005930 int err;
5931
Johannes Berg97990a02013-04-19 01:02:55 +02005932 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02005933 if (err)
5934 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01005935
Johannes Berg48ab9052009-07-10 18:42:31 +02005936 wdev_lock(wdev);
5937 spin_lock_bh(&rdev->bss_lock);
5938 cfg80211_bss_expire(rdev);
5939
Johannes Berg9720bb32011-06-21 09:45:33 +02005940 cb->seq = rdev->bss_generation;
5941
Johannes Berg48ab9052009-07-10 18:42:31 +02005942 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01005943 if (++idx <= start)
5944 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02005945 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01005946 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02005947 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01005948 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02005949 break;
Johannes Berg2a519312009-02-10 21:25:55 +01005950 }
5951 }
5952
Johannes Berg48ab9052009-07-10 18:42:31 +02005953 spin_unlock_bh(&rdev->bss_lock);
5954 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005955
Johannes Berg97990a02013-04-19 01:02:55 +02005956 cb->args[2] = idx;
5957 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005958
Johannes Berg67748892010-10-04 21:14:06 +02005959 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01005960}
5961
Eric W. Biederman15e47302012-09-07 20:12:54 +00005962static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01005963 int flags, struct net_device *dev,
5964 struct survey_info *survey)
5965{
5966 void *hdr;
5967 struct nlattr *infoattr;
5968
Eric W. Biederman15e47302012-09-07 20:12:54 +00005969 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01005970 NL80211_CMD_NEW_SURVEY_RESULTS);
5971 if (!hdr)
5972 return -ENOMEM;
5973
David S. Miller9360ffd2012-03-29 04:41:26 -04005974 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
5975 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005976
5977 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
5978 if (!infoattr)
5979 goto nla_put_failure;
5980
David S. Miller9360ffd2012-03-29 04:41:26 -04005981 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
5982 survey->channel->center_freq))
5983 goto nla_put_failure;
5984
5985 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
5986 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
5987 goto nla_put_failure;
5988 if ((survey->filled & SURVEY_INFO_IN_USE) &&
5989 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
5990 goto nla_put_failure;
5991 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
5992 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
5993 survey->channel_time))
5994 goto nla_put_failure;
5995 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
5996 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
5997 survey->channel_time_busy))
5998 goto nla_put_failure;
5999 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
6000 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
6001 survey->channel_time_ext_busy))
6002 goto nla_put_failure;
6003 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
6004 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
6005 survey->channel_time_rx))
6006 goto nla_put_failure;
6007 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
6008 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
6009 survey->channel_time_tx))
6010 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01006011
6012 nla_nest_end(msg, infoattr);
6013
6014 return genlmsg_end(msg, hdr);
6015
6016 nla_put_failure:
6017 genlmsg_cancel(msg, hdr);
6018 return -EMSGSIZE;
6019}
6020
6021static int nl80211_dump_survey(struct sk_buff *skb,
6022 struct netlink_callback *cb)
6023{
6024 struct survey_info survey;
6025 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02006026 struct wireless_dev *wdev;
6027 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01006028 int res;
6029
Johannes Berg97990a02013-04-19 01:02:55 +02006030 res = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006031 if (res)
6032 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01006033
Johannes Berg97990a02013-04-19 01:02:55 +02006034 if (!wdev->netdev) {
6035 res = -EINVAL;
6036 goto out_err;
6037 }
6038
Holger Schurig61fa7132009-11-11 12:25:40 +01006039 if (!dev->ops->dump_survey) {
6040 res = -EOPNOTSUPP;
6041 goto out_err;
6042 }
6043
6044 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006045 struct ieee80211_channel *chan;
6046
Johannes Berg97990a02013-04-19 01:02:55 +02006047 res = rdev_dump_survey(dev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01006048 if (res == -ENOENT)
6049 break;
6050 if (res)
6051 goto out_err;
6052
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006053 /* Survey without a channel doesn't make sense */
6054 if (!survey.channel) {
6055 res = -EINVAL;
6056 goto out;
6057 }
6058
6059 chan = ieee80211_get_channel(&dev->wiphy,
6060 survey.channel->center_freq);
6061 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
6062 survey_idx++;
6063 continue;
6064 }
6065
Holger Schurig61fa7132009-11-11 12:25:40 +01006066 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006067 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01006068 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02006069 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01006070 goto out;
6071 survey_idx++;
6072 }
6073
6074 out:
Johannes Berg97990a02013-04-19 01:02:55 +02006075 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01006076 res = skb->len;
6077 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02006078 nl80211_finish_wdev_dump(dev);
Holger Schurig61fa7132009-11-11 12:25:40 +01006079 return res;
6080}
6081
Samuel Ortizb23aa672009-07-01 21:26:54 +02006082static bool nl80211_valid_wpa_versions(u32 wpa_versions)
6083{
6084 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
6085 NL80211_WPA_VERSION_2));
6086}
6087
Jouni Malinen636a5d32009-03-19 13:39:22 +02006088static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6089{
Johannes Berg4c476992010-10-04 21:36:35 +02006090 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6091 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006092 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006093 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6094 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006095 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006096 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006097 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006098
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006099 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6100 return -EINVAL;
6101
6102 if (!info->attrs[NL80211_ATTR_MAC])
6103 return -EINVAL;
6104
Jouni Malinen17780922009-03-27 20:52:47 +02006105 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6106 return -EINVAL;
6107
Johannes Berg19957bb2009-07-02 17:20:43 +02006108 if (!info->attrs[NL80211_ATTR_SSID])
6109 return -EINVAL;
6110
6111 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6112 return -EINVAL;
6113
Johannes Bergfffd0932009-07-08 14:22:54 +02006114 err = nl80211_parse_key(info, &key);
6115 if (err)
6116 return err;
6117
6118 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006119 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6120 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006121 if (!key.p.key || !key.p.key_len)
6122 return -EINVAL;
6123 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6124 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6125 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6126 key.p.key_len != WLAN_KEY_LEN_WEP104))
6127 return -EINVAL;
6128 if (key.idx > 4)
6129 return -EINVAL;
6130 } else {
6131 key.p.key_len = 0;
6132 key.p.key = NULL;
6133 }
6134
Johannes Bergafea0b72010-08-10 09:46:42 +02006135 if (key.idx >= 0) {
6136 int i;
6137 bool ok = false;
6138 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6139 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6140 ok = true;
6141 break;
6142 }
6143 }
Johannes Berg4c476992010-10-04 21:36:35 +02006144 if (!ok)
6145 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006146 }
6147
Johannes Berg4c476992010-10-04 21:36:35 +02006148 if (!rdev->ops->auth)
6149 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006150
Johannes Berg074ac8d2010-09-16 14:58:22 +02006151 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006152 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6153 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006154
Johannes Berg19957bb2009-07-02 17:20:43 +02006155 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg79c97e92009-07-07 03:56:12 +02006156 chan = ieee80211_get_channel(&rdev->wiphy,
Johannes Berg19957bb2009-07-02 17:20:43 +02006157 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006158 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6159 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006160
Johannes Berg19957bb2009-07-02 17:20:43 +02006161 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6162 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6163
6164 if (info->attrs[NL80211_ATTR_IE]) {
6165 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6166 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6167 }
6168
6169 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006170 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006171 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006172
Jouni Malinene39e5b52012-09-30 19:29:39 +03006173 if (auth_type == NL80211_AUTHTYPE_SAE &&
6174 !info->attrs[NL80211_ATTR_SAE_DATA])
6175 return -EINVAL;
6176
6177 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6178 if (auth_type != NL80211_AUTHTYPE_SAE)
6179 return -EINVAL;
6180 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6181 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6182 /* need to include at least Auth Transaction and Status Code */
6183 if (sae_data_len < 4)
6184 return -EINVAL;
6185 }
6186
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006187 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6188
Johannes Berg95de8172012-01-20 13:55:25 +01006189 /*
6190 * Since we no longer track auth state, ignore
6191 * requests to only change local state.
6192 */
6193 if (local_state_change)
6194 return 0;
6195
Johannes Berg91bf9b22013-05-15 17:44:01 +02006196 wdev_lock(dev->ieee80211_ptr);
6197 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6198 ssid, ssid_len, ie, ie_len,
6199 key.p.key, key.p.key_len, key.idx,
6200 sae_data, sae_data_len);
6201 wdev_unlock(dev->ieee80211_ptr);
6202 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006203}
6204
Johannes Bergc0692b82010-08-27 14:26:53 +03006205static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6206 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006207 struct cfg80211_crypto_settings *settings,
6208 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006209{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006210 memset(settings, 0, sizeof(*settings));
6211
Samuel Ortizb23aa672009-07-01 21:26:54 +02006212 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6213
Johannes Bergc0692b82010-08-27 14:26:53 +03006214 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6215 u16 proto;
6216 proto = nla_get_u16(
6217 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6218 settings->control_port_ethertype = cpu_to_be16(proto);
6219 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6220 proto != ETH_P_PAE)
6221 return -EINVAL;
6222 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6223 settings->control_port_no_encrypt = true;
6224 } else
6225 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6226
Samuel Ortizb23aa672009-07-01 21:26:54 +02006227 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6228 void *data;
6229 int len, i;
6230
6231 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6232 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6233 settings->n_ciphers_pairwise = len / sizeof(u32);
6234
6235 if (len % sizeof(u32))
6236 return -EINVAL;
6237
Johannes Berg3dc27d22009-07-02 21:36:37 +02006238 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006239 return -EINVAL;
6240
6241 memcpy(settings->ciphers_pairwise, data, len);
6242
6243 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006244 if (!cfg80211_supported_cipher_suite(
6245 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006246 settings->ciphers_pairwise[i]))
6247 return -EINVAL;
6248 }
6249
6250 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6251 settings->cipher_group =
6252 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006253 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6254 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006255 return -EINVAL;
6256 }
6257
6258 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6259 settings->wpa_versions =
6260 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6261 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6262 return -EINVAL;
6263 }
6264
6265 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6266 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006267 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006268
6269 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6270 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6271 settings->n_akm_suites = len / sizeof(u32);
6272
6273 if (len % sizeof(u32))
6274 return -EINVAL;
6275
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006276 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6277 return -EINVAL;
6278
Samuel Ortizb23aa672009-07-01 21:26:54 +02006279 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006280 }
6281
6282 return 0;
6283}
6284
Jouni Malinen636a5d32009-03-19 13:39:22 +02006285static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6286{
Johannes Berg4c476992010-10-04 21:36:35 +02006287 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6288 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006289 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006290 struct cfg80211_assoc_request req = {};
6291 const u8 *bssid, *ssid;
6292 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006293
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006294 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6295 return -EINVAL;
6296
6297 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006298 !info->attrs[NL80211_ATTR_SSID] ||
6299 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006300 return -EINVAL;
6301
Johannes Berg4c476992010-10-04 21:36:35 +02006302 if (!rdev->ops->assoc)
6303 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006304
Johannes Berg074ac8d2010-09-16 14:58:22 +02006305 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006306 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6307 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006308
Johannes Berg19957bb2009-07-02 17:20:43 +02006309 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006310
Johannes Berg19957bb2009-07-02 17:20:43 +02006311 chan = ieee80211_get_channel(&rdev->wiphy,
6312 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006313 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6314 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006315
Johannes Berg19957bb2009-07-02 17:20:43 +02006316 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6317 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006318
6319 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006320 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6321 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006322 }
6323
Jouni Malinendc6382ce2009-05-06 22:09:37 +03006324 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006325 enum nl80211_mfp mfp =
Jouni Malinendc6382ce2009-05-06 22:09:37 +03006326 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006327 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006328 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006329 else if (mfp != NL80211_MFP_NO)
6330 return -EINVAL;
Jouni Malinendc6382ce2009-05-06 22:09:37 +03006331 }
6332
Johannes Berg3e5d7642009-07-07 14:37:26 +02006333 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006334 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006335
Ben Greear7e7c8922011-11-18 11:31:59 -08006336 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006337 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006338
6339 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006340 memcpy(&req.ht_capa_mask,
6341 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6342 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006343
6344 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006345 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006346 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006347 memcpy(&req.ht_capa,
6348 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6349 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006350 }
6351
Johannes Bergee2aca32013-02-21 17:36:01 +01006352 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006353 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006354
6355 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006356 memcpy(&req.vht_capa_mask,
6357 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6358 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006359
6360 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006361 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006362 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006363 memcpy(&req.vht_capa,
6364 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6365 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006366 }
6367
Johannes Bergf62fab72013-02-21 20:09:09 +01006368 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006369 if (!err) {
6370 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006371 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6372 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006373 wdev_unlock(dev->ieee80211_ptr);
6374 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006375
Jouni Malinen636a5d32009-03-19 13:39:22 +02006376 return err;
6377}
6378
6379static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6380{
Johannes Berg4c476992010-10-04 21:36:35 +02006381 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6382 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006383 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006384 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006385 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006386 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006387
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006388 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6389 return -EINVAL;
6390
6391 if (!info->attrs[NL80211_ATTR_MAC])
6392 return -EINVAL;
6393
6394 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6395 return -EINVAL;
6396
Johannes Berg4c476992010-10-04 21:36:35 +02006397 if (!rdev->ops->deauth)
6398 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006399
Johannes Berg074ac8d2010-09-16 14:58:22 +02006400 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006401 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6402 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006403
Johannes Berg19957bb2009-07-02 17:20:43 +02006404 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006405
Johannes Berg19957bb2009-07-02 17:20:43 +02006406 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6407 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006408 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006409 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006410 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006411
6412 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006413 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6414 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006415 }
6416
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006417 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6418
Johannes Berg91bf9b22013-05-15 17:44:01 +02006419 wdev_lock(dev->ieee80211_ptr);
6420 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6421 local_state_change);
6422 wdev_unlock(dev->ieee80211_ptr);
6423 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006424}
6425
6426static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6427{
Johannes Berg4c476992010-10-04 21:36:35 +02006428 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6429 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006430 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006431 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006432 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006433 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006434
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006435 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6436 return -EINVAL;
6437
6438 if (!info->attrs[NL80211_ATTR_MAC])
6439 return -EINVAL;
6440
6441 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6442 return -EINVAL;
6443
Johannes Berg4c476992010-10-04 21:36:35 +02006444 if (!rdev->ops->disassoc)
6445 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006446
Johannes Berg074ac8d2010-09-16 14:58:22 +02006447 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006448 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6449 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006450
Johannes Berg19957bb2009-07-02 17:20:43 +02006451 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006452
Johannes Berg19957bb2009-07-02 17:20:43 +02006453 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6454 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006455 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006456 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006457 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006458
6459 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006460 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6461 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006462 }
6463
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006464 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6465
Johannes Berg91bf9b22013-05-15 17:44:01 +02006466 wdev_lock(dev->ieee80211_ptr);
6467 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6468 local_state_change);
6469 wdev_unlock(dev->ieee80211_ptr);
6470 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006471}
6472
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006473static bool
6474nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6475 int mcast_rate[IEEE80211_NUM_BANDS],
6476 int rateval)
6477{
6478 struct wiphy *wiphy = &rdev->wiphy;
6479 bool found = false;
6480 int band, i;
6481
6482 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6483 struct ieee80211_supported_band *sband;
6484
6485 sband = wiphy->bands[band];
6486 if (!sband)
6487 continue;
6488
6489 for (i = 0; i < sband->n_bitrates; i++) {
6490 if (sband->bitrates[i].bitrate == rateval) {
6491 mcast_rate[band] = i + 1;
6492 found = true;
6493 break;
6494 }
6495 }
6496 }
6497
6498 return found;
6499}
6500
Johannes Berg04a773a2009-04-19 21:24:32 +02006501static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6502{
Johannes Berg4c476992010-10-04 21:36:35 +02006503 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6504 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006505 struct cfg80211_ibss_params ibss;
6506 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006507 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006508 int err;
6509
Johannes Berg8e30bc52009-04-22 17:45:38 +02006510 memset(&ibss, 0, sizeof(ibss));
6511
Johannes Berg04a773a2009-04-19 21:24:32 +02006512 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6513 return -EINVAL;
6514
Johannes Berg683b6d32012-11-08 21:25:48 +01006515 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006516 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6517 return -EINVAL;
6518
Johannes Berg8e30bc52009-04-22 17:45:38 +02006519 ibss.beacon_interval = 100;
6520
6521 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6522 ibss.beacon_interval =
6523 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6524 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6525 return -EINVAL;
6526 }
6527
Johannes Berg4c476992010-10-04 21:36:35 +02006528 if (!rdev->ops->join_ibss)
6529 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006530
Johannes Berg4c476992010-10-04 21:36:35 +02006531 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6532 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006533
Johannes Berg79c97e92009-07-07 03:56:12 +02006534 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006535
Johannes Berg39193492011-09-16 13:45:25 +02006536 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006537 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006538
6539 if (!is_valid_ether_addr(ibss.bssid))
6540 return -EINVAL;
6541 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006542 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6543 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6544
6545 if (info->attrs[NL80211_ATTR_IE]) {
6546 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6547 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6548 }
6549
Johannes Berg683b6d32012-11-08 21:25:48 +01006550 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6551 if (err)
6552 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006553
Johannes Berg683b6d32012-11-08 21:25:48 +01006554 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006555 return -EINVAL;
6556
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006557 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006558 case NL80211_CHAN_WIDTH_5:
6559 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006560 case NL80211_CHAN_WIDTH_20_NOHT:
6561 break;
6562 case NL80211_CHAN_WIDTH_20:
6563 case NL80211_CHAN_WIDTH_40:
6564 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6565 break;
6566 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006567 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006568 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006569
Johannes Berg04a773a2009-04-19 21:24:32 +02006570 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006571 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006572
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006573 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6574 u8 *rates =
6575 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6576 int n_rates =
6577 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6578 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006579 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006580
Johannes Berg34850ab2011-07-18 18:08:35 +02006581 err = ieee80211_get_ratemask(sband, rates, n_rates,
6582 &ibss.basic_rates);
6583 if (err)
6584 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006585 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006586
Simon Wunderlich803768f2013-06-28 10:39:58 +02006587 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6588 memcpy(&ibss.ht_capa_mask,
6589 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6590 sizeof(ibss.ht_capa_mask));
6591
6592 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6593 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6594 return -EINVAL;
6595 memcpy(&ibss.ht_capa,
6596 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6597 sizeof(ibss.ht_capa));
6598 }
6599
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006600 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6601 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6602 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6603 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006604
Johannes Berg4c476992010-10-04 21:36:35 +02006605 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306606 bool no_ht = false;
6607
Johannes Berg4c476992010-10-04 21:36:35 +02006608 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306609 info->attrs[NL80211_ATTR_KEYS],
6610 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006611 if (IS_ERR(connkeys))
6612 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306613
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006614 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6615 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306616 kfree(connkeys);
6617 return -EINVAL;
6618 }
Johannes Berg4c476992010-10-04 21:36:35 +02006619 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006620
Antonio Quartulli267335d2012-01-31 20:25:47 +01006621 ibss.control_port =
6622 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6623
Simon Wunderlich5336fa82013-10-07 18:41:05 +02006624 ibss.userspace_handles_dfs =
6625 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
6626
Johannes Berg4c476992010-10-04 21:36:35 +02006627 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006628 if (err)
6629 kfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006630 return err;
6631}
6632
6633static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6634{
Johannes Berg4c476992010-10-04 21:36:35 +02006635 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6636 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006637
Johannes Berg4c476992010-10-04 21:36:35 +02006638 if (!rdev->ops->leave_ibss)
6639 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006640
Johannes Berg4c476992010-10-04 21:36:35 +02006641 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6642 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006643
Johannes Berg4c476992010-10-04 21:36:35 +02006644 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006645}
6646
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006647static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6648{
6649 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6650 struct net_device *dev = info->user_ptr[1];
6651 int mcast_rate[IEEE80211_NUM_BANDS];
6652 u32 nla_rate;
6653 int err;
6654
6655 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6656 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6657 return -EOPNOTSUPP;
6658
6659 if (!rdev->ops->set_mcast_rate)
6660 return -EOPNOTSUPP;
6661
6662 memset(mcast_rate, 0, sizeof(mcast_rate));
6663
6664 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6665 return -EINVAL;
6666
6667 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6668 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6669 return -EINVAL;
6670
6671 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6672
6673 return err;
6674}
6675
6676
Johannes Bergaff89a92009-07-01 21:26:51 +02006677#ifdef CONFIG_NL80211_TESTMODE
Johannes Bergaff89a92009-07-01 21:26:51 +02006678static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
6679{
Johannes Berg4c476992010-10-04 21:36:35 +02006680 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03006681 struct wireless_dev *wdev =
6682 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02006683 int err;
6684
David Spinadelfc73f112013-07-31 18:04:15 +03006685 if (!rdev->ops->testmode_cmd)
6686 return -EOPNOTSUPP;
6687
6688 if (IS_ERR(wdev)) {
6689 err = PTR_ERR(wdev);
6690 if (err != -EINVAL)
6691 return err;
6692 wdev = NULL;
6693 } else if (wdev->wiphy != &rdev->wiphy) {
6694 return -EINVAL;
6695 }
6696
Johannes Bergaff89a92009-07-01 21:26:51 +02006697 if (!info->attrs[NL80211_ATTR_TESTDATA])
6698 return -EINVAL;
6699
David Spinadelfc73f112013-07-31 18:04:15 +03006700 rdev->testmode_info = info;
6701 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02006702 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
6703 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
David Spinadelfc73f112013-07-31 18:04:15 +03006704 rdev->testmode_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02006705
Johannes Bergaff89a92009-07-01 21:26:51 +02006706 return err;
6707}
6708
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006709static int nl80211_testmode_dump(struct sk_buff *skb,
6710 struct netlink_callback *cb)
6711{
Johannes Berg00918d32011-12-13 17:22:05 +01006712 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006713 int err;
6714 long phy_idx;
6715 void *data = NULL;
6716 int data_len = 0;
6717
Johannes Berg5fe231e2013-05-08 21:45:15 +02006718 rtnl_lock();
6719
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006720 if (cb->args[0]) {
6721 /*
6722 * 0 is a valid index, but not valid for args[0],
6723 * so we need to offset by 1.
6724 */
6725 phy_idx = cb->args[0] - 1;
6726 } else {
6727 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
6728 nl80211_fam.attrbuf, nl80211_fam.maxattr,
6729 nl80211_policy);
6730 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02006731 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006732
Johannes Berg2bd7e352012-06-15 14:23:16 +02006733 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
6734 nl80211_fam.attrbuf);
6735 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006736 err = PTR_ERR(rdev);
6737 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006738 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02006739 phy_idx = rdev->wiphy_idx;
6740 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02006741
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006742 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
6743 cb->args[1] =
6744 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
6745 }
6746
6747 if (cb->args[1]) {
6748 data = nla_data((void *)cb->args[1]);
6749 data_len = nla_len((void *)cb->args[1]);
6750 }
6751
Johannes Berg00918d32011-12-13 17:22:05 +01006752 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
6753 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006754 err = -ENOENT;
6755 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006756 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006757
Johannes Berg00918d32011-12-13 17:22:05 +01006758 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006759 err = -EOPNOTSUPP;
6760 goto out_err;
6761 }
6762
6763 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00006764 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006765 cb->nlh->nlmsg_seq, NLM_F_MULTI,
6766 NL80211_CMD_TESTMODE);
6767 struct nlattr *tmdata;
6768
Dan Carpentercb35fba2013-08-14 14:50:01 +03006769 if (!hdr)
6770 break;
6771
David S. Miller9360ffd2012-03-29 04:41:26 -04006772 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006773 genlmsg_cancel(skb, hdr);
6774 break;
6775 }
6776
6777 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6778 if (!tmdata) {
6779 genlmsg_cancel(skb, hdr);
6780 break;
6781 }
Hila Gonene35e4d22012-06-27 17:19:42 +03006782 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006783 nla_nest_end(skb, tmdata);
6784
6785 if (err == -ENOBUFS || err == -ENOENT) {
6786 genlmsg_cancel(skb, hdr);
6787 break;
6788 } else if (err) {
6789 genlmsg_cancel(skb, hdr);
6790 goto out_err;
6791 }
6792
6793 genlmsg_end(skb, hdr);
6794 }
6795
6796 err = skb->len;
6797 /* see above */
6798 cb->args[0] = phy_idx + 1;
6799 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02006800 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006801 return err;
6802}
6803
Johannes Bergaff89a92009-07-01 21:26:51 +02006804static struct sk_buff *
6805__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006806 int approxlen, u32 portid, u32 seq, gfp_t gfp)
Johannes Bergaff89a92009-07-01 21:26:51 +02006807{
6808 struct sk_buff *skb;
6809 void *hdr;
6810 struct nlattr *data;
6811
6812 skb = nlmsg_new(approxlen + 100, gfp);
6813 if (!skb)
6814 return NULL;
6815
Eric W. Biederman15e47302012-09-07 20:12:54 +00006816 hdr = nl80211hdr_put(skb, portid, seq, 0, NL80211_CMD_TESTMODE);
Johannes Bergaff89a92009-07-01 21:26:51 +02006817 if (!hdr) {
6818 kfree_skb(skb);
6819 return NULL;
6820 }
6821
David S. Miller9360ffd2012-03-29 04:41:26 -04006822 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6823 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02006824 data = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6825
6826 ((void **)skb->cb)[0] = rdev;
6827 ((void **)skb->cb)[1] = hdr;
6828 ((void **)skb->cb)[2] = data;
6829
6830 return skb;
6831
6832 nla_put_failure:
6833 kfree_skb(skb);
6834 return NULL;
6835}
6836
6837struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
6838 int approxlen)
6839{
6840 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6841
6842 if (WARN_ON(!rdev->testmode_info))
6843 return NULL;
6844
6845 return __cfg80211_testmode_alloc_skb(rdev, approxlen,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006846 rdev->testmode_info->snd_portid,
Johannes Bergaff89a92009-07-01 21:26:51 +02006847 rdev->testmode_info->snd_seq,
6848 GFP_KERNEL);
6849}
6850EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb);
6851
6852int cfg80211_testmode_reply(struct sk_buff *skb)
6853{
6854 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
6855 void *hdr = ((void **)skb->cb)[1];
6856 struct nlattr *data = ((void **)skb->cb)[2];
6857
6858 if (WARN_ON(!rdev->testmode_info)) {
6859 kfree_skb(skb);
6860 return -EINVAL;
6861 }
6862
6863 nla_nest_end(skb, data);
6864 genlmsg_end(skb, hdr);
6865 return genlmsg_reply(skb, rdev->testmode_info);
6866}
6867EXPORT_SYMBOL(cfg80211_testmode_reply);
6868
6869struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
6870 int approxlen, gfp_t gfp)
6871{
6872 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6873
6874 return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp);
6875}
6876EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb);
6877
6878void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
6879{
Michal Kaziora0ec5702013-06-25 09:17:17 +02006880 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
Johannes Bergaff89a92009-07-01 21:26:51 +02006881 void *hdr = ((void **)skb->cb)[1];
6882 struct nlattr *data = ((void **)skb->cb)[2];
6883
6884 nla_nest_end(skb, data);
6885 genlmsg_end(skb, hdr);
Johannes Berg68eb5502013-11-19 15:19:38 +01006886 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), skb, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01006887 NL80211_MCGRP_TESTMODE, gfp);
Johannes Bergaff89a92009-07-01 21:26:51 +02006888}
6889EXPORT_SYMBOL(cfg80211_testmode_event);
6890#endif
6891
Samuel Ortizb23aa672009-07-01 21:26:54 +02006892static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
6893{
Johannes Berg4c476992010-10-04 21:36:35 +02006894 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6895 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02006896 struct cfg80211_connect_params connect;
6897 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006898 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006899 int err;
6900
6901 memset(&connect, 0, sizeof(connect));
6902
6903 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6904 return -EINVAL;
6905
6906 if (!info->attrs[NL80211_ATTR_SSID] ||
6907 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6908 return -EINVAL;
6909
6910 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
6911 connect.auth_type =
6912 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006913 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
6914 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006915 return -EINVAL;
6916 } else
6917 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
6918
6919 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
6920
Johannes Bergc0692b82010-08-27 14:26:53 +03006921 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006922 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006923 if (err)
6924 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006925
Johannes Berg074ac8d2010-09-16 14:58:22 +02006926 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006927 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6928 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006929
Johannes Berg79c97e92009-07-07 03:56:12 +02006930 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006931
Bala Shanmugam4486ea92012-03-07 17:27:12 +05306932 connect.bg_scan_period = -1;
6933 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
6934 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
6935 connect.bg_scan_period =
6936 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
6937 }
6938
Samuel Ortizb23aa672009-07-01 21:26:54 +02006939 if (info->attrs[NL80211_ATTR_MAC])
6940 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
6941 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6942 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6943
6944 if (info->attrs[NL80211_ATTR_IE]) {
6945 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6946 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6947 }
6948
Jouni Malinencee00a92013-01-15 17:15:57 +02006949 if (info->attrs[NL80211_ATTR_USE_MFP]) {
6950 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
6951 if (connect.mfp != NL80211_MFP_REQUIRED &&
6952 connect.mfp != NL80211_MFP_NO)
6953 return -EINVAL;
6954 } else {
6955 connect.mfp = NL80211_MFP_NO;
6956 }
6957
Samuel Ortizb23aa672009-07-01 21:26:54 +02006958 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
6959 connect.channel =
6960 ieee80211_get_channel(wiphy,
6961 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
6962 if (!connect.channel ||
Johannes Berg4c476992010-10-04 21:36:35 +02006963 connect.channel->flags & IEEE80211_CHAN_DISABLED)
6964 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006965 }
6966
Johannes Bergfffd0932009-07-08 14:22:54 +02006967 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
6968 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306969 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02006970 if (IS_ERR(connkeys))
6971 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006972 }
6973
Ben Greear7e7c8922011-11-18 11:31:59 -08006974 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
6975 connect.flags |= ASSOC_REQ_DISABLE_HT;
6976
6977 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6978 memcpy(&connect.ht_capa_mask,
6979 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6980 sizeof(connect.ht_capa_mask));
6981
6982 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006983 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
6984 kfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08006985 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006986 }
Ben Greear7e7c8922011-11-18 11:31:59 -08006987 memcpy(&connect.ht_capa,
6988 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6989 sizeof(connect.ht_capa));
6990 }
6991
Johannes Bergee2aca32013-02-21 17:36:01 +01006992 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
6993 connect.flags |= ASSOC_REQ_DISABLE_VHT;
6994
6995 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
6996 memcpy(&connect.vht_capa_mask,
6997 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6998 sizeof(connect.vht_capa_mask));
6999
7000 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
7001 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
7002 kfree(connkeys);
7003 return -EINVAL;
7004 }
7005 memcpy(&connect.vht_capa,
7006 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
7007 sizeof(connect.vht_capa));
7008 }
7009
Johannes Berg83739b02013-05-15 17:44:01 +02007010 wdev_lock(dev->ieee80211_ptr);
7011 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
7012 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02007013 if (err)
7014 kfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007015 return err;
7016}
7017
7018static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
7019{
Johannes Berg4c476992010-10-04 21:36:35 +02007020 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7021 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007022 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02007023 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007024
7025 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7026 reason = WLAN_REASON_DEAUTH_LEAVING;
7027 else
7028 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7029
7030 if (reason == 0)
7031 return -EINVAL;
7032
Johannes Berg074ac8d2010-09-16 14:58:22 +02007033 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007034 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7035 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007036
Johannes Berg83739b02013-05-15 17:44:01 +02007037 wdev_lock(dev->ieee80211_ptr);
7038 ret = cfg80211_disconnect(rdev, dev, reason, true);
7039 wdev_unlock(dev->ieee80211_ptr);
7040 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007041}
7042
Johannes Berg463d0182009-07-14 00:33:35 +02007043static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
7044{
Johannes Berg4c476992010-10-04 21:36:35 +02007045 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02007046 struct net *net;
7047 int err;
7048 u32 pid;
7049
7050 if (!info->attrs[NL80211_ATTR_PID])
7051 return -EINVAL;
7052
7053 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
7054
Johannes Berg463d0182009-07-14 00:33:35 +02007055 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02007056 if (IS_ERR(net))
7057 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007058
7059 err = 0;
7060
7061 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02007062 if (!net_eq(wiphy_net(&rdev->wiphy), net))
7063 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02007064
Johannes Berg463d0182009-07-14 00:33:35 +02007065 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007066 return err;
7067}
7068
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007069static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
7070{
Johannes Berg4c476992010-10-04 21:36:35 +02007071 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007072 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
7073 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02007074 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007075 struct cfg80211_pmksa pmksa;
7076
7077 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
7078
7079 if (!info->attrs[NL80211_ATTR_MAC])
7080 return -EINVAL;
7081
7082 if (!info->attrs[NL80211_ATTR_PMKID])
7083 return -EINVAL;
7084
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007085 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7086 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7087
Johannes Berg074ac8d2010-09-16 14:58:22 +02007088 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007089 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7090 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007091
7092 switch (info->genlhdr->cmd) {
7093 case NL80211_CMD_SET_PMKSA:
7094 rdev_ops = rdev->ops->set_pmksa;
7095 break;
7096 case NL80211_CMD_DEL_PMKSA:
7097 rdev_ops = rdev->ops->del_pmksa;
7098 break;
7099 default:
7100 WARN_ON(1);
7101 break;
7102 }
7103
Johannes Berg4c476992010-10-04 21:36:35 +02007104 if (!rdev_ops)
7105 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007106
Johannes Berg4c476992010-10-04 21:36:35 +02007107 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007108}
7109
7110static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7111{
Johannes Berg4c476992010-10-04 21:36:35 +02007112 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7113 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007114
Johannes Berg074ac8d2010-09-16 14:58:22 +02007115 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007116 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7117 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007118
Johannes Berg4c476992010-10-04 21:36:35 +02007119 if (!rdev->ops->flush_pmksa)
7120 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007121
Hila Gonene35e4d22012-06-27 17:19:42 +03007122 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007123}
7124
Arik Nemtsov109086c2011-09-28 14:12:50 +03007125static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7126{
7127 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7128 struct net_device *dev = info->user_ptr[1];
7129 u8 action_code, dialog_token;
7130 u16 status_code;
7131 u8 *peer;
7132
7133 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7134 !rdev->ops->tdls_mgmt)
7135 return -EOPNOTSUPP;
7136
7137 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7138 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7139 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7140 !info->attrs[NL80211_ATTR_IE] ||
7141 !info->attrs[NL80211_ATTR_MAC])
7142 return -EINVAL;
7143
7144 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7145 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7146 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7147 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
7148
Hila Gonene35e4d22012-06-27 17:19:42 +03007149 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
7150 dialog_token, status_code,
7151 nla_data(info->attrs[NL80211_ATTR_IE]),
7152 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007153}
7154
7155static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7156{
7157 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7158 struct net_device *dev = info->user_ptr[1];
7159 enum nl80211_tdls_operation operation;
7160 u8 *peer;
7161
7162 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7163 !rdev->ops->tdls_oper)
7164 return -EOPNOTSUPP;
7165
7166 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7167 !info->attrs[NL80211_ATTR_MAC])
7168 return -EINVAL;
7169
7170 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7171 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7172
Hila Gonene35e4d22012-06-27 17:19:42 +03007173 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007174}
7175
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007176static int nl80211_remain_on_channel(struct sk_buff *skb,
7177 struct genl_info *info)
7178{
Johannes Berg4c476992010-10-04 21:36:35 +02007179 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007180 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007181 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007182 struct sk_buff *msg;
7183 void *hdr;
7184 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007185 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007186 int err;
7187
7188 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7189 !info->attrs[NL80211_ATTR_DURATION])
7190 return -EINVAL;
7191
7192 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7193
Johannes Berg7c4ef712011-11-18 15:33:48 +01007194 if (!rdev->ops->remain_on_channel ||
7195 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007196 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007197
Johannes Bergebf348f2012-06-01 12:50:54 +02007198 /*
7199 * We should be on that channel for at least a minimum amount of
7200 * time (10ms) but no longer than the driver supports.
7201 */
7202 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7203 duration > rdev->wiphy.max_remain_on_channel_duration)
7204 return -EINVAL;
7205
Johannes Berg683b6d32012-11-08 21:25:48 +01007206 err = nl80211_parse_chandef(rdev, info, &chandef);
7207 if (err)
7208 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007209
7210 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007211 if (!msg)
7212 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007213
Eric W. Biederman15e47302012-09-07 20:12:54 +00007214 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007215 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007216 if (!hdr) {
7217 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007218 goto free_msg;
7219 }
7220
Johannes Berg683b6d32012-11-08 21:25:48 +01007221 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7222 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007223
7224 if (err)
7225 goto free_msg;
7226
David S. Miller9360ffd2012-03-29 04:41:26 -04007227 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7228 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007229
7230 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007231
7232 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007233
7234 nla_put_failure:
7235 err = -ENOBUFS;
7236 free_msg:
7237 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007238 return err;
7239}
7240
7241static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7242 struct genl_info *info)
7243{
Johannes Berg4c476992010-10-04 21:36:35 +02007244 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007245 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007246 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007247
7248 if (!info->attrs[NL80211_ATTR_COOKIE])
7249 return -EINVAL;
7250
Johannes Berg4c476992010-10-04 21:36:35 +02007251 if (!rdev->ops->cancel_remain_on_channel)
7252 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007253
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007254 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7255
Hila Gonene35e4d22012-06-27 17:19:42 +03007256 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007257}
7258
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007259static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7260 u8 *rates, u8 rates_len)
7261{
7262 u8 i;
7263 u32 mask = 0;
7264
7265 for (i = 0; i < rates_len; i++) {
7266 int rate = (rates[i] & 0x7f) * 5;
7267 int ridx;
7268 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7269 struct ieee80211_rate *srate =
7270 &sband->bitrates[ridx];
7271 if (rate == srate->bitrate) {
7272 mask |= 1 << ridx;
7273 break;
7274 }
7275 }
7276 if (ridx == sband->n_bitrates)
7277 return 0; /* rate not found */
7278 }
7279
7280 return mask;
7281}
7282
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007283static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7284 u8 *rates, u8 rates_len,
7285 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7286{
7287 u8 i;
7288
7289 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7290
7291 for (i = 0; i < rates_len; i++) {
7292 int ridx, rbit;
7293
7294 ridx = rates[i] / 8;
7295 rbit = BIT(rates[i] % 8);
7296
7297 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007298 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007299 return false;
7300
7301 /* check availability */
7302 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7303 mcs[ridx] |= rbit;
7304 else
7305 return false;
7306 }
7307
7308 return true;
7309}
7310
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007311static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007312 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7313 .len = NL80211_MAX_SUPP_RATES },
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007314 [NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
7315 .len = NL80211_MAX_SUPP_HT_RATES },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007316};
7317
7318static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7319 struct genl_info *info)
7320{
7321 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007322 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007323 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007324 int rem, i;
7325 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007326 struct nlattr *tx_rates;
7327 struct ieee80211_supported_band *sband;
7328
7329 if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
7330 return -EINVAL;
7331
Johannes Berg4c476992010-10-04 21:36:35 +02007332 if (!rdev->ops->set_bitrate_mask)
7333 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007334
7335 memset(&mask, 0, sizeof(mask));
7336 /* Default to all rates enabled */
7337 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7338 sband = rdev->wiphy.bands[i];
7339 mask.control[i].legacy =
7340 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007341 if (sband)
7342 memcpy(mask.control[i].mcs,
7343 sband->ht_cap.mcs.rx_mask,
7344 sizeof(mask.control[i].mcs));
7345 else
7346 memset(mask.control[i].mcs, 0,
7347 sizeof(mask.control[i].mcs));
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007348 }
7349
7350 /*
7351 * The nested attribute uses enum nl80211_band as the index. This maps
7352 * directly to the enum ieee80211_band values used in cfg80211.
7353 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007354 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007355 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
7356 {
7357 enum ieee80211_band band = nla_type(tx_rates);
Johannes Berg4c476992010-10-04 21:36:35 +02007358 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7359 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007360 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007361 if (sband == NULL)
7362 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007363 nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7364 nla_len(tx_rates), nl80211_txattr_policy);
7365 if (tb[NL80211_TXRATE_LEGACY]) {
7366 mask.control[band].legacy = rateset_to_mask(
7367 sband,
7368 nla_data(tb[NL80211_TXRATE_LEGACY]),
7369 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307370 if ((mask.control[band].legacy == 0) &&
7371 nla_len(tb[NL80211_TXRATE_LEGACY]))
7372 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007373 }
7374 if (tb[NL80211_TXRATE_MCS]) {
7375 if (!ht_rateset_to_mask(
7376 sband,
7377 nla_data(tb[NL80211_TXRATE_MCS]),
7378 nla_len(tb[NL80211_TXRATE_MCS]),
7379 mask.control[band].mcs))
7380 return -EINVAL;
7381 }
7382
7383 if (mask.control[band].legacy == 0) {
7384 /* don't allow empty legacy rates if HT
7385 * is not even supported. */
7386 if (!rdev->wiphy.bands[band]->ht_cap.ht_supported)
7387 return -EINVAL;
7388
7389 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
7390 if (mask.control[band].mcs[i])
7391 break;
7392
7393 /* legacy and mcs rates may not be both empty */
7394 if (i == IEEE80211_HT_MCS_MASK_LEN)
Johannes Berg4c476992010-10-04 21:36:35 +02007395 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007396 }
7397 }
7398
Hila Gonene35e4d22012-06-27 17:19:42 +03007399 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007400}
7401
Johannes Berg2e161f72010-08-12 15:38:38 +02007402static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007403{
Johannes Berg4c476992010-10-04 21:36:35 +02007404 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007405 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007406 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007407
7408 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7409 return -EINVAL;
7410
Johannes Berg2e161f72010-08-12 15:38:38 +02007411 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7412 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007413
Johannes Berg71bbc992012-06-15 15:30:18 +02007414 switch (wdev->iftype) {
7415 case NL80211_IFTYPE_STATION:
7416 case NL80211_IFTYPE_ADHOC:
7417 case NL80211_IFTYPE_P2P_CLIENT:
7418 case NL80211_IFTYPE_AP:
7419 case NL80211_IFTYPE_AP_VLAN:
7420 case NL80211_IFTYPE_MESH_POINT:
7421 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007422 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007423 break;
7424 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007425 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007426 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007427
7428 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007429 if (!rdev->ops->mgmt_tx)
7430 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007431
Eric W. Biederman15e47302012-09-07 20:12:54 +00007432 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007433 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7434 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007435}
7436
Johannes Berg2e161f72010-08-12 15:38:38 +02007437static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007438{
Johannes Berg4c476992010-10-04 21:36:35 +02007439 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007440 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007441 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007442 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007443 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007444 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007445 struct sk_buff *msg = NULL;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007446 unsigned int wait = 0;
Johannes Berge247bd902011-11-04 11:18:21 +01007447 bool offchan, no_cck, dont_wait_for_ack;
7448
7449 dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
Jouni Malinen026331c2010-02-15 12:53:10 +02007450
Johannes Berg683b6d32012-11-08 21:25:48 +01007451 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007452 return -EINVAL;
7453
Johannes Berg4c476992010-10-04 21:36:35 +02007454 if (!rdev->ops->mgmt_tx)
7455 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007456
Johannes Berg71bbc992012-06-15 15:30:18 +02007457 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007458 case NL80211_IFTYPE_P2P_DEVICE:
7459 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7460 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007461 case NL80211_IFTYPE_STATION:
7462 case NL80211_IFTYPE_ADHOC:
7463 case NL80211_IFTYPE_P2P_CLIENT:
7464 case NL80211_IFTYPE_AP:
7465 case NL80211_IFTYPE_AP_VLAN:
7466 case NL80211_IFTYPE_MESH_POINT:
7467 case NL80211_IFTYPE_P2P_GO:
7468 break;
7469 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007470 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007471 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007472
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007473 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007474 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007475 return -EINVAL;
7476 wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007477
7478 /*
7479 * We should wait on the channel for at least a minimum amount
7480 * of time (10ms) but no longer than the driver supports.
7481 */
7482 if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7483 wait > rdev->wiphy.max_remain_on_channel_duration)
7484 return -EINVAL;
7485
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007486 }
7487
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007488 offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
7489
Johannes Berg7c4ef712011-11-18 15:33:48 +01007490 if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
7491 return -EINVAL;
7492
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307493 no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
7494
Antonio Quartulliea141b752013-06-11 14:20:03 +02007495 /* get the channel if any has been specified, otherwise pass NULL to
7496 * the driver. The latter will use the current one
7497 */
7498 chandef.chan = NULL;
7499 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7500 err = nl80211_parse_chandef(rdev, info, &chandef);
7501 if (err)
7502 return err;
7503 }
7504
7505 if (!chandef.chan && offchan)
7506 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007507
Johannes Berge247bd902011-11-04 11:18:21 +01007508 if (!dont_wait_for_ack) {
7509 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7510 if (!msg)
7511 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007512
Eric W. Biederman15e47302012-09-07 20:12:54 +00007513 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007514 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007515 if (!hdr) {
7516 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007517 goto free_msg;
7518 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007519 }
Johannes Berge247bd902011-11-04 11:18:21 +01007520
Johannes Berg683b6d32012-11-08 21:25:48 +01007521 err = cfg80211_mlme_mgmt_tx(rdev, wdev, chandef.chan, offchan, wait,
Johannes Berg2e161f72010-08-12 15:38:38 +02007522 nla_data(info->attrs[NL80211_ATTR_FRAME]),
7523 nla_len(info->attrs[NL80211_ATTR_FRAME]),
Johannes Berge247bd902011-11-04 11:18:21 +01007524 no_cck, dont_wait_for_ack, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007525 if (err)
7526 goto free_msg;
7527
Johannes Berge247bd902011-11-04 11:18:21 +01007528 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007529 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7530 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007531
Johannes Berge247bd902011-11-04 11:18:21 +01007532 genlmsg_end(msg, hdr);
7533 return genlmsg_reply(msg, info);
7534 }
7535
7536 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007537
7538 nla_put_failure:
7539 err = -ENOBUFS;
7540 free_msg:
7541 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007542 return err;
7543}
7544
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007545static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7546{
7547 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007548 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007549 u64 cookie;
7550
7551 if (!info->attrs[NL80211_ATTR_COOKIE])
7552 return -EINVAL;
7553
7554 if (!rdev->ops->mgmt_tx_cancel_wait)
7555 return -EOPNOTSUPP;
7556
Johannes Berg71bbc992012-06-15 15:30:18 +02007557 switch (wdev->iftype) {
7558 case NL80211_IFTYPE_STATION:
7559 case NL80211_IFTYPE_ADHOC:
7560 case NL80211_IFTYPE_P2P_CLIENT:
7561 case NL80211_IFTYPE_AP:
7562 case NL80211_IFTYPE_AP_VLAN:
7563 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007564 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007565 break;
7566 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007567 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007568 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007569
7570 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7571
Hila Gonene35e4d22012-06-27 17:19:42 +03007572 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007573}
7574
Kalle Valoffb9eb32010-02-17 17:58:10 +02007575static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7576{
Johannes Berg4c476992010-10-04 21:36:35 +02007577 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007578 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007579 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007580 u8 ps_state;
7581 bool state;
7582 int err;
7583
Johannes Berg4c476992010-10-04 21:36:35 +02007584 if (!info->attrs[NL80211_ATTR_PS_STATE])
7585 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007586
7587 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
7588
Johannes Berg4c476992010-10-04 21:36:35 +02007589 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
7590 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007591
7592 wdev = dev->ieee80211_ptr;
7593
Johannes Berg4c476992010-10-04 21:36:35 +02007594 if (!rdev->ops->set_power_mgmt)
7595 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007596
7597 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
7598
7599 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02007600 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007601
Hila Gonene35e4d22012-06-27 17:19:42 +03007602 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02007603 if (!err)
7604 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007605 return err;
7606}
7607
7608static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
7609{
Johannes Berg4c476992010-10-04 21:36:35 +02007610 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007611 enum nl80211_ps_state ps_state;
7612 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007613 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007614 struct sk_buff *msg;
7615 void *hdr;
7616 int err;
7617
Kalle Valoffb9eb32010-02-17 17:58:10 +02007618 wdev = dev->ieee80211_ptr;
7619
Johannes Berg4c476992010-10-04 21:36:35 +02007620 if (!rdev->ops->set_power_mgmt)
7621 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007622
7623 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007624 if (!msg)
7625 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007626
Eric W. Biederman15e47302012-09-07 20:12:54 +00007627 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02007628 NL80211_CMD_GET_POWER_SAVE);
7629 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02007630 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007631 goto free_msg;
7632 }
7633
7634 if (wdev->ps)
7635 ps_state = NL80211_PS_ENABLED;
7636 else
7637 ps_state = NL80211_PS_DISABLED;
7638
David S. Miller9360ffd2012-03-29 04:41:26 -04007639 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
7640 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007641
7642 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007643 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007644
Johannes Berg4c476992010-10-04 21:36:35 +02007645 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007646 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02007647 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007648 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007649 return err;
7650}
7651
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007652static struct nla_policy
7653nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = {
7654 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
7655 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
7656 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07007657 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
7658 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
7659 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007660};
7661
Thomas Pedersen84f10702012-07-12 16:17:33 -07007662static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01007663 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007664{
7665 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07007666 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007667 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07007668
Johannes Bergd9d8b012012-11-26 12:51:52 +01007669 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007670 return -EINVAL;
7671
Thomas Pedersen84f10702012-07-12 16:17:33 -07007672 if (!rdev->ops->set_cqm_txe_config)
7673 return -EOPNOTSUPP;
7674
7675 if (wdev->iftype != NL80211_IFTYPE_STATION &&
7676 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7677 return -EOPNOTSUPP;
7678
Hila Gonene35e4d22012-06-27 17:19:42 +03007679 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07007680}
7681
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007682static int nl80211_set_cqm_rssi(struct genl_info *info,
7683 s32 threshold, u32 hysteresis)
7684{
Johannes Berg4c476992010-10-04 21:36:35 +02007685 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02007686 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007687 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007688
7689 if (threshold > 0)
7690 return -EINVAL;
7691
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007692 /* disabling - hysteresis should also be zero then */
7693 if (threshold == 0)
7694 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007695
Johannes Berg4c476992010-10-04 21:36:35 +02007696 if (!rdev->ops->set_cqm_rssi_config)
7697 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007698
Johannes Berg074ac8d2010-09-16 14:58:22 +02007699 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007700 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7701 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007702
Hila Gonene35e4d22012-06-27 17:19:42 +03007703 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007704}
7705
7706static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
7707{
7708 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
7709 struct nlattr *cqm;
7710 int err;
7711
7712 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007713 if (!cqm)
7714 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007715
7716 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
7717 nl80211_attr_cqm_policy);
7718 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007719 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007720
7721 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
7722 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007723 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
7724 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007725
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007726 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
7727 }
7728
7729 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
7730 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
7731 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
7732 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
7733 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
7734 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
7735
7736 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
7737 }
7738
7739 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007740}
7741
Johannes Berg29cbe682010-12-03 09:20:44 +01007742static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
7743{
7744 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7745 struct net_device *dev = info->user_ptr[1];
7746 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08007747 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01007748 int err;
7749
7750 /* start with default */
7751 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08007752 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01007753
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007754 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01007755 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007756 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01007757 if (err)
7758 return err;
7759 }
7760
7761 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
7762 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
7763 return -EINVAL;
7764
Javier Cardonac80d5452010-12-16 17:37:49 -08007765 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
7766 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
7767
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08007768 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
7769 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
7770 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
7771 return -EINVAL;
7772
Marco Porsch9bdbf042013-01-07 16:04:51 +01007773 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
7774 setup.beacon_interval =
7775 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
7776 if (setup.beacon_interval < 10 ||
7777 setup.beacon_interval > 10000)
7778 return -EINVAL;
7779 }
7780
7781 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
7782 setup.dtim_period =
7783 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
7784 if (setup.dtim_period < 1 || setup.dtim_period > 100)
7785 return -EINVAL;
7786 }
7787
Javier Cardonac80d5452010-12-16 17:37:49 -08007788 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
7789 /* parse additional setup parameters if given */
7790 err = nl80211_parse_mesh_setup(info, &setup);
7791 if (err)
7792 return err;
7793 }
7794
Thomas Pedersend37bb182013-03-04 13:06:13 -08007795 if (setup.user_mpm)
7796 cfg.auto_open_plinks = false;
7797
Johannes Bergcc1d2802012-05-16 23:50:20 +02007798 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01007799 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
7800 if (err)
7801 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007802 } else {
7803 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01007804 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007805 }
7806
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07007807 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
7808 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7809 int n_rates =
7810 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7811 struct ieee80211_supported_band *sband;
7812
7813 if (!setup.chandef.chan)
7814 return -EINVAL;
7815
7816 sband = rdev->wiphy.bands[setup.chandef.chan->band];
7817
7818 err = ieee80211_get_ratemask(sband, rates, n_rates,
7819 &setup.basic_rates);
7820 if (err)
7821 return err;
7822 }
7823
Javier Cardonac80d5452010-12-16 17:37:49 -08007824 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01007825}
7826
7827static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
7828{
7829 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7830 struct net_device *dev = info->user_ptr[1];
7831
7832 return cfg80211_leave_mesh(rdev, dev);
7833}
7834
Johannes Bergdfb89c52012-06-27 09:23:48 +02007835#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007836static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
7837 struct cfg80211_registered_device *rdev)
7838{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007839 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007840 struct nlattr *nl_pats, *nl_pat;
7841 int i, pat_len;
7842
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007843 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007844 return 0;
7845
7846 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
7847 if (!nl_pats)
7848 return -ENOBUFS;
7849
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007850 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007851 nl_pat = nla_nest_start(msg, i + 1);
7852 if (!nl_pat)
7853 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007854 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007855 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007856 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007857 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
7858 wowlan->patterns[i].pattern) ||
7859 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007860 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007861 return -ENOBUFS;
7862 nla_nest_end(msg, nl_pat);
7863 }
7864 nla_nest_end(msg, nl_pats);
7865
7866 return 0;
7867}
7868
Johannes Berg2a0e0472013-01-23 22:57:40 +01007869static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
7870 struct cfg80211_wowlan_tcp *tcp)
7871{
7872 struct nlattr *nl_tcp;
7873
7874 if (!tcp)
7875 return 0;
7876
7877 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
7878 if (!nl_tcp)
7879 return -ENOBUFS;
7880
7881 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
7882 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
7883 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
7884 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
7885 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
7886 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
7887 tcp->payload_len, tcp->payload) ||
7888 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
7889 tcp->data_interval) ||
7890 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
7891 tcp->wake_len, tcp->wake_data) ||
7892 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
7893 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
7894 return -ENOBUFS;
7895
7896 if (tcp->payload_seq.len &&
7897 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
7898 sizeof(tcp->payload_seq), &tcp->payload_seq))
7899 return -ENOBUFS;
7900
7901 if (tcp->payload_tok.len &&
7902 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
7903 sizeof(tcp->payload_tok) + tcp->tokens_size,
7904 &tcp->payload_tok))
7905 return -ENOBUFS;
7906
Johannes Berge248ad32013-05-16 10:24:28 +02007907 nla_nest_end(msg, nl_tcp);
7908
Johannes Berg2a0e0472013-01-23 22:57:40 +01007909 return 0;
7910}
7911
Johannes Bergff1b6e62011-05-04 15:37:28 +02007912static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
7913{
7914 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7915 struct sk_buff *msg;
7916 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007917 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02007918
Johannes Berg964dc9e2013-06-03 17:25:34 +02007919 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02007920 return -EOPNOTSUPP;
7921
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007922 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01007923 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007924 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
7925 rdev->wiphy.wowlan_config->tcp->payload_len +
7926 rdev->wiphy.wowlan_config->tcp->wake_len +
7927 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007928 }
7929
7930 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02007931 if (!msg)
7932 return -ENOMEM;
7933
Eric W. Biederman15e47302012-09-07 20:12:54 +00007934 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02007935 NL80211_CMD_GET_WOWLAN);
7936 if (!hdr)
7937 goto nla_put_failure;
7938
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007939 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02007940 struct nlattr *nl_wowlan;
7941
7942 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
7943 if (!nl_wowlan)
7944 goto nla_put_failure;
7945
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007946 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007947 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007948 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007949 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007950 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007951 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007952 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007953 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007954 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007955 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007956 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007957 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007958 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007959 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
7960 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007961
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007962 if (nl80211_send_wowlan_patterns(msg, rdev))
7963 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007964
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007965 if (nl80211_send_wowlan_tcp(msg,
7966 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01007967 goto nla_put_failure;
7968
Johannes Bergff1b6e62011-05-04 15:37:28 +02007969 nla_nest_end(msg, nl_wowlan);
7970 }
7971
7972 genlmsg_end(msg, hdr);
7973 return genlmsg_reply(msg, info);
7974
7975nla_put_failure:
7976 nlmsg_free(msg);
7977 return -ENOBUFS;
7978}
7979
Johannes Berg2a0e0472013-01-23 22:57:40 +01007980static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
7981 struct nlattr *attr,
7982 struct cfg80211_wowlan *trig)
7983{
7984 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
7985 struct cfg80211_wowlan_tcp *cfg;
7986 struct nl80211_wowlan_tcp_data_token *tok = NULL;
7987 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
7988 u32 size;
7989 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
7990 int err, port;
7991
Johannes Berg964dc9e2013-06-03 17:25:34 +02007992 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007993 return -EINVAL;
7994
7995 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
7996 nla_data(attr), nla_len(attr),
7997 nl80211_wowlan_tcp_policy);
7998 if (err)
7999 return err;
8000
8001 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
8002 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
8003 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
8004 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
8005 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
8006 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
8007 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
8008 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
8009 return -EINVAL;
8010
8011 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008012 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008013 return -EINVAL;
8014
8015 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02008016 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01008017 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008018 return -EINVAL;
8019
8020 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008021 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008022 return -EINVAL;
8023
8024 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
8025 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
8026 return -EINVAL;
8027
8028 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
8029 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8030
8031 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8032 tokens_size = tokln - sizeof(*tok);
8033
8034 if (!tok->len || tokens_size % tok->len)
8035 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008036 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008037 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008038 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008039 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008040 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008041 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008042 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008043 return -EINVAL;
8044 if (tok->offset + tok->len > data_size)
8045 return -EINVAL;
8046 }
8047
8048 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
8049 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008050 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008051 return -EINVAL;
8052 if (seq->len == 0 || seq->len > 4)
8053 return -EINVAL;
8054 if (seq->len + seq->offset > data_size)
8055 return -EINVAL;
8056 }
8057
8058 size = sizeof(*cfg);
8059 size += data_size;
8060 size += wake_size + wake_mask_size;
8061 size += tokens_size;
8062
8063 cfg = kzalloc(size, GFP_KERNEL);
8064 if (!cfg)
8065 return -ENOMEM;
8066 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
8067 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
8068 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
8069 ETH_ALEN);
8070 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
8071 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
8072 else
8073 port = 0;
8074#ifdef CONFIG_INET
8075 /* allocate a socket and port for it and use it */
8076 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
8077 IPPROTO_TCP, &cfg->sock, 1);
8078 if (err) {
8079 kfree(cfg);
8080 return err;
8081 }
8082 if (inet_csk_get_port(cfg->sock->sk, port)) {
8083 sock_release(cfg->sock);
8084 kfree(cfg);
8085 return -EADDRINUSE;
8086 }
8087 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8088#else
8089 if (!port) {
8090 kfree(cfg);
8091 return -EINVAL;
8092 }
8093 cfg->src_port = port;
8094#endif
8095
8096 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8097 cfg->payload_len = data_size;
8098 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8099 memcpy((void *)cfg->payload,
8100 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8101 data_size);
8102 if (seq)
8103 cfg->payload_seq = *seq;
8104 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8105 cfg->wake_len = wake_size;
8106 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8107 memcpy((void *)cfg->wake_data,
8108 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8109 wake_size);
8110 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8111 data_size + wake_size;
8112 memcpy((void *)cfg->wake_mask,
8113 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8114 wake_mask_size);
8115 if (tok) {
8116 cfg->tokens_size = tokens_size;
8117 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8118 }
8119
8120 trig->tcp = cfg;
8121
8122 return 0;
8123}
8124
Johannes Bergff1b6e62011-05-04 15:37:28 +02008125static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8126{
8127 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8128 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008129 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008130 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008131 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008132 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008133 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008134
Johannes Berg964dc9e2013-06-03 17:25:34 +02008135 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008136 return -EOPNOTSUPP;
8137
Johannes Bergae33bd82012-07-12 16:25:02 +02008138 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8139 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008140 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008141 goto set_wakeup;
8142 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008143
8144 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8145 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8146 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8147 nl80211_wowlan_policy);
8148 if (err)
8149 return err;
8150
8151 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8152 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8153 return -EINVAL;
8154 new_triggers.any = true;
8155 }
8156
8157 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8158 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8159 return -EINVAL;
8160 new_triggers.disconnect = true;
8161 }
8162
8163 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8164 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8165 return -EINVAL;
8166 new_triggers.magic_pkt = true;
8167 }
8168
Johannes Berg77dbbb12011-07-13 10:48:55 +02008169 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8170 return -EINVAL;
8171
8172 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8173 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8174 return -EINVAL;
8175 new_triggers.gtk_rekey_failure = true;
8176 }
8177
8178 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8179 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8180 return -EINVAL;
8181 new_triggers.eap_identity_req = true;
8182 }
8183
8184 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8185 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8186 return -EINVAL;
8187 new_triggers.four_way_handshake = true;
8188 }
8189
8190 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8191 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8192 return -EINVAL;
8193 new_triggers.rfkill_release = true;
8194 }
8195
Johannes Bergff1b6e62011-05-04 15:37:28 +02008196 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8197 struct nlattr *pat;
8198 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008199 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008200 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008201
8202 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8203 rem)
8204 n_patterns++;
8205 if (n_patterns > wowlan->n_patterns)
8206 return -EINVAL;
8207
8208 new_triggers.patterns = kcalloc(n_patterns,
8209 sizeof(new_triggers.patterns[0]),
8210 GFP_KERNEL);
8211 if (!new_triggers.patterns)
8212 return -ENOMEM;
8213
8214 new_triggers.n_patterns = n_patterns;
8215 i = 0;
8216
8217 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8218 rem) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008219 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8220 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008221 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008222 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8223 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008224 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008225 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008226 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008227 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008228 goto error;
8229 if (pat_len > wowlan->pattern_max_len ||
8230 pat_len < wowlan->pattern_min_len)
8231 goto error;
8232
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008233 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008234 pkt_offset = 0;
8235 else
8236 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008237 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008238 if (pkt_offset > wowlan->max_pkt_offset)
8239 goto error;
8240 new_triggers.patterns[i].pkt_offset = pkt_offset;
8241
Johannes Bergff1b6e62011-05-04 15:37:28 +02008242 new_triggers.patterns[i].mask =
8243 kmalloc(mask_len + pat_len, GFP_KERNEL);
8244 if (!new_triggers.patterns[i].mask) {
8245 err = -ENOMEM;
8246 goto error;
8247 }
8248 new_triggers.patterns[i].pattern =
8249 new_triggers.patterns[i].mask + mask_len;
8250 memcpy(new_triggers.patterns[i].mask,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008251 nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008252 mask_len);
8253 new_triggers.patterns[i].pattern_len = pat_len;
8254 memcpy(new_triggers.patterns[i].pattern,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008255 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008256 pat_len);
8257 i++;
8258 }
8259 }
8260
Johannes Berg2a0e0472013-01-23 22:57:40 +01008261 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8262 err = nl80211_parse_wowlan_tcp(
8263 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8264 &new_triggers);
8265 if (err)
8266 goto error;
8267 }
8268
Johannes Bergae33bd82012-07-12 16:25:02 +02008269 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8270 if (!ntrig) {
8271 err = -ENOMEM;
8272 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008273 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008274 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008275 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008276
Johannes Bergae33bd82012-07-12 16:25:02 +02008277 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008278 if (rdev->ops->set_wakeup &&
8279 prev_enabled != !!rdev->wiphy.wowlan_config)
8280 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008281
Johannes Bergff1b6e62011-05-04 15:37:28 +02008282 return 0;
8283 error:
8284 for (i = 0; i < new_triggers.n_patterns; i++)
8285 kfree(new_triggers.patterns[i].mask);
8286 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008287 if (new_triggers.tcp && new_triggers.tcp->sock)
8288 sock_release(new_triggers.tcp->sock);
8289 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008290 return err;
8291}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008292#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008293
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008294static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8295 struct cfg80211_registered_device *rdev)
8296{
8297 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8298 int i, j, pat_len;
8299 struct cfg80211_coalesce_rules *rule;
8300
8301 if (!rdev->coalesce->n_rules)
8302 return 0;
8303
8304 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8305 if (!nl_rules)
8306 return -ENOBUFS;
8307
8308 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8309 nl_rule = nla_nest_start(msg, i + 1);
8310 if (!nl_rule)
8311 return -ENOBUFS;
8312
8313 rule = &rdev->coalesce->rules[i];
8314 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8315 rule->delay))
8316 return -ENOBUFS;
8317
8318 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8319 rule->condition))
8320 return -ENOBUFS;
8321
8322 nl_pats = nla_nest_start(msg,
8323 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8324 if (!nl_pats)
8325 return -ENOBUFS;
8326
8327 for (j = 0; j < rule->n_patterns; j++) {
8328 nl_pat = nla_nest_start(msg, j + 1);
8329 if (!nl_pat)
8330 return -ENOBUFS;
8331 pat_len = rule->patterns[j].pattern_len;
8332 if (nla_put(msg, NL80211_PKTPAT_MASK,
8333 DIV_ROUND_UP(pat_len, 8),
8334 rule->patterns[j].mask) ||
8335 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8336 rule->patterns[j].pattern) ||
8337 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8338 rule->patterns[j].pkt_offset))
8339 return -ENOBUFS;
8340 nla_nest_end(msg, nl_pat);
8341 }
8342 nla_nest_end(msg, nl_pats);
8343 nla_nest_end(msg, nl_rule);
8344 }
8345 nla_nest_end(msg, nl_rules);
8346
8347 return 0;
8348}
8349
8350static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8351{
8352 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8353 struct sk_buff *msg;
8354 void *hdr;
8355
8356 if (!rdev->wiphy.coalesce)
8357 return -EOPNOTSUPP;
8358
8359 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8360 if (!msg)
8361 return -ENOMEM;
8362
8363 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8364 NL80211_CMD_GET_COALESCE);
8365 if (!hdr)
8366 goto nla_put_failure;
8367
8368 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8369 goto nla_put_failure;
8370
8371 genlmsg_end(msg, hdr);
8372 return genlmsg_reply(msg, info);
8373
8374nla_put_failure:
8375 nlmsg_free(msg);
8376 return -ENOBUFS;
8377}
8378
8379void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8380{
8381 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8382 int i, j;
8383 struct cfg80211_coalesce_rules *rule;
8384
8385 if (!coalesce)
8386 return;
8387
8388 for (i = 0; i < coalesce->n_rules; i++) {
8389 rule = &coalesce->rules[i];
8390 for (j = 0; j < rule->n_patterns; j++)
8391 kfree(rule->patterns[j].mask);
8392 kfree(rule->patterns);
8393 }
8394 kfree(coalesce->rules);
8395 kfree(coalesce);
8396 rdev->coalesce = NULL;
8397}
8398
8399static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8400 struct nlattr *rule,
8401 struct cfg80211_coalesce_rules *new_rule)
8402{
8403 int err, i;
8404 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8405 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8406 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8407 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8408
8409 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8410 nla_len(rule), nl80211_coalesce_policy);
8411 if (err)
8412 return err;
8413
8414 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8415 new_rule->delay =
8416 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8417 if (new_rule->delay > coalesce->max_delay)
8418 return -EINVAL;
8419
8420 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8421 new_rule->condition =
8422 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8423 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8424 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8425 return -EINVAL;
8426
8427 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8428 return -EINVAL;
8429
8430 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8431 rem)
8432 n_patterns++;
8433 if (n_patterns > coalesce->n_patterns)
8434 return -EINVAL;
8435
8436 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8437 GFP_KERNEL);
8438 if (!new_rule->patterns)
8439 return -ENOMEM;
8440
8441 new_rule->n_patterns = n_patterns;
8442 i = 0;
8443
8444 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8445 rem) {
8446 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8447 nla_len(pat), NULL);
8448 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8449 !pat_tb[NL80211_PKTPAT_PATTERN])
8450 return -EINVAL;
8451 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8452 mask_len = DIV_ROUND_UP(pat_len, 8);
8453 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8454 return -EINVAL;
8455 if (pat_len > coalesce->pattern_max_len ||
8456 pat_len < coalesce->pattern_min_len)
8457 return -EINVAL;
8458
8459 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8460 pkt_offset = 0;
8461 else
8462 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8463 if (pkt_offset > coalesce->max_pkt_offset)
8464 return -EINVAL;
8465 new_rule->patterns[i].pkt_offset = pkt_offset;
8466
8467 new_rule->patterns[i].mask =
8468 kmalloc(mask_len + pat_len, GFP_KERNEL);
8469 if (!new_rule->patterns[i].mask)
8470 return -ENOMEM;
8471 new_rule->patterns[i].pattern =
8472 new_rule->patterns[i].mask + mask_len;
8473 memcpy(new_rule->patterns[i].mask,
8474 nla_data(pat_tb[NL80211_PKTPAT_MASK]), mask_len);
8475 new_rule->patterns[i].pattern_len = pat_len;
8476 memcpy(new_rule->patterns[i].pattern,
8477 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]), pat_len);
8478 i++;
8479 }
8480
8481 return 0;
8482}
8483
8484static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8485{
8486 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8487 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8488 struct cfg80211_coalesce new_coalesce = {};
8489 struct cfg80211_coalesce *n_coalesce;
8490 int err, rem_rule, n_rules = 0, i, j;
8491 struct nlattr *rule;
8492 struct cfg80211_coalesce_rules *tmp_rule;
8493
8494 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8495 return -EOPNOTSUPP;
8496
8497 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8498 cfg80211_rdev_free_coalesce(rdev);
8499 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8500 return 0;
8501 }
8502
8503 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8504 rem_rule)
8505 n_rules++;
8506 if (n_rules > coalesce->n_rules)
8507 return -EINVAL;
8508
8509 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8510 GFP_KERNEL);
8511 if (!new_coalesce.rules)
8512 return -ENOMEM;
8513
8514 new_coalesce.n_rules = n_rules;
8515 i = 0;
8516
8517 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8518 rem_rule) {
8519 err = nl80211_parse_coalesce_rule(rdev, rule,
8520 &new_coalesce.rules[i]);
8521 if (err)
8522 goto error;
8523
8524 i++;
8525 }
8526
8527 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8528 if (err)
8529 goto error;
8530
8531 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8532 if (!n_coalesce) {
8533 err = -ENOMEM;
8534 goto error;
8535 }
8536 cfg80211_rdev_free_coalesce(rdev);
8537 rdev->coalesce = n_coalesce;
8538
8539 return 0;
8540error:
8541 for (i = 0; i < new_coalesce.n_rules; i++) {
8542 tmp_rule = &new_coalesce.rules[i];
8543 for (j = 0; j < tmp_rule->n_patterns; j++)
8544 kfree(tmp_rule->patterns[j].mask);
8545 kfree(tmp_rule->patterns);
8546 }
8547 kfree(new_coalesce.rules);
8548
8549 return err;
8550}
8551
Johannes Berge5497d72011-07-05 16:35:40 +02008552static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8553{
8554 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8555 struct net_device *dev = info->user_ptr[1];
8556 struct wireless_dev *wdev = dev->ieee80211_ptr;
8557 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8558 struct cfg80211_gtk_rekey_data rekey_data;
8559 int err;
8560
8561 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8562 return -EINVAL;
8563
8564 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8565 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8566 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8567 nl80211_rekey_policy);
8568 if (err)
8569 return err;
8570
8571 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8572 return -ERANGE;
8573 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8574 return -ERANGE;
8575 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
8576 return -ERANGE;
8577
8578 memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]),
8579 NL80211_KEK_LEN);
8580 memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]),
8581 NL80211_KCK_LEN);
8582 memcpy(rekey_data.replay_ctr,
8583 nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]),
8584 NL80211_REPLAY_CTR_LEN);
8585
8586 wdev_lock(wdev);
8587 if (!wdev->current_bss) {
8588 err = -ENOTCONN;
8589 goto out;
8590 }
8591
8592 if (!rdev->ops->set_rekey_data) {
8593 err = -EOPNOTSUPP;
8594 goto out;
8595 }
8596
Hila Gonene35e4d22012-06-27 17:19:42 +03008597 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02008598 out:
8599 wdev_unlock(wdev);
8600 return err;
8601}
8602
Johannes Berg28946da2011-11-04 11:18:12 +01008603static int nl80211_register_unexpected_frame(struct sk_buff *skb,
8604 struct genl_info *info)
8605{
8606 struct net_device *dev = info->user_ptr[1];
8607 struct wireless_dev *wdev = dev->ieee80211_ptr;
8608
8609 if (wdev->iftype != NL80211_IFTYPE_AP &&
8610 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8611 return -EINVAL;
8612
Eric W. Biederman15e47302012-09-07 20:12:54 +00008613 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01008614 return -EBUSY;
8615
Eric W. Biederman15e47302012-09-07 20:12:54 +00008616 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01008617 return 0;
8618}
8619
Johannes Berg7f6cf312011-11-04 11:18:15 +01008620static int nl80211_probe_client(struct sk_buff *skb,
8621 struct genl_info *info)
8622{
8623 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8624 struct net_device *dev = info->user_ptr[1];
8625 struct wireless_dev *wdev = dev->ieee80211_ptr;
8626 struct sk_buff *msg;
8627 void *hdr;
8628 const u8 *addr;
8629 u64 cookie;
8630 int err;
8631
8632 if (wdev->iftype != NL80211_IFTYPE_AP &&
8633 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8634 return -EOPNOTSUPP;
8635
8636 if (!info->attrs[NL80211_ATTR_MAC])
8637 return -EINVAL;
8638
8639 if (!rdev->ops->probe_client)
8640 return -EOPNOTSUPP;
8641
8642 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8643 if (!msg)
8644 return -ENOMEM;
8645
Eric W. Biederman15e47302012-09-07 20:12:54 +00008646 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01008647 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008648 if (!hdr) {
8649 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008650 goto free_msg;
8651 }
8652
8653 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
8654
Hila Gonene35e4d22012-06-27 17:19:42 +03008655 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01008656 if (err)
8657 goto free_msg;
8658
David S. Miller9360ffd2012-03-29 04:41:26 -04008659 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
8660 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008661
8662 genlmsg_end(msg, hdr);
8663
8664 return genlmsg_reply(msg, info);
8665
8666 nla_put_failure:
8667 err = -ENOBUFS;
8668 free_msg:
8669 nlmsg_free(msg);
8670 return err;
8671}
8672
Johannes Berg5e760232011-11-04 11:18:17 +01008673static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
8674{
8675 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07008676 struct cfg80211_beacon_registration *reg, *nreg;
8677 int rv;
Johannes Berg5e760232011-11-04 11:18:17 +01008678
8679 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
8680 return -EOPNOTSUPP;
8681
Ben Greear37c73b52012-10-26 14:49:25 -07008682 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
8683 if (!nreg)
8684 return -ENOMEM;
Johannes Berg5e760232011-11-04 11:18:17 +01008685
Ben Greear37c73b52012-10-26 14:49:25 -07008686 /* First, check if already registered. */
8687 spin_lock_bh(&rdev->beacon_registrations_lock);
8688 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
8689 if (reg->nlportid == info->snd_portid) {
8690 rv = -EALREADY;
8691 goto out_err;
8692 }
8693 }
8694 /* Add it to the list */
8695 nreg->nlportid = info->snd_portid;
8696 list_add(&nreg->list, &rdev->beacon_registrations);
8697
8698 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +01008699
8700 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07008701out_err:
8702 spin_unlock_bh(&rdev->beacon_registrations_lock);
8703 kfree(nreg);
8704 return rv;
Johannes Berg5e760232011-11-04 11:18:17 +01008705}
8706
Johannes Berg98104fde2012-06-16 00:19:54 +02008707static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
8708{
8709 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8710 struct wireless_dev *wdev = info->user_ptr[1];
8711 int err;
8712
8713 if (!rdev->ops->start_p2p_device)
8714 return -EOPNOTSUPP;
8715
8716 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8717 return -EOPNOTSUPP;
8718
8719 if (wdev->p2p_started)
8720 return 0;
8721
Johannes Berg98104fde2012-06-16 00:19:54 +02008722 err = cfg80211_can_add_interface(rdev, wdev->iftype);
Johannes Berg98104fde2012-06-16 00:19:54 +02008723 if (err)
8724 return err;
8725
Johannes Bergeeb126e2012-10-23 15:16:50 +02008726 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008727 if (err)
8728 return err;
8729
8730 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02008731 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02008732
8733 return 0;
8734}
8735
8736static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
8737{
8738 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8739 struct wireless_dev *wdev = info->user_ptr[1];
8740
8741 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8742 return -EOPNOTSUPP;
8743
8744 if (!rdev->ops->stop_p2p_device)
8745 return -EOPNOTSUPP;
8746
Johannes Bergf9f47522013-03-19 15:04:07 +01008747 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008748
8749 return 0;
8750}
8751
Johannes Berg3713b4e2013-02-14 16:19:38 +01008752static int nl80211_get_protocol_features(struct sk_buff *skb,
8753 struct genl_info *info)
8754{
8755 void *hdr;
8756 struct sk_buff *msg;
8757
8758 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8759 if (!msg)
8760 return -ENOMEM;
8761
8762 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8763 NL80211_CMD_GET_PROTOCOL_FEATURES);
8764 if (!hdr)
8765 goto nla_put_failure;
8766
8767 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
8768 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
8769 goto nla_put_failure;
8770
8771 genlmsg_end(msg, hdr);
8772 return genlmsg_reply(msg, info);
8773
8774 nla_put_failure:
8775 kfree_skb(msg);
8776 return -ENOBUFS;
8777}
8778
Jouni Malinen355199e2013-02-27 17:14:27 +02008779static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
8780{
8781 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8782 struct cfg80211_update_ft_ies_params ft_params;
8783 struct net_device *dev = info->user_ptr[1];
8784
8785 if (!rdev->ops->update_ft_ies)
8786 return -EOPNOTSUPP;
8787
8788 if (!info->attrs[NL80211_ATTR_MDID] ||
8789 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
8790 return -EINVAL;
8791
8792 memset(&ft_params, 0, sizeof(ft_params));
8793 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
8794 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
8795 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
8796
8797 return rdev_update_ft_ies(rdev, dev, &ft_params);
8798}
8799
Arend van Spriel5de17982013-04-18 15:49:00 +02008800static int nl80211_crit_protocol_start(struct sk_buff *skb,
8801 struct genl_info *info)
8802{
8803 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8804 struct wireless_dev *wdev = info->user_ptr[1];
8805 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
8806 u16 duration;
8807 int ret;
8808
8809 if (!rdev->ops->crit_proto_start)
8810 return -EOPNOTSUPP;
8811
8812 if (WARN_ON(!rdev->ops->crit_proto_stop))
8813 return -EINVAL;
8814
8815 if (rdev->crit_proto_nlportid)
8816 return -EBUSY;
8817
8818 /* determine protocol if provided */
8819 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
8820 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
8821
8822 if (proto >= NUM_NL80211_CRIT_PROTO)
8823 return -EINVAL;
8824
8825 /* timeout must be provided */
8826 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
8827 return -EINVAL;
8828
8829 duration =
8830 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
8831
8832 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
8833 return -ERANGE;
8834
8835 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
8836 if (!ret)
8837 rdev->crit_proto_nlportid = info->snd_portid;
8838
8839 return ret;
8840}
8841
8842static int nl80211_crit_protocol_stop(struct sk_buff *skb,
8843 struct genl_info *info)
8844{
8845 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8846 struct wireless_dev *wdev = info->user_ptr[1];
8847
8848 if (!rdev->ops->crit_proto_stop)
8849 return -EOPNOTSUPP;
8850
8851 if (rdev->crit_proto_nlportid) {
8852 rdev->crit_proto_nlportid = 0;
8853 rdev_crit_proto_stop(rdev, wdev);
8854 }
8855 return 0;
8856}
8857
Johannes Berg4c476992010-10-04 21:36:35 +02008858#define NL80211_FLAG_NEED_WIPHY 0x01
8859#define NL80211_FLAG_NEED_NETDEV 0x02
8860#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02008861#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
8862#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
8863 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02008864#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02008865/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02008866#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
8867 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg4c476992010-10-04 21:36:35 +02008868
Johannes Bergf84f7712013-11-14 17:14:45 +01008869static int nl80211_pre_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +02008870 struct genl_info *info)
8871{
8872 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02008873 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008874 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02008875 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
8876
8877 if (rtnl)
8878 rtnl_lock();
8879
8880 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02008881 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02008882 if (IS_ERR(rdev)) {
8883 if (rtnl)
8884 rtnl_unlock();
8885 return PTR_ERR(rdev);
8886 }
8887 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02008888 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
8889 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008890 ASSERT_RTNL();
8891
Johannes Berg89a54e42012-06-15 14:33:17 +02008892 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
8893 info->attrs);
8894 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02008895 if (rtnl)
8896 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02008897 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02008898 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008899
Johannes Berg89a54e42012-06-15 14:33:17 +02008900 dev = wdev->netdev;
8901 rdev = wiphy_to_dev(wdev->wiphy);
8902
Johannes Berg1bf614e2012-06-15 15:23:36 +02008903 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
8904 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008905 if (rtnl)
8906 rtnl_unlock();
8907 return -EINVAL;
8908 }
8909
8910 info->user_ptr[1] = dev;
8911 } else {
8912 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02008913 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008914
Johannes Berg1bf614e2012-06-15 15:23:36 +02008915 if (dev) {
8916 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
8917 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008918 if (rtnl)
8919 rtnl_unlock();
8920 return -ENETDOWN;
8921 }
8922
8923 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008924 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
8925 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02008926 if (rtnl)
8927 rtnl_unlock();
8928 return -ENETDOWN;
8929 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02008930 }
8931
Johannes Berg4c476992010-10-04 21:36:35 +02008932 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008933 }
8934
8935 return 0;
8936}
8937
Johannes Bergf84f7712013-11-14 17:14:45 +01008938static void nl80211_post_doit(const struct genl_ops *ops, struct sk_buff *skb,
Johannes Berg4c476992010-10-04 21:36:35 +02008939 struct genl_info *info)
8940{
Johannes Berg1bf614e2012-06-15 15:23:36 +02008941 if (info->user_ptr[1]) {
8942 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
8943 struct wireless_dev *wdev = info->user_ptr[1];
8944
8945 if (wdev->netdev)
8946 dev_put(wdev->netdev);
8947 } else {
8948 dev_put(info->user_ptr[1]);
8949 }
8950 }
Johannes Berg4c476992010-10-04 21:36:35 +02008951 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
8952 rtnl_unlock();
8953}
8954
Johannes Berg4534de82013-11-14 17:14:46 +01008955static const struct genl_ops nl80211_ops[] = {
Johannes Berg55682962007-09-20 13:09:35 -04008956 {
8957 .cmd = NL80211_CMD_GET_WIPHY,
8958 .doit = nl80211_get_wiphy,
8959 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02008960 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04008961 .policy = nl80211_policy,
8962 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008963 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8964 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008965 },
8966 {
8967 .cmd = NL80211_CMD_SET_WIPHY,
8968 .doit = nl80211_set_wiphy,
8969 .policy = nl80211_policy,
8970 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008971 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008972 },
8973 {
8974 .cmd = NL80211_CMD_GET_INTERFACE,
8975 .doit = nl80211_get_interface,
8976 .dumpit = nl80211_dump_interface,
8977 .policy = nl80211_policy,
8978 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008979 .internal_flags = NL80211_FLAG_NEED_WDEV |
8980 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008981 },
8982 {
8983 .cmd = NL80211_CMD_SET_INTERFACE,
8984 .doit = nl80211_set_interface,
8985 .policy = nl80211_policy,
8986 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008987 .internal_flags = NL80211_FLAG_NEED_NETDEV |
8988 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008989 },
8990 {
8991 .cmd = NL80211_CMD_NEW_INTERFACE,
8992 .doit = nl80211_new_interface,
8993 .policy = nl80211_policy,
8994 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008995 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8996 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008997 },
8998 {
8999 .cmd = NL80211_CMD_DEL_INTERFACE,
9000 .doit = nl80211_del_interface,
9001 .policy = nl80211_policy,
9002 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02009003 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009004 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04009005 },
Johannes Berg41ade002007-12-19 02:03:29 +01009006 {
9007 .cmd = NL80211_CMD_GET_KEY,
9008 .doit = nl80211_get_key,
9009 .policy = nl80211_policy,
9010 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009011 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009012 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009013 },
9014 {
9015 .cmd = NL80211_CMD_SET_KEY,
9016 .doit = nl80211_set_key,
9017 .policy = nl80211_policy,
9018 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009019 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009020 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009021 },
9022 {
9023 .cmd = NL80211_CMD_NEW_KEY,
9024 .doit = nl80211_new_key,
9025 .policy = nl80211_policy,
9026 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009027 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009028 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009029 },
9030 {
9031 .cmd = NL80211_CMD_DEL_KEY,
9032 .doit = nl80211_del_key,
9033 .policy = nl80211_policy,
9034 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009035 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009036 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009037 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01009038 {
9039 .cmd = NL80211_CMD_SET_BEACON,
9040 .policy = nl80211_policy,
9041 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009042 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009043 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009044 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009045 },
9046 {
Johannes Berg88600202012-02-13 15:17:18 +01009047 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009048 .policy = nl80211_policy,
9049 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009050 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009051 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009052 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009053 },
9054 {
Johannes Berg88600202012-02-13 15:17:18 +01009055 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009056 .policy = nl80211_policy,
9057 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009058 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009059 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009060 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009061 },
Johannes Berg5727ef12007-12-19 02:03:34 +01009062 {
9063 .cmd = NL80211_CMD_GET_STATION,
9064 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009065 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01009066 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02009067 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9068 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009069 },
9070 {
9071 .cmd = NL80211_CMD_SET_STATION,
9072 .doit = nl80211_set_station,
9073 .policy = nl80211_policy,
9074 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009075 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009076 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009077 },
9078 {
9079 .cmd = NL80211_CMD_NEW_STATION,
9080 .doit = nl80211_new_station,
9081 .policy = nl80211_policy,
9082 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009083 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009084 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009085 },
9086 {
9087 .cmd = NL80211_CMD_DEL_STATION,
9088 .doit = nl80211_del_station,
9089 .policy = nl80211_policy,
9090 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009091 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009092 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009093 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009094 {
9095 .cmd = NL80211_CMD_GET_MPATH,
9096 .doit = nl80211_get_mpath,
9097 .dumpit = nl80211_dump_mpath,
9098 .policy = nl80211_policy,
9099 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009100 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009101 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009102 },
9103 {
9104 .cmd = NL80211_CMD_SET_MPATH,
9105 .doit = nl80211_set_mpath,
9106 .policy = nl80211_policy,
9107 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009108 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009109 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009110 },
9111 {
9112 .cmd = NL80211_CMD_NEW_MPATH,
9113 .doit = nl80211_new_mpath,
9114 .policy = nl80211_policy,
9115 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009116 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009117 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009118 },
9119 {
9120 .cmd = NL80211_CMD_DEL_MPATH,
9121 .doit = nl80211_del_mpath,
9122 .policy = nl80211_policy,
9123 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009124 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009125 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009126 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009127 {
9128 .cmd = NL80211_CMD_SET_BSS,
9129 .doit = nl80211_set_bss,
9130 .policy = nl80211_policy,
9131 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009132 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009133 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009134 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009135 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009136 .cmd = NL80211_CMD_GET_REG,
9137 .doit = nl80211_get_reg,
9138 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009139 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009140 /* can be retrieved by unprivileged users */
9141 },
9142 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009143 .cmd = NL80211_CMD_SET_REG,
9144 .doit = nl80211_set_reg,
9145 .policy = nl80211_policy,
9146 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009147 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009148 },
9149 {
9150 .cmd = NL80211_CMD_REQ_SET_REG,
9151 .doit = nl80211_req_set_reg,
9152 .policy = nl80211_policy,
9153 .flags = GENL_ADMIN_PERM,
9154 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009155 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009156 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9157 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009158 .policy = nl80211_policy,
9159 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009160 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009161 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009162 },
9163 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009164 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9165 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009166 .policy = nl80211_policy,
9167 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009168 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009169 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009170 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009171 {
Johannes Berg2a519312009-02-10 21:25:55 +01009172 .cmd = NL80211_CMD_TRIGGER_SCAN,
9173 .doit = nl80211_trigger_scan,
9174 .policy = nl80211_policy,
9175 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009176 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009177 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009178 },
9179 {
9180 .cmd = NL80211_CMD_GET_SCAN,
9181 .policy = nl80211_policy,
9182 .dumpit = nl80211_dump_scan,
9183 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009184 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009185 .cmd = NL80211_CMD_START_SCHED_SCAN,
9186 .doit = nl80211_start_sched_scan,
9187 .policy = nl80211_policy,
9188 .flags = GENL_ADMIN_PERM,
9189 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9190 NL80211_FLAG_NEED_RTNL,
9191 },
9192 {
9193 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9194 .doit = nl80211_stop_sched_scan,
9195 .policy = nl80211_policy,
9196 .flags = GENL_ADMIN_PERM,
9197 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9198 NL80211_FLAG_NEED_RTNL,
9199 },
9200 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009201 .cmd = NL80211_CMD_AUTHENTICATE,
9202 .doit = nl80211_authenticate,
9203 .policy = nl80211_policy,
9204 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009205 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009206 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009207 },
9208 {
9209 .cmd = NL80211_CMD_ASSOCIATE,
9210 .doit = nl80211_associate,
9211 .policy = nl80211_policy,
9212 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009213 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009214 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009215 },
9216 {
9217 .cmd = NL80211_CMD_DEAUTHENTICATE,
9218 .doit = nl80211_deauthenticate,
9219 .policy = nl80211_policy,
9220 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009221 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009222 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009223 },
9224 {
9225 .cmd = NL80211_CMD_DISASSOCIATE,
9226 .doit = nl80211_disassociate,
9227 .policy = nl80211_policy,
9228 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009229 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009230 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009231 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009232 {
9233 .cmd = NL80211_CMD_JOIN_IBSS,
9234 .doit = nl80211_join_ibss,
9235 .policy = nl80211_policy,
9236 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009237 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009238 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009239 },
9240 {
9241 .cmd = NL80211_CMD_LEAVE_IBSS,
9242 .doit = nl80211_leave_ibss,
9243 .policy = nl80211_policy,
9244 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009245 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009246 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009247 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009248#ifdef CONFIG_NL80211_TESTMODE
9249 {
9250 .cmd = NL80211_CMD_TESTMODE,
9251 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009252 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009253 .policy = nl80211_policy,
9254 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009255 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9256 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009257 },
9258#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009259 {
9260 .cmd = NL80211_CMD_CONNECT,
9261 .doit = nl80211_connect,
9262 .policy = nl80211_policy,
9263 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009264 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009265 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009266 },
9267 {
9268 .cmd = NL80211_CMD_DISCONNECT,
9269 .doit = nl80211_disconnect,
9270 .policy = nl80211_policy,
9271 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009272 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009273 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009274 },
Johannes Berg463d0182009-07-14 00:33:35 +02009275 {
9276 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9277 .doit = nl80211_wiphy_netns,
9278 .policy = nl80211_policy,
9279 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009280 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9281 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009282 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009283 {
9284 .cmd = NL80211_CMD_GET_SURVEY,
9285 .policy = nl80211_policy,
9286 .dumpit = nl80211_dump_survey,
9287 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009288 {
9289 .cmd = NL80211_CMD_SET_PMKSA,
9290 .doit = nl80211_setdel_pmksa,
9291 .policy = nl80211_policy,
9292 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009293 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009294 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009295 },
9296 {
9297 .cmd = NL80211_CMD_DEL_PMKSA,
9298 .doit = nl80211_setdel_pmksa,
9299 .policy = nl80211_policy,
9300 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009301 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009302 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009303 },
9304 {
9305 .cmd = NL80211_CMD_FLUSH_PMKSA,
9306 .doit = nl80211_flush_pmksa,
9307 .policy = nl80211_policy,
9308 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009309 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009310 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009311 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009312 {
9313 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9314 .doit = nl80211_remain_on_channel,
9315 .policy = nl80211_policy,
9316 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009317 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009318 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009319 },
9320 {
9321 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9322 .doit = nl80211_cancel_remain_on_channel,
9323 .policy = nl80211_policy,
9324 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009325 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009326 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009327 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009328 {
9329 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
9330 .doit = nl80211_set_tx_bitrate_mask,
9331 .policy = nl80211_policy,
9332 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009333 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9334 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009335 },
Jouni Malinen026331c2010-02-15 12:53:10 +02009336 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009337 .cmd = NL80211_CMD_REGISTER_FRAME,
9338 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009339 .policy = nl80211_policy,
9340 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009341 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009342 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009343 },
9344 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009345 .cmd = NL80211_CMD_FRAME,
9346 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009347 .policy = nl80211_policy,
9348 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009349 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009350 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009351 },
Kalle Valoffb9eb32010-02-17 17:58:10 +02009352 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009353 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
9354 .doit = nl80211_tx_mgmt_cancel_wait,
9355 .policy = nl80211_policy,
9356 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009357 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009358 NL80211_FLAG_NEED_RTNL,
9359 },
9360 {
Kalle Valoffb9eb32010-02-17 17:58:10 +02009361 .cmd = NL80211_CMD_SET_POWER_SAVE,
9362 .doit = nl80211_set_power_save,
9363 .policy = nl80211_policy,
9364 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009365 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9366 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009367 },
9368 {
9369 .cmd = NL80211_CMD_GET_POWER_SAVE,
9370 .doit = nl80211_get_power_save,
9371 .policy = nl80211_policy,
9372 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +02009373 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9374 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009375 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009376 {
9377 .cmd = NL80211_CMD_SET_CQM,
9378 .doit = nl80211_set_cqm,
9379 .policy = nl80211_policy,
9380 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009381 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9382 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009383 },
Johannes Bergf444de02010-05-05 15:25:02 +02009384 {
9385 .cmd = NL80211_CMD_SET_CHANNEL,
9386 .doit = nl80211_set_channel,
9387 .policy = nl80211_policy,
9388 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009389 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9390 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +02009391 },
Bill Jordane8347eb2010-10-01 13:54:28 -04009392 {
9393 .cmd = NL80211_CMD_SET_WDS_PEER,
9394 .doit = nl80211_set_wds_peer,
9395 .policy = nl80211_policy,
9396 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +02009397 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9398 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -04009399 },
Johannes Berg29cbe682010-12-03 09:20:44 +01009400 {
9401 .cmd = NL80211_CMD_JOIN_MESH,
9402 .doit = nl80211_join_mesh,
9403 .policy = nl80211_policy,
9404 .flags = GENL_ADMIN_PERM,
9405 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9406 NL80211_FLAG_NEED_RTNL,
9407 },
9408 {
9409 .cmd = NL80211_CMD_LEAVE_MESH,
9410 .doit = nl80211_leave_mesh,
9411 .policy = nl80211_policy,
9412 .flags = GENL_ADMIN_PERM,
9413 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9414 NL80211_FLAG_NEED_RTNL,
9415 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009416#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02009417 {
9418 .cmd = NL80211_CMD_GET_WOWLAN,
9419 .doit = nl80211_get_wowlan,
9420 .policy = nl80211_policy,
9421 /* can be retrieved by unprivileged users */
9422 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9423 NL80211_FLAG_NEED_RTNL,
9424 },
9425 {
9426 .cmd = NL80211_CMD_SET_WOWLAN,
9427 .doit = nl80211_set_wowlan,
9428 .policy = nl80211_policy,
9429 .flags = GENL_ADMIN_PERM,
9430 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9431 NL80211_FLAG_NEED_RTNL,
9432 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009433#endif
Johannes Berge5497d72011-07-05 16:35:40 +02009434 {
9435 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
9436 .doit = nl80211_set_rekey_data,
9437 .policy = nl80211_policy,
9438 .flags = GENL_ADMIN_PERM,
9439 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9440 NL80211_FLAG_NEED_RTNL,
9441 },
Arik Nemtsov109086c2011-09-28 14:12:50 +03009442 {
9443 .cmd = NL80211_CMD_TDLS_MGMT,
9444 .doit = nl80211_tdls_mgmt,
9445 .policy = nl80211_policy,
9446 .flags = GENL_ADMIN_PERM,
9447 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9448 NL80211_FLAG_NEED_RTNL,
9449 },
9450 {
9451 .cmd = NL80211_CMD_TDLS_OPER,
9452 .doit = nl80211_tdls_oper,
9453 .policy = nl80211_policy,
9454 .flags = GENL_ADMIN_PERM,
9455 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9456 NL80211_FLAG_NEED_RTNL,
9457 },
Johannes Berg28946da2011-11-04 11:18:12 +01009458 {
9459 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
9460 .doit = nl80211_register_unexpected_frame,
9461 .policy = nl80211_policy,
9462 .flags = GENL_ADMIN_PERM,
9463 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9464 NL80211_FLAG_NEED_RTNL,
9465 },
Johannes Berg7f6cf312011-11-04 11:18:15 +01009466 {
9467 .cmd = NL80211_CMD_PROBE_CLIENT,
9468 .doit = nl80211_probe_client,
9469 .policy = nl80211_policy,
9470 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009471 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +01009472 NL80211_FLAG_NEED_RTNL,
9473 },
Johannes Berg5e760232011-11-04 11:18:17 +01009474 {
9475 .cmd = NL80211_CMD_REGISTER_BEACONS,
9476 .doit = nl80211_register_beacons,
9477 .policy = nl80211_policy,
9478 .flags = GENL_ADMIN_PERM,
9479 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9480 NL80211_FLAG_NEED_RTNL,
9481 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01009482 {
9483 .cmd = NL80211_CMD_SET_NOACK_MAP,
9484 .doit = nl80211_set_noack_map,
9485 .policy = nl80211_policy,
9486 .flags = GENL_ADMIN_PERM,
9487 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9488 NL80211_FLAG_NEED_RTNL,
9489 },
Johannes Berg98104fde2012-06-16 00:19:54 +02009490 {
9491 .cmd = NL80211_CMD_START_P2P_DEVICE,
9492 .doit = nl80211_start_p2p_device,
9493 .policy = nl80211_policy,
9494 .flags = GENL_ADMIN_PERM,
9495 .internal_flags = NL80211_FLAG_NEED_WDEV |
9496 NL80211_FLAG_NEED_RTNL,
9497 },
9498 {
9499 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
9500 .doit = nl80211_stop_p2p_device,
9501 .policy = nl80211_policy,
9502 .flags = GENL_ADMIN_PERM,
9503 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9504 NL80211_FLAG_NEED_RTNL,
9505 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +01009506 {
9507 .cmd = NL80211_CMD_SET_MCAST_RATE,
9508 .doit = nl80211_set_mcast_rate,
9509 .policy = nl80211_policy,
9510 .flags = GENL_ADMIN_PERM,
9511 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9512 NL80211_FLAG_NEED_RTNL,
9513 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05309514 {
9515 .cmd = NL80211_CMD_SET_MAC_ACL,
9516 .doit = nl80211_set_mac_acl,
9517 .policy = nl80211_policy,
9518 .flags = GENL_ADMIN_PERM,
9519 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9520 NL80211_FLAG_NEED_RTNL,
9521 },
Simon Wunderlich04f39042013-02-08 18:16:19 +01009522 {
9523 .cmd = NL80211_CMD_RADAR_DETECT,
9524 .doit = nl80211_start_radar_detection,
9525 .policy = nl80211_policy,
9526 .flags = GENL_ADMIN_PERM,
9527 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9528 NL80211_FLAG_NEED_RTNL,
9529 },
Johannes Berg3713b4e2013-02-14 16:19:38 +01009530 {
9531 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
9532 .doit = nl80211_get_protocol_features,
9533 .policy = nl80211_policy,
9534 },
Jouni Malinen355199e2013-02-27 17:14:27 +02009535 {
9536 .cmd = NL80211_CMD_UPDATE_FT_IES,
9537 .doit = nl80211_update_ft_ies,
9538 .policy = nl80211_policy,
9539 .flags = GENL_ADMIN_PERM,
9540 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9541 NL80211_FLAG_NEED_RTNL,
9542 },
Arend van Spriel5de17982013-04-18 15:49:00 +02009543 {
9544 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
9545 .doit = nl80211_crit_protocol_start,
9546 .policy = nl80211_policy,
9547 .flags = GENL_ADMIN_PERM,
9548 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9549 NL80211_FLAG_NEED_RTNL,
9550 },
9551 {
9552 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
9553 .doit = nl80211_crit_protocol_stop,
9554 .policy = nl80211_policy,
9555 .flags = GENL_ADMIN_PERM,
9556 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9557 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07009558 },
9559 {
9560 .cmd = NL80211_CMD_GET_COALESCE,
9561 .doit = nl80211_get_coalesce,
9562 .policy = nl80211_policy,
9563 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9564 NL80211_FLAG_NEED_RTNL,
9565 },
9566 {
9567 .cmd = NL80211_CMD_SET_COALESCE,
9568 .doit = nl80211_set_coalesce,
9569 .policy = nl80211_policy,
9570 .flags = GENL_ADMIN_PERM,
9571 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9572 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02009573 },
9574 {
9575 .cmd = NL80211_CMD_CHANNEL_SWITCH,
9576 .doit = nl80211_channel_switch,
9577 .policy = nl80211_policy,
9578 .flags = GENL_ADMIN_PERM,
9579 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9580 NL80211_FLAG_NEED_RTNL,
9581 },
Johannes Berg55682962007-09-20 13:09:35 -04009582};
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009583
Johannes Berg55682962007-09-20 13:09:35 -04009584/* notification functions */
9585
9586void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
9587{
9588 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +02009589 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04009590
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009591 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009592 if (!msg)
9593 return;
9594
Johannes Berg86e8cf92013-06-19 10:57:22 +02009595 if (nl80211_send_wiphy(rdev, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -04009596 nlmsg_free(msg);
9597 return;
9598 }
9599
Johannes Berg68eb5502013-11-19 15:19:38 +01009600 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009601 NL80211_MCGRP_CONFIG, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009602}
9603
Johannes Berg362a4152009-05-24 16:43:15 +02009604static int nl80211_add_scan_req(struct sk_buff *msg,
9605 struct cfg80211_registered_device *rdev)
9606{
9607 struct cfg80211_scan_request *req = rdev->scan_req;
9608 struct nlattr *nest;
9609 int i;
9610
9611 if (WARN_ON(!req))
9612 return 0;
9613
9614 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
9615 if (!nest)
9616 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009617 for (i = 0; i < req->n_ssids; i++) {
9618 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
9619 goto nla_put_failure;
9620 }
Johannes Berg362a4152009-05-24 16:43:15 +02009621 nla_nest_end(msg, nest);
9622
9623 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
9624 if (!nest)
9625 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009626 for (i = 0; i < req->n_channels; i++) {
9627 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
9628 goto nla_put_failure;
9629 }
Johannes Berg362a4152009-05-24 16:43:15 +02009630 nla_nest_end(msg, nest);
9631
David S. Miller9360ffd2012-03-29 04:41:26 -04009632 if (req->ie &&
9633 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
9634 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +02009635
Johannes Bergae917c92013-10-25 11:05:22 +02009636 if (req->flags &&
9637 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags))
9638 goto nla_put_failure;
Sam Lefflered4737712012-10-11 21:03:31 -07009639
Johannes Berg362a4152009-05-24 16:43:15 +02009640 return 0;
9641 nla_put_failure:
9642 return -ENOBUFS;
9643}
9644
Johannes Berga538e2d2009-06-16 19:56:42 +02009645static int nl80211_send_scan_msg(struct sk_buff *msg,
9646 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009647 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009648 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +02009649 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +01009650{
9651 void *hdr;
9652
Eric W. Biederman15e47302012-09-07 20:12:54 +00009653 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +01009654 if (!hdr)
9655 return -1;
9656
David S. Miller9360ffd2012-03-29 04:41:26 -04009657 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +02009658 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
9659 wdev->netdev->ifindex)) ||
9660 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
David S. Miller9360ffd2012-03-29 04:41:26 -04009661 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01009662
Johannes Berg362a4152009-05-24 16:43:15 +02009663 /* ignore errors and send incomplete event anyway */
9664 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01009665
9666 return genlmsg_end(msg, hdr);
9667
9668 nla_put_failure:
9669 genlmsg_cancel(msg, hdr);
9670 return -EMSGSIZE;
9671}
9672
Luciano Coelho807f8a82011-05-11 17:09:35 +03009673static int
9674nl80211_send_sched_scan_msg(struct sk_buff *msg,
9675 struct cfg80211_registered_device *rdev,
9676 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009677 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +03009678{
9679 void *hdr;
9680
Eric W. Biederman15e47302012-09-07 20:12:54 +00009681 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009682 if (!hdr)
9683 return -1;
9684
David S. Miller9360ffd2012-03-29 04:41:26 -04009685 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9686 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
9687 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +03009688
9689 return genlmsg_end(msg, hdr);
9690
9691 nla_put_failure:
9692 genlmsg_cancel(msg, hdr);
9693 return -EMSGSIZE;
9694}
9695
Johannes Berga538e2d2009-06-16 19:56:42 +02009696void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009697 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +02009698{
9699 struct sk_buff *msg;
9700
Thomas Graf58050fc2012-06-28 03:57:45 +00009701 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009702 if (!msg)
9703 return;
9704
Johannes Bergfd014282012-06-18 19:17:03 +02009705 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009706 NL80211_CMD_TRIGGER_SCAN) < 0) {
9707 nlmsg_free(msg);
9708 return;
9709 }
9710
Johannes Berg68eb5502013-11-19 15:19:38 +01009711 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009712 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009713}
9714
Johannes Berg2a519312009-02-10 21:25:55 +01009715void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009716 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009717{
9718 struct sk_buff *msg;
9719
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009720 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009721 if (!msg)
9722 return;
9723
Johannes Bergfd014282012-06-18 19:17:03 +02009724 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009725 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009726 nlmsg_free(msg);
9727 return;
9728 }
9729
Johannes Berg68eb5502013-11-19 15:19:38 +01009730 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009731 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009732}
9733
9734void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009735 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009736{
9737 struct sk_buff *msg;
9738
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009739 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009740 if (!msg)
9741 return;
9742
Johannes Bergfd014282012-06-18 19:17:03 +02009743 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009744 NL80211_CMD_SCAN_ABORTED) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009745 nlmsg_free(msg);
9746 return;
9747 }
9748
Johannes Berg68eb5502013-11-19 15:19:38 +01009749 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009750 NL80211_MCGRP_SCAN, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009751}
9752
Luciano Coelho807f8a82011-05-11 17:09:35 +03009753void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
9754 struct net_device *netdev)
9755{
9756 struct sk_buff *msg;
9757
9758 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9759 if (!msg)
9760 return;
9761
9762 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
9763 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
9764 nlmsg_free(msg);
9765 return;
9766 }
9767
Johannes Berg68eb5502013-11-19 15:19:38 +01009768 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009769 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009770}
9771
9772void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
9773 struct net_device *netdev, u32 cmd)
9774{
9775 struct sk_buff *msg;
9776
Thomas Graf58050fc2012-06-28 03:57:45 +00009777 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009778 if (!msg)
9779 return;
9780
9781 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
9782 nlmsg_free(msg);
9783 return;
9784 }
9785
Johannes Berg68eb5502013-11-19 15:19:38 +01009786 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009787 NL80211_MCGRP_SCAN, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009788}
9789
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009790/*
9791 * This can happen on global regulatory changes or device specific settings
9792 * based on custom world regulatory domains.
9793 */
9794void nl80211_send_reg_change_event(struct regulatory_request *request)
9795{
9796 struct sk_buff *msg;
9797 void *hdr;
9798
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009799 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009800 if (!msg)
9801 return;
9802
9803 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
9804 if (!hdr) {
9805 nlmsg_free(msg);
9806 return;
9807 }
9808
9809 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -04009810 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
9811 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009812
David S. Miller9360ffd2012-03-29 04:41:26 -04009813 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
9814 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9815 NL80211_REGDOM_TYPE_WORLD))
9816 goto nla_put_failure;
9817 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
9818 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9819 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
9820 goto nla_put_failure;
9821 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
9822 request->intersect) {
9823 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9824 NL80211_REGDOM_TYPE_INTERSECTION))
9825 goto nla_put_failure;
9826 } else {
9827 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9828 NL80211_REGDOM_TYPE_COUNTRY) ||
9829 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
9830 request->alpha2))
9831 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009832 }
9833
Johannes Bergf4173762012-12-03 18:23:37 +01009834 if (request->wiphy_idx != WIPHY_IDX_INVALID &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009835 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
9836 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009837
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009838 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009839
Johannes Bergbc43b282009-07-25 10:54:13 +02009840 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +01009841 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009842 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Bergbc43b282009-07-25 10:54:13 +02009843 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009844
9845 return;
9846
9847nla_put_failure:
9848 genlmsg_cancel(msg, hdr);
9849 nlmsg_free(msg);
9850}
9851
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009852static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
9853 struct net_device *netdev,
9854 const u8 *buf, size_t len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009855 enum nl80211_commands cmd, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009856{
9857 struct sk_buff *msg;
9858 void *hdr;
9859
Johannes Berge6d6e342009-07-01 21:26:47 +02009860 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009861 if (!msg)
9862 return;
9863
9864 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9865 if (!hdr) {
9866 nlmsg_free(msg);
9867 return;
9868 }
9869
David S. Miller9360ffd2012-03-29 04:41:26 -04009870 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9871 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9872 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
9873 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009874
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009875 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009876
Johannes Berg68eb5502013-11-19 15:19:38 +01009877 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009878 NL80211_MCGRP_MLME, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009879 return;
9880
9881 nla_put_failure:
9882 genlmsg_cancel(msg, hdr);
9883 nlmsg_free(msg);
9884}
9885
9886void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009887 struct net_device *netdev, const u8 *buf,
9888 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009889{
9890 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009891 NL80211_CMD_AUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009892}
9893
9894void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
9895 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009896 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009897{
Johannes Berge6d6e342009-07-01 21:26:47 +02009898 nl80211_send_mlme_event(rdev, netdev, buf, len,
9899 NL80211_CMD_ASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009900}
9901
Jouni Malinen53b46b82009-03-27 20:53:56 +02009902void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009903 struct net_device *netdev, const u8 *buf,
9904 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009905{
9906 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009907 NL80211_CMD_DEAUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009908}
9909
Jouni Malinen53b46b82009-03-27 20:53:56 +02009910void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
9911 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009912 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009913{
9914 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009915 NL80211_CMD_DISASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009916}
9917
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009918void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
9919 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +02009920{
Johannes Berg947add32013-02-22 22:05:20 +01009921 struct wireless_dev *wdev = dev->ieee80211_ptr;
9922 struct wiphy *wiphy = wdev->wiphy;
9923 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009924 const struct ieee80211_mgmt *mgmt = (void *)buf;
9925 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +02009926
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009927 if (WARN_ON(len < 2))
9928 return;
9929
9930 if (ieee80211_is_deauth(mgmt->frame_control))
9931 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
9932 else
9933 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
9934
9935 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
9936 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009937}
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009938EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009939
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -04009940static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
9941 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +02009942 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009943{
9944 struct sk_buff *msg;
9945 void *hdr;
9946
Johannes Berge6d6e342009-07-01 21:26:47 +02009947 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009948 if (!msg)
9949 return;
9950
9951 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9952 if (!hdr) {
9953 nlmsg_free(msg);
9954 return;
9955 }
9956
David S. Miller9360ffd2012-03-29 04:41:26 -04009957 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9958 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9959 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
9960 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
9961 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +03009962
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009963 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +03009964
Johannes Berg68eb5502013-11-19 15:19:38 +01009965 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +01009966 NL80211_MCGRP_MLME, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009967 return;
9968
9969 nla_put_failure:
9970 genlmsg_cancel(msg, hdr);
9971 nlmsg_free(msg);
9972}
9973
9974void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009975 struct net_device *netdev, const u8 *addr,
9976 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009977{
9978 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +02009979 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009980}
9981
9982void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009983 struct net_device *netdev, const u8 *addr,
9984 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009985{
Johannes Berge6d6e342009-07-01 21:26:47 +02009986 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
9987 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009988}
9989
Samuel Ortizb23aa672009-07-01 21:26:54 +02009990void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
9991 struct net_device *netdev, const u8 *bssid,
9992 const u8 *req_ie, size_t req_ie_len,
9993 const u8 *resp_ie, size_t resp_ie_len,
9994 u16 status, gfp_t gfp)
9995{
9996 struct sk_buff *msg;
9997 void *hdr;
9998
Thomas Graf58050fc2012-06-28 03:57:45 +00009999 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010000 if (!msg)
10001 return;
10002
10003 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
10004 if (!hdr) {
10005 nlmsg_free(msg);
10006 return;
10007 }
10008
David S. Miller9360ffd2012-03-29 04:41:26 -040010009 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10010 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10011 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
10012 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
10013 (req_ie &&
10014 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10015 (resp_ie &&
10016 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10017 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010018
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010019 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010020
Johannes Berg68eb5502013-11-19 15:19:38 +010010021 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010022 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010023 return;
10024
10025 nla_put_failure:
10026 genlmsg_cancel(msg, hdr);
10027 nlmsg_free(msg);
10028
10029}
10030
10031void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
10032 struct net_device *netdev, const u8 *bssid,
10033 const u8 *req_ie, size_t req_ie_len,
10034 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
10035{
10036 struct sk_buff *msg;
10037 void *hdr;
10038
Thomas Graf58050fc2012-06-28 03:57:45 +000010039 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010040 if (!msg)
10041 return;
10042
10043 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
10044 if (!hdr) {
10045 nlmsg_free(msg);
10046 return;
10047 }
10048
David S. Miller9360ffd2012-03-29 04:41:26 -040010049 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10050 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10051 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
10052 (req_ie &&
10053 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10054 (resp_ie &&
10055 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10056 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010057
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010058 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010059
Johannes Berg68eb5502013-11-19 15:19:38 +010010060 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010061 NL80211_MCGRP_MLME, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010062 return;
10063
10064 nla_put_failure:
10065 genlmsg_cancel(msg, hdr);
10066 nlmsg_free(msg);
10067
10068}
10069
10070void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
10071 struct net_device *netdev, u16 reason,
Johannes Berg667503d2009-07-07 03:56:11 +020010072 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020010073{
10074 struct sk_buff *msg;
10075 void *hdr;
10076
Thomas Graf58050fc2012-06-28 03:57:45 +000010077 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010078 if (!msg)
10079 return;
10080
10081 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
10082 if (!hdr) {
10083 nlmsg_free(msg);
10084 return;
10085 }
10086
David S. Miller9360ffd2012-03-29 04:41:26 -040010087 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10088 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10089 (from_ap && reason &&
10090 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
10091 (from_ap &&
10092 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
10093 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
10094 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010095
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010096 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010097
Johannes Berg68eb5502013-11-19 15:19:38 +010010098 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010099 NL80211_MCGRP_MLME, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010100 return;
10101
10102 nla_put_failure:
10103 genlmsg_cancel(msg, hdr);
10104 nlmsg_free(msg);
10105
10106}
10107
Johannes Berg04a773a2009-04-19 21:24:32 +020010108void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
10109 struct net_device *netdev, const u8 *bssid,
10110 gfp_t gfp)
10111{
10112 struct sk_buff *msg;
10113 void *hdr;
10114
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010115 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010116 if (!msg)
10117 return;
10118
10119 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
10120 if (!hdr) {
10121 nlmsg_free(msg);
10122 return;
10123 }
10124
David S. Miller9360ffd2012-03-29 04:41:26 -040010125 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10126 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10127 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10128 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020010129
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010130 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020010131
Johannes Berg68eb5502013-11-19 15:19:38 +010010132 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010133 NL80211_MCGRP_MLME, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010134 return;
10135
10136 nla_put_failure:
10137 genlmsg_cancel(msg, hdr);
10138 nlmsg_free(msg);
10139}
10140
Johannes Berg947add32013-02-22 22:05:20 +010010141void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
10142 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070010143{
Johannes Berg947add32013-02-22 22:05:20 +010010144 struct wireless_dev *wdev = dev->ieee80211_ptr;
10145 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010146 struct sk_buff *msg;
10147 void *hdr;
10148
Johannes Berg947add32013-02-22 22:05:20 +010010149 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
10150 return;
10151
10152 trace_cfg80211_notify_new_peer_candidate(dev, addr);
10153
Javier Cardonac93b5e72011-04-07 15:08:34 -070010154 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10155 if (!msg)
10156 return;
10157
10158 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
10159 if (!hdr) {
10160 nlmsg_free(msg);
10161 return;
10162 }
10163
David S. Miller9360ffd2012-03-29 04:41:26 -040010164 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010165 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10166 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010167 (ie_len && ie &&
10168 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
10169 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070010170
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010171 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010172
Johannes Berg68eb5502013-11-19 15:19:38 +010010173 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010174 NL80211_MCGRP_MLME, gfp);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010175 return;
10176
10177 nla_put_failure:
10178 genlmsg_cancel(msg, hdr);
10179 nlmsg_free(msg);
10180}
Johannes Berg947add32013-02-22 22:05:20 +010010181EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010182
Jouni Malinena3b8b052009-03-27 21:59:49 +020010183void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
10184 struct net_device *netdev, const u8 *addr,
10185 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020010186 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020010187{
10188 struct sk_buff *msg;
10189 void *hdr;
10190
Johannes Berge6d6e342009-07-01 21:26:47 +020010191 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010192 if (!msg)
10193 return;
10194
10195 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
10196 if (!hdr) {
10197 nlmsg_free(msg);
10198 return;
10199 }
10200
David S. Miller9360ffd2012-03-29 04:41:26 -040010201 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10202 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10203 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
10204 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
10205 (key_id != -1 &&
10206 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
10207 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
10208 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020010209
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010210 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010211
Johannes Berg68eb5502013-11-19 15:19:38 +010010212 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010213 NL80211_MCGRP_MLME, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010214 return;
10215
10216 nla_put_failure:
10217 genlmsg_cancel(msg, hdr);
10218 nlmsg_free(msg);
10219}
10220
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010221void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
10222 struct ieee80211_channel *channel_before,
10223 struct ieee80211_channel *channel_after)
10224{
10225 struct sk_buff *msg;
10226 void *hdr;
10227 struct nlattr *nl_freq;
10228
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010229 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010230 if (!msg)
10231 return;
10232
10233 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
10234 if (!hdr) {
10235 nlmsg_free(msg);
10236 return;
10237 }
10238
10239 /*
10240 * Since we are applying the beacon hint to a wiphy we know its
10241 * wiphy_idx is valid
10242 */
David S. Miller9360ffd2012-03-29 04:41:26 -040010243 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
10244 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010245
10246 /* Before */
10247 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
10248 if (!nl_freq)
10249 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010250 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010251 goto nla_put_failure;
10252 nla_nest_end(msg, nl_freq);
10253
10254 /* After */
10255 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
10256 if (!nl_freq)
10257 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010258 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010259 goto nla_put_failure;
10260 nla_nest_end(msg, nl_freq);
10261
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010262 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010263
Johannes Berg463d0182009-07-14 00:33:35 +020010264 rcu_read_lock();
Johannes Berg68eb5502013-11-19 15:19:38 +010010265 genlmsg_multicast_allns(&nl80211_fam, msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010266 NL80211_MCGRP_REGULATORY, GFP_ATOMIC);
Johannes Berg463d0182009-07-14 00:33:35 +020010267 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010268
10269 return;
10270
10271nla_put_failure:
10272 genlmsg_cancel(msg, hdr);
10273 nlmsg_free(msg);
10274}
10275
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010276static void nl80211_send_remain_on_chan_event(
10277 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020010278 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010279 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010280 unsigned int duration, gfp_t gfp)
10281{
10282 struct sk_buff *msg;
10283 void *hdr;
10284
10285 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10286 if (!msg)
10287 return;
10288
10289 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10290 if (!hdr) {
10291 nlmsg_free(msg);
10292 return;
10293 }
10294
David S. Miller9360ffd2012-03-29 04:41:26 -040010295 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010296 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10297 wdev->netdev->ifindex)) ||
Johannes Berg00f53352012-07-17 11:53:12 +020010298 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010299 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010010300 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10301 NL80211_CHAN_NO_HT) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010302 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
10303 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010304
David S. Miller9360ffd2012-03-29 04:41:26 -040010305 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
10306 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
10307 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010308
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010309 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010310
Johannes Berg68eb5502013-11-19 15:19:38 +010010311 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010312 NL80211_MCGRP_MLME, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010313 return;
10314
10315 nla_put_failure:
10316 genlmsg_cancel(msg, hdr);
10317 nlmsg_free(msg);
10318}
10319
Johannes Berg947add32013-02-22 22:05:20 +010010320void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
10321 struct ieee80211_channel *chan,
10322 unsigned int duration, gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010323{
Johannes Berg947add32013-02-22 22:05:20 +010010324 struct wiphy *wiphy = wdev->wiphy;
10325 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10326
10327 trace_cfg80211_ready_on_channel(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010328 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020010329 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010010330 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010331}
Johannes Berg947add32013-02-22 22:05:20 +010010332EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010333
Johannes Berg947add32013-02-22 22:05:20 +010010334void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
10335 struct ieee80211_channel *chan,
10336 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010337{
Johannes Berg947add32013-02-22 22:05:20 +010010338 struct wiphy *wiphy = wdev->wiphy;
10339 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10340
10341 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010342 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010010343 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010344}
Johannes Berg947add32013-02-22 22:05:20 +010010345EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010346
Johannes Berg947add32013-02-22 22:05:20 +010010347void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
10348 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010010349{
Johannes Berg947add32013-02-22 22:05:20 +010010350 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10351 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010010352 struct sk_buff *msg;
10353
Johannes Berg947add32013-02-22 22:05:20 +010010354 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
10355
Thomas Graf58050fc2012-06-28 03:57:45 +000010356 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010010357 if (!msg)
10358 return;
10359
John W. Linville66266b32012-03-15 13:25:41 -040010360 if (nl80211_send_station(msg, 0, 0, 0,
10361 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010010362 nlmsg_free(msg);
10363 return;
10364 }
10365
Johannes Berg68eb5502013-11-19 15:19:38 +010010366 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010367 NL80211_MCGRP_MLME, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010010368}
Johannes Berg947add32013-02-22 22:05:20 +010010369EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010010370
Johannes Berg947add32013-02-22 22:05:20 +010010371void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020010372{
Johannes Berg947add32013-02-22 22:05:20 +010010373 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10374 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020010375 struct sk_buff *msg;
10376 void *hdr;
10377
Johannes Berg947add32013-02-22 22:05:20 +010010378 trace_cfg80211_del_sta(dev, mac_addr);
10379
Thomas Graf58050fc2012-06-28 03:57:45 +000010380 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020010381 if (!msg)
10382 return;
10383
10384 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
10385 if (!hdr) {
10386 nlmsg_free(msg);
10387 return;
10388 }
10389
David S. Miller9360ffd2012-03-29 04:41:26 -040010390 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10391 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
10392 goto nla_put_failure;
Jouni Malinenec15e682011-03-23 15:29:52 +020010393
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010394 genlmsg_end(msg, hdr);
Jouni Malinenec15e682011-03-23 15:29:52 +020010395
Johannes Berg68eb5502013-11-19 15:19:38 +010010396 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010397 NL80211_MCGRP_MLME, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020010398 return;
10399
10400 nla_put_failure:
10401 genlmsg_cancel(msg, hdr);
10402 nlmsg_free(msg);
10403}
Johannes Berg947add32013-02-22 22:05:20 +010010404EXPORT_SYMBOL(cfg80211_del_sta);
Jouni Malinenec15e682011-03-23 15:29:52 +020010405
Johannes Berg947add32013-02-22 22:05:20 +010010406void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
10407 enum nl80211_connect_failed_reason reason,
10408 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010409{
Johannes Berg947add32013-02-22 22:05:20 +010010410 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10411 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010412 struct sk_buff *msg;
10413 void *hdr;
10414
10415 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10416 if (!msg)
10417 return;
10418
10419 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
10420 if (!hdr) {
10421 nlmsg_free(msg);
10422 return;
10423 }
10424
10425 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10426 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
10427 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
10428 goto nla_put_failure;
10429
10430 genlmsg_end(msg, hdr);
10431
Johannes Berg68eb5502013-11-19 15:19:38 +010010432 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010433 NL80211_MCGRP_MLME, gfp);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010434 return;
10435
10436 nla_put_failure:
10437 genlmsg_cancel(msg, hdr);
10438 nlmsg_free(msg);
10439}
Johannes Berg947add32013-02-22 22:05:20 +010010440EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010441
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010442static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
10443 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010010444{
10445 struct wireless_dev *wdev = dev->ieee80211_ptr;
10446 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10447 struct sk_buff *msg;
10448 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000010449 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010450
Eric W. Biederman15e47302012-09-07 20:12:54 +000010451 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010010452 return false;
10453
10454 msg = nlmsg_new(100, gfp);
10455 if (!msg)
10456 return true;
10457
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010458 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010010459 if (!hdr) {
10460 nlmsg_free(msg);
10461 return true;
10462 }
10463
David S. Miller9360ffd2012-03-29 04:41:26 -040010464 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10465 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10466 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
10467 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010010468
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010469 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000010470 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010471 return true;
10472
10473 nla_put_failure:
10474 genlmsg_cancel(msg, hdr);
10475 nlmsg_free(msg);
10476 return true;
10477}
10478
Johannes Berg947add32013-02-22 22:05:20 +010010479bool cfg80211_rx_spurious_frame(struct net_device *dev,
10480 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010481{
Johannes Berg947add32013-02-22 22:05:20 +010010482 struct wireless_dev *wdev = dev->ieee80211_ptr;
10483 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010484
Johannes Berg947add32013-02-22 22:05:20 +010010485 trace_cfg80211_rx_spurious_frame(dev, addr);
10486
10487 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10488 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
10489 trace_cfg80211_return_bool(false);
10490 return false;
10491 }
10492 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
10493 addr, gfp);
10494 trace_cfg80211_return_bool(ret);
10495 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010496}
Johannes Berg947add32013-02-22 22:05:20 +010010497EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
10498
10499bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
10500 const u8 *addr, gfp_t gfp)
10501{
10502 struct wireless_dev *wdev = dev->ieee80211_ptr;
10503 bool ret;
10504
10505 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
10506
10507 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10508 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
10509 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
10510 trace_cfg80211_return_bool(false);
10511 return false;
10512 }
10513 ret = __nl80211_unexpected_frame(dev,
10514 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
10515 addr, gfp);
10516 trace_cfg80211_return_bool(ret);
10517 return ret;
10518}
10519EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010520
Johannes Berg2e161f72010-08-12 15:38:38 +020010521int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010522 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010010523 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010524 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010525{
Johannes Berg71bbc992012-06-15 15:30:18 +020010526 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010527 struct sk_buff *msg;
10528 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020010529
10530 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10531 if (!msg)
10532 return -ENOMEM;
10533
Johannes Berg2e161f72010-08-12 15:38:38 +020010534 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020010535 if (!hdr) {
10536 nlmsg_free(msg);
10537 return -ENOMEM;
10538 }
10539
David S. Miller9360ffd2012-03-29 04:41:26 -040010540 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010541 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10542 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010543 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010544 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
10545 (sig_dbm &&
10546 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010547 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10548 (flags &&
10549 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040010550 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010551
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010552 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010553
Eric W. Biederman15e47302012-09-07 20:12:54 +000010554 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020010555
10556 nla_put_failure:
10557 genlmsg_cancel(msg, hdr);
10558 nlmsg_free(msg);
10559 return -ENOBUFS;
10560}
10561
Johannes Berg947add32013-02-22 22:05:20 +010010562void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
10563 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010564{
Johannes Berg947add32013-02-22 22:05:20 +010010565 struct wiphy *wiphy = wdev->wiphy;
10566 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020010567 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010568 struct sk_buff *msg;
10569 void *hdr;
10570
Johannes Berg947add32013-02-22 22:05:20 +010010571 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
10572
Jouni Malinen026331c2010-02-15 12:53:10 +020010573 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10574 if (!msg)
10575 return;
10576
Johannes Berg2e161f72010-08-12 15:38:38 +020010577 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020010578 if (!hdr) {
10579 nlmsg_free(msg);
10580 return;
10581 }
10582
David S. Miller9360ffd2012-03-29 04:41:26 -040010583 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010584 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10585 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010586 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010587 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10588 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
10589 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
10590 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010591
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010592 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010593
Johannes Berg68eb5502013-11-19 15:19:38 +010010594 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010595 NL80211_MCGRP_MLME, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020010596 return;
10597
10598 nla_put_failure:
10599 genlmsg_cancel(msg, hdr);
10600 nlmsg_free(msg);
10601}
Johannes Berg947add32013-02-22 22:05:20 +010010602EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020010603
Johannes Berg947add32013-02-22 22:05:20 +010010604void cfg80211_cqm_rssi_notify(struct net_device *dev,
10605 enum nl80211_cqm_rssi_threshold_event rssi_event,
10606 gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010607{
Johannes Berg947add32013-02-22 22:05:20 +010010608 struct wireless_dev *wdev = dev->ieee80211_ptr;
10609 struct wiphy *wiphy = wdev->wiphy;
10610 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010611 struct sk_buff *msg;
10612 struct nlattr *pinfoattr;
10613 void *hdr;
10614
Johannes Berg947add32013-02-22 22:05:20 +010010615 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
10616
Thomas Graf58050fc2012-06-28 03:57:45 +000010617 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010618 if (!msg)
10619 return;
10620
10621 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10622 if (!hdr) {
10623 nlmsg_free(msg);
10624 return;
10625 }
10626
David S. Miller9360ffd2012-03-29 04:41:26 -040010627 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010628 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040010629 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010630
10631 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10632 if (!pinfoattr)
10633 goto nla_put_failure;
10634
David S. Miller9360ffd2012-03-29 04:41:26 -040010635 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
10636 rssi_event))
10637 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010638
10639 nla_nest_end(msg, pinfoattr);
10640
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010641 genlmsg_end(msg, hdr);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010642
Johannes Berg68eb5502013-11-19 15:19:38 +010010643 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010644 NL80211_MCGRP_MLME, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010645 return;
10646
10647 nla_put_failure:
10648 genlmsg_cancel(msg, hdr);
10649 nlmsg_free(msg);
10650}
Johannes Berg947add32013-02-22 22:05:20 +010010651EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010652
Johannes Berg947add32013-02-22 22:05:20 +010010653static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
10654 struct net_device *netdev, const u8 *bssid,
10655 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020010656{
10657 struct sk_buff *msg;
10658 struct nlattr *rekey_attr;
10659 void *hdr;
10660
Thomas Graf58050fc2012-06-28 03:57:45 +000010661 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020010662 if (!msg)
10663 return;
10664
10665 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10666 if (!hdr) {
10667 nlmsg_free(msg);
10668 return;
10669 }
10670
David S. Miller9360ffd2012-03-29 04:41:26 -040010671 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10672 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10673 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10674 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010675
10676 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10677 if (!rekey_attr)
10678 goto nla_put_failure;
10679
David S. Miller9360ffd2012-03-29 04:41:26 -040010680 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
10681 NL80211_REPLAY_CTR_LEN, replay_ctr))
10682 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010683
10684 nla_nest_end(msg, rekey_attr);
10685
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010686 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020010687
Johannes Berg68eb5502013-11-19 15:19:38 +010010688 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010689 NL80211_MCGRP_MLME, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020010690 return;
10691
10692 nla_put_failure:
10693 genlmsg_cancel(msg, hdr);
10694 nlmsg_free(msg);
10695}
10696
Johannes Berg947add32013-02-22 22:05:20 +010010697void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
10698 const u8 *replay_ctr, gfp_t gfp)
10699{
10700 struct wireless_dev *wdev = dev->ieee80211_ptr;
10701 struct wiphy *wiphy = wdev->wiphy;
10702 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10703
10704 trace_cfg80211_gtk_rekey_notify(dev, bssid);
10705 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
10706}
10707EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
10708
10709static void
10710nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
10711 struct net_device *netdev, int index,
10712 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010713{
10714 struct sk_buff *msg;
10715 struct nlattr *attr;
10716 void *hdr;
10717
Thomas Graf58050fc2012-06-28 03:57:45 +000010718 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010719 if (!msg)
10720 return;
10721
10722 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
10723 if (!hdr) {
10724 nlmsg_free(msg);
10725 return;
10726 }
10727
David S. Miller9360ffd2012-03-29 04:41:26 -040010728 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10729 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10730 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010731
10732 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
10733 if (!attr)
10734 goto nla_put_failure;
10735
David S. Miller9360ffd2012-03-29 04:41:26 -040010736 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
10737 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
10738 (preauth &&
10739 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
10740 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010741
10742 nla_nest_end(msg, attr);
10743
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010744 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010745
Johannes Berg68eb5502013-11-19 15:19:38 +010010746 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010747 NL80211_MCGRP_MLME, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010748 return;
10749
10750 nla_put_failure:
10751 genlmsg_cancel(msg, hdr);
10752 nlmsg_free(msg);
10753}
10754
Johannes Berg947add32013-02-22 22:05:20 +010010755void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
10756 const u8 *bssid, bool preauth, gfp_t gfp)
10757{
10758 struct wireless_dev *wdev = dev->ieee80211_ptr;
10759 struct wiphy *wiphy = wdev->wiphy;
10760 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10761
10762 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
10763 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
10764}
10765EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
10766
10767static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
10768 struct net_device *netdev,
10769 struct cfg80211_chan_def *chandef,
10770 gfp_t gfp)
Thomas Pedersen53145262012-04-06 13:35:47 -070010771{
10772 struct sk_buff *msg;
10773 void *hdr;
10774
Thomas Graf58050fc2012-06-28 03:57:45 +000010775 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070010776 if (!msg)
10777 return;
10778
10779 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
10780 if (!hdr) {
10781 nlmsg_free(msg);
10782 return;
10783 }
10784
Johannes Berg683b6d32012-11-08 21:25:48 +010010785 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10786 goto nla_put_failure;
10787
10788 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040010789 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070010790
10791 genlmsg_end(msg, hdr);
10792
Johannes Berg68eb5502013-11-19 15:19:38 +010010793 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010794 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070010795 return;
10796
10797 nla_put_failure:
10798 genlmsg_cancel(msg, hdr);
10799 nlmsg_free(msg);
10800}
10801
Johannes Berg947add32013-02-22 22:05:20 +010010802void cfg80211_ch_switch_notify(struct net_device *dev,
10803 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070010804{
Johannes Berg947add32013-02-22 22:05:20 +010010805 struct wireless_dev *wdev = dev->ieee80211_ptr;
10806 struct wiphy *wiphy = wdev->wiphy;
10807 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10808
10809 trace_cfg80211_ch_switch_notify(dev, chandef);
10810
10811 wdev_lock(wdev);
10812
10813 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +020010814 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070010815 wdev->iftype != NL80211_IFTYPE_ADHOC &&
10816 wdev->iftype != NL80211_IFTYPE_MESH_POINT))
Johannes Berg947add32013-02-22 22:05:20 +010010817 goto out;
10818
10819 wdev->channel = chandef->chan;
10820 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
10821out:
10822 wdev_unlock(wdev);
10823 return;
10824}
10825EXPORT_SYMBOL(cfg80211_ch_switch_notify);
10826
10827void cfg80211_cqm_txe_notify(struct net_device *dev,
10828 const u8 *peer, u32 num_packets,
10829 u32 rate, u32 intvl, gfp_t gfp)
10830{
10831 struct wireless_dev *wdev = dev->ieee80211_ptr;
10832 struct wiphy *wiphy = wdev->wiphy;
10833 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010834 struct sk_buff *msg;
10835 struct nlattr *pinfoattr;
10836 void *hdr;
10837
10838 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10839 if (!msg)
10840 return;
10841
10842 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10843 if (!hdr) {
10844 nlmsg_free(msg);
10845 return;
10846 }
10847
10848 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010849 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070010850 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10851 goto nla_put_failure;
10852
10853 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10854 if (!pinfoattr)
10855 goto nla_put_failure;
10856
10857 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
10858 goto nla_put_failure;
10859
10860 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
10861 goto nla_put_failure;
10862
10863 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
10864 goto nla_put_failure;
10865
10866 nla_nest_end(msg, pinfoattr);
10867
10868 genlmsg_end(msg, hdr);
10869
Johannes Berg68eb5502013-11-19 15:19:38 +010010870 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010871 NL80211_MCGRP_MLME, gfp);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010872 return;
10873
10874 nla_put_failure:
10875 genlmsg_cancel(msg, hdr);
10876 nlmsg_free(msg);
10877}
Johannes Berg947add32013-02-22 22:05:20 +010010878EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010879
10880void
Simon Wunderlich04f39042013-02-08 18:16:19 +010010881nl80211_radar_notify(struct cfg80211_registered_device *rdev,
10882 struct cfg80211_chan_def *chandef,
10883 enum nl80211_radar_event event,
10884 struct net_device *netdev, gfp_t gfp)
10885{
10886 struct sk_buff *msg;
10887 void *hdr;
10888
10889 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10890 if (!msg)
10891 return;
10892
10893 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
10894 if (!hdr) {
10895 nlmsg_free(msg);
10896 return;
10897 }
10898
10899 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
10900 goto nla_put_failure;
10901
10902 /* NOP and radar events don't need a netdev parameter */
10903 if (netdev) {
10904 struct wireless_dev *wdev = netdev->ieee80211_ptr;
10905
10906 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10907 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
10908 goto nla_put_failure;
10909 }
10910
10911 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
10912 goto nla_put_failure;
10913
10914 if (nl80211_send_chandef(msg, chandef))
10915 goto nla_put_failure;
10916
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010917 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010010918
Johannes Berg68eb5502013-11-19 15:19:38 +010010919 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010920 NL80211_MCGRP_MLME, gfp);
Simon Wunderlich04f39042013-02-08 18:16:19 +010010921 return;
10922
10923 nla_put_failure:
10924 genlmsg_cancel(msg, hdr);
10925 nlmsg_free(msg);
10926}
10927
Johannes Berg947add32013-02-22 22:05:20 +010010928void cfg80211_cqm_pktloss_notify(struct net_device *dev,
10929 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010010930{
Johannes Berg947add32013-02-22 22:05:20 +010010931 struct wireless_dev *wdev = dev->ieee80211_ptr;
10932 struct wiphy *wiphy = wdev->wiphy;
10933 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010934 struct sk_buff *msg;
10935 struct nlattr *pinfoattr;
10936 void *hdr;
10937
Johannes Berg947add32013-02-22 22:05:20 +010010938 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
10939
Thomas Graf58050fc2012-06-28 03:57:45 +000010940 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010941 if (!msg)
10942 return;
10943
10944 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10945 if (!hdr) {
10946 nlmsg_free(msg);
10947 return;
10948 }
10949
David S. Miller9360ffd2012-03-29 04:41:26 -040010950 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010951 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010952 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10953 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010954
10955 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10956 if (!pinfoattr)
10957 goto nla_put_failure;
10958
David S. Miller9360ffd2012-03-29 04:41:26 -040010959 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
10960 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010961
10962 nla_nest_end(msg, pinfoattr);
10963
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010964 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010965
Johannes Berg68eb5502013-11-19 15:19:38 +010010966 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010010967 NL80211_MCGRP_MLME, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010968 return;
10969
10970 nla_put_failure:
10971 genlmsg_cancel(msg, hdr);
10972 nlmsg_free(msg);
10973}
Johannes Berg947add32013-02-22 22:05:20 +010010974EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010975
Johannes Berg7f6cf312011-11-04 11:18:15 +010010976void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
10977 u64 cookie, bool acked, gfp_t gfp)
10978{
10979 struct wireless_dev *wdev = dev->ieee80211_ptr;
10980 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10981 struct sk_buff *msg;
10982 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010983
Beni Lev4ee3e062012-08-27 12:49:39 +030010984 trace_cfg80211_probe_status(dev, addr, cookie, acked);
10985
Thomas Graf58050fc2012-06-28 03:57:45 +000010986 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030010987
Johannes Berg7f6cf312011-11-04 11:18:15 +010010988 if (!msg)
10989 return;
10990
10991 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
10992 if (!hdr) {
10993 nlmsg_free(msg);
10994 return;
10995 }
10996
David S. Miller9360ffd2012-03-29 04:41:26 -040010997 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10998 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10999 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
11000 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11001 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
11002 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011003
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011004 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011005
Johannes Berg68eb5502013-11-19 15:19:38 +010011006 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011007 NL80211_MCGRP_MLME, gfp);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011008 return;
11009
11010 nla_put_failure:
11011 genlmsg_cancel(msg, hdr);
11012 nlmsg_free(msg);
11013}
11014EXPORT_SYMBOL(cfg80211_probe_status);
11015
Johannes Berg5e760232011-11-04 11:18:17 +010011016void cfg80211_report_obss_beacon(struct wiphy *wiphy,
11017 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070011018 int freq, int sig_dbm)
Johannes Berg5e760232011-11-04 11:18:17 +010011019{
11020 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11021 struct sk_buff *msg;
11022 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070011023 struct cfg80211_beacon_registration *reg;
Johannes Berg5e760232011-11-04 11:18:17 +010011024
Beni Lev4ee3e062012-08-27 12:49:39 +030011025 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
11026
Ben Greear37c73b52012-10-26 14:49:25 -070011027 spin_lock_bh(&rdev->beacon_registrations_lock);
11028 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
11029 msg = nlmsg_new(len + 100, GFP_ATOMIC);
11030 if (!msg) {
11031 spin_unlock_bh(&rdev->beacon_registrations_lock);
11032 return;
11033 }
Johannes Berg5e760232011-11-04 11:18:17 +010011034
Ben Greear37c73b52012-10-26 14:49:25 -070011035 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
11036 if (!hdr)
11037 goto nla_put_failure;
Johannes Berg5e760232011-11-04 11:18:17 +010011038
Ben Greear37c73b52012-10-26 14:49:25 -070011039 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11040 (freq &&
11041 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
11042 (sig_dbm &&
11043 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
11044 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
11045 goto nla_put_failure;
11046
11047 genlmsg_end(msg, hdr);
11048
11049 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e760232011-11-04 11:18:17 +010011050 }
Ben Greear37c73b52012-10-26 14:49:25 -070011051 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +010011052 return;
11053
11054 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070011055 spin_unlock_bh(&rdev->beacon_registrations_lock);
11056 if (hdr)
11057 genlmsg_cancel(msg, hdr);
Johannes Berg5e760232011-11-04 11:18:17 +010011058 nlmsg_free(msg);
11059}
11060EXPORT_SYMBOL(cfg80211_report_obss_beacon);
11061
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011062#ifdef CONFIG_PM
11063void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
11064 struct cfg80211_wowlan_wakeup *wakeup,
11065 gfp_t gfp)
11066{
11067 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11068 struct sk_buff *msg;
11069 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011070 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011071
11072 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11073
11074 if (wakeup)
11075 size += wakeup->packet_present_len;
11076
11077 msg = nlmsg_new(size, gfp);
11078 if (!msg)
11079 return;
11080
11081 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11082 if (!hdr)
11083 goto free_msg;
11084
11085 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11086 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11087 goto free_msg;
11088
11089 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11090 wdev->netdev->ifindex))
11091 goto free_msg;
11092
11093 if (wakeup) {
11094 struct nlattr *reasons;
11095
11096 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
Johannes Berg7fa322c2013-10-25 11:16:58 +020011097 if (!reasons)
11098 goto free_msg;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011099
11100 if (wakeup->disconnect &&
11101 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11102 goto free_msg;
11103 if (wakeup->magic_pkt &&
11104 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11105 goto free_msg;
11106 if (wakeup->gtk_rekey_failure &&
11107 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11108 goto free_msg;
11109 if (wakeup->eap_identity_req &&
11110 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11111 goto free_msg;
11112 if (wakeup->four_way_handshake &&
11113 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11114 goto free_msg;
11115 if (wakeup->rfkill_release &&
11116 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11117 goto free_msg;
11118
11119 if (wakeup->pattern_idx >= 0 &&
11120 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11121 wakeup->pattern_idx))
11122 goto free_msg;
11123
Johannes Bergae917c92013-10-25 11:05:22 +020011124 if (wakeup->tcp_match &&
11125 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH))
11126 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011127
Johannes Bergae917c92013-10-25 11:05:22 +020011128 if (wakeup->tcp_connlost &&
11129 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST))
11130 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011131
Johannes Bergae917c92013-10-25 11:05:22 +020011132 if (wakeup->tcp_nomoretokens &&
11133 nla_put_flag(msg,
11134 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS))
11135 goto free_msg;
Johannes Berg2a0e0472013-01-23 22:57:40 +010011136
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011137 if (wakeup->packet) {
11138 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11139 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11140
11141 if (!wakeup->packet_80211) {
11142 pkt_attr =
11143 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11144 len_attr =
11145 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11146 }
11147
11148 if (wakeup->packet_len &&
11149 nla_put_u32(msg, len_attr, wakeup->packet_len))
11150 goto free_msg;
11151
11152 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11153 wakeup->packet))
11154 goto free_msg;
11155 }
11156
11157 nla_nest_end(msg, reasons);
11158 }
11159
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011160 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011161
Johannes Berg68eb5502013-11-19 15:19:38 +010011162 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011163 NL80211_MCGRP_MLME, gfp);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011164 return;
11165
11166 free_msg:
11167 nlmsg_free(msg);
11168}
11169EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11170#endif
11171
Jouni Malinen3475b092012-11-16 22:49:57 +020011172void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11173 enum nl80211_tdls_operation oper,
11174 u16 reason_code, gfp_t gfp)
11175{
11176 struct wireless_dev *wdev = dev->ieee80211_ptr;
11177 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11178 struct sk_buff *msg;
11179 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011180
11181 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11182 reason_code);
11183
11184 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11185 if (!msg)
11186 return;
11187
11188 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11189 if (!hdr) {
11190 nlmsg_free(msg);
11191 return;
11192 }
11193
11194 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11195 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11196 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11197 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11198 (reason_code > 0 &&
11199 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11200 goto nla_put_failure;
11201
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011202 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011203
Johannes Berg68eb5502013-11-19 15:19:38 +010011204 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011205 NL80211_MCGRP_MLME, gfp);
Jouni Malinen3475b092012-11-16 22:49:57 +020011206 return;
11207
11208 nla_put_failure:
11209 genlmsg_cancel(msg, hdr);
11210 nlmsg_free(msg);
11211}
11212EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11213
Jouni Malinen026331c2010-02-15 12:53:10 +020011214static int nl80211_netlink_notify(struct notifier_block * nb,
11215 unsigned long state,
11216 void *_notify)
11217{
11218 struct netlink_notify *notify = _notify;
11219 struct cfg80211_registered_device *rdev;
11220 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011221 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011222
11223 if (state != NETLINK_URELEASE)
11224 return NOTIFY_DONE;
11225
11226 rcu_read_lock();
11227
Johannes Berg5e760232011-11-04 11:18:17 +010011228 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +020011229 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
Eric W. Biederman15e47302012-09-07 20:12:54 +000011230 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011231
11232 spin_lock_bh(&rdev->beacon_registrations_lock);
11233 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11234 list) {
11235 if (reg->nlportid == notify->portid) {
11236 list_del(&reg->list);
11237 kfree(reg);
11238 break;
11239 }
11240 }
11241 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +010011242 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011243
11244 rcu_read_unlock();
11245
11246 return NOTIFY_DONE;
11247}
11248
11249static struct notifier_block nl80211_netlink_notifier = {
11250 .notifier_call = nl80211_netlink_notify,
11251};
11252
Jouni Malinen355199e2013-02-27 17:14:27 +020011253void cfg80211_ft_event(struct net_device *netdev,
11254 struct cfg80211_ft_event_params *ft_event)
11255{
11256 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
11257 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11258 struct sk_buff *msg;
11259 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020011260
11261 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
11262
11263 if (!ft_event->target_ap)
11264 return;
11265
11266 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11267 if (!msg)
11268 return;
11269
11270 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
Johannes Bergae917c92013-10-25 11:05:22 +020011271 if (!hdr)
11272 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020011273
Johannes Bergae917c92013-10-25 11:05:22 +020011274 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11275 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
11276 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap))
11277 goto out;
11278
11279 if (ft_event->ies &&
11280 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies))
11281 goto out;
11282 if (ft_event->ric_ies &&
11283 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
11284 ft_event->ric_ies))
11285 goto out;
Jouni Malinen355199e2013-02-27 17:14:27 +020011286
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011287 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020011288
Johannes Berg68eb5502013-11-19 15:19:38 +010011289 genlmsg_multicast_netns(&nl80211_fam, wiphy_net(&rdev->wiphy), msg, 0,
Johannes Berg2a94fe42013-11-19 15:19:39 +010011290 NL80211_MCGRP_MLME, GFP_KERNEL);
Johannes Bergae917c92013-10-25 11:05:22 +020011291 return;
11292 out:
11293 nlmsg_free(msg);
Jouni Malinen355199e2013-02-27 17:14:27 +020011294}
11295EXPORT_SYMBOL(cfg80211_ft_event);
11296
Arend van Spriel5de17982013-04-18 15:49:00 +020011297void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
11298{
11299 struct cfg80211_registered_device *rdev;
11300 struct sk_buff *msg;
11301 void *hdr;
11302 u32 nlportid;
11303
11304 rdev = wiphy_to_dev(wdev->wiphy);
11305 if (!rdev->crit_proto_nlportid)
11306 return;
11307
11308 nlportid = rdev->crit_proto_nlportid;
11309 rdev->crit_proto_nlportid = 0;
11310
11311 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11312 if (!msg)
11313 return;
11314
11315 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
11316 if (!hdr)
11317 goto nla_put_failure;
11318
11319 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11320 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11321 goto nla_put_failure;
11322
11323 genlmsg_end(msg, hdr);
11324
11325 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
11326 return;
11327
11328 nla_put_failure:
11329 if (hdr)
11330 genlmsg_cancel(msg, hdr);
11331 nlmsg_free(msg);
11332
11333}
11334EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
11335
Johannes Berg55682962007-09-20 13:09:35 -040011336/* initialisation/exit functions */
11337
11338int nl80211_init(void)
11339{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011340 int err;
Johannes Berg55682962007-09-20 13:09:35 -040011341
Johannes Berg2a94fe42013-11-19 15:19:39 +010011342 err = genl_register_family_with_ops_groups(&nl80211_fam, nl80211_ops,
11343 nl80211_mcgrps);
Johannes Berg55682962007-09-20 13:09:35 -040011344 if (err)
11345 return err;
11346
Jouni Malinen026331c2010-02-15 12:53:10 +020011347 err = netlink_register_notifier(&nl80211_netlink_notifier);
11348 if (err)
11349 goto err_out;
11350
Johannes Berg55682962007-09-20 13:09:35 -040011351 return 0;
11352 err_out:
11353 genl_unregister_family(&nl80211_fam);
11354 return err;
11355}
11356
11357void nl80211_exit(void)
11358{
Jouni Malinen026331c2010-02-15 12:53:10 +020011359 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040011360 genl_unregister_family(&nl80211_fam);
11361}