blob: c49f0af61d5e8020cefaeebb07c7b24b251fb4ff [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 Malinen36aedc92008-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 Malinen36aedc92008-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 Malinen36aedc92008-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:
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07005703 case NL80211_IFTYPE_MESH_POINT:
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005704 break;
5705 default:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005706 return -EOPNOTSUPP;
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005707 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005708
5709 memset(&params, 0, sizeof(params));
5710
5711 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
5712 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
5713 return -EINVAL;
5714
5715 /* only important for AP, IBSS and mesh create IEs internally */
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005716 if (need_new_beacon &&
5717 (!info->attrs[NL80211_ATTR_CSA_IES] ||
5718 !info->attrs[NL80211_ATTR_CSA_C_OFF_BEACON]))
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005719 return -EINVAL;
5720
5721 params.count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5722
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005723 if (!need_new_beacon)
5724 goto skip_beacons;
5725
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005726 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5727 if (err)
5728 return err;
5729
5730 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5731 info->attrs[NL80211_ATTR_CSA_IES],
5732 nl80211_policy);
5733 if (err)
5734 return err;
5735
5736 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5737 if (err)
5738 return err;
5739
5740 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5741 return -EINVAL;
5742
5743 params.counter_offset_beacon =
5744 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5745 if (params.counter_offset_beacon >= params.beacon_csa.tail_len)
5746 return -EINVAL;
5747
5748 /* sanity check - counters should be the same */
5749 if (params.beacon_csa.tail[params.counter_offset_beacon] !=
5750 params.count)
5751 return -EINVAL;
5752
5753 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
5754 params.counter_offset_presp =
5755 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
5756 if (params.counter_offset_presp >=
5757 params.beacon_csa.probe_resp_len)
5758 return -EINVAL;
5759
5760 if (params.beacon_csa.probe_resp[params.counter_offset_presp] !=
5761 params.count)
5762 return -EINVAL;
5763 }
5764
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005765skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005766 err = nl80211_parse_chandef(rdev, info, &params.chandef);
5767 if (err)
5768 return err;
5769
5770 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
5771 return -EINVAL;
5772
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005773 if (dev->ieee80211_ptr->iftype == NL80211_IFTYPE_AP ||
Simon Wunderlich5336fa82013-10-07 18:41:05 +02005774 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_P2P_GO ||
5775 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_ADHOC) {
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005776 err = cfg80211_chandef_dfs_required(wdev->wiphy,
5777 &params.chandef);
5778 if (err < 0) {
5779 return err;
5780 } else if (err) {
5781 radar_detect_width = BIT(params.chandef.width);
5782 params.radar_required = true;
5783 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005784 }
5785
5786 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5787 params.chandef.chan,
5788 CHAN_MODE_SHARED,
5789 radar_detect_width);
5790 if (err)
5791 return err;
5792
5793 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
5794 params.block_tx = true;
5795
5796 return rdev_channel_switch(rdev, dev, &params);
5797}
5798
Johannes Berg9720bb32011-06-21 09:45:33 +02005799static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
5800 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005801 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02005802 struct wireless_dev *wdev,
5803 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01005804{
Johannes Berg48ab9052009-07-10 18:42:31 +02005805 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01005806 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01005807 void *hdr;
5808 struct nlattr *bss;
Johannes Berg8cef2c92013-02-05 16:54:31 +01005809 bool tsf = false;
Johannes Berg48ab9052009-07-10 18:42:31 +02005810
5811 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005812
Eric W. Biederman15e47302012-09-07 20:12:54 +00005813 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005814 NL80211_CMD_NEW_SCAN_RESULTS);
5815 if (!hdr)
5816 return -1;
5817
Johannes Berg9720bb32011-06-21 09:45:33 +02005818 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
5819
Johannes Berg97990a02013-04-19 01:02:55 +02005820 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
5821 goto nla_put_failure;
5822 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04005823 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
5824 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02005825 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
5826 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005827
5828 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
5829 if (!bss)
5830 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04005831 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01005832 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04005833 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01005834
5835 rcu_read_lock();
5836 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005837 if (ies) {
5838 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5839 goto fail_unlock_rcu;
5840 tsf = true;
5841 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
5842 ies->len, ies->data))
5843 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005844 }
5845 ies = rcu_dereference(res->beacon_ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005846 if (ies) {
5847 if (!tsf && nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5848 goto fail_unlock_rcu;
5849 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
5850 ies->len, ies->data))
5851 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005852 }
5853 rcu_read_unlock();
5854
David S. Miller9360ffd2012-03-29 04:41:26 -04005855 if (res->beacon_interval &&
5856 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
5857 goto nla_put_failure;
5858 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
5859 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02005860 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005861 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
5862 jiffies_to_msecs(jiffies - intbss->ts)))
5863 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005864
Johannes Berg77965c92009-02-18 18:45:06 +01005865 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01005866 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04005867 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
5868 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005869 break;
5870 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005871 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
5872 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005873 break;
5874 default:
5875 break;
5876 }
5877
Johannes Berg48ab9052009-07-10 18:42:31 +02005878 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02005879 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02005880 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04005881 if (intbss == wdev->current_bss &&
5882 nla_put_u32(msg, NL80211_BSS_STATUS,
5883 NL80211_BSS_STATUS_ASSOCIATED))
5884 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005885 break;
5886 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005887 if (intbss == wdev->current_bss &&
5888 nla_put_u32(msg, NL80211_BSS_STATUS,
5889 NL80211_BSS_STATUS_IBSS_JOINED))
5890 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005891 break;
5892 default:
5893 break;
5894 }
5895
Johannes Berg2a519312009-02-10 21:25:55 +01005896 nla_nest_end(msg, bss);
5897
5898 return genlmsg_end(msg, hdr);
5899
Johannes Berg8cef2c92013-02-05 16:54:31 +01005900 fail_unlock_rcu:
5901 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01005902 nla_put_failure:
5903 genlmsg_cancel(msg, hdr);
5904 return -EMSGSIZE;
5905}
5906
Johannes Berg97990a02013-04-19 01:02:55 +02005907static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01005908{
Johannes Berg48ab9052009-07-10 18:42:31 +02005909 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01005910 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02005911 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02005912 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005913 int err;
5914
Johannes Berg97990a02013-04-19 01:02:55 +02005915 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02005916 if (err)
5917 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01005918
Johannes Berg48ab9052009-07-10 18:42:31 +02005919 wdev_lock(wdev);
5920 spin_lock_bh(&rdev->bss_lock);
5921 cfg80211_bss_expire(rdev);
5922
Johannes Berg9720bb32011-06-21 09:45:33 +02005923 cb->seq = rdev->bss_generation;
5924
Johannes Berg48ab9052009-07-10 18:42:31 +02005925 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01005926 if (++idx <= start)
5927 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02005928 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01005929 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02005930 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01005931 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02005932 break;
Johannes Berg2a519312009-02-10 21:25:55 +01005933 }
5934 }
5935
Johannes Berg48ab9052009-07-10 18:42:31 +02005936 spin_unlock_bh(&rdev->bss_lock);
5937 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005938
Johannes Berg97990a02013-04-19 01:02:55 +02005939 cb->args[2] = idx;
5940 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005941
Johannes Berg67748892010-10-04 21:14:06 +02005942 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01005943}
5944
Eric W. Biederman15e47302012-09-07 20:12:54 +00005945static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01005946 int flags, struct net_device *dev,
5947 struct survey_info *survey)
5948{
5949 void *hdr;
5950 struct nlattr *infoattr;
5951
Eric W. Biederman15e47302012-09-07 20:12:54 +00005952 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01005953 NL80211_CMD_NEW_SURVEY_RESULTS);
5954 if (!hdr)
5955 return -ENOMEM;
5956
David S. Miller9360ffd2012-03-29 04:41:26 -04005957 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
5958 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005959
5960 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
5961 if (!infoattr)
5962 goto nla_put_failure;
5963
David S. Miller9360ffd2012-03-29 04:41:26 -04005964 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
5965 survey->channel->center_freq))
5966 goto nla_put_failure;
5967
5968 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
5969 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
5970 goto nla_put_failure;
5971 if ((survey->filled & SURVEY_INFO_IN_USE) &&
5972 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
5973 goto nla_put_failure;
5974 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
5975 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
5976 survey->channel_time))
5977 goto nla_put_failure;
5978 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
5979 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
5980 survey->channel_time_busy))
5981 goto nla_put_failure;
5982 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
5983 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
5984 survey->channel_time_ext_busy))
5985 goto nla_put_failure;
5986 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
5987 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
5988 survey->channel_time_rx))
5989 goto nla_put_failure;
5990 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
5991 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
5992 survey->channel_time_tx))
5993 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005994
5995 nla_nest_end(msg, infoattr);
5996
5997 return genlmsg_end(msg, hdr);
5998
5999 nla_put_failure:
6000 genlmsg_cancel(msg, hdr);
6001 return -EMSGSIZE;
6002}
6003
6004static int nl80211_dump_survey(struct sk_buff *skb,
6005 struct netlink_callback *cb)
6006{
6007 struct survey_info survey;
6008 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02006009 struct wireless_dev *wdev;
6010 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01006011 int res;
6012
Johannes Berg97990a02013-04-19 01:02:55 +02006013 res = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006014 if (res)
6015 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01006016
Johannes Berg97990a02013-04-19 01:02:55 +02006017 if (!wdev->netdev) {
6018 res = -EINVAL;
6019 goto out_err;
6020 }
6021
Holger Schurig61fa7132009-11-11 12:25:40 +01006022 if (!dev->ops->dump_survey) {
6023 res = -EOPNOTSUPP;
6024 goto out_err;
6025 }
6026
6027 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006028 struct ieee80211_channel *chan;
6029
Johannes Berg97990a02013-04-19 01:02:55 +02006030 res = rdev_dump_survey(dev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01006031 if (res == -ENOENT)
6032 break;
6033 if (res)
6034 goto out_err;
6035
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006036 /* Survey without a channel doesn't make sense */
6037 if (!survey.channel) {
6038 res = -EINVAL;
6039 goto out;
6040 }
6041
6042 chan = ieee80211_get_channel(&dev->wiphy,
6043 survey.channel->center_freq);
6044 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
6045 survey_idx++;
6046 continue;
6047 }
6048
Holger Schurig61fa7132009-11-11 12:25:40 +01006049 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006050 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01006051 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02006052 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01006053 goto out;
6054 survey_idx++;
6055 }
6056
6057 out:
Johannes Berg97990a02013-04-19 01:02:55 +02006058 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01006059 res = skb->len;
6060 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02006061 nl80211_finish_wdev_dump(dev);
Holger Schurig61fa7132009-11-11 12:25:40 +01006062 return res;
6063}
6064
Samuel Ortizb23aa672009-07-01 21:26:54 +02006065static bool nl80211_valid_wpa_versions(u32 wpa_versions)
6066{
6067 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
6068 NL80211_WPA_VERSION_2));
6069}
6070
Jouni Malinen636a5d32009-03-19 13:39:22 +02006071static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6072{
Johannes Berg4c476992010-10-04 21:36:35 +02006073 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6074 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006075 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006076 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6077 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006078 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006079 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006080 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006081
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006082 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6083 return -EINVAL;
6084
6085 if (!info->attrs[NL80211_ATTR_MAC])
6086 return -EINVAL;
6087
Jouni Malinen17780922009-03-27 20:52:47 +02006088 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6089 return -EINVAL;
6090
Johannes Berg19957bb2009-07-02 17:20:43 +02006091 if (!info->attrs[NL80211_ATTR_SSID])
6092 return -EINVAL;
6093
6094 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6095 return -EINVAL;
6096
Johannes Bergfffd0932009-07-08 14:22:54 +02006097 err = nl80211_parse_key(info, &key);
6098 if (err)
6099 return err;
6100
6101 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006102 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6103 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006104 if (!key.p.key || !key.p.key_len)
6105 return -EINVAL;
6106 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6107 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6108 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6109 key.p.key_len != WLAN_KEY_LEN_WEP104))
6110 return -EINVAL;
6111 if (key.idx > 4)
6112 return -EINVAL;
6113 } else {
6114 key.p.key_len = 0;
6115 key.p.key = NULL;
6116 }
6117
Johannes Bergafea0b72010-08-10 09:46:42 +02006118 if (key.idx >= 0) {
6119 int i;
6120 bool ok = false;
6121 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6122 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6123 ok = true;
6124 break;
6125 }
6126 }
Johannes Berg4c476992010-10-04 21:36:35 +02006127 if (!ok)
6128 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006129 }
6130
Johannes Berg4c476992010-10-04 21:36:35 +02006131 if (!rdev->ops->auth)
6132 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006133
Johannes Berg074ac8d2010-09-16 14:58:22 +02006134 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006135 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6136 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006137
Johannes Berg19957bb2009-07-02 17:20:43 +02006138 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg79c97e92009-07-07 03:56:12 +02006139 chan = ieee80211_get_channel(&rdev->wiphy,
Johannes Berg19957bb2009-07-02 17:20:43 +02006140 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006141 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6142 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006143
Johannes Berg19957bb2009-07-02 17:20:43 +02006144 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6145 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6146
6147 if (info->attrs[NL80211_ATTR_IE]) {
6148 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6149 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6150 }
6151
6152 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006153 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006154 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006155
Jouni Malinene39e5b52012-09-30 19:29:39 +03006156 if (auth_type == NL80211_AUTHTYPE_SAE &&
6157 !info->attrs[NL80211_ATTR_SAE_DATA])
6158 return -EINVAL;
6159
6160 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6161 if (auth_type != NL80211_AUTHTYPE_SAE)
6162 return -EINVAL;
6163 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6164 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6165 /* need to include at least Auth Transaction and Status Code */
6166 if (sae_data_len < 4)
6167 return -EINVAL;
6168 }
6169
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006170 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6171
Johannes Berg95de8172012-01-20 13:55:25 +01006172 /*
6173 * Since we no longer track auth state, ignore
6174 * requests to only change local state.
6175 */
6176 if (local_state_change)
6177 return 0;
6178
Johannes Berg91bf9b22013-05-15 17:44:01 +02006179 wdev_lock(dev->ieee80211_ptr);
6180 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6181 ssid, ssid_len, ie, ie_len,
6182 key.p.key, key.p.key_len, key.idx,
6183 sae_data, sae_data_len);
6184 wdev_unlock(dev->ieee80211_ptr);
6185 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006186}
6187
Johannes Bergc0692b82010-08-27 14:26:53 +03006188static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6189 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006190 struct cfg80211_crypto_settings *settings,
6191 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006192{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006193 memset(settings, 0, sizeof(*settings));
6194
Samuel Ortizb23aa672009-07-01 21:26:54 +02006195 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6196
Johannes Bergc0692b82010-08-27 14:26:53 +03006197 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6198 u16 proto;
6199 proto = nla_get_u16(
6200 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6201 settings->control_port_ethertype = cpu_to_be16(proto);
6202 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6203 proto != ETH_P_PAE)
6204 return -EINVAL;
6205 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6206 settings->control_port_no_encrypt = true;
6207 } else
6208 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6209
Samuel Ortizb23aa672009-07-01 21:26:54 +02006210 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6211 void *data;
6212 int len, i;
6213
6214 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6215 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6216 settings->n_ciphers_pairwise = len / sizeof(u32);
6217
6218 if (len % sizeof(u32))
6219 return -EINVAL;
6220
Johannes Berg3dc27d22009-07-02 21:36:37 +02006221 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006222 return -EINVAL;
6223
6224 memcpy(settings->ciphers_pairwise, data, len);
6225
6226 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006227 if (!cfg80211_supported_cipher_suite(
6228 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006229 settings->ciphers_pairwise[i]))
6230 return -EINVAL;
6231 }
6232
6233 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6234 settings->cipher_group =
6235 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006236 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6237 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006238 return -EINVAL;
6239 }
6240
6241 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6242 settings->wpa_versions =
6243 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6244 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6245 return -EINVAL;
6246 }
6247
6248 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6249 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006250 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006251
6252 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6253 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6254 settings->n_akm_suites = len / sizeof(u32);
6255
6256 if (len % sizeof(u32))
6257 return -EINVAL;
6258
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006259 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6260 return -EINVAL;
6261
Samuel Ortizb23aa672009-07-01 21:26:54 +02006262 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006263 }
6264
6265 return 0;
6266}
6267
Jouni Malinen636a5d32009-03-19 13:39:22 +02006268static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6269{
Johannes Berg4c476992010-10-04 21:36:35 +02006270 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6271 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006272 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006273 struct cfg80211_assoc_request req = {};
6274 const u8 *bssid, *ssid;
6275 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006276
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006277 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6278 return -EINVAL;
6279
6280 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006281 !info->attrs[NL80211_ATTR_SSID] ||
6282 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006283 return -EINVAL;
6284
Johannes Berg4c476992010-10-04 21:36:35 +02006285 if (!rdev->ops->assoc)
6286 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006287
Johannes Berg074ac8d2010-09-16 14:58:22 +02006288 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006289 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6290 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006291
Johannes Berg19957bb2009-07-02 17:20:43 +02006292 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006293
Johannes Berg19957bb2009-07-02 17:20:43 +02006294 chan = ieee80211_get_channel(&rdev->wiphy,
6295 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006296 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6297 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006298
Johannes Berg19957bb2009-07-02 17:20:43 +02006299 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6300 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006301
6302 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006303 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6304 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006305 }
6306
Jouni Malinendc6382c2009-05-06 22:09:37 +03006307 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006308 enum nl80211_mfp mfp =
Jouni Malinendc6382c2009-05-06 22:09:37 +03006309 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006310 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006311 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006312 else if (mfp != NL80211_MFP_NO)
6313 return -EINVAL;
Jouni Malinendc6382c2009-05-06 22:09:37 +03006314 }
6315
Johannes Berg3e5d7642009-07-07 14:37:26 +02006316 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006317 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006318
Ben Greear7e7c8922011-11-18 11:31:59 -08006319 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006320 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006321
6322 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006323 memcpy(&req.ht_capa_mask,
6324 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6325 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006326
6327 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006328 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006329 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006330 memcpy(&req.ht_capa,
6331 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6332 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006333 }
6334
Johannes Bergee2aca32013-02-21 17:36:01 +01006335 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006336 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006337
6338 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006339 memcpy(&req.vht_capa_mask,
6340 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6341 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006342
6343 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006344 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006345 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006346 memcpy(&req.vht_capa,
6347 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6348 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006349 }
6350
Johannes Bergf62fab72013-02-21 20:09:09 +01006351 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006352 if (!err) {
6353 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006354 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6355 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006356 wdev_unlock(dev->ieee80211_ptr);
6357 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006358
Jouni Malinen636a5d32009-03-19 13:39:22 +02006359 return err;
6360}
6361
6362static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6363{
Johannes Berg4c476992010-10-04 21:36:35 +02006364 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6365 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006366 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006367 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006368 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006369 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006370
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006371 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6372 return -EINVAL;
6373
6374 if (!info->attrs[NL80211_ATTR_MAC])
6375 return -EINVAL;
6376
6377 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6378 return -EINVAL;
6379
Johannes Berg4c476992010-10-04 21:36:35 +02006380 if (!rdev->ops->deauth)
6381 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006382
Johannes Berg074ac8d2010-09-16 14:58:22 +02006383 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006384 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6385 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006386
Johannes Berg19957bb2009-07-02 17:20:43 +02006387 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006388
Johannes Berg19957bb2009-07-02 17:20:43 +02006389 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6390 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006391 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006392 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006393 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006394
6395 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006396 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6397 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006398 }
6399
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006400 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6401
Johannes Berg91bf9b22013-05-15 17:44:01 +02006402 wdev_lock(dev->ieee80211_ptr);
6403 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6404 local_state_change);
6405 wdev_unlock(dev->ieee80211_ptr);
6406 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006407}
6408
6409static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6410{
Johannes Berg4c476992010-10-04 21:36:35 +02006411 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6412 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006413 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006414 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006415 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006416 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006417
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006418 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6419 return -EINVAL;
6420
6421 if (!info->attrs[NL80211_ATTR_MAC])
6422 return -EINVAL;
6423
6424 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6425 return -EINVAL;
6426
Johannes Berg4c476992010-10-04 21:36:35 +02006427 if (!rdev->ops->disassoc)
6428 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006429
Johannes Berg074ac8d2010-09-16 14:58:22 +02006430 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006431 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6432 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006433
Johannes Berg19957bb2009-07-02 17:20:43 +02006434 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006435
Johannes Berg19957bb2009-07-02 17:20:43 +02006436 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6437 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006438 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006439 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006440 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006441
6442 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006443 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6444 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006445 }
6446
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006447 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6448
Johannes Berg91bf9b22013-05-15 17:44:01 +02006449 wdev_lock(dev->ieee80211_ptr);
6450 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6451 local_state_change);
6452 wdev_unlock(dev->ieee80211_ptr);
6453 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006454}
6455
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006456static bool
6457nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6458 int mcast_rate[IEEE80211_NUM_BANDS],
6459 int rateval)
6460{
6461 struct wiphy *wiphy = &rdev->wiphy;
6462 bool found = false;
6463 int band, i;
6464
6465 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6466 struct ieee80211_supported_band *sband;
6467
6468 sband = wiphy->bands[band];
6469 if (!sband)
6470 continue;
6471
6472 for (i = 0; i < sband->n_bitrates; i++) {
6473 if (sband->bitrates[i].bitrate == rateval) {
6474 mcast_rate[band] = i + 1;
6475 found = true;
6476 break;
6477 }
6478 }
6479 }
6480
6481 return found;
6482}
6483
Johannes Berg04a773a2009-04-19 21:24:32 +02006484static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6485{
Johannes Berg4c476992010-10-04 21:36:35 +02006486 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6487 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006488 struct cfg80211_ibss_params ibss;
6489 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006490 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006491 int err;
6492
Johannes Berg8e30bc52009-04-22 17:45:38 +02006493 memset(&ibss, 0, sizeof(ibss));
6494
Johannes Berg04a773a2009-04-19 21:24:32 +02006495 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6496 return -EINVAL;
6497
Johannes Berg683b6d32012-11-08 21:25:48 +01006498 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006499 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6500 return -EINVAL;
6501
Johannes Berg8e30bc52009-04-22 17:45:38 +02006502 ibss.beacon_interval = 100;
6503
6504 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6505 ibss.beacon_interval =
6506 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6507 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6508 return -EINVAL;
6509 }
6510
Johannes Berg4c476992010-10-04 21:36:35 +02006511 if (!rdev->ops->join_ibss)
6512 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006513
Johannes Berg4c476992010-10-04 21:36:35 +02006514 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6515 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006516
Johannes Berg79c97e92009-07-07 03:56:12 +02006517 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006518
Johannes Berg39193492011-09-16 13:45:25 +02006519 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006520 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006521
6522 if (!is_valid_ether_addr(ibss.bssid))
6523 return -EINVAL;
6524 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006525 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6526 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6527
6528 if (info->attrs[NL80211_ATTR_IE]) {
6529 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6530 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6531 }
6532
Johannes Berg683b6d32012-11-08 21:25:48 +01006533 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6534 if (err)
6535 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006536
Johannes Berg683b6d32012-11-08 21:25:48 +01006537 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006538 return -EINVAL;
6539
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006540 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006541 case NL80211_CHAN_WIDTH_5:
6542 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006543 case NL80211_CHAN_WIDTH_20_NOHT:
6544 break;
6545 case NL80211_CHAN_WIDTH_20:
6546 case NL80211_CHAN_WIDTH_40:
6547 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6548 break;
6549 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006550 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006551 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006552
Johannes Berg04a773a2009-04-19 21:24:32 +02006553 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006554 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006555
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006556 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6557 u8 *rates =
6558 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6559 int n_rates =
6560 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6561 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006562 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006563
Johannes Berg34850ab2011-07-18 18:08:35 +02006564 err = ieee80211_get_ratemask(sband, rates, n_rates,
6565 &ibss.basic_rates);
6566 if (err)
6567 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006568 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006569
Simon Wunderlich803768f2013-06-28 10:39:58 +02006570 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6571 memcpy(&ibss.ht_capa_mask,
6572 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6573 sizeof(ibss.ht_capa_mask));
6574
6575 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6576 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6577 return -EINVAL;
6578 memcpy(&ibss.ht_capa,
6579 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6580 sizeof(ibss.ht_capa));
6581 }
6582
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006583 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6584 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6585 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6586 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006587
Johannes Berg4c476992010-10-04 21:36:35 +02006588 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306589 bool no_ht = false;
6590
Johannes Berg4c476992010-10-04 21:36:35 +02006591 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306592 info->attrs[NL80211_ATTR_KEYS],
6593 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006594 if (IS_ERR(connkeys))
6595 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306596
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006597 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6598 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306599 kfree(connkeys);
6600 return -EINVAL;
6601 }
Johannes Berg4c476992010-10-04 21:36:35 +02006602 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006603
Antonio Quartulli267335d2012-01-31 20:25:47 +01006604 ibss.control_port =
6605 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6606
Simon Wunderlich5336fa82013-10-07 18:41:05 +02006607 ibss.userspace_handles_dfs =
6608 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
6609
Johannes Berg4c476992010-10-04 21:36:35 +02006610 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006611 if (err)
6612 kfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006613 return err;
6614}
6615
6616static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6617{
Johannes Berg4c476992010-10-04 21:36:35 +02006618 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6619 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006620
Johannes Berg4c476992010-10-04 21:36:35 +02006621 if (!rdev->ops->leave_ibss)
6622 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006623
Johannes Berg4c476992010-10-04 21:36:35 +02006624 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6625 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006626
Johannes Berg4c476992010-10-04 21:36:35 +02006627 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006628}
6629
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006630static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6631{
6632 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6633 struct net_device *dev = info->user_ptr[1];
6634 int mcast_rate[IEEE80211_NUM_BANDS];
6635 u32 nla_rate;
6636 int err;
6637
6638 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6639 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6640 return -EOPNOTSUPP;
6641
6642 if (!rdev->ops->set_mcast_rate)
6643 return -EOPNOTSUPP;
6644
6645 memset(mcast_rate, 0, sizeof(mcast_rate));
6646
6647 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6648 return -EINVAL;
6649
6650 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6651 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6652 return -EINVAL;
6653
6654 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6655
6656 return err;
6657}
6658
6659
Johannes Bergaff89a92009-07-01 21:26:51 +02006660#ifdef CONFIG_NL80211_TESTMODE
6661static struct genl_multicast_group nl80211_testmode_mcgrp = {
6662 .name = "testmode",
6663};
6664
6665static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
6666{
Johannes Berg4c476992010-10-04 21:36:35 +02006667 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03006668 struct wireless_dev *wdev =
6669 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02006670 int err;
6671
David Spinadelfc73f112013-07-31 18:04:15 +03006672 if (!rdev->ops->testmode_cmd)
6673 return -EOPNOTSUPP;
6674
6675 if (IS_ERR(wdev)) {
6676 err = PTR_ERR(wdev);
6677 if (err != -EINVAL)
6678 return err;
6679 wdev = NULL;
6680 } else if (wdev->wiphy != &rdev->wiphy) {
6681 return -EINVAL;
6682 }
6683
Johannes Bergaff89a92009-07-01 21:26:51 +02006684 if (!info->attrs[NL80211_ATTR_TESTDATA])
6685 return -EINVAL;
6686
David Spinadelfc73f112013-07-31 18:04:15 +03006687 rdev->testmode_info = info;
6688 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02006689 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
6690 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
David Spinadelfc73f112013-07-31 18:04:15 +03006691 rdev->testmode_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02006692
Johannes Bergaff89a92009-07-01 21:26:51 +02006693 return err;
6694}
6695
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006696static int nl80211_testmode_dump(struct sk_buff *skb,
6697 struct netlink_callback *cb)
6698{
Johannes Berg00918d32011-12-13 17:22:05 +01006699 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006700 int err;
6701 long phy_idx;
6702 void *data = NULL;
6703 int data_len = 0;
6704
Johannes Berg5fe231e2013-05-08 21:45:15 +02006705 rtnl_lock();
6706
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006707 if (cb->args[0]) {
6708 /*
6709 * 0 is a valid index, but not valid for args[0],
6710 * so we need to offset by 1.
6711 */
6712 phy_idx = cb->args[0] - 1;
6713 } else {
6714 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
6715 nl80211_fam.attrbuf, nl80211_fam.maxattr,
6716 nl80211_policy);
6717 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02006718 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006719
Johannes Berg2bd7e352012-06-15 14:23:16 +02006720 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
6721 nl80211_fam.attrbuf);
6722 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006723 err = PTR_ERR(rdev);
6724 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006725 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02006726 phy_idx = rdev->wiphy_idx;
6727 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02006728
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006729 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
6730 cb->args[1] =
6731 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
6732 }
6733
6734 if (cb->args[1]) {
6735 data = nla_data((void *)cb->args[1]);
6736 data_len = nla_len((void *)cb->args[1]);
6737 }
6738
Johannes Berg00918d32011-12-13 17:22:05 +01006739 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
6740 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006741 err = -ENOENT;
6742 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006743 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006744
Johannes Berg00918d32011-12-13 17:22:05 +01006745 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006746 err = -EOPNOTSUPP;
6747 goto out_err;
6748 }
6749
6750 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00006751 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006752 cb->nlh->nlmsg_seq, NLM_F_MULTI,
6753 NL80211_CMD_TESTMODE);
6754 struct nlattr *tmdata;
6755
Dan Carpentercb35fba2013-08-14 14:50:01 +03006756 if (!hdr)
6757 break;
6758
David S. Miller9360ffd2012-03-29 04:41:26 -04006759 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006760 genlmsg_cancel(skb, hdr);
6761 break;
6762 }
6763
6764 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6765 if (!tmdata) {
6766 genlmsg_cancel(skb, hdr);
6767 break;
6768 }
Hila Gonene35e4d22012-06-27 17:19:42 +03006769 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006770 nla_nest_end(skb, tmdata);
6771
6772 if (err == -ENOBUFS || err == -ENOENT) {
6773 genlmsg_cancel(skb, hdr);
6774 break;
6775 } else if (err) {
6776 genlmsg_cancel(skb, hdr);
6777 goto out_err;
6778 }
6779
6780 genlmsg_end(skb, hdr);
6781 }
6782
6783 err = skb->len;
6784 /* see above */
6785 cb->args[0] = phy_idx + 1;
6786 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02006787 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006788 return err;
6789}
6790
Johannes Bergaff89a92009-07-01 21:26:51 +02006791static struct sk_buff *
6792__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006793 int approxlen, u32 portid, u32 seq, gfp_t gfp)
Johannes Bergaff89a92009-07-01 21:26:51 +02006794{
6795 struct sk_buff *skb;
6796 void *hdr;
6797 struct nlattr *data;
6798
6799 skb = nlmsg_new(approxlen + 100, gfp);
6800 if (!skb)
6801 return NULL;
6802
Eric W. Biederman15e47302012-09-07 20:12:54 +00006803 hdr = nl80211hdr_put(skb, portid, seq, 0, NL80211_CMD_TESTMODE);
Johannes Bergaff89a92009-07-01 21:26:51 +02006804 if (!hdr) {
6805 kfree_skb(skb);
6806 return NULL;
6807 }
6808
David S. Miller9360ffd2012-03-29 04:41:26 -04006809 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6810 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02006811 data = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6812
6813 ((void **)skb->cb)[0] = rdev;
6814 ((void **)skb->cb)[1] = hdr;
6815 ((void **)skb->cb)[2] = data;
6816
6817 return skb;
6818
6819 nla_put_failure:
6820 kfree_skb(skb);
6821 return NULL;
6822}
6823
6824struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
6825 int approxlen)
6826{
6827 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6828
6829 if (WARN_ON(!rdev->testmode_info))
6830 return NULL;
6831
6832 return __cfg80211_testmode_alloc_skb(rdev, approxlen,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006833 rdev->testmode_info->snd_portid,
Johannes Bergaff89a92009-07-01 21:26:51 +02006834 rdev->testmode_info->snd_seq,
6835 GFP_KERNEL);
6836}
6837EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb);
6838
6839int cfg80211_testmode_reply(struct sk_buff *skb)
6840{
6841 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
6842 void *hdr = ((void **)skb->cb)[1];
6843 struct nlattr *data = ((void **)skb->cb)[2];
6844
6845 if (WARN_ON(!rdev->testmode_info)) {
6846 kfree_skb(skb);
6847 return -EINVAL;
6848 }
6849
6850 nla_nest_end(skb, data);
6851 genlmsg_end(skb, hdr);
6852 return genlmsg_reply(skb, rdev->testmode_info);
6853}
6854EXPORT_SYMBOL(cfg80211_testmode_reply);
6855
6856struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
6857 int approxlen, gfp_t gfp)
6858{
6859 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6860
6861 return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp);
6862}
6863EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb);
6864
6865void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
6866{
Michal Kaziora0ec5702013-06-25 09:17:17 +02006867 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
Johannes Bergaff89a92009-07-01 21:26:51 +02006868 void *hdr = ((void **)skb->cb)[1];
6869 struct nlattr *data = ((void **)skb->cb)[2];
6870
6871 nla_nest_end(skb, data);
6872 genlmsg_end(skb, hdr);
Michal Kaziora0ec5702013-06-25 09:17:17 +02006873 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), skb, 0,
6874 nl80211_testmode_mcgrp.id, gfp);
Johannes Bergaff89a92009-07-01 21:26:51 +02006875}
6876EXPORT_SYMBOL(cfg80211_testmode_event);
6877#endif
6878
Samuel Ortizb23aa672009-07-01 21:26:54 +02006879static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
6880{
Johannes Berg4c476992010-10-04 21:36:35 +02006881 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6882 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02006883 struct cfg80211_connect_params connect;
6884 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006885 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006886 int err;
6887
6888 memset(&connect, 0, sizeof(connect));
6889
6890 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6891 return -EINVAL;
6892
6893 if (!info->attrs[NL80211_ATTR_SSID] ||
6894 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6895 return -EINVAL;
6896
6897 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
6898 connect.auth_type =
6899 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006900 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
6901 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006902 return -EINVAL;
6903 } else
6904 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
6905
6906 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
6907
Johannes Bergc0692b82010-08-27 14:26:53 +03006908 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006909 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006910 if (err)
6911 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006912
Johannes Berg074ac8d2010-09-16 14:58:22 +02006913 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006914 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6915 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006916
Johannes Berg79c97e92009-07-07 03:56:12 +02006917 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006918
Bala Shanmugam4486ea92012-03-07 17:27:12 +05306919 connect.bg_scan_period = -1;
6920 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
6921 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
6922 connect.bg_scan_period =
6923 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
6924 }
6925
Samuel Ortizb23aa672009-07-01 21:26:54 +02006926 if (info->attrs[NL80211_ATTR_MAC])
6927 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
6928 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6929 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6930
6931 if (info->attrs[NL80211_ATTR_IE]) {
6932 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6933 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6934 }
6935
Jouni Malinencee00a92013-01-15 17:15:57 +02006936 if (info->attrs[NL80211_ATTR_USE_MFP]) {
6937 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
6938 if (connect.mfp != NL80211_MFP_REQUIRED &&
6939 connect.mfp != NL80211_MFP_NO)
6940 return -EINVAL;
6941 } else {
6942 connect.mfp = NL80211_MFP_NO;
6943 }
6944
Samuel Ortizb23aa672009-07-01 21:26:54 +02006945 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
6946 connect.channel =
6947 ieee80211_get_channel(wiphy,
6948 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
6949 if (!connect.channel ||
Johannes Berg4c476992010-10-04 21:36:35 +02006950 connect.channel->flags & IEEE80211_CHAN_DISABLED)
6951 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006952 }
6953
Johannes Bergfffd0932009-07-08 14:22:54 +02006954 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
6955 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306956 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02006957 if (IS_ERR(connkeys))
6958 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006959 }
6960
Ben Greear7e7c8922011-11-18 11:31:59 -08006961 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
6962 connect.flags |= ASSOC_REQ_DISABLE_HT;
6963
6964 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6965 memcpy(&connect.ht_capa_mask,
6966 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6967 sizeof(connect.ht_capa_mask));
6968
6969 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006970 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
6971 kfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08006972 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006973 }
Ben Greear7e7c8922011-11-18 11:31:59 -08006974 memcpy(&connect.ht_capa,
6975 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6976 sizeof(connect.ht_capa));
6977 }
6978
Johannes Bergee2aca32013-02-21 17:36:01 +01006979 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
6980 connect.flags |= ASSOC_REQ_DISABLE_VHT;
6981
6982 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
6983 memcpy(&connect.vht_capa_mask,
6984 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6985 sizeof(connect.vht_capa_mask));
6986
6987 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
6988 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
6989 kfree(connkeys);
6990 return -EINVAL;
6991 }
6992 memcpy(&connect.vht_capa,
6993 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6994 sizeof(connect.vht_capa));
6995 }
6996
Johannes Berg83739b02013-05-15 17:44:01 +02006997 wdev_lock(dev->ieee80211_ptr);
6998 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
6999 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02007000 if (err)
7001 kfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007002 return err;
7003}
7004
7005static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
7006{
Johannes Berg4c476992010-10-04 21:36:35 +02007007 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7008 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007009 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02007010 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007011
7012 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7013 reason = WLAN_REASON_DEAUTH_LEAVING;
7014 else
7015 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7016
7017 if (reason == 0)
7018 return -EINVAL;
7019
Johannes Berg074ac8d2010-09-16 14:58:22 +02007020 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007021 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7022 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007023
Johannes Berg83739b02013-05-15 17:44:01 +02007024 wdev_lock(dev->ieee80211_ptr);
7025 ret = cfg80211_disconnect(rdev, dev, reason, true);
7026 wdev_unlock(dev->ieee80211_ptr);
7027 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007028}
7029
Johannes Berg463d0182009-07-14 00:33:35 +02007030static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
7031{
Johannes Berg4c476992010-10-04 21:36:35 +02007032 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02007033 struct net *net;
7034 int err;
7035 u32 pid;
7036
7037 if (!info->attrs[NL80211_ATTR_PID])
7038 return -EINVAL;
7039
7040 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
7041
Johannes Berg463d0182009-07-14 00:33:35 +02007042 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02007043 if (IS_ERR(net))
7044 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007045
7046 err = 0;
7047
7048 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02007049 if (!net_eq(wiphy_net(&rdev->wiphy), net))
7050 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02007051
Johannes Berg463d0182009-07-14 00:33:35 +02007052 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007053 return err;
7054}
7055
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007056static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
7057{
Johannes Berg4c476992010-10-04 21:36:35 +02007058 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007059 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
7060 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02007061 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007062 struct cfg80211_pmksa pmksa;
7063
7064 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
7065
7066 if (!info->attrs[NL80211_ATTR_MAC])
7067 return -EINVAL;
7068
7069 if (!info->attrs[NL80211_ATTR_PMKID])
7070 return -EINVAL;
7071
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007072 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7073 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7074
Johannes Berg074ac8d2010-09-16 14:58:22 +02007075 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007076 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7077 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007078
7079 switch (info->genlhdr->cmd) {
7080 case NL80211_CMD_SET_PMKSA:
7081 rdev_ops = rdev->ops->set_pmksa;
7082 break;
7083 case NL80211_CMD_DEL_PMKSA:
7084 rdev_ops = rdev->ops->del_pmksa;
7085 break;
7086 default:
7087 WARN_ON(1);
7088 break;
7089 }
7090
Johannes Berg4c476992010-10-04 21:36:35 +02007091 if (!rdev_ops)
7092 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007093
Johannes Berg4c476992010-10-04 21:36:35 +02007094 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007095}
7096
7097static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7098{
Johannes Berg4c476992010-10-04 21:36:35 +02007099 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7100 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007101
Johannes Berg074ac8d2010-09-16 14:58:22 +02007102 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007103 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7104 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007105
Johannes Berg4c476992010-10-04 21:36:35 +02007106 if (!rdev->ops->flush_pmksa)
7107 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007108
Hila Gonene35e4d22012-06-27 17:19:42 +03007109 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007110}
7111
Arik Nemtsov109086c2011-09-28 14:12:50 +03007112static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7113{
7114 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7115 struct net_device *dev = info->user_ptr[1];
7116 u8 action_code, dialog_token;
7117 u16 status_code;
7118 u8 *peer;
7119
7120 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7121 !rdev->ops->tdls_mgmt)
7122 return -EOPNOTSUPP;
7123
7124 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7125 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7126 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7127 !info->attrs[NL80211_ATTR_IE] ||
7128 !info->attrs[NL80211_ATTR_MAC])
7129 return -EINVAL;
7130
7131 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7132 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7133 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7134 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
7135
Hila Gonene35e4d22012-06-27 17:19:42 +03007136 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
7137 dialog_token, status_code,
7138 nla_data(info->attrs[NL80211_ATTR_IE]),
7139 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007140}
7141
7142static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7143{
7144 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7145 struct net_device *dev = info->user_ptr[1];
7146 enum nl80211_tdls_operation operation;
7147 u8 *peer;
7148
7149 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7150 !rdev->ops->tdls_oper)
7151 return -EOPNOTSUPP;
7152
7153 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7154 !info->attrs[NL80211_ATTR_MAC])
7155 return -EINVAL;
7156
7157 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7158 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7159
Hila Gonene35e4d22012-06-27 17:19:42 +03007160 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007161}
7162
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007163static int nl80211_remain_on_channel(struct sk_buff *skb,
7164 struct genl_info *info)
7165{
Johannes Berg4c476992010-10-04 21:36:35 +02007166 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007167 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007168 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007169 struct sk_buff *msg;
7170 void *hdr;
7171 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007172 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007173 int err;
7174
7175 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7176 !info->attrs[NL80211_ATTR_DURATION])
7177 return -EINVAL;
7178
7179 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7180
Johannes Berg7c4ef712011-11-18 15:33:48 +01007181 if (!rdev->ops->remain_on_channel ||
7182 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007183 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007184
Johannes Bergebf348f2012-06-01 12:50:54 +02007185 /*
7186 * We should be on that channel for at least a minimum amount of
7187 * time (10ms) but no longer than the driver supports.
7188 */
7189 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7190 duration > rdev->wiphy.max_remain_on_channel_duration)
7191 return -EINVAL;
7192
Johannes Berg683b6d32012-11-08 21:25:48 +01007193 err = nl80211_parse_chandef(rdev, info, &chandef);
7194 if (err)
7195 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007196
7197 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007198 if (!msg)
7199 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007200
Eric W. Biederman15e47302012-09-07 20:12:54 +00007201 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007202 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007203 if (!hdr) {
7204 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007205 goto free_msg;
7206 }
7207
Johannes Berg683b6d32012-11-08 21:25:48 +01007208 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7209 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007210
7211 if (err)
7212 goto free_msg;
7213
David S. Miller9360ffd2012-03-29 04:41:26 -04007214 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7215 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007216
7217 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007218
7219 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007220
7221 nla_put_failure:
7222 err = -ENOBUFS;
7223 free_msg:
7224 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007225 return err;
7226}
7227
7228static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7229 struct genl_info *info)
7230{
Johannes Berg4c476992010-10-04 21:36:35 +02007231 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007232 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007233 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007234
7235 if (!info->attrs[NL80211_ATTR_COOKIE])
7236 return -EINVAL;
7237
Johannes Berg4c476992010-10-04 21:36:35 +02007238 if (!rdev->ops->cancel_remain_on_channel)
7239 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007240
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007241 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7242
Hila Gonene35e4d22012-06-27 17:19:42 +03007243 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007244}
7245
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007246static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7247 u8 *rates, u8 rates_len)
7248{
7249 u8 i;
7250 u32 mask = 0;
7251
7252 for (i = 0; i < rates_len; i++) {
7253 int rate = (rates[i] & 0x7f) * 5;
7254 int ridx;
7255 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7256 struct ieee80211_rate *srate =
7257 &sband->bitrates[ridx];
7258 if (rate == srate->bitrate) {
7259 mask |= 1 << ridx;
7260 break;
7261 }
7262 }
7263 if (ridx == sband->n_bitrates)
7264 return 0; /* rate not found */
7265 }
7266
7267 return mask;
7268}
7269
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007270static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7271 u8 *rates, u8 rates_len,
7272 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7273{
7274 u8 i;
7275
7276 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7277
7278 for (i = 0; i < rates_len; i++) {
7279 int ridx, rbit;
7280
7281 ridx = rates[i] / 8;
7282 rbit = BIT(rates[i] % 8);
7283
7284 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007285 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007286 return false;
7287
7288 /* check availability */
7289 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7290 mcs[ridx] |= rbit;
7291 else
7292 return false;
7293 }
7294
7295 return true;
7296}
7297
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007298static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007299 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7300 .len = NL80211_MAX_SUPP_RATES },
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007301 [NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
7302 .len = NL80211_MAX_SUPP_HT_RATES },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007303};
7304
7305static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7306 struct genl_info *info)
7307{
7308 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007309 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007310 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007311 int rem, i;
7312 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007313 struct nlattr *tx_rates;
7314 struct ieee80211_supported_band *sband;
7315
7316 if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
7317 return -EINVAL;
7318
Johannes Berg4c476992010-10-04 21:36:35 +02007319 if (!rdev->ops->set_bitrate_mask)
7320 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007321
7322 memset(&mask, 0, sizeof(mask));
7323 /* Default to all rates enabled */
7324 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7325 sband = rdev->wiphy.bands[i];
7326 mask.control[i].legacy =
7327 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007328 if (sband)
7329 memcpy(mask.control[i].mcs,
7330 sband->ht_cap.mcs.rx_mask,
7331 sizeof(mask.control[i].mcs));
7332 else
7333 memset(mask.control[i].mcs, 0,
7334 sizeof(mask.control[i].mcs));
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007335 }
7336
7337 /*
7338 * The nested attribute uses enum nl80211_band as the index. This maps
7339 * directly to the enum ieee80211_band values used in cfg80211.
7340 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007341 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007342 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
7343 {
7344 enum ieee80211_band band = nla_type(tx_rates);
Johannes Berg4c476992010-10-04 21:36:35 +02007345 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7346 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007347 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007348 if (sband == NULL)
7349 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007350 nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7351 nla_len(tx_rates), nl80211_txattr_policy);
7352 if (tb[NL80211_TXRATE_LEGACY]) {
7353 mask.control[band].legacy = rateset_to_mask(
7354 sband,
7355 nla_data(tb[NL80211_TXRATE_LEGACY]),
7356 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307357 if ((mask.control[band].legacy == 0) &&
7358 nla_len(tb[NL80211_TXRATE_LEGACY]))
7359 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007360 }
7361 if (tb[NL80211_TXRATE_MCS]) {
7362 if (!ht_rateset_to_mask(
7363 sband,
7364 nla_data(tb[NL80211_TXRATE_MCS]),
7365 nla_len(tb[NL80211_TXRATE_MCS]),
7366 mask.control[band].mcs))
7367 return -EINVAL;
7368 }
7369
7370 if (mask.control[band].legacy == 0) {
7371 /* don't allow empty legacy rates if HT
7372 * is not even supported. */
7373 if (!rdev->wiphy.bands[band]->ht_cap.ht_supported)
7374 return -EINVAL;
7375
7376 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
7377 if (mask.control[band].mcs[i])
7378 break;
7379
7380 /* legacy and mcs rates may not be both empty */
7381 if (i == IEEE80211_HT_MCS_MASK_LEN)
Johannes Berg4c476992010-10-04 21:36:35 +02007382 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007383 }
7384 }
7385
Hila Gonene35e4d22012-06-27 17:19:42 +03007386 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007387}
7388
Johannes Berg2e161f72010-08-12 15:38:38 +02007389static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007390{
Johannes Berg4c476992010-10-04 21:36:35 +02007391 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007392 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007393 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007394
7395 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7396 return -EINVAL;
7397
Johannes Berg2e161f72010-08-12 15:38:38 +02007398 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7399 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007400
Johannes Berg71bbc992012-06-15 15:30:18 +02007401 switch (wdev->iftype) {
7402 case NL80211_IFTYPE_STATION:
7403 case NL80211_IFTYPE_ADHOC:
7404 case NL80211_IFTYPE_P2P_CLIENT:
7405 case NL80211_IFTYPE_AP:
7406 case NL80211_IFTYPE_AP_VLAN:
7407 case NL80211_IFTYPE_MESH_POINT:
7408 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007409 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007410 break;
7411 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007412 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007413 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007414
7415 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007416 if (!rdev->ops->mgmt_tx)
7417 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007418
Eric W. Biederman15e47302012-09-07 20:12:54 +00007419 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007420 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7421 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007422}
7423
Johannes Berg2e161f72010-08-12 15:38:38 +02007424static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007425{
Johannes Berg4c476992010-10-04 21:36:35 +02007426 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007427 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007428 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007429 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007430 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007431 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007432 struct sk_buff *msg = NULL;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007433 unsigned int wait = 0;
Johannes Berge247bd902011-11-04 11:18:21 +01007434 bool offchan, no_cck, dont_wait_for_ack;
7435
7436 dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
Jouni Malinen026331c2010-02-15 12:53:10 +02007437
Johannes Berg683b6d32012-11-08 21:25:48 +01007438 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007439 return -EINVAL;
7440
Johannes Berg4c476992010-10-04 21:36:35 +02007441 if (!rdev->ops->mgmt_tx)
7442 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007443
Johannes Berg71bbc992012-06-15 15:30:18 +02007444 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007445 case NL80211_IFTYPE_P2P_DEVICE:
7446 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7447 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007448 case NL80211_IFTYPE_STATION:
7449 case NL80211_IFTYPE_ADHOC:
7450 case NL80211_IFTYPE_P2P_CLIENT:
7451 case NL80211_IFTYPE_AP:
7452 case NL80211_IFTYPE_AP_VLAN:
7453 case NL80211_IFTYPE_MESH_POINT:
7454 case NL80211_IFTYPE_P2P_GO:
7455 break;
7456 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007457 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007458 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007459
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007460 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007461 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007462 return -EINVAL;
7463 wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007464
7465 /*
7466 * We should wait on the channel for at least a minimum amount
7467 * of time (10ms) but no longer than the driver supports.
7468 */
7469 if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7470 wait > rdev->wiphy.max_remain_on_channel_duration)
7471 return -EINVAL;
7472
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007473 }
7474
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007475 offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
7476
Johannes Berg7c4ef712011-11-18 15:33:48 +01007477 if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
7478 return -EINVAL;
7479
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307480 no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
7481
Antonio Quartulliea141b752013-06-11 14:20:03 +02007482 /* get the channel if any has been specified, otherwise pass NULL to
7483 * the driver. The latter will use the current one
7484 */
7485 chandef.chan = NULL;
7486 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7487 err = nl80211_parse_chandef(rdev, info, &chandef);
7488 if (err)
7489 return err;
7490 }
7491
7492 if (!chandef.chan && offchan)
7493 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007494
Johannes Berge247bd902011-11-04 11:18:21 +01007495 if (!dont_wait_for_ack) {
7496 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7497 if (!msg)
7498 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007499
Eric W. Biederman15e47302012-09-07 20:12:54 +00007500 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007501 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007502 if (!hdr) {
7503 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007504 goto free_msg;
7505 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007506 }
Johannes Berge247bd902011-11-04 11:18:21 +01007507
Johannes Berg683b6d32012-11-08 21:25:48 +01007508 err = cfg80211_mlme_mgmt_tx(rdev, wdev, chandef.chan, offchan, wait,
Johannes Berg2e161f72010-08-12 15:38:38 +02007509 nla_data(info->attrs[NL80211_ATTR_FRAME]),
7510 nla_len(info->attrs[NL80211_ATTR_FRAME]),
Johannes Berge247bd902011-11-04 11:18:21 +01007511 no_cck, dont_wait_for_ack, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007512 if (err)
7513 goto free_msg;
7514
Johannes Berge247bd902011-11-04 11:18:21 +01007515 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007516 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7517 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007518
Johannes Berge247bd902011-11-04 11:18:21 +01007519 genlmsg_end(msg, hdr);
7520 return genlmsg_reply(msg, info);
7521 }
7522
7523 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007524
7525 nla_put_failure:
7526 err = -ENOBUFS;
7527 free_msg:
7528 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007529 return err;
7530}
7531
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007532static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7533{
7534 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007535 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007536 u64 cookie;
7537
7538 if (!info->attrs[NL80211_ATTR_COOKIE])
7539 return -EINVAL;
7540
7541 if (!rdev->ops->mgmt_tx_cancel_wait)
7542 return -EOPNOTSUPP;
7543
Johannes Berg71bbc992012-06-15 15:30:18 +02007544 switch (wdev->iftype) {
7545 case NL80211_IFTYPE_STATION:
7546 case NL80211_IFTYPE_ADHOC:
7547 case NL80211_IFTYPE_P2P_CLIENT:
7548 case NL80211_IFTYPE_AP:
7549 case NL80211_IFTYPE_AP_VLAN:
7550 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007551 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007552 break;
7553 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007554 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007555 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007556
7557 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7558
Hila Gonene35e4d22012-06-27 17:19:42 +03007559 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007560}
7561
Kalle Valoffb9eb32010-02-17 17:58:10 +02007562static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7563{
Johannes Berg4c476992010-10-04 21:36:35 +02007564 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007565 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007566 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007567 u8 ps_state;
7568 bool state;
7569 int err;
7570
Johannes Berg4c476992010-10-04 21:36:35 +02007571 if (!info->attrs[NL80211_ATTR_PS_STATE])
7572 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007573
7574 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
7575
Johannes Berg4c476992010-10-04 21:36:35 +02007576 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
7577 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007578
7579 wdev = dev->ieee80211_ptr;
7580
Johannes Berg4c476992010-10-04 21:36:35 +02007581 if (!rdev->ops->set_power_mgmt)
7582 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007583
7584 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
7585
7586 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02007587 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007588
Hila Gonene35e4d22012-06-27 17:19:42 +03007589 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02007590 if (!err)
7591 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007592 return err;
7593}
7594
7595static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
7596{
Johannes Berg4c476992010-10-04 21:36:35 +02007597 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007598 enum nl80211_ps_state ps_state;
7599 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007600 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007601 struct sk_buff *msg;
7602 void *hdr;
7603 int err;
7604
Kalle Valoffb9eb32010-02-17 17:58:10 +02007605 wdev = dev->ieee80211_ptr;
7606
Johannes Berg4c476992010-10-04 21:36:35 +02007607 if (!rdev->ops->set_power_mgmt)
7608 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007609
7610 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007611 if (!msg)
7612 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007613
Eric W. Biederman15e47302012-09-07 20:12:54 +00007614 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02007615 NL80211_CMD_GET_POWER_SAVE);
7616 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02007617 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007618 goto free_msg;
7619 }
7620
7621 if (wdev->ps)
7622 ps_state = NL80211_PS_ENABLED;
7623 else
7624 ps_state = NL80211_PS_DISABLED;
7625
David S. Miller9360ffd2012-03-29 04:41:26 -04007626 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
7627 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007628
7629 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007630 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007631
Johannes Berg4c476992010-10-04 21:36:35 +02007632 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007633 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02007634 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007635 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007636 return err;
7637}
7638
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007639static struct nla_policy
7640nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = {
7641 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
7642 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
7643 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07007644 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
7645 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
7646 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007647};
7648
Thomas Pedersen84f10702012-07-12 16:17:33 -07007649static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01007650 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007651{
7652 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07007653 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007654 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07007655
Johannes Bergd9d8b012012-11-26 12:51:52 +01007656 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007657 return -EINVAL;
7658
Thomas Pedersen84f10702012-07-12 16:17:33 -07007659 if (!rdev->ops->set_cqm_txe_config)
7660 return -EOPNOTSUPP;
7661
7662 if (wdev->iftype != NL80211_IFTYPE_STATION &&
7663 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7664 return -EOPNOTSUPP;
7665
Hila Gonene35e4d22012-06-27 17:19:42 +03007666 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07007667}
7668
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007669static int nl80211_set_cqm_rssi(struct genl_info *info,
7670 s32 threshold, u32 hysteresis)
7671{
Johannes Berg4c476992010-10-04 21:36:35 +02007672 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02007673 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007674 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007675
7676 if (threshold > 0)
7677 return -EINVAL;
7678
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007679 /* disabling - hysteresis should also be zero then */
7680 if (threshold == 0)
7681 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007682
Johannes Berg4c476992010-10-04 21:36:35 +02007683 if (!rdev->ops->set_cqm_rssi_config)
7684 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007685
Johannes Berg074ac8d2010-09-16 14:58:22 +02007686 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007687 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7688 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007689
Hila Gonene35e4d22012-06-27 17:19:42 +03007690 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007691}
7692
7693static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
7694{
7695 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
7696 struct nlattr *cqm;
7697 int err;
7698
7699 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007700 if (!cqm)
7701 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007702
7703 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
7704 nl80211_attr_cqm_policy);
7705 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007706 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007707
7708 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
7709 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007710 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
7711 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007712
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007713 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
7714 }
7715
7716 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
7717 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
7718 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
7719 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
7720 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
7721 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
7722
7723 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
7724 }
7725
7726 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007727}
7728
Johannes Berg29cbe682010-12-03 09:20:44 +01007729static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
7730{
7731 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7732 struct net_device *dev = info->user_ptr[1];
7733 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08007734 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01007735 int err;
7736
7737 /* start with default */
7738 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08007739 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01007740
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007741 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01007742 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007743 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01007744 if (err)
7745 return err;
7746 }
7747
7748 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
7749 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
7750 return -EINVAL;
7751
Javier Cardonac80d5452010-12-16 17:37:49 -08007752 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
7753 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
7754
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08007755 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
7756 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
7757 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
7758 return -EINVAL;
7759
Marco Porsch9bdbf042013-01-07 16:04:51 +01007760 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
7761 setup.beacon_interval =
7762 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
7763 if (setup.beacon_interval < 10 ||
7764 setup.beacon_interval > 10000)
7765 return -EINVAL;
7766 }
7767
7768 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
7769 setup.dtim_period =
7770 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
7771 if (setup.dtim_period < 1 || setup.dtim_period > 100)
7772 return -EINVAL;
7773 }
7774
Javier Cardonac80d5452010-12-16 17:37:49 -08007775 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
7776 /* parse additional setup parameters if given */
7777 err = nl80211_parse_mesh_setup(info, &setup);
7778 if (err)
7779 return err;
7780 }
7781
Thomas Pedersend37bb182013-03-04 13:06:13 -08007782 if (setup.user_mpm)
7783 cfg.auto_open_plinks = false;
7784
Johannes Bergcc1d2802012-05-16 23:50:20 +02007785 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01007786 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
7787 if (err)
7788 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007789 } else {
7790 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01007791 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007792 }
7793
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07007794 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
7795 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7796 int n_rates =
7797 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7798 struct ieee80211_supported_band *sband;
7799
7800 if (!setup.chandef.chan)
7801 return -EINVAL;
7802
7803 sband = rdev->wiphy.bands[setup.chandef.chan->band];
7804
7805 err = ieee80211_get_ratemask(sband, rates, n_rates,
7806 &setup.basic_rates);
7807 if (err)
7808 return err;
7809 }
7810
Javier Cardonac80d5452010-12-16 17:37:49 -08007811 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01007812}
7813
7814static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
7815{
7816 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7817 struct net_device *dev = info->user_ptr[1];
7818
7819 return cfg80211_leave_mesh(rdev, dev);
7820}
7821
Johannes Bergdfb89c52012-06-27 09:23:48 +02007822#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007823static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
7824 struct cfg80211_registered_device *rdev)
7825{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007826 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007827 struct nlattr *nl_pats, *nl_pat;
7828 int i, pat_len;
7829
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007830 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007831 return 0;
7832
7833 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
7834 if (!nl_pats)
7835 return -ENOBUFS;
7836
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007837 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007838 nl_pat = nla_nest_start(msg, i + 1);
7839 if (!nl_pat)
7840 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007841 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007842 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007843 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007844 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
7845 wowlan->patterns[i].pattern) ||
7846 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007847 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007848 return -ENOBUFS;
7849 nla_nest_end(msg, nl_pat);
7850 }
7851 nla_nest_end(msg, nl_pats);
7852
7853 return 0;
7854}
7855
Johannes Berg2a0e0472013-01-23 22:57:40 +01007856static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
7857 struct cfg80211_wowlan_tcp *tcp)
7858{
7859 struct nlattr *nl_tcp;
7860
7861 if (!tcp)
7862 return 0;
7863
7864 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
7865 if (!nl_tcp)
7866 return -ENOBUFS;
7867
7868 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
7869 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
7870 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
7871 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
7872 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
7873 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
7874 tcp->payload_len, tcp->payload) ||
7875 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
7876 tcp->data_interval) ||
7877 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
7878 tcp->wake_len, tcp->wake_data) ||
7879 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
7880 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
7881 return -ENOBUFS;
7882
7883 if (tcp->payload_seq.len &&
7884 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
7885 sizeof(tcp->payload_seq), &tcp->payload_seq))
7886 return -ENOBUFS;
7887
7888 if (tcp->payload_tok.len &&
7889 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
7890 sizeof(tcp->payload_tok) + tcp->tokens_size,
7891 &tcp->payload_tok))
7892 return -ENOBUFS;
7893
Johannes Berge248ad32013-05-16 10:24:28 +02007894 nla_nest_end(msg, nl_tcp);
7895
Johannes Berg2a0e0472013-01-23 22:57:40 +01007896 return 0;
7897}
7898
Johannes Bergff1b6e62011-05-04 15:37:28 +02007899static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
7900{
7901 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7902 struct sk_buff *msg;
7903 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007904 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02007905
Johannes Berg964dc9e2013-06-03 17:25:34 +02007906 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02007907 return -EOPNOTSUPP;
7908
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007909 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01007910 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007911 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
7912 rdev->wiphy.wowlan_config->tcp->payload_len +
7913 rdev->wiphy.wowlan_config->tcp->wake_len +
7914 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007915 }
7916
7917 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02007918 if (!msg)
7919 return -ENOMEM;
7920
Eric W. Biederman15e47302012-09-07 20:12:54 +00007921 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02007922 NL80211_CMD_GET_WOWLAN);
7923 if (!hdr)
7924 goto nla_put_failure;
7925
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007926 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02007927 struct nlattr *nl_wowlan;
7928
7929 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
7930 if (!nl_wowlan)
7931 goto nla_put_failure;
7932
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007933 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007934 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007935 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007936 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007937 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007938 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007939 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007940 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007941 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007942 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007943 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007944 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007945 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007946 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
7947 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007948
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007949 if (nl80211_send_wowlan_patterns(msg, rdev))
7950 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007951
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007952 if (nl80211_send_wowlan_tcp(msg,
7953 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01007954 goto nla_put_failure;
7955
Johannes Bergff1b6e62011-05-04 15:37:28 +02007956 nla_nest_end(msg, nl_wowlan);
7957 }
7958
7959 genlmsg_end(msg, hdr);
7960 return genlmsg_reply(msg, info);
7961
7962nla_put_failure:
7963 nlmsg_free(msg);
7964 return -ENOBUFS;
7965}
7966
Johannes Berg2a0e0472013-01-23 22:57:40 +01007967static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
7968 struct nlattr *attr,
7969 struct cfg80211_wowlan *trig)
7970{
7971 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
7972 struct cfg80211_wowlan_tcp *cfg;
7973 struct nl80211_wowlan_tcp_data_token *tok = NULL;
7974 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
7975 u32 size;
7976 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
7977 int err, port;
7978
Johannes Berg964dc9e2013-06-03 17:25:34 +02007979 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007980 return -EINVAL;
7981
7982 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
7983 nla_data(attr), nla_len(attr),
7984 nl80211_wowlan_tcp_policy);
7985 if (err)
7986 return err;
7987
7988 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
7989 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
7990 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
7991 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
7992 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
7993 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
7994 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
7995 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
7996 return -EINVAL;
7997
7998 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02007999 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008000 return -EINVAL;
8001
8002 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02008003 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01008004 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008005 return -EINVAL;
8006
8007 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008008 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008009 return -EINVAL;
8010
8011 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
8012 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
8013 return -EINVAL;
8014
8015 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
8016 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8017
8018 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8019 tokens_size = tokln - sizeof(*tok);
8020
8021 if (!tok->len || tokens_size % tok->len)
8022 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008023 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008024 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008025 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008026 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008027 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008028 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008029 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008030 return -EINVAL;
8031 if (tok->offset + tok->len > data_size)
8032 return -EINVAL;
8033 }
8034
8035 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
8036 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008037 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008038 return -EINVAL;
8039 if (seq->len == 0 || seq->len > 4)
8040 return -EINVAL;
8041 if (seq->len + seq->offset > data_size)
8042 return -EINVAL;
8043 }
8044
8045 size = sizeof(*cfg);
8046 size += data_size;
8047 size += wake_size + wake_mask_size;
8048 size += tokens_size;
8049
8050 cfg = kzalloc(size, GFP_KERNEL);
8051 if (!cfg)
8052 return -ENOMEM;
8053 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
8054 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
8055 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
8056 ETH_ALEN);
8057 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
8058 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
8059 else
8060 port = 0;
8061#ifdef CONFIG_INET
8062 /* allocate a socket and port for it and use it */
8063 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
8064 IPPROTO_TCP, &cfg->sock, 1);
8065 if (err) {
8066 kfree(cfg);
8067 return err;
8068 }
8069 if (inet_csk_get_port(cfg->sock->sk, port)) {
8070 sock_release(cfg->sock);
8071 kfree(cfg);
8072 return -EADDRINUSE;
8073 }
8074 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8075#else
8076 if (!port) {
8077 kfree(cfg);
8078 return -EINVAL;
8079 }
8080 cfg->src_port = port;
8081#endif
8082
8083 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8084 cfg->payload_len = data_size;
8085 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8086 memcpy((void *)cfg->payload,
8087 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8088 data_size);
8089 if (seq)
8090 cfg->payload_seq = *seq;
8091 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8092 cfg->wake_len = wake_size;
8093 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8094 memcpy((void *)cfg->wake_data,
8095 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8096 wake_size);
8097 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8098 data_size + wake_size;
8099 memcpy((void *)cfg->wake_mask,
8100 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8101 wake_mask_size);
8102 if (tok) {
8103 cfg->tokens_size = tokens_size;
8104 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8105 }
8106
8107 trig->tcp = cfg;
8108
8109 return 0;
8110}
8111
Johannes Bergff1b6e62011-05-04 15:37:28 +02008112static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8113{
8114 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8115 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008116 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008117 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008118 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008119 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008120 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008121
Johannes Berg964dc9e2013-06-03 17:25:34 +02008122 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008123 return -EOPNOTSUPP;
8124
Johannes Bergae33bd82012-07-12 16:25:02 +02008125 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8126 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008127 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008128 goto set_wakeup;
8129 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008130
8131 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8132 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8133 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8134 nl80211_wowlan_policy);
8135 if (err)
8136 return err;
8137
8138 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8139 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8140 return -EINVAL;
8141 new_triggers.any = true;
8142 }
8143
8144 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8145 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8146 return -EINVAL;
8147 new_triggers.disconnect = true;
8148 }
8149
8150 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8151 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8152 return -EINVAL;
8153 new_triggers.magic_pkt = true;
8154 }
8155
Johannes Berg77dbbb12011-07-13 10:48:55 +02008156 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8157 return -EINVAL;
8158
8159 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8160 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8161 return -EINVAL;
8162 new_triggers.gtk_rekey_failure = true;
8163 }
8164
8165 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8166 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8167 return -EINVAL;
8168 new_triggers.eap_identity_req = true;
8169 }
8170
8171 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8172 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8173 return -EINVAL;
8174 new_triggers.four_way_handshake = true;
8175 }
8176
8177 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8178 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8179 return -EINVAL;
8180 new_triggers.rfkill_release = true;
8181 }
8182
Johannes Bergff1b6e62011-05-04 15:37:28 +02008183 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8184 struct nlattr *pat;
8185 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008186 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008187 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008188
8189 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8190 rem)
8191 n_patterns++;
8192 if (n_patterns > wowlan->n_patterns)
8193 return -EINVAL;
8194
8195 new_triggers.patterns = kcalloc(n_patterns,
8196 sizeof(new_triggers.patterns[0]),
8197 GFP_KERNEL);
8198 if (!new_triggers.patterns)
8199 return -ENOMEM;
8200
8201 new_triggers.n_patterns = n_patterns;
8202 i = 0;
8203
8204 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8205 rem) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008206 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8207 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008208 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008209 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8210 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008211 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008212 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008213 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008214 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008215 goto error;
8216 if (pat_len > wowlan->pattern_max_len ||
8217 pat_len < wowlan->pattern_min_len)
8218 goto error;
8219
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008220 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008221 pkt_offset = 0;
8222 else
8223 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008224 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008225 if (pkt_offset > wowlan->max_pkt_offset)
8226 goto error;
8227 new_triggers.patterns[i].pkt_offset = pkt_offset;
8228
Johannes Bergff1b6e62011-05-04 15:37:28 +02008229 new_triggers.patterns[i].mask =
8230 kmalloc(mask_len + pat_len, GFP_KERNEL);
8231 if (!new_triggers.patterns[i].mask) {
8232 err = -ENOMEM;
8233 goto error;
8234 }
8235 new_triggers.patterns[i].pattern =
8236 new_triggers.patterns[i].mask + mask_len;
8237 memcpy(new_triggers.patterns[i].mask,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008238 nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008239 mask_len);
8240 new_triggers.patterns[i].pattern_len = pat_len;
8241 memcpy(new_triggers.patterns[i].pattern,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008242 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008243 pat_len);
8244 i++;
8245 }
8246 }
8247
Johannes Berg2a0e0472013-01-23 22:57:40 +01008248 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8249 err = nl80211_parse_wowlan_tcp(
8250 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8251 &new_triggers);
8252 if (err)
8253 goto error;
8254 }
8255
Johannes Bergae33bd82012-07-12 16:25:02 +02008256 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8257 if (!ntrig) {
8258 err = -ENOMEM;
8259 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008260 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008261 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008262 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008263
Johannes Bergae33bd82012-07-12 16:25:02 +02008264 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008265 if (rdev->ops->set_wakeup &&
8266 prev_enabled != !!rdev->wiphy.wowlan_config)
8267 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008268
Johannes Bergff1b6e62011-05-04 15:37:28 +02008269 return 0;
8270 error:
8271 for (i = 0; i < new_triggers.n_patterns; i++)
8272 kfree(new_triggers.patterns[i].mask);
8273 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008274 if (new_triggers.tcp && new_triggers.tcp->sock)
8275 sock_release(new_triggers.tcp->sock);
8276 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008277 return err;
8278}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008279#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008280
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008281static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8282 struct cfg80211_registered_device *rdev)
8283{
8284 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8285 int i, j, pat_len;
8286 struct cfg80211_coalesce_rules *rule;
8287
8288 if (!rdev->coalesce->n_rules)
8289 return 0;
8290
8291 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8292 if (!nl_rules)
8293 return -ENOBUFS;
8294
8295 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8296 nl_rule = nla_nest_start(msg, i + 1);
8297 if (!nl_rule)
8298 return -ENOBUFS;
8299
8300 rule = &rdev->coalesce->rules[i];
8301 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8302 rule->delay))
8303 return -ENOBUFS;
8304
8305 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8306 rule->condition))
8307 return -ENOBUFS;
8308
8309 nl_pats = nla_nest_start(msg,
8310 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8311 if (!nl_pats)
8312 return -ENOBUFS;
8313
8314 for (j = 0; j < rule->n_patterns; j++) {
8315 nl_pat = nla_nest_start(msg, j + 1);
8316 if (!nl_pat)
8317 return -ENOBUFS;
8318 pat_len = rule->patterns[j].pattern_len;
8319 if (nla_put(msg, NL80211_PKTPAT_MASK,
8320 DIV_ROUND_UP(pat_len, 8),
8321 rule->patterns[j].mask) ||
8322 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8323 rule->patterns[j].pattern) ||
8324 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8325 rule->patterns[j].pkt_offset))
8326 return -ENOBUFS;
8327 nla_nest_end(msg, nl_pat);
8328 }
8329 nla_nest_end(msg, nl_pats);
8330 nla_nest_end(msg, nl_rule);
8331 }
8332 nla_nest_end(msg, nl_rules);
8333
8334 return 0;
8335}
8336
8337static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8338{
8339 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8340 struct sk_buff *msg;
8341 void *hdr;
8342
8343 if (!rdev->wiphy.coalesce)
8344 return -EOPNOTSUPP;
8345
8346 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8347 if (!msg)
8348 return -ENOMEM;
8349
8350 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8351 NL80211_CMD_GET_COALESCE);
8352 if (!hdr)
8353 goto nla_put_failure;
8354
8355 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8356 goto nla_put_failure;
8357
8358 genlmsg_end(msg, hdr);
8359 return genlmsg_reply(msg, info);
8360
8361nla_put_failure:
8362 nlmsg_free(msg);
8363 return -ENOBUFS;
8364}
8365
8366void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8367{
8368 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8369 int i, j;
8370 struct cfg80211_coalesce_rules *rule;
8371
8372 if (!coalesce)
8373 return;
8374
8375 for (i = 0; i < coalesce->n_rules; i++) {
8376 rule = &coalesce->rules[i];
8377 for (j = 0; j < rule->n_patterns; j++)
8378 kfree(rule->patterns[j].mask);
8379 kfree(rule->patterns);
8380 }
8381 kfree(coalesce->rules);
8382 kfree(coalesce);
8383 rdev->coalesce = NULL;
8384}
8385
8386static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8387 struct nlattr *rule,
8388 struct cfg80211_coalesce_rules *new_rule)
8389{
8390 int err, i;
8391 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8392 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8393 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8394 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8395
8396 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8397 nla_len(rule), nl80211_coalesce_policy);
8398 if (err)
8399 return err;
8400
8401 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8402 new_rule->delay =
8403 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8404 if (new_rule->delay > coalesce->max_delay)
8405 return -EINVAL;
8406
8407 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8408 new_rule->condition =
8409 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8410 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8411 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8412 return -EINVAL;
8413
8414 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8415 return -EINVAL;
8416
8417 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8418 rem)
8419 n_patterns++;
8420 if (n_patterns > coalesce->n_patterns)
8421 return -EINVAL;
8422
8423 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8424 GFP_KERNEL);
8425 if (!new_rule->patterns)
8426 return -ENOMEM;
8427
8428 new_rule->n_patterns = n_patterns;
8429 i = 0;
8430
8431 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8432 rem) {
8433 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8434 nla_len(pat), NULL);
8435 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8436 !pat_tb[NL80211_PKTPAT_PATTERN])
8437 return -EINVAL;
8438 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8439 mask_len = DIV_ROUND_UP(pat_len, 8);
8440 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8441 return -EINVAL;
8442 if (pat_len > coalesce->pattern_max_len ||
8443 pat_len < coalesce->pattern_min_len)
8444 return -EINVAL;
8445
8446 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8447 pkt_offset = 0;
8448 else
8449 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8450 if (pkt_offset > coalesce->max_pkt_offset)
8451 return -EINVAL;
8452 new_rule->patterns[i].pkt_offset = pkt_offset;
8453
8454 new_rule->patterns[i].mask =
8455 kmalloc(mask_len + pat_len, GFP_KERNEL);
8456 if (!new_rule->patterns[i].mask)
8457 return -ENOMEM;
8458 new_rule->patterns[i].pattern =
8459 new_rule->patterns[i].mask + mask_len;
8460 memcpy(new_rule->patterns[i].mask,
8461 nla_data(pat_tb[NL80211_PKTPAT_MASK]), mask_len);
8462 new_rule->patterns[i].pattern_len = pat_len;
8463 memcpy(new_rule->patterns[i].pattern,
8464 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]), pat_len);
8465 i++;
8466 }
8467
8468 return 0;
8469}
8470
8471static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8472{
8473 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8474 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8475 struct cfg80211_coalesce new_coalesce = {};
8476 struct cfg80211_coalesce *n_coalesce;
8477 int err, rem_rule, n_rules = 0, i, j;
8478 struct nlattr *rule;
8479 struct cfg80211_coalesce_rules *tmp_rule;
8480
8481 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8482 return -EOPNOTSUPP;
8483
8484 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8485 cfg80211_rdev_free_coalesce(rdev);
8486 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8487 return 0;
8488 }
8489
8490 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8491 rem_rule)
8492 n_rules++;
8493 if (n_rules > coalesce->n_rules)
8494 return -EINVAL;
8495
8496 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8497 GFP_KERNEL);
8498 if (!new_coalesce.rules)
8499 return -ENOMEM;
8500
8501 new_coalesce.n_rules = n_rules;
8502 i = 0;
8503
8504 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8505 rem_rule) {
8506 err = nl80211_parse_coalesce_rule(rdev, rule,
8507 &new_coalesce.rules[i]);
8508 if (err)
8509 goto error;
8510
8511 i++;
8512 }
8513
8514 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8515 if (err)
8516 goto error;
8517
8518 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8519 if (!n_coalesce) {
8520 err = -ENOMEM;
8521 goto error;
8522 }
8523 cfg80211_rdev_free_coalesce(rdev);
8524 rdev->coalesce = n_coalesce;
8525
8526 return 0;
8527error:
8528 for (i = 0; i < new_coalesce.n_rules; i++) {
8529 tmp_rule = &new_coalesce.rules[i];
8530 for (j = 0; j < tmp_rule->n_patterns; j++)
8531 kfree(tmp_rule->patterns[j].mask);
8532 kfree(tmp_rule->patterns);
8533 }
8534 kfree(new_coalesce.rules);
8535
8536 return err;
8537}
8538
Johannes Berge5497d72011-07-05 16:35:40 +02008539static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8540{
8541 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8542 struct net_device *dev = info->user_ptr[1];
8543 struct wireless_dev *wdev = dev->ieee80211_ptr;
8544 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8545 struct cfg80211_gtk_rekey_data rekey_data;
8546 int err;
8547
8548 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8549 return -EINVAL;
8550
8551 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8552 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8553 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8554 nl80211_rekey_policy);
8555 if (err)
8556 return err;
8557
8558 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8559 return -ERANGE;
8560 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8561 return -ERANGE;
8562 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
8563 return -ERANGE;
8564
8565 memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]),
8566 NL80211_KEK_LEN);
8567 memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]),
8568 NL80211_KCK_LEN);
8569 memcpy(rekey_data.replay_ctr,
8570 nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]),
8571 NL80211_REPLAY_CTR_LEN);
8572
8573 wdev_lock(wdev);
8574 if (!wdev->current_bss) {
8575 err = -ENOTCONN;
8576 goto out;
8577 }
8578
8579 if (!rdev->ops->set_rekey_data) {
8580 err = -EOPNOTSUPP;
8581 goto out;
8582 }
8583
Hila Gonene35e4d22012-06-27 17:19:42 +03008584 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02008585 out:
8586 wdev_unlock(wdev);
8587 return err;
8588}
8589
Johannes Berg28946da2011-11-04 11:18:12 +01008590static int nl80211_register_unexpected_frame(struct sk_buff *skb,
8591 struct genl_info *info)
8592{
8593 struct net_device *dev = info->user_ptr[1];
8594 struct wireless_dev *wdev = dev->ieee80211_ptr;
8595
8596 if (wdev->iftype != NL80211_IFTYPE_AP &&
8597 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8598 return -EINVAL;
8599
Eric W. Biederman15e47302012-09-07 20:12:54 +00008600 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01008601 return -EBUSY;
8602
Eric W. Biederman15e47302012-09-07 20:12:54 +00008603 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01008604 return 0;
8605}
8606
Johannes Berg7f6cf312011-11-04 11:18:15 +01008607static int nl80211_probe_client(struct sk_buff *skb,
8608 struct genl_info *info)
8609{
8610 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8611 struct net_device *dev = info->user_ptr[1];
8612 struct wireless_dev *wdev = dev->ieee80211_ptr;
8613 struct sk_buff *msg;
8614 void *hdr;
8615 const u8 *addr;
8616 u64 cookie;
8617 int err;
8618
8619 if (wdev->iftype != NL80211_IFTYPE_AP &&
8620 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8621 return -EOPNOTSUPP;
8622
8623 if (!info->attrs[NL80211_ATTR_MAC])
8624 return -EINVAL;
8625
8626 if (!rdev->ops->probe_client)
8627 return -EOPNOTSUPP;
8628
8629 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8630 if (!msg)
8631 return -ENOMEM;
8632
Eric W. Biederman15e47302012-09-07 20:12:54 +00008633 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01008634 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008635 if (!hdr) {
8636 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008637 goto free_msg;
8638 }
8639
8640 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
8641
Hila Gonene35e4d22012-06-27 17:19:42 +03008642 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01008643 if (err)
8644 goto free_msg;
8645
David S. Miller9360ffd2012-03-29 04:41:26 -04008646 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
8647 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008648
8649 genlmsg_end(msg, hdr);
8650
8651 return genlmsg_reply(msg, info);
8652
8653 nla_put_failure:
8654 err = -ENOBUFS;
8655 free_msg:
8656 nlmsg_free(msg);
8657 return err;
8658}
8659
Johannes Berg5e760232011-11-04 11:18:17 +01008660static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
8661{
8662 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07008663 struct cfg80211_beacon_registration *reg, *nreg;
8664 int rv;
Johannes Berg5e760232011-11-04 11:18:17 +01008665
8666 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
8667 return -EOPNOTSUPP;
8668
Ben Greear37c73b52012-10-26 14:49:25 -07008669 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
8670 if (!nreg)
8671 return -ENOMEM;
Johannes Berg5e760232011-11-04 11:18:17 +01008672
Ben Greear37c73b52012-10-26 14:49:25 -07008673 /* First, check if already registered. */
8674 spin_lock_bh(&rdev->beacon_registrations_lock);
8675 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
8676 if (reg->nlportid == info->snd_portid) {
8677 rv = -EALREADY;
8678 goto out_err;
8679 }
8680 }
8681 /* Add it to the list */
8682 nreg->nlportid = info->snd_portid;
8683 list_add(&nreg->list, &rdev->beacon_registrations);
8684
8685 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +01008686
8687 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07008688out_err:
8689 spin_unlock_bh(&rdev->beacon_registrations_lock);
8690 kfree(nreg);
8691 return rv;
Johannes Berg5e760232011-11-04 11:18:17 +01008692}
8693
Johannes Berg98104fde2012-06-16 00:19:54 +02008694static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
8695{
8696 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8697 struct wireless_dev *wdev = info->user_ptr[1];
8698 int err;
8699
8700 if (!rdev->ops->start_p2p_device)
8701 return -EOPNOTSUPP;
8702
8703 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8704 return -EOPNOTSUPP;
8705
8706 if (wdev->p2p_started)
8707 return 0;
8708
Johannes Berg98104fde2012-06-16 00:19:54 +02008709 err = cfg80211_can_add_interface(rdev, wdev->iftype);
Johannes Berg98104fde2012-06-16 00:19:54 +02008710 if (err)
8711 return err;
8712
Johannes Bergeeb126e2012-10-23 15:16:50 +02008713 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008714 if (err)
8715 return err;
8716
8717 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02008718 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02008719
8720 return 0;
8721}
8722
8723static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
8724{
8725 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8726 struct wireless_dev *wdev = info->user_ptr[1];
8727
8728 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8729 return -EOPNOTSUPP;
8730
8731 if (!rdev->ops->stop_p2p_device)
8732 return -EOPNOTSUPP;
8733
Johannes Bergf9f47522013-03-19 15:04:07 +01008734 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008735
8736 return 0;
8737}
8738
Johannes Berg3713b4e2013-02-14 16:19:38 +01008739static int nl80211_get_protocol_features(struct sk_buff *skb,
8740 struct genl_info *info)
8741{
8742 void *hdr;
8743 struct sk_buff *msg;
8744
8745 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8746 if (!msg)
8747 return -ENOMEM;
8748
8749 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8750 NL80211_CMD_GET_PROTOCOL_FEATURES);
8751 if (!hdr)
8752 goto nla_put_failure;
8753
8754 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
8755 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
8756 goto nla_put_failure;
8757
8758 genlmsg_end(msg, hdr);
8759 return genlmsg_reply(msg, info);
8760
8761 nla_put_failure:
8762 kfree_skb(msg);
8763 return -ENOBUFS;
8764}
8765
Jouni Malinen355199e2013-02-27 17:14:27 +02008766static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
8767{
8768 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8769 struct cfg80211_update_ft_ies_params ft_params;
8770 struct net_device *dev = info->user_ptr[1];
8771
8772 if (!rdev->ops->update_ft_ies)
8773 return -EOPNOTSUPP;
8774
8775 if (!info->attrs[NL80211_ATTR_MDID] ||
8776 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
8777 return -EINVAL;
8778
8779 memset(&ft_params, 0, sizeof(ft_params));
8780 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
8781 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
8782 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
8783
8784 return rdev_update_ft_ies(rdev, dev, &ft_params);
8785}
8786
Arend van Spriel5de17982013-04-18 15:49:00 +02008787static int nl80211_crit_protocol_start(struct sk_buff *skb,
8788 struct genl_info *info)
8789{
8790 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8791 struct wireless_dev *wdev = info->user_ptr[1];
8792 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
8793 u16 duration;
8794 int ret;
8795
8796 if (!rdev->ops->crit_proto_start)
8797 return -EOPNOTSUPP;
8798
8799 if (WARN_ON(!rdev->ops->crit_proto_stop))
8800 return -EINVAL;
8801
8802 if (rdev->crit_proto_nlportid)
8803 return -EBUSY;
8804
8805 /* determine protocol if provided */
8806 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
8807 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
8808
8809 if (proto >= NUM_NL80211_CRIT_PROTO)
8810 return -EINVAL;
8811
8812 /* timeout must be provided */
8813 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
8814 return -EINVAL;
8815
8816 duration =
8817 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
8818
8819 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
8820 return -ERANGE;
8821
8822 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
8823 if (!ret)
8824 rdev->crit_proto_nlportid = info->snd_portid;
8825
8826 return ret;
8827}
8828
8829static int nl80211_crit_protocol_stop(struct sk_buff *skb,
8830 struct genl_info *info)
8831{
8832 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8833 struct wireless_dev *wdev = info->user_ptr[1];
8834
8835 if (!rdev->ops->crit_proto_stop)
8836 return -EOPNOTSUPP;
8837
8838 if (rdev->crit_proto_nlportid) {
8839 rdev->crit_proto_nlportid = 0;
8840 rdev_crit_proto_stop(rdev, wdev);
8841 }
8842 return 0;
8843}
8844
Johannes Berg4c476992010-10-04 21:36:35 +02008845#define NL80211_FLAG_NEED_WIPHY 0x01
8846#define NL80211_FLAG_NEED_NETDEV 0x02
8847#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02008848#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
8849#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
8850 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02008851#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02008852/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02008853#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
8854 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg4c476992010-10-04 21:36:35 +02008855
8856static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
8857 struct genl_info *info)
8858{
8859 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02008860 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008861 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02008862 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
8863
8864 if (rtnl)
8865 rtnl_lock();
8866
8867 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02008868 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02008869 if (IS_ERR(rdev)) {
8870 if (rtnl)
8871 rtnl_unlock();
8872 return PTR_ERR(rdev);
8873 }
8874 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02008875 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
8876 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008877 ASSERT_RTNL();
8878
Johannes Berg89a54e42012-06-15 14:33:17 +02008879 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
8880 info->attrs);
8881 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02008882 if (rtnl)
8883 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02008884 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02008885 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008886
Johannes Berg89a54e42012-06-15 14:33:17 +02008887 dev = wdev->netdev;
8888 rdev = wiphy_to_dev(wdev->wiphy);
8889
Johannes Berg1bf614e2012-06-15 15:23:36 +02008890 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
8891 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008892 if (rtnl)
8893 rtnl_unlock();
8894 return -EINVAL;
8895 }
8896
8897 info->user_ptr[1] = dev;
8898 } else {
8899 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02008900 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008901
Johannes Berg1bf614e2012-06-15 15:23:36 +02008902 if (dev) {
8903 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
8904 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008905 if (rtnl)
8906 rtnl_unlock();
8907 return -ENETDOWN;
8908 }
8909
8910 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008911 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
8912 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02008913 if (rtnl)
8914 rtnl_unlock();
8915 return -ENETDOWN;
8916 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02008917 }
8918
Johannes Berg4c476992010-10-04 21:36:35 +02008919 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008920 }
8921
8922 return 0;
8923}
8924
8925static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
8926 struct genl_info *info)
8927{
Johannes Berg1bf614e2012-06-15 15:23:36 +02008928 if (info->user_ptr[1]) {
8929 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
8930 struct wireless_dev *wdev = info->user_ptr[1];
8931
8932 if (wdev->netdev)
8933 dev_put(wdev->netdev);
8934 } else {
8935 dev_put(info->user_ptr[1]);
8936 }
8937 }
Johannes Berg4c476992010-10-04 21:36:35 +02008938 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
8939 rtnl_unlock();
8940}
8941
Johannes Berg55682962007-09-20 13:09:35 -04008942static struct genl_ops nl80211_ops[] = {
8943 {
8944 .cmd = NL80211_CMD_GET_WIPHY,
8945 .doit = nl80211_get_wiphy,
8946 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02008947 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04008948 .policy = nl80211_policy,
8949 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008950 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8951 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008952 },
8953 {
8954 .cmd = NL80211_CMD_SET_WIPHY,
8955 .doit = nl80211_set_wiphy,
8956 .policy = nl80211_policy,
8957 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008958 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008959 },
8960 {
8961 .cmd = NL80211_CMD_GET_INTERFACE,
8962 .doit = nl80211_get_interface,
8963 .dumpit = nl80211_dump_interface,
8964 .policy = nl80211_policy,
8965 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008966 .internal_flags = NL80211_FLAG_NEED_WDEV |
8967 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008968 },
8969 {
8970 .cmd = NL80211_CMD_SET_INTERFACE,
8971 .doit = nl80211_set_interface,
8972 .policy = nl80211_policy,
8973 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008974 .internal_flags = NL80211_FLAG_NEED_NETDEV |
8975 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008976 },
8977 {
8978 .cmd = NL80211_CMD_NEW_INTERFACE,
8979 .doit = nl80211_new_interface,
8980 .policy = nl80211_policy,
8981 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008982 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8983 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008984 },
8985 {
8986 .cmd = NL80211_CMD_DEL_INTERFACE,
8987 .doit = nl80211_del_interface,
8988 .policy = nl80211_policy,
8989 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02008990 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02008991 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008992 },
Johannes Berg41ade002007-12-19 02:03:29 +01008993 {
8994 .cmd = NL80211_CMD_GET_KEY,
8995 .doit = nl80211_get_key,
8996 .policy = nl80211_policy,
8997 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008998 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008999 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009000 },
9001 {
9002 .cmd = NL80211_CMD_SET_KEY,
9003 .doit = nl80211_set_key,
9004 .policy = nl80211_policy,
9005 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009006 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009007 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009008 },
9009 {
9010 .cmd = NL80211_CMD_NEW_KEY,
9011 .doit = nl80211_new_key,
9012 .policy = nl80211_policy,
9013 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009014 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009015 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009016 },
9017 {
9018 .cmd = NL80211_CMD_DEL_KEY,
9019 .doit = nl80211_del_key,
9020 .policy = nl80211_policy,
9021 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009022 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009023 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009024 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01009025 {
9026 .cmd = NL80211_CMD_SET_BEACON,
9027 .policy = nl80211_policy,
9028 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009029 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009030 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009031 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009032 },
9033 {
Johannes Berg88600202012-02-13 15:17:18 +01009034 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009035 .policy = nl80211_policy,
9036 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009037 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009038 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009039 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009040 },
9041 {
Johannes Berg88600202012-02-13 15:17:18 +01009042 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009043 .policy = nl80211_policy,
9044 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009045 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009046 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009047 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009048 },
Johannes Berg5727ef12007-12-19 02:03:34 +01009049 {
9050 .cmd = NL80211_CMD_GET_STATION,
9051 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009052 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01009053 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02009054 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9055 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009056 },
9057 {
9058 .cmd = NL80211_CMD_SET_STATION,
9059 .doit = nl80211_set_station,
9060 .policy = nl80211_policy,
9061 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009062 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009063 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009064 },
9065 {
9066 .cmd = NL80211_CMD_NEW_STATION,
9067 .doit = nl80211_new_station,
9068 .policy = nl80211_policy,
9069 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009070 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009071 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009072 },
9073 {
9074 .cmd = NL80211_CMD_DEL_STATION,
9075 .doit = nl80211_del_station,
9076 .policy = nl80211_policy,
9077 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009078 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009079 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009080 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009081 {
9082 .cmd = NL80211_CMD_GET_MPATH,
9083 .doit = nl80211_get_mpath,
9084 .dumpit = nl80211_dump_mpath,
9085 .policy = nl80211_policy,
9086 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009087 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009088 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009089 },
9090 {
9091 .cmd = NL80211_CMD_SET_MPATH,
9092 .doit = nl80211_set_mpath,
9093 .policy = nl80211_policy,
9094 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009095 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009096 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009097 },
9098 {
9099 .cmd = NL80211_CMD_NEW_MPATH,
9100 .doit = nl80211_new_mpath,
9101 .policy = nl80211_policy,
9102 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009103 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009104 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009105 },
9106 {
9107 .cmd = NL80211_CMD_DEL_MPATH,
9108 .doit = nl80211_del_mpath,
9109 .policy = nl80211_policy,
9110 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009111 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009112 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009113 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009114 {
9115 .cmd = NL80211_CMD_SET_BSS,
9116 .doit = nl80211_set_bss,
9117 .policy = nl80211_policy,
9118 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009119 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009120 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009121 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009122 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009123 .cmd = NL80211_CMD_GET_REG,
9124 .doit = nl80211_get_reg,
9125 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009126 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009127 /* can be retrieved by unprivileged users */
9128 },
9129 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009130 .cmd = NL80211_CMD_SET_REG,
9131 .doit = nl80211_set_reg,
9132 .policy = nl80211_policy,
9133 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009134 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009135 },
9136 {
9137 .cmd = NL80211_CMD_REQ_SET_REG,
9138 .doit = nl80211_req_set_reg,
9139 .policy = nl80211_policy,
9140 .flags = GENL_ADMIN_PERM,
9141 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009142 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009143 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9144 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009145 .policy = nl80211_policy,
9146 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009147 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009148 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009149 },
9150 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009151 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9152 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009153 .policy = nl80211_policy,
9154 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009155 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009156 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009157 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009158 {
Johannes Berg2a519312009-02-10 21:25:55 +01009159 .cmd = NL80211_CMD_TRIGGER_SCAN,
9160 .doit = nl80211_trigger_scan,
9161 .policy = nl80211_policy,
9162 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009163 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009164 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009165 },
9166 {
9167 .cmd = NL80211_CMD_GET_SCAN,
9168 .policy = nl80211_policy,
9169 .dumpit = nl80211_dump_scan,
9170 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009171 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009172 .cmd = NL80211_CMD_START_SCHED_SCAN,
9173 .doit = nl80211_start_sched_scan,
9174 .policy = nl80211_policy,
9175 .flags = GENL_ADMIN_PERM,
9176 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9177 NL80211_FLAG_NEED_RTNL,
9178 },
9179 {
9180 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9181 .doit = nl80211_stop_sched_scan,
9182 .policy = nl80211_policy,
9183 .flags = GENL_ADMIN_PERM,
9184 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9185 NL80211_FLAG_NEED_RTNL,
9186 },
9187 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009188 .cmd = NL80211_CMD_AUTHENTICATE,
9189 .doit = nl80211_authenticate,
9190 .policy = nl80211_policy,
9191 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009192 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009193 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009194 },
9195 {
9196 .cmd = NL80211_CMD_ASSOCIATE,
9197 .doit = nl80211_associate,
9198 .policy = nl80211_policy,
9199 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009200 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009201 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009202 },
9203 {
9204 .cmd = NL80211_CMD_DEAUTHENTICATE,
9205 .doit = nl80211_deauthenticate,
9206 .policy = nl80211_policy,
9207 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009208 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009209 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009210 },
9211 {
9212 .cmd = NL80211_CMD_DISASSOCIATE,
9213 .doit = nl80211_disassociate,
9214 .policy = nl80211_policy,
9215 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009216 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009217 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009218 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009219 {
9220 .cmd = NL80211_CMD_JOIN_IBSS,
9221 .doit = nl80211_join_ibss,
9222 .policy = nl80211_policy,
9223 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009224 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009225 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009226 },
9227 {
9228 .cmd = NL80211_CMD_LEAVE_IBSS,
9229 .doit = nl80211_leave_ibss,
9230 .policy = nl80211_policy,
9231 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009232 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009233 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009234 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009235#ifdef CONFIG_NL80211_TESTMODE
9236 {
9237 .cmd = NL80211_CMD_TESTMODE,
9238 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009239 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009240 .policy = nl80211_policy,
9241 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009242 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9243 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009244 },
9245#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009246 {
9247 .cmd = NL80211_CMD_CONNECT,
9248 .doit = nl80211_connect,
9249 .policy = nl80211_policy,
9250 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009251 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009252 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009253 },
9254 {
9255 .cmd = NL80211_CMD_DISCONNECT,
9256 .doit = nl80211_disconnect,
9257 .policy = nl80211_policy,
9258 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009259 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009260 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009261 },
Johannes Berg463d0182009-07-14 00:33:35 +02009262 {
9263 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9264 .doit = nl80211_wiphy_netns,
9265 .policy = nl80211_policy,
9266 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009267 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9268 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009269 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009270 {
9271 .cmd = NL80211_CMD_GET_SURVEY,
9272 .policy = nl80211_policy,
9273 .dumpit = nl80211_dump_survey,
9274 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009275 {
9276 .cmd = NL80211_CMD_SET_PMKSA,
9277 .doit = nl80211_setdel_pmksa,
9278 .policy = nl80211_policy,
9279 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009280 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009281 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009282 },
9283 {
9284 .cmd = NL80211_CMD_DEL_PMKSA,
9285 .doit = nl80211_setdel_pmksa,
9286 .policy = nl80211_policy,
9287 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009288 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009289 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009290 },
9291 {
9292 .cmd = NL80211_CMD_FLUSH_PMKSA,
9293 .doit = nl80211_flush_pmksa,
9294 .policy = nl80211_policy,
9295 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009296 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009297 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009298 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009299 {
9300 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9301 .doit = nl80211_remain_on_channel,
9302 .policy = nl80211_policy,
9303 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009304 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009305 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009306 },
9307 {
9308 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9309 .doit = nl80211_cancel_remain_on_channel,
9310 .policy = nl80211_policy,
9311 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009312 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009313 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009314 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009315 {
9316 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
9317 .doit = nl80211_set_tx_bitrate_mask,
9318 .policy = nl80211_policy,
9319 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009320 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9321 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009322 },
Jouni Malinen026331c2010-02-15 12:53:10 +02009323 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009324 .cmd = NL80211_CMD_REGISTER_FRAME,
9325 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009326 .policy = nl80211_policy,
9327 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009328 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009329 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009330 },
9331 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009332 .cmd = NL80211_CMD_FRAME,
9333 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009334 .policy = nl80211_policy,
9335 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009336 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009337 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009338 },
Kalle Valoffb9eb32010-02-17 17:58:10 +02009339 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009340 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
9341 .doit = nl80211_tx_mgmt_cancel_wait,
9342 .policy = nl80211_policy,
9343 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009344 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009345 NL80211_FLAG_NEED_RTNL,
9346 },
9347 {
Kalle Valoffb9eb32010-02-17 17:58:10 +02009348 .cmd = NL80211_CMD_SET_POWER_SAVE,
9349 .doit = nl80211_set_power_save,
9350 .policy = nl80211_policy,
9351 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009352 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9353 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009354 },
9355 {
9356 .cmd = NL80211_CMD_GET_POWER_SAVE,
9357 .doit = nl80211_get_power_save,
9358 .policy = nl80211_policy,
9359 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +02009360 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9361 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009362 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009363 {
9364 .cmd = NL80211_CMD_SET_CQM,
9365 .doit = nl80211_set_cqm,
9366 .policy = nl80211_policy,
9367 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009368 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9369 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009370 },
Johannes Bergf444de02010-05-05 15:25:02 +02009371 {
9372 .cmd = NL80211_CMD_SET_CHANNEL,
9373 .doit = nl80211_set_channel,
9374 .policy = nl80211_policy,
9375 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009376 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9377 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +02009378 },
Bill Jordane8347eb2010-10-01 13:54:28 -04009379 {
9380 .cmd = NL80211_CMD_SET_WDS_PEER,
9381 .doit = nl80211_set_wds_peer,
9382 .policy = nl80211_policy,
9383 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +02009384 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9385 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -04009386 },
Johannes Berg29cbe682010-12-03 09:20:44 +01009387 {
9388 .cmd = NL80211_CMD_JOIN_MESH,
9389 .doit = nl80211_join_mesh,
9390 .policy = nl80211_policy,
9391 .flags = GENL_ADMIN_PERM,
9392 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9393 NL80211_FLAG_NEED_RTNL,
9394 },
9395 {
9396 .cmd = NL80211_CMD_LEAVE_MESH,
9397 .doit = nl80211_leave_mesh,
9398 .policy = nl80211_policy,
9399 .flags = GENL_ADMIN_PERM,
9400 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9401 NL80211_FLAG_NEED_RTNL,
9402 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009403#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02009404 {
9405 .cmd = NL80211_CMD_GET_WOWLAN,
9406 .doit = nl80211_get_wowlan,
9407 .policy = nl80211_policy,
9408 /* can be retrieved by unprivileged users */
9409 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9410 NL80211_FLAG_NEED_RTNL,
9411 },
9412 {
9413 .cmd = NL80211_CMD_SET_WOWLAN,
9414 .doit = nl80211_set_wowlan,
9415 .policy = nl80211_policy,
9416 .flags = GENL_ADMIN_PERM,
9417 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9418 NL80211_FLAG_NEED_RTNL,
9419 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009420#endif
Johannes Berge5497d72011-07-05 16:35:40 +02009421 {
9422 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
9423 .doit = nl80211_set_rekey_data,
9424 .policy = nl80211_policy,
9425 .flags = GENL_ADMIN_PERM,
9426 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9427 NL80211_FLAG_NEED_RTNL,
9428 },
Arik Nemtsov109086c2011-09-28 14:12:50 +03009429 {
9430 .cmd = NL80211_CMD_TDLS_MGMT,
9431 .doit = nl80211_tdls_mgmt,
9432 .policy = nl80211_policy,
9433 .flags = GENL_ADMIN_PERM,
9434 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9435 NL80211_FLAG_NEED_RTNL,
9436 },
9437 {
9438 .cmd = NL80211_CMD_TDLS_OPER,
9439 .doit = nl80211_tdls_oper,
9440 .policy = nl80211_policy,
9441 .flags = GENL_ADMIN_PERM,
9442 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9443 NL80211_FLAG_NEED_RTNL,
9444 },
Johannes Berg28946da2011-11-04 11:18:12 +01009445 {
9446 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
9447 .doit = nl80211_register_unexpected_frame,
9448 .policy = nl80211_policy,
9449 .flags = GENL_ADMIN_PERM,
9450 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9451 NL80211_FLAG_NEED_RTNL,
9452 },
Johannes Berg7f6cf312011-11-04 11:18:15 +01009453 {
9454 .cmd = NL80211_CMD_PROBE_CLIENT,
9455 .doit = nl80211_probe_client,
9456 .policy = nl80211_policy,
9457 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009458 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +01009459 NL80211_FLAG_NEED_RTNL,
9460 },
Johannes Berg5e760232011-11-04 11:18:17 +01009461 {
9462 .cmd = NL80211_CMD_REGISTER_BEACONS,
9463 .doit = nl80211_register_beacons,
9464 .policy = nl80211_policy,
9465 .flags = GENL_ADMIN_PERM,
9466 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9467 NL80211_FLAG_NEED_RTNL,
9468 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01009469 {
9470 .cmd = NL80211_CMD_SET_NOACK_MAP,
9471 .doit = nl80211_set_noack_map,
9472 .policy = nl80211_policy,
9473 .flags = GENL_ADMIN_PERM,
9474 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9475 NL80211_FLAG_NEED_RTNL,
9476 },
Johannes Berg98104fde2012-06-16 00:19:54 +02009477 {
9478 .cmd = NL80211_CMD_START_P2P_DEVICE,
9479 .doit = nl80211_start_p2p_device,
9480 .policy = nl80211_policy,
9481 .flags = GENL_ADMIN_PERM,
9482 .internal_flags = NL80211_FLAG_NEED_WDEV |
9483 NL80211_FLAG_NEED_RTNL,
9484 },
9485 {
9486 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
9487 .doit = nl80211_stop_p2p_device,
9488 .policy = nl80211_policy,
9489 .flags = GENL_ADMIN_PERM,
9490 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9491 NL80211_FLAG_NEED_RTNL,
9492 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +01009493 {
9494 .cmd = NL80211_CMD_SET_MCAST_RATE,
9495 .doit = nl80211_set_mcast_rate,
9496 .policy = nl80211_policy,
9497 .flags = GENL_ADMIN_PERM,
9498 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9499 NL80211_FLAG_NEED_RTNL,
9500 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05309501 {
9502 .cmd = NL80211_CMD_SET_MAC_ACL,
9503 .doit = nl80211_set_mac_acl,
9504 .policy = nl80211_policy,
9505 .flags = GENL_ADMIN_PERM,
9506 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9507 NL80211_FLAG_NEED_RTNL,
9508 },
Simon Wunderlich04f39042013-02-08 18:16:19 +01009509 {
9510 .cmd = NL80211_CMD_RADAR_DETECT,
9511 .doit = nl80211_start_radar_detection,
9512 .policy = nl80211_policy,
9513 .flags = GENL_ADMIN_PERM,
9514 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9515 NL80211_FLAG_NEED_RTNL,
9516 },
Johannes Berg3713b4e2013-02-14 16:19:38 +01009517 {
9518 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
9519 .doit = nl80211_get_protocol_features,
9520 .policy = nl80211_policy,
9521 },
Jouni Malinen355199e2013-02-27 17:14:27 +02009522 {
9523 .cmd = NL80211_CMD_UPDATE_FT_IES,
9524 .doit = nl80211_update_ft_ies,
9525 .policy = nl80211_policy,
9526 .flags = GENL_ADMIN_PERM,
9527 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9528 NL80211_FLAG_NEED_RTNL,
9529 },
Arend van Spriel5de17982013-04-18 15:49:00 +02009530 {
9531 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
9532 .doit = nl80211_crit_protocol_start,
9533 .policy = nl80211_policy,
9534 .flags = GENL_ADMIN_PERM,
9535 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9536 NL80211_FLAG_NEED_RTNL,
9537 },
9538 {
9539 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
9540 .doit = nl80211_crit_protocol_stop,
9541 .policy = nl80211_policy,
9542 .flags = GENL_ADMIN_PERM,
9543 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9544 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07009545 },
9546 {
9547 .cmd = NL80211_CMD_GET_COALESCE,
9548 .doit = nl80211_get_coalesce,
9549 .policy = nl80211_policy,
9550 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9551 NL80211_FLAG_NEED_RTNL,
9552 },
9553 {
9554 .cmd = NL80211_CMD_SET_COALESCE,
9555 .doit = nl80211_set_coalesce,
9556 .policy = nl80211_policy,
9557 .flags = GENL_ADMIN_PERM,
9558 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9559 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02009560 },
9561 {
9562 .cmd = NL80211_CMD_CHANNEL_SWITCH,
9563 .doit = nl80211_channel_switch,
9564 .policy = nl80211_policy,
9565 .flags = GENL_ADMIN_PERM,
9566 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9567 NL80211_FLAG_NEED_RTNL,
9568 },
Johannes Berg55682962007-09-20 13:09:35 -04009569};
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009570
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009571static struct genl_multicast_group nl80211_mlme_mcgrp = {
9572 .name = "mlme",
9573};
Johannes Berg55682962007-09-20 13:09:35 -04009574
9575/* multicast groups */
9576static struct genl_multicast_group nl80211_config_mcgrp = {
9577 .name = "config",
9578};
Johannes Berg2a519312009-02-10 21:25:55 +01009579static struct genl_multicast_group nl80211_scan_mcgrp = {
9580 .name = "scan",
9581};
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009582static struct genl_multicast_group nl80211_regulatory_mcgrp = {
9583 .name = "regulatory",
9584};
Johannes Berg55682962007-09-20 13:09:35 -04009585
9586/* notification functions */
9587
9588void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
9589{
9590 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +02009591 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04009592
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009593 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009594 if (!msg)
9595 return;
9596
Johannes Berg86e8cf92013-06-19 10:57:22 +02009597 if (nl80211_send_wiphy(rdev, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -04009598 nlmsg_free(msg);
9599 return;
9600 }
9601
Johannes Berg463d0182009-07-14 00:33:35 +02009602 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9603 nl80211_config_mcgrp.id, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009604}
9605
Johannes Berg362a4152009-05-24 16:43:15 +02009606static int nl80211_add_scan_req(struct sk_buff *msg,
9607 struct cfg80211_registered_device *rdev)
9608{
9609 struct cfg80211_scan_request *req = rdev->scan_req;
9610 struct nlattr *nest;
9611 int i;
9612
9613 if (WARN_ON(!req))
9614 return 0;
9615
9616 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
9617 if (!nest)
9618 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009619 for (i = 0; i < req->n_ssids; i++) {
9620 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
9621 goto nla_put_failure;
9622 }
Johannes Berg362a4152009-05-24 16:43:15 +02009623 nla_nest_end(msg, nest);
9624
9625 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
9626 if (!nest)
9627 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009628 for (i = 0; i < req->n_channels; i++) {
9629 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
9630 goto nla_put_failure;
9631 }
Johannes Berg362a4152009-05-24 16:43:15 +02009632 nla_nest_end(msg, nest);
9633
David S. Miller9360ffd2012-03-29 04:41:26 -04009634 if (req->ie &&
9635 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
9636 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +02009637
Sam Lefflered4737712012-10-11 21:03:31 -07009638 if (req->flags)
9639 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags);
9640
Johannes Berg362a4152009-05-24 16:43:15 +02009641 return 0;
9642 nla_put_failure:
9643 return -ENOBUFS;
9644}
9645
Johannes Berga538e2d2009-06-16 19:56:42 +02009646static int nl80211_send_scan_msg(struct sk_buff *msg,
9647 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009648 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009649 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +02009650 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +01009651{
9652 void *hdr;
9653
Eric W. Biederman15e47302012-09-07 20:12:54 +00009654 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +01009655 if (!hdr)
9656 return -1;
9657
David S. Miller9360ffd2012-03-29 04:41:26 -04009658 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +02009659 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
9660 wdev->netdev->ifindex)) ||
9661 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
David S. Miller9360ffd2012-03-29 04:41:26 -04009662 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01009663
Johannes Berg362a4152009-05-24 16:43:15 +02009664 /* ignore errors and send incomplete event anyway */
9665 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01009666
9667 return genlmsg_end(msg, hdr);
9668
9669 nla_put_failure:
9670 genlmsg_cancel(msg, hdr);
9671 return -EMSGSIZE;
9672}
9673
Luciano Coelho807f8a82011-05-11 17:09:35 +03009674static int
9675nl80211_send_sched_scan_msg(struct sk_buff *msg,
9676 struct cfg80211_registered_device *rdev,
9677 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009678 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +03009679{
9680 void *hdr;
9681
Eric W. Biederman15e47302012-09-07 20:12:54 +00009682 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009683 if (!hdr)
9684 return -1;
9685
David S. Miller9360ffd2012-03-29 04:41:26 -04009686 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9687 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
9688 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +03009689
9690 return genlmsg_end(msg, hdr);
9691
9692 nla_put_failure:
9693 genlmsg_cancel(msg, hdr);
9694 return -EMSGSIZE;
9695}
9696
Johannes Berga538e2d2009-06-16 19:56:42 +02009697void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009698 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +02009699{
9700 struct sk_buff *msg;
9701
Thomas Graf58050fc2012-06-28 03:57:45 +00009702 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009703 if (!msg)
9704 return;
9705
Johannes Bergfd014282012-06-18 19:17:03 +02009706 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009707 NL80211_CMD_TRIGGER_SCAN) < 0) {
9708 nlmsg_free(msg);
9709 return;
9710 }
9711
Johannes Berg463d0182009-07-14 00:33:35 +02009712 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9713 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009714}
9715
Johannes Berg2a519312009-02-10 21:25:55 +01009716void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009717 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009718{
9719 struct sk_buff *msg;
9720
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009721 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009722 if (!msg)
9723 return;
9724
Johannes Bergfd014282012-06-18 19:17:03 +02009725 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009726 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009727 nlmsg_free(msg);
9728 return;
9729 }
9730
Johannes Berg463d0182009-07-14 00:33:35 +02009731 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9732 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009733}
9734
9735void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009736 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009737{
9738 struct sk_buff *msg;
9739
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009740 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009741 if (!msg)
9742 return;
9743
Johannes Bergfd014282012-06-18 19:17:03 +02009744 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009745 NL80211_CMD_SCAN_ABORTED) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009746 nlmsg_free(msg);
9747 return;
9748 }
9749
Johannes Berg463d0182009-07-14 00:33:35 +02009750 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9751 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009752}
9753
Luciano Coelho807f8a82011-05-11 17:09:35 +03009754void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
9755 struct net_device *netdev)
9756{
9757 struct sk_buff *msg;
9758
9759 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9760 if (!msg)
9761 return;
9762
9763 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
9764 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
9765 nlmsg_free(msg);
9766 return;
9767 }
9768
9769 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9770 nl80211_scan_mcgrp.id, GFP_KERNEL);
9771}
9772
9773void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
9774 struct net_device *netdev, u32 cmd)
9775{
9776 struct sk_buff *msg;
9777
Thomas Graf58050fc2012-06-28 03:57:45 +00009778 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009779 if (!msg)
9780 return;
9781
9782 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
9783 nlmsg_free(msg);
9784 return;
9785 }
9786
9787 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9788 nl80211_scan_mcgrp.id, GFP_KERNEL);
9789}
9790
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009791/*
9792 * This can happen on global regulatory changes or device specific settings
9793 * based on custom world regulatory domains.
9794 */
9795void nl80211_send_reg_change_event(struct regulatory_request *request)
9796{
9797 struct sk_buff *msg;
9798 void *hdr;
9799
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009800 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009801 if (!msg)
9802 return;
9803
9804 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
9805 if (!hdr) {
9806 nlmsg_free(msg);
9807 return;
9808 }
9809
9810 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -04009811 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
9812 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009813
David S. Miller9360ffd2012-03-29 04:41:26 -04009814 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
9815 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9816 NL80211_REGDOM_TYPE_WORLD))
9817 goto nla_put_failure;
9818 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
9819 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9820 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
9821 goto nla_put_failure;
9822 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
9823 request->intersect) {
9824 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9825 NL80211_REGDOM_TYPE_INTERSECTION))
9826 goto nla_put_failure;
9827 } else {
9828 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9829 NL80211_REGDOM_TYPE_COUNTRY) ||
9830 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
9831 request->alpha2))
9832 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009833 }
9834
Johannes Bergf4173762012-12-03 18:23:37 +01009835 if (request->wiphy_idx != WIPHY_IDX_INVALID &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009836 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
9837 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009838
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009839 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009840
Johannes Bergbc43b282009-07-25 10:54:13 +02009841 rcu_read_lock();
Johannes Berg463d0182009-07-14 00:33:35 +02009842 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
Johannes Bergbc43b282009-07-25 10:54:13 +02009843 GFP_ATOMIC);
9844 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009845
9846 return;
9847
9848nla_put_failure:
9849 genlmsg_cancel(msg, hdr);
9850 nlmsg_free(msg);
9851}
9852
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009853static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
9854 struct net_device *netdev,
9855 const u8 *buf, size_t len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009856 enum nl80211_commands cmd, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009857{
9858 struct sk_buff *msg;
9859 void *hdr;
9860
Johannes Berge6d6e342009-07-01 21:26:47 +02009861 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009862 if (!msg)
9863 return;
9864
9865 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9866 if (!hdr) {
9867 nlmsg_free(msg);
9868 return;
9869 }
9870
David S. Miller9360ffd2012-03-29 04:41:26 -04009871 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9872 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9873 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
9874 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009875
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009876 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009877
Johannes Berg463d0182009-07-14 00:33:35 +02009878 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9879 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009880 return;
9881
9882 nla_put_failure:
9883 genlmsg_cancel(msg, hdr);
9884 nlmsg_free(msg);
9885}
9886
9887void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009888 struct net_device *netdev, const u8 *buf,
9889 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009890{
9891 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009892 NL80211_CMD_AUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009893}
9894
9895void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
9896 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009897 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009898{
Johannes Berge6d6e342009-07-01 21:26:47 +02009899 nl80211_send_mlme_event(rdev, netdev, buf, len,
9900 NL80211_CMD_ASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009901}
9902
Jouni Malinen53b46b82009-03-27 20:53:56 +02009903void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009904 struct net_device *netdev, const u8 *buf,
9905 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009906{
9907 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009908 NL80211_CMD_DEAUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009909}
9910
Jouni Malinen53b46b82009-03-27 20:53:56 +02009911void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
9912 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009913 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009914{
9915 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009916 NL80211_CMD_DISASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009917}
9918
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009919void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
9920 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +02009921{
Johannes Berg947add32013-02-22 22:05:20 +01009922 struct wireless_dev *wdev = dev->ieee80211_ptr;
9923 struct wiphy *wiphy = wdev->wiphy;
9924 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009925 const struct ieee80211_mgmt *mgmt = (void *)buf;
9926 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +02009927
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009928 if (WARN_ON(len < 2))
9929 return;
9930
9931 if (ieee80211_is_deauth(mgmt->frame_control))
9932 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
9933 else
9934 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
9935
9936 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
9937 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009938}
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009939EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009940
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -04009941static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
9942 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +02009943 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009944{
9945 struct sk_buff *msg;
9946 void *hdr;
9947
Johannes Berge6d6e342009-07-01 21:26:47 +02009948 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009949 if (!msg)
9950 return;
9951
9952 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9953 if (!hdr) {
9954 nlmsg_free(msg);
9955 return;
9956 }
9957
David S. Miller9360ffd2012-03-29 04:41:26 -04009958 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9959 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9960 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
9961 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
9962 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +03009963
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009964 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +03009965
Johannes Berg463d0182009-07-14 00:33:35 +02009966 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9967 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009968 return;
9969
9970 nla_put_failure:
9971 genlmsg_cancel(msg, hdr);
9972 nlmsg_free(msg);
9973}
9974
9975void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009976 struct net_device *netdev, const u8 *addr,
9977 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009978{
9979 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +02009980 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009981}
9982
9983void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009984 struct net_device *netdev, const u8 *addr,
9985 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009986{
Johannes Berge6d6e342009-07-01 21:26:47 +02009987 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
9988 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009989}
9990
Samuel Ortizb23aa672009-07-01 21:26:54 +02009991void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
9992 struct net_device *netdev, const u8 *bssid,
9993 const u8 *req_ie, size_t req_ie_len,
9994 const u8 *resp_ie, size_t resp_ie_len,
9995 u16 status, gfp_t gfp)
9996{
9997 struct sk_buff *msg;
9998 void *hdr;
9999
Thomas Graf58050fc2012-06-28 03:57:45 +000010000 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010001 if (!msg)
10002 return;
10003
10004 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
10005 if (!hdr) {
10006 nlmsg_free(msg);
10007 return;
10008 }
10009
David S. Miller9360ffd2012-03-29 04:41:26 -040010010 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10011 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10012 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
10013 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
10014 (req_ie &&
10015 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10016 (resp_ie &&
10017 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10018 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010019
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010020 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010021
Johannes Berg463d0182009-07-14 00:33:35 +020010022 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10023 nl80211_mlme_mcgrp.id, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010024 return;
10025
10026 nla_put_failure:
10027 genlmsg_cancel(msg, hdr);
10028 nlmsg_free(msg);
10029
10030}
10031
10032void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
10033 struct net_device *netdev, const u8 *bssid,
10034 const u8 *req_ie, size_t req_ie_len,
10035 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
10036{
10037 struct sk_buff *msg;
10038 void *hdr;
10039
Thomas Graf58050fc2012-06-28 03:57:45 +000010040 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010041 if (!msg)
10042 return;
10043
10044 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
10045 if (!hdr) {
10046 nlmsg_free(msg);
10047 return;
10048 }
10049
David S. Miller9360ffd2012-03-29 04:41:26 -040010050 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10051 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10052 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
10053 (req_ie &&
10054 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10055 (resp_ie &&
10056 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10057 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010058
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010059 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010060
Johannes Berg463d0182009-07-14 00:33:35 +020010061 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10062 nl80211_mlme_mcgrp.id, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010063 return;
10064
10065 nla_put_failure:
10066 genlmsg_cancel(msg, hdr);
10067 nlmsg_free(msg);
10068
10069}
10070
10071void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
10072 struct net_device *netdev, u16 reason,
Johannes Berg667503dd2009-07-07 03:56:11 +020010073 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020010074{
10075 struct sk_buff *msg;
10076 void *hdr;
10077
Thomas Graf58050fc2012-06-28 03:57:45 +000010078 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010079 if (!msg)
10080 return;
10081
10082 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
10083 if (!hdr) {
10084 nlmsg_free(msg);
10085 return;
10086 }
10087
David S. Miller9360ffd2012-03-29 04:41:26 -040010088 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10089 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10090 (from_ap && reason &&
10091 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
10092 (from_ap &&
10093 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
10094 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
10095 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010096
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010097 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010098
Johannes Berg463d0182009-07-14 00:33:35 +020010099 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10100 nl80211_mlme_mcgrp.id, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010101 return;
10102
10103 nla_put_failure:
10104 genlmsg_cancel(msg, hdr);
10105 nlmsg_free(msg);
10106
10107}
10108
Johannes Berg04a773a2009-04-19 21:24:32 +020010109void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
10110 struct net_device *netdev, const u8 *bssid,
10111 gfp_t gfp)
10112{
10113 struct sk_buff *msg;
10114 void *hdr;
10115
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010116 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010117 if (!msg)
10118 return;
10119
10120 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
10121 if (!hdr) {
10122 nlmsg_free(msg);
10123 return;
10124 }
10125
David S. Miller9360ffd2012-03-29 04:41:26 -040010126 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10127 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10128 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10129 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020010130
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010131 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020010132
Johannes Berg463d0182009-07-14 00:33:35 +020010133 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10134 nl80211_mlme_mcgrp.id, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010135 return;
10136
10137 nla_put_failure:
10138 genlmsg_cancel(msg, hdr);
10139 nlmsg_free(msg);
10140}
10141
Johannes Berg947add32013-02-22 22:05:20 +010010142void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
10143 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070010144{
Johannes Berg947add32013-02-22 22:05:20 +010010145 struct wireless_dev *wdev = dev->ieee80211_ptr;
10146 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010147 struct sk_buff *msg;
10148 void *hdr;
10149
Johannes Berg947add32013-02-22 22:05:20 +010010150 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
10151 return;
10152
10153 trace_cfg80211_notify_new_peer_candidate(dev, addr);
10154
Javier Cardonac93b5e72011-04-07 15:08:34 -070010155 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10156 if (!msg)
10157 return;
10158
10159 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
10160 if (!hdr) {
10161 nlmsg_free(msg);
10162 return;
10163 }
10164
David S. Miller9360ffd2012-03-29 04:41:26 -040010165 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010166 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10167 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010168 (ie_len && ie &&
10169 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
10170 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070010171
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010172 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010173
10174 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10175 nl80211_mlme_mcgrp.id, gfp);
10176 return;
10177
10178 nla_put_failure:
10179 genlmsg_cancel(msg, hdr);
10180 nlmsg_free(msg);
10181}
Johannes Berg947add32013-02-22 22:05:20 +010010182EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010183
Jouni Malinena3b8b052009-03-27 21:59:49 +020010184void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
10185 struct net_device *netdev, const u8 *addr,
10186 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020010187 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020010188{
10189 struct sk_buff *msg;
10190 void *hdr;
10191
Johannes Berge6d6e342009-07-01 21:26:47 +020010192 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010193 if (!msg)
10194 return;
10195
10196 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
10197 if (!hdr) {
10198 nlmsg_free(msg);
10199 return;
10200 }
10201
David S. Miller9360ffd2012-03-29 04:41:26 -040010202 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10203 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10204 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
10205 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
10206 (key_id != -1 &&
10207 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
10208 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
10209 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020010210
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010211 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010212
Johannes Berg463d0182009-07-14 00:33:35 +020010213 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10214 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010215 return;
10216
10217 nla_put_failure:
10218 genlmsg_cancel(msg, hdr);
10219 nlmsg_free(msg);
10220}
10221
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010222void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
10223 struct ieee80211_channel *channel_before,
10224 struct ieee80211_channel *channel_after)
10225{
10226 struct sk_buff *msg;
10227 void *hdr;
10228 struct nlattr *nl_freq;
10229
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010230 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010231 if (!msg)
10232 return;
10233
10234 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
10235 if (!hdr) {
10236 nlmsg_free(msg);
10237 return;
10238 }
10239
10240 /*
10241 * Since we are applying the beacon hint to a wiphy we know its
10242 * wiphy_idx is valid
10243 */
David S. Miller9360ffd2012-03-29 04:41:26 -040010244 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
10245 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010246
10247 /* Before */
10248 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
10249 if (!nl_freq)
10250 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010251 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010252 goto nla_put_failure;
10253 nla_nest_end(msg, nl_freq);
10254
10255 /* After */
10256 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
10257 if (!nl_freq)
10258 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010259 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010260 goto nla_put_failure;
10261 nla_nest_end(msg, nl_freq);
10262
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010263 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010264
Johannes Berg463d0182009-07-14 00:33:35 +020010265 rcu_read_lock();
10266 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
10267 GFP_ATOMIC);
10268 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010269
10270 return;
10271
10272nla_put_failure:
10273 genlmsg_cancel(msg, hdr);
10274 nlmsg_free(msg);
10275}
10276
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010277static void nl80211_send_remain_on_chan_event(
10278 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020010279 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010280 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010281 unsigned int duration, gfp_t gfp)
10282{
10283 struct sk_buff *msg;
10284 void *hdr;
10285
10286 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10287 if (!msg)
10288 return;
10289
10290 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10291 if (!hdr) {
10292 nlmsg_free(msg);
10293 return;
10294 }
10295
David S. Miller9360ffd2012-03-29 04:41:26 -040010296 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010297 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10298 wdev->netdev->ifindex)) ||
Johannes Berg00f53352012-07-17 11:53:12 +020010299 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010300 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010010301 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10302 NL80211_CHAN_NO_HT) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010303 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
10304 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010305
David S. Miller9360ffd2012-03-29 04:41:26 -040010306 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
10307 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
10308 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010309
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010310 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010311
10312 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10313 nl80211_mlme_mcgrp.id, gfp);
10314 return;
10315
10316 nla_put_failure:
10317 genlmsg_cancel(msg, hdr);
10318 nlmsg_free(msg);
10319}
10320
Johannes Berg947add32013-02-22 22:05:20 +010010321void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
10322 struct ieee80211_channel *chan,
10323 unsigned int duration, gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010324{
Johannes Berg947add32013-02-22 22:05:20 +010010325 struct wiphy *wiphy = wdev->wiphy;
10326 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10327
10328 trace_cfg80211_ready_on_channel(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010329 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020010330 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010010331 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010332}
Johannes Berg947add32013-02-22 22:05:20 +010010333EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010334
Johannes Berg947add32013-02-22 22:05:20 +010010335void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
10336 struct ieee80211_channel *chan,
10337 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010338{
Johannes Berg947add32013-02-22 22:05:20 +010010339 struct wiphy *wiphy = wdev->wiphy;
10340 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10341
10342 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010343 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010010344 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010345}
Johannes Berg947add32013-02-22 22:05:20 +010010346EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010347
Johannes Berg947add32013-02-22 22:05:20 +010010348void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
10349 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010010350{
Johannes Berg947add32013-02-22 22:05:20 +010010351 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10352 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010010353 struct sk_buff *msg;
10354
Johannes Berg947add32013-02-22 22:05:20 +010010355 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
10356
Thomas Graf58050fc2012-06-28 03:57:45 +000010357 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010010358 if (!msg)
10359 return;
10360
John W. Linville66266b32012-03-15 13:25:41 -040010361 if (nl80211_send_station(msg, 0, 0, 0,
10362 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010010363 nlmsg_free(msg);
10364 return;
10365 }
10366
10367 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10368 nl80211_mlme_mcgrp.id, gfp);
10369}
Johannes Berg947add32013-02-22 22:05:20 +010010370EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010010371
Johannes Berg947add32013-02-22 22:05:20 +010010372void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020010373{
Johannes Berg947add32013-02-22 22:05:20 +010010374 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10375 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020010376 struct sk_buff *msg;
10377 void *hdr;
10378
Johannes Berg947add32013-02-22 22:05:20 +010010379 trace_cfg80211_del_sta(dev, mac_addr);
10380
Thomas Graf58050fc2012-06-28 03:57:45 +000010381 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020010382 if (!msg)
10383 return;
10384
10385 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
10386 if (!hdr) {
10387 nlmsg_free(msg);
10388 return;
10389 }
10390
David S. Miller9360ffd2012-03-29 04:41:26 -040010391 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10392 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
10393 goto nla_put_failure;
Jouni Malinenec15e682011-03-23 15:29:52 +020010394
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010395 genlmsg_end(msg, hdr);
Jouni Malinenec15e682011-03-23 15:29:52 +020010396
10397 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10398 nl80211_mlme_mcgrp.id, gfp);
10399 return;
10400
10401 nla_put_failure:
10402 genlmsg_cancel(msg, hdr);
10403 nlmsg_free(msg);
10404}
Johannes Berg947add32013-02-22 22:05:20 +010010405EXPORT_SYMBOL(cfg80211_del_sta);
Jouni Malinenec15e682011-03-23 15:29:52 +020010406
Johannes Berg947add32013-02-22 22:05:20 +010010407void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
10408 enum nl80211_connect_failed_reason reason,
10409 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010410{
Johannes Berg947add32013-02-22 22:05:20 +010010411 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10412 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010413 struct sk_buff *msg;
10414 void *hdr;
10415
10416 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10417 if (!msg)
10418 return;
10419
10420 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
10421 if (!hdr) {
10422 nlmsg_free(msg);
10423 return;
10424 }
10425
10426 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10427 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
10428 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
10429 goto nla_put_failure;
10430
10431 genlmsg_end(msg, hdr);
10432
10433 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10434 nl80211_mlme_mcgrp.id, gfp);
10435 return;
10436
10437 nla_put_failure:
10438 genlmsg_cancel(msg, hdr);
10439 nlmsg_free(msg);
10440}
Johannes Berg947add32013-02-22 22:05:20 +010010441EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010442
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010443static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
10444 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010010445{
10446 struct wireless_dev *wdev = dev->ieee80211_ptr;
10447 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10448 struct sk_buff *msg;
10449 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000010450 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010451
Eric W. Biederman15e47302012-09-07 20:12:54 +000010452 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010010453 return false;
10454
10455 msg = nlmsg_new(100, gfp);
10456 if (!msg)
10457 return true;
10458
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010459 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010010460 if (!hdr) {
10461 nlmsg_free(msg);
10462 return true;
10463 }
10464
David S. Miller9360ffd2012-03-29 04:41:26 -040010465 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10466 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10467 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
10468 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010010469
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010470 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000010471 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010472 return true;
10473
10474 nla_put_failure:
10475 genlmsg_cancel(msg, hdr);
10476 nlmsg_free(msg);
10477 return true;
10478}
10479
Johannes Berg947add32013-02-22 22:05:20 +010010480bool cfg80211_rx_spurious_frame(struct net_device *dev,
10481 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010482{
Johannes Berg947add32013-02-22 22:05:20 +010010483 struct wireless_dev *wdev = dev->ieee80211_ptr;
10484 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010485
Johannes Berg947add32013-02-22 22:05:20 +010010486 trace_cfg80211_rx_spurious_frame(dev, addr);
10487
10488 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10489 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
10490 trace_cfg80211_return_bool(false);
10491 return false;
10492 }
10493 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
10494 addr, gfp);
10495 trace_cfg80211_return_bool(ret);
10496 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010497}
Johannes Berg947add32013-02-22 22:05:20 +010010498EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
10499
10500bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
10501 const u8 *addr, gfp_t gfp)
10502{
10503 struct wireless_dev *wdev = dev->ieee80211_ptr;
10504 bool ret;
10505
10506 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
10507
10508 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10509 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
10510 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
10511 trace_cfg80211_return_bool(false);
10512 return false;
10513 }
10514 ret = __nl80211_unexpected_frame(dev,
10515 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
10516 addr, gfp);
10517 trace_cfg80211_return_bool(ret);
10518 return ret;
10519}
10520EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010521
Johannes Berg2e161f72010-08-12 15:38:38 +020010522int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010523 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010010524 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010525 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010526{
Johannes Berg71bbc992012-06-15 15:30:18 +020010527 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010528 struct sk_buff *msg;
10529 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020010530
10531 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10532 if (!msg)
10533 return -ENOMEM;
10534
Johannes Berg2e161f72010-08-12 15:38:38 +020010535 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020010536 if (!hdr) {
10537 nlmsg_free(msg);
10538 return -ENOMEM;
10539 }
10540
David S. Miller9360ffd2012-03-29 04:41:26 -040010541 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010542 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10543 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010544 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010545 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
10546 (sig_dbm &&
10547 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010548 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10549 (flags &&
10550 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040010551 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010552
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010553 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010554
Eric W. Biederman15e47302012-09-07 20:12:54 +000010555 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020010556
10557 nla_put_failure:
10558 genlmsg_cancel(msg, hdr);
10559 nlmsg_free(msg);
10560 return -ENOBUFS;
10561}
10562
Johannes Berg947add32013-02-22 22:05:20 +010010563void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
10564 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010565{
Johannes Berg947add32013-02-22 22:05:20 +010010566 struct wiphy *wiphy = wdev->wiphy;
10567 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020010568 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010569 struct sk_buff *msg;
10570 void *hdr;
10571
Johannes Berg947add32013-02-22 22:05:20 +010010572 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
10573
Jouni Malinen026331c2010-02-15 12:53:10 +020010574 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10575 if (!msg)
10576 return;
10577
Johannes Berg2e161f72010-08-12 15:38:38 +020010578 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020010579 if (!hdr) {
10580 nlmsg_free(msg);
10581 return;
10582 }
10583
David S. Miller9360ffd2012-03-29 04:41:26 -040010584 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010585 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10586 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010587 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010588 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10589 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
10590 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
10591 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010592
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010593 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010594
Michal Kaziora0ec5702013-06-25 09:17:17 +020010595 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10596 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020010597 return;
10598
10599 nla_put_failure:
10600 genlmsg_cancel(msg, hdr);
10601 nlmsg_free(msg);
10602}
Johannes Berg947add32013-02-22 22:05:20 +010010603EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020010604
Johannes Berg947add32013-02-22 22:05:20 +010010605void cfg80211_cqm_rssi_notify(struct net_device *dev,
10606 enum nl80211_cqm_rssi_threshold_event rssi_event,
10607 gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010608{
Johannes Berg947add32013-02-22 22:05:20 +010010609 struct wireless_dev *wdev = dev->ieee80211_ptr;
10610 struct wiphy *wiphy = wdev->wiphy;
10611 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010612 struct sk_buff *msg;
10613 struct nlattr *pinfoattr;
10614 void *hdr;
10615
Johannes Berg947add32013-02-22 22:05:20 +010010616 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
10617
Thomas Graf58050fc2012-06-28 03:57:45 +000010618 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010619 if (!msg)
10620 return;
10621
10622 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10623 if (!hdr) {
10624 nlmsg_free(msg);
10625 return;
10626 }
10627
David S. Miller9360ffd2012-03-29 04:41:26 -040010628 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010629 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040010630 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010631
10632 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10633 if (!pinfoattr)
10634 goto nla_put_failure;
10635
David S. Miller9360ffd2012-03-29 04:41:26 -040010636 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
10637 rssi_event))
10638 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010639
10640 nla_nest_end(msg, pinfoattr);
10641
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010642 genlmsg_end(msg, hdr);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010643
10644 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10645 nl80211_mlme_mcgrp.id, gfp);
10646 return;
10647
10648 nla_put_failure:
10649 genlmsg_cancel(msg, hdr);
10650 nlmsg_free(msg);
10651}
Johannes Berg947add32013-02-22 22:05:20 +010010652EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010653
Johannes Berg947add32013-02-22 22:05:20 +010010654static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
10655 struct net_device *netdev, const u8 *bssid,
10656 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020010657{
10658 struct sk_buff *msg;
10659 struct nlattr *rekey_attr;
10660 void *hdr;
10661
Thomas Graf58050fc2012-06-28 03:57:45 +000010662 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020010663 if (!msg)
10664 return;
10665
10666 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10667 if (!hdr) {
10668 nlmsg_free(msg);
10669 return;
10670 }
10671
David S. Miller9360ffd2012-03-29 04:41:26 -040010672 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10673 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10674 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10675 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010676
10677 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10678 if (!rekey_attr)
10679 goto nla_put_failure;
10680
David S. Miller9360ffd2012-03-29 04:41:26 -040010681 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
10682 NL80211_REPLAY_CTR_LEN, replay_ctr))
10683 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010684
10685 nla_nest_end(msg, rekey_attr);
10686
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010687 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020010688
10689 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10690 nl80211_mlme_mcgrp.id, gfp);
10691 return;
10692
10693 nla_put_failure:
10694 genlmsg_cancel(msg, hdr);
10695 nlmsg_free(msg);
10696}
10697
Johannes Berg947add32013-02-22 22:05:20 +010010698void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
10699 const u8 *replay_ctr, gfp_t gfp)
10700{
10701 struct wireless_dev *wdev = dev->ieee80211_ptr;
10702 struct wiphy *wiphy = wdev->wiphy;
10703 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10704
10705 trace_cfg80211_gtk_rekey_notify(dev, bssid);
10706 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
10707}
10708EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
10709
10710static void
10711nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
10712 struct net_device *netdev, int index,
10713 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010714{
10715 struct sk_buff *msg;
10716 struct nlattr *attr;
10717 void *hdr;
10718
Thomas Graf58050fc2012-06-28 03:57:45 +000010719 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010720 if (!msg)
10721 return;
10722
10723 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
10724 if (!hdr) {
10725 nlmsg_free(msg);
10726 return;
10727 }
10728
David S. Miller9360ffd2012-03-29 04:41:26 -040010729 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10730 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10731 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010732
10733 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
10734 if (!attr)
10735 goto nla_put_failure;
10736
David S. Miller9360ffd2012-03-29 04:41:26 -040010737 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
10738 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
10739 (preauth &&
10740 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
10741 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010742
10743 nla_nest_end(msg, attr);
10744
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010745 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010746
10747 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10748 nl80211_mlme_mcgrp.id, gfp);
10749 return;
10750
10751 nla_put_failure:
10752 genlmsg_cancel(msg, hdr);
10753 nlmsg_free(msg);
10754}
10755
Johannes Berg947add32013-02-22 22:05:20 +010010756void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
10757 const u8 *bssid, bool preauth, gfp_t gfp)
10758{
10759 struct wireless_dev *wdev = dev->ieee80211_ptr;
10760 struct wiphy *wiphy = wdev->wiphy;
10761 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10762
10763 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
10764 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
10765}
10766EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
10767
10768static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
10769 struct net_device *netdev,
10770 struct cfg80211_chan_def *chandef,
10771 gfp_t gfp)
Thomas Pedersen53145262012-04-06 13:35:47 -070010772{
10773 struct sk_buff *msg;
10774 void *hdr;
10775
Thomas Graf58050fc2012-06-28 03:57:45 +000010776 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070010777 if (!msg)
10778 return;
10779
10780 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
10781 if (!hdr) {
10782 nlmsg_free(msg);
10783 return;
10784 }
10785
Johannes Berg683b6d32012-11-08 21:25:48 +010010786 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10787 goto nla_put_failure;
10788
10789 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040010790 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070010791
10792 genlmsg_end(msg, hdr);
10793
10794 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10795 nl80211_mlme_mcgrp.id, gfp);
10796 return;
10797
10798 nla_put_failure:
10799 genlmsg_cancel(msg, hdr);
10800 nlmsg_free(msg);
10801}
10802
Johannes Berg947add32013-02-22 22:05:20 +010010803void cfg80211_ch_switch_notify(struct net_device *dev,
10804 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070010805{
Johannes Berg947add32013-02-22 22:05:20 +010010806 struct wireless_dev *wdev = dev->ieee80211_ptr;
10807 struct wiphy *wiphy = wdev->wiphy;
10808 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10809
10810 trace_cfg80211_ch_switch_notify(dev, chandef);
10811
10812 wdev_lock(wdev);
10813
10814 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +020010815 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070010816 wdev->iftype != NL80211_IFTYPE_ADHOC &&
10817 wdev->iftype != NL80211_IFTYPE_MESH_POINT))
Johannes Berg947add32013-02-22 22:05:20 +010010818 goto out;
10819
10820 wdev->channel = chandef->chan;
10821 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
10822out:
10823 wdev_unlock(wdev);
10824 return;
10825}
10826EXPORT_SYMBOL(cfg80211_ch_switch_notify);
10827
10828void cfg80211_cqm_txe_notify(struct net_device *dev,
10829 const u8 *peer, u32 num_packets,
10830 u32 rate, u32 intvl, gfp_t gfp)
10831{
10832 struct wireless_dev *wdev = dev->ieee80211_ptr;
10833 struct wiphy *wiphy = wdev->wiphy;
10834 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010835 struct sk_buff *msg;
10836 struct nlattr *pinfoattr;
10837 void *hdr;
10838
10839 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10840 if (!msg)
10841 return;
10842
10843 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10844 if (!hdr) {
10845 nlmsg_free(msg);
10846 return;
10847 }
10848
10849 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010850 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070010851 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10852 goto nla_put_failure;
10853
10854 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10855 if (!pinfoattr)
10856 goto nla_put_failure;
10857
10858 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
10859 goto nla_put_failure;
10860
10861 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
10862 goto nla_put_failure;
10863
10864 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
10865 goto nla_put_failure;
10866
10867 nla_nest_end(msg, pinfoattr);
10868
10869 genlmsg_end(msg, hdr);
10870
10871 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10872 nl80211_mlme_mcgrp.id, gfp);
10873 return;
10874
10875 nla_put_failure:
10876 genlmsg_cancel(msg, hdr);
10877 nlmsg_free(msg);
10878}
Johannes Berg947add32013-02-22 22:05:20 +010010879EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010880
10881void
Simon Wunderlich04f39042013-02-08 18:16:19 +010010882nl80211_radar_notify(struct cfg80211_registered_device *rdev,
10883 struct cfg80211_chan_def *chandef,
10884 enum nl80211_radar_event event,
10885 struct net_device *netdev, gfp_t gfp)
10886{
10887 struct sk_buff *msg;
10888 void *hdr;
10889
10890 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10891 if (!msg)
10892 return;
10893
10894 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
10895 if (!hdr) {
10896 nlmsg_free(msg);
10897 return;
10898 }
10899
10900 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
10901 goto nla_put_failure;
10902
10903 /* NOP and radar events don't need a netdev parameter */
10904 if (netdev) {
10905 struct wireless_dev *wdev = netdev->ieee80211_ptr;
10906
10907 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10908 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
10909 goto nla_put_failure;
10910 }
10911
10912 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
10913 goto nla_put_failure;
10914
10915 if (nl80211_send_chandef(msg, chandef))
10916 goto nla_put_failure;
10917
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010918 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010010919
10920 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10921 nl80211_mlme_mcgrp.id, gfp);
10922 return;
10923
10924 nla_put_failure:
10925 genlmsg_cancel(msg, hdr);
10926 nlmsg_free(msg);
10927}
10928
Johannes Berg947add32013-02-22 22:05:20 +010010929void cfg80211_cqm_pktloss_notify(struct net_device *dev,
10930 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010010931{
Johannes Berg947add32013-02-22 22:05:20 +010010932 struct wireless_dev *wdev = dev->ieee80211_ptr;
10933 struct wiphy *wiphy = wdev->wiphy;
10934 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010935 struct sk_buff *msg;
10936 struct nlattr *pinfoattr;
10937 void *hdr;
10938
Johannes Berg947add32013-02-22 22:05:20 +010010939 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
10940
Thomas Graf58050fc2012-06-28 03:57:45 +000010941 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010942 if (!msg)
10943 return;
10944
10945 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10946 if (!hdr) {
10947 nlmsg_free(msg);
10948 return;
10949 }
10950
David S. Miller9360ffd2012-03-29 04:41:26 -040010951 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010952 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010953 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10954 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010955
10956 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10957 if (!pinfoattr)
10958 goto nla_put_failure;
10959
David S. Miller9360ffd2012-03-29 04:41:26 -040010960 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
10961 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010962
10963 nla_nest_end(msg, pinfoattr);
10964
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010965 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010966
10967 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10968 nl80211_mlme_mcgrp.id, gfp);
10969 return;
10970
10971 nla_put_failure:
10972 genlmsg_cancel(msg, hdr);
10973 nlmsg_free(msg);
10974}
Johannes Berg947add32013-02-22 22:05:20 +010010975EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010976
Johannes Berg7f6cf312011-11-04 11:18:15 +010010977void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
10978 u64 cookie, bool acked, gfp_t gfp)
10979{
10980 struct wireless_dev *wdev = dev->ieee80211_ptr;
10981 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10982 struct sk_buff *msg;
10983 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010984
Beni Lev4ee3e062012-08-27 12:49:39 +030010985 trace_cfg80211_probe_status(dev, addr, cookie, acked);
10986
Thomas Graf58050fc2012-06-28 03:57:45 +000010987 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030010988
Johannes Berg7f6cf312011-11-04 11:18:15 +010010989 if (!msg)
10990 return;
10991
10992 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
10993 if (!hdr) {
10994 nlmsg_free(msg);
10995 return;
10996 }
10997
David S. Miller9360ffd2012-03-29 04:41:26 -040010998 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10999 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11000 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
11001 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11002 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
11003 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011004
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011005 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011006
11007 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11008 nl80211_mlme_mcgrp.id, gfp);
11009 return;
11010
11011 nla_put_failure:
11012 genlmsg_cancel(msg, hdr);
11013 nlmsg_free(msg);
11014}
11015EXPORT_SYMBOL(cfg80211_probe_status);
11016
Johannes Berg5e760232011-11-04 11:18:17 +010011017void cfg80211_report_obss_beacon(struct wiphy *wiphy,
11018 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070011019 int freq, int sig_dbm)
Johannes Berg5e760232011-11-04 11:18:17 +010011020{
11021 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11022 struct sk_buff *msg;
11023 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070011024 struct cfg80211_beacon_registration *reg;
Johannes Berg5e760232011-11-04 11:18:17 +010011025
Beni Lev4ee3e062012-08-27 12:49:39 +030011026 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
11027
Ben Greear37c73b52012-10-26 14:49:25 -070011028 spin_lock_bh(&rdev->beacon_registrations_lock);
11029 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
11030 msg = nlmsg_new(len + 100, GFP_ATOMIC);
11031 if (!msg) {
11032 spin_unlock_bh(&rdev->beacon_registrations_lock);
11033 return;
11034 }
Johannes Berg5e760232011-11-04 11:18:17 +010011035
Ben Greear37c73b52012-10-26 14:49:25 -070011036 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
11037 if (!hdr)
11038 goto nla_put_failure;
Johannes Berg5e760232011-11-04 11:18:17 +010011039
Ben Greear37c73b52012-10-26 14:49:25 -070011040 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11041 (freq &&
11042 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
11043 (sig_dbm &&
11044 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
11045 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
11046 goto nla_put_failure;
11047
11048 genlmsg_end(msg, hdr);
11049
11050 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e760232011-11-04 11:18:17 +010011051 }
Ben Greear37c73b52012-10-26 14:49:25 -070011052 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +010011053 return;
11054
11055 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070011056 spin_unlock_bh(&rdev->beacon_registrations_lock);
11057 if (hdr)
11058 genlmsg_cancel(msg, hdr);
Johannes Berg5e760232011-11-04 11:18:17 +010011059 nlmsg_free(msg);
11060}
11061EXPORT_SYMBOL(cfg80211_report_obss_beacon);
11062
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011063#ifdef CONFIG_PM
11064void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
11065 struct cfg80211_wowlan_wakeup *wakeup,
11066 gfp_t gfp)
11067{
11068 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11069 struct sk_buff *msg;
11070 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011071 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011072
11073 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11074
11075 if (wakeup)
11076 size += wakeup->packet_present_len;
11077
11078 msg = nlmsg_new(size, gfp);
11079 if (!msg)
11080 return;
11081
11082 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11083 if (!hdr)
11084 goto free_msg;
11085
11086 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11087 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11088 goto free_msg;
11089
11090 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11091 wdev->netdev->ifindex))
11092 goto free_msg;
11093
11094 if (wakeup) {
11095 struct nlattr *reasons;
11096
11097 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
11098
11099 if (wakeup->disconnect &&
11100 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11101 goto free_msg;
11102 if (wakeup->magic_pkt &&
11103 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11104 goto free_msg;
11105 if (wakeup->gtk_rekey_failure &&
11106 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11107 goto free_msg;
11108 if (wakeup->eap_identity_req &&
11109 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11110 goto free_msg;
11111 if (wakeup->four_way_handshake &&
11112 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11113 goto free_msg;
11114 if (wakeup->rfkill_release &&
11115 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11116 goto free_msg;
11117
11118 if (wakeup->pattern_idx >= 0 &&
11119 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11120 wakeup->pattern_idx))
11121 goto free_msg;
11122
Johannes Berg2a0e0472013-01-23 22:57:40 +010011123 if (wakeup->tcp_match)
11124 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH);
11125
11126 if (wakeup->tcp_connlost)
11127 nla_put_flag(msg,
11128 NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST);
11129
11130 if (wakeup->tcp_nomoretokens)
11131 nla_put_flag(msg,
11132 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS);
11133
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011134 if (wakeup->packet) {
11135 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11136 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11137
11138 if (!wakeup->packet_80211) {
11139 pkt_attr =
11140 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11141 len_attr =
11142 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11143 }
11144
11145 if (wakeup->packet_len &&
11146 nla_put_u32(msg, len_attr, wakeup->packet_len))
11147 goto free_msg;
11148
11149 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11150 wakeup->packet))
11151 goto free_msg;
11152 }
11153
11154 nla_nest_end(msg, reasons);
11155 }
11156
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011157 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011158
11159 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11160 nl80211_mlme_mcgrp.id, gfp);
11161 return;
11162
11163 free_msg:
11164 nlmsg_free(msg);
11165}
11166EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11167#endif
11168
Jouni Malinen3475b092012-11-16 22:49:57 +020011169void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11170 enum nl80211_tdls_operation oper,
11171 u16 reason_code, gfp_t gfp)
11172{
11173 struct wireless_dev *wdev = dev->ieee80211_ptr;
11174 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11175 struct sk_buff *msg;
11176 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011177
11178 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11179 reason_code);
11180
11181 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11182 if (!msg)
11183 return;
11184
11185 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11186 if (!hdr) {
11187 nlmsg_free(msg);
11188 return;
11189 }
11190
11191 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11192 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11193 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11194 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11195 (reason_code > 0 &&
11196 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11197 goto nla_put_failure;
11198
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011199 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011200
11201 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11202 nl80211_mlme_mcgrp.id, gfp);
11203 return;
11204
11205 nla_put_failure:
11206 genlmsg_cancel(msg, hdr);
11207 nlmsg_free(msg);
11208}
11209EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11210
Jouni Malinen026331c2010-02-15 12:53:10 +020011211static int nl80211_netlink_notify(struct notifier_block * nb,
11212 unsigned long state,
11213 void *_notify)
11214{
11215 struct netlink_notify *notify = _notify;
11216 struct cfg80211_registered_device *rdev;
11217 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011218 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011219
11220 if (state != NETLINK_URELEASE)
11221 return NOTIFY_DONE;
11222
11223 rcu_read_lock();
11224
Johannes Berg5e760232011-11-04 11:18:17 +010011225 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +020011226 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
Eric W. Biederman15e47302012-09-07 20:12:54 +000011227 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011228
11229 spin_lock_bh(&rdev->beacon_registrations_lock);
11230 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11231 list) {
11232 if (reg->nlportid == notify->portid) {
11233 list_del(&reg->list);
11234 kfree(reg);
11235 break;
11236 }
11237 }
11238 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +010011239 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011240
11241 rcu_read_unlock();
11242
11243 return NOTIFY_DONE;
11244}
11245
11246static struct notifier_block nl80211_netlink_notifier = {
11247 .notifier_call = nl80211_netlink_notify,
11248};
11249
Jouni Malinen355199e2013-02-27 17:14:27 +020011250void cfg80211_ft_event(struct net_device *netdev,
11251 struct cfg80211_ft_event_params *ft_event)
11252{
11253 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
11254 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11255 struct sk_buff *msg;
11256 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020011257
11258 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
11259
11260 if (!ft_event->target_ap)
11261 return;
11262
11263 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11264 if (!msg)
11265 return;
11266
11267 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
11268 if (!hdr) {
11269 nlmsg_free(msg);
11270 return;
11271 }
11272
11273 nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
11274 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
11275 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap);
11276 if (ft_event->ies)
11277 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies);
11278 if (ft_event->ric_ies)
11279 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
11280 ft_event->ric_ies);
11281
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011282 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020011283
11284 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11285 nl80211_mlme_mcgrp.id, GFP_KERNEL);
11286}
11287EXPORT_SYMBOL(cfg80211_ft_event);
11288
Arend van Spriel5de17982013-04-18 15:49:00 +020011289void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
11290{
11291 struct cfg80211_registered_device *rdev;
11292 struct sk_buff *msg;
11293 void *hdr;
11294 u32 nlportid;
11295
11296 rdev = wiphy_to_dev(wdev->wiphy);
11297 if (!rdev->crit_proto_nlportid)
11298 return;
11299
11300 nlportid = rdev->crit_proto_nlportid;
11301 rdev->crit_proto_nlportid = 0;
11302
11303 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11304 if (!msg)
11305 return;
11306
11307 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
11308 if (!hdr)
11309 goto nla_put_failure;
11310
11311 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11312 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11313 goto nla_put_failure;
11314
11315 genlmsg_end(msg, hdr);
11316
11317 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
11318 return;
11319
11320 nla_put_failure:
11321 if (hdr)
11322 genlmsg_cancel(msg, hdr);
11323 nlmsg_free(msg);
11324
11325}
11326EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
11327
Johannes Berg55682962007-09-20 13:09:35 -040011328/* initialisation/exit functions */
11329
11330int nl80211_init(void)
11331{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011332 int err;
Johannes Berg55682962007-09-20 13:09:35 -040011333
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011334 err = genl_register_family_with_ops(&nl80211_fam,
11335 nl80211_ops, ARRAY_SIZE(nl80211_ops));
Johannes Berg55682962007-09-20 13:09:35 -040011336 if (err)
11337 return err;
11338
Johannes Berg55682962007-09-20 13:09:35 -040011339 err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
11340 if (err)
11341 goto err_out;
11342
Johannes Berg2a519312009-02-10 21:25:55 +010011343 err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
11344 if (err)
11345 goto err_out;
11346
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040011347 err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
11348 if (err)
11349 goto err_out;
11350
Jouni Malinen6039f6d2009-03-19 13:39:21 +020011351 err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
11352 if (err)
11353 goto err_out;
11354
Johannes Bergaff89a92009-07-01 21:26:51 +020011355#ifdef CONFIG_NL80211_TESTMODE
11356 err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp);
11357 if (err)
11358 goto err_out;
11359#endif
11360
Jouni Malinen026331c2010-02-15 12:53:10 +020011361 err = netlink_register_notifier(&nl80211_netlink_notifier);
11362 if (err)
11363 goto err_out;
11364
Johannes Berg55682962007-09-20 13:09:35 -040011365 return 0;
11366 err_out:
11367 genl_unregister_family(&nl80211_fam);
11368 return err;
11369}
11370
11371void nl80211_exit(void)
11372{
Jouni Malinen026331c2010-02-15 12:53:10 +020011373 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040011374 genl_unregister_family(&nl80211_fam);
11375}