blob: 7502d33a3a700244d566fb229b8ed999d69fa0d7 [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 Berg4c476992010-10-04 21:36:35 +020033static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
34 struct genl_info *info);
35static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
36 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 Berg89a54e42012-06-15 14:33:17 +020050/* returns ERR_PTR values */
51static struct wireless_dev *
52__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berg55682962007-09-20 13:09:35 -040053{
Johannes Berg89a54e42012-06-15 14:33:17 +020054 struct cfg80211_registered_device *rdev;
55 struct wireless_dev *result = NULL;
56 bool have_ifidx = attrs[NL80211_ATTR_IFINDEX];
57 bool have_wdev_id = attrs[NL80211_ATTR_WDEV];
58 u64 wdev_id;
59 int wiphy_idx = -1;
60 int ifidx = -1;
Johannes Berg55682962007-09-20 13:09:35 -040061
Johannes Berg5fe231e2013-05-08 21:45:15 +020062 ASSERT_RTNL();
Johannes Berg55682962007-09-20 13:09:35 -040063
Johannes Berg89a54e42012-06-15 14:33:17 +020064 if (!have_ifidx && !have_wdev_id)
65 return ERR_PTR(-EINVAL);
Johannes Berg55682962007-09-20 13:09:35 -040066
Johannes Berg89a54e42012-06-15 14:33:17 +020067 if (have_ifidx)
68 ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
69 if (have_wdev_id) {
70 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
71 wiphy_idx = wdev_id >> 32;
Johannes Berg55682962007-09-20 13:09:35 -040072 }
73
Johannes Berg89a54e42012-06-15 14:33:17 +020074 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
75 struct wireless_dev *wdev;
76
77 if (wiphy_net(&rdev->wiphy) != netns)
78 continue;
79
80 if (have_wdev_id && rdev->wiphy_idx != wiphy_idx)
81 continue;
82
Johannes Berg89a54e42012-06-15 14:33:17 +020083 list_for_each_entry(wdev, &rdev->wdev_list, list) {
84 if (have_ifidx && wdev->netdev &&
85 wdev->netdev->ifindex == ifidx) {
86 result = wdev;
87 break;
88 }
89 if (have_wdev_id && wdev->identifier == (u32)wdev_id) {
90 result = wdev;
91 break;
92 }
93 }
Johannes Berg89a54e42012-06-15 14:33:17 +020094
95 if (result)
96 break;
97 }
98
99 if (result)
100 return result;
101 return ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400102}
103
Johannes Berga9455402012-06-15 13:32:49 +0200104static struct cfg80211_registered_device *
Johannes Berg878d9ec2012-06-15 14:18:32 +0200105__cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berga9455402012-06-15 13:32:49 +0200106{
Johannes Berg7fee4772012-06-15 14:09:58 +0200107 struct cfg80211_registered_device *rdev = NULL, *tmp;
108 struct net_device *netdev;
Johannes Berga9455402012-06-15 13:32:49 +0200109
Johannes Berg5fe231e2013-05-08 21:45:15 +0200110 ASSERT_RTNL();
Johannes Berga9455402012-06-15 13:32:49 +0200111
Johannes Berg878d9ec2012-06-15 14:18:32 +0200112 if (!attrs[NL80211_ATTR_WIPHY] &&
Johannes Berg89a54e42012-06-15 14:33:17 +0200113 !attrs[NL80211_ATTR_IFINDEX] &&
114 !attrs[NL80211_ATTR_WDEV])
Johannes Berg7fee4772012-06-15 14:09:58 +0200115 return ERR_PTR(-EINVAL);
116
Johannes Berg878d9ec2012-06-15 14:18:32 +0200117 if (attrs[NL80211_ATTR_WIPHY])
Johannes Berg7fee4772012-06-15 14:09:58 +0200118 rdev = cfg80211_rdev_by_wiphy_idx(
Johannes Berg878d9ec2012-06-15 14:18:32 +0200119 nla_get_u32(attrs[NL80211_ATTR_WIPHY]));
Johannes Berga9455402012-06-15 13:32:49 +0200120
Johannes Berg89a54e42012-06-15 14:33:17 +0200121 if (attrs[NL80211_ATTR_WDEV]) {
122 u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
123 struct wireless_dev *wdev;
124 bool found = false;
125
126 tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32);
127 if (tmp) {
128 /* make sure wdev exists */
Johannes Berg89a54e42012-06-15 14:33:17 +0200129 list_for_each_entry(wdev, &tmp->wdev_list, list) {
130 if (wdev->identifier != (u32)wdev_id)
131 continue;
132 found = true;
133 break;
134 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200135
136 if (!found)
137 tmp = NULL;
138
139 if (rdev && tmp != rdev)
140 return ERR_PTR(-EINVAL);
141 rdev = tmp;
142 }
143 }
144
Johannes Berg878d9ec2012-06-15 14:18:32 +0200145 if (attrs[NL80211_ATTR_IFINDEX]) {
146 int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
Johannes Berg4f7eff12012-06-15 14:14:22 +0200147 netdev = dev_get_by_index(netns, ifindex);
Johannes Berg7fee4772012-06-15 14:09:58 +0200148 if (netdev) {
149 if (netdev->ieee80211_ptr)
150 tmp = wiphy_to_dev(
151 netdev->ieee80211_ptr->wiphy);
152 else
153 tmp = NULL;
154
155 dev_put(netdev);
156
157 /* not wireless device -- return error */
158 if (!tmp)
159 return ERR_PTR(-EINVAL);
160
161 /* mismatch -- return error */
162 if (rdev && tmp != rdev)
163 return ERR_PTR(-EINVAL);
164
165 rdev = tmp;
Johannes Berga9455402012-06-15 13:32:49 +0200166 }
Johannes Berga9455402012-06-15 13:32:49 +0200167 }
168
Johannes Berg4f7eff12012-06-15 14:14:22 +0200169 if (!rdev)
170 return ERR_PTR(-ENODEV);
Johannes Berga9455402012-06-15 13:32:49 +0200171
Johannes Berg4f7eff12012-06-15 14:14:22 +0200172 if (netns != wiphy_net(&rdev->wiphy))
173 return ERR_PTR(-ENODEV);
174
175 return rdev;
Johannes Berga9455402012-06-15 13:32:49 +0200176}
177
178/*
179 * This function returns a pointer to the driver
180 * that the genl_info item that is passed refers to.
Johannes Berga9455402012-06-15 13:32:49 +0200181 *
182 * The result of this can be a PTR_ERR and hence must
183 * be checked with IS_ERR() for errors.
184 */
185static struct cfg80211_registered_device *
Johannes Berg4f7eff12012-06-15 14:14:22 +0200186cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
Johannes Berga9455402012-06-15 13:32:49 +0200187{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200188 return __cfg80211_rdev_from_attrs(netns, info->attrs);
Johannes Berga9455402012-06-15 13:32:49 +0200189}
190
Johannes Berg55682962007-09-20 13:09:35 -0400191/* policy for the attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000192static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
Johannes Berg55682962007-09-20 13:09:35 -0400193 [NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
194 [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
David S. Miller079e24e2009-05-26 21:15:00 -0700195 .len = 20-1 },
Jouni Malinen31888482008-10-30 16:59:24 +0200196 [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100197
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200198 [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
Sujith094d05d2008-12-12 11:57:43 +0530199 [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100200 [NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 },
201 [NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 },
202 [NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 },
203
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200204 [NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
205 [NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
206 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
207 [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
Lukáš Turek81077e82009-12-21 22:50:47 +0100208 [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
Johannes Berg55682962007-09-20 13:09:35 -0400209
210 [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
211 [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
212 [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
Johannes Berg41ade002007-12-19 02:03:29 +0100213
Eliad Pellere007b852011-11-24 18:13:56 +0200214 [NL80211_ATTR_MAC] = { .len = ETH_ALEN },
215 [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
Johannes Berg41ade002007-12-19 02:03:29 +0100216
Johannes Bergb9454e82009-07-08 13:29:08 +0200217 [NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
Johannes Berg41ade002007-12-19 02:03:29 +0100218 [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
219 .len = WLAN_MAX_KEY_LEN },
220 [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
221 [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
222 [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
Jouni Malinen81962262011-11-02 23:36:31 +0200223 [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Berge31b8212010-10-05 19:39:30 +0200224 [NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
Johannes Berged1b6cc2007-12-19 02:03:32 +0100225
226 [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
227 [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
228 [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
229 .len = IEEE80211_MAX_DATA_LEN },
230 [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
231 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg5727ef12007-12-19 02:03:34 +0100232 [NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
233 [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
234 [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
235 [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
236 .len = NL80211_MAX_SUPP_RATES },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100237 [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
Johannes Berg5727ef12007-12-19 02:03:34 +0100238 [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
Johannes Berg0a9542e2008-10-15 11:54:04 +0200239 [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100240 [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800241 .len = IEEE80211_MAX_MESH_ID_LEN },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100242 [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300243
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700244 [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
245 [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },
246
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300247 [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
248 [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
249 [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
Jouni Malinen90c97a02008-10-30 16:59:22 +0200250 [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
251 .len = NL80211_MAX_SUPP_RATES },
Helmut Schaa50b12f52010-11-19 12:40:25 +0100252 [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
Jouni Malinen36aedc902008-08-25 11:58:58 +0300253
Javier Cardona24bdd9f2010-12-16 17:37:48 -0800254 [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
Javier Cardona15d5dda2011-04-07 15:08:28 -0700255 [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700256
Johannes Berg6c739412011-11-03 09:27:01 +0100257 [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200258
259 [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
260 [NL80211_ATTR_IE] = { .type = NLA_BINARY,
261 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg2a519312009-02-10 21:25:55 +0100262 [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
263 [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
Jouni Malinen636a5d32009-03-19 13:39:22 +0200264
265 [NL80211_ATTR_SSID] = { .type = NLA_BINARY,
266 .len = IEEE80211_MAX_SSID_LEN },
267 [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
268 [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
Johannes Berg04a773a2009-04-19 21:24:32 +0200269 [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
Jouni Malinen1965c852009-04-22 21:38:25 +0300270 [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
Jouni Malinendc6382c2009-05-06 22:09:37 +0300271 [NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
Johannes Bergeccb8e82009-05-11 21:57:56 +0300272 [NL80211_ATTR_STA_FLAGS2] = {
273 .len = sizeof(struct nl80211_sta_flag_update),
274 },
Jouni Malinen3f77316c2009-05-11 21:57:57 +0300275 [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
Johannes Bergc0692b82010-08-27 14:26:53 +0300276 [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
277 [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
Samuel Ortizb23aa672009-07-01 21:26:54 +0200278 [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
279 [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
280 [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
Johannes Berg463d0182009-07-14 00:33:35 +0200281 [NL80211_ATTR_PID] = { .type = NLA_U32 },
Felix Fietkau8b787642009-11-10 18:53:10 +0100282 [NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +0100283 [NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
284 .len = WLAN_PMKID_LEN },
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100285 [NL80211_ATTR_DURATION] = { .type = NLA_U32 },
286 [NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +0200287 [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
Jouni Malinen026331c2010-02-15 12:53:10 +0200288 [NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
289 .len = IEEE80211_MAX_DATA_LEN },
290 [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
Kalle Valoffb9eb32010-02-17 17:58:10 +0200291 [NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200292 [NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300293 [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200294 [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +0300295 [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
296 [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
Johannes Berg2e161f72010-08-12 15:38:38 +0200297 [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
Bruno Randolfafe0cbf2010-11-10 12:50:50 +0900298 [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
299 [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
Felix Fietkau885a46d2010-11-11 15:07:22 +0100300 [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100301 [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100302 [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200303 [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
Javier Cardona9c3990a2011-05-03 16:57:11 -0700304 [NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300305 [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
Johannes Berge5497d72011-07-05 16:35:40 +0200306 [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
Johannes Berg34850ab2011-07-18 18:08:35 +0200307 [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
Jouni Malinen32e9de82011-08-10 23:53:31 +0300308 [NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
Jouni Malinen9946ecf2011-08-10 23:55:56 +0300309 [NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY,
310 .len = IEEE80211_MAX_DATA_LEN },
311 [NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY,
312 .len = IEEE80211_MAX_DATA_LEN },
Vivek Natarajanf4b34b52011-08-29 14:23:03 +0530313 [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300314 [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530315 [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
Arik Nemtsov109086c2011-09-28 14:12:50 +0300316 [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 },
317 [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 },
318 [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
319 [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
320 [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
Johannes Berge247bd902011-11-04 11:18:21 +0100321 [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
Arik Nemtsov00f740e2011-11-10 11:28:56 +0200322 [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
323 .len = IEEE80211_MAX_DATA_LEN },
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -0700324 [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
Ben Greear7e7c8922011-11-18 11:31:59 -0800325 [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
326 [NL80211_ATTR_HT_CAPABILITY_MASK] = {
327 .len = NL80211_HT_CAPABILITY_LEN
328 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +0100329 [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +0530330 [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
Bala Shanmugam4486ea92012-03-07 17:27:12 +0530331 [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
Johannes Berg89a54e42012-06-15 14:33:17 +0200332 [NL80211_ATTR_WDEV] = { .type = NLA_U64 },
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700333 [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
Jouni Malinene39e5b52012-09-30 19:29:39 +0300334 [NL80211_ATTR_SAE_DATA] = { .type = NLA_BINARY, },
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +0000335 [NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN },
Sam Lefflered4737712012-10-11 21:03:31 -0700336 [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 },
Johannes Berg53cabad2012-11-14 15:17:28 +0100337 [NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 },
338 [NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530339 [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 },
340 [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED },
Jouni Malinen9d62a982013-02-14 21:10:13 +0200341 [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 },
342 [NL80211_ATTR_STA_EXT_CAPABILITY] = { .type = NLA_BINARY, },
Johannes Berg3713b4e2013-02-14 16:19:38 +0100343 [NL80211_ATTR_SPLIT_WIPHY_DUMP] = { .type = NLA_FLAG, },
Johannes Bergee2aca32013-02-21 17:36:01 +0100344 [NL80211_ATTR_DISABLE_VHT] = { .type = NLA_FLAG },
345 [NL80211_ATTR_VHT_CAPABILITY_MASK] = {
346 .len = NL80211_VHT_CAPABILITY_LEN,
347 },
Jouni Malinen355199e2013-02-27 17:14:27 +0200348 [NL80211_ATTR_MDID] = { .type = NLA_U16 },
349 [NL80211_ATTR_IE_RIC] = { .type = NLA_BINARY,
350 .len = IEEE80211_MAX_DATA_LEN },
Jouni Malinen5e4b6f52013-05-16 20:11:08 +0300351 [NL80211_ATTR_PEER_AID] = { .type = NLA_U16 },
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +0200352 [NL80211_ATTR_CH_SWITCH_COUNT] = { .type = NLA_U32 },
353 [NL80211_ATTR_CH_SWITCH_BLOCK_TX] = { .type = NLA_FLAG },
354 [NL80211_ATTR_CSA_IES] = { .type = NLA_NESTED },
355 [NL80211_ATTR_CSA_C_OFF_BEACON] = { .type = NLA_U16 },
356 [NL80211_ATTR_CSA_C_OFF_PRESP] = { .type = NLA_U16 },
Sunil Duttc01fc9a2013-10-09 20:45:21 +0530357 [NL80211_ATTR_STA_SUPPORTED_CHANNELS] = { .type = NLA_BINARY },
358 [NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES] = { .type = NLA_BINARY },
Simon Wunderlich5336fa82013-10-07 18:41:05 +0200359 [NL80211_ATTR_HANDLE_DFS] = { .type = NLA_FLAG },
Johannes Berg55682962007-09-20 13:09:35 -0400360};
361
Johannes Berge31b8212010-10-05 19:39:30 +0200362/* policy for the key attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000363static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
Johannes Bergfffd0932009-07-08 14:22:54 +0200364 [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
Johannes Bergb9454e82009-07-08 13:29:08 +0200365 [NL80211_KEY_IDX] = { .type = NLA_U8 },
366 [NL80211_KEY_CIPHER] = { .type = NLA_U32 },
Jouni Malinen81962262011-11-02 23:36:31 +0200367 [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Bergb9454e82009-07-08 13:29:08 +0200368 [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
369 [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
Johannes Berge31b8212010-10-05 19:39:30 +0200370 [NL80211_KEY_TYPE] = { .type = NLA_U32 },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100371 [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
372};
373
374/* policy for the key default flags */
375static const struct nla_policy
376nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = {
377 [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG },
378 [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG },
Johannes Bergb9454e82009-07-08 13:29:08 +0200379};
380
Johannes Bergff1b6e62011-05-04 15:37:28 +0200381/* policy for WoWLAN attributes */
382static const struct nla_policy
383nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
384 [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
385 [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
386 [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
387 [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED },
Johannes Berg77dbbb12011-07-13 10:48:55 +0200388 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
389 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
390 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
391 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
Johannes Berg2a0e0472013-01-23 22:57:40 +0100392 [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
393};
394
395static const struct nla_policy
396nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = {
397 [NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 },
398 [NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 },
399 [NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN },
400 [NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 },
401 [NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 },
402 [NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 },
403 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = {
404 .len = sizeof(struct nl80211_wowlan_tcp_data_seq)
405 },
406 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = {
407 .len = sizeof(struct nl80211_wowlan_tcp_data_token)
408 },
409 [NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 },
410 [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 },
411 [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200412};
413
Amitkumar Karwarbe29b992013-06-28 11:51:26 -0700414/* policy for coalesce rule attributes */
415static const struct nla_policy
416nl80211_coalesce_policy[NUM_NL80211_ATTR_COALESCE_RULE] = {
417 [NL80211_ATTR_COALESCE_RULE_DELAY] = { .type = NLA_U32 },
418 [NL80211_ATTR_COALESCE_RULE_CONDITION] = { .type = NLA_U32 },
419 [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN] = { .type = NLA_NESTED },
420};
421
Johannes Berge5497d72011-07-05 16:35:40 +0200422/* policy for GTK rekey offload attributes */
423static const struct nla_policy
424nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = {
425 [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN },
426 [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN },
427 [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN },
428};
429
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300430static const struct nla_policy
431nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
Johannes Berg4a4ab0d2012-06-13 11:17:11 +0200432 [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300433 .len = IEEE80211_MAX_SSID_LEN },
Thomas Pedersen88e920b2012-06-21 11:09:54 -0700434 [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300435};
436
Johannes Berg97990a02013-04-19 01:02:55 +0200437static int nl80211_prepare_wdev_dump(struct sk_buff *skb,
438 struct netlink_callback *cb,
439 struct cfg80211_registered_device **rdev,
440 struct wireless_dev **wdev)
Holger Schuriga0438972009-11-11 11:30:02 +0100441{
Johannes Berg67748892010-10-04 21:14:06 +0200442 int err;
443
Johannes Berg67748892010-10-04 21:14:06 +0200444 rtnl_lock();
445
Johannes Berg97990a02013-04-19 01:02:55 +0200446 if (!cb->args[0]) {
447 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
448 nl80211_fam.attrbuf, nl80211_fam.maxattr,
449 nl80211_policy);
450 if (err)
451 goto out_unlock;
452
453 *wdev = __cfg80211_wdev_from_attrs(sock_net(skb->sk),
454 nl80211_fam.attrbuf);
455 if (IS_ERR(*wdev)) {
456 err = PTR_ERR(*wdev);
457 goto out_unlock;
458 }
459 *rdev = wiphy_to_dev((*wdev)->wiphy);
Johannes Bergc319d502013-07-30 22:34:28 +0200460 /* 0 is the first index - add 1 to parse only once */
461 cb->args[0] = (*rdev)->wiphy_idx + 1;
Johannes Berg97990a02013-04-19 01:02:55 +0200462 cb->args[1] = (*wdev)->identifier;
463 } else {
Johannes Bergc319d502013-07-30 22:34:28 +0200464 /* subtract the 1 again here */
465 struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1);
Johannes Berg97990a02013-04-19 01:02:55 +0200466 struct wireless_dev *tmp;
467
468 if (!wiphy) {
469 err = -ENODEV;
470 goto out_unlock;
471 }
472 *rdev = wiphy_to_dev(wiphy);
473 *wdev = NULL;
474
Johannes Berg97990a02013-04-19 01:02:55 +0200475 list_for_each_entry(tmp, &(*rdev)->wdev_list, list) {
476 if (tmp->identifier == cb->args[1]) {
477 *wdev = tmp;
478 break;
479 }
480 }
Johannes Berg97990a02013-04-19 01:02:55 +0200481
482 if (!*wdev) {
483 err = -ENODEV;
484 goto out_unlock;
485 }
Johannes Berg67748892010-10-04 21:14:06 +0200486 }
487
Johannes Berg67748892010-10-04 21:14:06 +0200488 return 0;
Johannes Berg97990a02013-04-19 01:02:55 +0200489 out_unlock:
Johannes Berg67748892010-10-04 21:14:06 +0200490 rtnl_unlock();
491 return err;
492}
493
Johannes Berg97990a02013-04-19 01:02:55 +0200494static void nl80211_finish_wdev_dump(struct cfg80211_registered_device *rdev)
Johannes Berg67748892010-10-04 21:14:06 +0200495{
Johannes Berg67748892010-10-04 21:14:06 +0200496 rtnl_unlock();
497}
498
Johannes Bergf4a11bb2009-03-27 12:40:28 +0100499/* IE validation */
500static bool is_valid_ie_attr(const struct nlattr *attr)
501{
502 const u8 *pos;
503 int len;
504
505 if (!attr)
506 return true;
507
508 pos = nla_data(attr);
509 len = nla_len(attr);
510
511 while (len) {
512 u8 elemlen;
513
514 if (len < 2)
515 return false;
516 len -= 2;
517
518 elemlen = pos[1];
519 if (elemlen > len)
520 return false;
521
522 len -= elemlen;
523 pos += 2 + elemlen;
524 }
525
526 return true;
527}
528
Johannes Berg55682962007-09-20 13:09:35 -0400529/* message building helper */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000530static inline void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
Johannes Berg55682962007-09-20 13:09:35 -0400531 int flags, u8 cmd)
532{
533 /* since there is no private header just add the generic one */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000534 return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -0400535}
536
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400537static int nl80211_msg_put_channel(struct sk_buff *msg,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100538 struct ieee80211_channel *chan,
539 bool large)
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400540{
David S. Miller9360ffd2012-03-29 04:41:26 -0400541 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
542 chan->center_freq))
543 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400544
David S. Miller9360ffd2012-03-29 04:41:26 -0400545 if ((chan->flags & IEEE80211_CHAN_DISABLED) &&
546 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED))
547 goto nla_put_failure;
548 if ((chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) &&
549 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN))
550 goto nla_put_failure;
551 if ((chan->flags & IEEE80211_CHAN_NO_IBSS) &&
552 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IBSS))
553 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100554 if (chan->flags & IEEE80211_CHAN_RADAR) {
555 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
556 goto nla_put_failure;
557 if (large) {
558 u32 time;
559
560 time = elapsed_jiffies_msecs(chan->dfs_state_entered);
561
562 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE,
563 chan->dfs_state))
564 goto nla_put_failure;
565 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME,
566 time))
567 goto nla_put_failure;
568 }
569 }
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400570
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100571 if (large) {
572 if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) &&
573 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS))
574 goto nla_put_failure;
575 if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) &&
576 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS))
577 goto nla_put_failure;
578 if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) &&
579 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ))
580 goto nla_put_failure;
581 if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) &&
582 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ))
583 goto nla_put_failure;
584 }
585
David S. Miller9360ffd2012-03-29 04:41:26 -0400586 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
587 DBM_TO_MBM(chan->max_power)))
588 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400589
590 return 0;
591
592 nla_put_failure:
593 return -ENOBUFS;
594}
595
Johannes Berg55682962007-09-20 13:09:35 -0400596/* netlink command implementations */
597
Johannes Bergb9454e82009-07-08 13:29:08 +0200598struct key_parse {
599 struct key_params p;
600 int idx;
Johannes Berge31b8212010-10-05 19:39:30 +0200601 int type;
Johannes Bergb9454e82009-07-08 13:29:08 +0200602 bool def, defmgmt;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100603 bool def_uni, def_multi;
Johannes Bergb9454e82009-07-08 13:29:08 +0200604};
605
606static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k)
607{
608 struct nlattr *tb[NL80211_KEY_MAX + 1];
609 int err = nla_parse_nested(tb, NL80211_KEY_MAX, key,
610 nl80211_key_policy);
611 if (err)
612 return err;
613
614 k->def = !!tb[NL80211_KEY_DEFAULT];
615 k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT];
616
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100617 if (k->def) {
618 k->def_uni = true;
619 k->def_multi = true;
620 }
621 if (k->defmgmt)
622 k->def_multi = true;
623
Johannes Bergb9454e82009-07-08 13:29:08 +0200624 if (tb[NL80211_KEY_IDX])
625 k->idx = nla_get_u8(tb[NL80211_KEY_IDX]);
626
627 if (tb[NL80211_KEY_DATA]) {
628 k->p.key = nla_data(tb[NL80211_KEY_DATA]);
629 k->p.key_len = nla_len(tb[NL80211_KEY_DATA]);
630 }
631
632 if (tb[NL80211_KEY_SEQ]) {
633 k->p.seq = nla_data(tb[NL80211_KEY_SEQ]);
634 k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]);
635 }
636
637 if (tb[NL80211_KEY_CIPHER])
638 k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]);
639
Johannes Berge31b8212010-10-05 19:39:30 +0200640 if (tb[NL80211_KEY_TYPE]) {
641 k->type = nla_get_u32(tb[NL80211_KEY_TYPE]);
642 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
643 return -EINVAL;
644 }
645
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100646 if (tb[NL80211_KEY_DEFAULT_TYPES]) {
647 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
Johannes Berg2da8f412012-01-20 13:52:37 +0100648 err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
649 tb[NL80211_KEY_DEFAULT_TYPES],
650 nl80211_key_default_policy);
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100651 if (err)
652 return err;
653
654 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
655 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
656 }
657
Johannes Bergb9454e82009-07-08 13:29:08 +0200658 return 0;
659}
660
661static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k)
662{
663 if (info->attrs[NL80211_ATTR_KEY_DATA]) {
664 k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
665 k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
666 }
667
668 if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
669 k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
670 k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
671 }
672
673 if (info->attrs[NL80211_ATTR_KEY_IDX])
674 k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
675
676 if (info->attrs[NL80211_ATTR_KEY_CIPHER])
677 k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);
678
679 k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT];
680 k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT];
681
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100682 if (k->def) {
683 k->def_uni = true;
684 k->def_multi = true;
685 }
686 if (k->defmgmt)
687 k->def_multi = true;
688
Johannes Berge31b8212010-10-05 19:39:30 +0200689 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
690 k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
691 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
692 return -EINVAL;
693 }
694
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100695 if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) {
696 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
697 int err = nla_parse_nested(
698 kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
699 info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES],
700 nl80211_key_default_policy);
701 if (err)
702 return err;
703
704 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
705 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
706 }
707
Johannes Bergb9454e82009-07-08 13:29:08 +0200708 return 0;
709}
710
711static int nl80211_parse_key(struct genl_info *info, struct key_parse *k)
712{
713 int err;
714
715 memset(k, 0, sizeof(*k));
716 k->idx = -1;
Johannes Berge31b8212010-10-05 19:39:30 +0200717 k->type = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +0200718
719 if (info->attrs[NL80211_ATTR_KEY])
720 err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k);
721 else
722 err = nl80211_parse_key_old(info, k);
723
724 if (err)
725 return err;
726
727 if (k->def && k->defmgmt)
728 return -EINVAL;
729
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100730 if (k->defmgmt) {
731 if (k->def_uni || !k->def_multi)
732 return -EINVAL;
733 }
734
Johannes Bergb9454e82009-07-08 13:29:08 +0200735 if (k->idx != -1) {
736 if (k->defmgmt) {
737 if (k->idx < 4 || k->idx > 5)
738 return -EINVAL;
739 } else if (k->def) {
740 if (k->idx < 0 || k->idx > 3)
741 return -EINVAL;
742 } else {
743 if (k->idx < 0 || k->idx > 5)
744 return -EINVAL;
745 }
746 }
747
748 return 0;
749}
750
Johannes Bergfffd0932009-07-08 14:22:54 +0200751static struct cfg80211_cached_keys *
752nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +0530753 struct nlattr *keys, bool *no_ht)
Johannes Bergfffd0932009-07-08 14:22:54 +0200754{
755 struct key_parse parse;
756 struct nlattr *key;
757 struct cfg80211_cached_keys *result;
758 int rem, err, def = 0;
759
760 result = kzalloc(sizeof(*result), GFP_KERNEL);
761 if (!result)
762 return ERR_PTR(-ENOMEM);
763
764 result->def = -1;
765 result->defmgmt = -1;
766
767 nla_for_each_nested(key, keys, rem) {
768 memset(&parse, 0, sizeof(parse));
769 parse.idx = -1;
770
771 err = nl80211_parse_key_new(key, &parse);
772 if (err)
773 goto error;
774 err = -EINVAL;
775 if (!parse.p.key)
776 goto error;
777 if (parse.idx < 0 || parse.idx > 4)
778 goto error;
779 if (parse.def) {
780 if (def)
781 goto error;
782 def = 1;
783 result->def = parse.idx;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100784 if (!parse.def_uni || !parse.def_multi)
785 goto error;
Johannes Bergfffd0932009-07-08 14:22:54 +0200786 } else if (parse.defmgmt)
787 goto error;
788 err = cfg80211_validate_key_settings(rdev, &parse.p,
Johannes Berge31b8212010-10-05 19:39:30 +0200789 parse.idx, false, NULL);
Johannes Bergfffd0932009-07-08 14:22:54 +0200790 if (err)
791 goto error;
792 result->params[parse.idx].cipher = parse.p.cipher;
793 result->params[parse.idx].key_len = parse.p.key_len;
794 result->params[parse.idx].key = result->data[parse.idx];
795 memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len);
Sujith Manoharande7044e2012-10-18 10:19:28 +0530796
797 if (parse.p.cipher == WLAN_CIPHER_SUITE_WEP40 ||
798 parse.p.cipher == WLAN_CIPHER_SUITE_WEP104) {
799 if (no_ht)
800 *no_ht = true;
801 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200802 }
803
804 return result;
805 error:
806 kfree(result);
807 return ERR_PTR(err);
808}
809
810static int nl80211_key_allowed(struct wireless_dev *wdev)
811{
812 ASSERT_WDEV_LOCK(wdev);
813
Johannes Bergfffd0932009-07-08 14:22:54 +0200814 switch (wdev->iftype) {
815 case NL80211_IFTYPE_AP:
816 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200817 case NL80211_IFTYPE_P2P_GO:
Thomas Pedersenff973af2011-05-03 16:57:12 -0700818 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergfffd0932009-07-08 14:22:54 +0200819 break;
820 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200821 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200822 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergceca7b72013-05-16 00:55:45 +0200823 if (!wdev->current_bss)
Johannes Bergfffd0932009-07-08 14:22:54 +0200824 return -ENOLINK;
825 break;
826 default:
827 return -EINVAL;
828 }
829
830 return 0;
831}
832
Johannes Berg7527a782011-05-13 10:58:57 +0200833static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes)
834{
835 struct nlattr *nl_modes = nla_nest_start(msg, attr);
836 int i;
837
838 if (!nl_modes)
839 goto nla_put_failure;
840
841 i = 0;
842 while (ifmodes) {
David S. Miller9360ffd2012-03-29 04:41:26 -0400843 if ((ifmodes & 1) && nla_put_flag(msg, i))
844 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200845 ifmodes >>= 1;
846 i++;
847 }
848
849 nla_nest_end(msg, nl_modes);
850 return 0;
851
852nla_put_failure:
853 return -ENOBUFS;
854}
855
856static int nl80211_put_iface_combinations(struct wiphy *wiphy,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100857 struct sk_buff *msg,
858 bool large)
Johannes Berg7527a782011-05-13 10:58:57 +0200859{
860 struct nlattr *nl_combis;
861 int i, j;
862
863 nl_combis = nla_nest_start(msg,
864 NL80211_ATTR_INTERFACE_COMBINATIONS);
865 if (!nl_combis)
866 goto nla_put_failure;
867
868 for (i = 0; i < wiphy->n_iface_combinations; i++) {
869 const struct ieee80211_iface_combination *c;
870 struct nlattr *nl_combi, *nl_limits;
871
872 c = &wiphy->iface_combinations[i];
873
874 nl_combi = nla_nest_start(msg, i + 1);
875 if (!nl_combi)
876 goto nla_put_failure;
877
878 nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS);
879 if (!nl_limits)
880 goto nla_put_failure;
881
882 for (j = 0; j < c->n_limits; j++) {
883 struct nlattr *nl_limit;
884
885 nl_limit = nla_nest_start(msg, j + 1);
886 if (!nl_limit)
887 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -0400888 if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
889 c->limits[j].max))
890 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200891 if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES,
892 c->limits[j].types))
893 goto nla_put_failure;
894 nla_nest_end(msg, nl_limit);
895 }
896
897 nla_nest_end(msg, nl_limits);
898
David S. Miller9360ffd2012-03-29 04:41:26 -0400899 if (c->beacon_int_infra_match &&
900 nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH))
901 goto nla_put_failure;
902 if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS,
903 c->num_different_channels) ||
904 nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM,
905 c->max_interfaces))
906 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100907 if (large &&
908 nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
909 c->radar_detect_widths))
910 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200911
912 nla_nest_end(msg, nl_combi);
913 }
914
915 nla_nest_end(msg, nl_combis);
916
917 return 0;
918nla_put_failure:
919 return -ENOBUFS;
920}
921
Johannes Berg3713b4e2013-02-14 16:19:38 +0100922#ifdef CONFIG_PM
Johannes Bergb56cf722013-02-20 01:02:38 +0100923static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev,
924 struct sk_buff *msg)
925{
Johannes Berg964dc9e2013-06-03 17:25:34 +0200926 const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan->tcp;
Johannes Bergb56cf722013-02-20 01:02:38 +0100927 struct nlattr *nl_tcp;
928
929 if (!tcp)
930 return 0;
931
932 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
933 if (!nl_tcp)
934 return -ENOBUFS;
935
936 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
937 tcp->data_payload_max))
938 return -ENOBUFS;
939
940 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
941 tcp->data_payload_max))
942 return -ENOBUFS;
943
944 if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ))
945 return -ENOBUFS;
946
947 if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
948 sizeof(*tcp->tok), tcp->tok))
949 return -ENOBUFS;
950
951 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
952 tcp->data_interval_max))
953 return -ENOBUFS;
954
955 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
956 tcp->wake_payload_max))
957 return -ENOBUFS;
958
959 nla_nest_end(msg, nl_tcp);
960 return 0;
961}
962
Johannes Berg3713b4e2013-02-14 16:19:38 +0100963static int nl80211_send_wowlan(struct sk_buff *msg,
Johannes Bergb56cf722013-02-20 01:02:38 +0100964 struct cfg80211_registered_device *dev,
965 bool large)
Johannes Berg3713b4e2013-02-14 16:19:38 +0100966{
967 struct nlattr *nl_wowlan;
968
Johannes Berg964dc9e2013-06-03 17:25:34 +0200969 if (!dev->wiphy.wowlan)
Johannes Berg3713b4e2013-02-14 16:19:38 +0100970 return 0;
971
972 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED);
973 if (!nl_wowlan)
974 return -ENOBUFS;
975
Johannes Berg964dc9e2013-06-03 17:25:34 +0200976 if (((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_ANY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100977 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200978 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_DISCONNECT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100979 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200980 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100981 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200982 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100983 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200984 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100985 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200986 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100987 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200988 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100989 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200990 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100991 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
992 return -ENOBUFS;
993
Johannes Berg964dc9e2013-06-03 17:25:34 +0200994 if (dev->wiphy.wowlan->n_patterns) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -0700995 struct nl80211_pattern_support pat = {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200996 .max_patterns = dev->wiphy.wowlan->n_patterns,
997 .min_pattern_len = dev->wiphy.wowlan->pattern_min_len,
998 .max_pattern_len = dev->wiphy.wowlan->pattern_max_len,
999 .max_pkt_offset = dev->wiphy.wowlan->max_pkt_offset,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001000 };
1001
1002 if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
1003 sizeof(pat), &pat))
1004 return -ENOBUFS;
1005 }
1006
Johannes Bergb56cf722013-02-20 01:02:38 +01001007 if (large && nl80211_send_wowlan_tcp_caps(dev, msg))
1008 return -ENOBUFS;
1009
Johannes Berg3713b4e2013-02-14 16:19:38 +01001010 nla_nest_end(msg, nl_wowlan);
1011
1012 return 0;
1013}
1014#endif
1015
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001016static int nl80211_send_coalesce(struct sk_buff *msg,
1017 struct cfg80211_registered_device *dev)
1018{
1019 struct nl80211_coalesce_rule_support rule;
1020
1021 if (!dev->wiphy.coalesce)
1022 return 0;
1023
1024 rule.max_rules = dev->wiphy.coalesce->n_rules;
1025 rule.max_delay = dev->wiphy.coalesce->max_delay;
1026 rule.pat.max_patterns = dev->wiphy.coalesce->n_patterns;
1027 rule.pat.min_pattern_len = dev->wiphy.coalesce->pattern_min_len;
1028 rule.pat.max_pattern_len = dev->wiphy.coalesce->pattern_max_len;
1029 rule.pat.max_pkt_offset = dev->wiphy.coalesce->max_pkt_offset;
1030
1031 if (nla_put(msg, NL80211_ATTR_COALESCE_RULE, sizeof(rule), &rule))
1032 return -ENOBUFS;
1033
1034 return 0;
1035}
1036
Johannes Berg3713b4e2013-02-14 16:19:38 +01001037static int nl80211_send_band_rateinfo(struct sk_buff *msg,
1038 struct ieee80211_supported_band *sband)
1039{
1040 struct nlattr *nl_rates, *nl_rate;
1041 struct ieee80211_rate *rate;
1042 int i;
1043
1044 /* add HT info */
1045 if (sband->ht_cap.ht_supported &&
1046 (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET,
1047 sizeof(sband->ht_cap.mcs),
1048 &sband->ht_cap.mcs) ||
1049 nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA,
1050 sband->ht_cap.cap) ||
1051 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
1052 sband->ht_cap.ampdu_factor) ||
1053 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
1054 sband->ht_cap.ampdu_density)))
1055 return -ENOBUFS;
1056
1057 /* add VHT info */
1058 if (sband->vht_cap.vht_supported &&
1059 (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET,
1060 sizeof(sband->vht_cap.vht_mcs),
1061 &sband->vht_cap.vht_mcs) ||
1062 nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA,
1063 sband->vht_cap.cap)))
1064 return -ENOBUFS;
1065
1066 /* add bitrates */
1067 nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
1068 if (!nl_rates)
1069 return -ENOBUFS;
1070
1071 for (i = 0; i < sband->n_bitrates; i++) {
1072 nl_rate = nla_nest_start(msg, i);
1073 if (!nl_rate)
1074 return -ENOBUFS;
1075
1076 rate = &sband->bitrates[i];
1077 if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE,
1078 rate->bitrate))
1079 return -ENOBUFS;
1080 if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
1081 nla_put_flag(msg,
1082 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE))
1083 return -ENOBUFS;
1084
1085 nla_nest_end(msg, nl_rate);
1086 }
1087
1088 nla_nest_end(msg, nl_rates);
1089
1090 return 0;
1091}
1092
1093static int
1094nl80211_send_mgmt_stypes(struct sk_buff *msg,
1095 const struct ieee80211_txrx_stypes *mgmt_stypes)
1096{
1097 u16 stypes;
1098 struct nlattr *nl_ftypes, *nl_ifs;
1099 enum nl80211_iftype ift;
1100 int i;
1101
1102 if (!mgmt_stypes)
1103 return 0;
1104
1105 nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES);
1106 if (!nl_ifs)
1107 return -ENOBUFS;
1108
1109 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1110 nl_ftypes = nla_nest_start(msg, ift);
1111 if (!nl_ftypes)
1112 return -ENOBUFS;
1113 i = 0;
1114 stypes = mgmt_stypes[ift].tx;
1115 while (stypes) {
1116 if ((stypes & 1) &&
1117 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1118 (i << 4) | IEEE80211_FTYPE_MGMT))
1119 return -ENOBUFS;
1120 stypes >>= 1;
1121 i++;
1122 }
1123 nla_nest_end(msg, nl_ftypes);
1124 }
1125
1126 nla_nest_end(msg, nl_ifs);
1127
1128 nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES);
1129 if (!nl_ifs)
1130 return -ENOBUFS;
1131
1132 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1133 nl_ftypes = nla_nest_start(msg, ift);
1134 if (!nl_ftypes)
1135 return -ENOBUFS;
1136 i = 0;
1137 stypes = mgmt_stypes[ift].rx;
1138 while (stypes) {
1139 if ((stypes & 1) &&
1140 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1141 (i << 4) | IEEE80211_FTYPE_MGMT))
1142 return -ENOBUFS;
1143 stypes >>= 1;
1144 i++;
1145 }
1146 nla_nest_end(msg, nl_ftypes);
1147 }
1148 nla_nest_end(msg, nl_ifs);
1149
1150 return 0;
1151}
1152
Johannes Berg86e8cf92013-06-19 10:57:22 +02001153struct nl80211_dump_wiphy_state {
1154 s64 filter_wiphy;
1155 long start;
1156 long split_start, band_start, chan_start;
1157 bool split;
1158};
1159
Johannes Berg3713b4e2013-02-14 16:19:38 +01001160static int nl80211_send_wiphy(struct cfg80211_registered_device *dev,
1161 struct sk_buff *msg, u32 portid, u32 seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001162 int flags, struct nl80211_dump_wiphy_state *state)
Johannes Berg55682962007-09-20 13:09:35 -04001163{
1164 void *hdr;
Johannes Bergee688b002008-01-24 19:38:39 +01001165 struct nlattr *nl_bands, *nl_band;
1166 struct nlattr *nl_freqs, *nl_freq;
Johannes Berg8fdc6212009-03-14 09:34:01 +01001167 struct nlattr *nl_cmds;
Johannes Bergee688b002008-01-24 19:38:39 +01001168 enum ieee80211_band band;
1169 struct ieee80211_channel *chan;
Johannes Bergee688b002008-01-24 19:38:39 +01001170 int i;
Johannes Berg2e161f72010-08-12 15:38:38 +02001171 const struct ieee80211_txrx_stypes *mgmt_stypes =
1172 dev->wiphy.mgmt_stypes;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001173 u32 features;
Johannes Berg55682962007-09-20 13:09:35 -04001174
Eric W. Biederman15e47302012-09-07 20:12:54 +00001175 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_WIPHY);
Johannes Berg55682962007-09-20 13:09:35 -04001176 if (!hdr)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001177 return -ENOBUFS;
1178
Johannes Berg86e8cf92013-06-19 10:57:22 +02001179 if (WARN_ON(!state))
1180 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -04001181
David S. Miller9360ffd2012-03-29 04:41:26 -04001182 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, dev->wiphy_idx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001183 nla_put_string(msg, NL80211_ATTR_WIPHY_NAME,
1184 wiphy_name(&dev->wiphy)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04001185 nla_put_u32(msg, NL80211_ATTR_GENERATION,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001186 cfg80211_rdev_list_generation))
David S. Miller9360ffd2012-03-29 04:41:26 -04001187 goto nla_put_failure;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001188
Johannes Berg86e8cf92013-06-19 10:57:22 +02001189 switch (state->split_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001190 case 0:
1191 if (nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
1192 dev->wiphy.retry_short) ||
1193 nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
1194 dev->wiphy.retry_long) ||
1195 nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
1196 dev->wiphy.frag_threshold) ||
1197 nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
1198 dev->wiphy.rts_threshold) ||
1199 nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS,
1200 dev->wiphy.coverage_class) ||
1201 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
1202 dev->wiphy.max_scan_ssids) ||
1203 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
1204 dev->wiphy.max_sched_scan_ssids) ||
1205 nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
1206 dev->wiphy.max_scan_ie_len) ||
1207 nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,
1208 dev->wiphy.max_sched_scan_ie_len) ||
1209 nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS,
1210 dev->wiphy.max_match_sets))
Johannes Bergee688b002008-01-24 19:38:39 +01001211 goto nla_put_failure;
1212
Johannes Berg3713b4e2013-02-14 16:19:38 +01001213 if ((dev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) &&
1214 nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN))
1215 goto nla_put_failure;
1216 if ((dev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
1217 nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH))
1218 goto nla_put_failure;
1219 if ((dev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
1220 nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD))
1221 goto nla_put_failure;
1222 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
1223 nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT))
1224 goto nla_put_failure;
1225 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
1226 nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT))
1227 goto nla_put_failure;
1228 if ((dev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) &&
1229 nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP))
David S. Miller9360ffd2012-03-29 04:41:26 -04001230 goto nla_put_failure;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001231 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ) &&
1232 nla_put_flag(msg, WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1233 goto nla_put_failure;
Johannes Bergd51626d2008-10-09 12:20:13 +02001234
Johannes Berg86e8cf92013-06-19 10:57:22 +02001235 state->split_start++;
1236 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001237 break;
1238 case 1:
1239 if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
1240 sizeof(u32) * dev->wiphy.n_cipher_suites,
1241 dev->wiphy.cipher_suites))
Mahesh Palivelabf0c111e2012-06-22 07:27:46 +00001242 goto nla_put_failure;
1243
Johannes Berg3713b4e2013-02-14 16:19:38 +01001244 if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS,
1245 dev->wiphy.max_num_pmkids))
Johannes Bergee688b002008-01-24 19:38:39 +01001246 goto nla_put_failure;
1247
Johannes Berg3713b4e2013-02-14 16:19:38 +01001248 if ((dev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
1249 nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE))
1250 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001251
Johannes Berg3713b4e2013-02-14 16:19:38 +01001252 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
1253 dev->wiphy.available_antennas_tx) ||
1254 nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
1255 dev->wiphy.available_antennas_rx))
1256 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001257
Johannes Berg3713b4e2013-02-14 16:19:38 +01001258 if ((dev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) &&
1259 nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD,
1260 dev->wiphy.probe_resp_offload))
1261 goto nla_put_failure;
Jouni Malinene2f367f262008-11-21 19:01:30 +02001262
Johannes Berg3713b4e2013-02-14 16:19:38 +01001263 if ((dev->wiphy.available_antennas_tx ||
1264 dev->wiphy.available_antennas_rx) &&
1265 dev->ops->get_antenna) {
1266 u32 tx_ant = 0, rx_ant = 0;
1267 int res;
1268 res = rdev_get_antenna(dev, &tx_ant, &rx_ant);
1269 if (!res) {
1270 if (nla_put_u32(msg,
1271 NL80211_ATTR_WIPHY_ANTENNA_TX,
1272 tx_ant) ||
1273 nla_put_u32(msg,
1274 NL80211_ATTR_WIPHY_ANTENNA_RX,
1275 rx_ant))
1276 goto nla_put_failure;
1277 }
Johannes Bergee688b002008-01-24 19:38:39 +01001278 }
1279
Johannes Berg86e8cf92013-06-19 10:57:22 +02001280 state->split_start++;
1281 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001282 break;
1283 case 2:
1284 if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
1285 dev->wiphy.interface_modes))
1286 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001287 state->split_start++;
1288 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001289 break;
1290 case 3:
1291 nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
1292 if (!nl_bands)
Johannes Bergee688b002008-01-24 19:38:39 +01001293 goto nla_put_failure;
1294
Johannes Berg86e8cf92013-06-19 10:57:22 +02001295 for (band = state->band_start;
1296 band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001297 struct ieee80211_supported_band *sband;
1298
1299 sband = dev->wiphy.bands[band];
1300
1301 if (!sband)
1302 continue;
1303
1304 nl_band = nla_nest_start(msg, band);
1305 if (!nl_band)
Johannes Bergee688b002008-01-24 19:38:39 +01001306 goto nla_put_failure;
1307
Johannes Berg86e8cf92013-06-19 10:57:22 +02001308 switch (state->chan_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001309 case 0:
1310 if (nl80211_send_band_rateinfo(msg, sband))
1311 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001312 state->chan_start++;
1313 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001314 break;
1315 default:
1316 /* add frequencies */
1317 nl_freqs = nla_nest_start(
1318 msg, NL80211_BAND_ATTR_FREQS);
1319 if (!nl_freqs)
1320 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001321
Johannes Berg86e8cf92013-06-19 10:57:22 +02001322 for (i = state->chan_start - 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001323 i < sband->n_channels;
1324 i++) {
1325 nl_freq = nla_nest_start(msg, i);
1326 if (!nl_freq)
1327 goto nla_put_failure;
1328
1329 chan = &sband->channels[i];
1330
Johannes Berg86e8cf92013-06-19 10:57:22 +02001331 if (nl80211_msg_put_channel(
1332 msg, chan,
1333 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001334 goto nla_put_failure;
1335
1336 nla_nest_end(msg, nl_freq);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001337 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001338 break;
1339 }
1340 if (i < sband->n_channels)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001341 state->chan_start = i + 2;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001342 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001343 state->chan_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001344 nla_nest_end(msg, nl_freqs);
1345 }
1346
1347 nla_nest_end(msg, nl_band);
1348
Johannes Berg86e8cf92013-06-19 10:57:22 +02001349 if (state->split) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001350 /* start again here */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001351 if (state->chan_start)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001352 band--;
1353 break;
1354 }
Johannes Bergee688b002008-01-24 19:38:39 +01001355 }
Johannes Berg3713b4e2013-02-14 16:19:38 +01001356 nla_nest_end(msg, nl_bands);
Johannes Bergee688b002008-01-24 19:38:39 +01001357
Johannes Berg3713b4e2013-02-14 16:19:38 +01001358 if (band < IEEE80211_NUM_BANDS)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001359 state->band_start = band + 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001360 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001361 state->band_start = 0;
Johannes Bergee688b002008-01-24 19:38:39 +01001362
Johannes Berg3713b4e2013-02-14 16:19:38 +01001363 /* if bands & channels are done, continue outside */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001364 if (state->band_start == 0 && state->chan_start == 0)
1365 state->split_start++;
1366 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001367 break;
1368 case 4:
1369 nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
1370 if (!nl_cmds)
David S. Miller9360ffd2012-03-29 04:41:26 -04001371 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001372
1373 i = 0;
1374#define CMD(op, n) \
1375 do { \
1376 if (dev->ops->op) { \
1377 i++; \
1378 if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
1379 goto nla_put_failure; \
1380 } \
1381 } while (0)
1382
1383 CMD(add_virtual_intf, NEW_INTERFACE);
1384 CMD(change_virtual_intf, SET_INTERFACE);
1385 CMD(add_key, NEW_KEY);
1386 CMD(start_ap, START_AP);
1387 CMD(add_station, NEW_STATION);
1388 CMD(add_mpath, NEW_MPATH);
1389 CMD(update_mesh_config, SET_MESH_CONFIG);
1390 CMD(change_bss, SET_BSS);
1391 CMD(auth, AUTHENTICATE);
1392 CMD(assoc, ASSOCIATE);
1393 CMD(deauth, DEAUTHENTICATE);
1394 CMD(disassoc, DISASSOCIATE);
1395 CMD(join_ibss, JOIN_IBSS);
1396 CMD(join_mesh, JOIN_MESH);
1397 CMD(set_pmksa, SET_PMKSA);
1398 CMD(del_pmksa, DEL_PMKSA);
1399 CMD(flush_pmksa, FLUSH_PMKSA);
1400 if (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
1401 CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1402 CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1403 CMD(mgmt_tx, FRAME);
1404 CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
1405 if (dev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
1406 i++;
1407 if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
1408 goto nla_put_failure;
1409 }
1410 if (dev->ops->set_monitor_channel || dev->ops->start_ap ||
1411 dev->ops->join_mesh) {
1412 i++;
1413 if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
1414 goto nla_put_failure;
1415 }
1416 CMD(set_wds_peer, SET_WDS_PEER);
1417 if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
1418 CMD(tdls_mgmt, TDLS_MGMT);
1419 CMD(tdls_oper, TDLS_OPER);
1420 }
1421 if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
1422 CMD(sched_scan_start, START_SCHED_SCAN);
1423 CMD(probe_client, PROBE_CLIENT);
1424 CMD(set_noack_map, SET_NOACK_MAP);
1425 if (dev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
1426 i++;
1427 if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
1428 goto nla_put_failure;
1429 }
1430 CMD(start_p2p_device, START_P2P_DEVICE);
1431 CMD(set_mcast_rate, SET_MCAST_RATE);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001432 if (state->split) {
Arend van Spriel5de17982013-04-18 15:49:00 +02001433 CMD(crit_proto_start, CRIT_PROTOCOL_START);
1434 CMD(crit_proto_stop, CRIT_PROTOCOL_STOP);
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02001435 if (dev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH)
1436 CMD(channel_switch, CHANNEL_SWITCH);
Arend van Spriel5de17982013-04-18 15:49:00 +02001437 }
Johannes Berg8fdc6212009-03-14 09:34:01 +01001438
Kalle Valo4745fc02011-11-17 19:06:10 +02001439#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg3713b4e2013-02-14 16:19:38 +01001440 CMD(testmode_cmd, TESTMODE);
Kalle Valo4745fc02011-11-17 19:06:10 +02001441#endif
1442
Johannes Berg8fdc6212009-03-14 09:34:01 +01001443#undef CMD
Samuel Ortizb23aa672009-07-01 21:26:54 +02001444
Johannes Berg3713b4e2013-02-14 16:19:38 +01001445 if (dev->ops->connect || dev->ops->auth) {
1446 i++;
1447 if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
Johannes Berg2e161f72010-08-12 15:38:38 +02001448 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001449 }
1450
Johannes Berg3713b4e2013-02-14 16:19:38 +01001451 if (dev->ops->disconnect || dev->ops->deauth) {
1452 i++;
1453 if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
1454 goto nla_put_failure;
1455 }
Johannes Berg74b70a42010-08-24 12:15:53 +02001456
Johannes Berg3713b4e2013-02-14 16:19:38 +01001457 nla_nest_end(msg, nl_cmds);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001458 state->split_start++;
1459 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001460 break;
1461 case 5:
1462 if (dev->ops->remain_on_channel &&
1463 (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
1464 nla_put_u32(msg,
1465 NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,
1466 dev->wiphy.max_remain_on_channel_duration))
Johannes Berg2e161f72010-08-12 15:38:38 +02001467 goto nla_put_failure;
1468
Johannes Berg3713b4e2013-02-14 16:19:38 +01001469 if ((dev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
1470 nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
1471 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001472
Johannes Berg3713b4e2013-02-14 16:19:38 +01001473 if (nl80211_send_mgmt_stypes(msg, mgmt_stypes))
1474 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001475 state->split_start++;
1476 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001477 break;
1478 case 6:
Johannes Bergdfb89c52012-06-27 09:23:48 +02001479#ifdef CONFIG_PM
Johannes Berg86e8cf92013-06-19 10:57:22 +02001480 if (nl80211_send_wowlan(msg, dev, state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001481 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001482 state->split_start++;
1483 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001484 break;
1485#else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001486 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001487#endif
1488 case 7:
1489 if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
1490 dev->wiphy.software_iftypes))
Johannes Bergff1b6e62011-05-04 15:37:28 +02001491 goto nla_put_failure;
1492
Johannes Berg86e8cf92013-06-19 10:57:22 +02001493 if (nl80211_put_iface_combinations(&dev->wiphy, msg,
1494 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001495 goto nla_put_failure;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001496
Johannes Berg86e8cf92013-06-19 10:57:22 +02001497 state->split_start++;
1498 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001499 break;
1500 case 8:
1501 if ((dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
1502 nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
1503 dev->wiphy.ap_sme_capa))
1504 goto nla_put_failure;
1505
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001506 features = dev->wiphy.features;
1507 /*
1508 * We can only add the per-channel limit information if the
1509 * dump is split, otherwise it makes it too big. Therefore
1510 * only advertise it in that case.
1511 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001512 if (state->split)
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001513 features |= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS;
1514 if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, features))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001515 goto nla_put_failure;
1516
1517 if (dev->wiphy.ht_capa_mod_mask &&
1518 nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK,
1519 sizeof(*dev->wiphy.ht_capa_mod_mask),
1520 dev->wiphy.ht_capa_mod_mask))
1521 goto nla_put_failure;
1522
1523 if (dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME &&
1524 dev->wiphy.max_acl_mac_addrs &&
1525 nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX,
1526 dev->wiphy.max_acl_mac_addrs))
1527 goto nla_put_failure;
1528
1529 /*
1530 * Any information below this point is only available to
1531 * applications that can deal with it being split. This
1532 * helps ensure that newly added capabilities don't break
1533 * older tools by overrunning their buffers.
1534 *
1535 * We still increment split_start so that in the split
1536 * case we'll continue with more data in the next round,
1537 * but break unconditionally so unsplit data stops here.
1538 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001539 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001540 break;
1541 case 9:
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001542 if (dev->wiphy.extended_capabilities &&
1543 (nla_put(msg, NL80211_ATTR_EXT_CAPA,
1544 dev->wiphy.extended_capabilities_len,
1545 dev->wiphy.extended_capabilities) ||
1546 nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK,
1547 dev->wiphy.extended_capabilities_len,
1548 dev->wiphy.extended_capabilities_mask)))
1549 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001550
Johannes Bergee2aca32013-02-21 17:36:01 +01001551 if (dev->wiphy.vht_capa_mod_mask &&
1552 nla_put(msg, NL80211_ATTR_VHT_CAPABILITY_MASK,
1553 sizeof(*dev->wiphy.vht_capa_mod_mask),
1554 dev->wiphy.vht_capa_mod_mask))
1555 goto nla_put_failure;
1556
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001557 state->split_start++;
1558 break;
1559 case 10:
1560 if (nl80211_send_coalesce(msg, dev))
1561 goto nla_put_failure;
1562
Johannes Berg3713b4e2013-02-14 16:19:38 +01001563 /* done */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001564 state->split_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001565 break;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001566 }
Johannes Berg55682962007-09-20 13:09:35 -04001567 return genlmsg_end(msg, hdr);
1568
1569 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001570 genlmsg_cancel(msg, hdr);
1571 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04001572}
1573
Johannes Berg86e8cf92013-06-19 10:57:22 +02001574static int nl80211_dump_wiphy_parse(struct sk_buff *skb,
1575 struct netlink_callback *cb,
1576 struct nl80211_dump_wiphy_state *state)
1577{
1578 struct nlattr **tb = nl80211_fam.attrbuf;
1579 int ret = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
1580 tb, nl80211_fam.maxattr, nl80211_policy);
1581 /* ignore parse errors for backward compatibility */
1582 if (ret)
1583 return 0;
1584
1585 state->split = tb[NL80211_ATTR_SPLIT_WIPHY_DUMP];
1586 if (tb[NL80211_ATTR_WIPHY])
1587 state->filter_wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
1588 if (tb[NL80211_ATTR_WDEV])
1589 state->filter_wiphy = nla_get_u64(tb[NL80211_ATTR_WDEV]) >> 32;
1590 if (tb[NL80211_ATTR_IFINDEX]) {
1591 struct net_device *netdev;
1592 struct cfg80211_registered_device *rdev;
1593 int ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
1594
1595 netdev = dev_get_by_index(sock_net(skb->sk), ifidx);
1596 if (!netdev)
1597 return -ENODEV;
1598 if (netdev->ieee80211_ptr) {
1599 rdev = wiphy_to_dev(
1600 netdev->ieee80211_ptr->wiphy);
1601 state->filter_wiphy = rdev->wiphy_idx;
1602 }
1603 dev_put(netdev);
1604 }
1605
1606 return 0;
1607}
1608
Johannes Berg55682962007-09-20 13:09:35 -04001609static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
1610{
Johannes Berg645e77d2013-03-01 14:03:49 +01001611 int idx = 0, ret;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001612 struct nl80211_dump_wiphy_state *state = (void *)cb->args[0];
Johannes Berg55682962007-09-20 13:09:35 -04001613 struct cfg80211_registered_device *dev;
Johannes Berg3a5a4232013-06-19 10:09:57 +02001614
Johannes Berg5fe231e2013-05-08 21:45:15 +02001615 rtnl_lock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001616 if (!state) {
1617 state = kzalloc(sizeof(*state), GFP_KERNEL);
John W. Linville57ed5cd2013-06-28 13:18:21 -04001618 if (!state) {
1619 rtnl_unlock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001620 return -ENOMEM;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001621 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001622 state->filter_wiphy = -1;
1623 ret = nl80211_dump_wiphy_parse(skb, cb, state);
1624 if (ret) {
1625 kfree(state);
1626 rtnl_unlock();
1627 return ret;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001628 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001629 cb->args[0] = (long)state;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001630 }
1631
Johannes Berg79c97e92009-07-07 03:56:12 +02001632 list_for_each_entry(dev, &cfg80211_rdev_list, list) {
Johannes Berg463d0182009-07-14 00:33:35 +02001633 if (!net_eq(wiphy_net(&dev->wiphy), sock_net(skb->sk)))
1634 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001635 if (++idx <= state->start)
Johannes Berg55682962007-09-20 13:09:35 -04001636 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001637 if (state->filter_wiphy != -1 &&
1638 state->filter_wiphy != dev->wiphy_idx)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001639 continue;
1640 /* attempt to fit multiple wiphy data chunks into the skb */
1641 do {
1642 ret = nl80211_send_wiphy(dev, skb,
1643 NETLINK_CB(cb->skb).portid,
1644 cb->nlh->nlmsg_seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001645 NLM_F_MULTI, state);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001646 if (ret < 0) {
1647 /*
1648 * If sending the wiphy data didn't fit (ENOBUFS
1649 * or EMSGSIZE returned), this SKB is still
1650 * empty (so it's not too big because another
1651 * wiphy dataset is already in the skb) and
1652 * we've not tried to adjust the dump allocation
1653 * yet ... then adjust the alloc size to be
1654 * bigger, and return 1 but with the empty skb.
1655 * This results in an empty message being RX'ed
1656 * in userspace, but that is ignored.
1657 *
1658 * We can then retry with the larger buffer.
1659 */
1660 if ((ret == -ENOBUFS || ret == -EMSGSIZE) &&
1661 !skb->len &&
1662 cb->min_dump_alloc < 4096) {
1663 cb->min_dump_alloc = 4096;
David S. Millerd98cae64e2013-06-19 16:49:39 -07001664 rtnl_unlock();
Johannes Berg3713b4e2013-02-14 16:19:38 +01001665 return 1;
1666 }
1667 idx--;
1668 break;
Johannes Berg645e77d2013-03-01 14:03:49 +01001669 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001670 } while (state->split_start > 0);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001671 break;
Johannes Berg55682962007-09-20 13:09:35 -04001672 }
Johannes Berg5fe231e2013-05-08 21:45:15 +02001673 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04001674
Johannes Berg86e8cf92013-06-19 10:57:22 +02001675 state->start = idx;
Johannes Berg55682962007-09-20 13:09:35 -04001676
1677 return skb->len;
1678}
1679
Johannes Berg86e8cf92013-06-19 10:57:22 +02001680static int nl80211_dump_wiphy_done(struct netlink_callback *cb)
1681{
1682 kfree((void *)cb->args[0]);
1683 return 0;
1684}
1685
Johannes Berg55682962007-09-20 13:09:35 -04001686static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
1687{
1688 struct sk_buff *msg;
Johannes Berg4c476992010-10-04 21:36:35 +02001689 struct cfg80211_registered_device *dev = info->user_ptr[0];
Johannes Berg86e8cf92013-06-19 10:57:22 +02001690 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04001691
Johannes Berg645e77d2013-03-01 14:03:49 +01001692 msg = nlmsg_new(4096, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04001693 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02001694 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04001695
Johannes Berg3713b4e2013-02-14 16:19:38 +01001696 if (nl80211_send_wiphy(dev, msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001697 &state) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02001698 nlmsg_free(msg);
1699 return -ENOBUFS;
1700 }
Johannes Berg55682962007-09-20 13:09:35 -04001701
Johannes Berg134e6372009-07-10 09:51:34 +00001702 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04001703}
1704
Jouni Malinen31888482008-10-30 16:59:24 +02001705static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
1706 [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 },
1707 [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 },
1708 [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 },
1709 [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 },
1710 [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 },
1711};
1712
1713static int parse_txq_params(struct nlattr *tb[],
1714 struct ieee80211_txq_params *txq_params)
1715{
Johannes Berga3304b02012-03-28 11:04:24 +02001716 if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
Jouni Malinen31888482008-10-30 16:59:24 +02001717 !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
1718 !tb[NL80211_TXQ_ATTR_AIFS])
1719 return -EINVAL;
1720
Johannes Berga3304b02012-03-28 11:04:24 +02001721 txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
Jouni Malinen31888482008-10-30 16:59:24 +02001722 txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
1723 txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
1724 txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
1725 txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);
1726
Johannes Berga3304b02012-03-28 11:04:24 +02001727 if (txq_params->ac >= NL80211_NUM_ACS)
1728 return -EINVAL;
1729
Jouni Malinen31888482008-10-30 16:59:24 +02001730 return 0;
1731}
1732
Johannes Bergf444de02010-05-05 15:25:02 +02001733static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
1734{
1735 /*
Johannes Bergcc1d2802012-05-16 23:50:20 +02001736 * You can only set the channel explicitly for WDS interfaces,
1737 * all others have their channel managed via their respective
1738 * "establish a connection" command (connect, join, ...)
1739 *
1740 * For AP/GO and mesh mode, the channel can be set with the
1741 * channel userspace API, but is only stored and passed to the
1742 * low-level driver when the AP starts or the mesh is joined.
1743 * This is for backward compatibility, userspace can also give
1744 * the channel in the start-ap or join-mesh commands instead.
Johannes Bergf444de02010-05-05 15:25:02 +02001745 *
1746 * Monitors are special as they are normally slaved to
Johannes Berge8c9bd52012-06-06 08:18:22 +02001747 * whatever else is going on, so they have their own special
1748 * operation to set the monitor channel if possible.
Johannes Bergf444de02010-05-05 15:25:02 +02001749 */
1750 return !wdev ||
1751 wdev->iftype == NL80211_IFTYPE_AP ||
Johannes Bergf444de02010-05-05 15:25:02 +02001752 wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
Johannes Berg074ac8d2010-09-16 14:58:22 +02001753 wdev->iftype == NL80211_IFTYPE_MONITOR ||
1754 wdev->iftype == NL80211_IFTYPE_P2P_GO;
Johannes Bergf444de02010-05-05 15:25:02 +02001755}
1756
Johannes Berg683b6d32012-11-08 21:25:48 +01001757static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
1758 struct genl_info *info,
1759 struct cfg80211_chan_def *chandef)
1760{
Mahesh Paliveladbeca2e2012-11-29 14:11:07 +05301761 u32 control_freq;
Johannes Berg683b6d32012-11-08 21:25:48 +01001762
1763 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
1764 return -EINVAL;
1765
1766 control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
1767
1768 chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq);
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001769 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
1770 chandef->center_freq1 = control_freq;
1771 chandef->center_freq2 = 0;
Johannes Berg683b6d32012-11-08 21:25:48 +01001772
1773 /* Primary channel not allowed */
1774 if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
1775 return -EINVAL;
1776
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001777 if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
1778 enum nl80211_channel_type chantype;
Johannes Berg683b6d32012-11-08 21:25:48 +01001779
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001780 chantype = nla_get_u32(
1781 info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1782
1783 switch (chantype) {
1784 case NL80211_CHAN_NO_HT:
1785 case NL80211_CHAN_HT20:
1786 case NL80211_CHAN_HT40PLUS:
1787 case NL80211_CHAN_HT40MINUS:
1788 cfg80211_chandef_create(chandef, chandef->chan,
1789 chantype);
1790 break;
1791 default:
Johannes Berg683b6d32012-11-08 21:25:48 +01001792 return -EINVAL;
Johannes Berg683b6d32012-11-08 21:25:48 +01001793 }
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001794 } else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
1795 chandef->width =
1796 nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
1797 if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
1798 chandef->center_freq1 =
1799 nla_get_u32(
1800 info->attrs[NL80211_ATTR_CENTER_FREQ1]);
1801 if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
1802 chandef->center_freq2 =
1803 nla_get_u32(
1804 info->attrs[NL80211_ATTR_CENTER_FREQ2]);
1805 }
1806
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001807 if (!cfg80211_chandef_valid(chandef))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001808 return -EINVAL;
1809
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001810 if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
1811 IEEE80211_CHAN_DISABLED))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001812 return -EINVAL;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001813
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001814 if ((chandef->width == NL80211_CHAN_WIDTH_5 ||
1815 chandef->width == NL80211_CHAN_WIDTH_10) &&
1816 !(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1817 return -EINVAL;
1818
Johannes Berg683b6d32012-11-08 21:25:48 +01001819 return 0;
1820}
1821
Johannes Bergf444de02010-05-05 15:25:02 +02001822static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
1823 struct wireless_dev *wdev,
1824 struct genl_info *info)
1825{
Johannes Berg683b6d32012-11-08 21:25:48 +01001826 struct cfg80211_chan_def chandef;
Johannes Bergf444de02010-05-05 15:25:02 +02001827 int result;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001828 enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;
1829
1830 if (wdev)
1831 iftype = wdev->iftype;
Johannes Bergf444de02010-05-05 15:25:02 +02001832
Johannes Bergf444de02010-05-05 15:25:02 +02001833 if (!nl80211_can_set_dev_channel(wdev))
1834 return -EOPNOTSUPP;
1835
Johannes Berg683b6d32012-11-08 21:25:48 +01001836 result = nl80211_parse_chandef(rdev, info, &chandef);
1837 if (result)
1838 return result;
Johannes Bergf444de02010-05-05 15:25:02 +02001839
Johannes Berge8c9bd52012-06-06 08:18:22 +02001840 switch (iftype) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001841 case NL80211_IFTYPE_AP:
1842 case NL80211_IFTYPE_P2P_GO:
1843 if (wdev->beacon_interval) {
1844 result = -EBUSY;
1845 break;
1846 }
Johannes Berg683b6d32012-11-08 21:25:48 +01001847 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &chandef)) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001848 result = -EINVAL;
1849 break;
1850 }
Johannes Berg683b6d32012-11-08 21:25:48 +01001851 wdev->preset_chandef = chandef;
Johannes Bergaa430da2012-05-16 23:50:18 +02001852 result = 0;
1853 break;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001854 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg683b6d32012-11-08 21:25:48 +01001855 result = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001856 break;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001857 case NL80211_IFTYPE_MONITOR:
Johannes Berg683b6d32012-11-08 21:25:48 +01001858 result = cfg80211_set_monitor_channel(rdev, &chandef);
Johannes Berge8c9bd52012-06-06 08:18:22 +02001859 break;
Johannes Bergaa430da2012-05-16 23:50:18 +02001860 default:
Johannes Berge8c9bd52012-06-06 08:18:22 +02001861 result = -EINVAL;
Johannes Bergf444de02010-05-05 15:25:02 +02001862 }
Johannes Bergf444de02010-05-05 15:25:02 +02001863
1864 return result;
1865}
1866
1867static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info)
1868{
Johannes Berg4c476992010-10-04 21:36:35 +02001869 struct cfg80211_registered_device *rdev = info->user_ptr[0];
1870 struct net_device *netdev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02001871
Johannes Berg4c476992010-10-04 21:36:35 +02001872 return __nl80211_set_channel(rdev, netdev->ieee80211_ptr, info);
Johannes Bergf444de02010-05-05 15:25:02 +02001873}
1874
Bill Jordane8347eb2010-10-01 13:54:28 -04001875static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
1876{
Johannes Berg43b19952010-10-07 13:10:30 +02001877 struct cfg80211_registered_device *rdev = info->user_ptr[0];
1878 struct net_device *dev = info->user_ptr[1];
1879 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg388ac772010-10-07 13:11:09 +02001880 const u8 *bssid;
Bill Jordane8347eb2010-10-01 13:54:28 -04001881
1882 if (!info->attrs[NL80211_ATTR_MAC])
1883 return -EINVAL;
1884
Johannes Berg43b19952010-10-07 13:10:30 +02001885 if (netif_running(dev))
1886 return -EBUSY;
Bill Jordane8347eb2010-10-01 13:54:28 -04001887
Johannes Berg43b19952010-10-07 13:10:30 +02001888 if (!rdev->ops->set_wds_peer)
1889 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04001890
Johannes Berg43b19952010-10-07 13:10:30 +02001891 if (wdev->iftype != NL80211_IFTYPE_WDS)
1892 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04001893
1894 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Hila Gonene35e4d22012-06-27 17:19:42 +03001895 return rdev_set_wds_peer(rdev, dev, bssid);
Bill Jordane8347eb2010-10-01 13:54:28 -04001896}
1897
1898
Johannes Berg55682962007-09-20 13:09:35 -04001899static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
1900{
1901 struct cfg80211_registered_device *rdev;
Johannes Bergf444de02010-05-05 15:25:02 +02001902 struct net_device *netdev = NULL;
1903 struct wireless_dev *wdev;
Bill Jordana1e567c2010-09-10 11:22:32 -04001904 int result = 0, rem_txq_params = 0;
Jouni Malinen31888482008-10-30 16:59:24 +02001905 struct nlattr *nl_txq_params;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001906 u32 changed;
1907 u8 retry_short = 0, retry_long = 0;
1908 u32 frag_threshold = 0, rts_threshold = 0;
Lukáš Turek81077e82009-12-21 22:50:47 +01001909 u8 coverage_class = 0;
Johannes Berg55682962007-09-20 13:09:35 -04001910
Johannes Berg5fe231e2013-05-08 21:45:15 +02001911 ASSERT_RTNL();
1912
Johannes Bergf444de02010-05-05 15:25:02 +02001913 /*
1914 * Try to find the wiphy and netdev. Normally this
1915 * function shouldn't need the netdev, but this is
1916 * done for backward compatibility -- previously
1917 * setting the channel was done per wiphy, but now
1918 * it is per netdev. Previous userland like hostapd
1919 * also passed a netdev to set_wiphy, so that it is
1920 * possible to let that go to the right netdev!
1921 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001922
Johannes Bergf444de02010-05-05 15:25:02 +02001923 if (info->attrs[NL80211_ATTR_IFINDEX]) {
1924 int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
1925
1926 netdev = dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001927 if (netdev && netdev->ieee80211_ptr)
Johannes Bergf444de02010-05-05 15:25:02 +02001928 rdev = wiphy_to_dev(netdev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001929 else
Johannes Bergf444de02010-05-05 15:25:02 +02001930 netdev = NULL;
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001931 }
1932
Johannes Bergf444de02010-05-05 15:25:02 +02001933 if (!netdev) {
Johannes Berg878d9ec2012-06-15 14:18:32 +02001934 rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
1935 info->attrs);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001936 if (IS_ERR(rdev))
Johannes Berg4c476992010-10-04 21:36:35 +02001937 return PTR_ERR(rdev);
Johannes Bergf444de02010-05-05 15:25:02 +02001938 wdev = NULL;
1939 netdev = NULL;
1940 result = 0;
Johannes Berg71fe96b2012-10-24 10:04:58 +02001941 } else
Johannes Bergf444de02010-05-05 15:25:02 +02001942 wdev = netdev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02001943
1944 /*
1945 * end workaround code, by now the rdev is available
1946 * and locked, and wdev may or may not be NULL.
1947 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001948
1949 if (info->attrs[NL80211_ATTR_WIPHY_NAME])
Jouni Malinen31888482008-10-30 16:59:24 +02001950 result = cfg80211_dev_rename(
1951 rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001952
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001953 if (result)
1954 goto bad_res;
Johannes Berg55682962007-09-20 13:09:35 -04001955
Jouni Malinen31888482008-10-30 16:59:24 +02001956 if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
1957 struct ieee80211_txq_params txq_params;
1958 struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];
1959
1960 if (!rdev->ops->set_txq_params) {
1961 result = -EOPNOTSUPP;
1962 goto bad_res;
1963 }
1964
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001965 if (!netdev) {
1966 result = -EINVAL;
1967 goto bad_res;
1968 }
1969
Johannes Berg133a3ff2011-11-03 14:50:13 +01001970 if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
1971 netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
1972 result = -EINVAL;
1973 goto bad_res;
1974 }
1975
Johannes Berg2b5f8b02012-04-02 10:51:55 +02001976 if (!netif_running(netdev)) {
1977 result = -ENETDOWN;
1978 goto bad_res;
1979 }
1980
Jouni Malinen31888482008-10-30 16:59:24 +02001981 nla_for_each_nested(nl_txq_params,
1982 info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
1983 rem_txq_params) {
1984 nla_parse(tb, NL80211_TXQ_ATTR_MAX,
1985 nla_data(nl_txq_params),
1986 nla_len(nl_txq_params),
1987 txq_params_policy);
1988 result = parse_txq_params(tb, &txq_params);
1989 if (result)
1990 goto bad_res;
1991
Hila Gonene35e4d22012-06-27 17:19:42 +03001992 result = rdev_set_txq_params(rdev, netdev,
1993 &txq_params);
Jouni Malinen31888482008-10-30 16:59:24 +02001994 if (result)
1995 goto bad_res;
1996 }
1997 }
1998
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001999 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg71fe96b2012-10-24 10:04:58 +02002000 result = __nl80211_set_channel(rdev,
2001 nl80211_can_set_dev_channel(wdev) ? wdev : NULL,
2002 info);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002003 if (result)
2004 goto bad_res;
2005 }
2006
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002007 if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
Johannes Bergc8442112012-10-24 10:17:18 +02002008 struct wireless_dev *txp_wdev = wdev;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002009 enum nl80211_tx_power_setting type;
2010 int idx, mbm = 0;
2011
Johannes Bergc8442112012-10-24 10:17:18 +02002012 if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER))
2013 txp_wdev = NULL;
2014
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002015 if (!rdev->ops->set_tx_power) {
Jiri Slaby60ea3852010-07-07 15:02:46 +02002016 result = -EOPNOTSUPP;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002017 goto bad_res;
2018 }
2019
2020 idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING;
2021 type = nla_get_u32(info->attrs[idx]);
2022
2023 if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] &&
2024 (type != NL80211_TX_POWER_AUTOMATIC)) {
2025 result = -EINVAL;
2026 goto bad_res;
2027 }
2028
2029 if (type != NL80211_TX_POWER_AUTOMATIC) {
2030 idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL;
2031 mbm = nla_get_u32(info->attrs[idx]);
2032 }
2033
Johannes Bergc8442112012-10-24 10:17:18 +02002034 result = rdev_set_tx_power(rdev, txp_wdev, type, mbm);
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002035 if (result)
2036 goto bad_res;
2037 }
2038
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002039 if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
2040 info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
2041 u32 tx_ant, rx_ant;
Bruno Randolf7f531e02010-12-16 11:30:22 +09002042 if ((!rdev->wiphy.available_antennas_tx &&
2043 !rdev->wiphy.available_antennas_rx) ||
2044 !rdev->ops->set_antenna) {
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002045 result = -EOPNOTSUPP;
2046 goto bad_res;
2047 }
2048
2049 tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]);
2050 rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]);
2051
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002052 /* reject antenna configurations which don't match the
Bruno Randolf7f531e02010-12-16 11:30:22 +09002053 * available antenna masks, except for the "all" mask */
2054 if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) ||
2055 (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx))) {
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002056 result = -EINVAL;
2057 goto bad_res;
2058 }
2059
Bruno Randolf7f531e02010-12-16 11:30:22 +09002060 tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
2061 rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002062
Hila Gonene35e4d22012-06-27 17:19:42 +03002063 result = rdev_set_antenna(rdev, tx_ant, rx_ant);
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002064 if (result)
2065 goto bad_res;
2066 }
2067
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002068 changed = 0;
2069
2070 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
2071 retry_short = nla_get_u8(
2072 info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
2073 if (retry_short == 0) {
2074 result = -EINVAL;
2075 goto bad_res;
2076 }
2077 changed |= WIPHY_PARAM_RETRY_SHORT;
2078 }
2079
2080 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
2081 retry_long = nla_get_u8(
2082 info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
2083 if (retry_long == 0) {
2084 result = -EINVAL;
2085 goto bad_res;
2086 }
2087 changed |= WIPHY_PARAM_RETRY_LONG;
2088 }
2089
2090 if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
2091 frag_threshold = nla_get_u32(
2092 info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
2093 if (frag_threshold < 256) {
2094 result = -EINVAL;
2095 goto bad_res;
2096 }
2097 if (frag_threshold != (u32) -1) {
2098 /*
2099 * Fragments (apart from the last one) are required to
2100 * have even length. Make the fragmentation code
2101 * simpler by stripping LSB should someone try to use
2102 * odd threshold value.
2103 */
2104 frag_threshold &= ~0x1;
2105 }
2106 changed |= WIPHY_PARAM_FRAG_THRESHOLD;
2107 }
2108
2109 if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
2110 rts_threshold = nla_get_u32(
2111 info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
2112 changed |= WIPHY_PARAM_RTS_THRESHOLD;
2113 }
2114
Lukáš Turek81077e82009-12-21 22:50:47 +01002115 if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
2116 coverage_class = nla_get_u8(
2117 info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
2118 changed |= WIPHY_PARAM_COVERAGE_CLASS;
2119 }
2120
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002121 if (changed) {
2122 u8 old_retry_short, old_retry_long;
2123 u32 old_frag_threshold, old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002124 u8 old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002125
2126 if (!rdev->ops->set_wiphy_params) {
2127 result = -EOPNOTSUPP;
2128 goto bad_res;
2129 }
2130
2131 old_retry_short = rdev->wiphy.retry_short;
2132 old_retry_long = rdev->wiphy.retry_long;
2133 old_frag_threshold = rdev->wiphy.frag_threshold;
2134 old_rts_threshold = rdev->wiphy.rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002135 old_coverage_class = rdev->wiphy.coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002136
2137 if (changed & WIPHY_PARAM_RETRY_SHORT)
2138 rdev->wiphy.retry_short = retry_short;
2139 if (changed & WIPHY_PARAM_RETRY_LONG)
2140 rdev->wiphy.retry_long = retry_long;
2141 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
2142 rdev->wiphy.frag_threshold = frag_threshold;
2143 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
2144 rdev->wiphy.rts_threshold = rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002145 if (changed & WIPHY_PARAM_COVERAGE_CLASS)
2146 rdev->wiphy.coverage_class = coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002147
Hila Gonene35e4d22012-06-27 17:19:42 +03002148 result = rdev_set_wiphy_params(rdev, changed);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002149 if (result) {
2150 rdev->wiphy.retry_short = old_retry_short;
2151 rdev->wiphy.retry_long = old_retry_long;
2152 rdev->wiphy.frag_threshold = old_frag_threshold;
2153 rdev->wiphy.rts_threshold = old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002154 rdev->wiphy.coverage_class = old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002155 }
2156 }
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002157
Johannes Berg306d6112008-12-08 12:39:04 +01002158 bad_res:
Johannes Bergf444de02010-05-05 15:25:02 +02002159 if (netdev)
2160 dev_put(netdev);
Johannes Berg55682962007-09-20 13:09:35 -04002161 return result;
2162}
2163
Johannes Berg71bbc992012-06-15 15:30:18 +02002164static inline u64 wdev_id(struct wireless_dev *wdev)
2165{
2166 return (u64)wdev->identifier |
2167 ((u64)wiphy_to_dev(wdev->wiphy)->wiphy_idx << 32);
2168}
Johannes Berg55682962007-09-20 13:09:35 -04002169
Johannes Berg683b6d32012-11-08 21:25:48 +01002170static int nl80211_send_chandef(struct sk_buff *msg,
2171 struct cfg80211_chan_def *chandef)
2172{
Johannes Berg9f5e8f62012-11-22 16:59:45 +01002173 WARN_ON(!cfg80211_chandef_valid(chandef));
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002174
Johannes Berg683b6d32012-11-08 21:25:48 +01002175 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
2176 chandef->chan->center_freq))
2177 return -ENOBUFS;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002178 switch (chandef->width) {
2179 case NL80211_CHAN_WIDTH_20_NOHT:
2180 case NL80211_CHAN_WIDTH_20:
2181 case NL80211_CHAN_WIDTH_40:
2182 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
2183 cfg80211_get_chandef_type(chandef)))
2184 return -ENOBUFS;
2185 break;
2186 default:
2187 break;
2188 }
2189 if (nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, chandef->width))
2190 return -ENOBUFS;
2191 if (nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ1, chandef->center_freq1))
2192 return -ENOBUFS;
2193 if (chandef->center_freq2 &&
2194 nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ2, chandef->center_freq2))
Johannes Berg683b6d32012-11-08 21:25:48 +01002195 return -ENOBUFS;
2196 return 0;
2197}
2198
Eric W. Biederman15e47302012-09-07 20:12:54 +00002199static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
Johannes Bergd7264052009-04-19 16:23:20 +02002200 struct cfg80211_registered_device *rdev,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002201 struct wireless_dev *wdev)
Johannes Berg55682962007-09-20 13:09:35 -04002202{
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002203 struct net_device *dev = wdev->netdev;
Johannes Berg55682962007-09-20 13:09:35 -04002204 void *hdr;
2205
Eric W. Biederman15e47302012-09-07 20:12:54 +00002206 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_INTERFACE);
Johannes Berg55682962007-09-20 13:09:35 -04002207 if (!hdr)
2208 return -1;
2209
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002210 if (dev &&
2211 (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002212 nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002213 goto nla_put_failure;
2214
2215 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
2216 nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
Johannes Berg71bbc992012-06-15 15:30:18 +02002217 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002218 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04002219 nla_put_u32(msg, NL80211_ATTR_GENERATION,
2220 rdev->devlist_generation ^
2221 (cfg80211_rdev_list_generation << 2)))
2222 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02002223
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002224 if (rdev->ops->get_channel) {
Johannes Berg683b6d32012-11-08 21:25:48 +01002225 int ret;
2226 struct cfg80211_chan_def chandef;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002227
Johannes Berg683b6d32012-11-08 21:25:48 +01002228 ret = rdev_get_channel(rdev, wdev, &chandef);
2229 if (ret == 0) {
2230 if (nl80211_send_chandef(msg, &chandef))
2231 goto nla_put_failure;
2232 }
Pontus Fuchsd91df0e2012-04-03 16:39:58 +02002233 }
2234
Antonio Quartullib84e7a02012-11-07 12:52:20 +01002235 if (wdev->ssid_len) {
2236 if (nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid))
2237 goto nla_put_failure;
2238 }
2239
Johannes Berg55682962007-09-20 13:09:35 -04002240 return genlmsg_end(msg, hdr);
2241
2242 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07002243 genlmsg_cancel(msg, hdr);
2244 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04002245}
2246
2247static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
2248{
2249 int wp_idx = 0;
2250 int if_idx = 0;
2251 int wp_start = cb->args[0];
2252 int if_start = cb->args[1];
Johannes Bergf5ea9122009-08-07 16:17:38 +02002253 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -04002254 struct wireless_dev *wdev;
2255
Johannes Berg5fe231e2013-05-08 21:45:15 +02002256 rtnl_lock();
Johannes Bergf5ea9122009-08-07 16:17:38 +02002257 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2258 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02002259 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002260 if (wp_idx < wp_start) {
2261 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002262 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002263 }
Johannes Berg55682962007-09-20 13:09:35 -04002264 if_idx = 0;
2265
Johannes Berg89a54e42012-06-15 14:33:17 +02002266 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002267 if (if_idx < if_start) {
2268 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002269 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002270 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002271 if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).portid,
Johannes Berg55682962007-09-20 13:09:35 -04002272 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002273 rdev, wdev) < 0) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002274 goto out;
2275 }
2276 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002277 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002278
2279 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002280 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002281 out:
Johannes Berg5fe231e2013-05-08 21:45:15 +02002282 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04002283
2284 cb->args[0] = wp_idx;
2285 cb->args[1] = if_idx;
2286
2287 return skb->len;
2288}
2289
2290static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
2291{
2292 struct sk_buff *msg;
Johannes Berg4c476992010-10-04 21:36:35 +02002293 struct cfg80211_registered_device *dev = info->user_ptr[0];
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002294 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002295
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002296 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04002297 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02002298 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04002299
Eric W. Biederman15e47302012-09-07 20:12:54 +00002300 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002301 dev, wdev) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02002302 nlmsg_free(msg);
2303 return -ENOBUFS;
2304 }
Johannes Berg55682962007-09-20 13:09:35 -04002305
Johannes Berg134e6372009-07-10 09:51:34 +00002306 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002307}
2308
Michael Wu66f7ac52008-01-31 19:48:22 +01002309static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
2310 [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
2311 [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
2312 [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
2313 [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
2314 [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002315 [NL80211_MNTR_FLAG_ACTIVE] = { .type = NLA_FLAG },
Michael Wu66f7ac52008-01-31 19:48:22 +01002316};
2317
2318static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
2319{
2320 struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
2321 int flag;
2322
2323 *mntrflags = 0;
2324
2325 if (!nla)
2326 return -EINVAL;
2327
2328 if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
2329 nla, mntr_flags_policy))
2330 return -EINVAL;
2331
2332 for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
2333 if (flags[flag])
2334 *mntrflags |= (1<<flag);
2335
2336 return 0;
2337}
2338
Johannes Berg9bc383d2009-11-19 11:55:19 +01002339static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002340 struct net_device *netdev, u8 use_4addr,
2341 enum nl80211_iftype iftype)
Johannes Berg9bc383d2009-11-19 11:55:19 +01002342{
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002343 if (!use_4addr) {
Jiri Pirkof350a0a82010-06-15 06:50:45 +00002344 if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002345 return -EBUSY;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002346 return 0;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002347 }
Johannes Berg9bc383d2009-11-19 11:55:19 +01002348
2349 switch (iftype) {
2350 case NL80211_IFTYPE_AP_VLAN:
2351 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP)
2352 return 0;
2353 break;
2354 case NL80211_IFTYPE_STATION:
2355 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION)
2356 return 0;
2357 break;
2358 default:
2359 break;
2360 }
2361
2362 return -EOPNOTSUPP;
2363}
2364
Johannes Berg55682962007-09-20 13:09:35 -04002365static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
2366{
Johannes Berg4c476992010-10-04 21:36:35 +02002367 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002368 struct vif_params params;
Johannes Berge36d56b2009-06-09 21:04:43 +02002369 int err;
Johannes Berg04a773a2009-04-19 21:24:32 +02002370 enum nl80211_iftype otype, ntype;
Johannes Berg4c476992010-10-04 21:36:35 +02002371 struct net_device *dev = info->user_ptr[1];
Johannes Berg92ffe052008-09-16 20:39:36 +02002372 u32 _flags, *flags = NULL;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002373 bool change = false;
Johannes Berg55682962007-09-20 13:09:35 -04002374
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002375 memset(&params, 0, sizeof(params));
2376
Johannes Berg04a773a2009-04-19 21:24:32 +02002377 otype = ntype = dev->ieee80211_ptr->iftype;
Johannes Berg55682962007-09-20 13:09:35 -04002378
Johannes Berg723b0382008-09-16 20:22:09 +02002379 if (info->attrs[NL80211_ATTR_IFTYPE]) {
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002380 ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
Johannes Berg04a773a2009-04-19 21:24:32 +02002381 if (otype != ntype)
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002382 change = true;
Johannes Berg4c476992010-10-04 21:36:35 +02002383 if (ntype > NL80211_IFTYPE_MAX)
2384 return -EINVAL;
Johannes Berg723b0382008-09-16 20:22:09 +02002385 }
2386
Johannes Berg92ffe052008-09-16 20:39:36 +02002387 if (info->attrs[NL80211_ATTR_MESH_ID]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01002388 struct wireless_dev *wdev = dev->ieee80211_ptr;
2389
Johannes Berg4c476992010-10-04 21:36:35 +02002390 if (ntype != NL80211_IFTYPE_MESH_POINT)
2391 return -EINVAL;
Johannes Berg29cbe682010-12-03 09:20:44 +01002392 if (netif_running(dev))
2393 return -EBUSY;
2394
2395 wdev_lock(wdev);
2396 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2397 IEEE80211_MAX_MESH_ID_LEN);
2398 wdev->mesh_id_up_len =
2399 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2400 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2401 wdev->mesh_id_up_len);
2402 wdev_unlock(wdev);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002403 }
2404
Felix Fietkau8b787642009-11-10 18:53:10 +01002405 if (info->attrs[NL80211_ATTR_4ADDR]) {
2406 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2407 change = true;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002408 err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002409 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002410 return err;
Felix Fietkau8b787642009-11-10 18:53:10 +01002411 } else {
2412 params.use_4addr = -1;
2413 }
2414
Johannes Berg92ffe052008-09-16 20:39:36 +02002415 if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
Johannes Berg4c476992010-10-04 21:36:35 +02002416 if (ntype != NL80211_IFTYPE_MONITOR)
2417 return -EINVAL;
Johannes Berg92ffe052008-09-16 20:39:36 +02002418 err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
2419 &_flags);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002420 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002421 return err;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002422
2423 flags = &_flags;
2424 change = true;
Johannes Berg92ffe052008-09-16 20:39:36 +02002425 }
Johannes Berg3b858752009-03-12 09:55:09 +01002426
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002427 if (flags && (*flags & NL80211_MNTR_FLAG_ACTIVE) &&
2428 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2429 return -EOPNOTSUPP;
2430
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002431 if (change)
Johannes Berg3d54d252009-08-21 14:51:05 +02002432 err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002433 else
2434 err = 0;
Johannes Berg60719ff2008-09-16 14:55:09 +02002435
Johannes Berg9bc383d2009-11-19 11:55:19 +01002436 if (!err && params.use_4addr != -1)
2437 dev->ieee80211_ptr->use_4addr = params.use_4addr;
2438
Johannes Berg55682962007-09-20 13:09:35 -04002439 return err;
2440}
2441
2442static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
2443{
Johannes Berg4c476992010-10-04 21:36:35 +02002444 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002445 struct vif_params params;
Johannes Berg84efbb82012-06-16 00:00:26 +02002446 struct wireless_dev *wdev;
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002447 struct sk_buff *msg;
Johannes Berg55682962007-09-20 13:09:35 -04002448 int err;
2449 enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
Michael Wu66f7ac52008-01-31 19:48:22 +01002450 u32 flags;
Johannes Berg55682962007-09-20 13:09:35 -04002451
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002452 memset(&params, 0, sizeof(params));
2453
Johannes Berg55682962007-09-20 13:09:35 -04002454 if (!info->attrs[NL80211_ATTR_IFNAME])
2455 return -EINVAL;
2456
2457 if (info->attrs[NL80211_ATTR_IFTYPE]) {
2458 type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
2459 if (type > NL80211_IFTYPE_MAX)
2460 return -EINVAL;
2461 }
2462
Johannes Berg79c97e92009-07-07 03:56:12 +02002463 if (!rdev->ops->add_virtual_intf ||
Johannes Berg4c476992010-10-04 21:36:35 +02002464 !(rdev->wiphy.interface_modes & (1 << type)))
2465 return -EOPNOTSUPP;
Johannes Berg55682962007-09-20 13:09:35 -04002466
Arend van Spriel1c18f142013-01-08 10:17:27 +01002467 if (type == NL80211_IFTYPE_P2P_DEVICE && info->attrs[NL80211_ATTR_MAC]) {
2468 nla_memcpy(params.macaddr, info->attrs[NL80211_ATTR_MAC],
2469 ETH_ALEN);
2470 if (!is_valid_ether_addr(params.macaddr))
2471 return -EADDRNOTAVAIL;
2472 }
2473
Johannes Berg9bc383d2009-11-19 11:55:19 +01002474 if (info->attrs[NL80211_ATTR_4ADDR]) {
Felix Fietkau8b787642009-11-10 18:53:10 +01002475 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002476 err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002477 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002478 return err;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002479 }
Felix Fietkau8b787642009-11-10 18:53:10 +01002480
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002481 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2482 if (!msg)
2483 return -ENOMEM;
2484
Michael Wu66f7ac52008-01-31 19:48:22 +01002485 err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
2486 info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
2487 &flags);
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002488
2489 if (!err && (flags & NL80211_MNTR_FLAG_ACTIVE) &&
2490 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2491 return -EOPNOTSUPP;
2492
Hila Gonene35e4d22012-06-27 17:19:42 +03002493 wdev = rdev_add_virtual_intf(rdev,
2494 nla_data(info->attrs[NL80211_ATTR_IFNAME]),
2495 type, err ? NULL : &flags, &params);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002496 if (IS_ERR(wdev)) {
2497 nlmsg_free(msg);
Johannes Berg84efbb82012-06-16 00:00:26 +02002498 return PTR_ERR(wdev);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002499 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002500
Johannes Berg98104fde2012-06-16 00:19:54 +02002501 switch (type) {
2502 case NL80211_IFTYPE_MESH_POINT:
2503 if (!info->attrs[NL80211_ATTR_MESH_ID])
2504 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002505 wdev_lock(wdev);
2506 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2507 IEEE80211_MAX_MESH_ID_LEN);
2508 wdev->mesh_id_up_len =
2509 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2510 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2511 wdev->mesh_id_up_len);
2512 wdev_unlock(wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02002513 break;
2514 case NL80211_IFTYPE_P2P_DEVICE:
2515 /*
2516 * P2P Device doesn't have a netdev, so doesn't go
2517 * through the netdev notifier and must be added here
2518 */
2519 mutex_init(&wdev->mtx);
2520 INIT_LIST_HEAD(&wdev->event_list);
2521 spin_lock_init(&wdev->event_lock);
2522 INIT_LIST_HEAD(&wdev->mgmt_registrations);
2523 spin_lock_init(&wdev->mgmt_registrations_lock);
2524
Johannes Berg98104fde2012-06-16 00:19:54 +02002525 wdev->identifier = ++rdev->wdev_id;
2526 list_add_rcu(&wdev->list, &rdev->wdev_list);
2527 rdev->devlist_generation++;
Johannes Berg98104fde2012-06-16 00:19:54 +02002528 break;
2529 default:
2530 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002531 }
2532
Eric W. Biederman15e47302012-09-07 20:12:54 +00002533 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002534 rdev, wdev) < 0) {
2535 nlmsg_free(msg);
2536 return -ENOBUFS;
2537 }
2538
2539 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002540}
2541
2542static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
2543{
Johannes Berg4c476992010-10-04 21:36:35 +02002544 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg84efbb82012-06-16 00:00:26 +02002545 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002546
Johannes Berg4c476992010-10-04 21:36:35 +02002547 if (!rdev->ops->del_virtual_intf)
2548 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002549
Johannes Berg84efbb82012-06-16 00:00:26 +02002550 /*
2551 * If we remove a wireless device without a netdev then clear
2552 * user_ptr[1] so that nl80211_post_doit won't dereference it
2553 * to check if it needs to do dev_put(). Otherwise it crashes
2554 * since the wdev has been freed, unlike with a netdev where
2555 * we need the dev_put() for the netdev to really be freed.
2556 */
2557 if (!wdev->netdev)
2558 info->user_ptr[1] = NULL;
2559
Hila Gonene35e4d22012-06-27 17:19:42 +03002560 return rdev_del_virtual_intf(rdev, wdev);
Johannes Berg55682962007-09-20 13:09:35 -04002561}
2562
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002563static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info)
2564{
2565 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2566 struct net_device *dev = info->user_ptr[1];
2567 u16 noack_map;
2568
2569 if (!info->attrs[NL80211_ATTR_NOACK_MAP])
2570 return -EINVAL;
2571
2572 if (!rdev->ops->set_noack_map)
2573 return -EOPNOTSUPP;
2574
2575 noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]);
2576
Hila Gonene35e4d22012-06-27 17:19:42 +03002577 return rdev_set_noack_map(rdev, dev, noack_map);
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002578}
2579
Johannes Berg41ade002007-12-19 02:03:29 +01002580struct get_key_cookie {
2581 struct sk_buff *msg;
2582 int error;
Johannes Bergb9454e82009-07-08 13:29:08 +02002583 int idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002584};
2585
2586static void get_key_callback(void *c, struct key_params *params)
2587{
Johannes Bergb9454e82009-07-08 13:29:08 +02002588 struct nlattr *key;
Johannes Berg41ade002007-12-19 02:03:29 +01002589 struct get_key_cookie *cookie = c;
2590
David S. Miller9360ffd2012-03-29 04:41:26 -04002591 if ((params->key &&
2592 nla_put(cookie->msg, NL80211_ATTR_KEY_DATA,
2593 params->key_len, params->key)) ||
2594 (params->seq &&
2595 nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ,
2596 params->seq_len, params->seq)) ||
2597 (params->cipher &&
2598 nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
2599 params->cipher)))
2600 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002601
Johannes Bergb9454e82009-07-08 13:29:08 +02002602 key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
2603 if (!key)
2604 goto nla_put_failure;
2605
David S. Miller9360ffd2012-03-29 04:41:26 -04002606 if ((params->key &&
2607 nla_put(cookie->msg, NL80211_KEY_DATA,
2608 params->key_len, params->key)) ||
2609 (params->seq &&
2610 nla_put(cookie->msg, NL80211_KEY_SEQ,
2611 params->seq_len, params->seq)) ||
2612 (params->cipher &&
2613 nla_put_u32(cookie->msg, NL80211_KEY_CIPHER,
2614 params->cipher)))
2615 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002616
David S. Miller9360ffd2012-03-29 04:41:26 -04002617 if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
2618 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002619
2620 nla_nest_end(cookie->msg, key);
2621
Johannes Berg41ade002007-12-19 02:03:29 +01002622 return;
2623 nla_put_failure:
2624 cookie->error = 1;
2625}
2626
2627static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
2628{
Johannes Berg4c476992010-10-04 21:36:35 +02002629 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002630 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002631 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002632 u8 key_idx = 0;
Johannes Berge31b8212010-10-05 19:39:30 +02002633 const u8 *mac_addr = NULL;
2634 bool pairwise;
Johannes Berg41ade002007-12-19 02:03:29 +01002635 struct get_key_cookie cookie = {
2636 .error = 0,
2637 };
2638 void *hdr;
2639 struct sk_buff *msg;
2640
2641 if (info->attrs[NL80211_ATTR_KEY_IDX])
2642 key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
2643
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02002644 if (key_idx > 5)
Johannes Berg41ade002007-12-19 02:03:29 +01002645 return -EINVAL;
2646
2647 if (info->attrs[NL80211_ATTR_MAC])
2648 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2649
Johannes Berge31b8212010-10-05 19:39:30 +02002650 pairwise = !!mac_addr;
2651 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
2652 u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
2653 if (kt >= NUM_NL80211_KEYTYPES)
2654 return -EINVAL;
2655 if (kt != NL80211_KEYTYPE_GROUP &&
2656 kt != NL80211_KEYTYPE_PAIRWISE)
2657 return -EINVAL;
2658 pairwise = kt == NL80211_KEYTYPE_PAIRWISE;
2659 }
2660
Johannes Berg4c476992010-10-04 21:36:35 +02002661 if (!rdev->ops->get_key)
2662 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002663
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002664 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02002665 if (!msg)
2666 return -ENOMEM;
Johannes Berg41ade002007-12-19 02:03:29 +01002667
Eric W. Biederman15e47302012-09-07 20:12:54 +00002668 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg41ade002007-12-19 02:03:29 +01002669 NL80211_CMD_NEW_KEY);
Dan Carpentercb35fba2013-08-14 14:50:01 +03002670 if (!hdr)
2671 return -ENOBUFS;
Johannes Berg41ade002007-12-19 02:03:29 +01002672
2673 cookie.msg = msg;
Johannes Bergb9454e82009-07-08 13:29:08 +02002674 cookie.idx = key_idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002675
David S. Miller9360ffd2012-03-29 04:41:26 -04002676 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
2677 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx))
2678 goto nla_put_failure;
2679 if (mac_addr &&
2680 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
2681 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002682
Johannes Berge31b8212010-10-05 19:39:30 +02002683 if (pairwise && mac_addr &&
2684 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2685 return -ENOENT;
2686
Hila Gonene35e4d22012-06-27 17:19:42 +03002687 err = rdev_get_key(rdev, dev, key_idx, pairwise, mac_addr, &cookie,
2688 get_key_callback);
Johannes Berg41ade002007-12-19 02:03:29 +01002689
2690 if (err)
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002691 goto free_msg;
Johannes Berg41ade002007-12-19 02:03:29 +01002692
2693 if (cookie.error)
2694 goto nla_put_failure;
2695
2696 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02002697 return genlmsg_reply(msg, info);
Johannes Berg41ade002007-12-19 02:03:29 +01002698
2699 nla_put_failure:
2700 err = -ENOBUFS;
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002701 free_msg:
Johannes Berg41ade002007-12-19 02:03:29 +01002702 nlmsg_free(msg);
Johannes Berg41ade002007-12-19 02:03:29 +01002703 return err;
2704}
2705
2706static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
2707{
Johannes Berg4c476992010-10-04 21:36:35 +02002708 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergb9454e82009-07-08 13:29:08 +02002709 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002710 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002711 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002712
Johannes Bergb9454e82009-07-08 13:29:08 +02002713 err = nl80211_parse_key(info, &key);
2714 if (err)
2715 return err;
2716
2717 if (key.idx < 0)
Johannes Berg41ade002007-12-19 02:03:29 +01002718 return -EINVAL;
2719
Johannes Bergb9454e82009-07-08 13:29:08 +02002720 /* only support setting default key */
2721 if (!key.def && !key.defmgmt)
Johannes Berg41ade002007-12-19 02:03:29 +01002722 return -EINVAL;
2723
Johannes Bergfffd0932009-07-08 14:22:54 +02002724 wdev_lock(dev->ieee80211_ptr);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002725
2726 if (key.def) {
2727 if (!rdev->ops->set_default_key) {
2728 err = -EOPNOTSUPP;
2729 goto out;
2730 }
2731
2732 err = nl80211_key_allowed(dev->ieee80211_ptr);
2733 if (err)
2734 goto out;
2735
Hila Gonene35e4d22012-06-27 17:19:42 +03002736 err = rdev_set_default_key(rdev, dev, key.idx,
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002737 key.def_uni, key.def_multi);
2738
2739 if (err)
2740 goto out;
Johannes Bergfffd0932009-07-08 14:22:54 +02002741
Johannes Berg3d23e342009-09-29 23:27:28 +02002742#ifdef CONFIG_CFG80211_WEXT
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002743 dev->ieee80211_ptr->wext.default_key = key.idx;
Johannes Berg08645122009-05-11 13:54:58 +02002744#endif
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002745 } else {
2746 if (key.def_uni || !key.def_multi) {
2747 err = -EINVAL;
2748 goto out;
2749 }
2750
2751 if (!rdev->ops->set_default_mgmt_key) {
2752 err = -EOPNOTSUPP;
2753 goto out;
2754 }
2755
2756 err = nl80211_key_allowed(dev->ieee80211_ptr);
2757 if (err)
2758 goto out;
2759
Hila Gonene35e4d22012-06-27 17:19:42 +03002760 err = rdev_set_default_mgmt_key(rdev, dev, key.idx);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002761 if (err)
2762 goto out;
2763
2764#ifdef CONFIG_CFG80211_WEXT
2765 dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
2766#endif
2767 }
2768
2769 out:
Johannes Bergfffd0932009-07-08 14:22:54 +02002770 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002771
Johannes Berg41ade002007-12-19 02:03:29 +01002772 return err;
2773}
2774
2775static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
2776{
Johannes Berg4c476992010-10-04 21:36:35 +02002777 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfffd0932009-07-08 14:22:54 +02002778 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002779 struct net_device *dev = info->user_ptr[1];
Johannes Bergb9454e82009-07-08 13:29:08 +02002780 struct key_parse key;
Johannes Berge31b8212010-10-05 19:39:30 +02002781 const u8 *mac_addr = NULL;
Johannes Berg41ade002007-12-19 02:03:29 +01002782
Johannes Bergb9454e82009-07-08 13:29:08 +02002783 err = nl80211_parse_key(info, &key);
2784 if (err)
2785 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002786
Johannes Bergb9454e82009-07-08 13:29:08 +02002787 if (!key.p.key)
Johannes Berg41ade002007-12-19 02:03:29 +01002788 return -EINVAL;
2789
Johannes Berg41ade002007-12-19 02:03:29 +01002790 if (info->attrs[NL80211_ATTR_MAC])
2791 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2792
Johannes Berge31b8212010-10-05 19:39:30 +02002793 if (key.type == -1) {
2794 if (mac_addr)
2795 key.type = NL80211_KEYTYPE_PAIRWISE;
2796 else
2797 key.type = NL80211_KEYTYPE_GROUP;
2798 }
2799
2800 /* for now */
2801 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2802 key.type != NL80211_KEYTYPE_GROUP)
2803 return -EINVAL;
2804
Johannes Berg4c476992010-10-04 21:36:35 +02002805 if (!rdev->ops->add_key)
2806 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002807
Johannes Berge31b8212010-10-05 19:39:30 +02002808 if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
2809 key.type == NL80211_KEYTYPE_PAIRWISE,
2810 mac_addr))
Johannes Berg4c476992010-10-04 21:36:35 +02002811 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02002812
2813 wdev_lock(dev->ieee80211_ptr);
2814 err = nl80211_key_allowed(dev->ieee80211_ptr);
2815 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002816 err = rdev_add_key(rdev, dev, key.idx,
2817 key.type == NL80211_KEYTYPE_PAIRWISE,
2818 mac_addr, &key.p);
Johannes Bergfffd0932009-07-08 14:22:54 +02002819 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002820
Johannes Berg41ade002007-12-19 02:03:29 +01002821 return err;
2822}
2823
2824static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
2825{
Johannes Berg4c476992010-10-04 21:36:35 +02002826 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002827 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002828 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002829 u8 *mac_addr = NULL;
Johannes Bergb9454e82009-07-08 13:29:08 +02002830 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002831
Johannes Bergb9454e82009-07-08 13:29:08 +02002832 err = nl80211_parse_key(info, &key);
2833 if (err)
2834 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002835
2836 if (info->attrs[NL80211_ATTR_MAC])
2837 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2838
Johannes Berge31b8212010-10-05 19:39:30 +02002839 if (key.type == -1) {
2840 if (mac_addr)
2841 key.type = NL80211_KEYTYPE_PAIRWISE;
2842 else
2843 key.type = NL80211_KEYTYPE_GROUP;
2844 }
2845
2846 /* for now */
2847 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2848 key.type != NL80211_KEYTYPE_GROUP)
2849 return -EINVAL;
2850
Johannes Berg4c476992010-10-04 21:36:35 +02002851 if (!rdev->ops->del_key)
2852 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002853
Johannes Bergfffd0932009-07-08 14:22:54 +02002854 wdev_lock(dev->ieee80211_ptr);
2855 err = nl80211_key_allowed(dev->ieee80211_ptr);
Johannes Berge31b8212010-10-05 19:39:30 +02002856
2857 if (key.type == NL80211_KEYTYPE_PAIRWISE && mac_addr &&
2858 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2859 err = -ENOENT;
2860
Johannes Bergfffd0932009-07-08 14:22:54 +02002861 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002862 err = rdev_del_key(rdev, dev, key.idx,
2863 key.type == NL80211_KEYTYPE_PAIRWISE,
2864 mac_addr);
Johannes Berg41ade002007-12-19 02:03:29 +01002865
Johannes Berg3d23e342009-09-29 23:27:28 +02002866#ifdef CONFIG_CFG80211_WEXT
Johannes Berg08645122009-05-11 13:54:58 +02002867 if (!err) {
Johannes Bergb9454e82009-07-08 13:29:08 +02002868 if (key.idx == dev->ieee80211_ptr->wext.default_key)
Johannes Berg08645122009-05-11 13:54:58 +02002869 dev->ieee80211_ptr->wext.default_key = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +02002870 else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
Johannes Berg08645122009-05-11 13:54:58 +02002871 dev->ieee80211_ptr->wext.default_mgmt_key = -1;
2872 }
2873#endif
Johannes Bergfffd0932009-07-08 14:22:54 +02002874 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg08645122009-05-11 13:54:58 +02002875
Johannes Berg41ade002007-12-19 02:03:29 +01002876 return err;
2877}
2878
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05302879/* This function returns an error or the number of nested attributes */
2880static int validate_acl_mac_addrs(struct nlattr *nl_attr)
2881{
2882 struct nlattr *attr;
2883 int n_entries = 0, tmp;
2884
2885 nla_for_each_nested(attr, nl_attr, tmp) {
2886 if (nla_len(attr) != ETH_ALEN)
2887 return -EINVAL;
2888
2889 n_entries++;
2890 }
2891
2892 return n_entries;
2893}
2894
2895/*
2896 * This function parses ACL information and allocates memory for ACL data.
2897 * On successful return, the calling function is responsible to free the
2898 * ACL buffer returned by this function.
2899 */
2900static struct cfg80211_acl_data *parse_acl_data(struct wiphy *wiphy,
2901 struct genl_info *info)
2902{
2903 enum nl80211_acl_policy acl_policy;
2904 struct nlattr *attr;
2905 struct cfg80211_acl_data *acl;
2906 int i = 0, n_entries, tmp;
2907
2908 if (!wiphy->max_acl_mac_addrs)
2909 return ERR_PTR(-EOPNOTSUPP);
2910
2911 if (!info->attrs[NL80211_ATTR_ACL_POLICY])
2912 return ERR_PTR(-EINVAL);
2913
2914 acl_policy = nla_get_u32(info->attrs[NL80211_ATTR_ACL_POLICY]);
2915 if (acl_policy != NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED &&
2916 acl_policy != NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
2917 return ERR_PTR(-EINVAL);
2918
2919 if (!info->attrs[NL80211_ATTR_MAC_ADDRS])
2920 return ERR_PTR(-EINVAL);
2921
2922 n_entries = validate_acl_mac_addrs(info->attrs[NL80211_ATTR_MAC_ADDRS]);
2923 if (n_entries < 0)
2924 return ERR_PTR(n_entries);
2925
2926 if (n_entries > wiphy->max_acl_mac_addrs)
2927 return ERR_PTR(-ENOTSUPP);
2928
2929 acl = kzalloc(sizeof(*acl) + (sizeof(struct mac_address) * n_entries),
2930 GFP_KERNEL);
2931 if (!acl)
2932 return ERR_PTR(-ENOMEM);
2933
2934 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_MAC_ADDRS], tmp) {
2935 memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN);
2936 i++;
2937 }
2938
2939 acl->n_acl_entries = n_entries;
2940 acl->acl_policy = acl_policy;
2941
2942 return acl;
2943}
2944
2945static int nl80211_set_mac_acl(struct sk_buff *skb, struct genl_info *info)
2946{
2947 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2948 struct net_device *dev = info->user_ptr[1];
2949 struct cfg80211_acl_data *acl;
2950 int err;
2951
2952 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
2953 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
2954 return -EOPNOTSUPP;
2955
2956 if (!dev->ieee80211_ptr->beacon_interval)
2957 return -EINVAL;
2958
2959 acl = parse_acl_data(&rdev->wiphy, info);
2960 if (IS_ERR(acl))
2961 return PTR_ERR(acl);
2962
2963 err = rdev_set_mac_acl(rdev, dev, acl);
2964
2965 kfree(acl);
2966
2967 return err;
2968}
2969
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002970static int nl80211_parse_beacon(struct nlattr *attrs[],
Johannes Berg88600202012-02-13 15:17:18 +01002971 struct cfg80211_beacon_data *bcn)
Johannes Berged1b6cc2007-12-19 02:03:32 +01002972{
Johannes Berg88600202012-02-13 15:17:18 +01002973 bool haveinfo = false;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002974
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002975 if (!is_valid_ie_attr(attrs[NL80211_ATTR_BEACON_TAIL]) ||
2976 !is_valid_ie_attr(attrs[NL80211_ATTR_IE]) ||
2977 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_PROBE_RESP]) ||
2978 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_ASSOC_RESP]))
Johannes Bergf4a11bb2009-03-27 12:40:28 +01002979 return -EINVAL;
2980
Johannes Berg88600202012-02-13 15:17:18 +01002981 memset(bcn, 0, sizeof(*bcn));
Johannes Berged1b6cc2007-12-19 02:03:32 +01002982
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002983 if (attrs[NL80211_ATTR_BEACON_HEAD]) {
2984 bcn->head = nla_data(attrs[NL80211_ATTR_BEACON_HEAD]);
2985 bcn->head_len = nla_len(attrs[NL80211_ATTR_BEACON_HEAD]);
Johannes Berg88600202012-02-13 15:17:18 +01002986 if (!bcn->head_len)
2987 return -EINVAL;
2988 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002989 }
2990
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002991 if (attrs[NL80211_ATTR_BEACON_TAIL]) {
2992 bcn->tail = nla_data(attrs[NL80211_ATTR_BEACON_TAIL]);
2993 bcn->tail_len = nla_len(attrs[NL80211_ATTR_BEACON_TAIL]);
Johannes Berg88600202012-02-13 15:17:18 +01002994 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002995 }
2996
Johannes Berg4c476992010-10-04 21:36:35 +02002997 if (!haveinfo)
2998 return -EINVAL;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002999
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003000 if (attrs[NL80211_ATTR_IE]) {
3001 bcn->beacon_ies = nla_data(attrs[NL80211_ATTR_IE]);
3002 bcn->beacon_ies_len = nla_len(attrs[NL80211_ATTR_IE]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003003 }
3004
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003005 if (attrs[NL80211_ATTR_IE_PROBE_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003006 bcn->proberesp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003007 nla_data(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003008 bcn->proberesp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003009 nla_len(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003010 }
3011
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003012 if (attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003013 bcn->assocresp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003014 nla_data(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003015 bcn->assocresp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003016 nla_len(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003017 }
3018
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003019 if (attrs[NL80211_ATTR_PROBE_RESP]) {
3020 bcn->probe_resp = nla_data(attrs[NL80211_ATTR_PROBE_RESP]);
3021 bcn->probe_resp_len = nla_len(attrs[NL80211_ATTR_PROBE_RESP]);
Arik Nemtsov00f740e2011-11-10 11:28:56 +02003022 }
3023
Johannes Berg88600202012-02-13 15:17:18 +01003024 return 0;
3025}
3026
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003027static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev,
3028 struct cfg80211_ap_settings *params)
3029{
3030 struct wireless_dev *wdev;
3031 bool ret = false;
3032
Johannes Berg89a54e42012-06-15 14:33:17 +02003033 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003034 if (wdev->iftype != NL80211_IFTYPE_AP &&
3035 wdev->iftype != NL80211_IFTYPE_P2P_GO)
3036 continue;
3037
Johannes Berg683b6d32012-11-08 21:25:48 +01003038 if (!wdev->preset_chandef.chan)
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003039 continue;
3040
Johannes Berg683b6d32012-11-08 21:25:48 +01003041 params->chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003042 ret = true;
3043 break;
3044 }
3045
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003046 return ret;
3047}
3048
Jouni Malinene39e5b52012-09-30 19:29:39 +03003049static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
3050 enum nl80211_auth_type auth_type,
3051 enum nl80211_commands cmd)
3052{
3053 if (auth_type > NL80211_AUTHTYPE_MAX)
3054 return false;
3055
3056 switch (cmd) {
3057 case NL80211_CMD_AUTHENTICATE:
3058 if (!(rdev->wiphy.features & NL80211_FEATURE_SAE) &&
3059 auth_type == NL80211_AUTHTYPE_SAE)
3060 return false;
3061 return true;
3062 case NL80211_CMD_CONNECT:
3063 case NL80211_CMD_START_AP:
3064 /* SAE not supported yet */
3065 if (auth_type == NL80211_AUTHTYPE_SAE)
3066 return false;
3067 return true;
3068 default:
3069 return false;
3070 }
3071}
3072
Johannes Berg88600202012-02-13 15:17:18 +01003073static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
3074{
3075 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3076 struct net_device *dev = info->user_ptr[1];
3077 struct wireless_dev *wdev = dev->ieee80211_ptr;
3078 struct cfg80211_ap_settings params;
3079 int err;
Simon Wunderlich04f39042013-02-08 18:16:19 +01003080 u8 radar_detect_width = 0;
Johannes Berg88600202012-02-13 15:17:18 +01003081
3082 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3083 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3084 return -EOPNOTSUPP;
3085
3086 if (!rdev->ops->start_ap)
3087 return -EOPNOTSUPP;
3088
3089 if (wdev->beacon_interval)
3090 return -EALREADY;
3091
3092 memset(&params, 0, sizeof(params));
3093
3094 /* these are required for START_AP */
3095 if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
3096 !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
3097 !info->attrs[NL80211_ATTR_BEACON_HEAD])
3098 return -EINVAL;
3099
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003100 err = nl80211_parse_beacon(info->attrs, &params.beacon);
Johannes Berg88600202012-02-13 15:17:18 +01003101 if (err)
3102 return err;
3103
3104 params.beacon_interval =
3105 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
3106 params.dtim_period =
3107 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
3108
3109 err = cfg80211_validate_beacon_int(rdev, params.beacon_interval);
3110 if (err)
3111 return err;
3112
3113 /*
3114 * In theory, some of these attributes should be required here
3115 * but since they were not used when the command was originally
3116 * added, keep them optional for old user space programs to let
3117 * them continue to work with drivers that do not need the
3118 * additional information -- drivers must check!
3119 */
3120 if (info->attrs[NL80211_ATTR_SSID]) {
3121 params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
3122 params.ssid_len =
3123 nla_len(info->attrs[NL80211_ATTR_SSID]);
3124 if (params.ssid_len == 0 ||
3125 params.ssid_len > IEEE80211_MAX_SSID_LEN)
3126 return -EINVAL;
3127 }
3128
3129 if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) {
3130 params.hidden_ssid = nla_get_u32(
3131 info->attrs[NL80211_ATTR_HIDDEN_SSID]);
3132 if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE &&
3133 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN &&
3134 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS)
3135 return -EINVAL;
3136 }
3137
3138 params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
3139
3140 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
3141 params.auth_type = nla_get_u32(
3142 info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03003143 if (!nl80211_valid_auth_type(rdev, params.auth_type,
3144 NL80211_CMD_START_AP))
Johannes Berg88600202012-02-13 15:17:18 +01003145 return -EINVAL;
3146 } else
3147 params.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
3148
3149 err = nl80211_crypto_settings(rdev, info, &params.crypto,
3150 NL80211_MAX_NR_CIPHER_SUITES);
3151 if (err)
3152 return err;
3153
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +05303154 if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) {
3155 if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER))
3156 return -EOPNOTSUPP;
3157 params.inactivity_timeout = nla_get_u16(
3158 info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]);
3159 }
3160
Johannes Berg53cabad2012-11-14 15:17:28 +01003161 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
3162 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3163 return -EINVAL;
3164 params.p2p_ctwindow =
3165 nla_get_u8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
3166 if (params.p2p_ctwindow > 127)
3167 return -EINVAL;
3168 if (params.p2p_ctwindow != 0 &&
3169 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
3170 return -EINVAL;
3171 }
3172
3173 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
3174 u8 tmp;
3175
3176 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3177 return -EINVAL;
3178 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
3179 if (tmp > 1)
3180 return -EINVAL;
3181 params.p2p_opp_ps = tmp;
3182 if (params.p2p_opp_ps != 0 &&
3183 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
3184 return -EINVAL;
3185 }
3186
Johannes Bergaa430da2012-05-16 23:50:18 +02003187 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003188 err = nl80211_parse_chandef(rdev, info, &params.chandef);
3189 if (err)
3190 return err;
3191 } else if (wdev->preset_chandef.chan) {
3192 params.chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003193 } else if (!nl80211_get_ap_channel(rdev, &params))
Johannes Bergaa430da2012-05-16 23:50:18 +02003194 return -EINVAL;
3195
Johannes Berg683b6d32012-11-08 21:25:48 +01003196 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
Johannes Bergaa430da2012-05-16 23:50:18 +02003197 return -EINVAL;
3198
Simon Wunderlich04f39042013-02-08 18:16:19 +01003199 err = cfg80211_chandef_dfs_required(wdev->wiphy, &params.chandef);
3200 if (err < 0)
3201 return err;
3202 if (err) {
3203 radar_detect_width = BIT(params.chandef.width);
3204 params.radar_required = true;
3205 }
3206
Simon Wunderlich04f39042013-02-08 18:16:19 +01003207 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
3208 params.chandef.chan,
3209 CHAN_MODE_SHARED,
3210 radar_detect_width);
Michal Kaziore4e32452012-06-29 12:47:08 +02003211 if (err)
3212 return err;
3213
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303214 if (info->attrs[NL80211_ATTR_ACL_POLICY]) {
3215 params.acl = parse_acl_data(&rdev->wiphy, info);
3216 if (IS_ERR(params.acl))
3217 return PTR_ERR(params.acl);
3218 }
3219
Hila Gonene35e4d22012-06-27 17:19:42 +03003220 err = rdev_start_ap(rdev, dev, &params);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003221 if (!err) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003222 wdev->preset_chandef = params.chandef;
Johannes Berg88600202012-02-13 15:17:18 +01003223 wdev->beacon_interval = params.beacon_interval;
Johannes Berg683b6d32012-11-08 21:25:48 +01003224 wdev->channel = params.chandef.chan;
Antonio Quartulli06e191e2012-11-07 12:52:19 +01003225 wdev->ssid_len = params.ssid_len;
3226 memcpy(wdev->ssid, params.ssid, wdev->ssid_len);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003227 }
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303228
3229 kfree(params.acl);
3230
Johannes Berg56d18932011-05-09 18:41:15 +02003231 return err;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003232}
3233
Johannes Berg88600202012-02-13 15:17:18 +01003234static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
3235{
3236 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3237 struct net_device *dev = info->user_ptr[1];
3238 struct wireless_dev *wdev = dev->ieee80211_ptr;
3239 struct cfg80211_beacon_data params;
3240 int err;
3241
3242 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3243 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3244 return -EOPNOTSUPP;
3245
3246 if (!rdev->ops->change_beacon)
3247 return -EOPNOTSUPP;
3248
3249 if (!wdev->beacon_interval)
3250 return -EINVAL;
3251
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003252 err = nl80211_parse_beacon(info->attrs, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003253 if (err)
3254 return err;
3255
Hila Gonene35e4d22012-06-27 17:19:42 +03003256 return rdev_change_beacon(rdev, dev, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003257}
3258
3259static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003260{
Johannes Berg4c476992010-10-04 21:36:35 +02003261 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3262 struct net_device *dev = info->user_ptr[1];
Johannes Berged1b6cc2007-12-19 02:03:32 +01003263
Michal Kazior60771782012-06-29 12:46:56 +02003264 return cfg80211_stop_ap(rdev, dev);
Johannes Berged1b6cc2007-12-19 02:03:32 +01003265}
3266
Johannes Berg5727ef12007-12-19 02:03:34 +01003267static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
3268 [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
3269 [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
3270 [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
Jouni Malinen0e467242009-05-11 21:57:55 +03003271 [NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
Javier Cardonab39c48f2011-04-07 15:08:30 -07003272 [NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
Johannes Bergd83023d2011-12-14 09:29:15 +01003273 [NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
Johannes Berg5727ef12007-12-19 02:03:34 +01003274};
3275
Johannes Bergeccb8e82009-05-11 21:57:56 +03003276static int parse_station_flags(struct genl_info *info,
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003277 enum nl80211_iftype iftype,
Johannes Bergeccb8e82009-05-11 21:57:56 +03003278 struct station_parameters *params)
Johannes Berg5727ef12007-12-19 02:03:34 +01003279{
3280 struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
Johannes Bergeccb8e82009-05-11 21:57:56 +03003281 struct nlattr *nla;
Johannes Berg5727ef12007-12-19 02:03:34 +01003282 int flag;
3283
Johannes Bergeccb8e82009-05-11 21:57:56 +03003284 /*
3285 * Try parsing the new attribute first so userspace
3286 * can specify both for older kernels.
3287 */
3288 nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
3289 if (nla) {
3290 struct nl80211_sta_flag_update *sta_flags;
Johannes Berg5727ef12007-12-19 02:03:34 +01003291
Johannes Bergeccb8e82009-05-11 21:57:56 +03003292 sta_flags = nla_data(nla);
3293 params->sta_flags_mask = sta_flags->mask;
3294 params->sta_flags_set = sta_flags->set;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003295 params->sta_flags_set &= params->sta_flags_mask;
Johannes Bergeccb8e82009-05-11 21:57:56 +03003296 if ((params->sta_flags_mask |
3297 params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
3298 return -EINVAL;
3299 return 0;
3300 }
3301
3302 /* if present, parse the old attribute */
3303
3304 nla = info->attrs[NL80211_ATTR_STA_FLAGS];
Johannes Berg5727ef12007-12-19 02:03:34 +01003305 if (!nla)
3306 return 0;
3307
3308 if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
3309 nla, sta_flags_policy))
3310 return -EINVAL;
3311
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003312 /*
3313 * Only allow certain flags for interface types so that
3314 * other attributes are silently ignored. Remember that
3315 * this is backward compatibility code with old userspace
3316 * and shouldn't be hit in other cases anyway.
3317 */
3318 switch (iftype) {
3319 case NL80211_IFTYPE_AP:
3320 case NL80211_IFTYPE_AP_VLAN:
3321 case NL80211_IFTYPE_P2P_GO:
3322 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3323 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3324 BIT(NL80211_STA_FLAG_WME) |
3325 BIT(NL80211_STA_FLAG_MFP);
3326 break;
3327 case NL80211_IFTYPE_P2P_CLIENT:
3328 case NL80211_IFTYPE_STATION:
3329 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3330 BIT(NL80211_STA_FLAG_TDLS_PEER);
3331 break;
3332 case NL80211_IFTYPE_MESH_POINT:
3333 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3334 BIT(NL80211_STA_FLAG_MFP) |
3335 BIT(NL80211_STA_FLAG_AUTHORIZED);
3336 default:
3337 return -EINVAL;
3338 }
Johannes Berg5727ef12007-12-19 02:03:34 +01003339
Johannes Berg3383b5a2012-05-10 20:14:43 +02003340 for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
3341 if (flags[flag]) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03003342 params->sta_flags_set |= (1<<flag);
Johannes Berg5727ef12007-12-19 02:03:34 +01003343
Johannes Berg3383b5a2012-05-10 20:14:43 +02003344 /* no longer support new API additions in old API */
3345 if (flag > NL80211_STA_FLAG_MAX_OLD_API)
3346 return -EINVAL;
3347 }
3348 }
3349
Johannes Berg5727ef12007-12-19 02:03:34 +01003350 return 0;
3351}
3352
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003353static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
3354 int attr)
3355{
3356 struct nlattr *rate;
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003357 u32 bitrate;
3358 u16 bitrate_compat;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003359
3360 rate = nla_nest_start(msg, attr);
3361 if (!rate)
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003362 return false;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003363
3364 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
3365 bitrate = cfg80211_calculate_bitrate(info);
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003366 /* report 16-bit bitrate only if we can */
3367 bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003368 if (bitrate > 0 &&
3369 nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate))
3370 return false;
3371 if (bitrate_compat > 0 &&
3372 nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat))
3373 return false;
3374
3375 if (info->flags & RATE_INFO_FLAGS_MCS) {
3376 if (nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs))
3377 return false;
3378 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3379 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3380 return false;
3381 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3382 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3383 return false;
3384 } else if (info->flags & RATE_INFO_FLAGS_VHT_MCS) {
3385 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_MCS, info->mcs))
3386 return false;
3387 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_NSS, info->nss))
3388 return false;
3389 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3390 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3391 return false;
3392 if (info->flags & RATE_INFO_FLAGS_80_MHZ_WIDTH &&
3393 nla_put_flag(msg, NL80211_RATE_INFO_80_MHZ_WIDTH))
3394 return false;
3395 if (info->flags & RATE_INFO_FLAGS_80P80_MHZ_WIDTH &&
3396 nla_put_flag(msg, NL80211_RATE_INFO_80P80_MHZ_WIDTH))
3397 return false;
3398 if (info->flags & RATE_INFO_FLAGS_160_MHZ_WIDTH &&
3399 nla_put_flag(msg, NL80211_RATE_INFO_160_MHZ_WIDTH))
3400 return false;
3401 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3402 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3403 return false;
3404 }
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003405
3406 nla_nest_end(msg, rate);
3407 return true;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003408}
3409
Felix Fietkau119363c2013-04-22 16:29:30 +02003410static bool nl80211_put_signal(struct sk_buff *msg, u8 mask, s8 *signal,
3411 int id)
3412{
3413 void *attr;
3414 int i = 0;
3415
3416 if (!mask)
3417 return true;
3418
3419 attr = nla_nest_start(msg, id);
3420 if (!attr)
3421 return false;
3422
3423 for (i = 0; i < IEEE80211_MAX_CHAINS; i++) {
3424 if (!(mask & BIT(i)))
3425 continue;
3426
3427 if (nla_put_u8(msg, i, signal[i]))
3428 return false;
3429 }
3430
3431 nla_nest_end(msg, attr);
3432
3433 return true;
3434}
3435
Eric W. Biederman15e47302012-09-07 20:12:54 +00003436static int nl80211_send_station(struct sk_buff *msg, u32 portid, u32 seq,
John W. Linville66266b32012-03-15 13:25:41 -04003437 int flags,
3438 struct cfg80211_registered_device *rdev,
3439 struct net_device *dev,
Johannes Berg98b62182009-12-23 13:15:44 +01003440 const u8 *mac_addr, struct station_info *sinfo)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003441{
3442 void *hdr;
Paul Stewartf4263c92011-03-31 09:25:41 -07003443 struct nlattr *sinfoattr, *bss_param;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003444
Eric W. Biederman15e47302012-09-07 20:12:54 +00003445 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003446 if (!hdr)
3447 return -1;
3448
David S. Miller9360ffd2012-03-29 04:41:26 -04003449 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
3450 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
3451 nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation))
3452 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02003453
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003454 sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
3455 if (!sinfoattr)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003456 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04003457 if ((sinfo->filled & STATION_INFO_CONNECTED_TIME) &&
3458 nla_put_u32(msg, NL80211_STA_INFO_CONNECTED_TIME,
3459 sinfo->connected_time))
3460 goto nla_put_failure;
3461 if ((sinfo->filled & STATION_INFO_INACTIVE_TIME) &&
3462 nla_put_u32(msg, NL80211_STA_INFO_INACTIVE_TIME,
3463 sinfo->inactive_time))
3464 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003465 if ((sinfo->filled & (STATION_INFO_RX_BYTES |
3466 STATION_INFO_RX_BYTES64)) &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003467 nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003468 (u32)sinfo->rx_bytes))
3469 goto nla_put_failure;
3470 if ((sinfo->filled & (STATION_INFO_TX_BYTES |
Felix Fietkau4325d722013-05-23 15:05:59 +02003471 STATION_INFO_TX_BYTES64)) &&
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003472 nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
3473 (u32)sinfo->tx_bytes))
3474 goto nla_put_failure;
3475 if ((sinfo->filled & STATION_INFO_RX_BYTES64) &&
3476 nla_put_u64(msg, NL80211_STA_INFO_RX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003477 sinfo->rx_bytes))
3478 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003479 if ((sinfo->filled & STATION_INFO_TX_BYTES64) &&
3480 nla_put_u64(msg, NL80211_STA_INFO_TX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003481 sinfo->tx_bytes))
3482 goto nla_put_failure;
3483 if ((sinfo->filled & STATION_INFO_LLID) &&
3484 nla_put_u16(msg, NL80211_STA_INFO_LLID, sinfo->llid))
3485 goto nla_put_failure;
3486 if ((sinfo->filled & STATION_INFO_PLID) &&
3487 nla_put_u16(msg, NL80211_STA_INFO_PLID, sinfo->plid))
3488 goto nla_put_failure;
3489 if ((sinfo->filled & STATION_INFO_PLINK_STATE) &&
3490 nla_put_u8(msg, NL80211_STA_INFO_PLINK_STATE,
3491 sinfo->plink_state))
3492 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003493 switch (rdev->wiphy.signal_type) {
3494 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04003495 if ((sinfo->filled & STATION_INFO_SIGNAL) &&
3496 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL,
3497 sinfo->signal))
3498 goto nla_put_failure;
3499 if ((sinfo->filled & STATION_INFO_SIGNAL_AVG) &&
3500 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL_AVG,
3501 sinfo->signal_avg))
3502 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003503 break;
3504 default:
3505 break;
3506 }
Felix Fietkau119363c2013-04-22 16:29:30 +02003507 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL) {
3508 if (!nl80211_put_signal(msg, sinfo->chains,
3509 sinfo->chain_signal,
3510 NL80211_STA_INFO_CHAIN_SIGNAL))
3511 goto nla_put_failure;
3512 }
3513 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL_AVG) {
3514 if (!nl80211_put_signal(msg, sinfo->chains,
3515 sinfo->chain_signal_avg,
3516 NL80211_STA_INFO_CHAIN_SIGNAL_AVG))
3517 goto nla_put_failure;
3518 }
Henning Rogge420e7fa2008-12-11 22:04:19 +01003519 if (sinfo->filled & STATION_INFO_TX_BITRATE) {
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003520 if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
3521 NL80211_STA_INFO_TX_BITRATE))
Henning Rogge420e7fa2008-12-11 22:04:19 +01003522 goto nla_put_failure;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003523 }
3524 if (sinfo->filled & STATION_INFO_RX_BITRATE) {
3525 if (!nl80211_put_sta_rate(msg, &sinfo->rxrate,
3526 NL80211_STA_INFO_RX_BITRATE))
3527 goto nla_put_failure;
Henning Rogge420e7fa2008-12-11 22:04:19 +01003528 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003529 if ((sinfo->filled & STATION_INFO_RX_PACKETS) &&
3530 nla_put_u32(msg, NL80211_STA_INFO_RX_PACKETS,
3531 sinfo->rx_packets))
3532 goto nla_put_failure;
3533 if ((sinfo->filled & STATION_INFO_TX_PACKETS) &&
3534 nla_put_u32(msg, NL80211_STA_INFO_TX_PACKETS,
3535 sinfo->tx_packets))
3536 goto nla_put_failure;
3537 if ((sinfo->filled & STATION_INFO_TX_RETRIES) &&
3538 nla_put_u32(msg, NL80211_STA_INFO_TX_RETRIES,
3539 sinfo->tx_retries))
3540 goto nla_put_failure;
3541 if ((sinfo->filled & STATION_INFO_TX_FAILED) &&
3542 nla_put_u32(msg, NL80211_STA_INFO_TX_FAILED,
3543 sinfo->tx_failed))
3544 goto nla_put_failure;
3545 if ((sinfo->filled & STATION_INFO_BEACON_LOSS_COUNT) &&
3546 nla_put_u32(msg, NL80211_STA_INFO_BEACON_LOSS,
3547 sinfo->beacon_loss_count))
3548 goto nla_put_failure;
Marco Porsch3b1c5a52013-01-07 16:04:52 +01003549 if ((sinfo->filled & STATION_INFO_LOCAL_PM) &&
3550 nla_put_u32(msg, NL80211_STA_INFO_LOCAL_PM,
3551 sinfo->local_pm))
3552 goto nla_put_failure;
3553 if ((sinfo->filled & STATION_INFO_PEER_PM) &&
3554 nla_put_u32(msg, NL80211_STA_INFO_PEER_PM,
3555 sinfo->peer_pm))
3556 goto nla_put_failure;
3557 if ((sinfo->filled & STATION_INFO_NONPEER_PM) &&
3558 nla_put_u32(msg, NL80211_STA_INFO_NONPEER_PM,
3559 sinfo->nonpeer_pm))
3560 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003561 if (sinfo->filled & STATION_INFO_BSS_PARAM) {
3562 bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM);
3563 if (!bss_param)
3564 goto nla_put_failure;
3565
David S. Miller9360ffd2012-03-29 04:41:26 -04003566 if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) &&
3567 nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) ||
3568 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) &&
3569 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) ||
3570 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) &&
3571 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) ||
3572 nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD,
3573 sinfo->bss_param.dtim_period) ||
3574 nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL,
3575 sinfo->bss_param.beacon_interval))
3576 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003577
3578 nla_nest_end(msg, bss_param);
3579 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003580 if ((sinfo->filled & STATION_INFO_STA_FLAGS) &&
3581 nla_put(msg, NL80211_STA_INFO_STA_FLAGS,
3582 sizeof(struct nl80211_sta_flag_update),
3583 &sinfo->sta_flags))
3584 goto nla_put_failure;
John W. Linville7eab0f62012-04-12 14:25:14 -04003585 if ((sinfo->filled & STATION_INFO_T_OFFSET) &&
3586 nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET,
3587 sinfo->t_offset))
3588 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003589 nla_nest_end(msg, sinfoattr);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003590
David S. Miller9360ffd2012-03-29 04:41:26 -04003591 if ((sinfo->filled & STATION_INFO_ASSOC_REQ_IES) &&
3592 nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len,
3593 sinfo->assoc_req_ies))
3594 goto nla_put_failure;
Jouni Malinen50d3dfb2011-08-08 12:11:52 +03003595
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003596 return genlmsg_end(msg, hdr);
3597
3598 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07003599 genlmsg_cancel(msg, hdr);
3600 return -EMSGSIZE;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003601}
3602
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003603static int nl80211_dump_station(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003604 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003605{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003606 struct station_info sinfo;
3607 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02003608 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003609 u8 mac_addr[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02003610 int sta_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003611 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003612
Johannes Berg97990a02013-04-19 01:02:55 +02003613 err = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02003614 if (err)
3615 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003616
Johannes Berg97990a02013-04-19 01:02:55 +02003617 if (!wdev->netdev) {
3618 err = -EINVAL;
3619 goto out_err;
3620 }
3621
Johannes Bergbba95fe2008-07-29 13:22:51 +02003622 if (!dev->ops->dump_station) {
Jouni Malineneec60b02009-03-20 21:21:19 +02003623 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003624 goto out_err;
3625 }
3626
Johannes Bergbba95fe2008-07-29 13:22:51 +02003627 while (1) {
Jouni Malinenf612ced2011-08-11 11:46:22 +03003628 memset(&sinfo, 0, sizeof(sinfo));
Johannes Berg97990a02013-04-19 01:02:55 +02003629 err = rdev_dump_station(dev, wdev->netdev, sta_idx,
Hila Gonene35e4d22012-06-27 17:19:42 +03003630 mac_addr, &sinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003631 if (err == -ENOENT)
3632 break;
3633 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01003634 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003635
3636 if (nl80211_send_station(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003637 NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003638 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02003639 dev, wdev->netdev, mac_addr,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003640 &sinfo) < 0)
3641 goto out;
3642
3643 sta_idx++;
3644 }
3645
3646
3647 out:
Johannes Berg97990a02013-04-19 01:02:55 +02003648 cb->args[2] = sta_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003649 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003650 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02003651 nl80211_finish_wdev_dump(dev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003652
3653 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003654}
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003655
Johannes Berg5727ef12007-12-19 02:03:34 +01003656static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
3657{
Johannes Berg4c476992010-10-04 21:36:35 +02003658 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3659 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003660 struct station_info sinfo;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003661 struct sk_buff *msg;
3662 u8 *mac_addr = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02003663 int err;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003664
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003665 memset(&sinfo, 0, sizeof(sinfo));
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003666
3667 if (!info->attrs[NL80211_ATTR_MAC])
3668 return -EINVAL;
3669
3670 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3671
Johannes Berg4c476992010-10-04 21:36:35 +02003672 if (!rdev->ops->get_station)
3673 return -EOPNOTSUPP;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003674
Hila Gonene35e4d22012-06-27 17:19:42 +03003675 err = rdev_get_station(rdev, dev, mac_addr, &sinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003676 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02003677 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003678
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07003679 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003680 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02003681 return -ENOMEM;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003682
Eric W. Biederman15e47302012-09-07 20:12:54 +00003683 if (nl80211_send_station(msg, info->snd_portid, info->snd_seq, 0,
John W. Linville66266b32012-03-15 13:25:41 -04003684 rdev, dev, mac_addr, &sinfo) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02003685 nlmsg_free(msg);
3686 return -ENOBUFS;
3687 }
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003688
Johannes Berg4c476992010-10-04 21:36:35 +02003689 return genlmsg_reply(msg, info);
Johannes Berg5727ef12007-12-19 02:03:34 +01003690}
3691
Johannes Berg77ee7c82013-02-15 00:48:33 +01003692int cfg80211_check_station_change(struct wiphy *wiphy,
3693 struct station_parameters *params,
3694 enum cfg80211_station_type statype)
3695{
3696 if (params->listen_interval != -1)
3697 return -EINVAL;
3698 if (params->aid)
3699 return -EINVAL;
3700
3701 /* When you run into this, adjust the code below for the new flag */
3702 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
3703
3704 switch (statype) {
Thomas Pederseneef941e2013-03-04 13:06:11 -08003705 case CFG80211_STA_MESH_PEER_KERNEL:
3706 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003707 /*
3708 * No ignoring the TDLS flag here -- the userspace mesh
3709 * code doesn't have the bug of including TDLS in the
3710 * mask everywhere.
3711 */
3712 if (params->sta_flags_mask &
3713 ~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3714 BIT(NL80211_STA_FLAG_MFP) |
3715 BIT(NL80211_STA_FLAG_AUTHORIZED)))
3716 return -EINVAL;
3717 break;
3718 case CFG80211_STA_TDLS_PEER_SETUP:
3719 case CFG80211_STA_TDLS_PEER_ACTIVE:
3720 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
3721 return -EINVAL;
3722 /* ignore since it can't change */
3723 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3724 break;
3725 default:
3726 /* disallow mesh-specific things */
3727 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3728 return -EINVAL;
3729 if (params->local_pm)
3730 return -EINVAL;
3731 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3732 return -EINVAL;
3733 }
3734
3735 if (statype != CFG80211_STA_TDLS_PEER_SETUP &&
3736 statype != CFG80211_STA_TDLS_PEER_ACTIVE) {
3737 /* TDLS can't be set, ... */
3738 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
3739 return -EINVAL;
3740 /*
3741 * ... but don't bother the driver with it. This works around
3742 * a hostapd/wpa_supplicant issue -- it always includes the
3743 * TLDS_PEER flag in the mask even for AP mode.
3744 */
3745 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3746 }
3747
3748 if (statype != CFG80211_STA_TDLS_PEER_SETUP) {
3749 /* reject other things that can't change */
3750 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD)
3751 return -EINVAL;
3752 if (params->sta_modify_mask & STATION_PARAM_APPLY_CAPABILITY)
3753 return -EINVAL;
3754 if (params->supported_rates)
3755 return -EINVAL;
3756 if (params->ext_capab || params->ht_capa || params->vht_capa)
3757 return -EINVAL;
3758 }
3759
3760 if (statype != CFG80211_STA_AP_CLIENT) {
3761 if (params->vlan)
3762 return -EINVAL;
3763 }
3764
3765 switch (statype) {
3766 case CFG80211_STA_AP_MLME_CLIENT:
3767 /* Use this only for authorizing/unauthorizing a station */
3768 if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)))
3769 return -EOPNOTSUPP;
3770 break;
3771 case CFG80211_STA_AP_CLIENT:
3772 /* accept only the listed bits */
3773 if (params->sta_flags_mask &
3774 ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3775 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3776 BIT(NL80211_STA_FLAG_ASSOCIATED) |
3777 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3778 BIT(NL80211_STA_FLAG_WME) |
3779 BIT(NL80211_STA_FLAG_MFP)))
3780 return -EINVAL;
3781
3782 /* but authenticated/associated only if driver handles it */
3783 if (!(wiphy->features & NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
3784 params->sta_flags_mask &
3785 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3786 BIT(NL80211_STA_FLAG_ASSOCIATED)))
3787 return -EINVAL;
3788 break;
3789 case CFG80211_STA_IBSS:
3790 case CFG80211_STA_AP_STA:
3791 /* reject any changes other than AUTHORIZED */
3792 if (params->sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
3793 return -EINVAL;
3794 break;
3795 case CFG80211_STA_TDLS_PEER_SETUP:
3796 /* reject any changes other than AUTHORIZED or WME */
3797 if (params->sta_flags_mask & ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3798 BIT(NL80211_STA_FLAG_WME)))
3799 return -EINVAL;
3800 /* force (at least) rates when authorizing */
3801 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED) &&
3802 !params->supported_rates)
3803 return -EINVAL;
3804 break;
3805 case CFG80211_STA_TDLS_PEER_ACTIVE:
3806 /* reject any changes */
3807 return -EINVAL;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003808 case CFG80211_STA_MESH_PEER_KERNEL:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003809 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3810 return -EINVAL;
3811 break;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003812 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003813 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3814 return -EINVAL;
3815 break;
3816 }
3817
3818 return 0;
3819}
3820EXPORT_SYMBOL(cfg80211_check_station_change);
3821
Johannes Berg5727ef12007-12-19 02:03:34 +01003822/*
Felix Fietkauc258d2d2009-11-11 17:23:31 +01003823 * Get vlan interface making sure it is running and on the right wiphy.
Johannes Berg5727ef12007-12-19 02:03:34 +01003824 */
Johannes Berg80b99892011-11-18 16:23:01 +01003825static struct net_device *get_vlan(struct genl_info *info,
3826 struct cfg80211_registered_device *rdev)
Johannes Berg5727ef12007-12-19 02:03:34 +01003827{
Johannes Berg463d0182009-07-14 00:33:35 +02003828 struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
Johannes Berg80b99892011-11-18 16:23:01 +01003829 struct net_device *v;
3830 int ret;
Johannes Berg5727ef12007-12-19 02:03:34 +01003831
Johannes Berg80b99892011-11-18 16:23:01 +01003832 if (!vlanattr)
3833 return NULL;
3834
3835 v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr));
3836 if (!v)
3837 return ERR_PTR(-ENODEV);
3838
3839 if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) {
3840 ret = -EINVAL;
3841 goto error;
Johannes Berg5727ef12007-12-19 02:03:34 +01003842 }
Johannes Berg80b99892011-11-18 16:23:01 +01003843
Johannes Berg77ee7c82013-02-15 00:48:33 +01003844 if (v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
3845 v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3846 v->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
3847 ret = -EINVAL;
3848 goto error;
3849 }
3850
Johannes Berg80b99892011-11-18 16:23:01 +01003851 if (!netif_running(v)) {
3852 ret = -ENETDOWN;
3853 goto error;
3854 }
3855
3856 return v;
3857 error:
3858 dev_put(v);
3859 return ERR_PTR(ret);
Johannes Berg5727ef12007-12-19 02:03:34 +01003860}
3861
Jouni Malinendf881292013-02-14 21:10:54 +02003862static struct nla_policy
3863nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] __read_mostly = {
3864 [NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 },
3865 [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
3866};
3867
Johannes Bergff276692013-02-15 00:09:01 +01003868static int nl80211_parse_sta_wme(struct genl_info *info,
3869 struct station_parameters *params)
Jouni Malinendf881292013-02-14 21:10:54 +02003870{
Jouni Malinendf881292013-02-14 21:10:54 +02003871 struct nlattr *tb[NL80211_STA_WME_MAX + 1];
3872 struct nlattr *nla;
3873 int err;
3874
Jouni Malinendf881292013-02-14 21:10:54 +02003875 /* parse WME attributes if present */
3876 if (!info->attrs[NL80211_ATTR_STA_WME])
3877 return 0;
3878
3879 nla = info->attrs[NL80211_ATTR_STA_WME];
3880 err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla,
3881 nl80211_sta_wme_policy);
3882 if (err)
3883 return err;
3884
3885 if (tb[NL80211_STA_WME_UAPSD_QUEUES])
3886 params->uapsd_queues = nla_get_u8(
3887 tb[NL80211_STA_WME_UAPSD_QUEUES]);
3888 if (params->uapsd_queues & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
3889 return -EINVAL;
3890
3891 if (tb[NL80211_STA_WME_MAX_SP])
3892 params->max_sp = nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
3893
3894 if (params->max_sp & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
3895 return -EINVAL;
3896
3897 params->sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
3898
3899 return 0;
3900}
3901
Sunil Duttc01fc9a2013-10-09 20:45:21 +05303902static int nl80211_parse_sta_channel_info(struct genl_info *info,
3903 struct station_parameters *params)
3904{
3905 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]) {
3906 params->supported_channels =
3907 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
3908 params->supported_channels_len =
3909 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_CHANNELS]);
3910 /*
3911 * Need to include at least one (first channel, number of
3912 * channels) tuple for each subband, and must have proper
3913 * tuples for the rest of the data as well.
3914 */
3915 if (params->supported_channels_len < 2)
3916 return -EINVAL;
3917 if (params->supported_channels_len % 2)
3918 return -EINVAL;
3919 }
3920
3921 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]) {
3922 params->supported_oper_classes =
3923 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
3924 params->supported_oper_classes_len =
3925 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES]);
3926 /*
3927 * The value of the Length field of the Supported Operating
3928 * Classes element is between 2 and 253.
3929 */
3930 if (params->supported_oper_classes_len < 2 ||
3931 params->supported_oper_classes_len > 253)
3932 return -EINVAL;
3933 }
3934 return 0;
3935}
3936
Johannes Bergff276692013-02-15 00:09:01 +01003937static int nl80211_set_station_tdls(struct genl_info *info,
3938 struct station_parameters *params)
3939{
Sunil Duttc01fc9a2013-10-09 20:45:21 +05303940 int err;
Johannes Bergff276692013-02-15 00:09:01 +01003941 /* Dummy STA entry gets updated once the peer capabilities are known */
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03003942 if (info->attrs[NL80211_ATTR_PEER_AID])
3943 params->aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Johannes Bergff276692013-02-15 00:09:01 +01003944 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
3945 params->ht_capa =
3946 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
3947 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
3948 params->vht_capa =
3949 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
3950
Sunil Duttc01fc9a2013-10-09 20:45:21 +05303951 err = nl80211_parse_sta_channel_info(info, params);
3952 if (err)
3953 return err;
3954
Johannes Bergff276692013-02-15 00:09:01 +01003955 return nl80211_parse_sta_wme(info, params);
3956}
3957
Johannes Berg5727ef12007-12-19 02:03:34 +01003958static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
3959{
Johannes Berg4c476992010-10-04 21:36:35 +02003960 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02003961 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01003962 struct station_parameters params;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003963 u8 *mac_addr;
3964 int err;
Johannes Berg5727ef12007-12-19 02:03:34 +01003965
3966 memset(&params, 0, sizeof(params));
3967
3968 params.listen_interval = -1;
3969
Johannes Berg77ee7c82013-02-15 00:48:33 +01003970 if (!rdev->ops->change_station)
3971 return -EOPNOTSUPP;
3972
Johannes Berg5727ef12007-12-19 02:03:34 +01003973 if (info->attrs[NL80211_ATTR_STA_AID])
3974 return -EINVAL;
3975
3976 if (!info->attrs[NL80211_ATTR_MAC])
3977 return -EINVAL;
3978
3979 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3980
3981 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
3982 params.supported_rates =
3983 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
3984 params.supported_rates_len =
3985 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
3986 }
3987
Jouni Malinen9d62a982013-02-14 21:10:13 +02003988 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
3989 params.capability =
3990 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
3991 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
3992 }
3993
3994 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
3995 params.ext_capab =
3996 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
3997 params.ext_capab_len =
3998 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
3999 }
4000
Jouni Malinendf881292013-02-14 21:10:54 +02004001 if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
Johannes Bergba23d202012-12-27 17:32:09 +01004002 return -EINVAL;
Jouni Malinen36aedc902008-08-25 11:58:58 +03004003
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004004 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004005 return -EINVAL;
4006
Johannes Bergf8bacc22013-02-14 23:27:01 +01004007 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004008 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004009 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4010 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4011 return -EINVAL;
4012 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004013
Johannes Bergf8bacc22013-02-14 23:27:01 +01004014 if (info->attrs[NL80211_ATTR_STA_PLINK_STATE]) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07004015 params.plink_state =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004016 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);
4017 if (params.plink_state >= NUM_NL80211_PLINK_STATES)
4018 return -EINVAL;
4019 params.sta_modify_mask |= STATION_PARAM_APPLY_PLINK_STATE;
4020 }
Javier Cardona9c3990a2011-05-03 16:57:11 -07004021
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004022 if (info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]) {
4023 enum nl80211_mesh_power_mode pm = nla_get_u32(
4024 info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]);
4025
4026 if (pm <= NL80211_MESH_POWER_UNKNOWN ||
4027 pm > NL80211_MESH_POWER_MAX)
4028 return -EINVAL;
4029
4030 params.local_pm = pm;
4031 }
4032
Johannes Berg77ee7c82013-02-15 00:48:33 +01004033 /* Include parameters for TDLS peer (will check later) */
4034 err = nl80211_set_station_tdls(info, &params);
4035 if (err)
4036 return err;
4037
4038 params.vlan = get_vlan(info, rdev);
4039 if (IS_ERR(params.vlan))
4040 return PTR_ERR(params.vlan);
4041
Johannes Berga97f4422009-06-18 17:23:43 +02004042 switch (dev->ieee80211_ptr->iftype) {
4043 case NL80211_IFTYPE_AP:
4044 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004045 case NL80211_IFTYPE_P2P_GO:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004046 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berga97f4422009-06-18 17:23:43 +02004047 case NL80211_IFTYPE_STATION:
Antonio Quartulli267335d2012-01-31 20:25:47 +01004048 case NL80211_IFTYPE_ADHOC:
Johannes Berga97f4422009-06-18 17:23:43 +02004049 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga97f4422009-06-18 17:23:43 +02004050 break;
4051 default:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004052 err = -EOPNOTSUPP;
4053 goto out_put_vlan;
Johannes Berg034d6552009-05-27 10:35:29 +02004054 }
4055
Johannes Berg77ee7c82013-02-15 00:48:33 +01004056 /* driver will call cfg80211_check_station_change() */
Hila Gonene35e4d22012-06-27 17:19:42 +03004057 err = rdev_change_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004058
Johannes Berg77ee7c82013-02-15 00:48:33 +01004059 out_put_vlan:
Johannes Berg5727ef12007-12-19 02:03:34 +01004060 if (params.vlan)
4061 dev_put(params.vlan);
Johannes Berg3b858752009-03-12 09:55:09 +01004062
Johannes Berg5727ef12007-12-19 02:03:34 +01004063 return err;
4064}
4065
4066static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
4067{
Johannes Berg4c476992010-10-04 21:36:35 +02004068 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg5727ef12007-12-19 02:03:34 +01004069 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004070 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004071 struct station_parameters params;
4072 u8 *mac_addr = NULL;
4073
4074 memset(&params, 0, sizeof(params));
4075
Johannes Berg984c3112013-02-14 23:43:25 +01004076 if (!rdev->ops->add_station)
4077 return -EOPNOTSUPP;
4078
Johannes Berg5727ef12007-12-19 02:03:34 +01004079 if (!info->attrs[NL80211_ATTR_MAC])
4080 return -EINVAL;
4081
Johannes Berg5727ef12007-12-19 02:03:34 +01004082 if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
4083 return -EINVAL;
4084
4085 if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
4086 return -EINVAL;
4087
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004088 if (!info->attrs[NL80211_ATTR_STA_AID] &&
4089 !info->attrs[NL80211_ATTR_PEER_AID])
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004090 return -EINVAL;
4091
Johannes Berg5727ef12007-12-19 02:03:34 +01004092 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4093 params.supported_rates =
4094 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4095 params.supported_rates_len =
4096 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4097 params.listen_interval =
4098 nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
Johannes Berg51b50fb2009-05-24 16:42:30 +02004099
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004100 if (info->attrs[NL80211_ATTR_PEER_AID])
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004101 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004102 else
4103 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004104 if (!params.aid || params.aid > IEEE80211_MAX_AID)
4105 return -EINVAL;
Johannes Berg51b50fb2009-05-24 16:42:30 +02004106
Jouni Malinen9d62a982013-02-14 21:10:13 +02004107 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4108 params.capability =
4109 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4110 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4111 }
4112
4113 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4114 params.ext_capab =
4115 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4116 params.ext_capab_len =
4117 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4118 }
4119
Jouni Malinen36aedc902008-08-25 11:58:58 +03004120 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4121 params.ht_capa =
4122 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
Johannes Berg5727ef12007-12-19 02:03:34 +01004123
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00004124 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4125 params.vht_capa =
4126 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4127
Johannes Bergf8bacc22013-02-14 23:27:01 +01004128 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Javier Cardona96b78df2011-04-07 15:08:33 -07004129 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004130 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4131 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4132 return -EINVAL;
4133 }
Javier Cardona96b78df2011-04-07 15:08:33 -07004134
Sunil Duttc01fc9a2013-10-09 20:45:21 +05304135 err = nl80211_parse_sta_channel_info(info, &params);
4136 if (err)
4137 return err;
4138
Johannes Bergff276692013-02-15 00:09:01 +01004139 err = nl80211_parse_sta_wme(info, &params);
4140 if (err)
4141 return err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004142
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004143 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004144 return -EINVAL;
4145
Johannes Berg77ee7c82013-02-15 00:48:33 +01004146 /* When you run into this, adjust the code below for the new flag */
4147 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
4148
Johannes Bergbdd90d52011-12-14 12:20:27 +01004149 switch (dev->ieee80211_ptr->iftype) {
4150 case NL80211_IFTYPE_AP:
4151 case NL80211_IFTYPE_AP_VLAN:
4152 case NL80211_IFTYPE_P2P_GO:
Johannes Berg984c3112013-02-14 23:43:25 +01004153 /* ignore WME attributes if iface/sta is not capable */
4154 if (!(rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) ||
4155 !(params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)))
4156 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004157
Johannes Bergbdd90d52011-12-14 12:20:27 +01004158 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004159 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4160 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004161 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004162 /* but don't bother the driver with it */
4163 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
Eliad Pellerc75786c2011-08-23 14:37:46 +03004164
Johannes Bergd582cff2012-10-26 17:53:44 +02004165 /* allow authenticated/associated only if driver handles it */
4166 if (!(rdev->wiphy.features &
4167 NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
4168 params.sta_flags_mask &
4169 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4170 BIT(NL80211_STA_FLAG_ASSOCIATED)))
4171 return -EINVAL;
4172
Johannes Bergbdd90d52011-12-14 12:20:27 +01004173 /* must be last in here for error handling */
4174 params.vlan = get_vlan(info, rdev);
4175 if (IS_ERR(params.vlan))
4176 return PTR_ERR(params.vlan);
4177 break;
4178 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg984c3112013-02-14 23:43:25 +01004179 /* ignore uAPSD data */
4180 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4181
Johannes Bergd582cff2012-10-26 17:53:44 +02004182 /* associated is disallowed */
4183 if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
4184 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004185 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004186 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4187 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004188 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004189 break;
4190 case NL80211_IFTYPE_STATION:
Johannes Berg93d08f02013-03-04 09:29:46 +01004191 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg984c3112013-02-14 23:43:25 +01004192 /* ignore uAPSD data */
4193 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4194
Johannes Berg77ee7c82013-02-15 00:48:33 +01004195 /* these are disallowed */
4196 if (params.sta_flags_mask &
4197 (BIT(NL80211_STA_FLAG_ASSOCIATED) |
4198 BIT(NL80211_STA_FLAG_AUTHENTICATED)))
Johannes Bergd582cff2012-10-26 17:53:44 +02004199 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004200 /* Only TDLS peers can be added */
4201 if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4202 return -EINVAL;
4203 /* Can only add if TDLS ... */
4204 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS))
4205 return -EOPNOTSUPP;
4206 /* ... with external setup is supported */
4207 if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
4208 return -EOPNOTSUPP;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004209 /*
4210 * Older wpa_supplicant versions always mark the TDLS peer
4211 * as authorized, but it shouldn't yet be.
4212 */
4213 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_AUTHORIZED);
Johannes Bergbdd90d52011-12-14 12:20:27 +01004214 break;
4215 default:
4216 return -EOPNOTSUPP;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004217 }
4218
Johannes Bergbdd90d52011-12-14 12:20:27 +01004219 /* be aware of params.vlan when changing code here */
Johannes Berg5727ef12007-12-19 02:03:34 +01004220
Hila Gonene35e4d22012-06-27 17:19:42 +03004221 err = rdev_add_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004222
Johannes Berg5727ef12007-12-19 02:03:34 +01004223 if (params.vlan)
4224 dev_put(params.vlan);
Johannes Berg5727ef12007-12-19 02:03:34 +01004225 return err;
4226}
4227
4228static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
4229{
Johannes Berg4c476992010-10-04 21:36:35 +02004230 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4231 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004232 u8 *mac_addr = NULL;
4233
4234 if (info->attrs[NL80211_ATTR_MAC])
4235 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4236
Johannes Berge80cf852009-05-11 14:43:13 +02004237 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Marco Porschd5d9de02010-03-30 10:00:16 +02004238 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
Johannes Berg074ac8d2010-09-16 14:58:22 +02004239 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg4c476992010-10-04 21:36:35 +02004240 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4241 return -EINVAL;
Johannes Berge80cf852009-05-11 14:43:13 +02004242
Johannes Berg4c476992010-10-04 21:36:35 +02004243 if (!rdev->ops->del_station)
4244 return -EOPNOTSUPP;
Johannes Berg5727ef12007-12-19 02:03:34 +01004245
Hila Gonene35e4d22012-06-27 17:19:42 +03004246 return rdev_del_station(rdev, dev, mac_addr);
Johannes Berg5727ef12007-12-19 02:03:34 +01004247}
4248
Eric W. Biederman15e47302012-09-07 20:12:54 +00004249static int nl80211_send_mpath(struct sk_buff *msg, u32 portid, u32 seq,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004250 int flags, struct net_device *dev,
4251 u8 *dst, u8 *next_hop,
4252 struct mpath_info *pinfo)
4253{
4254 void *hdr;
4255 struct nlattr *pinfoattr;
4256
Eric W. Biederman15e47302012-09-07 20:12:54 +00004257 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004258 if (!hdr)
4259 return -1;
4260
David S. Miller9360ffd2012-03-29 04:41:26 -04004261 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4262 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) ||
4263 nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) ||
4264 nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation))
4265 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02004266
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004267 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
4268 if (!pinfoattr)
4269 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004270 if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) &&
4271 nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
4272 pinfo->frame_qlen))
4273 goto nla_put_failure;
4274 if (((pinfo->filled & MPATH_INFO_SN) &&
4275 nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) ||
4276 ((pinfo->filled & MPATH_INFO_METRIC) &&
4277 nla_put_u32(msg, NL80211_MPATH_INFO_METRIC,
4278 pinfo->metric)) ||
4279 ((pinfo->filled & MPATH_INFO_EXPTIME) &&
4280 nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME,
4281 pinfo->exptime)) ||
4282 ((pinfo->filled & MPATH_INFO_FLAGS) &&
4283 nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS,
4284 pinfo->flags)) ||
4285 ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) &&
4286 nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
4287 pinfo->discovery_timeout)) ||
4288 ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) &&
4289 nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
4290 pinfo->discovery_retries)))
4291 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004292
4293 nla_nest_end(msg, pinfoattr);
4294
4295 return genlmsg_end(msg, hdr);
4296
4297 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07004298 genlmsg_cancel(msg, hdr);
4299 return -EMSGSIZE;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004300}
4301
4302static int nl80211_dump_mpath(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004303 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004304{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004305 struct mpath_info pinfo;
4306 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02004307 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004308 u8 dst[ETH_ALEN];
4309 u8 next_hop[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02004310 int path_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004311 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004312
Johannes Berg97990a02013-04-19 01:02:55 +02004313 err = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02004314 if (err)
4315 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004316
4317 if (!dev->ops->dump_mpath) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004318 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004319 goto out_err;
4320 }
4321
Johannes Berg97990a02013-04-19 01:02:55 +02004322 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004323 err = -EOPNOTSUPP;
Roel Kluin0448b5f2009-08-22 21:15:49 +02004324 goto out_err;
Jouni Malineneec60b02009-03-20 21:21:19 +02004325 }
4326
Johannes Bergbba95fe2008-07-29 13:22:51 +02004327 while (1) {
Johannes Berg97990a02013-04-19 01:02:55 +02004328 err = rdev_dump_mpath(dev, wdev->netdev, path_idx, dst,
4329 next_hop, &pinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004330 if (err == -ENOENT)
4331 break;
4332 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01004333 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004334
Eric W. Biederman15e47302012-09-07 20:12:54 +00004335 if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004336 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02004337 wdev->netdev, dst, next_hop,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004338 &pinfo) < 0)
4339 goto out;
4340
4341 path_idx++;
4342 }
4343
4344
4345 out:
Johannes Berg97990a02013-04-19 01:02:55 +02004346 cb->args[2] = path_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004347 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004348 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02004349 nl80211_finish_wdev_dump(dev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004350 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004351}
4352
4353static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
4354{
Johannes Berg4c476992010-10-04 21:36:35 +02004355 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004356 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004357 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004358 struct mpath_info pinfo;
4359 struct sk_buff *msg;
4360 u8 *dst = NULL;
4361 u8 next_hop[ETH_ALEN];
4362
4363 memset(&pinfo, 0, sizeof(pinfo));
4364
4365 if (!info->attrs[NL80211_ATTR_MAC])
4366 return -EINVAL;
4367
4368 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4369
Johannes Berg4c476992010-10-04 21:36:35 +02004370 if (!rdev->ops->get_mpath)
4371 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004372
Johannes Berg4c476992010-10-04 21:36:35 +02004373 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4374 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004375
Hila Gonene35e4d22012-06-27 17:19:42 +03004376 err = rdev_get_mpath(rdev, dev, dst, next_hop, &pinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004377 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004378 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004379
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004380 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004381 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02004382 return -ENOMEM;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004383
Eric W. Biederman15e47302012-09-07 20:12:54 +00004384 if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg4c476992010-10-04 21:36:35 +02004385 dev, dst, next_hop, &pinfo) < 0) {
4386 nlmsg_free(msg);
4387 return -ENOBUFS;
4388 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004389
Johannes Berg4c476992010-10-04 21:36:35 +02004390 return genlmsg_reply(msg, info);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004391}
4392
4393static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
4394{
Johannes Berg4c476992010-10-04 21:36:35 +02004395 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4396 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004397 u8 *dst = NULL;
4398 u8 *next_hop = NULL;
4399
4400 if (!info->attrs[NL80211_ATTR_MAC])
4401 return -EINVAL;
4402
4403 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4404 return -EINVAL;
4405
4406 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4407 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4408
Johannes Berg4c476992010-10-04 21:36:35 +02004409 if (!rdev->ops->change_mpath)
4410 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004411
Johannes Berg4c476992010-10-04 21:36:35 +02004412 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4413 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004414
Hila Gonene35e4d22012-06-27 17:19:42 +03004415 return rdev_change_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004416}
Johannes Berg4c476992010-10-04 21:36:35 +02004417
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004418static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
4419{
Johannes Berg4c476992010-10-04 21:36:35 +02004420 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4421 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004422 u8 *dst = NULL;
4423 u8 *next_hop = NULL;
4424
4425 if (!info->attrs[NL80211_ATTR_MAC])
4426 return -EINVAL;
4427
4428 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4429 return -EINVAL;
4430
4431 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4432 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4433
Johannes Berg4c476992010-10-04 21:36:35 +02004434 if (!rdev->ops->add_mpath)
4435 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004436
Johannes Berg4c476992010-10-04 21:36:35 +02004437 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4438 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004439
Hila Gonene35e4d22012-06-27 17:19:42 +03004440 return rdev_add_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004441}
4442
4443static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
4444{
Johannes Berg4c476992010-10-04 21:36:35 +02004445 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4446 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004447 u8 *dst = NULL;
4448
4449 if (info->attrs[NL80211_ATTR_MAC])
4450 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4451
Johannes Berg4c476992010-10-04 21:36:35 +02004452 if (!rdev->ops->del_mpath)
4453 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004454
Hila Gonene35e4d22012-06-27 17:19:42 +03004455 return rdev_del_mpath(rdev, dev, dst);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004456}
4457
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004458static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
4459{
Johannes Berg4c476992010-10-04 21:36:35 +02004460 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4461 struct net_device *dev = info->user_ptr[1];
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004462 struct bss_parameters params;
4463
4464 memset(&params, 0, sizeof(params));
4465 /* default to not changing parameters */
4466 params.use_cts_prot = -1;
4467 params.use_short_preamble = -1;
4468 params.use_short_slot_time = -1;
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004469 params.ap_isolate = -1;
Helmut Schaa50b12f52010-11-19 12:40:25 +01004470 params.ht_opmode = -1;
Johannes Berg53cabad2012-11-14 15:17:28 +01004471 params.p2p_ctwindow = -1;
4472 params.p2p_opp_ps = -1;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004473
4474 if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
4475 params.use_cts_prot =
4476 nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
4477 if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
4478 params.use_short_preamble =
4479 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
4480 if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
4481 params.use_short_slot_time =
4482 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
Jouni Malinen90c97a02008-10-30 16:59:22 +02004483 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
4484 params.basic_rates =
4485 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4486 params.basic_rates_len =
4487 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4488 }
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004489 if (info->attrs[NL80211_ATTR_AP_ISOLATE])
4490 params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
Helmut Schaa50b12f52010-11-19 12:40:25 +01004491 if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
4492 params.ht_opmode =
4493 nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004494
Johannes Berg53cabad2012-11-14 15:17:28 +01004495 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
4496 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4497 return -EINVAL;
4498 params.p2p_ctwindow =
4499 nla_get_s8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
4500 if (params.p2p_ctwindow < 0)
4501 return -EINVAL;
4502 if (params.p2p_ctwindow != 0 &&
4503 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
4504 return -EINVAL;
4505 }
4506
4507 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
4508 u8 tmp;
4509
4510 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4511 return -EINVAL;
4512 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
4513 if (tmp > 1)
4514 return -EINVAL;
4515 params.p2p_opp_ps = tmp;
4516 if (params.p2p_opp_ps &&
4517 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
4518 return -EINVAL;
4519 }
4520
Johannes Berg4c476992010-10-04 21:36:35 +02004521 if (!rdev->ops->change_bss)
4522 return -EOPNOTSUPP;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004523
Johannes Berg074ac8d2010-09-16 14:58:22 +02004524 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Johannes Berg4c476992010-10-04 21:36:35 +02004525 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4526 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004527
Hila Gonene35e4d22012-06-27 17:19:42 +03004528 return rdev_change_bss(rdev, dev, &params);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004529}
4530
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004531static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004532 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
4533 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
4534 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
4535 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
4536 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
4537 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
4538};
4539
4540static int parse_reg_rule(struct nlattr *tb[],
4541 struct ieee80211_reg_rule *reg_rule)
4542{
4543 struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
4544 struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;
4545
4546 if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
4547 return -EINVAL;
4548 if (!tb[NL80211_ATTR_FREQ_RANGE_START])
4549 return -EINVAL;
4550 if (!tb[NL80211_ATTR_FREQ_RANGE_END])
4551 return -EINVAL;
4552 if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
4553 return -EINVAL;
4554 if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
4555 return -EINVAL;
4556
4557 reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);
4558
4559 freq_range->start_freq_khz =
4560 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
4561 freq_range->end_freq_khz =
4562 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
4563 freq_range->max_bandwidth_khz =
4564 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);
4565
4566 power_rule->max_eirp =
4567 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);
4568
4569 if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
4570 power_rule->max_antenna_gain =
4571 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);
4572
4573 return 0;
4574}
4575
4576static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
4577{
4578 int r;
4579 char *data = NULL;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004580 enum nl80211_user_reg_hint_type user_reg_hint_type;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004581
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004582 /*
4583 * You should only get this when cfg80211 hasn't yet initialized
4584 * completely when built-in to the kernel right between the time
4585 * window between nl80211_init() and regulatory_init(), if that is
4586 * even possible.
4587 */
Johannes Berg458f4f92012-12-06 15:47:38 +01004588 if (unlikely(!rcu_access_pointer(cfg80211_regdomain)))
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004589 return -EINPROGRESS;
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004590
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004591 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
4592 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004593
4594 data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
4595
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004596 if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE])
4597 user_reg_hint_type =
4598 nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]);
4599 else
4600 user_reg_hint_type = NL80211_USER_REG_HINT_USER;
4601
4602 switch (user_reg_hint_type) {
4603 case NL80211_USER_REG_HINT_USER:
4604 case NL80211_USER_REG_HINT_CELL_BASE:
4605 break;
4606 default:
4607 return -EINVAL;
4608 }
4609
4610 r = regulatory_hint_user(data, user_reg_hint_type);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004611
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004612 return r;
4613}
4614
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004615static int nl80211_get_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004616 struct genl_info *info)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004617{
Johannes Berg4c476992010-10-04 21:36:35 +02004618 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02004619 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004620 struct wireless_dev *wdev = dev->ieee80211_ptr;
4621 struct mesh_config cur_params;
4622 int err = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004623 void *hdr;
4624 struct nlattr *pinfoattr;
4625 struct sk_buff *msg;
4626
Johannes Berg29cbe682010-12-03 09:20:44 +01004627 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4628 return -EOPNOTSUPP;
4629
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004630 if (!rdev->ops->get_mesh_config)
Johannes Berg4c476992010-10-04 21:36:35 +02004631 return -EOPNOTSUPP;
Jouni Malinenf3f92582009-03-20 17:57:36 +02004632
Johannes Berg29cbe682010-12-03 09:20:44 +01004633 wdev_lock(wdev);
4634 /* If not connected, get default parameters */
4635 if (!wdev->mesh_id_len)
4636 memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
4637 else
Hila Gonene35e4d22012-06-27 17:19:42 +03004638 err = rdev_get_mesh_config(rdev, dev, &cur_params);
Johannes Berg29cbe682010-12-03 09:20:44 +01004639 wdev_unlock(wdev);
4640
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004641 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004642 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004643
4644 /* Draw up a netlink message to send back */
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004645 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02004646 if (!msg)
4647 return -ENOMEM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00004648 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004649 NL80211_CMD_GET_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004650 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01004651 goto out;
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004652 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004653 if (!pinfoattr)
4654 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004655 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4656 nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
4657 cur_params.dot11MeshRetryTimeout) ||
4658 nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4659 cur_params.dot11MeshConfirmTimeout) ||
4660 nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
4661 cur_params.dot11MeshHoldingTimeout) ||
4662 nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
4663 cur_params.dot11MeshMaxPeerLinks) ||
4664 nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES,
4665 cur_params.dot11MeshMaxRetries) ||
4666 nla_put_u8(msg, NL80211_MESHCONF_TTL,
4667 cur_params.dot11MeshTTL) ||
4668 nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL,
4669 cur_params.element_ttl) ||
4670 nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4671 cur_params.auto_open_plinks) ||
John W. Linville7eab0f62012-04-12 14:25:14 -04004672 nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4673 cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04004674 nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4675 cur_params.dot11MeshHWMPmaxPREQretries) ||
4676 nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
4677 cur_params.path_refresh_time) ||
4678 nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4679 cur_params.min_discovery_timeout) ||
4680 nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4681 cur_params.dot11MeshHWMPactivePathTimeout) ||
4682 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
4683 cur_params.dot11MeshHWMPpreqMinInterval) ||
4684 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
4685 cur_params.dot11MeshHWMPperrMinInterval) ||
4686 nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4687 cur_params.dot11MeshHWMPnetDiameterTraversalTime) ||
4688 nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE,
4689 cur_params.dot11MeshHWMPRootMode) ||
4690 nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
4691 cur_params.dot11MeshHWMPRannInterval) ||
4692 nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
4693 cur_params.dot11MeshGateAnnouncementProtocol) ||
4694 nla_put_u8(msg, NL80211_MESHCONF_FORWARDING,
4695 cur_params.dot11MeshForwarding) ||
4696 nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD,
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07004697 cur_params.rssi_threshold) ||
4698 nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004699 cur_params.ht_opmode) ||
4700 nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4701 cur_params.dot11MeshHWMPactivePathToRootTimeout) ||
4702 nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004703 cur_params.dot11MeshHWMProotInterval) ||
4704 nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004705 cur_params.dot11MeshHWMPconfirmationInterval) ||
4706 nla_put_u32(msg, NL80211_MESHCONF_POWER_MODE,
4707 cur_params.power_mode) ||
4708 nla_put_u16(msg, NL80211_MESHCONF_AWAKE_WINDOW,
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004709 cur_params.dot11MeshAwakeWindowDuration) ||
4710 nla_put_u32(msg, NL80211_MESHCONF_PLINK_TIMEOUT,
4711 cur_params.plink_timeout))
David S. Miller9360ffd2012-03-29 04:41:26 -04004712 goto nla_put_failure;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004713 nla_nest_end(msg, pinfoattr);
4714 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02004715 return genlmsg_reply(msg, info);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004716
Johannes Berg3b858752009-03-12 09:55:09 +01004717 nla_put_failure:
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004718 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01004719 out:
Yuri Ershovd080e272010-06-29 15:08:07 +04004720 nlmsg_free(msg);
Johannes Berg4c476992010-10-04 21:36:35 +02004721 return -ENOBUFS;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004722}
4723
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004724static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004725 [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
4726 [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
4727 [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
4728 [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
4729 [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
4730 [NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
Javier Cardona45904f22010-12-03 09:20:40 +01004731 [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004732 [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
Javier Cardonad299a1f2012-03-31 11:31:33 -07004733 [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004734 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
4735 [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
4736 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
4737 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
4738 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
Thomas Pedersendca7e942011-11-24 17:15:24 -08004739 [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004740 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
Javier Cardona699403d2011-08-09 16:45:09 -07004741 [NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
Javier Cardona0507e152011-08-09 16:45:10 -07004742 [NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
Javier Cardona16dd7262011-08-09 16:45:11 -07004743 [NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08004744 [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004745 [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
4746 [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004747 [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
4748 [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004749 [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004750 [NL80211_MESHCONF_POWER_MODE] = { .type = NLA_U32 },
4751 [NL80211_MESHCONF_AWAKE_WINDOW] = { .type = NLA_U16 },
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004752 [NL80211_MESHCONF_PLINK_TIMEOUT] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004753};
4754
Javier Cardonac80d5452010-12-16 17:37:49 -08004755static const struct nla_policy
4756 nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
Javier Cardonad299a1f2012-03-31 11:31:33 -07004757 [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
Javier Cardonac80d5452010-12-16 17:37:49 -08004758 [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
4759 [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
Javier Cardona15d5dda2011-04-07 15:08:28 -07004760 [NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
Colleen Twitty6e16d902013-05-08 11:45:59 -07004761 [NL80211_MESH_SETUP_AUTH_PROTOCOL] = { .type = NLA_U8 },
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004762 [NL80211_MESH_SETUP_USERSPACE_MPM] = { .type = NLA_FLAG },
Javier Cardona581a8b02011-04-07 15:08:27 -07004763 [NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004764 .len = IEEE80211_MAX_DATA_LEN },
Javier Cardonab130e5c2011-05-03 16:57:07 -07004765 [NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
Javier Cardonac80d5452010-12-16 17:37:49 -08004766};
4767
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004768static int nl80211_parse_mesh_config(struct genl_info *info,
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004769 struct mesh_config *cfg,
4770 u32 *mask_out)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004771{
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004772 struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004773 u32 mask = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004774
Marco Porschea54fba2013-01-07 16:04:48 +01004775#define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
4776do { \
4777 if (tb[attr]) { \
4778 if (fn(tb[attr]) < min || fn(tb[attr]) > max) \
4779 return -EINVAL; \
4780 cfg->param = fn(tb[attr]); \
4781 mask |= (1 << (attr - 1)); \
4782 } \
4783} while (0)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004784
4785
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004786 if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004787 return -EINVAL;
4788 if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004789 info->attrs[NL80211_ATTR_MESH_CONFIG],
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004790 nl80211_meshconf_params_policy))
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004791 return -EINVAL;
4792
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004793 /* This makes sure that there aren't more than 32 mesh config
4794 * parameters (otherwise our bitfield scheme would not work.) */
4795 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);
4796
4797 /* Fill in the params struct */
Marco Porschea54fba2013-01-07 16:04:48 +01004798 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004799 mask, NL80211_MESHCONF_RETRY_TIMEOUT,
4800 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004801 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004802 mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4803 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004804 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004805 mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
4806 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004807 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004808 mask, NL80211_MESHCONF_MAX_PEER_LINKS,
4809 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004810 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004811 mask, NL80211_MESHCONF_MAX_RETRIES,
4812 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004813 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004814 mask, NL80211_MESHCONF_TTL, nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004815 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004816 mask, NL80211_MESHCONF_ELEMENT_TTL,
4817 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004818 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004819 mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4820 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004821 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor,
4822 1, 255, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004823 NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4824 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004825 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004826 mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4827 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004828 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004829 mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
4830 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004831 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004832 mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4833 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004834 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
4835 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004836 NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4837 nla_get_u32);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004838 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01004839 1, 65535, mask,
4840 NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004841 nla_get_u16);
Thomas Pedersendca7e942011-11-24 17:15:24 -08004842 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01004843 1, 65535, mask,
4844 NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004845 nla_get_u16);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004846 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004847 dot11MeshHWMPnetDiameterTraversalTime,
4848 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004849 NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4850 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004851 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, 0, 4,
4852 mask, NL80211_MESHCONF_HWMP_ROOTMODE,
4853 nla_get_u8);
4854 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, 1, 65535,
4855 mask, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004856 nla_get_u16);
Rui Paulo63c57232009-11-09 23:46:57 +00004857 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004858 dot11MeshGateAnnouncementProtocol, 0, 1,
4859 mask, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004860 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004861 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004862 mask, NL80211_MESHCONF_FORWARDING,
4863 nla_get_u8);
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08004864 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, -255, 0,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004865 mask, NL80211_MESHCONF_RSSI_THRESHOLD,
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08004866 nla_get_s32);
Marco Porschea54fba2013-01-07 16:04:48 +01004867 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004868 mask, NL80211_MESHCONF_HT_OPMODE,
4869 nla_get_u16);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004870 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
Marco Porschea54fba2013-01-07 16:04:48 +01004871 1, 65535, mask,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004872 NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4873 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004874 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, 1, 65535,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004875 mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
4876 nla_get_u16);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004877 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004878 dot11MeshHWMPconfirmationInterval,
4879 1, 65535, mask,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004880 NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
4881 nla_get_u16);
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004882 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, power_mode,
4883 NL80211_MESH_POWER_ACTIVE,
4884 NL80211_MESH_POWER_MAX,
4885 mask, NL80211_MESHCONF_POWER_MODE,
4886 nla_get_u32);
4887 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshAwakeWindowDuration,
4888 0, 65535, mask,
4889 NL80211_MESHCONF_AWAKE_WINDOW, nla_get_u16);
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004890 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, plink_timeout, 1, 0xffffffff,
4891 mask, NL80211_MESHCONF_PLINK_TIMEOUT,
4892 nla_get_u32);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004893 if (mask_out)
4894 *mask_out = mask;
Javier Cardonac80d5452010-12-16 17:37:49 -08004895
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004896 return 0;
4897
4898#undef FILL_IN_MESH_PARAM_IF_SET
4899}
4900
Javier Cardonac80d5452010-12-16 17:37:49 -08004901static int nl80211_parse_mesh_setup(struct genl_info *info,
4902 struct mesh_setup *setup)
4903{
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004904 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Javier Cardonac80d5452010-12-16 17:37:49 -08004905 struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1];
4906
4907 if (!info->attrs[NL80211_ATTR_MESH_SETUP])
4908 return -EINVAL;
4909 if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX,
4910 info->attrs[NL80211_ATTR_MESH_SETUP],
4911 nl80211_mesh_setup_params_policy))
4912 return -EINVAL;
4913
Javier Cardonad299a1f2012-03-31 11:31:33 -07004914 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])
4915 setup->sync_method =
4916 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ?
4917 IEEE80211_SYNC_METHOD_VENDOR :
4918 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET;
4919
Javier Cardonac80d5452010-12-16 17:37:49 -08004920 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])
4921 setup->path_sel_proto =
4922 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ?
4923 IEEE80211_PATH_PROTOCOL_VENDOR :
4924 IEEE80211_PATH_PROTOCOL_HWMP;
4925
4926 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])
4927 setup->path_metric =
4928 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ?
4929 IEEE80211_PATH_METRIC_VENDOR :
4930 IEEE80211_PATH_METRIC_AIRTIME;
4931
Javier Cardona581a8b02011-04-07 15:08:27 -07004932
4933 if (tb[NL80211_MESH_SETUP_IE]) {
Javier Cardonac80d5452010-12-16 17:37:49 -08004934 struct nlattr *ieattr =
Javier Cardona581a8b02011-04-07 15:08:27 -07004935 tb[NL80211_MESH_SETUP_IE];
Javier Cardonac80d5452010-12-16 17:37:49 -08004936 if (!is_valid_ie_attr(ieattr))
4937 return -EINVAL;
Javier Cardona581a8b02011-04-07 15:08:27 -07004938 setup->ie = nla_data(ieattr);
4939 setup->ie_len = nla_len(ieattr);
Javier Cardonac80d5452010-12-16 17:37:49 -08004940 }
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004941 if (tb[NL80211_MESH_SETUP_USERSPACE_MPM] &&
4942 !(rdev->wiphy.features & NL80211_FEATURE_USERSPACE_MPM))
4943 return -EINVAL;
4944 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]);
Javier Cardonab130e5c2011-05-03 16:57:07 -07004945 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
4946 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004947 if (setup->is_secure)
4948 setup->user_mpm = true;
Javier Cardonac80d5452010-12-16 17:37:49 -08004949
Colleen Twitty6e16d902013-05-08 11:45:59 -07004950 if (tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]) {
4951 if (!setup->user_mpm)
4952 return -EINVAL;
4953 setup->auth_id =
4954 nla_get_u8(tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]);
4955 }
4956
Javier Cardonac80d5452010-12-16 17:37:49 -08004957 return 0;
4958}
4959
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004960static int nl80211_update_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004961 struct genl_info *info)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004962{
4963 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4964 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004965 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004966 struct mesh_config cfg;
4967 u32 mask;
4968 int err;
4969
Johannes Berg29cbe682010-12-03 09:20:44 +01004970 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4971 return -EOPNOTSUPP;
4972
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004973 if (!rdev->ops->update_mesh_config)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004974 return -EOPNOTSUPP;
4975
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004976 err = nl80211_parse_mesh_config(info, &cfg, &mask);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004977 if (err)
4978 return err;
4979
Johannes Berg29cbe682010-12-03 09:20:44 +01004980 wdev_lock(wdev);
4981 if (!wdev->mesh_id_len)
4982 err = -ENOLINK;
4983
4984 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03004985 err = rdev_update_mesh_config(rdev, dev, mask, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01004986
4987 wdev_unlock(wdev);
4988
4989 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004990}
4991
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004992static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
4993{
Johannes Berg458f4f92012-12-06 15:47:38 +01004994 const struct ieee80211_regdomain *regdom;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004995 struct sk_buff *msg;
4996 void *hdr = NULL;
4997 struct nlattr *nl_reg_rules;
4998 unsigned int i;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004999
5000 if (!cfg80211_regdomain)
Johannes Berg5fe231e2013-05-08 21:45:15 +02005001 return -EINVAL;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005002
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07005003 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005004 if (!msg)
5005 return -ENOBUFS;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005006
Eric W. Biederman15e47302012-09-07 20:12:54 +00005007 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005008 NL80211_CMD_GET_REG);
5009 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01005010 goto put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005011
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07005012 if (reg_last_request_cell_base() &&
5013 nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
5014 NL80211_USER_REG_HINT_CELL_BASE))
5015 goto nla_put_failure;
5016
Johannes Berg458f4f92012-12-06 15:47:38 +01005017 rcu_read_lock();
5018 regdom = rcu_dereference(cfg80211_regdomain);
5019
5020 if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, regdom->alpha2) ||
5021 (regdom->dfs_region &&
5022 nla_put_u8(msg, NL80211_ATTR_DFS_REGION, regdom->dfs_region)))
5023 goto nla_put_failure_rcu;
5024
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005025 nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
5026 if (!nl_reg_rules)
Johannes Berg458f4f92012-12-06 15:47:38 +01005027 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005028
Johannes Berg458f4f92012-12-06 15:47:38 +01005029 for (i = 0; i < regdom->n_reg_rules; i++) {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005030 struct nlattr *nl_reg_rule;
5031 const struct ieee80211_reg_rule *reg_rule;
5032 const struct ieee80211_freq_range *freq_range;
5033 const struct ieee80211_power_rule *power_rule;
5034
Johannes Berg458f4f92012-12-06 15:47:38 +01005035 reg_rule = &regdom->reg_rules[i];
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005036 freq_range = &reg_rule->freq_range;
5037 power_rule = &reg_rule->power_rule;
5038
5039 nl_reg_rule = nla_nest_start(msg, i);
5040 if (!nl_reg_rule)
Johannes Berg458f4f92012-12-06 15:47:38 +01005041 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005042
David S. Miller9360ffd2012-03-29 04:41:26 -04005043 if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS,
5044 reg_rule->flags) ||
5045 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START,
5046 freq_range->start_freq_khz) ||
5047 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END,
5048 freq_range->end_freq_khz) ||
5049 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
5050 freq_range->max_bandwidth_khz) ||
5051 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
5052 power_rule->max_antenna_gain) ||
5053 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
5054 power_rule->max_eirp))
Johannes Berg458f4f92012-12-06 15:47:38 +01005055 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005056
5057 nla_nest_end(msg, nl_reg_rule);
5058 }
Johannes Berg458f4f92012-12-06 15:47:38 +01005059 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005060
5061 nla_nest_end(msg, nl_reg_rules);
5062
5063 genlmsg_end(msg, hdr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005064 return genlmsg_reply(msg, info);
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005065
Johannes Berg458f4f92012-12-06 15:47:38 +01005066nla_put_failure_rcu:
5067 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005068nla_put_failure:
5069 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01005070put_failure:
Yuri Ershovd080e272010-06-29 15:08:07 +04005071 nlmsg_free(msg);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005072 return -EMSGSIZE;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005073}
5074
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005075static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
5076{
5077 struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
5078 struct nlattr *nl_reg_rule;
5079 char *alpha2 = NULL;
5080 int rem_reg_rules = 0, r = 0;
5081 u32 num_rules = 0, rule_idx = 0, size_of_regd;
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005082 u8 dfs_region = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005083 struct ieee80211_regdomain *rd = NULL;
5084
5085 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
5086 return -EINVAL;
5087
5088 if (!info->attrs[NL80211_ATTR_REG_RULES])
5089 return -EINVAL;
5090
5091 alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
5092
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005093 if (info->attrs[NL80211_ATTR_DFS_REGION])
5094 dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);
5095
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005096 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005097 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005098 num_rules++;
5099 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
Luis R. Rodriguez4776c6e2009-05-13 17:04:39 -04005100 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005101 }
5102
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005103 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg1a919312012-12-03 17:21:11 +01005104 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005105
5106 rd = kzalloc(size_of_regd, GFP_KERNEL);
Johannes Berg6913b492012-12-04 00:48:59 +01005107 if (!rd)
5108 return -ENOMEM;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005109
5110 rd->n_reg_rules = num_rules;
5111 rd->alpha2[0] = alpha2[0];
5112 rd->alpha2[1] = alpha2[1];
5113
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005114 /*
5115 * Disable DFS master mode if the DFS region was
5116 * not supported or known on this kernel.
5117 */
5118 if (reg_supported_dfs_region(dfs_region))
5119 rd->dfs_region = dfs_region;
5120
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005121 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005122 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005123 nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
Johannes Berg1a919312012-12-03 17:21:11 +01005124 nla_data(nl_reg_rule), nla_len(nl_reg_rule),
5125 reg_rule_policy);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005126 r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
5127 if (r)
5128 goto bad_reg;
5129
5130 rule_idx++;
5131
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005132 if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
5133 r = -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005134 goto bad_reg;
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005135 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005136 }
5137
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005138 r = set_regdom(rd);
Johannes Berg6913b492012-12-04 00:48:59 +01005139 /* set_regdom took ownership */
Johannes Berg1a919312012-12-03 17:21:11 +01005140 rd = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005141
Johannes Bergd2372b32008-10-24 20:32:20 +02005142 bad_reg:
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005143 kfree(rd);
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005144 return r;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005145}
5146
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005147static int validate_scan_freqs(struct nlattr *freqs)
5148{
5149 struct nlattr *attr1, *attr2;
5150 int n_channels = 0, tmp1, tmp2;
5151
5152 nla_for_each_nested(attr1, freqs, tmp1) {
5153 n_channels++;
5154 /*
5155 * Some hardware has a limited channel list for
5156 * scanning, and it is pretty much nonsensical
5157 * to scan for a channel twice, so disallow that
5158 * and don't require drivers to check that the
5159 * channel list they get isn't longer than what
5160 * they can scan, as long as they can scan all
5161 * the channels they registered at once.
5162 */
5163 nla_for_each_nested(attr2, freqs, tmp2)
5164 if (attr1 != attr2 &&
5165 nla_get_u32(attr1) == nla_get_u32(attr2))
5166 return 0;
5167 }
5168
5169 return n_channels;
5170}
5171
Johannes Berg2a519312009-02-10 21:25:55 +01005172static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
5173{
Johannes Berg4c476992010-10-04 21:36:35 +02005174 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfd014282012-06-18 19:17:03 +02005175 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2a519312009-02-10 21:25:55 +01005176 struct cfg80211_scan_request *request;
Johannes Berg2a519312009-02-10 21:25:55 +01005177 struct nlattr *attr;
5178 struct wiphy *wiphy;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005179 int err, tmp, n_ssids = 0, n_channels, i;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005180 size_t ie_len;
Johannes Berg2a519312009-02-10 21:25:55 +01005181
Johannes Bergf4a11bb2009-03-27 12:40:28 +01005182 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5183 return -EINVAL;
5184
Johannes Berg79c97e92009-07-07 03:56:12 +02005185 wiphy = &rdev->wiphy;
Johannes Berg2a519312009-02-10 21:25:55 +01005186
Johannes Berg4c476992010-10-04 21:36:35 +02005187 if (!rdev->ops->scan)
5188 return -EOPNOTSUPP;
Johannes Berg2a519312009-02-10 21:25:55 +01005189
Johannes Bergf9f47522013-03-19 15:04:07 +01005190 if (rdev->scan_req) {
5191 err = -EBUSY;
5192 goto unlock;
5193 }
Johannes Berg2a519312009-02-10 21:25:55 +01005194
5195 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005196 n_channels = validate_scan_freqs(
5197 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
Johannes Bergf9f47522013-03-19 15:04:07 +01005198 if (!n_channels) {
5199 err = -EINVAL;
5200 goto unlock;
5201 }
Johannes Berg2a519312009-02-10 21:25:55 +01005202 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005203 enum ieee80211_band band;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005204 n_channels = 0;
5205
Johannes Berg2a519312009-02-10 21:25:55 +01005206 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
5207 if (wiphy->bands[band])
5208 n_channels += wiphy->bands[band]->n_channels;
5209 }
5210
5211 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5212 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
5213 n_ssids++;
5214
Johannes Bergf9f47522013-03-19 15:04:07 +01005215 if (n_ssids > wiphy->max_scan_ssids) {
5216 err = -EINVAL;
5217 goto unlock;
5218 }
Johannes Berg2a519312009-02-10 21:25:55 +01005219
Jouni Malinen70692ad2009-02-16 19:39:13 +02005220 if (info->attrs[NL80211_ATTR_IE])
5221 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5222 else
5223 ie_len = 0;
5224
Johannes Bergf9f47522013-03-19 15:04:07 +01005225 if (ie_len > wiphy->max_scan_ie_len) {
5226 err = -EINVAL;
5227 goto unlock;
5228 }
Johannes Berg18a83652009-03-31 12:12:05 +02005229
Johannes Berg2a519312009-02-10 21:25:55 +01005230 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005231 + sizeof(*request->ssids) * n_ssids
5232 + sizeof(*request->channels) * n_channels
Jouni Malinen70692ad2009-02-16 19:39:13 +02005233 + ie_len, GFP_KERNEL);
Johannes Bergf9f47522013-03-19 15:04:07 +01005234 if (!request) {
5235 err = -ENOMEM;
5236 goto unlock;
5237 }
Johannes Berg2a519312009-02-10 21:25:55 +01005238
Johannes Berg2a519312009-02-10 21:25:55 +01005239 if (n_ssids)
Johannes Berg5ba63532009-08-07 17:54:07 +02005240 request->ssids = (void *)&request->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01005241 request->n_ssids = n_ssids;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005242 if (ie_len) {
5243 if (request->ssids)
5244 request->ie = (void *)(request->ssids + n_ssids);
5245 else
5246 request->ie = (void *)(request->channels + n_channels);
5247 }
Johannes Berg2a519312009-02-10 21:25:55 +01005248
Johannes Berg584991d2009-11-02 13:32:03 +01005249 i = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005250 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5251 /* user specified, bail out if channel not found */
Johannes Berg2a519312009-02-10 21:25:55 +01005252 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
Johannes Berg584991d2009-11-02 13:32:03 +01005253 struct ieee80211_channel *chan;
5254
5255 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5256
5257 if (!chan) {
Johannes Berg2a519312009-02-10 21:25:55 +01005258 err = -EINVAL;
5259 goto out_free;
5260 }
Johannes Berg584991d2009-11-02 13:32:03 +01005261
5262 /* ignore disabled channels */
5263 if (chan->flags & IEEE80211_CHAN_DISABLED)
5264 continue;
5265
5266 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005267 i++;
5268 }
5269 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005270 enum ieee80211_band band;
5271
Johannes Berg2a519312009-02-10 21:25:55 +01005272 /* all channels */
Johannes Berg2a519312009-02-10 21:25:55 +01005273 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5274 int j;
5275 if (!wiphy->bands[band])
5276 continue;
5277 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01005278 struct ieee80211_channel *chan;
5279
5280 chan = &wiphy->bands[band]->channels[j];
5281
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 }
5289 }
5290
Johannes Berg584991d2009-11-02 13:32:03 +01005291 if (!i) {
5292 err = -EINVAL;
5293 goto out_free;
5294 }
5295
5296 request->n_channels = i;
5297
Johannes Berg2a519312009-02-10 21:25:55 +01005298 i = 0;
5299 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5300 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005301 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Johannes Berg2a519312009-02-10 21:25:55 +01005302 err = -EINVAL;
5303 goto out_free;
5304 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005305 request->ssids[i].ssid_len = nla_len(attr);
Johannes Berg2a519312009-02-10 21:25:55 +01005306 memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
Johannes Berg2a519312009-02-10 21:25:55 +01005307 i++;
5308 }
5309 }
5310
Jouni Malinen70692ad2009-02-16 19:39:13 +02005311 if (info->attrs[NL80211_ATTR_IE]) {
5312 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Johannes Bergde95a542009-04-01 11:58:36 +02005313 memcpy((void *)request->ie,
5314 nla_data(info->attrs[NL80211_ATTR_IE]),
Jouni Malinen70692ad2009-02-16 19:39:13 +02005315 request->ie_len);
5316 }
5317
Johannes Berg34850ab2011-07-18 18:08:35 +02005318 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02005319 if (wiphy->bands[i])
5320 request->rates[i] =
5321 (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02005322
5323 if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) {
5324 nla_for_each_nested(attr,
5325 info->attrs[NL80211_ATTR_SCAN_SUPP_RATES],
5326 tmp) {
5327 enum ieee80211_band band = nla_type(attr);
5328
Dan Carpenter84404622011-07-29 11:52:18 +03005329 if (band < 0 || band >= IEEE80211_NUM_BANDS) {
Johannes Berg34850ab2011-07-18 18:08:35 +02005330 err = -EINVAL;
5331 goto out_free;
5332 }
5333 err = ieee80211_get_ratemask(wiphy->bands[band],
5334 nla_data(attr),
5335 nla_len(attr),
5336 &request->rates[band]);
5337 if (err)
5338 goto out_free;
5339 }
5340 }
5341
Sam Leffler46856bb2012-10-11 21:03:32 -07005342 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005343 request->flags = nla_get_u32(
5344 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Sam Leffler15d60302012-10-11 21:03:34 -07005345 if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5346 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
5347 ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
5348 !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005349 err = -EOPNOTSUPP;
5350 goto out_free;
5351 }
5352 }
Sam Lefflered4737712012-10-11 21:03:31 -07005353
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05305354 request->no_cck =
5355 nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
5356
Johannes Bergfd014282012-06-18 19:17:03 +02005357 request->wdev = wdev;
Johannes Berg79c97e92009-07-07 03:56:12 +02005358 request->wiphy = &rdev->wiphy;
Sam Leffler15d60302012-10-11 21:03:34 -07005359 request->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01005360
Johannes Berg79c97e92009-07-07 03:56:12 +02005361 rdev->scan_req = request;
Hila Gonene35e4d22012-06-27 17:19:42 +03005362 err = rdev_scan(rdev, request);
Johannes Berg2a519312009-02-10 21:25:55 +01005363
Johannes Berg463d0182009-07-14 00:33:35 +02005364 if (!err) {
Johannes Bergfd014282012-06-18 19:17:03 +02005365 nl80211_send_scan_start(rdev, wdev);
5366 if (wdev->netdev)
5367 dev_hold(wdev->netdev);
Johannes Berg4c476992010-10-04 21:36:35 +02005368 } else {
Johannes Berg2a519312009-02-10 21:25:55 +01005369 out_free:
Johannes Berg79c97e92009-07-07 03:56:12 +02005370 rdev->scan_req = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01005371 kfree(request);
5372 }
Johannes Berg3b858752009-03-12 09:55:09 +01005373
Johannes Bergf9f47522013-03-19 15:04:07 +01005374 unlock:
Johannes Berg2a519312009-02-10 21:25:55 +01005375 return err;
5376}
5377
Luciano Coelho807f8a82011-05-11 17:09:35 +03005378static int nl80211_start_sched_scan(struct sk_buff *skb,
5379 struct genl_info *info)
5380{
5381 struct cfg80211_sched_scan_request *request;
5382 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5383 struct net_device *dev = info->user_ptr[1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005384 struct nlattr *attr;
5385 struct wiphy *wiphy;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005386 int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005387 u32 interval;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005388 enum ieee80211_band band;
5389 size_t ie_len;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005390 struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005391
5392 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5393 !rdev->ops->sched_scan_start)
5394 return -EOPNOTSUPP;
5395
5396 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5397 return -EINVAL;
5398
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005399 if (!info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
5400 return -EINVAL;
5401
5402 interval = nla_get_u32(info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]);
5403 if (interval == 0)
5404 return -EINVAL;
5405
Luciano Coelho807f8a82011-05-11 17:09:35 +03005406 wiphy = &rdev->wiphy;
5407
5408 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5409 n_channels = validate_scan_freqs(
5410 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
5411 if (!n_channels)
5412 return -EINVAL;
5413 } else {
5414 n_channels = 0;
5415
5416 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
5417 if (wiphy->bands[band])
5418 n_channels += wiphy->bands[band]->n_channels;
5419 }
5420
5421 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5422 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5423 tmp)
5424 n_ssids++;
5425
Luciano Coelho93b6aa62011-07-13 14:57:28 +03005426 if (n_ssids > wiphy->max_sched_scan_ssids)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005427 return -EINVAL;
5428
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005429 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH])
5430 nla_for_each_nested(attr,
5431 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5432 tmp)
5433 n_match_sets++;
5434
5435 if (n_match_sets > wiphy->max_match_sets)
5436 return -EINVAL;
5437
Luciano Coelho807f8a82011-05-11 17:09:35 +03005438 if (info->attrs[NL80211_ATTR_IE])
5439 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5440 else
5441 ie_len = 0;
5442
Luciano Coelho5a865ba2011-07-13 14:57:29 +03005443 if (ie_len > wiphy->max_sched_scan_ie_len)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005444 return -EINVAL;
5445
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005446 if (rdev->sched_scan_req) {
5447 err = -EINPROGRESS;
5448 goto out;
5449 }
5450
Luciano Coelho807f8a82011-05-11 17:09:35 +03005451 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005452 + sizeof(*request->ssids) * n_ssids
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005453 + sizeof(*request->match_sets) * n_match_sets
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005454 + sizeof(*request->channels) * n_channels
Luciano Coelho807f8a82011-05-11 17:09:35 +03005455 + ie_len, GFP_KERNEL);
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005456 if (!request) {
5457 err = -ENOMEM;
5458 goto out;
5459 }
Luciano Coelho807f8a82011-05-11 17:09:35 +03005460
5461 if (n_ssids)
5462 request->ssids = (void *)&request->channels[n_channels];
5463 request->n_ssids = n_ssids;
5464 if (ie_len) {
5465 if (request->ssids)
5466 request->ie = (void *)(request->ssids + n_ssids);
5467 else
5468 request->ie = (void *)(request->channels + n_channels);
5469 }
5470
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005471 if (n_match_sets) {
5472 if (request->ie)
5473 request->match_sets = (void *)(request->ie + ie_len);
5474 else if (request->ssids)
5475 request->match_sets =
5476 (void *)(request->ssids + n_ssids);
5477 else
5478 request->match_sets =
5479 (void *)(request->channels + n_channels);
5480 }
5481 request->n_match_sets = n_match_sets;
5482
Luciano Coelho807f8a82011-05-11 17:09:35 +03005483 i = 0;
5484 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5485 /* user specified, bail out if channel not found */
5486 nla_for_each_nested(attr,
5487 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES],
5488 tmp) {
5489 struct ieee80211_channel *chan;
5490
5491 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5492
5493 if (!chan) {
5494 err = -EINVAL;
5495 goto out_free;
5496 }
5497
5498 /* ignore disabled channels */
5499 if (chan->flags & IEEE80211_CHAN_DISABLED)
5500 continue;
5501
5502 request->channels[i] = chan;
5503 i++;
5504 }
5505 } else {
5506 /* all channels */
5507 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5508 int j;
5509 if (!wiphy->bands[band])
5510 continue;
5511 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
5512 struct ieee80211_channel *chan;
5513
5514 chan = &wiphy->bands[band]->channels[j];
5515
5516 if (chan->flags & IEEE80211_CHAN_DISABLED)
5517 continue;
5518
5519 request->channels[i] = chan;
5520 i++;
5521 }
5522 }
5523 }
5524
5525 if (!i) {
5526 err = -EINVAL;
5527 goto out_free;
5528 }
5529
5530 request->n_channels = i;
5531
5532 i = 0;
5533 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5534 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5535 tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005536 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03005537 err = -EINVAL;
5538 goto out_free;
5539 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005540 request->ssids[i].ssid_len = nla_len(attr);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005541 memcpy(request->ssids[i].ssid, nla_data(attr),
5542 nla_len(attr));
Luciano Coelho807f8a82011-05-11 17:09:35 +03005543 i++;
5544 }
5545 }
5546
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005547 i = 0;
5548 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
5549 nla_for_each_nested(attr,
5550 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5551 tmp) {
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005552 struct nlattr *ssid, *rssi;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005553
5554 nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
5555 nla_data(attr), nla_len(attr),
5556 nl80211_match_policy);
Johannes Berg4a4ab0d2012-06-13 11:17:11 +02005557 ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005558 if (ssid) {
5559 if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) {
5560 err = -EINVAL;
5561 goto out_free;
5562 }
5563 memcpy(request->match_sets[i].ssid.ssid,
5564 nla_data(ssid), nla_len(ssid));
5565 request->match_sets[i].ssid.ssid_len =
5566 nla_len(ssid);
5567 }
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005568 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
5569 if (rssi)
5570 request->rssi_thold = nla_get_u32(rssi);
5571 else
5572 request->rssi_thold =
5573 NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005574 i++;
5575 }
5576 }
5577
Luciano Coelho807f8a82011-05-11 17:09:35 +03005578 if (info->attrs[NL80211_ATTR_IE]) {
5579 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5580 memcpy((void *)request->ie,
5581 nla_data(info->attrs[NL80211_ATTR_IE]),
5582 request->ie_len);
5583 }
5584
Sam Leffler46856bb2012-10-11 21:03:32 -07005585 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005586 request->flags = nla_get_u32(
5587 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Sam Leffler15d60302012-10-11 21:03:34 -07005588 if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5589 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
5590 ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
5591 !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005592 err = -EOPNOTSUPP;
5593 goto out_free;
5594 }
5595 }
Sam Lefflered4737712012-10-11 21:03:31 -07005596
Luciano Coelho807f8a82011-05-11 17:09:35 +03005597 request->dev = dev;
5598 request->wiphy = &rdev->wiphy;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005599 request->interval = interval;
Sam Leffler15d60302012-10-11 21:03:34 -07005600 request->scan_start = jiffies;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005601
Hila Gonene35e4d22012-06-27 17:19:42 +03005602 err = rdev_sched_scan_start(rdev, dev, request);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005603 if (!err) {
5604 rdev->sched_scan_req = request;
5605 nl80211_send_sched_scan(rdev, dev,
5606 NL80211_CMD_START_SCHED_SCAN);
5607 goto out;
5608 }
5609
5610out_free:
5611 kfree(request);
5612out:
5613 return err;
5614}
5615
5616static int nl80211_stop_sched_scan(struct sk_buff *skb,
5617 struct genl_info *info)
5618{
5619 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5620
5621 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5622 !rdev->ops->sched_scan_stop)
5623 return -EOPNOTSUPP;
5624
Johannes Berg5fe231e2013-05-08 21:45:15 +02005625 return __cfg80211_stop_sched_scan(rdev, false);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005626}
5627
Simon Wunderlich04f39042013-02-08 18:16:19 +01005628static int nl80211_start_radar_detection(struct sk_buff *skb,
5629 struct genl_info *info)
5630{
5631 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5632 struct net_device *dev = info->user_ptr[1];
5633 struct wireless_dev *wdev = dev->ieee80211_ptr;
5634 struct cfg80211_chan_def chandef;
5635 int err;
5636
5637 err = nl80211_parse_chandef(rdev, info, &chandef);
5638 if (err)
5639 return err;
5640
Simon Wunderlichff311bc2013-09-03 19:43:18 +02005641 if (netif_carrier_ok(dev))
5642 return -EBUSY;
5643
Simon Wunderlich04f39042013-02-08 18:16:19 +01005644 if (wdev->cac_started)
5645 return -EBUSY;
5646
5647 err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef);
5648 if (err < 0)
5649 return err;
5650
5651 if (err == 0)
5652 return -EINVAL;
5653
5654 if (chandef.chan->dfs_state != NL80211_DFS_USABLE)
5655 return -EINVAL;
5656
5657 if (!rdev->ops->start_radar_detection)
5658 return -EOPNOTSUPP;
5659
Simon Wunderlich04f39042013-02-08 18:16:19 +01005660 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5661 chandef.chan, CHAN_MODE_SHARED,
5662 BIT(chandef.width));
5663 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02005664 return err;
Simon Wunderlich04f39042013-02-08 18:16:19 +01005665
5666 err = rdev->ops->start_radar_detection(&rdev->wiphy, dev, &chandef);
5667 if (!err) {
5668 wdev->channel = chandef.chan;
5669 wdev->cac_started = true;
5670 wdev->cac_start_time = jiffies;
5671 }
Simon Wunderlich04f39042013-02-08 18:16:19 +01005672 return err;
5673}
5674
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005675static int nl80211_channel_switch(struct sk_buff *skb, struct genl_info *info)
5676{
5677 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5678 struct net_device *dev = info->user_ptr[1];
5679 struct wireless_dev *wdev = dev->ieee80211_ptr;
5680 struct cfg80211_csa_settings params;
5681 /* csa_attrs is defined static to avoid waste of stack size - this
5682 * function is called under RTNL lock, so this should not be a problem.
5683 */
5684 static struct nlattr *csa_attrs[NL80211_ATTR_MAX+1];
5685 u8 radar_detect_width = 0;
5686 int err;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005687 bool need_new_beacon = false;
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005688
5689 if (!rdev->ops->channel_switch ||
5690 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH))
5691 return -EOPNOTSUPP;
5692
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005693 switch (dev->ieee80211_ptr->iftype) {
5694 case NL80211_IFTYPE_AP:
5695 case NL80211_IFTYPE_P2P_GO:
5696 need_new_beacon = true;
5697
5698 /* useless if AP is not running */
5699 if (!wdev->beacon_interval)
5700 return -EINVAL;
5701 break;
5702 case NL80211_IFTYPE_ADHOC:
5703 break;
5704 default:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005705 return -EOPNOTSUPP;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005706 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005707
5708 memset(&params, 0, sizeof(params));
5709
5710 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
5711 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
5712 return -EINVAL;
5713
5714 /* only important for AP, IBSS and mesh create IEs internally */
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005715 if (need_new_beacon &&
5716 (!info->attrs[NL80211_ATTR_CSA_IES] ||
5717 !info->attrs[NL80211_ATTR_CSA_C_OFF_BEACON]))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005718 return -EINVAL;
5719
5720 params.count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5721
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005722 if (!need_new_beacon)
5723 goto skip_beacons;
5724
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005725 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5726 if (err)
5727 return err;
5728
5729 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5730 info->attrs[NL80211_ATTR_CSA_IES],
5731 nl80211_policy);
5732 if (err)
5733 return err;
5734
5735 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5736 if (err)
5737 return err;
5738
5739 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5740 return -EINVAL;
5741
5742 params.counter_offset_beacon =
5743 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5744 if (params.counter_offset_beacon >= params.beacon_csa.tail_len)
5745 return -EINVAL;
5746
5747 /* sanity check - counters should be the same */
5748 if (params.beacon_csa.tail[params.counter_offset_beacon] !=
5749 params.count)
5750 return -EINVAL;
5751
5752 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
5753 params.counter_offset_presp =
5754 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
5755 if (params.counter_offset_presp >=
5756 params.beacon_csa.probe_resp_len)
5757 return -EINVAL;
5758
5759 if (params.beacon_csa.probe_resp[params.counter_offset_presp] !=
5760 params.count)
5761 return -EINVAL;
5762 }
5763
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005764skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005765 err = nl80211_parse_chandef(rdev, info, &params.chandef);
5766 if (err)
5767 return err;
5768
5769 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
5770 return -EINVAL;
5771
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005772 if (dev->ieee80211_ptr->iftype == NL80211_IFTYPE_AP ||
Simon Wunderlich5336fa82013-10-07 18:41:05 +02005773 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_P2P_GO ||
5774 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_ADHOC) {
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005775 err = cfg80211_chandef_dfs_required(wdev->wiphy,
5776 &params.chandef);
5777 if (err < 0) {
5778 return err;
5779 } else if (err) {
5780 radar_detect_width = BIT(params.chandef.width);
5781 params.radar_required = true;
5782 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005783 }
5784
5785 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5786 params.chandef.chan,
5787 CHAN_MODE_SHARED,
5788 radar_detect_width);
5789 if (err)
5790 return err;
5791
5792 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
5793 params.block_tx = true;
5794
5795 return rdev_channel_switch(rdev, dev, &params);
5796}
5797
Johannes Berg9720bb32011-06-21 09:45:33 +02005798static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
5799 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005800 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02005801 struct wireless_dev *wdev,
5802 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01005803{
Johannes Berg48ab9052009-07-10 18:42:31 +02005804 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01005805 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01005806 void *hdr;
5807 struct nlattr *bss;
Johannes Berg8cef2c92013-02-05 16:54:31 +01005808 bool tsf = false;
Johannes Berg48ab9052009-07-10 18:42:31 +02005809
5810 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005811
Eric W. Biederman15e47302012-09-07 20:12:54 +00005812 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005813 NL80211_CMD_NEW_SCAN_RESULTS);
5814 if (!hdr)
5815 return -1;
5816
Johannes Berg9720bb32011-06-21 09:45:33 +02005817 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
5818
Johannes Berg97990a02013-04-19 01:02:55 +02005819 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
5820 goto nla_put_failure;
5821 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04005822 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
5823 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02005824 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
5825 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005826
5827 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
5828 if (!bss)
5829 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04005830 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01005831 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04005832 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01005833
5834 rcu_read_lock();
5835 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005836 if (ies) {
5837 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5838 goto fail_unlock_rcu;
5839 tsf = true;
5840 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
5841 ies->len, ies->data))
5842 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005843 }
5844 ies = rcu_dereference(res->beacon_ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005845 if (ies) {
5846 if (!tsf && nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5847 goto fail_unlock_rcu;
5848 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
5849 ies->len, ies->data))
5850 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005851 }
5852 rcu_read_unlock();
5853
David S. Miller9360ffd2012-03-29 04:41:26 -04005854 if (res->beacon_interval &&
5855 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
5856 goto nla_put_failure;
5857 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
5858 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02005859 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005860 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
5861 jiffies_to_msecs(jiffies - intbss->ts)))
5862 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005863
Johannes Berg77965c92009-02-18 18:45:06 +01005864 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01005865 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04005866 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
5867 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005868 break;
5869 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005870 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
5871 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005872 break;
5873 default:
5874 break;
5875 }
5876
Johannes Berg48ab9052009-07-10 18:42:31 +02005877 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02005878 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02005879 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04005880 if (intbss == wdev->current_bss &&
5881 nla_put_u32(msg, NL80211_BSS_STATUS,
5882 NL80211_BSS_STATUS_ASSOCIATED))
5883 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005884 break;
5885 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005886 if (intbss == wdev->current_bss &&
5887 nla_put_u32(msg, NL80211_BSS_STATUS,
5888 NL80211_BSS_STATUS_IBSS_JOINED))
5889 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005890 break;
5891 default:
5892 break;
5893 }
5894
Johannes Berg2a519312009-02-10 21:25:55 +01005895 nla_nest_end(msg, bss);
5896
5897 return genlmsg_end(msg, hdr);
5898
Johannes Berg8cef2c92013-02-05 16:54:31 +01005899 fail_unlock_rcu:
5900 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01005901 nla_put_failure:
5902 genlmsg_cancel(msg, hdr);
5903 return -EMSGSIZE;
5904}
5905
Johannes Berg97990a02013-04-19 01:02:55 +02005906static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01005907{
Johannes Berg48ab9052009-07-10 18:42:31 +02005908 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01005909 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02005910 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02005911 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005912 int err;
5913
Johannes Berg97990a02013-04-19 01:02:55 +02005914 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02005915 if (err)
5916 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01005917
Johannes Berg48ab9052009-07-10 18:42:31 +02005918 wdev_lock(wdev);
5919 spin_lock_bh(&rdev->bss_lock);
5920 cfg80211_bss_expire(rdev);
5921
Johannes Berg9720bb32011-06-21 09:45:33 +02005922 cb->seq = rdev->bss_generation;
5923
Johannes Berg48ab9052009-07-10 18:42:31 +02005924 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01005925 if (++idx <= start)
5926 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02005927 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01005928 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02005929 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01005930 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02005931 break;
Johannes Berg2a519312009-02-10 21:25:55 +01005932 }
5933 }
5934
Johannes Berg48ab9052009-07-10 18:42:31 +02005935 spin_unlock_bh(&rdev->bss_lock);
5936 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005937
Johannes Berg97990a02013-04-19 01:02:55 +02005938 cb->args[2] = idx;
5939 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005940
Johannes Berg67748892010-10-04 21:14:06 +02005941 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01005942}
5943
Eric W. Biederman15e47302012-09-07 20:12:54 +00005944static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01005945 int flags, struct net_device *dev,
5946 struct survey_info *survey)
5947{
5948 void *hdr;
5949 struct nlattr *infoattr;
5950
Eric W. Biederman15e47302012-09-07 20:12:54 +00005951 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01005952 NL80211_CMD_NEW_SURVEY_RESULTS);
5953 if (!hdr)
5954 return -ENOMEM;
5955
David S. Miller9360ffd2012-03-29 04:41:26 -04005956 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
5957 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005958
5959 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
5960 if (!infoattr)
5961 goto nla_put_failure;
5962
David S. Miller9360ffd2012-03-29 04:41:26 -04005963 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
5964 survey->channel->center_freq))
5965 goto nla_put_failure;
5966
5967 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
5968 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
5969 goto nla_put_failure;
5970 if ((survey->filled & SURVEY_INFO_IN_USE) &&
5971 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
5972 goto nla_put_failure;
5973 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
5974 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
5975 survey->channel_time))
5976 goto nla_put_failure;
5977 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
5978 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
5979 survey->channel_time_busy))
5980 goto nla_put_failure;
5981 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
5982 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
5983 survey->channel_time_ext_busy))
5984 goto nla_put_failure;
5985 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
5986 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
5987 survey->channel_time_rx))
5988 goto nla_put_failure;
5989 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
5990 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
5991 survey->channel_time_tx))
5992 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005993
5994 nla_nest_end(msg, infoattr);
5995
5996 return genlmsg_end(msg, hdr);
5997
5998 nla_put_failure:
5999 genlmsg_cancel(msg, hdr);
6000 return -EMSGSIZE;
6001}
6002
6003static int nl80211_dump_survey(struct sk_buff *skb,
6004 struct netlink_callback *cb)
6005{
6006 struct survey_info survey;
6007 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02006008 struct wireless_dev *wdev;
6009 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01006010 int res;
6011
Johannes Berg97990a02013-04-19 01:02:55 +02006012 res = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006013 if (res)
6014 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01006015
Johannes Berg97990a02013-04-19 01:02:55 +02006016 if (!wdev->netdev) {
6017 res = -EINVAL;
6018 goto out_err;
6019 }
6020
Holger Schurig61fa7132009-11-11 12:25:40 +01006021 if (!dev->ops->dump_survey) {
6022 res = -EOPNOTSUPP;
6023 goto out_err;
6024 }
6025
6026 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006027 struct ieee80211_channel *chan;
6028
Johannes Berg97990a02013-04-19 01:02:55 +02006029 res = rdev_dump_survey(dev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01006030 if (res == -ENOENT)
6031 break;
6032 if (res)
6033 goto out_err;
6034
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006035 /* Survey without a channel doesn't make sense */
6036 if (!survey.channel) {
6037 res = -EINVAL;
6038 goto out;
6039 }
6040
6041 chan = ieee80211_get_channel(&dev->wiphy,
6042 survey.channel->center_freq);
6043 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
6044 survey_idx++;
6045 continue;
6046 }
6047
Holger Schurig61fa7132009-11-11 12:25:40 +01006048 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006049 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01006050 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02006051 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01006052 goto out;
6053 survey_idx++;
6054 }
6055
6056 out:
Johannes Berg97990a02013-04-19 01:02:55 +02006057 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01006058 res = skb->len;
6059 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02006060 nl80211_finish_wdev_dump(dev);
Holger Schurig61fa7132009-11-11 12:25:40 +01006061 return res;
6062}
6063
Samuel Ortizb23aa672009-07-01 21:26:54 +02006064static bool nl80211_valid_wpa_versions(u32 wpa_versions)
6065{
6066 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
6067 NL80211_WPA_VERSION_2));
6068}
6069
Jouni Malinen636a5d32009-03-19 13:39:22 +02006070static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6071{
Johannes Berg4c476992010-10-04 21:36:35 +02006072 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6073 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006074 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006075 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6076 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006077 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006078 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006079 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006080
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006081 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6082 return -EINVAL;
6083
6084 if (!info->attrs[NL80211_ATTR_MAC])
6085 return -EINVAL;
6086
Jouni Malinen17780922009-03-27 20:52:47 +02006087 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6088 return -EINVAL;
6089
Johannes Berg19957bb2009-07-02 17:20:43 +02006090 if (!info->attrs[NL80211_ATTR_SSID])
6091 return -EINVAL;
6092
6093 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6094 return -EINVAL;
6095
Johannes Bergfffd0932009-07-08 14:22:54 +02006096 err = nl80211_parse_key(info, &key);
6097 if (err)
6098 return err;
6099
6100 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006101 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6102 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006103 if (!key.p.key || !key.p.key_len)
6104 return -EINVAL;
6105 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6106 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6107 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6108 key.p.key_len != WLAN_KEY_LEN_WEP104))
6109 return -EINVAL;
6110 if (key.idx > 4)
6111 return -EINVAL;
6112 } else {
6113 key.p.key_len = 0;
6114 key.p.key = NULL;
6115 }
6116
Johannes Bergafea0b72010-08-10 09:46:42 +02006117 if (key.idx >= 0) {
6118 int i;
6119 bool ok = false;
6120 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6121 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6122 ok = true;
6123 break;
6124 }
6125 }
Johannes Berg4c476992010-10-04 21:36:35 +02006126 if (!ok)
6127 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006128 }
6129
Johannes Berg4c476992010-10-04 21:36:35 +02006130 if (!rdev->ops->auth)
6131 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006132
Johannes Berg074ac8d2010-09-16 14:58:22 +02006133 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006134 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6135 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006136
Johannes Berg19957bb2009-07-02 17:20:43 +02006137 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg79c97e92009-07-07 03:56:12 +02006138 chan = ieee80211_get_channel(&rdev->wiphy,
Johannes Berg19957bb2009-07-02 17:20:43 +02006139 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006140 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6141 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006142
Johannes Berg19957bb2009-07-02 17:20:43 +02006143 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6144 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6145
6146 if (info->attrs[NL80211_ATTR_IE]) {
6147 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6148 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6149 }
6150
6151 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006152 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006153 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006154
Jouni Malinene39e5b52012-09-30 19:29:39 +03006155 if (auth_type == NL80211_AUTHTYPE_SAE &&
6156 !info->attrs[NL80211_ATTR_SAE_DATA])
6157 return -EINVAL;
6158
6159 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6160 if (auth_type != NL80211_AUTHTYPE_SAE)
6161 return -EINVAL;
6162 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6163 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6164 /* need to include at least Auth Transaction and Status Code */
6165 if (sae_data_len < 4)
6166 return -EINVAL;
6167 }
6168
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006169 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6170
Johannes Berg95de8172012-01-20 13:55:25 +01006171 /*
6172 * Since we no longer track auth state, ignore
6173 * requests to only change local state.
6174 */
6175 if (local_state_change)
6176 return 0;
6177
Johannes Berg91bf9b22013-05-15 17:44:01 +02006178 wdev_lock(dev->ieee80211_ptr);
6179 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6180 ssid, ssid_len, ie, ie_len,
6181 key.p.key, key.p.key_len, key.idx,
6182 sae_data, sae_data_len);
6183 wdev_unlock(dev->ieee80211_ptr);
6184 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006185}
6186
Johannes Bergc0692b82010-08-27 14:26:53 +03006187static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6188 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006189 struct cfg80211_crypto_settings *settings,
6190 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006191{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006192 memset(settings, 0, sizeof(*settings));
6193
Samuel Ortizb23aa672009-07-01 21:26:54 +02006194 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6195
Johannes Bergc0692b82010-08-27 14:26:53 +03006196 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6197 u16 proto;
6198 proto = nla_get_u16(
6199 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6200 settings->control_port_ethertype = cpu_to_be16(proto);
6201 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6202 proto != ETH_P_PAE)
6203 return -EINVAL;
6204 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6205 settings->control_port_no_encrypt = true;
6206 } else
6207 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6208
Samuel Ortizb23aa672009-07-01 21:26:54 +02006209 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6210 void *data;
6211 int len, i;
6212
6213 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6214 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6215 settings->n_ciphers_pairwise = len / sizeof(u32);
6216
6217 if (len % sizeof(u32))
6218 return -EINVAL;
6219
Johannes Berg3dc27d22009-07-02 21:36:37 +02006220 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006221 return -EINVAL;
6222
6223 memcpy(settings->ciphers_pairwise, data, len);
6224
6225 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006226 if (!cfg80211_supported_cipher_suite(
6227 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006228 settings->ciphers_pairwise[i]))
6229 return -EINVAL;
6230 }
6231
6232 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6233 settings->cipher_group =
6234 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006235 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6236 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006237 return -EINVAL;
6238 }
6239
6240 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6241 settings->wpa_versions =
6242 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6243 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6244 return -EINVAL;
6245 }
6246
6247 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6248 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006249 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006250
6251 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6252 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6253 settings->n_akm_suites = len / sizeof(u32);
6254
6255 if (len % sizeof(u32))
6256 return -EINVAL;
6257
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006258 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6259 return -EINVAL;
6260
Samuel Ortizb23aa672009-07-01 21:26:54 +02006261 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006262 }
6263
6264 return 0;
6265}
6266
Jouni Malinen636a5d32009-03-19 13:39:22 +02006267static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6268{
Johannes Berg4c476992010-10-04 21:36:35 +02006269 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6270 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006271 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006272 struct cfg80211_assoc_request req = {};
6273 const u8 *bssid, *ssid;
6274 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006275
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006276 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6277 return -EINVAL;
6278
6279 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006280 !info->attrs[NL80211_ATTR_SSID] ||
6281 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006282 return -EINVAL;
6283
Johannes Berg4c476992010-10-04 21:36:35 +02006284 if (!rdev->ops->assoc)
6285 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006286
Johannes Berg074ac8d2010-09-16 14:58:22 +02006287 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006288 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6289 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006290
Johannes Berg19957bb2009-07-02 17:20:43 +02006291 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006292
Johannes Berg19957bb2009-07-02 17:20:43 +02006293 chan = ieee80211_get_channel(&rdev->wiphy,
6294 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006295 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6296 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006297
Johannes Berg19957bb2009-07-02 17:20:43 +02006298 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6299 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006300
6301 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006302 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6303 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006304 }
6305
Jouni Malinendc6382c2009-05-06 22:09:37 +03006306 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006307 enum nl80211_mfp mfp =
Jouni Malinendc6382c2009-05-06 22:09:37 +03006308 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006309 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006310 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006311 else if (mfp != NL80211_MFP_NO)
6312 return -EINVAL;
Jouni Malinendc6382c2009-05-06 22:09:37 +03006313 }
6314
Johannes Berg3e5d7642009-07-07 14:37:26 +02006315 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006316 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006317
Ben Greear7e7c8922011-11-18 11:31:59 -08006318 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006319 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006320
6321 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006322 memcpy(&req.ht_capa_mask,
6323 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6324 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006325
6326 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006327 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006328 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006329 memcpy(&req.ht_capa,
6330 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6331 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006332 }
6333
Johannes Bergee2aca32013-02-21 17:36:01 +01006334 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006335 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006336
6337 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006338 memcpy(&req.vht_capa_mask,
6339 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6340 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006341
6342 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006343 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006344 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006345 memcpy(&req.vht_capa,
6346 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6347 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006348 }
6349
Johannes Bergf62fab72013-02-21 20:09:09 +01006350 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006351 if (!err) {
6352 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006353 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6354 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006355 wdev_unlock(dev->ieee80211_ptr);
6356 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006357
Jouni Malinen636a5d32009-03-19 13:39:22 +02006358 return err;
6359}
6360
6361static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6362{
Johannes Berg4c476992010-10-04 21:36:35 +02006363 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6364 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006365 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006366 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006367 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006368 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006369
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006370 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6371 return -EINVAL;
6372
6373 if (!info->attrs[NL80211_ATTR_MAC])
6374 return -EINVAL;
6375
6376 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6377 return -EINVAL;
6378
Johannes Berg4c476992010-10-04 21:36:35 +02006379 if (!rdev->ops->deauth)
6380 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006381
Johannes Berg074ac8d2010-09-16 14:58:22 +02006382 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006383 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6384 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006385
Johannes Berg19957bb2009-07-02 17:20:43 +02006386 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006387
Johannes Berg19957bb2009-07-02 17:20:43 +02006388 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6389 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006390 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006391 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006392 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006393
6394 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006395 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6396 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006397 }
6398
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006399 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6400
Johannes Berg91bf9b22013-05-15 17:44:01 +02006401 wdev_lock(dev->ieee80211_ptr);
6402 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6403 local_state_change);
6404 wdev_unlock(dev->ieee80211_ptr);
6405 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006406}
6407
6408static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6409{
Johannes Berg4c476992010-10-04 21:36:35 +02006410 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6411 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006412 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006413 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006414 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006415 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006416
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006417 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6418 return -EINVAL;
6419
6420 if (!info->attrs[NL80211_ATTR_MAC])
6421 return -EINVAL;
6422
6423 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6424 return -EINVAL;
6425
Johannes Berg4c476992010-10-04 21:36:35 +02006426 if (!rdev->ops->disassoc)
6427 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006428
Johannes Berg074ac8d2010-09-16 14:58:22 +02006429 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006430 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6431 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006432
Johannes Berg19957bb2009-07-02 17:20:43 +02006433 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006434
Johannes Berg19957bb2009-07-02 17:20:43 +02006435 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6436 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006437 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006438 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006439 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006440
6441 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006442 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6443 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006444 }
6445
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006446 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6447
Johannes Berg91bf9b22013-05-15 17:44:01 +02006448 wdev_lock(dev->ieee80211_ptr);
6449 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6450 local_state_change);
6451 wdev_unlock(dev->ieee80211_ptr);
6452 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006453}
6454
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006455static bool
6456nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6457 int mcast_rate[IEEE80211_NUM_BANDS],
6458 int rateval)
6459{
6460 struct wiphy *wiphy = &rdev->wiphy;
6461 bool found = false;
6462 int band, i;
6463
6464 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6465 struct ieee80211_supported_band *sband;
6466
6467 sband = wiphy->bands[band];
6468 if (!sband)
6469 continue;
6470
6471 for (i = 0; i < sband->n_bitrates; i++) {
6472 if (sband->bitrates[i].bitrate == rateval) {
6473 mcast_rate[band] = i + 1;
6474 found = true;
6475 break;
6476 }
6477 }
6478 }
6479
6480 return found;
6481}
6482
Johannes Berg04a773a2009-04-19 21:24:32 +02006483static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6484{
Johannes Berg4c476992010-10-04 21:36:35 +02006485 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6486 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006487 struct cfg80211_ibss_params ibss;
6488 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006489 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006490 int err;
6491
Johannes Berg8e30bc52009-04-22 17:45:38 +02006492 memset(&ibss, 0, sizeof(ibss));
6493
Johannes Berg04a773a2009-04-19 21:24:32 +02006494 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6495 return -EINVAL;
6496
Johannes Berg683b6d32012-11-08 21:25:48 +01006497 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006498 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6499 return -EINVAL;
6500
Johannes Berg8e30bc52009-04-22 17:45:38 +02006501 ibss.beacon_interval = 100;
6502
6503 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6504 ibss.beacon_interval =
6505 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6506 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6507 return -EINVAL;
6508 }
6509
Johannes Berg4c476992010-10-04 21:36:35 +02006510 if (!rdev->ops->join_ibss)
6511 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006512
Johannes Berg4c476992010-10-04 21:36:35 +02006513 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6514 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006515
Johannes Berg79c97e92009-07-07 03:56:12 +02006516 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006517
Johannes Berg39193492011-09-16 13:45:25 +02006518 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006519 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006520
6521 if (!is_valid_ether_addr(ibss.bssid))
6522 return -EINVAL;
6523 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006524 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6525 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6526
6527 if (info->attrs[NL80211_ATTR_IE]) {
6528 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6529 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6530 }
6531
Johannes Berg683b6d32012-11-08 21:25:48 +01006532 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6533 if (err)
6534 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006535
Johannes Berg683b6d32012-11-08 21:25:48 +01006536 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006537 return -EINVAL;
6538
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006539 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006540 case NL80211_CHAN_WIDTH_5:
6541 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006542 case NL80211_CHAN_WIDTH_20_NOHT:
6543 break;
6544 case NL80211_CHAN_WIDTH_20:
6545 case NL80211_CHAN_WIDTH_40:
6546 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6547 break;
6548 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006549 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006550 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006551
Johannes Berg04a773a2009-04-19 21:24:32 +02006552 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006553 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006554
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006555 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6556 u8 *rates =
6557 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6558 int n_rates =
6559 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6560 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006561 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006562
Johannes Berg34850ab2011-07-18 18:08:35 +02006563 err = ieee80211_get_ratemask(sband, rates, n_rates,
6564 &ibss.basic_rates);
6565 if (err)
6566 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006567 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006568
Simon Wunderlich803768f2013-06-28 10:39:58 +02006569 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6570 memcpy(&ibss.ht_capa_mask,
6571 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6572 sizeof(ibss.ht_capa_mask));
6573
6574 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6575 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6576 return -EINVAL;
6577 memcpy(&ibss.ht_capa,
6578 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6579 sizeof(ibss.ht_capa));
6580 }
6581
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006582 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6583 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6584 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6585 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006586
Johannes Berg4c476992010-10-04 21:36:35 +02006587 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306588 bool no_ht = false;
6589
Johannes Berg4c476992010-10-04 21:36:35 +02006590 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306591 info->attrs[NL80211_ATTR_KEYS],
6592 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006593 if (IS_ERR(connkeys))
6594 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306595
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006596 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6597 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306598 kfree(connkeys);
6599 return -EINVAL;
6600 }
Johannes Berg4c476992010-10-04 21:36:35 +02006601 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006602
Antonio Quartulli267335d2012-01-31 20:25:47 +01006603 ibss.control_port =
6604 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6605
Simon Wunderlich5336fa82013-10-07 18:41:05 +02006606 ibss.userspace_handles_dfs =
6607 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
6608
Johannes Berg4c476992010-10-04 21:36:35 +02006609 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006610 if (err)
6611 kfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006612 return err;
6613}
6614
6615static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6616{
Johannes Berg4c476992010-10-04 21:36:35 +02006617 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6618 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006619
Johannes Berg4c476992010-10-04 21:36:35 +02006620 if (!rdev->ops->leave_ibss)
6621 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006622
Johannes Berg4c476992010-10-04 21:36:35 +02006623 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6624 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006625
Johannes Berg4c476992010-10-04 21:36:35 +02006626 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006627}
6628
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006629static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6630{
6631 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6632 struct net_device *dev = info->user_ptr[1];
6633 int mcast_rate[IEEE80211_NUM_BANDS];
6634 u32 nla_rate;
6635 int err;
6636
6637 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6638 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6639 return -EOPNOTSUPP;
6640
6641 if (!rdev->ops->set_mcast_rate)
6642 return -EOPNOTSUPP;
6643
6644 memset(mcast_rate, 0, sizeof(mcast_rate));
6645
6646 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6647 return -EINVAL;
6648
6649 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6650 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6651 return -EINVAL;
6652
6653 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6654
6655 return err;
6656}
6657
6658
Johannes Bergaff89a92009-07-01 21:26:51 +02006659#ifdef CONFIG_NL80211_TESTMODE
6660static struct genl_multicast_group nl80211_testmode_mcgrp = {
6661 .name = "testmode",
6662};
6663
6664static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
6665{
Johannes Berg4c476992010-10-04 21:36:35 +02006666 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03006667 struct wireless_dev *wdev =
6668 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02006669 int err;
6670
David Spinadelfc73f112013-07-31 18:04:15 +03006671 if (!rdev->ops->testmode_cmd)
6672 return -EOPNOTSUPP;
6673
6674 if (IS_ERR(wdev)) {
6675 err = PTR_ERR(wdev);
6676 if (err != -EINVAL)
6677 return err;
6678 wdev = NULL;
6679 } else if (wdev->wiphy != &rdev->wiphy) {
6680 return -EINVAL;
6681 }
6682
Johannes Bergaff89a92009-07-01 21:26:51 +02006683 if (!info->attrs[NL80211_ATTR_TESTDATA])
6684 return -EINVAL;
6685
David Spinadelfc73f112013-07-31 18:04:15 +03006686 rdev->testmode_info = info;
6687 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02006688 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
6689 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
David Spinadelfc73f112013-07-31 18:04:15 +03006690 rdev->testmode_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02006691
Johannes Bergaff89a92009-07-01 21:26:51 +02006692 return err;
6693}
6694
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006695static int nl80211_testmode_dump(struct sk_buff *skb,
6696 struct netlink_callback *cb)
6697{
Johannes Berg00918d32011-12-13 17:22:05 +01006698 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006699 int err;
6700 long phy_idx;
6701 void *data = NULL;
6702 int data_len = 0;
6703
Johannes Berg5fe231e2013-05-08 21:45:15 +02006704 rtnl_lock();
6705
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006706 if (cb->args[0]) {
6707 /*
6708 * 0 is a valid index, but not valid for args[0],
6709 * so we need to offset by 1.
6710 */
6711 phy_idx = cb->args[0] - 1;
6712 } else {
6713 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
6714 nl80211_fam.attrbuf, nl80211_fam.maxattr,
6715 nl80211_policy);
6716 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02006717 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006718
Johannes Berg2bd7e352012-06-15 14:23:16 +02006719 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
6720 nl80211_fam.attrbuf);
6721 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006722 err = PTR_ERR(rdev);
6723 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006724 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02006725 phy_idx = rdev->wiphy_idx;
6726 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02006727
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006728 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
6729 cb->args[1] =
6730 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
6731 }
6732
6733 if (cb->args[1]) {
6734 data = nla_data((void *)cb->args[1]);
6735 data_len = nla_len((void *)cb->args[1]);
6736 }
6737
Johannes Berg00918d32011-12-13 17:22:05 +01006738 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
6739 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006740 err = -ENOENT;
6741 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006742 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006743
Johannes Berg00918d32011-12-13 17:22:05 +01006744 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006745 err = -EOPNOTSUPP;
6746 goto out_err;
6747 }
6748
6749 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00006750 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006751 cb->nlh->nlmsg_seq, NLM_F_MULTI,
6752 NL80211_CMD_TESTMODE);
6753 struct nlattr *tmdata;
6754
Dan Carpentercb35fba2013-08-14 14:50:01 +03006755 if (!hdr)
6756 break;
6757
David S. Miller9360ffd2012-03-29 04:41:26 -04006758 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006759 genlmsg_cancel(skb, hdr);
6760 break;
6761 }
6762
6763 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6764 if (!tmdata) {
6765 genlmsg_cancel(skb, hdr);
6766 break;
6767 }
Hila Gonene35e4d22012-06-27 17:19:42 +03006768 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006769 nla_nest_end(skb, tmdata);
6770
6771 if (err == -ENOBUFS || err == -ENOENT) {
6772 genlmsg_cancel(skb, hdr);
6773 break;
6774 } else if (err) {
6775 genlmsg_cancel(skb, hdr);
6776 goto out_err;
6777 }
6778
6779 genlmsg_end(skb, hdr);
6780 }
6781
6782 err = skb->len;
6783 /* see above */
6784 cb->args[0] = phy_idx + 1;
6785 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02006786 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006787 return err;
6788}
6789
Johannes Bergaff89a92009-07-01 21:26:51 +02006790static struct sk_buff *
6791__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006792 int approxlen, u32 portid, u32 seq, gfp_t gfp)
Johannes Bergaff89a92009-07-01 21:26:51 +02006793{
6794 struct sk_buff *skb;
6795 void *hdr;
6796 struct nlattr *data;
6797
6798 skb = nlmsg_new(approxlen + 100, gfp);
6799 if (!skb)
6800 return NULL;
6801
Eric W. Biederman15e47302012-09-07 20:12:54 +00006802 hdr = nl80211hdr_put(skb, portid, seq, 0, NL80211_CMD_TESTMODE);
Johannes Bergaff89a92009-07-01 21:26:51 +02006803 if (!hdr) {
6804 kfree_skb(skb);
6805 return NULL;
6806 }
6807
David S. Miller9360ffd2012-03-29 04:41:26 -04006808 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6809 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02006810 data = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6811
6812 ((void **)skb->cb)[0] = rdev;
6813 ((void **)skb->cb)[1] = hdr;
6814 ((void **)skb->cb)[2] = data;
6815
6816 return skb;
6817
6818 nla_put_failure:
6819 kfree_skb(skb);
6820 return NULL;
6821}
6822
6823struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
6824 int approxlen)
6825{
6826 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6827
6828 if (WARN_ON(!rdev->testmode_info))
6829 return NULL;
6830
6831 return __cfg80211_testmode_alloc_skb(rdev, approxlen,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006832 rdev->testmode_info->snd_portid,
Johannes Bergaff89a92009-07-01 21:26:51 +02006833 rdev->testmode_info->snd_seq,
6834 GFP_KERNEL);
6835}
6836EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb);
6837
6838int cfg80211_testmode_reply(struct sk_buff *skb)
6839{
6840 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
6841 void *hdr = ((void **)skb->cb)[1];
6842 struct nlattr *data = ((void **)skb->cb)[2];
6843
6844 if (WARN_ON(!rdev->testmode_info)) {
6845 kfree_skb(skb);
6846 return -EINVAL;
6847 }
6848
6849 nla_nest_end(skb, data);
6850 genlmsg_end(skb, hdr);
6851 return genlmsg_reply(skb, rdev->testmode_info);
6852}
6853EXPORT_SYMBOL(cfg80211_testmode_reply);
6854
6855struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
6856 int approxlen, gfp_t gfp)
6857{
6858 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6859
6860 return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp);
6861}
6862EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb);
6863
6864void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
6865{
Michal Kaziora0ec5702013-06-25 09:17:17 +02006866 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
Johannes Bergaff89a92009-07-01 21:26:51 +02006867 void *hdr = ((void **)skb->cb)[1];
6868 struct nlattr *data = ((void **)skb->cb)[2];
6869
6870 nla_nest_end(skb, data);
6871 genlmsg_end(skb, hdr);
Michal Kaziora0ec5702013-06-25 09:17:17 +02006872 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), skb, 0,
6873 nl80211_testmode_mcgrp.id, gfp);
Johannes Bergaff89a92009-07-01 21:26:51 +02006874}
6875EXPORT_SYMBOL(cfg80211_testmode_event);
6876#endif
6877
Samuel Ortizb23aa672009-07-01 21:26:54 +02006878static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
6879{
Johannes Berg4c476992010-10-04 21:36:35 +02006880 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6881 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02006882 struct cfg80211_connect_params connect;
6883 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006884 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006885 int err;
6886
6887 memset(&connect, 0, sizeof(connect));
6888
6889 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6890 return -EINVAL;
6891
6892 if (!info->attrs[NL80211_ATTR_SSID] ||
6893 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6894 return -EINVAL;
6895
6896 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
6897 connect.auth_type =
6898 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006899 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
6900 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006901 return -EINVAL;
6902 } else
6903 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
6904
6905 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
6906
Johannes Bergc0692b82010-08-27 14:26:53 +03006907 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006908 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006909 if (err)
6910 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006911
Johannes Berg074ac8d2010-09-16 14:58:22 +02006912 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006913 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6914 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006915
Johannes Berg79c97e92009-07-07 03:56:12 +02006916 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006917
Bala Shanmugam4486ea92012-03-07 17:27:12 +05306918 connect.bg_scan_period = -1;
6919 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
6920 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
6921 connect.bg_scan_period =
6922 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
6923 }
6924
Samuel Ortizb23aa672009-07-01 21:26:54 +02006925 if (info->attrs[NL80211_ATTR_MAC])
6926 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
6927 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6928 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6929
6930 if (info->attrs[NL80211_ATTR_IE]) {
6931 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6932 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6933 }
6934
Jouni Malinencee00a92013-01-15 17:15:57 +02006935 if (info->attrs[NL80211_ATTR_USE_MFP]) {
6936 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
6937 if (connect.mfp != NL80211_MFP_REQUIRED &&
6938 connect.mfp != NL80211_MFP_NO)
6939 return -EINVAL;
6940 } else {
6941 connect.mfp = NL80211_MFP_NO;
6942 }
6943
Samuel Ortizb23aa672009-07-01 21:26:54 +02006944 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
6945 connect.channel =
6946 ieee80211_get_channel(wiphy,
6947 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
6948 if (!connect.channel ||
Johannes Berg4c476992010-10-04 21:36:35 +02006949 connect.channel->flags & IEEE80211_CHAN_DISABLED)
6950 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006951 }
6952
Johannes Bergfffd0932009-07-08 14:22:54 +02006953 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
6954 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306955 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02006956 if (IS_ERR(connkeys))
6957 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006958 }
6959
Ben Greear7e7c8922011-11-18 11:31:59 -08006960 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
6961 connect.flags |= ASSOC_REQ_DISABLE_HT;
6962
6963 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6964 memcpy(&connect.ht_capa_mask,
6965 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6966 sizeof(connect.ht_capa_mask));
6967
6968 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006969 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
6970 kfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08006971 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006972 }
Ben Greear7e7c8922011-11-18 11:31:59 -08006973 memcpy(&connect.ht_capa,
6974 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6975 sizeof(connect.ht_capa));
6976 }
6977
Johannes Bergee2aca32013-02-21 17:36:01 +01006978 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
6979 connect.flags |= ASSOC_REQ_DISABLE_VHT;
6980
6981 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
6982 memcpy(&connect.vht_capa_mask,
6983 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6984 sizeof(connect.vht_capa_mask));
6985
6986 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
6987 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
6988 kfree(connkeys);
6989 return -EINVAL;
6990 }
6991 memcpy(&connect.vht_capa,
6992 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6993 sizeof(connect.vht_capa));
6994 }
6995
Johannes Berg83739b02013-05-15 17:44:01 +02006996 wdev_lock(dev->ieee80211_ptr);
6997 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
6998 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02006999 if (err)
7000 kfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007001 return err;
7002}
7003
7004static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
7005{
Johannes Berg4c476992010-10-04 21:36:35 +02007006 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7007 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007008 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02007009 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007010
7011 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7012 reason = WLAN_REASON_DEAUTH_LEAVING;
7013 else
7014 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7015
7016 if (reason == 0)
7017 return -EINVAL;
7018
Johannes Berg074ac8d2010-09-16 14:58:22 +02007019 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007020 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7021 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007022
Johannes Berg83739b02013-05-15 17:44:01 +02007023 wdev_lock(dev->ieee80211_ptr);
7024 ret = cfg80211_disconnect(rdev, dev, reason, true);
7025 wdev_unlock(dev->ieee80211_ptr);
7026 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007027}
7028
Johannes Berg463d0182009-07-14 00:33:35 +02007029static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
7030{
Johannes Berg4c476992010-10-04 21:36:35 +02007031 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02007032 struct net *net;
7033 int err;
7034 u32 pid;
7035
7036 if (!info->attrs[NL80211_ATTR_PID])
7037 return -EINVAL;
7038
7039 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
7040
Johannes Berg463d0182009-07-14 00:33:35 +02007041 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02007042 if (IS_ERR(net))
7043 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007044
7045 err = 0;
7046
7047 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02007048 if (!net_eq(wiphy_net(&rdev->wiphy), net))
7049 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02007050
Johannes Berg463d0182009-07-14 00:33:35 +02007051 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007052 return err;
7053}
7054
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007055static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
7056{
Johannes Berg4c476992010-10-04 21:36:35 +02007057 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007058 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
7059 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02007060 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007061 struct cfg80211_pmksa pmksa;
7062
7063 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
7064
7065 if (!info->attrs[NL80211_ATTR_MAC])
7066 return -EINVAL;
7067
7068 if (!info->attrs[NL80211_ATTR_PMKID])
7069 return -EINVAL;
7070
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007071 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7072 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7073
Johannes Berg074ac8d2010-09-16 14:58:22 +02007074 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007075 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7076 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007077
7078 switch (info->genlhdr->cmd) {
7079 case NL80211_CMD_SET_PMKSA:
7080 rdev_ops = rdev->ops->set_pmksa;
7081 break;
7082 case NL80211_CMD_DEL_PMKSA:
7083 rdev_ops = rdev->ops->del_pmksa;
7084 break;
7085 default:
7086 WARN_ON(1);
7087 break;
7088 }
7089
Johannes Berg4c476992010-10-04 21:36:35 +02007090 if (!rdev_ops)
7091 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007092
Johannes Berg4c476992010-10-04 21:36:35 +02007093 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007094}
7095
7096static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7097{
Johannes Berg4c476992010-10-04 21:36:35 +02007098 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7099 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007100
Johannes Berg074ac8d2010-09-16 14:58:22 +02007101 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007102 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7103 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007104
Johannes Berg4c476992010-10-04 21:36:35 +02007105 if (!rdev->ops->flush_pmksa)
7106 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007107
Hila Gonene35e4d22012-06-27 17:19:42 +03007108 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007109}
7110
Arik Nemtsov109086c2011-09-28 14:12:50 +03007111static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7112{
7113 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7114 struct net_device *dev = info->user_ptr[1];
7115 u8 action_code, dialog_token;
7116 u16 status_code;
7117 u8 *peer;
7118
7119 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7120 !rdev->ops->tdls_mgmt)
7121 return -EOPNOTSUPP;
7122
7123 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7124 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7125 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7126 !info->attrs[NL80211_ATTR_IE] ||
7127 !info->attrs[NL80211_ATTR_MAC])
7128 return -EINVAL;
7129
7130 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7131 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7132 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7133 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
7134
Hila Gonene35e4d22012-06-27 17:19:42 +03007135 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
7136 dialog_token, status_code,
7137 nla_data(info->attrs[NL80211_ATTR_IE]),
7138 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007139}
7140
7141static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7142{
7143 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7144 struct net_device *dev = info->user_ptr[1];
7145 enum nl80211_tdls_operation operation;
7146 u8 *peer;
7147
7148 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7149 !rdev->ops->tdls_oper)
7150 return -EOPNOTSUPP;
7151
7152 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7153 !info->attrs[NL80211_ATTR_MAC])
7154 return -EINVAL;
7155
7156 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7157 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7158
Hila Gonene35e4d22012-06-27 17:19:42 +03007159 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007160}
7161
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007162static int nl80211_remain_on_channel(struct sk_buff *skb,
7163 struct genl_info *info)
7164{
Johannes Berg4c476992010-10-04 21:36:35 +02007165 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007166 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007167 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007168 struct sk_buff *msg;
7169 void *hdr;
7170 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007171 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007172 int err;
7173
7174 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7175 !info->attrs[NL80211_ATTR_DURATION])
7176 return -EINVAL;
7177
7178 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7179
Johannes Berg7c4ef712011-11-18 15:33:48 +01007180 if (!rdev->ops->remain_on_channel ||
7181 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007182 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007183
Johannes Bergebf348f2012-06-01 12:50:54 +02007184 /*
7185 * We should be on that channel for at least a minimum amount of
7186 * time (10ms) but no longer than the driver supports.
7187 */
7188 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7189 duration > rdev->wiphy.max_remain_on_channel_duration)
7190 return -EINVAL;
7191
Johannes Berg683b6d32012-11-08 21:25:48 +01007192 err = nl80211_parse_chandef(rdev, info, &chandef);
7193 if (err)
7194 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007195
7196 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007197 if (!msg)
7198 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007199
Eric W. Biederman15e47302012-09-07 20:12:54 +00007200 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007201 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007202 if (!hdr) {
7203 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007204 goto free_msg;
7205 }
7206
Johannes Berg683b6d32012-11-08 21:25:48 +01007207 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7208 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007209
7210 if (err)
7211 goto free_msg;
7212
David S. Miller9360ffd2012-03-29 04:41:26 -04007213 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7214 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007215
7216 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007217
7218 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007219
7220 nla_put_failure:
7221 err = -ENOBUFS;
7222 free_msg:
7223 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007224 return err;
7225}
7226
7227static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7228 struct genl_info *info)
7229{
Johannes Berg4c476992010-10-04 21:36:35 +02007230 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007231 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007232 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007233
7234 if (!info->attrs[NL80211_ATTR_COOKIE])
7235 return -EINVAL;
7236
Johannes Berg4c476992010-10-04 21:36:35 +02007237 if (!rdev->ops->cancel_remain_on_channel)
7238 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007239
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007240 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7241
Hila Gonene35e4d22012-06-27 17:19:42 +03007242 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007243}
7244
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007245static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7246 u8 *rates, u8 rates_len)
7247{
7248 u8 i;
7249 u32 mask = 0;
7250
7251 for (i = 0; i < rates_len; i++) {
7252 int rate = (rates[i] & 0x7f) * 5;
7253 int ridx;
7254 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7255 struct ieee80211_rate *srate =
7256 &sband->bitrates[ridx];
7257 if (rate == srate->bitrate) {
7258 mask |= 1 << ridx;
7259 break;
7260 }
7261 }
7262 if (ridx == sband->n_bitrates)
7263 return 0; /* rate not found */
7264 }
7265
7266 return mask;
7267}
7268
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007269static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7270 u8 *rates, u8 rates_len,
7271 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7272{
7273 u8 i;
7274
7275 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7276
7277 for (i = 0; i < rates_len; i++) {
7278 int ridx, rbit;
7279
7280 ridx = rates[i] / 8;
7281 rbit = BIT(rates[i] % 8);
7282
7283 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007284 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007285 return false;
7286
7287 /* check availability */
7288 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7289 mcs[ridx] |= rbit;
7290 else
7291 return false;
7292 }
7293
7294 return true;
7295}
7296
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007297static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007298 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7299 .len = NL80211_MAX_SUPP_RATES },
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007300 [NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
7301 .len = NL80211_MAX_SUPP_HT_RATES },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007302};
7303
7304static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7305 struct genl_info *info)
7306{
7307 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007308 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007309 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007310 int rem, i;
7311 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007312 struct nlattr *tx_rates;
7313 struct ieee80211_supported_band *sband;
7314
7315 if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
7316 return -EINVAL;
7317
Johannes Berg4c476992010-10-04 21:36:35 +02007318 if (!rdev->ops->set_bitrate_mask)
7319 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007320
7321 memset(&mask, 0, sizeof(mask));
7322 /* Default to all rates enabled */
7323 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7324 sband = rdev->wiphy.bands[i];
7325 mask.control[i].legacy =
7326 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007327 if (sband)
7328 memcpy(mask.control[i].mcs,
7329 sband->ht_cap.mcs.rx_mask,
7330 sizeof(mask.control[i].mcs));
7331 else
7332 memset(mask.control[i].mcs, 0,
7333 sizeof(mask.control[i].mcs));
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007334 }
7335
7336 /*
7337 * The nested attribute uses enum nl80211_band as the index. This maps
7338 * directly to the enum ieee80211_band values used in cfg80211.
7339 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007340 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007341 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
7342 {
7343 enum ieee80211_band band = nla_type(tx_rates);
Johannes Berg4c476992010-10-04 21:36:35 +02007344 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7345 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007346 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007347 if (sband == NULL)
7348 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007349 nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7350 nla_len(tx_rates), nl80211_txattr_policy);
7351 if (tb[NL80211_TXRATE_LEGACY]) {
7352 mask.control[band].legacy = rateset_to_mask(
7353 sband,
7354 nla_data(tb[NL80211_TXRATE_LEGACY]),
7355 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307356 if ((mask.control[band].legacy == 0) &&
7357 nla_len(tb[NL80211_TXRATE_LEGACY]))
7358 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007359 }
7360 if (tb[NL80211_TXRATE_MCS]) {
7361 if (!ht_rateset_to_mask(
7362 sband,
7363 nla_data(tb[NL80211_TXRATE_MCS]),
7364 nla_len(tb[NL80211_TXRATE_MCS]),
7365 mask.control[band].mcs))
7366 return -EINVAL;
7367 }
7368
7369 if (mask.control[band].legacy == 0) {
7370 /* don't allow empty legacy rates if HT
7371 * is not even supported. */
7372 if (!rdev->wiphy.bands[band]->ht_cap.ht_supported)
7373 return -EINVAL;
7374
7375 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
7376 if (mask.control[band].mcs[i])
7377 break;
7378
7379 /* legacy and mcs rates may not be both empty */
7380 if (i == IEEE80211_HT_MCS_MASK_LEN)
Johannes Berg4c476992010-10-04 21:36:35 +02007381 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007382 }
7383 }
7384
Hila Gonene35e4d22012-06-27 17:19:42 +03007385 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007386}
7387
Johannes Berg2e161f72010-08-12 15:38:38 +02007388static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007389{
Johannes Berg4c476992010-10-04 21:36:35 +02007390 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007391 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007392 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007393
7394 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7395 return -EINVAL;
7396
Johannes Berg2e161f72010-08-12 15:38:38 +02007397 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7398 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007399
Johannes Berg71bbc992012-06-15 15:30:18 +02007400 switch (wdev->iftype) {
7401 case NL80211_IFTYPE_STATION:
7402 case NL80211_IFTYPE_ADHOC:
7403 case NL80211_IFTYPE_P2P_CLIENT:
7404 case NL80211_IFTYPE_AP:
7405 case NL80211_IFTYPE_AP_VLAN:
7406 case NL80211_IFTYPE_MESH_POINT:
7407 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007408 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007409 break;
7410 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007411 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007412 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007413
7414 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007415 if (!rdev->ops->mgmt_tx)
7416 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007417
Eric W. Biederman15e47302012-09-07 20:12:54 +00007418 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007419 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7420 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007421}
7422
Johannes Berg2e161f72010-08-12 15:38:38 +02007423static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007424{
Johannes Berg4c476992010-10-04 21:36:35 +02007425 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007426 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007427 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007428 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007429 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007430 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007431 struct sk_buff *msg = NULL;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007432 unsigned int wait = 0;
Johannes Berge247bd902011-11-04 11:18:21 +01007433 bool offchan, no_cck, dont_wait_for_ack;
7434
7435 dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
Jouni Malinen026331c2010-02-15 12:53:10 +02007436
Johannes Berg683b6d32012-11-08 21:25:48 +01007437 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007438 return -EINVAL;
7439
Johannes Berg4c476992010-10-04 21:36:35 +02007440 if (!rdev->ops->mgmt_tx)
7441 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007442
Johannes Berg71bbc992012-06-15 15:30:18 +02007443 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007444 case NL80211_IFTYPE_P2P_DEVICE:
7445 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7446 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007447 case NL80211_IFTYPE_STATION:
7448 case NL80211_IFTYPE_ADHOC:
7449 case NL80211_IFTYPE_P2P_CLIENT:
7450 case NL80211_IFTYPE_AP:
7451 case NL80211_IFTYPE_AP_VLAN:
7452 case NL80211_IFTYPE_MESH_POINT:
7453 case NL80211_IFTYPE_P2P_GO:
7454 break;
7455 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007456 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007457 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007458
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007459 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007460 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007461 return -EINVAL;
7462 wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007463
7464 /*
7465 * We should wait on the channel for at least a minimum amount
7466 * of time (10ms) but no longer than the driver supports.
7467 */
7468 if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7469 wait > rdev->wiphy.max_remain_on_channel_duration)
7470 return -EINVAL;
7471
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007472 }
7473
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007474 offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
7475
Johannes Berg7c4ef712011-11-18 15:33:48 +01007476 if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
7477 return -EINVAL;
7478
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307479 no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
7480
Antonio Quartulliea141b752013-06-11 14:20:03 +02007481 /* get the channel if any has been specified, otherwise pass NULL to
7482 * the driver. The latter will use the current one
7483 */
7484 chandef.chan = NULL;
7485 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7486 err = nl80211_parse_chandef(rdev, info, &chandef);
7487 if (err)
7488 return err;
7489 }
7490
7491 if (!chandef.chan && offchan)
7492 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007493
Johannes Berge247bd902011-11-04 11:18:21 +01007494 if (!dont_wait_for_ack) {
7495 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7496 if (!msg)
7497 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007498
Eric W. Biederman15e47302012-09-07 20:12:54 +00007499 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007500 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007501 if (!hdr) {
7502 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007503 goto free_msg;
7504 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007505 }
Johannes Berge247bd902011-11-04 11:18:21 +01007506
Johannes Berg683b6d32012-11-08 21:25:48 +01007507 err = cfg80211_mlme_mgmt_tx(rdev, wdev, chandef.chan, offchan, wait,
Johannes Berg2e161f72010-08-12 15:38:38 +02007508 nla_data(info->attrs[NL80211_ATTR_FRAME]),
7509 nla_len(info->attrs[NL80211_ATTR_FRAME]),
Johannes Berge247bd902011-11-04 11:18:21 +01007510 no_cck, dont_wait_for_ack, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007511 if (err)
7512 goto free_msg;
7513
Johannes Berge247bd902011-11-04 11:18:21 +01007514 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007515 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7516 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007517
Johannes Berge247bd902011-11-04 11:18:21 +01007518 genlmsg_end(msg, hdr);
7519 return genlmsg_reply(msg, info);
7520 }
7521
7522 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007523
7524 nla_put_failure:
7525 err = -ENOBUFS;
7526 free_msg:
7527 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007528 return err;
7529}
7530
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007531static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7532{
7533 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007534 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007535 u64 cookie;
7536
7537 if (!info->attrs[NL80211_ATTR_COOKIE])
7538 return -EINVAL;
7539
7540 if (!rdev->ops->mgmt_tx_cancel_wait)
7541 return -EOPNOTSUPP;
7542
Johannes Berg71bbc992012-06-15 15:30:18 +02007543 switch (wdev->iftype) {
7544 case NL80211_IFTYPE_STATION:
7545 case NL80211_IFTYPE_ADHOC:
7546 case NL80211_IFTYPE_P2P_CLIENT:
7547 case NL80211_IFTYPE_AP:
7548 case NL80211_IFTYPE_AP_VLAN:
7549 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007550 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007551 break;
7552 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007553 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007554 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007555
7556 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7557
Hila Gonene35e4d22012-06-27 17:19:42 +03007558 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007559}
7560
Kalle Valoffb9eb32010-02-17 17:58:10 +02007561static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7562{
Johannes Berg4c476992010-10-04 21:36:35 +02007563 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007564 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007565 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007566 u8 ps_state;
7567 bool state;
7568 int err;
7569
Johannes Berg4c476992010-10-04 21:36:35 +02007570 if (!info->attrs[NL80211_ATTR_PS_STATE])
7571 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007572
7573 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
7574
Johannes Berg4c476992010-10-04 21:36:35 +02007575 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
7576 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007577
7578 wdev = dev->ieee80211_ptr;
7579
Johannes Berg4c476992010-10-04 21:36:35 +02007580 if (!rdev->ops->set_power_mgmt)
7581 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007582
7583 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
7584
7585 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02007586 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007587
Hila Gonene35e4d22012-06-27 17:19:42 +03007588 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02007589 if (!err)
7590 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007591 return err;
7592}
7593
7594static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
7595{
Johannes Berg4c476992010-10-04 21:36:35 +02007596 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007597 enum nl80211_ps_state ps_state;
7598 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007599 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007600 struct sk_buff *msg;
7601 void *hdr;
7602 int err;
7603
Kalle Valoffb9eb32010-02-17 17:58:10 +02007604 wdev = dev->ieee80211_ptr;
7605
Johannes Berg4c476992010-10-04 21:36:35 +02007606 if (!rdev->ops->set_power_mgmt)
7607 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007608
7609 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007610 if (!msg)
7611 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007612
Eric W. Biederman15e47302012-09-07 20:12:54 +00007613 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02007614 NL80211_CMD_GET_POWER_SAVE);
7615 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02007616 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007617 goto free_msg;
7618 }
7619
7620 if (wdev->ps)
7621 ps_state = NL80211_PS_ENABLED;
7622 else
7623 ps_state = NL80211_PS_DISABLED;
7624
David S. Miller9360ffd2012-03-29 04:41:26 -04007625 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
7626 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007627
7628 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007629 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007630
Johannes Berg4c476992010-10-04 21:36:35 +02007631 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007632 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02007633 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007634 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007635 return err;
7636}
7637
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007638static struct nla_policy
7639nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = {
7640 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
7641 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
7642 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07007643 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
7644 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
7645 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007646};
7647
Thomas Pedersen84f10702012-07-12 16:17:33 -07007648static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01007649 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007650{
7651 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07007652 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007653 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07007654
Johannes Bergd9d8b012012-11-26 12:51:52 +01007655 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007656 return -EINVAL;
7657
Thomas Pedersen84f10702012-07-12 16:17:33 -07007658 if (!rdev->ops->set_cqm_txe_config)
7659 return -EOPNOTSUPP;
7660
7661 if (wdev->iftype != NL80211_IFTYPE_STATION &&
7662 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7663 return -EOPNOTSUPP;
7664
Hila Gonene35e4d22012-06-27 17:19:42 +03007665 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07007666}
7667
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007668static int nl80211_set_cqm_rssi(struct genl_info *info,
7669 s32 threshold, u32 hysteresis)
7670{
Johannes Berg4c476992010-10-04 21:36:35 +02007671 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02007672 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007673 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007674
7675 if (threshold > 0)
7676 return -EINVAL;
7677
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007678 /* disabling - hysteresis should also be zero then */
7679 if (threshold == 0)
7680 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007681
Johannes Berg4c476992010-10-04 21:36:35 +02007682 if (!rdev->ops->set_cqm_rssi_config)
7683 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007684
Johannes Berg074ac8d2010-09-16 14:58:22 +02007685 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007686 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7687 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007688
Hila Gonene35e4d22012-06-27 17:19:42 +03007689 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007690}
7691
7692static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
7693{
7694 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
7695 struct nlattr *cqm;
7696 int err;
7697
7698 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007699 if (!cqm)
7700 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007701
7702 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
7703 nl80211_attr_cqm_policy);
7704 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007705 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007706
7707 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
7708 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007709 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
7710 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007711
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007712 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
7713 }
7714
7715 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
7716 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
7717 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
7718 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
7719 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
7720 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
7721
7722 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
7723 }
7724
7725 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007726}
7727
Johannes Berg29cbe682010-12-03 09:20:44 +01007728static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
7729{
7730 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7731 struct net_device *dev = info->user_ptr[1];
7732 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08007733 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01007734 int err;
7735
7736 /* start with default */
7737 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08007738 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01007739
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007740 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01007741 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007742 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01007743 if (err)
7744 return err;
7745 }
7746
7747 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
7748 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
7749 return -EINVAL;
7750
Javier Cardonac80d5452010-12-16 17:37:49 -08007751 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
7752 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
7753
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08007754 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
7755 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
7756 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
7757 return -EINVAL;
7758
Marco Porsch9bdbf042013-01-07 16:04:51 +01007759 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
7760 setup.beacon_interval =
7761 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
7762 if (setup.beacon_interval < 10 ||
7763 setup.beacon_interval > 10000)
7764 return -EINVAL;
7765 }
7766
7767 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
7768 setup.dtim_period =
7769 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
7770 if (setup.dtim_period < 1 || setup.dtim_period > 100)
7771 return -EINVAL;
7772 }
7773
Javier Cardonac80d5452010-12-16 17:37:49 -08007774 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
7775 /* parse additional setup parameters if given */
7776 err = nl80211_parse_mesh_setup(info, &setup);
7777 if (err)
7778 return err;
7779 }
7780
Thomas Pedersend37bb182013-03-04 13:06:13 -08007781 if (setup.user_mpm)
7782 cfg.auto_open_plinks = false;
7783
Johannes Bergcc1d2802012-05-16 23:50:20 +02007784 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01007785 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
7786 if (err)
7787 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007788 } else {
7789 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01007790 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007791 }
7792
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07007793 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
7794 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7795 int n_rates =
7796 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7797 struct ieee80211_supported_band *sband;
7798
7799 if (!setup.chandef.chan)
7800 return -EINVAL;
7801
7802 sband = rdev->wiphy.bands[setup.chandef.chan->band];
7803
7804 err = ieee80211_get_ratemask(sband, rates, n_rates,
7805 &setup.basic_rates);
7806 if (err)
7807 return err;
7808 }
7809
Javier Cardonac80d5452010-12-16 17:37:49 -08007810 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01007811}
7812
7813static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
7814{
7815 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7816 struct net_device *dev = info->user_ptr[1];
7817
7818 return cfg80211_leave_mesh(rdev, dev);
7819}
7820
Johannes Bergdfb89c52012-06-27 09:23:48 +02007821#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007822static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
7823 struct cfg80211_registered_device *rdev)
7824{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007825 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007826 struct nlattr *nl_pats, *nl_pat;
7827 int i, pat_len;
7828
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007829 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007830 return 0;
7831
7832 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
7833 if (!nl_pats)
7834 return -ENOBUFS;
7835
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007836 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007837 nl_pat = nla_nest_start(msg, i + 1);
7838 if (!nl_pat)
7839 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007840 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007841 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007842 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007843 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
7844 wowlan->patterns[i].pattern) ||
7845 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007846 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007847 return -ENOBUFS;
7848 nla_nest_end(msg, nl_pat);
7849 }
7850 nla_nest_end(msg, nl_pats);
7851
7852 return 0;
7853}
7854
Johannes Berg2a0e0472013-01-23 22:57:40 +01007855static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
7856 struct cfg80211_wowlan_tcp *tcp)
7857{
7858 struct nlattr *nl_tcp;
7859
7860 if (!tcp)
7861 return 0;
7862
7863 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
7864 if (!nl_tcp)
7865 return -ENOBUFS;
7866
7867 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
7868 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
7869 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
7870 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
7871 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
7872 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
7873 tcp->payload_len, tcp->payload) ||
7874 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
7875 tcp->data_interval) ||
7876 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
7877 tcp->wake_len, tcp->wake_data) ||
7878 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
7879 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
7880 return -ENOBUFS;
7881
7882 if (tcp->payload_seq.len &&
7883 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
7884 sizeof(tcp->payload_seq), &tcp->payload_seq))
7885 return -ENOBUFS;
7886
7887 if (tcp->payload_tok.len &&
7888 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
7889 sizeof(tcp->payload_tok) + tcp->tokens_size,
7890 &tcp->payload_tok))
7891 return -ENOBUFS;
7892
Johannes Berge248ad32013-05-16 10:24:28 +02007893 nla_nest_end(msg, nl_tcp);
7894
Johannes Berg2a0e0472013-01-23 22:57:40 +01007895 return 0;
7896}
7897
Johannes Bergff1b6e62011-05-04 15:37:28 +02007898static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
7899{
7900 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7901 struct sk_buff *msg;
7902 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007903 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02007904
Johannes Berg964dc9e2013-06-03 17:25:34 +02007905 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02007906 return -EOPNOTSUPP;
7907
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007908 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01007909 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007910 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
7911 rdev->wiphy.wowlan_config->tcp->payload_len +
7912 rdev->wiphy.wowlan_config->tcp->wake_len +
7913 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007914 }
7915
7916 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02007917 if (!msg)
7918 return -ENOMEM;
7919
Eric W. Biederman15e47302012-09-07 20:12:54 +00007920 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02007921 NL80211_CMD_GET_WOWLAN);
7922 if (!hdr)
7923 goto nla_put_failure;
7924
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007925 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02007926 struct nlattr *nl_wowlan;
7927
7928 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
7929 if (!nl_wowlan)
7930 goto nla_put_failure;
7931
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007932 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007933 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007934 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007935 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007936 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007937 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007938 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007939 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007940 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007941 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007942 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007943 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007944 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007945 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
7946 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007947
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007948 if (nl80211_send_wowlan_patterns(msg, rdev))
7949 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007950
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007951 if (nl80211_send_wowlan_tcp(msg,
7952 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01007953 goto nla_put_failure;
7954
Johannes Bergff1b6e62011-05-04 15:37:28 +02007955 nla_nest_end(msg, nl_wowlan);
7956 }
7957
7958 genlmsg_end(msg, hdr);
7959 return genlmsg_reply(msg, info);
7960
7961nla_put_failure:
7962 nlmsg_free(msg);
7963 return -ENOBUFS;
7964}
7965
Johannes Berg2a0e0472013-01-23 22:57:40 +01007966static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
7967 struct nlattr *attr,
7968 struct cfg80211_wowlan *trig)
7969{
7970 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
7971 struct cfg80211_wowlan_tcp *cfg;
7972 struct nl80211_wowlan_tcp_data_token *tok = NULL;
7973 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
7974 u32 size;
7975 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
7976 int err, port;
7977
Johannes Berg964dc9e2013-06-03 17:25:34 +02007978 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007979 return -EINVAL;
7980
7981 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
7982 nla_data(attr), nla_len(attr),
7983 nl80211_wowlan_tcp_policy);
7984 if (err)
7985 return err;
7986
7987 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
7988 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
7989 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
7990 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
7991 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
7992 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
7993 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
7994 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
7995 return -EINVAL;
7996
7997 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02007998 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007999 return -EINVAL;
8000
8001 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02008002 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01008003 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008004 return -EINVAL;
8005
8006 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008007 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008008 return -EINVAL;
8009
8010 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
8011 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
8012 return -EINVAL;
8013
8014 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
8015 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8016
8017 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8018 tokens_size = tokln - sizeof(*tok);
8019
8020 if (!tok->len || tokens_size % tok->len)
8021 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008022 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008023 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008024 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008025 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008026 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008027 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008028 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008029 return -EINVAL;
8030 if (tok->offset + tok->len > data_size)
8031 return -EINVAL;
8032 }
8033
8034 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
8035 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008036 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008037 return -EINVAL;
8038 if (seq->len == 0 || seq->len > 4)
8039 return -EINVAL;
8040 if (seq->len + seq->offset > data_size)
8041 return -EINVAL;
8042 }
8043
8044 size = sizeof(*cfg);
8045 size += data_size;
8046 size += wake_size + wake_mask_size;
8047 size += tokens_size;
8048
8049 cfg = kzalloc(size, GFP_KERNEL);
8050 if (!cfg)
8051 return -ENOMEM;
8052 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
8053 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
8054 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
8055 ETH_ALEN);
8056 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
8057 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
8058 else
8059 port = 0;
8060#ifdef CONFIG_INET
8061 /* allocate a socket and port for it and use it */
8062 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
8063 IPPROTO_TCP, &cfg->sock, 1);
8064 if (err) {
8065 kfree(cfg);
8066 return err;
8067 }
8068 if (inet_csk_get_port(cfg->sock->sk, port)) {
8069 sock_release(cfg->sock);
8070 kfree(cfg);
8071 return -EADDRINUSE;
8072 }
8073 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8074#else
8075 if (!port) {
8076 kfree(cfg);
8077 return -EINVAL;
8078 }
8079 cfg->src_port = port;
8080#endif
8081
8082 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8083 cfg->payload_len = data_size;
8084 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8085 memcpy((void *)cfg->payload,
8086 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8087 data_size);
8088 if (seq)
8089 cfg->payload_seq = *seq;
8090 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8091 cfg->wake_len = wake_size;
8092 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8093 memcpy((void *)cfg->wake_data,
8094 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8095 wake_size);
8096 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8097 data_size + wake_size;
8098 memcpy((void *)cfg->wake_mask,
8099 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8100 wake_mask_size);
8101 if (tok) {
8102 cfg->tokens_size = tokens_size;
8103 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8104 }
8105
8106 trig->tcp = cfg;
8107
8108 return 0;
8109}
8110
Johannes Bergff1b6e62011-05-04 15:37:28 +02008111static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8112{
8113 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8114 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008115 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008116 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008117 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008118 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008119 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008120
Johannes Berg964dc9e2013-06-03 17:25:34 +02008121 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008122 return -EOPNOTSUPP;
8123
Johannes Bergae33bd82012-07-12 16:25:02 +02008124 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8125 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008126 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008127 goto set_wakeup;
8128 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008129
8130 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8131 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8132 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8133 nl80211_wowlan_policy);
8134 if (err)
8135 return err;
8136
8137 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8138 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8139 return -EINVAL;
8140 new_triggers.any = true;
8141 }
8142
8143 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8144 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8145 return -EINVAL;
8146 new_triggers.disconnect = true;
8147 }
8148
8149 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8150 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8151 return -EINVAL;
8152 new_triggers.magic_pkt = true;
8153 }
8154
Johannes Berg77dbbb12011-07-13 10:48:55 +02008155 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8156 return -EINVAL;
8157
8158 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8159 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8160 return -EINVAL;
8161 new_triggers.gtk_rekey_failure = true;
8162 }
8163
8164 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8165 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8166 return -EINVAL;
8167 new_triggers.eap_identity_req = true;
8168 }
8169
8170 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8171 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8172 return -EINVAL;
8173 new_triggers.four_way_handshake = true;
8174 }
8175
8176 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8177 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8178 return -EINVAL;
8179 new_triggers.rfkill_release = true;
8180 }
8181
Johannes Bergff1b6e62011-05-04 15:37:28 +02008182 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8183 struct nlattr *pat;
8184 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008185 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008186 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008187
8188 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8189 rem)
8190 n_patterns++;
8191 if (n_patterns > wowlan->n_patterns)
8192 return -EINVAL;
8193
8194 new_triggers.patterns = kcalloc(n_patterns,
8195 sizeof(new_triggers.patterns[0]),
8196 GFP_KERNEL);
8197 if (!new_triggers.patterns)
8198 return -ENOMEM;
8199
8200 new_triggers.n_patterns = n_patterns;
8201 i = 0;
8202
8203 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8204 rem) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008205 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8206 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008207 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008208 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8209 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008210 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008211 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008212 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008213 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008214 goto error;
8215 if (pat_len > wowlan->pattern_max_len ||
8216 pat_len < wowlan->pattern_min_len)
8217 goto error;
8218
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008219 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008220 pkt_offset = 0;
8221 else
8222 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008223 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008224 if (pkt_offset > wowlan->max_pkt_offset)
8225 goto error;
8226 new_triggers.patterns[i].pkt_offset = pkt_offset;
8227
Johannes Bergff1b6e62011-05-04 15:37:28 +02008228 new_triggers.patterns[i].mask =
8229 kmalloc(mask_len + pat_len, GFP_KERNEL);
8230 if (!new_triggers.patterns[i].mask) {
8231 err = -ENOMEM;
8232 goto error;
8233 }
8234 new_triggers.patterns[i].pattern =
8235 new_triggers.patterns[i].mask + mask_len;
8236 memcpy(new_triggers.patterns[i].mask,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008237 nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008238 mask_len);
8239 new_triggers.patterns[i].pattern_len = pat_len;
8240 memcpy(new_triggers.patterns[i].pattern,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008241 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008242 pat_len);
8243 i++;
8244 }
8245 }
8246
Johannes Berg2a0e0472013-01-23 22:57:40 +01008247 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8248 err = nl80211_parse_wowlan_tcp(
8249 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8250 &new_triggers);
8251 if (err)
8252 goto error;
8253 }
8254
Johannes Bergae33bd82012-07-12 16:25:02 +02008255 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8256 if (!ntrig) {
8257 err = -ENOMEM;
8258 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008259 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008260 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008261 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008262
Johannes Bergae33bd82012-07-12 16:25:02 +02008263 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008264 if (rdev->ops->set_wakeup &&
8265 prev_enabled != !!rdev->wiphy.wowlan_config)
8266 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008267
Johannes Bergff1b6e62011-05-04 15:37:28 +02008268 return 0;
8269 error:
8270 for (i = 0; i < new_triggers.n_patterns; i++)
8271 kfree(new_triggers.patterns[i].mask);
8272 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008273 if (new_triggers.tcp && new_triggers.tcp->sock)
8274 sock_release(new_triggers.tcp->sock);
8275 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008276 return err;
8277}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008278#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008279
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008280static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8281 struct cfg80211_registered_device *rdev)
8282{
8283 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8284 int i, j, pat_len;
8285 struct cfg80211_coalesce_rules *rule;
8286
8287 if (!rdev->coalesce->n_rules)
8288 return 0;
8289
8290 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8291 if (!nl_rules)
8292 return -ENOBUFS;
8293
8294 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8295 nl_rule = nla_nest_start(msg, i + 1);
8296 if (!nl_rule)
8297 return -ENOBUFS;
8298
8299 rule = &rdev->coalesce->rules[i];
8300 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8301 rule->delay))
8302 return -ENOBUFS;
8303
8304 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8305 rule->condition))
8306 return -ENOBUFS;
8307
8308 nl_pats = nla_nest_start(msg,
8309 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8310 if (!nl_pats)
8311 return -ENOBUFS;
8312
8313 for (j = 0; j < rule->n_patterns; j++) {
8314 nl_pat = nla_nest_start(msg, j + 1);
8315 if (!nl_pat)
8316 return -ENOBUFS;
8317 pat_len = rule->patterns[j].pattern_len;
8318 if (nla_put(msg, NL80211_PKTPAT_MASK,
8319 DIV_ROUND_UP(pat_len, 8),
8320 rule->patterns[j].mask) ||
8321 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8322 rule->patterns[j].pattern) ||
8323 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8324 rule->patterns[j].pkt_offset))
8325 return -ENOBUFS;
8326 nla_nest_end(msg, nl_pat);
8327 }
8328 nla_nest_end(msg, nl_pats);
8329 nla_nest_end(msg, nl_rule);
8330 }
8331 nla_nest_end(msg, nl_rules);
8332
8333 return 0;
8334}
8335
8336static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8337{
8338 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8339 struct sk_buff *msg;
8340 void *hdr;
8341
8342 if (!rdev->wiphy.coalesce)
8343 return -EOPNOTSUPP;
8344
8345 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8346 if (!msg)
8347 return -ENOMEM;
8348
8349 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8350 NL80211_CMD_GET_COALESCE);
8351 if (!hdr)
8352 goto nla_put_failure;
8353
8354 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8355 goto nla_put_failure;
8356
8357 genlmsg_end(msg, hdr);
8358 return genlmsg_reply(msg, info);
8359
8360nla_put_failure:
8361 nlmsg_free(msg);
8362 return -ENOBUFS;
8363}
8364
8365void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8366{
8367 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8368 int i, j;
8369 struct cfg80211_coalesce_rules *rule;
8370
8371 if (!coalesce)
8372 return;
8373
8374 for (i = 0; i < coalesce->n_rules; i++) {
8375 rule = &coalesce->rules[i];
8376 for (j = 0; j < rule->n_patterns; j++)
8377 kfree(rule->patterns[j].mask);
8378 kfree(rule->patterns);
8379 }
8380 kfree(coalesce->rules);
8381 kfree(coalesce);
8382 rdev->coalesce = NULL;
8383}
8384
8385static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8386 struct nlattr *rule,
8387 struct cfg80211_coalesce_rules *new_rule)
8388{
8389 int err, i;
8390 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8391 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8392 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8393 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8394
8395 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8396 nla_len(rule), nl80211_coalesce_policy);
8397 if (err)
8398 return err;
8399
8400 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8401 new_rule->delay =
8402 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8403 if (new_rule->delay > coalesce->max_delay)
8404 return -EINVAL;
8405
8406 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8407 new_rule->condition =
8408 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8409 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8410 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8411 return -EINVAL;
8412
8413 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8414 return -EINVAL;
8415
8416 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8417 rem)
8418 n_patterns++;
8419 if (n_patterns > coalesce->n_patterns)
8420 return -EINVAL;
8421
8422 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8423 GFP_KERNEL);
8424 if (!new_rule->patterns)
8425 return -ENOMEM;
8426
8427 new_rule->n_patterns = n_patterns;
8428 i = 0;
8429
8430 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8431 rem) {
8432 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8433 nla_len(pat), NULL);
8434 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8435 !pat_tb[NL80211_PKTPAT_PATTERN])
8436 return -EINVAL;
8437 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8438 mask_len = DIV_ROUND_UP(pat_len, 8);
8439 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8440 return -EINVAL;
8441 if (pat_len > coalesce->pattern_max_len ||
8442 pat_len < coalesce->pattern_min_len)
8443 return -EINVAL;
8444
8445 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8446 pkt_offset = 0;
8447 else
8448 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8449 if (pkt_offset > coalesce->max_pkt_offset)
8450 return -EINVAL;
8451 new_rule->patterns[i].pkt_offset = pkt_offset;
8452
8453 new_rule->patterns[i].mask =
8454 kmalloc(mask_len + pat_len, GFP_KERNEL);
8455 if (!new_rule->patterns[i].mask)
8456 return -ENOMEM;
8457 new_rule->patterns[i].pattern =
8458 new_rule->patterns[i].mask + mask_len;
8459 memcpy(new_rule->patterns[i].mask,
8460 nla_data(pat_tb[NL80211_PKTPAT_MASK]), mask_len);
8461 new_rule->patterns[i].pattern_len = pat_len;
8462 memcpy(new_rule->patterns[i].pattern,
8463 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]), pat_len);
8464 i++;
8465 }
8466
8467 return 0;
8468}
8469
8470static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8471{
8472 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8473 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8474 struct cfg80211_coalesce new_coalesce = {};
8475 struct cfg80211_coalesce *n_coalesce;
8476 int err, rem_rule, n_rules = 0, i, j;
8477 struct nlattr *rule;
8478 struct cfg80211_coalesce_rules *tmp_rule;
8479
8480 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8481 return -EOPNOTSUPP;
8482
8483 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8484 cfg80211_rdev_free_coalesce(rdev);
8485 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8486 return 0;
8487 }
8488
8489 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8490 rem_rule)
8491 n_rules++;
8492 if (n_rules > coalesce->n_rules)
8493 return -EINVAL;
8494
8495 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8496 GFP_KERNEL);
8497 if (!new_coalesce.rules)
8498 return -ENOMEM;
8499
8500 new_coalesce.n_rules = n_rules;
8501 i = 0;
8502
8503 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8504 rem_rule) {
8505 err = nl80211_parse_coalesce_rule(rdev, rule,
8506 &new_coalesce.rules[i]);
8507 if (err)
8508 goto error;
8509
8510 i++;
8511 }
8512
8513 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8514 if (err)
8515 goto error;
8516
8517 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8518 if (!n_coalesce) {
8519 err = -ENOMEM;
8520 goto error;
8521 }
8522 cfg80211_rdev_free_coalesce(rdev);
8523 rdev->coalesce = n_coalesce;
8524
8525 return 0;
8526error:
8527 for (i = 0; i < new_coalesce.n_rules; i++) {
8528 tmp_rule = &new_coalesce.rules[i];
8529 for (j = 0; j < tmp_rule->n_patterns; j++)
8530 kfree(tmp_rule->patterns[j].mask);
8531 kfree(tmp_rule->patterns);
8532 }
8533 kfree(new_coalesce.rules);
8534
8535 return err;
8536}
8537
Johannes Berge5497d72011-07-05 16:35:40 +02008538static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8539{
8540 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8541 struct net_device *dev = info->user_ptr[1];
8542 struct wireless_dev *wdev = dev->ieee80211_ptr;
8543 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8544 struct cfg80211_gtk_rekey_data rekey_data;
8545 int err;
8546
8547 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8548 return -EINVAL;
8549
8550 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8551 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8552 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8553 nl80211_rekey_policy);
8554 if (err)
8555 return err;
8556
8557 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8558 return -ERANGE;
8559 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8560 return -ERANGE;
8561 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
8562 return -ERANGE;
8563
8564 memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]),
8565 NL80211_KEK_LEN);
8566 memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]),
8567 NL80211_KCK_LEN);
8568 memcpy(rekey_data.replay_ctr,
8569 nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]),
8570 NL80211_REPLAY_CTR_LEN);
8571
8572 wdev_lock(wdev);
8573 if (!wdev->current_bss) {
8574 err = -ENOTCONN;
8575 goto out;
8576 }
8577
8578 if (!rdev->ops->set_rekey_data) {
8579 err = -EOPNOTSUPP;
8580 goto out;
8581 }
8582
Hila Gonene35e4d22012-06-27 17:19:42 +03008583 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02008584 out:
8585 wdev_unlock(wdev);
8586 return err;
8587}
8588
Johannes Berg28946da2011-11-04 11:18:12 +01008589static int nl80211_register_unexpected_frame(struct sk_buff *skb,
8590 struct genl_info *info)
8591{
8592 struct net_device *dev = info->user_ptr[1];
8593 struct wireless_dev *wdev = dev->ieee80211_ptr;
8594
8595 if (wdev->iftype != NL80211_IFTYPE_AP &&
8596 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8597 return -EINVAL;
8598
Eric W. Biederman15e47302012-09-07 20:12:54 +00008599 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01008600 return -EBUSY;
8601
Eric W. Biederman15e47302012-09-07 20:12:54 +00008602 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01008603 return 0;
8604}
8605
Johannes Berg7f6cf312011-11-04 11:18:15 +01008606static int nl80211_probe_client(struct sk_buff *skb,
8607 struct genl_info *info)
8608{
8609 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8610 struct net_device *dev = info->user_ptr[1];
8611 struct wireless_dev *wdev = dev->ieee80211_ptr;
8612 struct sk_buff *msg;
8613 void *hdr;
8614 const u8 *addr;
8615 u64 cookie;
8616 int err;
8617
8618 if (wdev->iftype != NL80211_IFTYPE_AP &&
8619 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8620 return -EOPNOTSUPP;
8621
8622 if (!info->attrs[NL80211_ATTR_MAC])
8623 return -EINVAL;
8624
8625 if (!rdev->ops->probe_client)
8626 return -EOPNOTSUPP;
8627
8628 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8629 if (!msg)
8630 return -ENOMEM;
8631
Eric W. Biederman15e47302012-09-07 20:12:54 +00008632 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01008633 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008634 if (!hdr) {
8635 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008636 goto free_msg;
8637 }
8638
8639 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
8640
Hila Gonene35e4d22012-06-27 17:19:42 +03008641 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01008642 if (err)
8643 goto free_msg;
8644
David S. Miller9360ffd2012-03-29 04:41:26 -04008645 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
8646 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008647
8648 genlmsg_end(msg, hdr);
8649
8650 return genlmsg_reply(msg, info);
8651
8652 nla_put_failure:
8653 err = -ENOBUFS;
8654 free_msg:
8655 nlmsg_free(msg);
8656 return err;
8657}
8658
Johannes Berg5e7602302011-11-04 11:18:17 +01008659static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
8660{
8661 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07008662 struct cfg80211_beacon_registration *reg, *nreg;
8663 int rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01008664
8665 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
8666 return -EOPNOTSUPP;
8667
Ben Greear37c73b52012-10-26 14:49:25 -07008668 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
8669 if (!nreg)
8670 return -ENOMEM;
Johannes Berg5e7602302011-11-04 11:18:17 +01008671
Ben Greear37c73b52012-10-26 14:49:25 -07008672 /* First, check if already registered. */
8673 spin_lock_bh(&rdev->beacon_registrations_lock);
8674 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
8675 if (reg->nlportid == info->snd_portid) {
8676 rv = -EALREADY;
8677 goto out_err;
8678 }
8679 }
8680 /* Add it to the list */
8681 nreg->nlportid = info->snd_portid;
8682 list_add(&nreg->list, &rdev->beacon_registrations);
8683
8684 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +01008685
8686 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07008687out_err:
8688 spin_unlock_bh(&rdev->beacon_registrations_lock);
8689 kfree(nreg);
8690 return rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01008691}
8692
Johannes Berg98104fde2012-06-16 00:19:54 +02008693static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
8694{
8695 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8696 struct wireless_dev *wdev = info->user_ptr[1];
8697 int err;
8698
8699 if (!rdev->ops->start_p2p_device)
8700 return -EOPNOTSUPP;
8701
8702 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8703 return -EOPNOTSUPP;
8704
8705 if (wdev->p2p_started)
8706 return 0;
8707
Johannes Berg98104fde2012-06-16 00:19:54 +02008708 err = cfg80211_can_add_interface(rdev, wdev->iftype);
Johannes Berg98104fde2012-06-16 00:19:54 +02008709 if (err)
8710 return err;
8711
Johannes Bergeeb126e2012-10-23 15:16:50 +02008712 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008713 if (err)
8714 return err;
8715
8716 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02008717 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02008718
8719 return 0;
8720}
8721
8722static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
8723{
8724 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8725 struct wireless_dev *wdev = info->user_ptr[1];
8726
8727 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8728 return -EOPNOTSUPP;
8729
8730 if (!rdev->ops->stop_p2p_device)
8731 return -EOPNOTSUPP;
8732
Johannes Bergf9f47522013-03-19 15:04:07 +01008733 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008734
8735 return 0;
8736}
8737
Johannes Berg3713b4e2013-02-14 16:19:38 +01008738static int nl80211_get_protocol_features(struct sk_buff *skb,
8739 struct genl_info *info)
8740{
8741 void *hdr;
8742 struct sk_buff *msg;
8743
8744 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8745 if (!msg)
8746 return -ENOMEM;
8747
8748 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8749 NL80211_CMD_GET_PROTOCOL_FEATURES);
8750 if (!hdr)
8751 goto nla_put_failure;
8752
8753 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
8754 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
8755 goto nla_put_failure;
8756
8757 genlmsg_end(msg, hdr);
8758 return genlmsg_reply(msg, info);
8759
8760 nla_put_failure:
8761 kfree_skb(msg);
8762 return -ENOBUFS;
8763}
8764
Jouni Malinen355199e2013-02-27 17:14:27 +02008765static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
8766{
8767 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8768 struct cfg80211_update_ft_ies_params ft_params;
8769 struct net_device *dev = info->user_ptr[1];
8770
8771 if (!rdev->ops->update_ft_ies)
8772 return -EOPNOTSUPP;
8773
8774 if (!info->attrs[NL80211_ATTR_MDID] ||
8775 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
8776 return -EINVAL;
8777
8778 memset(&ft_params, 0, sizeof(ft_params));
8779 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
8780 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
8781 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
8782
8783 return rdev_update_ft_ies(rdev, dev, &ft_params);
8784}
8785
Arend van Spriel5de17982013-04-18 15:49:00 +02008786static int nl80211_crit_protocol_start(struct sk_buff *skb,
8787 struct genl_info *info)
8788{
8789 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8790 struct wireless_dev *wdev = info->user_ptr[1];
8791 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
8792 u16 duration;
8793 int ret;
8794
8795 if (!rdev->ops->crit_proto_start)
8796 return -EOPNOTSUPP;
8797
8798 if (WARN_ON(!rdev->ops->crit_proto_stop))
8799 return -EINVAL;
8800
8801 if (rdev->crit_proto_nlportid)
8802 return -EBUSY;
8803
8804 /* determine protocol if provided */
8805 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
8806 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
8807
8808 if (proto >= NUM_NL80211_CRIT_PROTO)
8809 return -EINVAL;
8810
8811 /* timeout must be provided */
8812 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
8813 return -EINVAL;
8814
8815 duration =
8816 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
8817
8818 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
8819 return -ERANGE;
8820
8821 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
8822 if (!ret)
8823 rdev->crit_proto_nlportid = info->snd_portid;
8824
8825 return ret;
8826}
8827
8828static int nl80211_crit_protocol_stop(struct sk_buff *skb,
8829 struct genl_info *info)
8830{
8831 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8832 struct wireless_dev *wdev = info->user_ptr[1];
8833
8834 if (!rdev->ops->crit_proto_stop)
8835 return -EOPNOTSUPP;
8836
8837 if (rdev->crit_proto_nlportid) {
8838 rdev->crit_proto_nlportid = 0;
8839 rdev_crit_proto_stop(rdev, wdev);
8840 }
8841 return 0;
8842}
8843
Johannes Berg4c476992010-10-04 21:36:35 +02008844#define NL80211_FLAG_NEED_WIPHY 0x01
8845#define NL80211_FLAG_NEED_NETDEV 0x02
8846#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02008847#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
8848#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
8849 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02008850#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02008851/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02008852#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
8853 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg4c476992010-10-04 21:36:35 +02008854
8855static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
8856 struct genl_info *info)
8857{
8858 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02008859 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008860 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02008861 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
8862
8863 if (rtnl)
8864 rtnl_lock();
8865
8866 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02008867 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02008868 if (IS_ERR(rdev)) {
8869 if (rtnl)
8870 rtnl_unlock();
8871 return PTR_ERR(rdev);
8872 }
8873 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02008874 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
8875 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008876 ASSERT_RTNL();
8877
Johannes Berg89a54e42012-06-15 14:33:17 +02008878 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
8879 info->attrs);
8880 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02008881 if (rtnl)
8882 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02008883 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02008884 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008885
Johannes Berg89a54e42012-06-15 14:33:17 +02008886 dev = wdev->netdev;
8887 rdev = wiphy_to_dev(wdev->wiphy);
8888
Johannes Berg1bf614e2012-06-15 15:23:36 +02008889 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
8890 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008891 if (rtnl)
8892 rtnl_unlock();
8893 return -EINVAL;
8894 }
8895
8896 info->user_ptr[1] = dev;
8897 } else {
8898 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02008899 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008900
Johannes Berg1bf614e2012-06-15 15:23:36 +02008901 if (dev) {
8902 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
8903 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008904 if (rtnl)
8905 rtnl_unlock();
8906 return -ENETDOWN;
8907 }
8908
8909 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008910 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
8911 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02008912 if (rtnl)
8913 rtnl_unlock();
8914 return -ENETDOWN;
8915 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02008916 }
8917
Johannes Berg4c476992010-10-04 21:36:35 +02008918 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008919 }
8920
8921 return 0;
8922}
8923
8924static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
8925 struct genl_info *info)
8926{
Johannes Berg1bf614e2012-06-15 15:23:36 +02008927 if (info->user_ptr[1]) {
8928 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
8929 struct wireless_dev *wdev = info->user_ptr[1];
8930
8931 if (wdev->netdev)
8932 dev_put(wdev->netdev);
8933 } else {
8934 dev_put(info->user_ptr[1]);
8935 }
8936 }
Johannes Berg4c476992010-10-04 21:36:35 +02008937 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
8938 rtnl_unlock();
8939}
8940
Johannes Berg55682962007-09-20 13:09:35 -04008941static struct genl_ops nl80211_ops[] = {
8942 {
8943 .cmd = NL80211_CMD_GET_WIPHY,
8944 .doit = nl80211_get_wiphy,
8945 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02008946 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04008947 .policy = nl80211_policy,
8948 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008949 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8950 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008951 },
8952 {
8953 .cmd = NL80211_CMD_SET_WIPHY,
8954 .doit = nl80211_set_wiphy,
8955 .policy = nl80211_policy,
8956 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008957 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008958 },
8959 {
8960 .cmd = NL80211_CMD_GET_INTERFACE,
8961 .doit = nl80211_get_interface,
8962 .dumpit = nl80211_dump_interface,
8963 .policy = nl80211_policy,
8964 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008965 .internal_flags = NL80211_FLAG_NEED_WDEV |
8966 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008967 },
8968 {
8969 .cmd = NL80211_CMD_SET_INTERFACE,
8970 .doit = nl80211_set_interface,
8971 .policy = nl80211_policy,
8972 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008973 .internal_flags = NL80211_FLAG_NEED_NETDEV |
8974 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008975 },
8976 {
8977 .cmd = NL80211_CMD_NEW_INTERFACE,
8978 .doit = nl80211_new_interface,
8979 .policy = nl80211_policy,
8980 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008981 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8982 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008983 },
8984 {
8985 .cmd = NL80211_CMD_DEL_INTERFACE,
8986 .doit = nl80211_del_interface,
8987 .policy = nl80211_policy,
8988 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02008989 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02008990 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008991 },
Johannes Berg41ade002007-12-19 02:03:29 +01008992 {
8993 .cmd = NL80211_CMD_GET_KEY,
8994 .doit = nl80211_get_key,
8995 .policy = nl80211_policy,
8996 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008997 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008998 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01008999 },
9000 {
9001 .cmd = NL80211_CMD_SET_KEY,
9002 .doit = nl80211_set_key,
9003 .policy = nl80211_policy,
9004 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009005 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009006 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009007 },
9008 {
9009 .cmd = NL80211_CMD_NEW_KEY,
9010 .doit = nl80211_new_key,
9011 .policy = nl80211_policy,
9012 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009013 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009014 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009015 },
9016 {
9017 .cmd = NL80211_CMD_DEL_KEY,
9018 .doit = nl80211_del_key,
9019 .policy = nl80211_policy,
9020 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009021 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009022 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009023 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01009024 {
9025 .cmd = NL80211_CMD_SET_BEACON,
9026 .policy = nl80211_policy,
9027 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009028 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009029 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009030 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009031 },
9032 {
Johannes Berg88600202012-02-13 15:17:18 +01009033 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009034 .policy = nl80211_policy,
9035 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009036 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009037 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009038 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009039 },
9040 {
Johannes Berg88600202012-02-13 15:17:18 +01009041 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009042 .policy = nl80211_policy,
9043 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009044 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009045 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009046 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009047 },
Johannes Berg5727ef12007-12-19 02:03:34 +01009048 {
9049 .cmd = NL80211_CMD_GET_STATION,
9050 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009051 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01009052 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02009053 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9054 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009055 },
9056 {
9057 .cmd = NL80211_CMD_SET_STATION,
9058 .doit = nl80211_set_station,
9059 .policy = nl80211_policy,
9060 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009061 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009062 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009063 },
9064 {
9065 .cmd = NL80211_CMD_NEW_STATION,
9066 .doit = nl80211_new_station,
9067 .policy = nl80211_policy,
9068 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009069 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009070 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009071 },
9072 {
9073 .cmd = NL80211_CMD_DEL_STATION,
9074 .doit = nl80211_del_station,
9075 .policy = nl80211_policy,
9076 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009077 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009078 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009079 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009080 {
9081 .cmd = NL80211_CMD_GET_MPATH,
9082 .doit = nl80211_get_mpath,
9083 .dumpit = nl80211_dump_mpath,
9084 .policy = nl80211_policy,
9085 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009086 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009087 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009088 },
9089 {
9090 .cmd = NL80211_CMD_SET_MPATH,
9091 .doit = nl80211_set_mpath,
9092 .policy = nl80211_policy,
9093 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009094 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009095 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009096 },
9097 {
9098 .cmd = NL80211_CMD_NEW_MPATH,
9099 .doit = nl80211_new_mpath,
9100 .policy = nl80211_policy,
9101 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009102 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009103 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009104 },
9105 {
9106 .cmd = NL80211_CMD_DEL_MPATH,
9107 .doit = nl80211_del_mpath,
9108 .policy = nl80211_policy,
9109 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009110 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009111 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009112 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009113 {
9114 .cmd = NL80211_CMD_SET_BSS,
9115 .doit = nl80211_set_bss,
9116 .policy = nl80211_policy,
9117 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009118 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009119 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009120 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009121 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009122 .cmd = NL80211_CMD_GET_REG,
9123 .doit = nl80211_get_reg,
9124 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009125 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009126 /* can be retrieved by unprivileged users */
9127 },
9128 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009129 .cmd = NL80211_CMD_SET_REG,
9130 .doit = nl80211_set_reg,
9131 .policy = nl80211_policy,
9132 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009133 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009134 },
9135 {
9136 .cmd = NL80211_CMD_REQ_SET_REG,
9137 .doit = nl80211_req_set_reg,
9138 .policy = nl80211_policy,
9139 .flags = GENL_ADMIN_PERM,
9140 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009141 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009142 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9143 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009144 .policy = nl80211_policy,
9145 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009146 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009147 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009148 },
9149 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009150 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9151 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009152 .policy = nl80211_policy,
9153 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009154 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009155 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009156 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009157 {
Johannes Berg2a519312009-02-10 21:25:55 +01009158 .cmd = NL80211_CMD_TRIGGER_SCAN,
9159 .doit = nl80211_trigger_scan,
9160 .policy = nl80211_policy,
9161 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009162 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009163 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009164 },
9165 {
9166 .cmd = NL80211_CMD_GET_SCAN,
9167 .policy = nl80211_policy,
9168 .dumpit = nl80211_dump_scan,
9169 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009170 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009171 .cmd = NL80211_CMD_START_SCHED_SCAN,
9172 .doit = nl80211_start_sched_scan,
9173 .policy = nl80211_policy,
9174 .flags = GENL_ADMIN_PERM,
9175 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9176 NL80211_FLAG_NEED_RTNL,
9177 },
9178 {
9179 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9180 .doit = nl80211_stop_sched_scan,
9181 .policy = nl80211_policy,
9182 .flags = GENL_ADMIN_PERM,
9183 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9184 NL80211_FLAG_NEED_RTNL,
9185 },
9186 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009187 .cmd = NL80211_CMD_AUTHENTICATE,
9188 .doit = nl80211_authenticate,
9189 .policy = nl80211_policy,
9190 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009191 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009192 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009193 },
9194 {
9195 .cmd = NL80211_CMD_ASSOCIATE,
9196 .doit = nl80211_associate,
9197 .policy = nl80211_policy,
9198 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009199 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009200 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009201 },
9202 {
9203 .cmd = NL80211_CMD_DEAUTHENTICATE,
9204 .doit = nl80211_deauthenticate,
9205 .policy = nl80211_policy,
9206 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009207 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009208 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009209 },
9210 {
9211 .cmd = NL80211_CMD_DISASSOCIATE,
9212 .doit = nl80211_disassociate,
9213 .policy = nl80211_policy,
9214 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009215 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009216 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009217 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009218 {
9219 .cmd = NL80211_CMD_JOIN_IBSS,
9220 .doit = nl80211_join_ibss,
9221 .policy = nl80211_policy,
9222 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009223 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009224 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009225 },
9226 {
9227 .cmd = NL80211_CMD_LEAVE_IBSS,
9228 .doit = nl80211_leave_ibss,
9229 .policy = nl80211_policy,
9230 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009231 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009232 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009233 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009234#ifdef CONFIG_NL80211_TESTMODE
9235 {
9236 .cmd = NL80211_CMD_TESTMODE,
9237 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009238 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009239 .policy = nl80211_policy,
9240 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009241 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9242 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009243 },
9244#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009245 {
9246 .cmd = NL80211_CMD_CONNECT,
9247 .doit = nl80211_connect,
9248 .policy = nl80211_policy,
9249 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009250 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009251 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009252 },
9253 {
9254 .cmd = NL80211_CMD_DISCONNECT,
9255 .doit = nl80211_disconnect,
9256 .policy = nl80211_policy,
9257 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009258 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009259 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009260 },
Johannes Berg463d0182009-07-14 00:33:35 +02009261 {
9262 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9263 .doit = nl80211_wiphy_netns,
9264 .policy = nl80211_policy,
9265 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009266 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9267 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009268 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009269 {
9270 .cmd = NL80211_CMD_GET_SURVEY,
9271 .policy = nl80211_policy,
9272 .dumpit = nl80211_dump_survey,
9273 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009274 {
9275 .cmd = NL80211_CMD_SET_PMKSA,
9276 .doit = nl80211_setdel_pmksa,
9277 .policy = nl80211_policy,
9278 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009279 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009280 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009281 },
9282 {
9283 .cmd = NL80211_CMD_DEL_PMKSA,
9284 .doit = nl80211_setdel_pmksa,
9285 .policy = nl80211_policy,
9286 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009287 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009288 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009289 },
9290 {
9291 .cmd = NL80211_CMD_FLUSH_PMKSA,
9292 .doit = nl80211_flush_pmksa,
9293 .policy = nl80211_policy,
9294 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009295 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009296 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009297 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009298 {
9299 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9300 .doit = nl80211_remain_on_channel,
9301 .policy = nl80211_policy,
9302 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009303 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009304 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009305 },
9306 {
9307 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9308 .doit = nl80211_cancel_remain_on_channel,
9309 .policy = nl80211_policy,
9310 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009311 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009312 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009313 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009314 {
9315 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
9316 .doit = nl80211_set_tx_bitrate_mask,
9317 .policy = nl80211_policy,
9318 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009319 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9320 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009321 },
Jouni Malinen026331c2010-02-15 12:53:10 +02009322 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009323 .cmd = NL80211_CMD_REGISTER_FRAME,
9324 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009325 .policy = nl80211_policy,
9326 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009327 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009328 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009329 },
9330 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009331 .cmd = NL80211_CMD_FRAME,
9332 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009333 .policy = nl80211_policy,
9334 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009335 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009336 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009337 },
Kalle Valoffb9eb32010-02-17 17:58:10 +02009338 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009339 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
9340 .doit = nl80211_tx_mgmt_cancel_wait,
9341 .policy = nl80211_policy,
9342 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009343 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009344 NL80211_FLAG_NEED_RTNL,
9345 },
9346 {
Kalle Valoffb9eb32010-02-17 17:58:10 +02009347 .cmd = NL80211_CMD_SET_POWER_SAVE,
9348 .doit = nl80211_set_power_save,
9349 .policy = nl80211_policy,
9350 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009351 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9352 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009353 },
9354 {
9355 .cmd = NL80211_CMD_GET_POWER_SAVE,
9356 .doit = nl80211_get_power_save,
9357 .policy = nl80211_policy,
9358 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +02009359 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9360 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009361 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009362 {
9363 .cmd = NL80211_CMD_SET_CQM,
9364 .doit = nl80211_set_cqm,
9365 .policy = nl80211_policy,
9366 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009367 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9368 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009369 },
Johannes Bergf444de02010-05-05 15:25:02 +02009370 {
9371 .cmd = NL80211_CMD_SET_CHANNEL,
9372 .doit = nl80211_set_channel,
9373 .policy = nl80211_policy,
9374 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009375 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9376 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +02009377 },
Bill Jordane8347eb2010-10-01 13:54:28 -04009378 {
9379 .cmd = NL80211_CMD_SET_WDS_PEER,
9380 .doit = nl80211_set_wds_peer,
9381 .policy = nl80211_policy,
9382 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +02009383 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9384 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -04009385 },
Johannes Berg29cbe682010-12-03 09:20:44 +01009386 {
9387 .cmd = NL80211_CMD_JOIN_MESH,
9388 .doit = nl80211_join_mesh,
9389 .policy = nl80211_policy,
9390 .flags = GENL_ADMIN_PERM,
9391 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9392 NL80211_FLAG_NEED_RTNL,
9393 },
9394 {
9395 .cmd = NL80211_CMD_LEAVE_MESH,
9396 .doit = nl80211_leave_mesh,
9397 .policy = nl80211_policy,
9398 .flags = GENL_ADMIN_PERM,
9399 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9400 NL80211_FLAG_NEED_RTNL,
9401 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009402#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02009403 {
9404 .cmd = NL80211_CMD_GET_WOWLAN,
9405 .doit = nl80211_get_wowlan,
9406 .policy = nl80211_policy,
9407 /* can be retrieved by unprivileged users */
9408 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9409 NL80211_FLAG_NEED_RTNL,
9410 },
9411 {
9412 .cmd = NL80211_CMD_SET_WOWLAN,
9413 .doit = nl80211_set_wowlan,
9414 .policy = nl80211_policy,
9415 .flags = GENL_ADMIN_PERM,
9416 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9417 NL80211_FLAG_NEED_RTNL,
9418 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009419#endif
Johannes Berge5497d72011-07-05 16:35:40 +02009420 {
9421 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
9422 .doit = nl80211_set_rekey_data,
9423 .policy = nl80211_policy,
9424 .flags = GENL_ADMIN_PERM,
9425 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9426 NL80211_FLAG_NEED_RTNL,
9427 },
Arik Nemtsov109086c2011-09-28 14:12:50 +03009428 {
9429 .cmd = NL80211_CMD_TDLS_MGMT,
9430 .doit = nl80211_tdls_mgmt,
9431 .policy = nl80211_policy,
9432 .flags = GENL_ADMIN_PERM,
9433 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9434 NL80211_FLAG_NEED_RTNL,
9435 },
9436 {
9437 .cmd = NL80211_CMD_TDLS_OPER,
9438 .doit = nl80211_tdls_oper,
9439 .policy = nl80211_policy,
9440 .flags = GENL_ADMIN_PERM,
9441 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9442 NL80211_FLAG_NEED_RTNL,
9443 },
Johannes Berg28946da2011-11-04 11:18:12 +01009444 {
9445 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
9446 .doit = nl80211_register_unexpected_frame,
9447 .policy = nl80211_policy,
9448 .flags = GENL_ADMIN_PERM,
9449 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9450 NL80211_FLAG_NEED_RTNL,
9451 },
Johannes Berg7f6cf312011-11-04 11:18:15 +01009452 {
9453 .cmd = NL80211_CMD_PROBE_CLIENT,
9454 .doit = nl80211_probe_client,
9455 .policy = nl80211_policy,
9456 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009457 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +01009458 NL80211_FLAG_NEED_RTNL,
9459 },
Johannes Berg5e7602302011-11-04 11:18:17 +01009460 {
9461 .cmd = NL80211_CMD_REGISTER_BEACONS,
9462 .doit = nl80211_register_beacons,
9463 .policy = nl80211_policy,
9464 .flags = GENL_ADMIN_PERM,
9465 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9466 NL80211_FLAG_NEED_RTNL,
9467 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01009468 {
9469 .cmd = NL80211_CMD_SET_NOACK_MAP,
9470 .doit = nl80211_set_noack_map,
9471 .policy = nl80211_policy,
9472 .flags = GENL_ADMIN_PERM,
9473 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9474 NL80211_FLAG_NEED_RTNL,
9475 },
Johannes Berg98104fde2012-06-16 00:19:54 +02009476 {
9477 .cmd = NL80211_CMD_START_P2P_DEVICE,
9478 .doit = nl80211_start_p2p_device,
9479 .policy = nl80211_policy,
9480 .flags = GENL_ADMIN_PERM,
9481 .internal_flags = NL80211_FLAG_NEED_WDEV |
9482 NL80211_FLAG_NEED_RTNL,
9483 },
9484 {
9485 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
9486 .doit = nl80211_stop_p2p_device,
9487 .policy = nl80211_policy,
9488 .flags = GENL_ADMIN_PERM,
9489 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9490 NL80211_FLAG_NEED_RTNL,
9491 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +01009492 {
9493 .cmd = NL80211_CMD_SET_MCAST_RATE,
9494 .doit = nl80211_set_mcast_rate,
9495 .policy = nl80211_policy,
9496 .flags = GENL_ADMIN_PERM,
9497 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9498 NL80211_FLAG_NEED_RTNL,
9499 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05309500 {
9501 .cmd = NL80211_CMD_SET_MAC_ACL,
9502 .doit = nl80211_set_mac_acl,
9503 .policy = nl80211_policy,
9504 .flags = GENL_ADMIN_PERM,
9505 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9506 NL80211_FLAG_NEED_RTNL,
9507 },
Simon Wunderlich04f39042013-02-08 18:16:19 +01009508 {
9509 .cmd = NL80211_CMD_RADAR_DETECT,
9510 .doit = nl80211_start_radar_detection,
9511 .policy = nl80211_policy,
9512 .flags = GENL_ADMIN_PERM,
9513 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9514 NL80211_FLAG_NEED_RTNL,
9515 },
Johannes Berg3713b4e2013-02-14 16:19:38 +01009516 {
9517 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
9518 .doit = nl80211_get_protocol_features,
9519 .policy = nl80211_policy,
9520 },
Jouni Malinen355199e2013-02-27 17:14:27 +02009521 {
9522 .cmd = NL80211_CMD_UPDATE_FT_IES,
9523 .doit = nl80211_update_ft_ies,
9524 .policy = nl80211_policy,
9525 .flags = GENL_ADMIN_PERM,
9526 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9527 NL80211_FLAG_NEED_RTNL,
9528 },
Arend van Spriel5de17982013-04-18 15:49:00 +02009529 {
9530 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
9531 .doit = nl80211_crit_protocol_start,
9532 .policy = nl80211_policy,
9533 .flags = GENL_ADMIN_PERM,
9534 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9535 NL80211_FLAG_NEED_RTNL,
9536 },
9537 {
9538 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
9539 .doit = nl80211_crit_protocol_stop,
9540 .policy = nl80211_policy,
9541 .flags = GENL_ADMIN_PERM,
9542 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9543 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07009544 },
9545 {
9546 .cmd = NL80211_CMD_GET_COALESCE,
9547 .doit = nl80211_get_coalesce,
9548 .policy = nl80211_policy,
9549 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9550 NL80211_FLAG_NEED_RTNL,
9551 },
9552 {
9553 .cmd = NL80211_CMD_SET_COALESCE,
9554 .doit = nl80211_set_coalesce,
9555 .policy = nl80211_policy,
9556 .flags = GENL_ADMIN_PERM,
9557 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9558 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02009559 },
9560 {
9561 .cmd = NL80211_CMD_CHANNEL_SWITCH,
9562 .doit = nl80211_channel_switch,
9563 .policy = nl80211_policy,
9564 .flags = GENL_ADMIN_PERM,
9565 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9566 NL80211_FLAG_NEED_RTNL,
9567 },
Johannes Berg55682962007-09-20 13:09:35 -04009568};
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009569
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009570static struct genl_multicast_group nl80211_mlme_mcgrp = {
9571 .name = "mlme",
9572};
Johannes Berg55682962007-09-20 13:09:35 -04009573
9574/* multicast groups */
9575static struct genl_multicast_group nl80211_config_mcgrp = {
9576 .name = "config",
9577};
Johannes Berg2a519312009-02-10 21:25:55 +01009578static struct genl_multicast_group nl80211_scan_mcgrp = {
9579 .name = "scan",
9580};
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009581static struct genl_multicast_group nl80211_regulatory_mcgrp = {
9582 .name = "regulatory",
9583};
Johannes Berg55682962007-09-20 13:09:35 -04009584
9585/* notification functions */
9586
9587void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
9588{
9589 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +02009590 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04009591
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009592 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009593 if (!msg)
9594 return;
9595
Johannes Berg86e8cf92013-06-19 10:57:22 +02009596 if (nl80211_send_wiphy(rdev, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -04009597 nlmsg_free(msg);
9598 return;
9599 }
9600
Johannes Berg463d0182009-07-14 00:33:35 +02009601 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9602 nl80211_config_mcgrp.id, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009603}
9604
Johannes Berg362a4152009-05-24 16:43:15 +02009605static int nl80211_add_scan_req(struct sk_buff *msg,
9606 struct cfg80211_registered_device *rdev)
9607{
9608 struct cfg80211_scan_request *req = rdev->scan_req;
9609 struct nlattr *nest;
9610 int i;
9611
9612 if (WARN_ON(!req))
9613 return 0;
9614
9615 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
9616 if (!nest)
9617 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009618 for (i = 0; i < req->n_ssids; i++) {
9619 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
9620 goto nla_put_failure;
9621 }
Johannes Berg362a4152009-05-24 16:43:15 +02009622 nla_nest_end(msg, nest);
9623
9624 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
9625 if (!nest)
9626 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009627 for (i = 0; i < req->n_channels; i++) {
9628 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
9629 goto nla_put_failure;
9630 }
Johannes Berg362a4152009-05-24 16:43:15 +02009631 nla_nest_end(msg, nest);
9632
David S. Miller9360ffd2012-03-29 04:41:26 -04009633 if (req->ie &&
9634 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
9635 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +02009636
Sam Lefflered4737712012-10-11 21:03:31 -07009637 if (req->flags)
9638 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags);
9639
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 Berg463d0182009-07-14 00:33:35 +02009711 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9712 nl80211_scan_mcgrp.id, 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 Berg463d0182009-07-14 00:33:35 +02009730 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9731 nl80211_scan_mcgrp.id, 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 Berg463d0182009-07-14 00:33:35 +02009749 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9750 nl80211_scan_mcgrp.id, 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
9768 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9769 nl80211_scan_mcgrp.id, GFP_KERNEL);
9770}
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
9786 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9787 nl80211_scan_mcgrp.id, GFP_KERNEL);
9788}
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 Berg463d0182009-07-14 00:33:35 +02009841 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
Johannes Bergbc43b282009-07-25 10:54:13 +02009842 GFP_ATOMIC);
9843 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 Berg463d0182009-07-14 00:33:35 +02009877 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9878 nl80211_mlme_mcgrp.id, 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 Berg463d0182009-07-14 00:33:35 +02009965 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9966 nl80211_mlme_mcgrp.id, 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 Berg463d0182009-07-14 00:33:35 +020010021 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10022 nl80211_mlme_mcgrp.id, 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 Berg463d0182009-07-14 00:33:35 +020010060 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10061 nl80211_mlme_mcgrp.id, 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 Berg667503dd2009-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 Berg463d0182009-07-14 00:33:35 +020010098 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10099 nl80211_mlme_mcgrp.id, 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 Berg463d0182009-07-14 00:33:35 +020010132 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10133 nl80211_mlme_mcgrp.id, 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
10173 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10174 nl80211_mlme_mcgrp.id, gfp);
10175 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 Berg463d0182009-07-14 00:33:35 +020010212 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10213 nl80211_mlme_mcgrp.id, 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();
10265 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
10266 GFP_ATOMIC);
10267 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
10311 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10312 nl80211_mlme_mcgrp.id, gfp);
10313 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
10366 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10367 nl80211_mlme_mcgrp.id, gfp);
10368}
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
10396 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10397 nl80211_mlme_mcgrp.id, gfp);
10398 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
10432 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10433 nl80211_mlme_mcgrp.id, gfp);
10434 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
Michal Kaziora0ec5702013-06-25 09:17:17 +020010594 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10595 nl80211_mlme_mcgrp.id, 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
10643 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10644 nl80211_mlme_mcgrp.id, gfp);
10645 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
10688 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10689 nl80211_mlme_mcgrp.id, gfp);
10690 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
10746 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10747 nl80211_mlme_mcgrp.id, gfp);
10748 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
10793 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10794 nl80211_mlme_mcgrp.id, gfp);
10795 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 &&
10815 wdev->iftype != NL80211_IFTYPE_ADHOC))
Johannes Berg947add32013-02-22 22:05:20 +010010816 goto out;
10817
10818 wdev->channel = chandef->chan;
10819 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
10820out:
10821 wdev_unlock(wdev);
10822 return;
10823}
10824EXPORT_SYMBOL(cfg80211_ch_switch_notify);
10825
10826void cfg80211_cqm_txe_notify(struct net_device *dev,
10827 const u8 *peer, u32 num_packets,
10828 u32 rate, u32 intvl, gfp_t gfp)
10829{
10830 struct wireless_dev *wdev = dev->ieee80211_ptr;
10831 struct wiphy *wiphy = wdev->wiphy;
10832 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010833 struct sk_buff *msg;
10834 struct nlattr *pinfoattr;
10835 void *hdr;
10836
10837 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10838 if (!msg)
10839 return;
10840
10841 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10842 if (!hdr) {
10843 nlmsg_free(msg);
10844 return;
10845 }
10846
10847 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010848 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070010849 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10850 goto nla_put_failure;
10851
10852 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10853 if (!pinfoattr)
10854 goto nla_put_failure;
10855
10856 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
10857 goto nla_put_failure;
10858
10859 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
10860 goto nla_put_failure;
10861
10862 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
10863 goto nla_put_failure;
10864
10865 nla_nest_end(msg, pinfoattr);
10866
10867 genlmsg_end(msg, hdr);
10868
10869 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10870 nl80211_mlme_mcgrp.id, gfp);
10871 return;
10872
10873 nla_put_failure:
10874 genlmsg_cancel(msg, hdr);
10875 nlmsg_free(msg);
10876}
Johannes Berg947add32013-02-22 22:05:20 +010010877EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010878
10879void
Simon Wunderlich04f39042013-02-08 18:16:19 +010010880nl80211_radar_notify(struct cfg80211_registered_device *rdev,
10881 struct cfg80211_chan_def *chandef,
10882 enum nl80211_radar_event event,
10883 struct net_device *netdev, gfp_t gfp)
10884{
10885 struct sk_buff *msg;
10886 void *hdr;
10887
10888 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10889 if (!msg)
10890 return;
10891
10892 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
10893 if (!hdr) {
10894 nlmsg_free(msg);
10895 return;
10896 }
10897
10898 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
10899 goto nla_put_failure;
10900
10901 /* NOP and radar events don't need a netdev parameter */
10902 if (netdev) {
10903 struct wireless_dev *wdev = netdev->ieee80211_ptr;
10904
10905 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10906 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
10907 goto nla_put_failure;
10908 }
10909
10910 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
10911 goto nla_put_failure;
10912
10913 if (nl80211_send_chandef(msg, chandef))
10914 goto nla_put_failure;
10915
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010916 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010010917
10918 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10919 nl80211_mlme_mcgrp.id, gfp);
10920 return;
10921
10922 nla_put_failure:
10923 genlmsg_cancel(msg, hdr);
10924 nlmsg_free(msg);
10925}
10926
Johannes Berg947add32013-02-22 22:05:20 +010010927void cfg80211_cqm_pktloss_notify(struct net_device *dev,
10928 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010010929{
Johannes Berg947add32013-02-22 22:05:20 +010010930 struct wireless_dev *wdev = dev->ieee80211_ptr;
10931 struct wiphy *wiphy = wdev->wiphy;
10932 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010933 struct sk_buff *msg;
10934 struct nlattr *pinfoattr;
10935 void *hdr;
10936
Johannes Berg947add32013-02-22 22:05:20 +010010937 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
10938
Thomas Graf58050fc2012-06-28 03:57:45 +000010939 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010940 if (!msg)
10941 return;
10942
10943 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10944 if (!hdr) {
10945 nlmsg_free(msg);
10946 return;
10947 }
10948
David S. Miller9360ffd2012-03-29 04:41:26 -040010949 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010950 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010951 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10952 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010953
10954 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10955 if (!pinfoattr)
10956 goto nla_put_failure;
10957
David S. Miller9360ffd2012-03-29 04:41:26 -040010958 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
10959 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010960
10961 nla_nest_end(msg, pinfoattr);
10962
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010963 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010964
10965 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10966 nl80211_mlme_mcgrp.id, gfp);
10967 return;
10968
10969 nla_put_failure:
10970 genlmsg_cancel(msg, hdr);
10971 nlmsg_free(msg);
10972}
Johannes Berg947add32013-02-22 22:05:20 +010010973EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010974
Johannes Berg7f6cf312011-11-04 11:18:15 +010010975void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
10976 u64 cookie, bool acked, gfp_t gfp)
10977{
10978 struct wireless_dev *wdev = dev->ieee80211_ptr;
10979 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10980 struct sk_buff *msg;
10981 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010982
Beni Lev4ee3e062012-08-27 12:49:39 +030010983 trace_cfg80211_probe_status(dev, addr, cookie, acked);
10984
Thomas Graf58050fc2012-06-28 03:57:45 +000010985 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030010986
Johannes Berg7f6cf312011-11-04 11:18:15 +010010987 if (!msg)
10988 return;
10989
10990 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
10991 if (!hdr) {
10992 nlmsg_free(msg);
10993 return;
10994 }
10995
David S. Miller9360ffd2012-03-29 04:41:26 -040010996 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10997 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10998 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
10999 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11000 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
11001 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011002
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011003 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011004
11005 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11006 nl80211_mlme_mcgrp.id, gfp);
11007 return;
11008
11009 nla_put_failure:
11010 genlmsg_cancel(msg, hdr);
11011 nlmsg_free(msg);
11012}
11013EXPORT_SYMBOL(cfg80211_probe_status);
11014
Johannes Berg5e7602302011-11-04 11:18:17 +010011015void cfg80211_report_obss_beacon(struct wiphy *wiphy,
11016 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070011017 int freq, int sig_dbm)
Johannes Berg5e7602302011-11-04 11:18:17 +010011018{
11019 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11020 struct sk_buff *msg;
11021 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070011022 struct cfg80211_beacon_registration *reg;
Johannes Berg5e7602302011-11-04 11:18:17 +010011023
Beni Lev4ee3e062012-08-27 12:49:39 +030011024 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
11025
Ben Greear37c73b52012-10-26 14:49:25 -070011026 spin_lock_bh(&rdev->beacon_registrations_lock);
11027 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
11028 msg = nlmsg_new(len + 100, GFP_ATOMIC);
11029 if (!msg) {
11030 spin_unlock_bh(&rdev->beacon_registrations_lock);
11031 return;
11032 }
Johannes Berg5e7602302011-11-04 11:18:17 +010011033
Ben Greear37c73b52012-10-26 14:49:25 -070011034 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
11035 if (!hdr)
11036 goto nla_put_failure;
Johannes Berg5e7602302011-11-04 11:18:17 +010011037
Ben Greear37c73b52012-10-26 14:49:25 -070011038 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11039 (freq &&
11040 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
11041 (sig_dbm &&
11042 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
11043 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
11044 goto nla_put_failure;
11045
11046 genlmsg_end(msg, hdr);
11047
11048 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e7602302011-11-04 11:18:17 +010011049 }
Ben Greear37c73b52012-10-26 14:49:25 -070011050 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010011051 return;
11052
11053 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070011054 spin_unlock_bh(&rdev->beacon_registrations_lock);
11055 if (hdr)
11056 genlmsg_cancel(msg, hdr);
Johannes Berg5e7602302011-11-04 11:18:17 +010011057 nlmsg_free(msg);
11058}
11059EXPORT_SYMBOL(cfg80211_report_obss_beacon);
11060
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011061#ifdef CONFIG_PM
11062void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
11063 struct cfg80211_wowlan_wakeup *wakeup,
11064 gfp_t gfp)
11065{
11066 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11067 struct sk_buff *msg;
11068 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011069 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011070
11071 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11072
11073 if (wakeup)
11074 size += wakeup->packet_present_len;
11075
11076 msg = nlmsg_new(size, gfp);
11077 if (!msg)
11078 return;
11079
11080 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11081 if (!hdr)
11082 goto free_msg;
11083
11084 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11085 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11086 goto free_msg;
11087
11088 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11089 wdev->netdev->ifindex))
11090 goto free_msg;
11091
11092 if (wakeup) {
11093 struct nlattr *reasons;
11094
11095 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
11096
11097 if (wakeup->disconnect &&
11098 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11099 goto free_msg;
11100 if (wakeup->magic_pkt &&
11101 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11102 goto free_msg;
11103 if (wakeup->gtk_rekey_failure &&
11104 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11105 goto free_msg;
11106 if (wakeup->eap_identity_req &&
11107 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11108 goto free_msg;
11109 if (wakeup->four_way_handshake &&
11110 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11111 goto free_msg;
11112 if (wakeup->rfkill_release &&
11113 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11114 goto free_msg;
11115
11116 if (wakeup->pattern_idx >= 0 &&
11117 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11118 wakeup->pattern_idx))
11119 goto free_msg;
11120
Johannes Berg2a0e0472013-01-23 22:57:40 +010011121 if (wakeup->tcp_match)
11122 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH);
11123
11124 if (wakeup->tcp_connlost)
11125 nla_put_flag(msg,
11126 NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST);
11127
11128 if (wakeup->tcp_nomoretokens)
11129 nla_put_flag(msg,
11130 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS);
11131
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011132 if (wakeup->packet) {
11133 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11134 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11135
11136 if (!wakeup->packet_80211) {
11137 pkt_attr =
11138 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11139 len_attr =
11140 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11141 }
11142
11143 if (wakeup->packet_len &&
11144 nla_put_u32(msg, len_attr, wakeup->packet_len))
11145 goto free_msg;
11146
11147 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11148 wakeup->packet))
11149 goto free_msg;
11150 }
11151
11152 nla_nest_end(msg, reasons);
11153 }
11154
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011155 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011156
11157 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11158 nl80211_mlme_mcgrp.id, gfp);
11159 return;
11160
11161 free_msg:
11162 nlmsg_free(msg);
11163}
11164EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11165#endif
11166
Jouni Malinen3475b092012-11-16 22:49:57 +020011167void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11168 enum nl80211_tdls_operation oper,
11169 u16 reason_code, gfp_t gfp)
11170{
11171 struct wireless_dev *wdev = dev->ieee80211_ptr;
11172 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11173 struct sk_buff *msg;
11174 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011175
11176 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11177 reason_code);
11178
11179 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11180 if (!msg)
11181 return;
11182
11183 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11184 if (!hdr) {
11185 nlmsg_free(msg);
11186 return;
11187 }
11188
11189 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11190 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11191 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11192 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11193 (reason_code > 0 &&
11194 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11195 goto nla_put_failure;
11196
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011197 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011198
11199 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11200 nl80211_mlme_mcgrp.id, gfp);
11201 return;
11202
11203 nla_put_failure:
11204 genlmsg_cancel(msg, hdr);
11205 nlmsg_free(msg);
11206}
11207EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11208
Jouni Malinen026331c2010-02-15 12:53:10 +020011209static int nl80211_netlink_notify(struct notifier_block * nb,
11210 unsigned long state,
11211 void *_notify)
11212{
11213 struct netlink_notify *notify = _notify;
11214 struct cfg80211_registered_device *rdev;
11215 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011216 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011217
11218 if (state != NETLINK_URELEASE)
11219 return NOTIFY_DONE;
11220
11221 rcu_read_lock();
11222
Johannes Berg5e7602302011-11-04 11:18:17 +010011223 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +020011224 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
Eric W. Biederman15e47302012-09-07 20:12:54 +000011225 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011226
11227 spin_lock_bh(&rdev->beacon_registrations_lock);
11228 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11229 list) {
11230 if (reg->nlportid == notify->portid) {
11231 list_del(&reg->list);
11232 kfree(reg);
11233 break;
11234 }
11235 }
11236 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010011237 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011238
11239 rcu_read_unlock();
11240
11241 return NOTIFY_DONE;
11242}
11243
11244static struct notifier_block nl80211_netlink_notifier = {
11245 .notifier_call = nl80211_netlink_notify,
11246};
11247
Jouni Malinen355199e2013-02-27 17:14:27 +020011248void cfg80211_ft_event(struct net_device *netdev,
11249 struct cfg80211_ft_event_params *ft_event)
11250{
11251 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
11252 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11253 struct sk_buff *msg;
11254 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020011255
11256 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
11257
11258 if (!ft_event->target_ap)
11259 return;
11260
11261 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11262 if (!msg)
11263 return;
11264
11265 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
11266 if (!hdr) {
11267 nlmsg_free(msg);
11268 return;
11269 }
11270
11271 nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
11272 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
11273 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap);
11274 if (ft_event->ies)
11275 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies);
11276 if (ft_event->ric_ies)
11277 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
11278 ft_event->ric_ies);
11279
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011280 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020011281
11282 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11283 nl80211_mlme_mcgrp.id, GFP_KERNEL);
11284}
11285EXPORT_SYMBOL(cfg80211_ft_event);
11286
Arend van Spriel5de17982013-04-18 15:49:00 +020011287void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
11288{
11289 struct cfg80211_registered_device *rdev;
11290 struct sk_buff *msg;
11291 void *hdr;
11292 u32 nlportid;
11293
11294 rdev = wiphy_to_dev(wdev->wiphy);
11295 if (!rdev->crit_proto_nlportid)
11296 return;
11297
11298 nlportid = rdev->crit_proto_nlportid;
11299 rdev->crit_proto_nlportid = 0;
11300
11301 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11302 if (!msg)
11303 return;
11304
11305 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
11306 if (!hdr)
11307 goto nla_put_failure;
11308
11309 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11310 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11311 goto nla_put_failure;
11312
11313 genlmsg_end(msg, hdr);
11314
11315 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
11316 return;
11317
11318 nla_put_failure:
11319 if (hdr)
11320 genlmsg_cancel(msg, hdr);
11321 nlmsg_free(msg);
11322
11323}
11324EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
11325
Johannes Berg55682962007-09-20 13:09:35 -040011326/* initialisation/exit functions */
11327
11328int nl80211_init(void)
11329{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011330 int err;
Johannes Berg55682962007-09-20 13:09:35 -040011331
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011332 err = genl_register_family_with_ops(&nl80211_fam,
11333 nl80211_ops, ARRAY_SIZE(nl80211_ops));
Johannes Berg55682962007-09-20 13:09:35 -040011334 if (err)
11335 return err;
11336
Johannes Berg55682962007-09-20 13:09:35 -040011337 err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
11338 if (err)
11339 goto err_out;
11340
Johannes Berg2a519312009-02-10 21:25:55 +010011341 err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
11342 if (err)
11343 goto err_out;
11344
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040011345 err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
11346 if (err)
11347 goto err_out;
11348
Jouni Malinen6039f6d2009-03-19 13:39:21 +020011349 err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
11350 if (err)
11351 goto err_out;
11352
Johannes Bergaff89a92009-07-01 21:26:51 +020011353#ifdef CONFIG_NL80211_TESTMODE
11354 err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp);
11355 if (err)
11356 goto err_out;
11357#endif
11358
Jouni Malinen026331c2010-02-15 12:53:10 +020011359 err = netlink_register_notifier(&nl80211_netlink_notifier);
11360 if (err)
11361 goto err_out;
11362
Johannes Berg55682962007-09-20 13:09:35 -040011363 return 0;
11364 err_out:
11365 genl_unregister_family(&nl80211_fam);
11366 return err;
11367}
11368
11369void nl80211_exit(void)
11370{
Jouni Malinen026331c2010-02-15 12:53:10 +020011371 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040011372 genl_unregister_family(&nl80211_fam);
11373}