blob: e2bb4276af1ab3c5ac70a675dfc33559e23ca6aa [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 Malinendc6382ce2009-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;
Luis R. Rodriguez8fe02e12013-10-21 19:22:25 +0200548 if (chan->flags & IEEE80211_CHAN_NO_IR) {
549 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IR))
550 goto nla_put_failure;
551 if (nla_put_flag(msg, __NL80211_FREQUENCY_ATTR_NO_IBSS))
552 goto nla_put_failure;
553 }
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
Luciano Coelho18003292013-08-29 13:26:57 +03002427 if (flags && (*flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002428 !(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
Luciano Coelho18003292013-08-29 13:26:57 +03002489 if (!err && (flags & MONITOR_FLAG_ACTIVE) &&
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002490 !(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
Janusz Dziedzicfe7c3a12013-11-05 14:48:48 +01005654 if (!cfg80211_chandef_dfs_usable(wdev->wiphy, &chandef))
Simon Wunderlich04f39042013-02-08 18:16:19 +01005655 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 */
Andrei Otcheretianskid0a361a2013-10-17 10:52:17 +02005716 if (need_new_beacon && !info->attrs[NL80211_ATTR_CSA_IES])
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005717 return -EINVAL;
5718
5719 params.count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5720
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005721 if (!need_new_beacon)
5722 goto skip_beacons;
5723
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005724 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5725 if (err)
5726 return err;
5727
5728 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5729 info->attrs[NL80211_ATTR_CSA_IES],
5730 nl80211_policy);
5731 if (err)
5732 return err;
5733
5734 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5735 if (err)
5736 return err;
5737
5738 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5739 return -EINVAL;
5740
5741 params.counter_offset_beacon =
5742 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5743 if (params.counter_offset_beacon >= params.beacon_csa.tail_len)
5744 return -EINVAL;
5745
5746 /* sanity check - counters should be the same */
5747 if (params.beacon_csa.tail[params.counter_offset_beacon] !=
5748 params.count)
5749 return -EINVAL;
5750
5751 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
5752 params.counter_offset_presp =
5753 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
5754 if (params.counter_offset_presp >=
5755 params.beacon_csa.probe_resp_len)
5756 return -EINVAL;
5757
5758 if (params.beacon_csa.probe_resp[params.counter_offset_presp] !=
5759 params.count)
5760 return -EINVAL;
5761 }
5762
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005763skip_beacons:
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005764 err = nl80211_parse_chandef(rdev, info, &params.chandef);
5765 if (err)
5766 return err;
5767
5768 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
5769 return -EINVAL;
5770
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005771 if (dev->ieee80211_ptr->iftype == NL80211_IFTYPE_AP ||
Simon Wunderlich5336fa82013-10-07 18:41:05 +02005772 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_P2P_GO ||
5773 dev->ieee80211_ptr->iftype == NL80211_IFTYPE_ADHOC) {
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +02005774 err = cfg80211_chandef_dfs_required(wdev->wiphy,
5775 &params.chandef);
5776 if (err < 0) {
5777 return err;
5778 } else if (err) {
5779 radar_detect_width = BIT(params.chandef.width);
5780 params.radar_required = true;
5781 }
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005782 }
5783
5784 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5785 params.chandef.chan,
5786 CHAN_MODE_SHARED,
5787 radar_detect_width);
5788 if (err)
5789 return err;
5790
5791 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
5792 params.block_tx = true;
5793
5794 return rdev_channel_switch(rdev, dev, &params);
5795}
5796
Johannes Berg9720bb32011-06-21 09:45:33 +02005797static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
5798 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005799 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02005800 struct wireless_dev *wdev,
5801 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01005802{
Johannes Berg48ab9052009-07-10 18:42:31 +02005803 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01005804 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01005805 void *hdr;
5806 struct nlattr *bss;
Johannes Berg8cef2c92013-02-05 16:54:31 +01005807 bool tsf = false;
Johannes Berg48ab9052009-07-10 18:42:31 +02005808
5809 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005810
Eric W. Biederman15e47302012-09-07 20:12:54 +00005811 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005812 NL80211_CMD_NEW_SCAN_RESULTS);
5813 if (!hdr)
5814 return -1;
5815
Johannes Berg9720bb32011-06-21 09:45:33 +02005816 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
5817
Johannes Berg97990a02013-04-19 01:02:55 +02005818 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
5819 goto nla_put_failure;
5820 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04005821 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
5822 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02005823 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
5824 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005825
5826 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
5827 if (!bss)
5828 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04005829 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01005830 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04005831 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01005832
5833 rcu_read_lock();
5834 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005835 if (ies) {
5836 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5837 goto fail_unlock_rcu;
5838 tsf = true;
5839 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
5840 ies->len, ies->data))
5841 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005842 }
5843 ies = rcu_dereference(res->beacon_ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005844 if (ies) {
5845 if (!tsf && nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5846 goto fail_unlock_rcu;
5847 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
5848 ies->len, ies->data))
5849 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005850 }
5851 rcu_read_unlock();
5852
David S. Miller9360ffd2012-03-29 04:41:26 -04005853 if (res->beacon_interval &&
5854 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
5855 goto nla_put_failure;
5856 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
5857 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02005858 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005859 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
5860 jiffies_to_msecs(jiffies - intbss->ts)))
5861 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005862
Johannes Berg77965c92009-02-18 18:45:06 +01005863 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01005864 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04005865 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
5866 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005867 break;
5868 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005869 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
5870 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005871 break;
5872 default:
5873 break;
5874 }
5875
Johannes Berg48ab9052009-07-10 18:42:31 +02005876 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02005877 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02005878 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04005879 if (intbss == wdev->current_bss &&
5880 nla_put_u32(msg, NL80211_BSS_STATUS,
5881 NL80211_BSS_STATUS_ASSOCIATED))
5882 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005883 break;
5884 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005885 if (intbss == wdev->current_bss &&
5886 nla_put_u32(msg, NL80211_BSS_STATUS,
5887 NL80211_BSS_STATUS_IBSS_JOINED))
5888 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005889 break;
5890 default:
5891 break;
5892 }
5893
Johannes Berg2a519312009-02-10 21:25:55 +01005894 nla_nest_end(msg, bss);
5895
5896 return genlmsg_end(msg, hdr);
5897
Johannes Berg8cef2c92013-02-05 16:54:31 +01005898 fail_unlock_rcu:
5899 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01005900 nla_put_failure:
5901 genlmsg_cancel(msg, hdr);
5902 return -EMSGSIZE;
5903}
5904
Johannes Berg97990a02013-04-19 01:02:55 +02005905static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01005906{
Johannes Berg48ab9052009-07-10 18:42:31 +02005907 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01005908 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02005909 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02005910 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005911 int err;
5912
Johannes Berg97990a02013-04-19 01:02:55 +02005913 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02005914 if (err)
5915 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01005916
Johannes Berg48ab9052009-07-10 18:42:31 +02005917 wdev_lock(wdev);
5918 spin_lock_bh(&rdev->bss_lock);
5919 cfg80211_bss_expire(rdev);
5920
Johannes Berg9720bb32011-06-21 09:45:33 +02005921 cb->seq = rdev->bss_generation;
5922
Johannes Berg48ab9052009-07-10 18:42:31 +02005923 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01005924 if (++idx <= start)
5925 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02005926 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01005927 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02005928 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01005929 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02005930 break;
Johannes Berg2a519312009-02-10 21:25:55 +01005931 }
5932 }
5933
Johannes Berg48ab9052009-07-10 18:42:31 +02005934 spin_unlock_bh(&rdev->bss_lock);
5935 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005936
Johannes Berg97990a02013-04-19 01:02:55 +02005937 cb->args[2] = idx;
5938 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005939
Johannes Berg67748892010-10-04 21:14:06 +02005940 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01005941}
5942
Eric W. Biederman15e47302012-09-07 20:12:54 +00005943static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01005944 int flags, struct net_device *dev,
5945 struct survey_info *survey)
5946{
5947 void *hdr;
5948 struct nlattr *infoattr;
5949
Eric W. Biederman15e47302012-09-07 20:12:54 +00005950 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01005951 NL80211_CMD_NEW_SURVEY_RESULTS);
5952 if (!hdr)
5953 return -ENOMEM;
5954
David S. Miller9360ffd2012-03-29 04:41:26 -04005955 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
5956 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005957
5958 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
5959 if (!infoattr)
5960 goto nla_put_failure;
5961
David S. Miller9360ffd2012-03-29 04:41:26 -04005962 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
5963 survey->channel->center_freq))
5964 goto nla_put_failure;
5965
5966 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
5967 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
5968 goto nla_put_failure;
5969 if ((survey->filled & SURVEY_INFO_IN_USE) &&
5970 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
5971 goto nla_put_failure;
5972 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
5973 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
5974 survey->channel_time))
5975 goto nla_put_failure;
5976 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
5977 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
5978 survey->channel_time_busy))
5979 goto nla_put_failure;
5980 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
5981 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
5982 survey->channel_time_ext_busy))
5983 goto nla_put_failure;
5984 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
5985 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
5986 survey->channel_time_rx))
5987 goto nla_put_failure;
5988 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
5989 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
5990 survey->channel_time_tx))
5991 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005992
5993 nla_nest_end(msg, infoattr);
5994
5995 return genlmsg_end(msg, hdr);
5996
5997 nla_put_failure:
5998 genlmsg_cancel(msg, hdr);
5999 return -EMSGSIZE;
6000}
6001
6002static int nl80211_dump_survey(struct sk_buff *skb,
6003 struct netlink_callback *cb)
6004{
6005 struct survey_info survey;
6006 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02006007 struct wireless_dev *wdev;
6008 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01006009 int res;
6010
Johannes Berg97990a02013-04-19 01:02:55 +02006011 res = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02006012 if (res)
6013 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01006014
Johannes Berg97990a02013-04-19 01:02:55 +02006015 if (!wdev->netdev) {
6016 res = -EINVAL;
6017 goto out_err;
6018 }
6019
Holger Schurig61fa7132009-11-11 12:25:40 +01006020 if (!dev->ops->dump_survey) {
6021 res = -EOPNOTSUPP;
6022 goto out_err;
6023 }
6024
6025 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006026 struct ieee80211_channel *chan;
6027
Johannes Berg97990a02013-04-19 01:02:55 +02006028 res = rdev_dump_survey(dev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01006029 if (res == -ENOENT)
6030 break;
6031 if (res)
6032 goto out_err;
6033
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07006034 /* Survey without a channel doesn't make sense */
6035 if (!survey.channel) {
6036 res = -EINVAL;
6037 goto out;
6038 }
6039
6040 chan = ieee80211_get_channel(&dev->wiphy,
6041 survey.channel->center_freq);
6042 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
6043 survey_idx++;
6044 continue;
6045 }
6046
Holger Schurig61fa7132009-11-11 12:25:40 +01006047 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006048 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01006049 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02006050 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01006051 goto out;
6052 survey_idx++;
6053 }
6054
6055 out:
Johannes Berg97990a02013-04-19 01:02:55 +02006056 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01006057 res = skb->len;
6058 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02006059 nl80211_finish_wdev_dump(dev);
Holger Schurig61fa7132009-11-11 12:25:40 +01006060 return res;
6061}
6062
Samuel Ortizb23aa672009-07-01 21:26:54 +02006063static bool nl80211_valid_wpa_versions(u32 wpa_versions)
6064{
6065 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
6066 NL80211_WPA_VERSION_2));
6067}
6068
Jouni Malinen636a5d32009-03-19 13:39:22 +02006069static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6070{
Johannes Berg4c476992010-10-04 21:36:35 +02006071 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6072 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006073 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006074 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6075 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006076 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006077 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006078 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006079
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006080 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6081 return -EINVAL;
6082
6083 if (!info->attrs[NL80211_ATTR_MAC])
6084 return -EINVAL;
6085
Jouni Malinen17780922009-03-27 20:52:47 +02006086 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6087 return -EINVAL;
6088
Johannes Berg19957bb2009-07-02 17:20:43 +02006089 if (!info->attrs[NL80211_ATTR_SSID])
6090 return -EINVAL;
6091
6092 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6093 return -EINVAL;
6094
Johannes Bergfffd0932009-07-08 14:22:54 +02006095 err = nl80211_parse_key(info, &key);
6096 if (err)
6097 return err;
6098
6099 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006100 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6101 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006102 if (!key.p.key || !key.p.key_len)
6103 return -EINVAL;
6104 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6105 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6106 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6107 key.p.key_len != WLAN_KEY_LEN_WEP104))
6108 return -EINVAL;
6109 if (key.idx > 4)
6110 return -EINVAL;
6111 } else {
6112 key.p.key_len = 0;
6113 key.p.key = NULL;
6114 }
6115
Johannes Bergafea0b72010-08-10 09:46:42 +02006116 if (key.idx >= 0) {
6117 int i;
6118 bool ok = false;
6119 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6120 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6121 ok = true;
6122 break;
6123 }
6124 }
Johannes Berg4c476992010-10-04 21:36:35 +02006125 if (!ok)
6126 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006127 }
6128
Johannes Berg4c476992010-10-04 21:36:35 +02006129 if (!rdev->ops->auth)
6130 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006131
Johannes Berg074ac8d2010-09-16 14:58:22 +02006132 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006133 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6134 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006135
Johannes Berg19957bb2009-07-02 17:20:43 +02006136 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg79c97e92009-07-07 03:56:12 +02006137 chan = ieee80211_get_channel(&rdev->wiphy,
Johannes Berg19957bb2009-07-02 17:20:43 +02006138 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006139 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6140 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006141
Johannes Berg19957bb2009-07-02 17:20:43 +02006142 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6143 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6144
6145 if (info->attrs[NL80211_ATTR_IE]) {
6146 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6147 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6148 }
6149
6150 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006151 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006152 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006153
Jouni Malinene39e5b52012-09-30 19:29:39 +03006154 if (auth_type == NL80211_AUTHTYPE_SAE &&
6155 !info->attrs[NL80211_ATTR_SAE_DATA])
6156 return -EINVAL;
6157
6158 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6159 if (auth_type != NL80211_AUTHTYPE_SAE)
6160 return -EINVAL;
6161 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6162 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6163 /* need to include at least Auth Transaction and Status Code */
6164 if (sae_data_len < 4)
6165 return -EINVAL;
6166 }
6167
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006168 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6169
Johannes Berg95de8172012-01-20 13:55:25 +01006170 /*
6171 * Since we no longer track auth state, ignore
6172 * requests to only change local state.
6173 */
6174 if (local_state_change)
6175 return 0;
6176
Johannes Berg91bf9b22013-05-15 17:44:01 +02006177 wdev_lock(dev->ieee80211_ptr);
6178 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6179 ssid, ssid_len, ie, ie_len,
6180 key.p.key, key.p.key_len, key.idx,
6181 sae_data, sae_data_len);
6182 wdev_unlock(dev->ieee80211_ptr);
6183 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006184}
6185
Johannes Bergc0692b82010-08-27 14:26:53 +03006186static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6187 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006188 struct cfg80211_crypto_settings *settings,
6189 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006190{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006191 memset(settings, 0, sizeof(*settings));
6192
Samuel Ortizb23aa672009-07-01 21:26:54 +02006193 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6194
Johannes Bergc0692b82010-08-27 14:26:53 +03006195 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6196 u16 proto;
6197 proto = nla_get_u16(
6198 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6199 settings->control_port_ethertype = cpu_to_be16(proto);
6200 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6201 proto != ETH_P_PAE)
6202 return -EINVAL;
6203 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6204 settings->control_port_no_encrypt = true;
6205 } else
6206 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6207
Samuel Ortizb23aa672009-07-01 21:26:54 +02006208 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6209 void *data;
6210 int len, i;
6211
6212 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6213 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6214 settings->n_ciphers_pairwise = len / sizeof(u32);
6215
6216 if (len % sizeof(u32))
6217 return -EINVAL;
6218
Johannes Berg3dc27d22009-07-02 21:36:37 +02006219 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006220 return -EINVAL;
6221
6222 memcpy(settings->ciphers_pairwise, data, len);
6223
6224 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006225 if (!cfg80211_supported_cipher_suite(
6226 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006227 settings->ciphers_pairwise[i]))
6228 return -EINVAL;
6229 }
6230
6231 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6232 settings->cipher_group =
6233 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006234 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6235 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006236 return -EINVAL;
6237 }
6238
6239 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6240 settings->wpa_versions =
6241 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6242 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6243 return -EINVAL;
6244 }
6245
6246 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6247 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006248 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006249
6250 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6251 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6252 settings->n_akm_suites = len / sizeof(u32);
6253
6254 if (len % sizeof(u32))
6255 return -EINVAL;
6256
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006257 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6258 return -EINVAL;
6259
Samuel Ortizb23aa672009-07-01 21:26:54 +02006260 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006261 }
6262
6263 return 0;
6264}
6265
Jouni Malinen636a5d32009-03-19 13:39:22 +02006266static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6267{
Johannes Berg4c476992010-10-04 21:36:35 +02006268 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6269 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006270 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006271 struct cfg80211_assoc_request req = {};
6272 const u8 *bssid, *ssid;
6273 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006274
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006275 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6276 return -EINVAL;
6277
6278 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006279 !info->attrs[NL80211_ATTR_SSID] ||
6280 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006281 return -EINVAL;
6282
Johannes Berg4c476992010-10-04 21:36:35 +02006283 if (!rdev->ops->assoc)
6284 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006285
Johannes Berg074ac8d2010-09-16 14:58:22 +02006286 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006287 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6288 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006289
Johannes Berg19957bb2009-07-02 17:20:43 +02006290 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006291
Johannes Berg19957bb2009-07-02 17:20:43 +02006292 chan = ieee80211_get_channel(&rdev->wiphy,
6293 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006294 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6295 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006296
Johannes Berg19957bb2009-07-02 17:20:43 +02006297 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6298 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006299
6300 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006301 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6302 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006303 }
6304
Jouni Malinendc6382ce2009-05-06 22:09:37 +03006305 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006306 enum nl80211_mfp mfp =
Jouni Malinendc6382ce2009-05-06 22:09:37 +03006307 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006308 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006309 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006310 else if (mfp != NL80211_MFP_NO)
6311 return -EINVAL;
Jouni Malinendc6382ce2009-05-06 22:09:37 +03006312 }
6313
Johannes Berg3e5d7642009-07-07 14:37:26 +02006314 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006315 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006316
Ben Greear7e7c8922011-11-18 11:31:59 -08006317 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006318 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006319
6320 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006321 memcpy(&req.ht_capa_mask,
6322 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6323 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006324
6325 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006326 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006327 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006328 memcpy(&req.ht_capa,
6329 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6330 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006331 }
6332
Johannes Bergee2aca32013-02-21 17:36:01 +01006333 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006334 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006335
6336 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006337 memcpy(&req.vht_capa_mask,
6338 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6339 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006340
6341 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006342 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006343 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006344 memcpy(&req.vht_capa,
6345 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6346 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006347 }
6348
Johannes Bergf62fab72013-02-21 20:09:09 +01006349 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006350 if (!err) {
6351 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006352 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6353 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006354 wdev_unlock(dev->ieee80211_ptr);
6355 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006356
Jouni Malinen636a5d32009-03-19 13:39:22 +02006357 return err;
6358}
6359
6360static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6361{
Johannes Berg4c476992010-10-04 21:36:35 +02006362 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6363 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006364 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006365 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006366 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006367 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006368
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006369 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6370 return -EINVAL;
6371
6372 if (!info->attrs[NL80211_ATTR_MAC])
6373 return -EINVAL;
6374
6375 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6376 return -EINVAL;
6377
Johannes Berg4c476992010-10-04 21:36:35 +02006378 if (!rdev->ops->deauth)
6379 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006380
Johannes Berg074ac8d2010-09-16 14:58:22 +02006381 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006382 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6383 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006384
Johannes Berg19957bb2009-07-02 17:20:43 +02006385 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006386
Johannes Berg19957bb2009-07-02 17:20:43 +02006387 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6388 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006389 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006390 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006391 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006392
6393 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006394 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6395 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006396 }
6397
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006398 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6399
Johannes Berg91bf9b22013-05-15 17:44:01 +02006400 wdev_lock(dev->ieee80211_ptr);
6401 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6402 local_state_change);
6403 wdev_unlock(dev->ieee80211_ptr);
6404 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006405}
6406
6407static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6408{
Johannes Berg4c476992010-10-04 21:36:35 +02006409 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6410 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006411 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006412 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006413 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006414 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006415
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006416 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6417 return -EINVAL;
6418
6419 if (!info->attrs[NL80211_ATTR_MAC])
6420 return -EINVAL;
6421
6422 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6423 return -EINVAL;
6424
Johannes Berg4c476992010-10-04 21:36:35 +02006425 if (!rdev->ops->disassoc)
6426 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006427
Johannes Berg074ac8d2010-09-16 14:58:22 +02006428 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006429 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6430 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006431
Johannes Berg19957bb2009-07-02 17:20:43 +02006432 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006433
Johannes Berg19957bb2009-07-02 17:20:43 +02006434 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6435 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006436 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006437 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006438 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006439
6440 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006441 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6442 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006443 }
6444
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006445 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6446
Johannes Berg91bf9b22013-05-15 17:44:01 +02006447 wdev_lock(dev->ieee80211_ptr);
6448 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6449 local_state_change);
6450 wdev_unlock(dev->ieee80211_ptr);
6451 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006452}
6453
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006454static bool
6455nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6456 int mcast_rate[IEEE80211_NUM_BANDS],
6457 int rateval)
6458{
6459 struct wiphy *wiphy = &rdev->wiphy;
6460 bool found = false;
6461 int band, i;
6462
6463 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6464 struct ieee80211_supported_band *sband;
6465
6466 sband = wiphy->bands[band];
6467 if (!sband)
6468 continue;
6469
6470 for (i = 0; i < sband->n_bitrates; i++) {
6471 if (sband->bitrates[i].bitrate == rateval) {
6472 mcast_rate[band] = i + 1;
6473 found = true;
6474 break;
6475 }
6476 }
6477 }
6478
6479 return found;
6480}
6481
Johannes Berg04a773a2009-04-19 21:24:32 +02006482static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6483{
Johannes Berg4c476992010-10-04 21:36:35 +02006484 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6485 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006486 struct cfg80211_ibss_params ibss;
6487 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006488 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006489 int err;
6490
Johannes Berg8e30bc52009-04-22 17:45:38 +02006491 memset(&ibss, 0, sizeof(ibss));
6492
Johannes Berg04a773a2009-04-19 21:24:32 +02006493 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6494 return -EINVAL;
6495
Johannes Berg683b6d32012-11-08 21:25:48 +01006496 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006497 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6498 return -EINVAL;
6499
Johannes Berg8e30bc52009-04-22 17:45:38 +02006500 ibss.beacon_interval = 100;
6501
6502 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6503 ibss.beacon_interval =
6504 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6505 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6506 return -EINVAL;
6507 }
6508
Johannes Berg4c476992010-10-04 21:36:35 +02006509 if (!rdev->ops->join_ibss)
6510 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006511
Johannes Berg4c476992010-10-04 21:36:35 +02006512 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6513 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006514
Johannes Berg79c97e92009-07-07 03:56:12 +02006515 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006516
Johannes Berg39193492011-09-16 13:45:25 +02006517 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006518 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006519
6520 if (!is_valid_ether_addr(ibss.bssid))
6521 return -EINVAL;
6522 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006523 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6524 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6525
6526 if (info->attrs[NL80211_ATTR_IE]) {
6527 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6528 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6529 }
6530
Johannes Berg683b6d32012-11-08 21:25:48 +01006531 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6532 if (err)
6533 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006534
Johannes Berg683b6d32012-11-08 21:25:48 +01006535 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006536 return -EINVAL;
6537
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006538 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006539 case NL80211_CHAN_WIDTH_5:
6540 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006541 case NL80211_CHAN_WIDTH_20_NOHT:
6542 break;
6543 case NL80211_CHAN_WIDTH_20:
6544 case NL80211_CHAN_WIDTH_40:
6545 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6546 break;
6547 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006548 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006549 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006550
Johannes Berg04a773a2009-04-19 21:24:32 +02006551 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006552 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006553
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006554 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6555 u8 *rates =
6556 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6557 int n_rates =
6558 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6559 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006560 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006561
Johannes Berg34850ab2011-07-18 18:08:35 +02006562 err = ieee80211_get_ratemask(sband, rates, n_rates,
6563 &ibss.basic_rates);
6564 if (err)
6565 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006566 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006567
Simon Wunderlich803768f2013-06-28 10:39:58 +02006568 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6569 memcpy(&ibss.ht_capa_mask,
6570 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6571 sizeof(ibss.ht_capa_mask));
6572
6573 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6574 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6575 return -EINVAL;
6576 memcpy(&ibss.ht_capa,
6577 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6578 sizeof(ibss.ht_capa));
6579 }
6580
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006581 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6582 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6583 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6584 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006585
Johannes Berg4c476992010-10-04 21:36:35 +02006586 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306587 bool no_ht = false;
6588
Johannes Berg4c476992010-10-04 21:36:35 +02006589 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306590 info->attrs[NL80211_ATTR_KEYS],
6591 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006592 if (IS_ERR(connkeys))
6593 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306594
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006595 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6596 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306597 kfree(connkeys);
6598 return -EINVAL;
6599 }
Johannes Berg4c476992010-10-04 21:36:35 +02006600 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006601
Antonio Quartulli267335d2012-01-31 20:25:47 +01006602 ibss.control_port =
6603 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6604
Simon Wunderlich5336fa82013-10-07 18:41:05 +02006605 ibss.userspace_handles_dfs =
6606 nla_get_flag(info->attrs[NL80211_ATTR_HANDLE_DFS]);
6607
Johannes Berg4c476992010-10-04 21:36:35 +02006608 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006609 if (err)
6610 kfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006611 return err;
6612}
6613
6614static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6615{
Johannes Berg4c476992010-10-04 21:36:35 +02006616 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6617 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006618
Johannes Berg4c476992010-10-04 21:36:35 +02006619 if (!rdev->ops->leave_ibss)
6620 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006621
Johannes Berg4c476992010-10-04 21:36:35 +02006622 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6623 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006624
Johannes Berg4c476992010-10-04 21:36:35 +02006625 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006626}
6627
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006628static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6629{
6630 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6631 struct net_device *dev = info->user_ptr[1];
6632 int mcast_rate[IEEE80211_NUM_BANDS];
6633 u32 nla_rate;
6634 int err;
6635
6636 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6637 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6638 return -EOPNOTSUPP;
6639
6640 if (!rdev->ops->set_mcast_rate)
6641 return -EOPNOTSUPP;
6642
6643 memset(mcast_rate, 0, sizeof(mcast_rate));
6644
6645 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6646 return -EINVAL;
6647
6648 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6649 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6650 return -EINVAL;
6651
6652 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6653
6654 return err;
6655}
6656
6657
Johannes Bergaff89a92009-07-01 21:26:51 +02006658#ifdef CONFIG_NL80211_TESTMODE
6659static struct genl_multicast_group nl80211_testmode_mcgrp = {
6660 .name = "testmode",
6661};
6662
6663static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
6664{
Johannes Berg4c476992010-10-04 21:36:35 +02006665 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03006666 struct wireless_dev *wdev =
6667 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02006668 int err;
6669
David Spinadelfc73f112013-07-31 18:04:15 +03006670 if (!rdev->ops->testmode_cmd)
6671 return -EOPNOTSUPP;
6672
6673 if (IS_ERR(wdev)) {
6674 err = PTR_ERR(wdev);
6675 if (err != -EINVAL)
6676 return err;
6677 wdev = NULL;
6678 } else if (wdev->wiphy != &rdev->wiphy) {
6679 return -EINVAL;
6680 }
6681
Johannes Bergaff89a92009-07-01 21:26:51 +02006682 if (!info->attrs[NL80211_ATTR_TESTDATA])
6683 return -EINVAL;
6684
David Spinadelfc73f112013-07-31 18:04:15 +03006685 rdev->testmode_info = info;
6686 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02006687 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
6688 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
David Spinadelfc73f112013-07-31 18:04:15 +03006689 rdev->testmode_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02006690
Johannes Bergaff89a92009-07-01 21:26:51 +02006691 return err;
6692}
6693
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006694static int nl80211_testmode_dump(struct sk_buff *skb,
6695 struct netlink_callback *cb)
6696{
Johannes Berg00918d32011-12-13 17:22:05 +01006697 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006698 int err;
6699 long phy_idx;
6700 void *data = NULL;
6701 int data_len = 0;
6702
Johannes Berg5fe231e2013-05-08 21:45:15 +02006703 rtnl_lock();
6704
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006705 if (cb->args[0]) {
6706 /*
6707 * 0 is a valid index, but not valid for args[0],
6708 * so we need to offset by 1.
6709 */
6710 phy_idx = cb->args[0] - 1;
6711 } else {
6712 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
6713 nl80211_fam.attrbuf, nl80211_fam.maxattr,
6714 nl80211_policy);
6715 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02006716 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006717
Johannes Berg2bd7e352012-06-15 14:23:16 +02006718 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
6719 nl80211_fam.attrbuf);
6720 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006721 err = PTR_ERR(rdev);
6722 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006723 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02006724 phy_idx = rdev->wiphy_idx;
6725 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02006726
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006727 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
6728 cb->args[1] =
6729 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
6730 }
6731
6732 if (cb->args[1]) {
6733 data = nla_data((void *)cb->args[1]);
6734 data_len = nla_len((void *)cb->args[1]);
6735 }
6736
Johannes Berg00918d32011-12-13 17:22:05 +01006737 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
6738 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006739 err = -ENOENT;
6740 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006741 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006742
Johannes Berg00918d32011-12-13 17:22:05 +01006743 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006744 err = -EOPNOTSUPP;
6745 goto out_err;
6746 }
6747
6748 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00006749 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006750 cb->nlh->nlmsg_seq, NLM_F_MULTI,
6751 NL80211_CMD_TESTMODE);
6752 struct nlattr *tmdata;
6753
Dan Carpentercb35fba2013-08-14 14:50:01 +03006754 if (!hdr)
6755 break;
6756
David S. Miller9360ffd2012-03-29 04:41:26 -04006757 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006758 genlmsg_cancel(skb, hdr);
6759 break;
6760 }
6761
6762 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6763 if (!tmdata) {
6764 genlmsg_cancel(skb, hdr);
6765 break;
6766 }
Hila Gonene35e4d22012-06-27 17:19:42 +03006767 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006768 nla_nest_end(skb, tmdata);
6769
6770 if (err == -ENOBUFS || err == -ENOENT) {
6771 genlmsg_cancel(skb, hdr);
6772 break;
6773 } else if (err) {
6774 genlmsg_cancel(skb, hdr);
6775 goto out_err;
6776 }
6777
6778 genlmsg_end(skb, hdr);
6779 }
6780
6781 err = skb->len;
6782 /* see above */
6783 cb->args[0] = phy_idx + 1;
6784 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02006785 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006786 return err;
6787}
6788
Johannes Bergaff89a92009-07-01 21:26:51 +02006789static struct sk_buff *
6790__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006791 int approxlen, u32 portid, u32 seq, gfp_t gfp)
Johannes Bergaff89a92009-07-01 21:26:51 +02006792{
6793 struct sk_buff *skb;
6794 void *hdr;
6795 struct nlattr *data;
6796
6797 skb = nlmsg_new(approxlen + 100, gfp);
6798 if (!skb)
6799 return NULL;
6800
Eric W. Biederman15e47302012-09-07 20:12:54 +00006801 hdr = nl80211hdr_put(skb, portid, seq, 0, NL80211_CMD_TESTMODE);
Johannes Bergaff89a92009-07-01 21:26:51 +02006802 if (!hdr) {
6803 kfree_skb(skb);
6804 return NULL;
6805 }
6806
David S. Miller9360ffd2012-03-29 04:41:26 -04006807 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6808 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02006809 data = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6810
6811 ((void **)skb->cb)[0] = rdev;
6812 ((void **)skb->cb)[1] = hdr;
6813 ((void **)skb->cb)[2] = data;
6814
6815 return skb;
6816
6817 nla_put_failure:
6818 kfree_skb(skb);
6819 return NULL;
6820}
6821
6822struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
6823 int approxlen)
6824{
6825 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6826
6827 if (WARN_ON(!rdev->testmode_info))
6828 return NULL;
6829
6830 return __cfg80211_testmode_alloc_skb(rdev, approxlen,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006831 rdev->testmode_info->snd_portid,
Johannes Bergaff89a92009-07-01 21:26:51 +02006832 rdev->testmode_info->snd_seq,
6833 GFP_KERNEL);
6834}
6835EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb);
6836
6837int cfg80211_testmode_reply(struct sk_buff *skb)
6838{
6839 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
6840 void *hdr = ((void **)skb->cb)[1];
6841 struct nlattr *data = ((void **)skb->cb)[2];
6842
6843 if (WARN_ON(!rdev->testmode_info)) {
6844 kfree_skb(skb);
6845 return -EINVAL;
6846 }
6847
6848 nla_nest_end(skb, data);
6849 genlmsg_end(skb, hdr);
6850 return genlmsg_reply(skb, rdev->testmode_info);
6851}
6852EXPORT_SYMBOL(cfg80211_testmode_reply);
6853
6854struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
6855 int approxlen, gfp_t gfp)
6856{
6857 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6858
6859 return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp);
6860}
6861EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb);
6862
6863void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
6864{
Michal Kaziora0ec5702013-06-25 09:17:17 +02006865 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
Johannes Bergaff89a92009-07-01 21:26:51 +02006866 void *hdr = ((void **)skb->cb)[1];
6867 struct nlattr *data = ((void **)skb->cb)[2];
6868
6869 nla_nest_end(skb, data);
6870 genlmsg_end(skb, hdr);
Michal Kaziora0ec5702013-06-25 09:17:17 +02006871 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), skb, 0,
6872 nl80211_testmode_mcgrp.id, gfp);
Johannes Bergaff89a92009-07-01 21:26:51 +02006873}
6874EXPORT_SYMBOL(cfg80211_testmode_event);
6875#endif
6876
Samuel Ortizb23aa672009-07-01 21:26:54 +02006877static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
6878{
Johannes Berg4c476992010-10-04 21:36:35 +02006879 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6880 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02006881 struct cfg80211_connect_params connect;
6882 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006883 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006884 int err;
6885
6886 memset(&connect, 0, sizeof(connect));
6887
6888 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6889 return -EINVAL;
6890
6891 if (!info->attrs[NL80211_ATTR_SSID] ||
6892 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6893 return -EINVAL;
6894
6895 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
6896 connect.auth_type =
6897 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006898 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
6899 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006900 return -EINVAL;
6901 } else
6902 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
6903
6904 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
6905
Johannes Bergc0692b82010-08-27 14:26:53 +03006906 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006907 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006908 if (err)
6909 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006910
Johannes Berg074ac8d2010-09-16 14:58:22 +02006911 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006912 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6913 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006914
Johannes Berg79c97e92009-07-07 03:56:12 +02006915 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006916
Bala Shanmugam4486ea92012-03-07 17:27:12 +05306917 connect.bg_scan_period = -1;
6918 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
6919 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
6920 connect.bg_scan_period =
6921 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
6922 }
6923
Samuel Ortizb23aa672009-07-01 21:26:54 +02006924 if (info->attrs[NL80211_ATTR_MAC])
6925 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
6926 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6927 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6928
6929 if (info->attrs[NL80211_ATTR_IE]) {
6930 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6931 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6932 }
6933
Jouni Malinencee00a92013-01-15 17:15:57 +02006934 if (info->attrs[NL80211_ATTR_USE_MFP]) {
6935 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
6936 if (connect.mfp != NL80211_MFP_REQUIRED &&
6937 connect.mfp != NL80211_MFP_NO)
6938 return -EINVAL;
6939 } else {
6940 connect.mfp = NL80211_MFP_NO;
6941 }
6942
Samuel Ortizb23aa672009-07-01 21:26:54 +02006943 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
6944 connect.channel =
6945 ieee80211_get_channel(wiphy,
6946 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
6947 if (!connect.channel ||
Johannes Berg4c476992010-10-04 21:36:35 +02006948 connect.channel->flags & IEEE80211_CHAN_DISABLED)
6949 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006950 }
6951
Johannes Bergfffd0932009-07-08 14:22:54 +02006952 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
6953 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306954 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02006955 if (IS_ERR(connkeys))
6956 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006957 }
6958
Ben Greear7e7c8922011-11-18 11:31:59 -08006959 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
6960 connect.flags |= ASSOC_REQ_DISABLE_HT;
6961
6962 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6963 memcpy(&connect.ht_capa_mask,
6964 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6965 sizeof(connect.ht_capa_mask));
6966
6967 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006968 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
6969 kfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08006970 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006971 }
Ben Greear7e7c8922011-11-18 11:31:59 -08006972 memcpy(&connect.ht_capa,
6973 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6974 sizeof(connect.ht_capa));
6975 }
6976
Johannes Bergee2aca32013-02-21 17:36:01 +01006977 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
6978 connect.flags |= ASSOC_REQ_DISABLE_VHT;
6979
6980 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
6981 memcpy(&connect.vht_capa_mask,
6982 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6983 sizeof(connect.vht_capa_mask));
6984
6985 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
6986 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
6987 kfree(connkeys);
6988 return -EINVAL;
6989 }
6990 memcpy(&connect.vht_capa,
6991 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6992 sizeof(connect.vht_capa));
6993 }
6994
Johannes Berg83739b02013-05-15 17:44:01 +02006995 wdev_lock(dev->ieee80211_ptr);
6996 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
6997 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02006998 if (err)
6999 kfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02007000 return err;
7001}
7002
7003static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
7004{
Johannes Berg4c476992010-10-04 21:36:35 +02007005 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7006 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02007007 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02007008 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007009
7010 if (!info->attrs[NL80211_ATTR_REASON_CODE])
7011 reason = WLAN_REASON_DEAUTH_LEAVING;
7012 else
7013 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
7014
7015 if (reason == 0)
7016 return -EINVAL;
7017
Johannes Berg074ac8d2010-09-16 14:58:22 +02007018 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007019 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7020 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007021
Johannes Berg83739b02013-05-15 17:44:01 +02007022 wdev_lock(dev->ieee80211_ptr);
7023 ret = cfg80211_disconnect(rdev, dev, reason, true);
7024 wdev_unlock(dev->ieee80211_ptr);
7025 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02007026}
7027
Johannes Berg463d0182009-07-14 00:33:35 +02007028static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
7029{
Johannes Berg4c476992010-10-04 21:36:35 +02007030 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02007031 struct net *net;
7032 int err;
7033 u32 pid;
7034
7035 if (!info->attrs[NL80211_ATTR_PID])
7036 return -EINVAL;
7037
7038 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
7039
Johannes Berg463d0182009-07-14 00:33:35 +02007040 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02007041 if (IS_ERR(net))
7042 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007043
7044 err = 0;
7045
7046 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02007047 if (!net_eq(wiphy_net(&rdev->wiphy), net))
7048 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02007049
Johannes Berg463d0182009-07-14 00:33:35 +02007050 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02007051 return err;
7052}
7053
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007054static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
7055{
Johannes Berg4c476992010-10-04 21:36:35 +02007056 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007057 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
7058 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02007059 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007060 struct cfg80211_pmksa pmksa;
7061
7062 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
7063
7064 if (!info->attrs[NL80211_ATTR_MAC])
7065 return -EINVAL;
7066
7067 if (!info->attrs[NL80211_ATTR_PMKID])
7068 return -EINVAL;
7069
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007070 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7071 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7072
Johannes Berg074ac8d2010-09-16 14:58:22 +02007073 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007074 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7075 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007076
7077 switch (info->genlhdr->cmd) {
7078 case NL80211_CMD_SET_PMKSA:
7079 rdev_ops = rdev->ops->set_pmksa;
7080 break;
7081 case NL80211_CMD_DEL_PMKSA:
7082 rdev_ops = rdev->ops->del_pmksa;
7083 break;
7084 default:
7085 WARN_ON(1);
7086 break;
7087 }
7088
Johannes Berg4c476992010-10-04 21:36:35 +02007089 if (!rdev_ops)
7090 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007091
Johannes Berg4c476992010-10-04 21:36:35 +02007092 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007093}
7094
7095static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7096{
Johannes Berg4c476992010-10-04 21:36:35 +02007097 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7098 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007099
Johannes Berg074ac8d2010-09-16 14:58:22 +02007100 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007101 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7102 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007103
Johannes Berg4c476992010-10-04 21:36:35 +02007104 if (!rdev->ops->flush_pmksa)
7105 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007106
Hila Gonene35e4d22012-06-27 17:19:42 +03007107 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007108}
7109
Arik Nemtsov109086c2011-09-28 14:12:50 +03007110static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7111{
7112 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7113 struct net_device *dev = info->user_ptr[1];
7114 u8 action_code, dialog_token;
7115 u16 status_code;
7116 u8 *peer;
7117
7118 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7119 !rdev->ops->tdls_mgmt)
7120 return -EOPNOTSUPP;
7121
7122 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7123 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7124 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7125 !info->attrs[NL80211_ATTR_IE] ||
7126 !info->attrs[NL80211_ATTR_MAC])
7127 return -EINVAL;
7128
7129 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7130 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7131 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7132 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
7133
Hila Gonene35e4d22012-06-27 17:19:42 +03007134 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
7135 dialog_token, status_code,
7136 nla_data(info->attrs[NL80211_ATTR_IE]),
7137 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007138}
7139
7140static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7141{
7142 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7143 struct net_device *dev = info->user_ptr[1];
7144 enum nl80211_tdls_operation operation;
7145 u8 *peer;
7146
7147 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7148 !rdev->ops->tdls_oper)
7149 return -EOPNOTSUPP;
7150
7151 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7152 !info->attrs[NL80211_ATTR_MAC])
7153 return -EINVAL;
7154
7155 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7156 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7157
Hila Gonene35e4d22012-06-27 17:19:42 +03007158 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007159}
7160
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007161static int nl80211_remain_on_channel(struct sk_buff *skb,
7162 struct genl_info *info)
7163{
Johannes Berg4c476992010-10-04 21:36:35 +02007164 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007165 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007166 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007167 struct sk_buff *msg;
7168 void *hdr;
7169 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007170 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007171 int err;
7172
7173 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7174 !info->attrs[NL80211_ATTR_DURATION])
7175 return -EINVAL;
7176
7177 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7178
Johannes Berg7c4ef712011-11-18 15:33:48 +01007179 if (!rdev->ops->remain_on_channel ||
7180 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007181 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007182
Johannes Bergebf348f2012-06-01 12:50:54 +02007183 /*
7184 * We should be on that channel for at least a minimum amount of
7185 * time (10ms) but no longer than the driver supports.
7186 */
7187 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7188 duration > rdev->wiphy.max_remain_on_channel_duration)
7189 return -EINVAL;
7190
Johannes Berg683b6d32012-11-08 21:25:48 +01007191 err = nl80211_parse_chandef(rdev, info, &chandef);
7192 if (err)
7193 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007194
7195 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007196 if (!msg)
7197 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007198
Eric W. Biederman15e47302012-09-07 20:12:54 +00007199 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007200 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007201 if (!hdr) {
7202 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007203 goto free_msg;
7204 }
7205
Johannes Berg683b6d32012-11-08 21:25:48 +01007206 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7207 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007208
7209 if (err)
7210 goto free_msg;
7211
David S. Miller9360ffd2012-03-29 04:41:26 -04007212 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7213 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007214
7215 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007216
7217 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007218
7219 nla_put_failure:
7220 err = -ENOBUFS;
7221 free_msg:
7222 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007223 return err;
7224}
7225
7226static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7227 struct genl_info *info)
7228{
Johannes Berg4c476992010-10-04 21:36:35 +02007229 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007230 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007231 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007232
7233 if (!info->attrs[NL80211_ATTR_COOKIE])
7234 return -EINVAL;
7235
Johannes Berg4c476992010-10-04 21:36:35 +02007236 if (!rdev->ops->cancel_remain_on_channel)
7237 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007238
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007239 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7240
Hila Gonene35e4d22012-06-27 17:19:42 +03007241 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007242}
7243
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007244static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7245 u8 *rates, u8 rates_len)
7246{
7247 u8 i;
7248 u32 mask = 0;
7249
7250 for (i = 0; i < rates_len; i++) {
7251 int rate = (rates[i] & 0x7f) * 5;
7252 int ridx;
7253 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7254 struct ieee80211_rate *srate =
7255 &sband->bitrates[ridx];
7256 if (rate == srate->bitrate) {
7257 mask |= 1 << ridx;
7258 break;
7259 }
7260 }
7261 if (ridx == sband->n_bitrates)
7262 return 0; /* rate not found */
7263 }
7264
7265 return mask;
7266}
7267
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007268static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7269 u8 *rates, u8 rates_len,
7270 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7271{
7272 u8 i;
7273
7274 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7275
7276 for (i = 0; i < rates_len; i++) {
7277 int ridx, rbit;
7278
7279 ridx = rates[i] / 8;
7280 rbit = BIT(rates[i] % 8);
7281
7282 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007283 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007284 return false;
7285
7286 /* check availability */
7287 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7288 mcs[ridx] |= rbit;
7289 else
7290 return false;
7291 }
7292
7293 return true;
7294}
7295
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007296static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007297 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7298 .len = NL80211_MAX_SUPP_RATES },
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007299 [NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
7300 .len = NL80211_MAX_SUPP_HT_RATES },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007301};
7302
7303static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7304 struct genl_info *info)
7305{
7306 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007307 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007308 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007309 int rem, i;
7310 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007311 struct nlattr *tx_rates;
7312 struct ieee80211_supported_band *sband;
7313
7314 if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
7315 return -EINVAL;
7316
Johannes Berg4c476992010-10-04 21:36:35 +02007317 if (!rdev->ops->set_bitrate_mask)
7318 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007319
7320 memset(&mask, 0, sizeof(mask));
7321 /* Default to all rates enabled */
7322 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7323 sband = rdev->wiphy.bands[i];
7324 mask.control[i].legacy =
7325 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007326 if (sband)
7327 memcpy(mask.control[i].mcs,
7328 sband->ht_cap.mcs.rx_mask,
7329 sizeof(mask.control[i].mcs));
7330 else
7331 memset(mask.control[i].mcs, 0,
7332 sizeof(mask.control[i].mcs));
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007333 }
7334
7335 /*
7336 * The nested attribute uses enum nl80211_band as the index. This maps
7337 * directly to the enum ieee80211_band values used in cfg80211.
7338 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007339 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007340 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
7341 {
7342 enum ieee80211_band band = nla_type(tx_rates);
Johannes Berg4c476992010-10-04 21:36:35 +02007343 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7344 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007345 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007346 if (sband == NULL)
7347 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007348 nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7349 nla_len(tx_rates), nl80211_txattr_policy);
7350 if (tb[NL80211_TXRATE_LEGACY]) {
7351 mask.control[band].legacy = rateset_to_mask(
7352 sband,
7353 nla_data(tb[NL80211_TXRATE_LEGACY]),
7354 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307355 if ((mask.control[band].legacy == 0) &&
7356 nla_len(tb[NL80211_TXRATE_LEGACY]))
7357 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007358 }
7359 if (tb[NL80211_TXRATE_MCS]) {
7360 if (!ht_rateset_to_mask(
7361 sband,
7362 nla_data(tb[NL80211_TXRATE_MCS]),
7363 nla_len(tb[NL80211_TXRATE_MCS]),
7364 mask.control[band].mcs))
7365 return -EINVAL;
7366 }
7367
7368 if (mask.control[band].legacy == 0) {
7369 /* don't allow empty legacy rates if HT
7370 * is not even supported. */
7371 if (!rdev->wiphy.bands[band]->ht_cap.ht_supported)
7372 return -EINVAL;
7373
7374 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
7375 if (mask.control[band].mcs[i])
7376 break;
7377
7378 /* legacy and mcs rates may not be both empty */
7379 if (i == IEEE80211_HT_MCS_MASK_LEN)
Johannes Berg4c476992010-10-04 21:36:35 +02007380 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007381 }
7382 }
7383
Hila Gonene35e4d22012-06-27 17:19:42 +03007384 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007385}
7386
Johannes Berg2e161f72010-08-12 15:38:38 +02007387static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007388{
Johannes Berg4c476992010-10-04 21:36:35 +02007389 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007390 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007391 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007392
7393 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7394 return -EINVAL;
7395
Johannes Berg2e161f72010-08-12 15:38:38 +02007396 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7397 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007398
Johannes Berg71bbc992012-06-15 15:30:18 +02007399 switch (wdev->iftype) {
7400 case NL80211_IFTYPE_STATION:
7401 case NL80211_IFTYPE_ADHOC:
7402 case NL80211_IFTYPE_P2P_CLIENT:
7403 case NL80211_IFTYPE_AP:
7404 case NL80211_IFTYPE_AP_VLAN:
7405 case NL80211_IFTYPE_MESH_POINT:
7406 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007407 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007408 break;
7409 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007410 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007411 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007412
7413 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007414 if (!rdev->ops->mgmt_tx)
7415 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007416
Eric W. Biederman15e47302012-09-07 20:12:54 +00007417 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007418 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7419 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007420}
7421
Johannes Berg2e161f72010-08-12 15:38:38 +02007422static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007423{
Johannes Berg4c476992010-10-04 21:36:35 +02007424 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007425 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007426 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007427 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007428 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007429 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007430 struct sk_buff *msg = NULL;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007431 unsigned int wait = 0;
Johannes Berge247bd902011-11-04 11:18:21 +01007432 bool offchan, no_cck, dont_wait_for_ack;
7433
7434 dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
Jouni Malinen026331c2010-02-15 12:53:10 +02007435
Johannes Berg683b6d32012-11-08 21:25:48 +01007436 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007437 return -EINVAL;
7438
Johannes Berg4c476992010-10-04 21:36:35 +02007439 if (!rdev->ops->mgmt_tx)
7440 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007441
Johannes Berg71bbc992012-06-15 15:30:18 +02007442 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007443 case NL80211_IFTYPE_P2P_DEVICE:
7444 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7445 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007446 case NL80211_IFTYPE_STATION:
7447 case NL80211_IFTYPE_ADHOC:
7448 case NL80211_IFTYPE_P2P_CLIENT:
7449 case NL80211_IFTYPE_AP:
7450 case NL80211_IFTYPE_AP_VLAN:
7451 case NL80211_IFTYPE_MESH_POINT:
7452 case NL80211_IFTYPE_P2P_GO:
7453 break;
7454 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007455 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007456 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007457
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007458 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007459 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007460 return -EINVAL;
7461 wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007462
7463 /*
7464 * We should wait on the channel for at least a minimum amount
7465 * of time (10ms) but no longer than the driver supports.
7466 */
7467 if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7468 wait > rdev->wiphy.max_remain_on_channel_duration)
7469 return -EINVAL;
7470
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007471 }
7472
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007473 offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
7474
Johannes Berg7c4ef712011-11-18 15:33:48 +01007475 if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
7476 return -EINVAL;
7477
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307478 no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
7479
Antonio Quartulliea141b752013-06-11 14:20:03 +02007480 /* get the channel if any has been specified, otherwise pass NULL to
7481 * the driver. The latter will use the current one
7482 */
7483 chandef.chan = NULL;
7484 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7485 err = nl80211_parse_chandef(rdev, info, &chandef);
7486 if (err)
7487 return err;
7488 }
7489
7490 if (!chandef.chan && offchan)
7491 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007492
Johannes Berge247bd902011-11-04 11:18:21 +01007493 if (!dont_wait_for_ack) {
7494 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7495 if (!msg)
7496 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007497
Eric W. Biederman15e47302012-09-07 20:12:54 +00007498 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007499 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007500 if (!hdr) {
7501 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007502 goto free_msg;
7503 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007504 }
Johannes Berge247bd902011-11-04 11:18:21 +01007505
Johannes Berg683b6d32012-11-08 21:25:48 +01007506 err = cfg80211_mlme_mgmt_tx(rdev, wdev, chandef.chan, offchan, wait,
Johannes Berg2e161f72010-08-12 15:38:38 +02007507 nla_data(info->attrs[NL80211_ATTR_FRAME]),
7508 nla_len(info->attrs[NL80211_ATTR_FRAME]),
Johannes Berge247bd902011-11-04 11:18:21 +01007509 no_cck, dont_wait_for_ack, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007510 if (err)
7511 goto free_msg;
7512
Johannes Berge247bd902011-11-04 11:18:21 +01007513 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007514 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7515 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007516
Johannes Berge247bd902011-11-04 11:18:21 +01007517 genlmsg_end(msg, hdr);
7518 return genlmsg_reply(msg, info);
7519 }
7520
7521 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007522
7523 nla_put_failure:
7524 err = -ENOBUFS;
7525 free_msg:
7526 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007527 return err;
7528}
7529
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007530static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7531{
7532 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007533 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007534 u64 cookie;
7535
7536 if (!info->attrs[NL80211_ATTR_COOKIE])
7537 return -EINVAL;
7538
7539 if (!rdev->ops->mgmt_tx_cancel_wait)
7540 return -EOPNOTSUPP;
7541
Johannes Berg71bbc992012-06-15 15:30:18 +02007542 switch (wdev->iftype) {
7543 case NL80211_IFTYPE_STATION:
7544 case NL80211_IFTYPE_ADHOC:
7545 case NL80211_IFTYPE_P2P_CLIENT:
7546 case NL80211_IFTYPE_AP:
7547 case NL80211_IFTYPE_AP_VLAN:
7548 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007549 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007550 break;
7551 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007552 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007553 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007554
7555 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7556
Hila Gonene35e4d22012-06-27 17:19:42 +03007557 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007558}
7559
Kalle Valoffb9eb32010-02-17 17:58:10 +02007560static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7561{
Johannes Berg4c476992010-10-04 21:36:35 +02007562 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007563 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007564 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007565 u8 ps_state;
7566 bool state;
7567 int err;
7568
Johannes Berg4c476992010-10-04 21:36:35 +02007569 if (!info->attrs[NL80211_ATTR_PS_STATE])
7570 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007571
7572 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
7573
Johannes Berg4c476992010-10-04 21:36:35 +02007574 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
7575 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007576
7577 wdev = dev->ieee80211_ptr;
7578
Johannes Berg4c476992010-10-04 21:36:35 +02007579 if (!rdev->ops->set_power_mgmt)
7580 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007581
7582 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
7583
7584 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02007585 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007586
Hila Gonene35e4d22012-06-27 17:19:42 +03007587 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02007588 if (!err)
7589 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007590 return err;
7591}
7592
7593static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
7594{
Johannes Berg4c476992010-10-04 21:36:35 +02007595 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007596 enum nl80211_ps_state ps_state;
7597 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007598 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007599 struct sk_buff *msg;
7600 void *hdr;
7601 int err;
7602
Kalle Valoffb9eb32010-02-17 17:58:10 +02007603 wdev = dev->ieee80211_ptr;
7604
Johannes Berg4c476992010-10-04 21:36:35 +02007605 if (!rdev->ops->set_power_mgmt)
7606 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007607
7608 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007609 if (!msg)
7610 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007611
Eric W. Biederman15e47302012-09-07 20:12:54 +00007612 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02007613 NL80211_CMD_GET_POWER_SAVE);
7614 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02007615 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007616 goto free_msg;
7617 }
7618
7619 if (wdev->ps)
7620 ps_state = NL80211_PS_ENABLED;
7621 else
7622 ps_state = NL80211_PS_DISABLED;
7623
David S. Miller9360ffd2012-03-29 04:41:26 -04007624 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
7625 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007626
7627 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007628 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007629
Johannes Berg4c476992010-10-04 21:36:35 +02007630 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007631 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02007632 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007633 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007634 return err;
7635}
7636
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007637static struct nla_policy
7638nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = {
7639 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
7640 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
7641 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07007642 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
7643 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
7644 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007645};
7646
Thomas Pedersen84f10702012-07-12 16:17:33 -07007647static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01007648 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007649{
7650 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07007651 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007652 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07007653
Johannes Bergd9d8b012012-11-26 12:51:52 +01007654 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007655 return -EINVAL;
7656
Thomas Pedersen84f10702012-07-12 16:17:33 -07007657 if (!rdev->ops->set_cqm_txe_config)
7658 return -EOPNOTSUPP;
7659
7660 if (wdev->iftype != NL80211_IFTYPE_STATION &&
7661 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7662 return -EOPNOTSUPP;
7663
Hila Gonene35e4d22012-06-27 17:19:42 +03007664 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07007665}
7666
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007667static int nl80211_set_cqm_rssi(struct genl_info *info,
7668 s32 threshold, u32 hysteresis)
7669{
Johannes Berg4c476992010-10-04 21:36:35 +02007670 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02007671 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007672 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007673
7674 if (threshold > 0)
7675 return -EINVAL;
7676
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007677 /* disabling - hysteresis should also be zero then */
7678 if (threshold == 0)
7679 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007680
Johannes Berg4c476992010-10-04 21:36:35 +02007681 if (!rdev->ops->set_cqm_rssi_config)
7682 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007683
Johannes Berg074ac8d2010-09-16 14:58:22 +02007684 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007685 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7686 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007687
Hila Gonene35e4d22012-06-27 17:19:42 +03007688 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007689}
7690
7691static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
7692{
7693 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
7694 struct nlattr *cqm;
7695 int err;
7696
7697 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007698 if (!cqm)
7699 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007700
7701 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
7702 nl80211_attr_cqm_policy);
7703 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007704 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007705
7706 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
7707 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007708 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
7709 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007710
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007711 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
7712 }
7713
7714 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
7715 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
7716 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
7717 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
7718 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
7719 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
7720
7721 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
7722 }
7723
7724 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007725}
7726
Johannes Berg29cbe682010-12-03 09:20:44 +01007727static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
7728{
7729 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7730 struct net_device *dev = info->user_ptr[1];
7731 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08007732 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01007733 int err;
7734
7735 /* start with default */
7736 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08007737 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01007738
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007739 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01007740 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007741 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01007742 if (err)
7743 return err;
7744 }
7745
7746 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
7747 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
7748 return -EINVAL;
7749
Javier Cardonac80d5452010-12-16 17:37:49 -08007750 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
7751 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
7752
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08007753 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
7754 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
7755 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
7756 return -EINVAL;
7757
Marco Porsch9bdbf042013-01-07 16:04:51 +01007758 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
7759 setup.beacon_interval =
7760 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
7761 if (setup.beacon_interval < 10 ||
7762 setup.beacon_interval > 10000)
7763 return -EINVAL;
7764 }
7765
7766 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
7767 setup.dtim_period =
7768 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
7769 if (setup.dtim_period < 1 || setup.dtim_period > 100)
7770 return -EINVAL;
7771 }
7772
Javier Cardonac80d5452010-12-16 17:37:49 -08007773 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
7774 /* parse additional setup parameters if given */
7775 err = nl80211_parse_mesh_setup(info, &setup);
7776 if (err)
7777 return err;
7778 }
7779
Thomas Pedersend37bb182013-03-04 13:06:13 -08007780 if (setup.user_mpm)
7781 cfg.auto_open_plinks = false;
7782
Johannes Bergcc1d2802012-05-16 23:50:20 +02007783 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01007784 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
7785 if (err)
7786 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007787 } else {
7788 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01007789 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007790 }
7791
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07007792 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
7793 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7794 int n_rates =
7795 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7796 struct ieee80211_supported_band *sband;
7797
7798 if (!setup.chandef.chan)
7799 return -EINVAL;
7800
7801 sband = rdev->wiphy.bands[setup.chandef.chan->band];
7802
7803 err = ieee80211_get_ratemask(sband, rates, n_rates,
7804 &setup.basic_rates);
7805 if (err)
7806 return err;
7807 }
7808
Javier Cardonac80d5452010-12-16 17:37:49 -08007809 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01007810}
7811
7812static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
7813{
7814 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7815 struct net_device *dev = info->user_ptr[1];
7816
7817 return cfg80211_leave_mesh(rdev, dev);
7818}
7819
Johannes Bergdfb89c52012-06-27 09:23:48 +02007820#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007821static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
7822 struct cfg80211_registered_device *rdev)
7823{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007824 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007825 struct nlattr *nl_pats, *nl_pat;
7826 int i, pat_len;
7827
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007828 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007829 return 0;
7830
7831 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
7832 if (!nl_pats)
7833 return -ENOBUFS;
7834
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007835 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007836 nl_pat = nla_nest_start(msg, i + 1);
7837 if (!nl_pat)
7838 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007839 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007840 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007841 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007842 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
7843 wowlan->patterns[i].pattern) ||
7844 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007845 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007846 return -ENOBUFS;
7847 nla_nest_end(msg, nl_pat);
7848 }
7849 nla_nest_end(msg, nl_pats);
7850
7851 return 0;
7852}
7853
Johannes Berg2a0e0472013-01-23 22:57:40 +01007854static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
7855 struct cfg80211_wowlan_tcp *tcp)
7856{
7857 struct nlattr *nl_tcp;
7858
7859 if (!tcp)
7860 return 0;
7861
7862 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
7863 if (!nl_tcp)
7864 return -ENOBUFS;
7865
7866 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
7867 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
7868 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
7869 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
7870 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
7871 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
7872 tcp->payload_len, tcp->payload) ||
7873 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
7874 tcp->data_interval) ||
7875 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
7876 tcp->wake_len, tcp->wake_data) ||
7877 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
7878 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
7879 return -ENOBUFS;
7880
7881 if (tcp->payload_seq.len &&
7882 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
7883 sizeof(tcp->payload_seq), &tcp->payload_seq))
7884 return -ENOBUFS;
7885
7886 if (tcp->payload_tok.len &&
7887 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
7888 sizeof(tcp->payload_tok) + tcp->tokens_size,
7889 &tcp->payload_tok))
7890 return -ENOBUFS;
7891
Johannes Berge248ad32013-05-16 10:24:28 +02007892 nla_nest_end(msg, nl_tcp);
7893
Johannes Berg2a0e0472013-01-23 22:57:40 +01007894 return 0;
7895}
7896
Johannes Bergff1b6e62011-05-04 15:37:28 +02007897static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
7898{
7899 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7900 struct sk_buff *msg;
7901 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007902 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02007903
Johannes Berg964dc9e2013-06-03 17:25:34 +02007904 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02007905 return -EOPNOTSUPP;
7906
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007907 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01007908 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007909 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
7910 rdev->wiphy.wowlan_config->tcp->payload_len +
7911 rdev->wiphy.wowlan_config->tcp->wake_len +
7912 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007913 }
7914
7915 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02007916 if (!msg)
7917 return -ENOMEM;
7918
Eric W. Biederman15e47302012-09-07 20:12:54 +00007919 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02007920 NL80211_CMD_GET_WOWLAN);
7921 if (!hdr)
7922 goto nla_put_failure;
7923
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007924 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02007925 struct nlattr *nl_wowlan;
7926
7927 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
7928 if (!nl_wowlan)
7929 goto nla_put_failure;
7930
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007931 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007932 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007933 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007934 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007935 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007936 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007937 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007938 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007939 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007940 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007941 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007942 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007943 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007944 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
7945 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007946
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007947 if (nl80211_send_wowlan_patterns(msg, rdev))
7948 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007949
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007950 if (nl80211_send_wowlan_tcp(msg,
7951 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01007952 goto nla_put_failure;
7953
Johannes Bergff1b6e62011-05-04 15:37:28 +02007954 nla_nest_end(msg, nl_wowlan);
7955 }
7956
7957 genlmsg_end(msg, hdr);
7958 return genlmsg_reply(msg, info);
7959
7960nla_put_failure:
7961 nlmsg_free(msg);
7962 return -ENOBUFS;
7963}
7964
Johannes Berg2a0e0472013-01-23 22:57:40 +01007965static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
7966 struct nlattr *attr,
7967 struct cfg80211_wowlan *trig)
7968{
7969 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
7970 struct cfg80211_wowlan_tcp *cfg;
7971 struct nl80211_wowlan_tcp_data_token *tok = NULL;
7972 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
7973 u32 size;
7974 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
7975 int err, port;
7976
Johannes Berg964dc9e2013-06-03 17:25:34 +02007977 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007978 return -EINVAL;
7979
7980 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
7981 nla_data(attr), nla_len(attr),
7982 nl80211_wowlan_tcp_policy);
7983 if (err)
7984 return err;
7985
7986 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
7987 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
7988 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
7989 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
7990 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
7991 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
7992 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
7993 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
7994 return -EINVAL;
7995
7996 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02007997 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007998 return -EINVAL;
7999
8000 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02008001 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01008002 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008003 return -EINVAL;
8004
8005 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008006 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008007 return -EINVAL;
8008
8009 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
8010 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
8011 return -EINVAL;
8012
8013 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
8014 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8015
8016 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
8017 tokens_size = tokln - sizeof(*tok);
8018
8019 if (!tok->len || tokens_size % tok->len)
8020 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008021 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008022 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008023 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
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->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008026 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008027 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008028 return -EINVAL;
8029 if (tok->offset + tok->len > data_size)
8030 return -EINVAL;
8031 }
8032
8033 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
8034 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02008035 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01008036 return -EINVAL;
8037 if (seq->len == 0 || seq->len > 4)
8038 return -EINVAL;
8039 if (seq->len + seq->offset > data_size)
8040 return -EINVAL;
8041 }
8042
8043 size = sizeof(*cfg);
8044 size += data_size;
8045 size += wake_size + wake_mask_size;
8046 size += tokens_size;
8047
8048 cfg = kzalloc(size, GFP_KERNEL);
8049 if (!cfg)
8050 return -ENOMEM;
8051 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
8052 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
8053 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
8054 ETH_ALEN);
8055 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
8056 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
8057 else
8058 port = 0;
8059#ifdef CONFIG_INET
8060 /* allocate a socket and port for it and use it */
8061 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
8062 IPPROTO_TCP, &cfg->sock, 1);
8063 if (err) {
8064 kfree(cfg);
8065 return err;
8066 }
8067 if (inet_csk_get_port(cfg->sock->sk, port)) {
8068 sock_release(cfg->sock);
8069 kfree(cfg);
8070 return -EADDRINUSE;
8071 }
8072 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8073#else
8074 if (!port) {
8075 kfree(cfg);
8076 return -EINVAL;
8077 }
8078 cfg->src_port = port;
8079#endif
8080
8081 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8082 cfg->payload_len = data_size;
8083 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8084 memcpy((void *)cfg->payload,
8085 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8086 data_size);
8087 if (seq)
8088 cfg->payload_seq = *seq;
8089 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8090 cfg->wake_len = wake_size;
8091 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8092 memcpy((void *)cfg->wake_data,
8093 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8094 wake_size);
8095 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8096 data_size + wake_size;
8097 memcpy((void *)cfg->wake_mask,
8098 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8099 wake_mask_size);
8100 if (tok) {
8101 cfg->tokens_size = tokens_size;
8102 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8103 }
8104
8105 trig->tcp = cfg;
8106
8107 return 0;
8108}
8109
Johannes Bergff1b6e62011-05-04 15:37:28 +02008110static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8111{
8112 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8113 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008114 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008115 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008116 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008117 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008118 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008119
Johannes Berg964dc9e2013-06-03 17:25:34 +02008120 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008121 return -EOPNOTSUPP;
8122
Johannes Bergae33bd82012-07-12 16:25:02 +02008123 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8124 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008125 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008126 goto set_wakeup;
8127 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008128
8129 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8130 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8131 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8132 nl80211_wowlan_policy);
8133 if (err)
8134 return err;
8135
8136 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8137 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8138 return -EINVAL;
8139 new_triggers.any = true;
8140 }
8141
8142 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8143 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8144 return -EINVAL;
8145 new_triggers.disconnect = true;
8146 }
8147
8148 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8149 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8150 return -EINVAL;
8151 new_triggers.magic_pkt = true;
8152 }
8153
Johannes Berg77dbbb12011-07-13 10:48:55 +02008154 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8155 return -EINVAL;
8156
8157 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8158 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8159 return -EINVAL;
8160 new_triggers.gtk_rekey_failure = true;
8161 }
8162
8163 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8164 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8165 return -EINVAL;
8166 new_triggers.eap_identity_req = true;
8167 }
8168
8169 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8170 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8171 return -EINVAL;
8172 new_triggers.four_way_handshake = true;
8173 }
8174
8175 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8176 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8177 return -EINVAL;
8178 new_triggers.rfkill_release = true;
8179 }
8180
Johannes Bergff1b6e62011-05-04 15:37:28 +02008181 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8182 struct nlattr *pat;
8183 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008184 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008185 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008186
8187 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8188 rem)
8189 n_patterns++;
8190 if (n_patterns > wowlan->n_patterns)
8191 return -EINVAL;
8192
8193 new_triggers.patterns = kcalloc(n_patterns,
8194 sizeof(new_triggers.patterns[0]),
8195 GFP_KERNEL);
8196 if (!new_triggers.patterns)
8197 return -ENOMEM;
8198
8199 new_triggers.n_patterns = n_patterns;
8200 i = 0;
8201
8202 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8203 rem) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008204 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8205 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008206 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008207 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8208 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008209 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008210 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008211 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008212 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008213 goto error;
8214 if (pat_len > wowlan->pattern_max_len ||
8215 pat_len < wowlan->pattern_min_len)
8216 goto error;
8217
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008218 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008219 pkt_offset = 0;
8220 else
8221 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008222 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008223 if (pkt_offset > wowlan->max_pkt_offset)
8224 goto error;
8225 new_triggers.patterns[i].pkt_offset = pkt_offset;
8226
Johannes Bergff1b6e62011-05-04 15:37:28 +02008227 new_triggers.patterns[i].mask =
8228 kmalloc(mask_len + pat_len, GFP_KERNEL);
8229 if (!new_triggers.patterns[i].mask) {
8230 err = -ENOMEM;
8231 goto error;
8232 }
8233 new_triggers.patterns[i].pattern =
8234 new_triggers.patterns[i].mask + mask_len;
8235 memcpy(new_triggers.patterns[i].mask,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008236 nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008237 mask_len);
8238 new_triggers.patterns[i].pattern_len = pat_len;
8239 memcpy(new_triggers.patterns[i].pattern,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008240 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008241 pat_len);
8242 i++;
8243 }
8244 }
8245
Johannes Berg2a0e0472013-01-23 22:57:40 +01008246 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8247 err = nl80211_parse_wowlan_tcp(
8248 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8249 &new_triggers);
8250 if (err)
8251 goto error;
8252 }
8253
Johannes Bergae33bd82012-07-12 16:25:02 +02008254 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8255 if (!ntrig) {
8256 err = -ENOMEM;
8257 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008258 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008259 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008260 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008261
Johannes Bergae33bd82012-07-12 16:25:02 +02008262 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008263 if (rdev->ops->set_wakeup &&
8264 prev_enabled != !!rdev->wiphy.wowlan_config)
8265 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008266
Johannes Bergff1b6e62011-05-04 15:37:28 +02008267 return 0;
8268 error:
8269 for (i = 0; i < new_triggers.n_patterns; i++)
8270 kfree(new_triggers.patterns[i].mask);
8271 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008272 if (new_triggers.tcp && new_triggers.tcp->sock)
8273 sock_release(new_triggers.tcp->sock);
8274 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008275 return err;
8276}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008277#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008278
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008279static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8280 struct cfg80211_registered_device *rdev)
8281{
8282 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8283 int i, j, pat_len;
8284 struct cfg80211_coalesce_rules *rule;
8285
8286 if (!rdev->coalesce->n_rules)
8287 return 0;
8288
8289 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8290 if (!nl_rules)
8291 return -ENOBUFS;
8292
8293 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8294 nl_rule = nla_nest_start(msg, i + 1);
8295 if (!nl_rule)
8296 return -ENOBUFS;
8297
8298 rule = &rdev->coalesce->rules[i];
8299 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8300 rule->delay))
8301 return -ENOBUFS;
8302
8303 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8304 rule->condition))
8305 return -ENOBUFS;
8306
8307 nl_pats = nla_nest_start(msg,
8308 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8309 if (!nl_pats)
8310 return -ENOBUFS;
8311
8312 for (j = 0; j < rule->n_patterns; j++) {
8313 nl_pat = nla_nest_start(msg, j + 1);
8314 if (!nl_pat)
8315 return -ENOBUFS;
8316 pat_len = rule->patterns[j].pattern_len;
8317 if (nla_put(msg, NL80211_PKTPAT_MASK,
8318 DIV_ROUND_UP(pat_len, 8),
8319 rule->patterns[j].mask) ||
8320 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8321 rule->patterns[j].pattern) ||
8322 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8323 rule->patterns[j].pkt_offset))
8324 return -ENOBUFS;
8325 nla_nest_end(msg, nl_pat);
8326 }
8327 nla_nest_end(msg, nl_pats);
8328 nla_nest_end(msg, nl_rule);
8329 }
8330 nla_nest_end(msg, nl_rules);
8331
8332 return 0;
8333}
8334
8335static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8336{
8337 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8338 struct sk_buff *msg;
8339 void *hdr;
8340
8341 if (!rdev->wiphy.coalesce)
8342 return -EOPNOTSUPP;
8343
8344 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8345 if (!msg)
8346 return -ENOMEM;
8347
8348 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8349 NL80211_CMD_GET_COALESCE);
8350 if (!hdr)
8351 goto nla_put_failure;
8352
8353 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8354 goto nla_put_failure;
8355
8356 genlmsg_end(msg, hdr);
8357 return genlmsg_reply(msg, info);
8358
8359nla_put_failure:
8360 nlmsg_free(msg);
8361 return -ENOBUFS;
8362}
8363
8364void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8365{
8366 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8367 int i, j;
8368 struct cfg80211_coalesce_rules *rule;
8369
8370 if (!coalesce)
8371 return;
8372
8373 for (i = 0; i < coalesce->n_rules; i++) {
8374 rule = &coalesce->rules[i];
8375 for (j = 0; j < rule->n_patterns; j++)
8376 kfree(rule->patterns[j].mask);
8377 kfree(rule->patterns);
8378 }
8379 kfree(coalesce->rules);
8380 kfree(coalesce);
8381 rdev->coalesce = NULL;
8382}
8383
8384static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8385 struct nlattr *rule,
8386 struct cfg80211_coalesce_rules *new_rule)
8387{
8388 int err, i;
8389 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8390 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8391 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8392 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8393
8394 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8395 nla_len(rule), nl80211_coalesce_policy);
8396 if (err)
8397 return err;
8398
8399 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8400 new_rule->delay =
8401 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8402 if (new_rule->delay > coalesce->max_delay)
8403 return -EINVAL;
8404
8405 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8406 new_rule->condition =
8407 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8408 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8409 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8410 return -EINVAL;
8411
8412 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8413 return -EINVAL;
8414
8415 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8416 rem)
8417 n_patterns++;
8418 if (n_patterns > coalesce->n_patterns)
8419 return -EINVAL;
8420
8421 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8422 GFP_KERNEL);
8423 if (!new_rule->patterns)
8424 return -ENOMEM;
8425
8426 new_rule->n_patterns = n_patterns;
8427 i = 0;
8428
8429 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8430 rem) {
8431 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8432 nla_len(pat), NULL);
8433 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8434 !pat_tb[NL80211_PKTPAT_PATTERN])
8435 return -EINVAL;
8436 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8437 mask_len = DIV_ROUND_UP(pat_len, 8);
8438 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8439 return -EINVAL;
8440 if (pat_len > coalesce->pattern_max_len ||
8441 pat_len < coalesce->pattern_min_len)
8442 return -EINVAL;
8443
8444 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8445 pkt_offset = 0;
8446 else
8447 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8448 if (pkt_offset > coalesce->max_pkt_offset)
8449 return -EINVAL;
8450 new_rule->patterns[i].pkt_offset = pkt_offset;
8451
8452 new_rule->patterns[i].mask =
8453 kmalloc(mask_len + pat_len, GFP_KERNEL);
8454 if (!new_rule->patterns[i].mask)
8455 return -ENOMEM;
8456 new_rule->patterns[i].pattern =
8457 new_rule->patterns[i].mask + mask_len;
8458 memcpy(new_rule->patterns[i].mask,
8459 nla_data(pat_tb[NL80211_PKTPAT_MASK]), mask_len);
8460 new_rule->patterns[i].pattern_len = pat_len;
8461 memcpy(new_rule->patterns[i].pattern,
8462 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]), pat_len);
8463 i++;
8464 }
8465
8466 return 0;
8467}
8468
8469static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8470{
8471 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8472 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8473 struct cfg80211_coalesce new_coalesce = {};
8474 struct cfg80211_coalesce *n_coalesce;
8475 int err, rem_rule, n_rules = 0, i, j;
8476 struct nlattr *rule;
8477 struct cfg80211_coalesce_rules *tmp_rule;
8478
8479 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8480 return -EOPNOTSUPP;
8481
8482 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8483 cfg80211_rdev_free_coalesce(rdev);
8484 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8485 return 0;
8486 }
8487
8488 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8489 rem_rule)
8490 n_rules++;
8491 if (n_rules > coalesce->n_rules)
8492 return -EINVAL;
8493
8494 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8495 GFP_KERNEL);
8496 if (!new_coalesce.rules)
8497 return -ENOMEM;
8498
8499 new_coalesce.n_rules = n_rules;
8500 i = 0;
8501
8502 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8503 rem_rule) {
8504 err = nl80211_parse_coalesce_rule(rdev, rule,
8505 &new_coalesce.rules[i]);
8506 if (err)
8507 goto error;
8508
8509 i++;
8510 }
8511
8512 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8513 if (err)
8514 goto error;
8515
8516 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8517 if (!n_coalesce) {
8518 err = -ENOMEM;
8519 goto error;
8520 }
8521 cfg80211_rdev_free_coalesce(rdev);
8522 rdev->coalesce = n_coalesce;
8523
8524 return 0;
8525error:
8526 for (i = 0; i < new_coalesce.n_rules; i++) {
8527 tmp_rule = &new_coalesce.rules[i];
8528 for (j = 0; j < tmp_rule->n_patterns; j++)
8529 kfree(tmp_rule->patterns[j].mask);
8530 kfree(tmp_rule->patterns);
8531 }
8532 kfree(new_coalesce.rules);
8533
8534 return err;
8535}
8536
Johannes Berge5497d72011-07-05 16:35:40 +02008537static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8538{
8539 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8540 struct net_device *dev = info->user_ptr[1];
8541 struct wireless_dev *wdev = dev->ieee80211_ptr;
8542 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8543 struct cfg80211_gtk_rekey_data rekey_data;
8544 int err;
8545
8546 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8547 return -EINVAL;
8548
8549 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8550 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8551 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8552 nl80211_rekey_policy);
8553 if (err)
8554 return err;
8555
8556 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8557 return -ERANGE;
8558 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8559 return -ERANGE;
8560 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
8561 return -ERANGE;
8562
8563 memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]),
8564 NL80211_KEK_LEN);
8565 memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]),
8566 NL80211_KCK_LEN);
8567 memcpy(rekey_data.replay_ctr,
8568 nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]),
8569 NL80211_REPLAY_CTR_LEN);
8570
8571 wdev_lock(wdev);
8572 if (!wdev->current_bss) {
8573 err = -ENOTCONN;
8574 goto out;
8575 }
8576
8577 if (!rdev->ops->set_rekey_data) {
8578 err = -EOPNOTSUPP;
8579 goto out;
8580 }
8581
Hila Gonene35e4d22012-06-27 17:19:42 +03008582 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02008583 out:
8584 wdev_unlock(wdev);
8585 return err;
8586}
8587
Johannes Berg28946da2011-11-04 11:18:12 +01008588static int nl80211_register_unexpected_frame(struct sk_buff *skb,
8589 struct genl_info *info)
8590{
8591 struct net_device *dev = info->user_ptr[1];
8592 struct wireless_dev *wdev = dev->ieee80211_ptr;
8593
8594 if (wdev->iftype != NL80211_IFTYPE_AP &&
8595 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8596 return -EINVAL;
8597
Eric W. Biederman15e47302012-09-07 20:12:54 +00008598 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01008599 return -EBUSY;
8600
Eric W. Biederman15e47302012-09-07 20:12:54 +00008601 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01008602 return 0;
8603}
8604
Johannes Berg7f6cf312011-11-04 11:18:15 +01008605static int nl80211_probe_client(struct sk_buff *skb,
8606 struct genl_info *info)
8607{
8608 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8609 struct net_device *dev = info->user_ptr[1];
8610 struct wireless_dev *wdev = dev->ieee80211_ptr;
8611 struct sk_buff *msg;
8612 void *hdr;
8613 const u8 *addr;
8614 u64 cookie;
8615 int err;
8616
8617 if (wdev->iftype != NL80211_IFTYPE_AP &&
8618 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8619 return -EOPNOTSUPP;
8620
8621 if (!info->attrs[NL80211_ATTR_MAC])
8622 return -EINVAL;
8623
8624 if (!rdev->ops->probe_client)
8625 return -EOPNOTSUPP;
8626
8627 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8628 if (!msg)
8629 return -ENOMEM;
8630
Eric W. Biederman15e47302012-09-07 20:12:54 +00008631 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01008632 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008633 if (!hdr) {
8634 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008635 goto free_msg;
8636 }
8637
8638 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
8639
Hila Gonene35e4d22012-06-27 17:19:42 +03008640 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01008641 if (err)
8642 goto free_msg;
8643
David S. Miller9360ffd2012-03-29 04:41:26 -04008644 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
8645 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008646
8647 genlmsg_end(msg, hdr);
8648
8649 return genlmsg_reply(msg, info);
8650
8651 nla_put_failure:
8652 err = -ENOBUFS;
8653 free_msg:
8654 nlmsg_free(msg);
8655 return err;
8656}
8657
Johannes Berg5e760232011-11-04 11:18:17 +01008658static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
8659{
8660 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07008661 struct cfg80211_beacon_registration *reg, *nreg;
8662 int rv;
Johannes Berg5e760232011-11-04 11:18:17 +01008663
8664 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
8665 return -EOPNOTSUPP;
8666
Ben Greear37c73b52012-10-26 14:49:25 -07008667 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
8668 if (!nreg)
8669 return -ENOMEM;
Johannes Berg5e760232011-11-04 11:18:17 +01008670
Ben Greear37c73b52012-10-26 14:49:25 -07008671 /* First, check if already registered. */
8672 spin_lock_bh(&rdev->beacon_registrations_lock);
8673 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
8674 if (reg->nlportid == info->snd_portid) {
8675 rv = -EALREADY;
8676 goto out_err;
8677 }
8678 }
8679 /* Add it to the list */
8680 nreg->nlportid = info->snd_portid;
8681 list_add(&nreg->list, &rdev->beacon_registrations);
8682
8683 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +01008684
8685 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07008686out_err:
8687 spin_unlock_bh(&rdev->beacon_registrations_lock);
8688 kfree(nreg);
8689 return rv;
Johannes Berg5e760232011-11-04 11:18:17 +01008690}
8691
Johannes Berg98104fde2012-06-16 00:19:54 +02008692static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
8693{
8694 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8695 struct wireless_dev *wdev = info->user_ptr[1];
8696 int err;
8697
8698 if (!rdev->ops->start_p2p_device)
8699 return -EOPNOTSUPP;
8700
8701 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8702 return -EOPNOTSUPP;
8703
8704 if (wdev->p2p_started)
8705 return 0;
8706
Johannes Berg98104fde2012-06-16 00:19:54 +02008707 err = cfg80211_can_add_interface(rdev, wdev->iftype);
Johannes Berg98104fde2012-06-16 00:19:54 +02008708 if (err)
8709 return err;
8710
Johannes Bergeeb126e2012-10-23 15:16:50 +02008711 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008712 if (err)
8713 return err;
8714
8715 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02008716 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02008717
8718 return 0;
8719}
8720
8721static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
8722{
8723 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8724 struct wireless_dev *wdev = info->user_ptr[1];
8725
8726 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8727 return -EOPNOTSUPP;
8728
8729 if (!rdev->ops->stop_p2p_device)
8730 return -EOPNOTSUPP;
8731
Johannes Bergf9f47522013-03-19 15:04:07 +01008732 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008733
8734 return 0;
8735}
8736
Johannes Berg3713b4e2013-02-14 16:19:38 +01008737static int nl80211_get_protocol_features(struct sk_buff *skb,
8738 struct genl_info *info)
8739{
8740 void *hdr;
8741 struct sk_buff *msg;
8742
8743 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8744 if (!msg)
8745 return -ENOMEM;
8746
8747 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8748 NL80211_CMD_GET_PROTOCOL_FEATURES);
8749 if (!hdr)
8750 goto nla_put_failure;
8751
8752 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
8753 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
8754 goto nla_put_failure;
8755
8756 genlmsg_end(msg, hdr);
8757 return genlmsg_reply(msg, info);
8758
8759 nla_put_failure:
8760 kfree_skb(msg);
8761 return -ENOBUFS;
8762}
8763
Jouni Malinen355199e2013-02-27 17:14:27 +02008764static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
8765{
8766 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8767 struct cfg80211_update_ft_ies_params ft_params;
8768 struct net_device *dev = info->user_ptr[1];
8769
8770 if (!rdev->ops->update_ft_ies)
8771 return -EOPNOTSUPP;
8772
8773 if (!info->attrs[NL80211_ATTR_MDID] ||
8774 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
8775 return -EINVAL;
8776
8777 memset(&ft_params, 0, sizeof(ft_params));
8778 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
8779 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
8780 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
8781
8782 return rdev_update_ft_ies(rdev, dev, &ft_params);
8783}
8784
Arend van Spriel5de17982013-04-18 15:49:00 +02008785static int nl80211_crit_protocol_start(struct sk_buff *skb,
8786 struct genl_info *info)
8787{
8788 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8789 struct wireless_dev *wdev = info->user_ptr[1];
8790 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
8791 u16 duration;
8792 int ret;
8793
8794 if (!rdev->ops->crit_proto_start)
8795 return -EOPNOTSUPP;
8796
8797 if (WARN_ON(!rdev->ops->crit_proto_stop))
8798 return -EINVAL;
8799
8800 if (rdev->crit_proto_nlportid)
8801 return -EBUSY;
8802
8803 /* determine protocol if provided */
8804 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
8805 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
8806
8807 if (proto >= NUM_NL80211_CRIT_PROTO)
8808 return -EINVAL;
8809
8810 /* timeout must be provided */
8811 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
8812 return -EINVAL;
8813
8814 duration =
8815 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
8816
8817 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
8818 return -ERANGE;
8819
8820 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
8821 if (!ret)
8822 rdev->crit_proto_nlportid = info->snd_portid;
8823
8824 return ret;
8825}
8826
8827static int nl80211_crit_protocol_stop(struct sk_buff *skb,
8828 struct genl_info *info)
8829{
8830 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8831 struct wireless_dev *wdev = info->user_ptr[1];
8832
8833 if (!rdev->ops->crit_proto_stop)
8834 return -EOPNOTSUPP;
8835
8836 if (rdev->crit_proto_nlportid) {
8837 rdev->crit_proto_nlportid = 0;
8838 rdev_crit_proto_stop(rdev, wdev);
8839 }
8840 return 0;
8841}
8842
Johannes Berg4c476992010-10-04 21:36:35 +02008843#define NL80211_FLAG_NEED_WIPHY 0x01
8844#define NL80211_FLAG_NEED_NETDEV 0x02
8845#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02008846#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
8847#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
8848 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02008849#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02008850/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02008851#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
8852 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg4c476992010-10-04 21:36:35 +02008853
8854static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
8855 struct genl_info *info)
8856{
8857 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02008858 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008859 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02008860 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
8861
8862 if (rtnl)
8863 rtnl_lock();
8864
8865 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02008866 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02008867 if (IS_ERR(rdev)) {
8868 if (rtnl)
8869 rtnl_unlock();
8870 return PTR_ERR(rdev);
8871 }
8872 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02008873 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
8874 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008875 ASSERT_RTNL();
8876
Johannes Berg89a54e42012-06-15 14:33:17 +02008877 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
8878 info->attrs);
8879 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02008880 if (rtnl)
8881 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02008882 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02008883 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008884
Johannes Berg89a54e42012-06-15 14:33:17 +02008885 dev = wdev->netdev;
8886 rdev = wiphy_to_dev(wdev->wiphy);
8887
Johannes Berg1bf614e2012-06-15 15:23:36 +02008888 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
8889 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008890 if (rtnl)
8891 rtnl_unlock();
8892 return -EINVAL;
8893 }
8894
8895 info->user_ptr[1] = dev;
8896 } else {
8897 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02008898 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008899
Johannes Berg1bf614e2012-06-15 15:23:36 +02008900 if (dev) {
8901 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
8902 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008903 if (rtnl)
8904 rtnl_unlock();
8905 return -ENETDOWN;
8906 }
8907
8908 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008909 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
8910 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02008911 if (rtnl)
8912 rtnl_unlock();
8913 return -ENETDOWN;
8914 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02008915 }
8916
Johannes Berg4c476992010-10-04 21:36:35 +02008917 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008918 }
8919
8920 return 0;
8921}
8922
8923static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
8924 struct genl_info *info)
8925{
Johannes Berg1bf614e2012-06-15 15:23:36 +02008926 if (info->user_ptr[1]) {
8927 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
8928 struct wireless_dev *wdev = info->user_ptr[1];
8929
8930 if (wdev->netdev)
8931 dev_put(wdev->netdev);
8932 } else {
8933 dev_put(info->user_ptr[1]);
8934 }
8935 }
Johannes Berg4c476992010-10-04 21:36:35 +02008936 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
8937 rtnl_unlock();
8938}
8939
Johannes Berg55682962007-09-20 13:09:35 -04008940static struct genl_ops nl80211_ops[] = {
8941 {
8942 .cmd = NL80211_CMD_GET_WIPHY,
8943 .doit = nl80211_get_wiphy,
8944 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02008945 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04008946 .policy = nl80211_policy,
8947 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008948 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8949 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008950 },
8951 {
8952 .cmd = NL80211_CMD_SET_WIPHY,
8953 .doit = nl80211_set_wiphy,
8954 .policy = nl80211_policy,
8955 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008956 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008957 },
8958 {
8959 .cmd = NL80211_CMD_GET_INTERFACE,
8960 .doit = nl80211_get_interface,
8961 .dumpit = nl80211_dump_interface,
8962 .policy = nl80211_policy,
8963 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008964 .internal_flags = NL80211_FLAG_NEED_WDEV |
8965 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008966 },
8967 {
8968 .cmd = NL80211_CMD_SET_INTERFACE,
8969 .doit = nl80211_set_interface,
8970 .policy = nl80211_policy,
8971 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008972 .internal_flags = NL80211_FLAG_NEED_NETDEV |
8973 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008974 },
8975 {
8976 .cmd = NL80211_CMD_NEW_INTERFACE,
8977 .doit = nl80211_new_interface,
8978 .policy = nl80211_policy,
8979 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008980 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8981 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008982 },
8983 {
8984 .cmd = NL80211_CMD_DEL_INTERFACE,
8985 .doit = nl80211_del_interface,
8986 .policy = nl80211_policy,
8987 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02008988 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02008989 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008990 },
Johannes Berg41ade002007-12-19 02:03:29 +01008991 {
8992 .cmd = NL80211_CMD_GET_KEY,
8993 .doit = nl80211_get_key,
8994 .policy = nl80211_policy,
8995 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008996 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008997 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01008998 },
8999 {
9000 .cmd = NL80211_CMD_SET_KEY,
9001 .doit = nl80211_set_key,
9002 .policy = nl80211_policy,
9003 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009004 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009005 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009006 },
9007 {
9008 .cmd = NL80211_CMD_NEW_KEY,
9009 .doit = nl80211_new_key,
9010 .policy = nl80211_policy,
9011 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009012 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009013 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009014 },
9015 {
9016 .cmd = NL80211_CMD_DEL_KEY,
9017 .doit = nl80211_del_key,
9018 .policy = nl80211_policy,
9019 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009020 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009021 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01009022 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01009023 {
9024 .cmd = NL80211_CMD_SET_BEACON,
9025 .policy = nl80211_policy,
9026 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009027 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009028 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009029 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009030 },
9031 {
Johannes Berg88600202012-02-13 15:17:18 +01009032 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009033 .policy = nl80211_policy,
9034 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009035 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009036 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009037 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009038 },
9039 {
Johannes Berg88600202012-02-13 15:17:18 +01009040 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009041 .policy = nl80211_policy,
9042 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01009043 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009044 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009045 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01009046 },
Johannes Berg5727ef12007-12-19 02:03:34 +01009047 {
9048 .cmd = NL80211_CMD_GET_STATION,
9049 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009050 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01009051 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02009052 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9053 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009054 },
9055 {
9056 .cmd = NL80211_CMD_SET_STATION,
9057 .doit = nl80211_set_station,
9058 .policy = nl80211_policy,
9059 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009060 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009061 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009062 },
9063 {
9064 .cmd = NL80211_CMD_NEW_STATION,
9065 .doit = nl80211_new_station,
9066 .policy = nl80211_policy,
9067 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009068 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009069 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009070 },
9071 {
9072 .cmd = NL80211_CMD_DEL_STATION,
9073 .doit = nl80211_del_station,
9074 .policy = nl80211_policy,
9075 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009076 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009077 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009078 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009079 {
9080 .cmd = NL80211_CMD_GET_MPATH,
9081 .doit = nl80211_get_mpath,
9082 .dumpit = nl80211_dump_mpath,
9083 .policy = nl80211_policy,
9084 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009085 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009086 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009087 },
9088 {
9089 .cmd = NL80211_CMD_SET_MPATH,
9090 .doit = nl80211_set_mpath,
9091 .policy = nl80211_policy,
9092 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009093 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009094 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009095 },
9096 {
9097 .cmd = NL80211_CMD_NEW_MPATH,
9098 .doit = nl80211_new_mpath,
9099 .policy = nl80211_policy,
9100 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009101 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009102 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009103 },
9104 {
9105 .cmd = NL80211_CMD_DEL_MPATH,
9106 .doit = nl80211_del_mpath,
9107 .policy = nl80211_policy,
9108 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009109 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009110 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009111 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009112 {
9113 .cmd = NL80211_CMD_SET_BSS,
9114 .doit = nl80211_set_bss,
9115 .policy = nl80211_policy,
9116 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009117 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009118 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009119 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009120 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009121 .cmd = NL80211_CMD_GET_REG,
9122 .doit = nl80211_get_reg,
9123 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009124 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009125 /* can be retrieved by unprivileged users */
9126 },
9127 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009128 .cmd = NL80211_CMD_SET_REG,
9129 .doit = nl80211_set_reg,
9130 .policy = nl80211_policy,
9131 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009132 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009133 },
9134 {
9135 .cmd = NL80211_CMD_REQ_SET_REG,
9136 .doit = nl80211_req_set_reg,
9137 .policy = nl80211_policy,
9138 .flags = GENL_ADMIN_PERM,
9139 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009140 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009141 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9142 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009143 .policy = nl80211_policy,
9144 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009145 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009146 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009147 },
9148 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009149 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9150 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009151 .policy = nl80211_policy,
9152 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009153 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009154 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009155 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009156 {
Johannes Berg2a519312009-02-10 21:25:55 +01009157 .cmd = NL80211_CMD_TRIGGER_SCAN,
9158 .doit = nl80211_trigger_scan,
9159 .policy = nl80211_policy,
9160 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009161 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009162 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009163 },
9164 {
9165 .cmd = NL80211_CMD_GET_SCAN,
9166 .policy = nl80211_policy,
9167 .dumpit = nl80211_dump_scan,
9168 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009169 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009170 .cmd = NL80211_CMD_START_SCHED_SCAN,
9171 .doit = nl80211_start_sched_scan,
9172 .policy = nl80211_policy,
9173 .flags = GENL_ADMIN_PERM,
9174 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9175 NL80211_FLAG_NEED_RTNL,
9176 },
9177 {
9178 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9179 .doit = nl80211_stop_sched_scan,
9180 .policy = nl80211_policy,
9181 .flags = GENL_ADMIN_PERM,
9182 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9183 NL80211_FLAG_NEED_RTNL,
9184 },
9185 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009186 .cmd = NL80211_CMD_AUTHENTICATE,
9187 .doit = nl80211_authenticate,
9188 .policy = nl80211_policy,
9189 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009190 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009191 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009192 },
9193 {
9194 .cmd = NL80211_CMD_ASSOCIATE,
9195 .doit = nl80211_associate,
9196 .policy = nl80211_policy,
9197 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009198 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009199 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009200 },
9201 {
9202 .cmd = NL80211_CMD_DEAUTHENTICATE,
9203 .doit = nl80211_deauthenticate,
9204 .policy = nl80211_policy,
9205 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009206 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009207 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009208 },
9209 {
9210 .cmd = NL80211_CMD_DISASSOCIATE,
9211 .doit = nl80211_disassociate,
9212 .policy = nl80211_policy,
9213 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009214 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009215 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009216 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009217 {
9218 .cmd = NL80211_CMD_JOIN_IBSS,
9219 .doit = nl80211_join_ibss,
9220 .policy = nl80211_policy,
9221 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009222 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009223 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009224 },
9225 {
9226 .cmd = NL80211_CMD_LEAVE_IBSS,
9227 .doit = nl80211_leave_ibss,
9228 .policy = nl80211_policy,
9229 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009230 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009231 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009232 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009233#ifdef CONFIG_NL80211_TESTMODE
9234 {
9235 .cmd = NL80211_CMD_TESTMODE,
9236 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009237 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009238 .policy = nl80211_policy,
9239 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009240 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9241 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009242 },
9243#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009244 {
9245 .cmd = NL80211_CMD_CONNECT,
9246 .doit = nl80211_connect,
9247 .policy = nl80211_policy,
9248 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009249 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009250 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009251 },
9252 {
9253 .cmd = NL80211_CMD_DISCONNECT,
9254 .doit = nl80211_disconnect,
9255 .policy = nl80211_policy,
9256 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009257 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009258 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009259 },
Johannes Berg463d0182009-07-14 00:33:35 +02009260 {
9261 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9262 .doit = nl80211_wiphy_netns,
9263 .policy = nl80211_policy,
9264 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009265 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9266 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009267 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009268 {
9269 .cmd = NL80211_CMD_GET_SURVEY,
9270 .policy = nl80211_policy,
9271 .dumpit = nl80211_dump_survey,
9272 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009273 {
9274 .cmd = NL80211_CMD_SET_PMKSA,
9275 .doit = nl80211_setdel_pmksa,
9276 .policy = nl80211_policy,
9277 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009278 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009279 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009280 },
9281 {
9282 .cmd = NL80211_CMD_DEL_PMKSA,
9283 .doit = nl80211_setdel_pmksa,
9284 .policy = nl80211_policy,
9285 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009286 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009287 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009288 },
9289 {
9290 .cmd = NL80211_CMD_FLUSH_PMKSA,
9291 .doit = nl80211_flush_pmksa,
9292 .policy = nl80211_policy,
9293 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009294 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009295 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009296 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009297 {
9298 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9299 .doit = nl80211_remain_on_channel,
9300 .policy = nl80211_policy,
9301 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009302 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009303 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009304 },
9305 {
9306 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9307 .doit = nl80211_cancel_remain_on_channel,
9308 .policy = nl80211_policy,
9309 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009310 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009311 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009312 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009313 {
9314 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
9315 .doit = nl80211_set_tx_bitrate_mask,
9316 .policy = nl80211_policy,
9317 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009318 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9319 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009320 },
Jouni Malinen026331c2010-02-15 12:53:10 +02009321 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009322 .cmd = NL80211_CMD_REGISTER_FRAME,
9323 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009324 .policy = nl80211_policy,
9325 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009326 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009327 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009328 },
9329 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009330 .cmd = NL80211_CMD_FRAME,
9331 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009332 .policy = nl80211_policy,
9333 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009334 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009335 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009336 },
Kalle Valoffb9eb32010-02-17 17:58:10 +02009337 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009338 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
9339 .doit = nl80211_tx_mgmt_cancel_wait,
9340 .policy = nl80211_policy,
9341 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009342 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009343 NL80211_FLAG_NEED_RTNL,
9344 },
9345 {
Kalle Valoffb9eb32010-02-17 17:58:10 +02009346 .cmd = NL80211_CMD_SET_POWER_SAVE,
9347 .doit = nl80211_set_power_save,
9348 .policy = nl80211_policy,
9349 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009350 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9351 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009352 },
9353 {
9354 .cmd = NL80211_CMD_GET_POWER_SAVE,
9355 .doit = nl80211_get_power_save,
9356 .policy = nl80211_policy,
9357 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +02009358 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9359 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009360 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009361 {
9362 .cmd = NL80211_CMD_SET_CQM,
9363 .doit = nl80211_set_cqm,
9364 .policy = nl80211_policy,
9365 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009366 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9367 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009368 },
Johannes Bergf444de02010-05-05 15:25:02 +02009369 {
9370 .cmd = NL80211_CMD_SET_CHANNEL,
9371 .doit = nl80211_set_channel,
9372 .policy = nl80211_policy,
9373 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009374 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9375 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +02009376 },
Bill Jordane8347eb2010-10-01 13:54:28 -04009377 {
9378 .cmd = NL80211_CMD_SET_WDS_PEER,
9379 .doit = nl80211_set_wds_peer,
9380 .policy = nl80211_policy,
9381 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +02009382 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9383 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -04009384 },
Johannes Berg29cbe682010-12-03 09:20:44 +01009385 {
9386 .cmd = NL80211_CMD_JOIN_MESH,
9387 .doit = nl80211_join_mesh,
9388 .policy = nl80211_policy,
9389 .flags = GENL_ADMIN_PERM,
9390 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9391 NL80211_FLAG_NEED_RTNL,
9392 },
9393 {
9394 .cmd = NL80211_CMD_LEAVE_MESH,
9395 .doit = nl80211_leave_mesh,
9396 .policy = nl80211_policy,
9397 .flags = GENL_ADMIN_PERM,
9398 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9399 NL80211_FLAG_NEED_RTNL,
9400 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009401#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02009402 {
9403 .cmd = NL80211_CMD_GET_WOWLAN,
9404 .doit = nl80211_get_wowlan,
9405 .policy = nl80211_policy,
9406 /* can be retrieved by unprivileged users */
9407 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9408 NL80211_FLAG_NEED_RTNL,
9409 },
9410 {
9411 .cmd = NL80211_CMD_SET_WOWLAN,
9412 .doit = nl80211_set_wowlan,
9413 .policy = nl80211_policy,
9414 .flags = GENL_ADMIN_PERM,
9415 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9416 NL80211_FLAG_NEED_RTNL,
9417 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009418#endif
Johannes Berge5497d72011-07-05 16:35:40 +02009419 {
9420 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
9421 .doit = nl80211_set_rekey_data,
9422 .policy = nl80211_policy,
9423 .flags = GENL_ADMIN_PERM,
9424 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9425 NL80211_FLAG_NEED_RTNL,
9426 },
Arik Nemtsov109086c2011-09-28 14:12:50 +03009427 {
9428 .cmd = NL80211_CMD_TDLS_MGMT,
9429 .doit = nl80211_tdls_mgmt,
9430 .policy = nl80211_policy,
9431 .flags = GENL_ADMIN_PERM,
9432 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9433 NL80211_FLAG_NEED_RTNL,
9434 },
9435 {
9436 .cmd = NL80211_CMD_TDLS_OPER,
9437 .doit = nl80211_tdls_oper,
9438 .policy = nl80211_policy,
9439 .flags = GENL_ADMIN_PERM,
9440 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9441 NL80211_FLAG_NEED_RTNL,
9442 },
Johannes Berg28946da2011-11-04 11:18:12 +01009443 {
9444 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
9445 .doit = nl80211_register_unexpected_frame,
9446 .policy = nl80211_policy,
9447 .flags = GENL_ADMIN_PERM,
9448 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9449 NL80211_FLAG_NEED_RTNL,
9450 },
Johannes Berg7f6cf312011-11-04 11:18:15 +01009451 {
9452 .cmd = NL80211_CMD_PROBE_CLIENT,
9453 .doit = nl80211_probe_client,
9454 .policy = nl80211_policy,
9455 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009456 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +01009457 NL80211_FLAG_NEED_RTNL,
9458 },
Johannes Berg5e760232011-11-04 11:18:17 +01009459 {
9460 .cmd = NL80211_CMD_REGISTER_BEACONS,
9461 .doit = nl80211_register_beacons,
9462 .policy = nl80211_policy,
9463 .flags = GENL_ADMIN_PERM,
9464 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9465 NL80211_FLAG_NEED_RTNL,
9466 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01009467 {
9468 .cmd = NL80211_CMD_SET_NOACK_MAP,
9469 .doit = nl80211_set_noack_map,
9470 .policy = nl80211_policy,
9471 .flags = GENL_ADMIN_PERM,
9472 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9473 NL80211_FLAG_NEED_RTNL,
9474 },
Johannes Berg98104fde2012-06-16 00:19:54 +02009475 {
9476 .cmd = NL80211_CMD_START_P2P_DEVICE,
9477 .doit = nl80211_start_p2p_device,
9478 .policy = nl80211_policy,
9479 .flags = GENL_ADMIN_PERM,
9480 .internal_flags = NL80211_FLAG_NEED_WDEV |
9481 NL80211_FLAG_NEED_RTNL,
9482 },
9483 {
9484 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
9485 .doit = nl80211_stop_p2p_device,
9486 .policy = nl80211_policy,
9487 .flags = GENL_ADMIN_PERM,
9488 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9489 NL80211_FLAG_NEED_RTNL,
9490 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +01009491 {
9492 .cmd = NL80211_CMD_SET_MCAST_RATE,
9493 .doit = nl80211_set_mcast_rate,
9494 .policy = nl80211_policy,
9495 .flags = GENL_ADMIN_PERM,
9496 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9497 NL80211_FLAG_NEED_RTNL,
9498 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05309499 {
9500 .cmd = NL80211_CMD_SET_MAC_ACL,
9501 .doit = nl80211_set_mac_acl,
9502 .policy = nl80211_policy,
9503 .flags = GENL_ADMIN_PERM,
9504 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9505 NL80211_FLAG_NEED_RTNL,
9506 },
Simon Wunderlich04f39042013-02-08 18:16:19 +01009507 {
9508 .cmd = NL80211_CMD_RADAR_DETECT,
9509 .doit = nl80211_start_radar_detection,
9510 .policy = nl80211_policy,
9511 .flags = GENL_ADMIN_PERM,
9512 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9513 NL80211_FLAG_NEED_RTNL,
9514 },
Johannes Berg3713b4e2013-02-14 16:19:38 +01009515 {
9516 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
9517 .doit = nl80211_get_protocol_features,
9518 .policy = nl80211_policy,
9519 },
Jouni Malinen355199e2013-02-27 17:14:27 +02009520 {
9521 .cmd = NL80211_CMD_UPDATE_FT_IES,
9522 .doit = nl80211_update_ft_ies,
9523 .policy = nl80211_policy,
9524 .flags = GENL_ADMIN_PERM,
9525 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9526 NL80211_FLAG_NEED_RTNL,
9527 },
Arend van Spriel5de17982013-04-18 15:49:00 +02009528 {
9529 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
9530 .doit = nl80211_crit_protocol_start,
9531 .policy = nl80211_policy,
9532 .flags = GENL_ADMIN_PERM,
9533 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9534 NL80211_FLAG_NEED_RTNL,
9535 },
9536 {
9537 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
9538 .doit = nl80211_crit_protocol_stop,
9539 .policy = nl80211_policy,
9540 .flags = GENL_ADMIN_PERM,
9541 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9542 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07009543 },
9544 {
9545 .cmd = NL80211_CMD_GET_COALESCE,
9546 .doit = nl80211_get_coalesce,
9547 .policy = nl80211_policy,
9548 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9549 NL80211_FLAG_NEED_RTNL,
9550 },
9551 {
9552 .cmd = NL80211_CMD_SET_COALESCE,
9553 .doit = nl80211_set_coalesce,
9554 .policy = nl80211_policy,
9555 .flags = GENL_ADMIN_PERM,
9556 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9557 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02009558 },
9559 {
9560 .cmd = NL80211_CMD_CHANNEL_SWITCH,
9561 .doit = nl80211_channel_switch,
9562 .policy = nl80211_policy,
9563 .flags = GENL_ADMIN_PERM,
9564 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9565 NL80211_FLAG_NEED_RTNL,
9566 },
Johannes Berg55682962007-09-20 13:09:35 -04009567};
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009568
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009569static struct genl_multicast_group nl80211_mlme_mcgrp = {
9570 .name = "mlme",
9571};
Johannes Berg55682962007-09-20 13:09:35 -04009572
9573/* multicast groups */
9574static struct genl_multicast_group nl80211_config_mcgrp = {
9575 .name = "config",
9576};
Johannes Berg2a519312009-02-10 21:25:55 +01009577static struct genl_multicast_group nl80211_scan_mcgrp = {
9578 .name = "scan",
9579};
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009580static struct genl_multicast_group nl80211_regulatory_mcgrp = {
9581 .name = "regulatory",
9582};
Johannes Berg55682962007-09-20 13:09:35 -04009583
9584/* notification functions */
9585
9586void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
9587{
9588 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +02009589 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04009590
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009591 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009592 if (!msg)
9593 return;
9594
Johannes Berg86e8cf92013-06-19 10:57:22 +02009595 if (nl80211_send_wiphy(rdev, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -04009596 nlmsg_free(msg);
9597 return;
9598 }
9599
Johannes Berg463d0182009-07-14 00:33:35 +02009600 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9601 nl80211_config_mcgrp.id, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009602}
9603
Johannes Berg362a4152009-05-24 16:43:15 +02009604static int nl80211_add_scan_req(struct sk_buff *msg,
9605 struct cfg80211_registered_device *rdev)
9606{
9607 struct cfg80211_scan_request *req = rdev->scan_req;
9608 struct nlattr *nest;
9609 int i;
9610
9611 if (WARN_ON(!req))
9612 return 0;
9613
9614 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
9615 if (!nest)
9616 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009617 for (i = 0; i < req->n_ssids; i++) {
9618 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
9619 goto nla_put_failure;
9620 }
Johannes Berg362a4152009-05-24 16:43:15 +02009621 nla_nest_end(msg, nest);
9622
9623 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
9624 if (!nest)
9625 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009626 for (i = 0; i < req->n_channels; i++) {
9627 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
9628 goto nla_put_failure;
9629 }
Johannes Berg362a4152009-05-24 16:43:15 +02009630 nla_nest_end(msg, nest);
9631
David S. Miller9360ffd2012-03-29 04:41:26 -04009632 if (req->ie &&
9633 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
9634 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +02009635
Sam Lefflered4737712012-10-11 21:03:31 -07009636 if (req->flags)
9637 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags);
9638
Johannes Berg362a4152009-05-24 16:43:15 +02009639 return 0;
9640 nla_put_failure:
9641 return -ENOBUFS;
9642}
9643
Johannes Berga538e2d2009-06-16 19:56:42 +02009644static int nl80211_send_scan_msg(struct sk_buff *msg,
9645 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009646 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009647 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +02009648 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +01009649{
9650 void *hdr;
9651
Eric W. Biederman15e47302012-09-07 20:12:54 +00009652 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +01009653 if (!hdr)
9654 return -1;
9655
David S. Miller9360ffd2012-03-29 04:41:26 -04009656 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +02009657 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
9658 wdev->netdev->ifindex)) ||
9659 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
David S. Miller9360ffd2012-03-29 04:41:26 -04009660 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01009661
Johannes Berg362a4152009-05-24 16:43:15 +02009662 /* ignore errors and send incomplete event anyway */
9663 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01009664
9665 return genlmsg_end(msg, hdr);
9666
9667 nla_put_failure:
9668 genlmsg_cancel(msg, hdr);
9669 return -EMSGSIZE;
9670}
9671
Luciano Coelho807f8a82011-05-11 17:09:35 +03009672static int
9673nl80211_send_sched_scan_msg(struct sk_buff *msg,
9674 struct cfg80211_registered_device *rdev,
9675 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009676 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +03009677{
9678 void *hdr;
9679
Eric W. Biederman15e47302012-09-07 20:12:54 +00009680 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009681 if (!hdr)
9682 return -1;
9683
David S. Miller9360ffd2012-03-29 04:41:26 -04009684 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9685 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
9686 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +03009687
9688 return genlmsg_end(msg, hdr);
9689
9690 nla_put_failure:
9691 genlmsg_cancel(msg, hdr);
9692 return -EMSGSIZE;
9693}
9694
Johannes Berga538e2d2009-06-16 19:56:42 +02009695void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009696 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +02009697{
9698 struct sk_buff *msg;
9699
Thomas Graf58050fc2012-06-28 03:57:45 +00009700 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009701 if (!msg)
9702 return;
9703
Johannes Bergfd014282012-06-18 19:17:03 +02009704 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009705 NL80211_CMD_TRIGGER_SCAN) < 0) {
9706 nlmsg_free(msg);
9707 return;
9708 }
9709
Johannes Berg463d0182009-07-14 00:33:35 +02009710 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9711 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009712}
9713
Johannes Berg2a519312009-02-10 21:25:55 +01009714void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009715 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009716{
9717 struct sk_buff *msg;
9718
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009719 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009720 if (!msg)
9721 return;
9722
Johannes Bergfd014282012-06-18 19:17:03 +02009723 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009724 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009725 nlmsg_free(msg);
9726 return;
9727 }
9728
Johannes Berg463d0182009-07-14 00:33:35 +02009729 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9730 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009731}
9732
9733void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009734 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009735{
9736 struct sk_buff *msg;
9737
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009738 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009739 if (!msg)
9740 return;
9741
Johannes Bergfd014282012-06-18 19:17:03 +02009742 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009743 NL80211_CMD_SCAN_ABORTED) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009744 nlmsg_free(msg);
9745 return;
9746 }
9747
Johannes Berg463d0182009-07-14 00:33:35 +02009748 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9749 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009750}
9751
Luciano Coelho807f8a82011-05-11 17:09:35 +03009752void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
9753 struct net_device *netdev)
9754{
9755 struct sk_buff *msg;
9756
9757 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9758 if (!msg)
9759 return;
9760
9761 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
9762 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
9763 nlmsg_free(msg);
9764 return;
9765 }
9766
9767 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9768 nl80211_scan_mcgrp.id, GFP_KERNEL);
9769}
9770
9771void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
9772 struct net_device *netdev, u32 cmd)
9773{
9774 struct sk_buff *msg;
9775
Thomas Graf58050fc2012-06-28 03:57:45 +00009776 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009777 if (!msg)
9778 return;
9779
9780 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
9781 nlmsg_free(msg);
9782 return;
9783 }
9784
9785 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9786 nl80211_scan_mcgrp.id, GFP_KERNEL);
9787}
9788
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009789/*
9790 * This can happen on global regulatory changes or device specific settings
9791 * based on custom world regulatory domains.
9792 */
9793void nl80211_send_reg_change_event(struct regulatory_request *request)
9794{
9795 struct sk_buff *msg;
9796 void *hdr;
9797
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009798 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009799 if (!msg)
9800 return;
9801
9802 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
9803 if (!hdr) {
9804 nlmsg_free(msg);
9805 return;
9806 }
9807
9808 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -04009809 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
9810 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009811
David S. Miller9360ffd2012-03-29 04:41:26 -04009812 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
9813 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9814 NL80211_REGDOM_TYPE_WORLD))
9815 goto nla_put_failure;
9816 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
9817 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9818 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
9819 goto nla_put_failure;
9820 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
9821 request->intersect) {
9822 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9823 NL80211_REGDOM_TYPE_INTERSECTION))
9824 goto nla_put_failure;
9825 } else {
9826 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9827 NL80211_REGDOM_TYPE_COUNTRY) ||
9828 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
9829 request->alpha2))
9830 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009831 }
9832
Johannes Bergf4173762012-12-03 18:23:37 +01009833 if (request->wiphy_idx != WIPHY_IDX_INVALID &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009834 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
9835 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009836
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009837 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009838
Johannes Bergbc43b282009-07-25 10:54:13 +02009839 rcu_read_lock();
Johannes Berg463d0182009-07-14 00:33:35 +02009840 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
Johannes Bergbc43b282009-07-25 10:54:13 +02009841 GFP_ATOMIC);
9842 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009843
9844 return;
9845
9846nla_put_failure:
9847 genlmsg_cancel(msg, hdr);
9848 nlmsg_free(msg);
9849}
9850
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009851static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
9852 struct net_device *netdev,
9853 const u8 *buf, size_t len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009854 enum nl80211_commands cmd, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009855{
9856 struct sk_buff *msg;
9857 void *hdr;
9858
Johannes Berge6d6e342009-07-01 21:26:47 +02009859 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009860 if (!msg)
9861 return;
9862
9863 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9864 if (!hdr) {
9865 nlmsg_free(msg);
9866 return;
9867 }
9868
David S. Miller9360ffd2012-03-29 04:41:26 -04009869 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9870 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9871 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
9872 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009873
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009874 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009875
Johannes Berg463d0182009-07-14 00:33:35 +02009876 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9877 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009878 return;
9879
9880 nla_put_failure:
9881 genlmsg_cancel(msg, hdr);
9882 nlmsg_free(msg);
9883}
9884
9885void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009886 struct net_device *netdev, const u8 *buf,
9887 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009888{
9889 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009890 NL80211_CMD_AUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009891}
9892
9893void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
9894 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009895 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009896{
Johannes Berge6d6e342009-07-01 21:26:47 +02009897 nl80211_send_mlme_event(rdev, netdev, buf, len,
9898 NL80211_CMD_ASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009899}
9900
Jouni Malinen53b46b82009-03-27 20:53:56 +02009901void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009902 struct net_device *netdev, const u8 *buf,
9903 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009904{
9905 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009906 NL80211_CMD_DEAUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009907}
9908
Jouni Malinen53b46b82009-03-27 20:53:56 +02009909void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
9910 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009911 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009912{
9913 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009914 NL80211_CMD_DISASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009915}
9916
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009917void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
9918 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +02009919{
Johannes Berg947add32013-02-22 22:05:20 +01009920 struct wireless_dev *wdev = dev->ieee80211_ptr;
9921 struct wiphy *wiphy = wdev->wiphy;
9922 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009923 const struct ieee80211_mgmt *mgmt = (void *)buf;
9924 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +02009925
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009926 if (WARN_ON(len < 2))
9927 return;
9928
9929 if (ieee80211_is_deauth(mgmt->frame_control))
9930 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
9931 else
9932 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
9933
9934 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
9935 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009936}
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009937EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009938
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -04009939static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
9940 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +02009941 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009942{
9943 struct sk_buff *msg;
9944 void *hdr;
9945
Johannes Berge6d6e342009-07-01 21:26:47 +02009946 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009947 if (!msg)
9948 return;
9949
9950 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9951 if (!hdr) {
9952 nlmsg_free(msg);
9953 return;
9954 }
9955
David S. Miller9360ffd2012-03-29 04:41:26 -04009956 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9957 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9958 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
9959 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
9960 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +03009961
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009962 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +03009963
Johannes Berg463d0182009-07-14 00:33:35 +02009964 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9965 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009966 return;
9967
9968 nla_put_failure:
9969 genlmsg_cancel(msg, hdr);
9970 nlmsg_free(msg);
9971}
9972
9973void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009974 struct net_device *netdev, const u8 *addr,
9975 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009976{
9977 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +02009978 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009979}
9980
9981void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009982 struct net_device *netdev, const u8 *addr,
9983 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009984{
Johannes Berge6d6e342009-07-01 21:26:47 +02009985 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
9986 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009987}
9988
Samuel Ortizb23aa672009-07-01 21:26:54 +02009989void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
9990 struct net_device *netdev, const u8 *bssid,
9991 const u8 *req_ie, size_t req_ie_len,
9992 const u8 *resp_ie, size_t resp_ie_len,
9993 u16 status, gfp_t gfp)
9994{
9995 struct sk_buff *msg;
9996 void *hdr;
9997
Thomas Graf58050fc2012-06-28 03:57:45 +00009998 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009999 if (!msg)
10000 return;
10001
10002 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
10003 if (!hdr) {
10004 nlmsg_free(msg);
10005 return;
10006 }
10007
David S. Miller9360ffd2012-03-29 04:41:26 -040010008 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10009 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10010 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
10011 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
10012 (req_ie &&
10013 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10014 (resp_ie &&
10015 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10016 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010017
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010018 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010019
Johannes Berg463d0182009-07-14 00:33:35 +020010020 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10021 nl80211_mlme_mcgrp.id, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010022 return;
10023
10024 nla_put_failure:
10025 genlmsg_cancel(msg, hdr);
10026 nlmsg_free(msg);
10027
10028}
10029
10030void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
10031 struct net_device *netdev, const u8 *bssid,
10032 const u8 *req_ie, size_t req_ie_len,
10033 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
10034{
10035 struct sk_buff *msg;
10036 void *hdr;
10037
Thomas Graf58050fc2012-06-28 03:57:45 +000010038 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010039 if (!msg)
10040 return;
10041
10042 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
10043 if (!hdr) {
10044 nlmsg_free(msg);
10045 return;
10046 }
10047
David S. Miller9360ffd2012-03-29 04:41:26 -040010048 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10049 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10050 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
10051 (req_ie &&
10052 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
10053 (resp_ie &&
10054 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
10055 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010056
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010057 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010058
Johannes Berg463d0182009-07-14 00:33:35 +020010059 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10060 nl80211_mlme_mcgrp.id, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010061 return;
10062
10063 nla_put_failure:
10064 genlmsg_cancel(msg, hdr);
10065 nlmsg_free(msg);
10066
10067}
10068
10069void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
10070 struct net_device *netdev, u16 reason,
Johannes Berg667503d2009-07-07 03:56:11 +020010071 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020010072{
10073 struct sk_buff *msg;
10074 void *hdr;
10075
Thomas Graf58050fc2012-06-28 03:57:45 +000010076 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010077 if (!msg)
10078 return;
10079
10080 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
10081 if (!hdr) {
10082 nlmsg_free(msg);
10083 return;
10084 }
10085
David S. Miller9360ffd2012-03-29 04:41:26 -040010086 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10087 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10088 (from_ap && reason &&
10089 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
10090 (from_ap &&
10091 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
10092 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
10093 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010094
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010095 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010096
Johannes Berg463d0182009-07-14 00:33:35 +020010097 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10098 nl80211_mlme_mcgrp.id, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010099 return;
10100
10101 nla_put_failure:
10102 genlmsg_cancel(msg, hdr);
10103 nlmsg_free(msg);
10104
10105}
10106
Johannes Berg04a773a2009-04-19 21:24:32 +020010107void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
10108 struct net_device *netdev, const u8 *bssid,
10109 gfp_t gfp)
10110{
10111 struct sk_buff *msg;
10112 void *hdr;
10113
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010114 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010115 if (!msg)
10116 return;
10117
10118 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
10119 if (!hdr) {
10120 nlmsg_free(msg);
10121 return;
10122 }
10123
David S. Miller9360ffd2012-03-29 04:41:26 -040010124 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10125 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10126 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10127 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020010128
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010129 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020010130
Johannes Berg463d0182009-07-14 00:33:35 +020010131 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10132 nl80211_mlme_mcgrp.id, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010133 return;
10134
10135 nla_put_failure:
10136 genlmsg_cancel(msg, hdr);
10137 nlmsg_free(msg);
10138}
10139
Johannes Berg947add32013-02-22 22:05:20 +010010140void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
10141 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070010142{
Johannes Berg947add32013-02-22 22:05:20 +010010143 struct wireless_dev *wdev = dev->ieee80211_ptr;
10144 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010145 struct sk_buff *msg;
10146 void *hdr;
10147
Johannes Berg947add32013-02-22 22:05:20 +010010148 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
10149 return;
10150
10151 trace_cfg80211_notify_new_peer_candidate(dev, addr);
10152
Javier Cardonac93b5e72011-04-07 15:08:34 -070010153 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10154 if (!msg)
10155 return;
10156
10157 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
10158 if (!hdr) {
10159 nlmsg_free(msg);
10160 return;
10161 }
10162
David S. Miller9360ffd2012-03-29 04:41:26 -040010163 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010164 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10165 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010166 (ie_len && ie &&
10167 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
10168 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070010169
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010170 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010171
10172 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10173 nl80211_mlme_mcgrp.id, gfp);
10174 return;
10175
10176 nla_put_failure:
10177 genlmsg_cancel(msg, hdr);
10178 nlmsg_free(msg);
10179}
Johannes Berg947add32013-02-22 22:05:20 +010010180EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010181
Jouni Malinena3b8b052009-03-27 21:59:49 +020010182void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
10183 struct net_device *netdev, const u8 *addr,
10184 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020010185 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020010186{
10187 struct sk_buff *msg;
10188 void *hdr;
10189
Johannes Berge6d6e342009-07-01 21:26:47 +020010190 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010191 if (!msg)
10192 return;
10193
10194 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
10195 if (!hdr) {
10196 nlmsg_free(msg);
10197 return;
10198 }
10199
David S. Miller9360ffd2012-03-29 04:41:26 -040010200 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10201 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10202 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
10203 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
10204 (key_id != -1 &&
10205 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
10206 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
10207 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020010208
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010209 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010210
Johannes Berg463d0182009-07-14 00:33:35 +020010211 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10212 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010213 return;
10214
10215 nla_put_failure:
10216 genlmsg_cancel(msg, hdr);
10217 nlmsg_free(msg);
10218}
10219
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010220void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
10221 struct ieee80211_channel *channel_before,
10222 struct ieee80211_channel *channel_after)
10223{
10224 struct sk_buff *msg;
10225 void *hdr;
10226 struct nlattr *nl_freq;
10227
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010228 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010229 if (!msg)
10230 return;
10231
10232 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
10233 if (!hdr) {
10234 nlmsg_free(msg);
10235 return;
10236 }
10237
10238 /*
10239 * Since we are applying the beacon hint to a wiphy we know its
10240 * wiphy_idx is valid
10241 */
David S. Miller9360ffd2012-03-29 04:41:26 -040010242 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
10243 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010244
10245 /* Before */
10246 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
10247 if (!nl_freq)
10248 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010249 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010250 goto nla_put_failure;
10251 nla_nest_end(msg, nl_freq);
10252
10253 /* After */
10254 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
10255 if (!nl_freq)
10256 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010257 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010258 goto nla_put_failure;
10259 nla_nest_end(msg, nl_freq);
10260
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010261 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010262
Johannes Berg463d0182009-07-14 00:33:35 +020010263 rcu_read_lock();
10264 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
10265 GFP_ATOMIC);
10266 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010267
10268 return;
10269
10270nla_put_failure:
10271 genlmsg_cancel(msg, hdr);
10272 nlmsg_free(msg);
10273}
10274
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010275static void nl80211_send_remain_on_chan_event(
10276 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020010277 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010278 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010279 unsigned int duration, gfp_t gfp)
10280{
10281 struct sk_buff *msg;
10282 void *hdr;
10283
10284 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10285 if (!msg)
10286 return;
10287
10288 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10289 if (!hdr) {
10290 nlmsg_free(msg);
10291 return;
10292 }
10293
David S. Miller9360ffd2012-03-29 04:41:26 -040010294 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010295 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10296 wdev->netdev->ifindex)) ||
Johannes Berg00f53352012-07-17 11:53:12 +020010297 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010298 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010010299 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10300 NL80211_CHAN_NO_HT) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010301 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
10302 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010303
David S. Miller9360ffd2012-03-29 04:41:26 -040010304 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
10305 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
10306 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010307
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010308 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010309
10310 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10311 nl80211_mlme_mcgrp.id, gfp);
10312 return;
10313
10314 nla_put_failure:
10315 genlmsg_cancel(msg, hdr);
10316 nlmsg_free(msg);
10317}
10318
Johannes Berg947add32013-02-22 22:05:20 +010010319void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
10320 struct ieee80211_channel *chan,
10321 unsigned int duration, gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010322{
Johannes Berg947add32013-02-22 22:05:20 +010010323 struct wiphy *wiphy = wdev->wiphy;
10324 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10325
10326 trace_cfg80211_ready_on_channel(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010327 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020010328 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010010329 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010330}
Johannes Berg947add32013-02-22 22:05:20 +010010331EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010332
Johannes Berg947add32013-02-22 22:05:20 +010010333void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
10334 struct ieee80211_channel *chan,
10335 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010336{
Johannes Berg947add32013-02-22 22:05:20 +010010337 struct wiphy *wiphy = wdev->wiphy;
10338 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10339
10340 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010341 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010010342 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010343}
Johannes Berg947add32013-02-22 22:05:20 +010010344EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010345
Johannes Berg947add32013-02-22 22:05:20 +010010346void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
10347 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010010348{
Johannes Berg947add32013-02-22 22:05:20 +010010349 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10350 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010010351 struct sk_buff *msg;
10352
Johannes Berg947add32013-02-22 22:05:20 +010010353 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
10354
Thomas Graf58050fc2012-06-28 03:57:45 +000010355 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010010356 if (!msg)
10357 return;
10358
John W. Linville66266b32012-03-15 13:25:41 -040010359 if (nl80211_send_station(msg, 0, 0, 0,
10360 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010010361 nlmsg_free(msg);
10362 return;
10363 }
10364
10365 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10366 nl80211_mlme_mcgrp.id, gfp);
10367}
Johannes Berg947add32013-02-22 22:05:20 +010010368EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010010369
Johannes Berg947add32013-02-22 22:05:20 +010010370void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020010371{
Johannes Berg947add32013-02-22 22:05:20 +010010372 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10373 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020010374 struct sk_buff *msg;
10375 void *hdr;
10376
Johannes Berg947add32013-02-22 22:05:20 +010010377 trace_cfg80211_del_sta(dev, mac_addr);
10378
Thomas Graf58050fc2012-06-28 03:57:45 +000010379 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020010380 if (!msg)
10381 return;
10382
10383 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
10384 if (!hdr) {
10385 nlmsg_free(msg);
10386 return;
10387 }
10388
David S. Miller9360ffd2012-03-29 04:41:26 -040010389 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10390 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
10391 goto nla_put_failure;
Jouni Malinenec15e682011-03-23 15:29:52 +020010392
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010393 genlmsg_end(msg, hdr);
Jouni Malinenec15e682011-03-23 15:29:52 +020010394
10395 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10396 nl80211_mlme_mcgrp.id, gfp);
10397 return;
10398
10399 nla_put_failure:
10400 genlmsg_cancel(msg, hdr);
10401 nlmsg_free(msg);
10402}
Johannes Berg947add32013-02-22 22:05:20 +010010403EXPORT_SYMBOL(cfg80211_del_sta);
Jouni Malinenec15e682011-03-23 15:29:52 +020010404
Johannes Berg947add32013-02-22 22:05:20 +010010405void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
10406 enum nl80211_connect_failed_reason reason,
10407 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010408{
Johannes Berg947add32013-02-22 22:05:20 +010010409 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10410 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010411 struct sk_buff *msg;
10412 void *hdr;
10413
10414 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10415 if (!msg)
10416 return;
10417
10418 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
10419 if (!hdr) {
10420 nlmsg_free(msg);
10421 return;
10422 }
10423
10424 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10425 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
10426 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
10427 goto nla_put_failure;
10428
10429 genlmsg_end(msg, hdr);
10430
10431 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10432 nl80211_mlme_mcgrp.id, gfp);
10433 return;
10434
10435 nla_put_failure:
10436 genlmsg_cancel(msg, hdr);
10437 nlmsg_free(msg);
10438}
Johannes Berg947add32013-02-22 22:05:20 +010010439EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010440
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010441static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
10442 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010010443{
10444 struct wireless_dev *wdev = dev->ieee80211_ptr;
10445 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10446 struct sk_buff *msg;
10447 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000010448 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010449
Eric W. Biederman15e47302012-09-07 20:12:54 +000010450 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010010451 return false;
10452
10453 msg = nlmsg_new(100, gfp);
10454 if (!msg)
10455 return true;
10456
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010457 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010010458 if (!hdr) {
10459 nlmsg_free(msg);
10460 return true;
10461 }
10462
David S. Miller9360ffd2012-03-29 04:41:26 -040010463 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10464 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10465 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
10466 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010010467
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010468 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000010469 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010470 return true;
10471
10472 nla_put_failure:
10473 genlmsg_cancel(msg, hdr);
10474 nlmsg_free(msg);
10475 return true;
10476}
10477
Johannes Berg947add32013-02-22 22:05:20 +010010478bool cfg80211_rx_spurious_frame(struct net_device *dev,
10479 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010480{
Johannes Berg947add32013-02-22 22:05:20 +010010481 struct wireless_dev *wdev = dev->ieee80211_ptr;
10482 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010483
Johannes Berg947add32013-02-22 22:05:20 +010010484 trace_cfg80211_rx_spurious_frame(dev, addr);
10485
10486 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10487 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
10488 trace_cfg80211_return_bool(false);
10489 return false;
10490 }
10491 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
10492 addr, gfp);
10493 trace_cfg80211_return_bool(ret);
10494 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010495}
Johannes Berg947add32013-02-22 22:05:20 +010010496EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
10497
10498bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
10499 const u8 *addr, gfp_t gfp)
10500{
10501 struct wireless_dev *wdev = dev->ieee80211_ptr;
10502 bool ret;
10503
10504 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
10505
10506 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10507 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
10508 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
10509 trace_cfg80211_return_bool(false);
10510 return false;
10511 }
10512 ret = __nl80211_unexpected_frame(dev,
10513 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
10514 addr, gfp);
10515 trace_cfg80211_return_bool(ret);
10516 return ret;
10517}
10518EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010519
Johannes Berg2e161f72010-08-12 15:38:38 +020010520int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010521 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010010522 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010523 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010524{
Johannes Berg71bbc992012-06-15 15:30:18 +020010525 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010526 struct sk_buff *msg;
10527 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020010528
10529 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10530 if (!msg)
10531 return -ENOMEM;
10532
Johannes Berg2e161f72010-08-12 15:38:38 +020010533 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020010534 if (!hdr) {
10535 nlmsg_free(msg);
10536 return -ENOMEM;
10537 }
10538
David S. Miller9360ffd2012-03-29 04:41:26 -040010539 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010540 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10541 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010542 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010543 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
10544 (sig_dbm &&
10545 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010546 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10547 (flags &&
10548 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040010549 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010550
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010551 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010552
Eric W. Biederman15e47302012-09-07 20:12:54 +000010553 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020010554
10555 nla_put_failure:
10556 genlmsg_cancel(msg, hdr);
10557 nlmsg_free(msg);
10558 return -ENOBUFS;
10559}
10560
Johannes Berg947add32013-02-22 22:05:20 +010010561void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
10562 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010563{
Johannes Berg947add32013-02-22 22:05:20 +010010564 struct wiphy *wiphy = wdev->wiphy;
10565 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020010566 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010567 struct sk_buff *msg;
10568 void *hdr;
10569
Johannes Berg947add32013-02-22 22:05:20 +010010570 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
10571
Jouni Malinen026331c2010-02-15 12:53:10 +020010572 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10573 if (!msg)
10574 return;
10575
Johannes Berg2e161f72010-08-12 15:38:38 +020010576 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020010577 if (!hdr) {
10578 nlmsg_free(msg);
10579 return;
10580 }
10581
David S. Miller9360ffd2012-03-29 04:41:26 -040010582 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010583 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10584 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010585 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010586 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10587 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
10588 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
10589 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010590
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010591 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010592
Michal Kaziora0ec5702013-06-25 09:17:17 +020010593 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10594 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020010595 return;
10596
10597 nla_put_failure:
10598 genlmsg_cancel(msg, hdr);
10599 nlmsg_free(msg);
10600}
Johannes Berg947add32013-02-22 22:05:20 +010010601EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020010602
Johannes Berg947add32013-02-22 22:05:20 +010010603void cfg80211_cqm_rssi_notify(struct net_device *dev,
10604 enum nl80211_cqm_rssi_threshold_event rssi_event,
10605 gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010606{
Johannes Berg947add32013-02-22 22:05:20 +010010607 struct wireless_dev *wdev = dev->ieee80211_ptr;
10608 struct wiphy *wiphy = wdev->wiphy;
10609 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010610 struct sk_buff *msg;
10611 struct nlattr *pinfoattr;
10612 void *hdr;
10613
Johannes Berg947add32013-02-22 22:05:20 +010010614 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
10615
Thomas Graf58050fc2012-06-28 03:57:45 +000010616 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010617 if (!msg)
10618 return;
10619
10620 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10621 if (!hdr) {
10622 nlmsg_free(msg);
10623 return;
10624 }
10625
David S. Miller9360ffd2012-03-29 04:41:26 -040010626 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010627 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040010628 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010629
10630 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10631 if (!pinfoattr)
10632 goto nla_put_failure;
10633
David S. Miller9360ffd2012-03-29 04:41:26 -040010634 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
10635 rssi_event))
10636 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010637
10638 nla_nest_end(msg, pinfoattr);
10639
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010640 genlmsg_end(msg, hdr);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010641
10642 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10643 nl80211_mlme_mcgrp.id, gfp);
10644 return;
10645
10646 nla_put_failure:
10647 genlmsg_cancel(msg, hdr);
10648 nlmsg_free(msg);
10649}
Johannes Berg947add32013-02-22 22:05:20 +010010650EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010651
Johannes Berg947add32013-02-22 22:05:20 +010010652static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
10653 struct net_device *netdev, const u8 *bssid,
10654 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020010655{
10656 struct sk_buff *msg;
10657 struct nlattr *rekey_attr;
10658 void *hdr;
10659
Thomas Graf58050fc2012-06-28 03:57:45 +000010660 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020010661 if (!msg)
10662 return;
10663
10664 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10665 if (!hdr) {
10666 nlmsg_free(msg);
10667 return;
10668 }
10669
David S. Miller9360ffd2012-03-29 04:41:26 -040010670 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10671 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10672 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10673 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010674
10675 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10676 if (!rekey_attr)
10677 goto nla_put_failure;
10678
David S. Miller9360ffd2012-03-29 04:41:26 -040010679 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
10680 NL80211_REPLAY_CTR_LEN, replay_ctr))
10681 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010682
10683 nla_nest_end(msg, rekey_attr);
10684
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010685 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020010686
10687 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10688 nl80211_mlme_mcgrp.id, gfp);
10689 return;
10690
10691 nla_put_failure:
10692 genlmsg_cancel(msg, hdr);
10693 nlmsg_free(msg);
10694}
10695
Johannes Berg947add32013-02-22 22:05:20 +010010696void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
10697 const u8 *replay_ctr, gfp_t gfp)
10698{
10699 struct wireless_dev *wdev = dev->ieee80211_ptr;
10700 struct wiphy *wiphy = wdev->wiphy;
10701 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10702
10703 trace_cfg80211_gtk_rekey_notify(dev, bssid);
10704 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
10705}
10706EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
10707
10708static void
10709nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
10710 struct net_device *netdev, int index,
10711 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010712{
10713 struct sk_buff *msg;
10714 struct nlattr *attr;
10715 void *hdr;
10716
Thomas Graf58050fc2012-06-28 03:57:45 +000010717 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010718 if (!msg)
10719 return;
10720
10721 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
10722 if (!hdr) {
10723 nlmsg_free(msg);
10724 return;
10725 }
10726
David S. Miller9360ffd2012-03-29 04:41:26 -040010727 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10728 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10729 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010730
10731 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
10732 if (!attr)
10733 goto nla_put_failure;
10734
David S. Miller9360ffd2012-03-29 04:41:26 -040010735 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
10736 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
10737 (preauth &&
10738 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
10739 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010740
10741 nla_nest_end(msg, attr);
10742
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010743 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010744
10745 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10746 nl80211_mlme_mcgrp.id, gfp);
10747 return;
10748
10749 nla_put_failure:
10750 genlmsg_cancel(msg, hdr);
10751 nlmsg_free(msg);
10752}
10753
Johannes Berg947add32013-02-22 22:05:20 +010010754void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
10755 const u8 *bssid, bool preauth, gfp_t gfp)
10756{
10757 struct wireless_dev *wdev = dev->ieee80211_ptr;
10758 struct wiphy *wiphy = wdev->wiphy;
10759 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10760
10761 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
10762 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
10763}
10764EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
10765
10766static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
10767 struct net_device *netdev,
10768 struct cfg80211_chan_def *chandef,
10769 gfp_t gfp)
Thomas Pedersen53145262012-04-06 13:35:47 -070010770{
10771 struct sk_buff *msg;
10772 void *hdr;
10773
Thomas Graf58050fc2012-06-28 03:57:45 +000010774 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070010775 if (!msg)
10776 return;
10777
10778 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
10779 if (!hdr) {
10780 nlmsg_free(msg);
10781 return;
10782 }
10783
Johannes Berg683b6d32012-11-08 21:25:48 +010010784 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10785 goto nla_put_failure;
10786
10787 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040010788 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070010789
10790 genlmsg_end(msg, hdr);
10791
10792 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10793 nl80211_mlme_mcgrp.id, gfp);
10794 return;
10795
10796 nla_put_failure:
10797 genlmsg_cancel(msg, hdr);
10798 nlmsg_free(msg);
10799}
10800
Johannes Berg947add32013-02-22 22:05:20 +010010801void cfg80211_ch_switch_notify(struct net_device *dev,
10802 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070010803{
Johannes Berg947add32013-02-22 22:05:20 +010010804 struct wireless_dev *wdev = dev->ieee80211_ptr;
10805 struct wiphy *wiphy = wdev->wiphy;
10806 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10807
10808 trace_cfg80211_ch_switch_notify(dev, chandef);
10809
10810 wdev_lock(wdev);
10811
10812 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
Simon Wunderlichee4bc9e2013-08-28 13:41:33 +020010813 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -070010814 wdev->iftype != NL80211_IFTYPE_ADHOC &&
10815 wdev->iftype != NL80211_IFTYPE_MESH_POINT))
Johannes Berg947add32013-02-22 22:05:20 +010010816 goto out;
10817
10818 wdev->channel = chandef->chan;
10819 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
10820out:
10821 wdev_unlock(wdev);
10822 return;
10823}
10824EXPORT_SYMBOL(cfg80211_ch_switch_notify);
10825
10826void cfg80211_cqm_txe_notify(struct net_device *dev,
10827 const u8 *peer, u32 num_packets,
10828 u32 rate, u32 intvl, gfp_t gfp)
10829{
10830 struct wireless_dev *wdev = dev->ieee80211_ptr;
10831 struct wiphy *wiphy = wdev->wiphy;
10832 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010833 struct sk_buff *msg;
10834 struct nlattr *pinfoattr;
10835 void *hdr;
10836
10837 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10838 if (!msg)
10839 return;
10840
10841 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10842 if (!hdr) {
10843 nlmsg_free(msg);
10844 return;
10845 }
10846
10847 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010848 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070010849 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10850 goto nla_put_failure;
10851
10852 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10853 if (!pinfoattr)
10854 goto nla_put_failure;
10855
10856 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
10857 goto nla_put_failure;
10858
10859 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
10860 goto nla_put_failure;
10861
10862 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
10863 goto nla_put_failure;
10864
10865 nla_nest_end(msg, pinfoattr);
10866
10867 genlmsg_end(msg, hdr);
10868
10869 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10870 nl80211_mlme_mcgrp.id, gfp);
10871 return;
10872
10873 nla_put_failure:
10874 genlmsg_cancel(msg, hdr);
10875 nlmsg_free(msg);
10876}
Johannes Berg947add32013-02-22 22:05:20 +010010877EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010878
10879void
Simon Wunderlich04f39042013-02-08 18:16:19 +010010880nl80211_radar_notify(struct cfg80211_registered_device *rdev,
10881 struct cfg80211_chan_def *chandef,
10882 enum nl80211_radar_event event,
10883 struct net_device *netdev, gfp_t gfp)
10884{
10885 struct sk_buff *msg;
10886 void *hdr;
10887
10888 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10889 if (!msg)
10890 return;
10891
10892 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
10893 if (!hdr) {
10894 nlmsg_free(msg);
10895 return;
10896 }
10897
10898 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
10899 goto nla_put_failure;
10900
10901 /* NOP and radar events don't need a netdev parameter */
10902 if (netdev) {
10903 struct wireless_dev *wdev = netdev->ieee80211_ptr;
10904
10905 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10906 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
10907 goto nla_put_failure;
10908 }
10909
10910 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
10911 goto nla_put_failure;
10912
10913 if (nl80211_send_chandef(msg, chandef))
10914 goto nla_put_failure;
10915
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010916 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010010917
10918 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10919 nl80211_mlme_mcgrp.id, gfp);
10920 return;
10921
10922 nla_put_failure:
10923 genlmsg_cancel(msg, hdr);
10924 nlmsg_free(msg);
10925}
10926
Johannes Berg947add32013-02-22 22:05:20 +010010927void cfg80211_cqm_pktloss_notify(struct net_device *dev,
10928 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010010929{
Johannes Berg947add32013-02-22 22:05:20 +010010930 struct wireless_dev *wdev = dev->ieee80211_ptr;
10931 struct wiphy *wiphy = wdev->wiphy;
10932 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010933 struct sk_buff *msg;
10934 struct nlattr *pinfoattr;
10935 void *hdr;
10936
Johannes Berg947add32013-02-22 22:05:20 +010010937 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
10938
Thomas Graf58050fc2012-06-28 03:57:45 +000010939 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010940 if (!msg)
10941 return;
10942
10943 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10944 if (!hdr) {
10945 nlmsg_free(msg);
10946 return;
10947 }
10948
David S. Miller9360ffd2012-03-29 04:41:26 -040010949 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010950 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010951 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10952 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010953
10954 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10955 if (!pinfoattr)
10956 goto nla_put_failure;
10957
David S. Miller9360ffd2012-03-29 04:41:26 -040010958 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
10959 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010960
10961 nla_nest_end(msg, pinfoattr);
10962
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010963 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010964
10965 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10966 nl80211_mlme_mcgrp.id, gfp);
10967 return;
10968
10969 nla_put_failure:
10970 genlmsg_cancel(msg, hdr);
10971 nlmsg_free(msg);
10972}
Johannes Berg947add32013-02-22 22:05:20 +010010973EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010974
Johannes Berg7f6cf312011-11-04 11:18:15 +010010975void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
10976 u64 cookie, bool acked, gfp_t gfp)
10977{
10978 struct wireless_dev *wdev = dev->ieee80211_ptr;
10979 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10980 struct sk_buff *msg;
10981 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010982
Beni Lev4ee3e062012-08-27 12:49:39 +030010983 trace_cfg80211_probe_status(dev, addr, cookie, acked);
10984
Thomas Graf58050fc2012-06-28 03:57:45 +000010985 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030010986
Johannes Berg7f6cf312011-11-04 11:18:15 +010010987 if (!msg)
10988 return;
10989
10990 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
10991 if (!hdr) {
10992 nlmsg_free(msg);
10993 return;
10994 }
10995
David S. Miller9360ffd2012-03-29 04:41:26 -040010996 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10997 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10998 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
10999 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
11000 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
11001 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010011002
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011003 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010011004
11005 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11006 nl80211_mlme_mcgrp.id, gfp);
11007 return;
11008
11009 nla_put_failure:
11010 genlmsg_cancel(msg, hdr);
11011 nlmsg_free(msg);
11012}
11013EXPORT_SYMBOL(cfg80211_probe_status);
11014
Johannes Berg5e760232011-11-04 11:18:17 +010011015void cfg80211_report_obss_beacon(struct wiphy *wiphy,
11016 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070011017 int freq, int sig_dbm)
Johannes Berg5e760232011-11-04 11:18:17 +010011018{
11019 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11020 struct sk_buff *msg;
11021 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070011022 struct cfg80211_beacon_registration *reg;
Johannes Berg5e760232011-11-04 11:18:17 +010011023
Beni Lev4ee3e062012-08-27 12:49:39 +030011024 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
11025
Ben Greear37c73b52012-10-26 14:49:25 -070011026 spin_lock_bh(&rdev->beacon_registrations_lock);
11027 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
11028 msg = nlmsg_new(len + 100, GFP_ATOMIC);
11029 if (!msg) {
11030 spin_unlock_bh(&rdev->beacon_registrations_lock);
11031 return;
11032 }
Johannes Berg5e760232011-11-04 11:18:17 +010011033
Ben Greear37c73b52012-10-26 14:49:25 -070011034 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
11035 if (!hdr)
11036 goto nla_put_failure;
Johannes Berg5e760232011-11-04 11:18:17 +010011037
Ben Greear37c73b52012-10-26 14:49:25 -070011038 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11039 (freq &&
11040 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
11041 (sig_dbm &&
11042 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
11043 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
11044 goto nla_put_failure;
11045
11046 genlmsg_end(msg, hdr);
11047
11048 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e760232011-11-04 11:18:17 +010011049 }
Ben Greear37c73b52012-10-26 14:49:25 -070011050 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +010011051 return;
11052
11053 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070011054 spin_unlock_bh(&rdev->beacon_registrations_lock);
11055 if (hdr)
11056 genlmsg_cancel(msg, hdr);
Johannes Berg5e760232011-11-04 11:18:17 +010011057 nlmsg_free(msg);
11058}
11059EXPORT_SYMBOL(cfg80211_report_obss_beacon);
11060
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011061#ifdef CONFIG_PM
11062void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
11063 struct cfg80211_wowlan_wakeup *wakeup,
11064 gfp_t gfp)
11065{
11066 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11067 struct sk_buff *msg;
11068 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011069 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011070
11071 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11072
11073 if (wakeup)
11074 size += wakeup->packet_present_len;
11075
11076 msg = nlmsg_new(size, gfp);
11077 if (!msg)
11078 return;
11079
11080 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11081 if (!hdr)
11082 goto free_msg;
11083
11084 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11085 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11086 goto free_msg;
11087
11088 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11089 wdev->netdev->ifindex))
11090 goto free_msg;
11091
11092 if (wakeup) {
11093 struct nlattr *reasons;
11094
11095 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
11096
11097 if (wakeup->disconnect &&
11098 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11099 goto free_msg;
11100 if (wakeup->magic_pkt &&
11101 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11102 goto free_msg;
11103 if (wakeup->gtk_rekey_failure &&
11104 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11105 goto free_msg;
11106 if (wakeup->eap_identity_req &&
11107 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11108 goto free_msg;
11109 if (wakeup->four_way_handshake &&
11110 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11111 goto free_msg;
11112 if (wakeup->rfkill_release &&
11113 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11114 goto free_msg;
11115
11116 if (wakeup->pattern_idx >= 0 &&
11117 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11118 wakeup->pattern_idx))
11119 goto free_msg;
11120
Johannes Berg2a0e0472013-01-23 22:57:40 +010011121 if (wakeup->tcp_match)
11122 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH);
11123
11124 if (wakeup->tcp_connlost)
11125 nla_put_flag(msg,
11126 NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST);
11127
11128 if (wakeup->tcp_nomoretokens)
11129 nla_put_flag(msg,
11130 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS);
11131
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011132 if (wakeup->packet) {
11133 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11134 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11135
11136 if (!wakeup->packet_80211) {
11137 pkt_attr =
11138 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11139 len_attr =
11140 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11141 }
11142
11143 if (wakeup->packet_len &&
11144 nla_put_u32(msg, len_attr, wakeup->packet_len))
11145 goto free_msg;
11146
11147 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11148 wakeup->packet))
11149 goto free_msg;
11150 }
11151
11152 nla_nest_end(msg, reasons);
11153 }
11154
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011155 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011156
11157 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11158 nl80211_mlme_mcgrp.id, gfp);
11159 return;
11160
11161 free_msg:
11162 nlmsg_free(msg);
11163}
11164EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11165#endif
11166
Jouni Malinen3475b092012-11-16 22:49:57 +020011167void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11168 enum nl80211_tdls_operation oper,
11169 u16 reason_code, gfp_t gfp)
11170{
11171 struct wireless_dev *wdev = dev->ieee80211_ptr;
11172 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11173 struct sk_buff *msg;
11174 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011175
11176 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11177 reason_code);
11178
11179 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11180 if (!msg)
11181 return;
11182
11183 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11184 if (!hdr) {
11185 nlmsg_free(msg);
11186 return;
11187 }
11188
11189 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11190 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11191 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11192 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11193 (reason_code > 0 &&
11194 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11195 goto nla_put_failure;
11196
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011197 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011198
11199 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11200 nl80211_mlme_mcgrp.id, gfp);
11201 return;
11202
11203 nla_put_failure:
11204 genlmsg_cancel(msg, hdr);
11205 nlmsg_free(msg);
11206}
11207EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11208
Jouni Malinen026331c2010-02-15 12:53:10 +020011209static int nl80211_netlink_notify(struct notifier_block * nb,
11210 unsigned long state,
11211 void *_notify)
11212{
11213 struct netlink_notify *notify = _notify;
11214 struct cfg80211_registered_device *rdev;
11215 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011216 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011217
11218 if (state != NETLINK_URELEASE)
11219 return NOTIFY_DONE;
11220
11221 rcu_read_lock();
11222
Johannes Berg5e760232011-11-04 11:18:17 +010011223 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +020011224 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
Eric W. Biederman15e47302012-09-07 20:12:54 +000011225 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011226
11227 spin_lock_bh(&rdev->beacon_registrations_lock);
11228 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11229 list) {
11230 if (reg->nlportid == notify->portid) {
11231 list_del(&reg->list);
11232 kfree(reg);
11233 break;
11234 }
11235 }
11236 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e760232011-11-04 11:18:17 +010011237 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011238
11239 rcu_read_unlock();
11240
11241 return NOTIFY_DONE;
11242}
11243
11244static struct notifier_block nl80211_netlink_notifier = {
11245 .notifier_call = nl80211_netlink_notify,
11246};
11247
Jouni Malinen355199e2013-02-27 17:14:27 +020011248void cfg80211_ft_event(struct net_device *netdev,
11249 struct cfg80211_ft_event_params *ft_event)
11250{
11251 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
11252 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11253 struct sk_buff *msg;
11254 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020011255
11256 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
11257
11258 if (!ft_event->target_ap)
11259 return;
11260
11261 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11262 if (!msg)
11263 return;
11264
11265 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
11266 if (!hdr) {
11267 nlmsg_free(msg);
11268 return;
11269 }
11270
11271 nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
11272 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
11273 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap);
11274 if (ft_event->ies)
11275 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies);
11276 if (ft_event->ric_ies)
11277 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
11278 ft_event->ric_ies);
11279
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011280 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020011281
11282 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11283 nl80211_mlme_mcgrp.id, GFP_KERNEL);
11284}
11285EXPORT_SYMBOL(cfg80211_ft_event);
11286
Arend van Spriel5de17982013-04-18 15:49:00 +020011287void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
11288{
11289 struct cfg80211_registered_device *rdev;
11290 struct sk_buff *msg;
11291 void *hdr;
11292 u32 nlportid;
11293
11294 rdev = wiphy_to_dev(wdev->wiphy);
11295 if (!rdev->crit_proto_nlportid)
11296 return;
11297
11298 nlportid = rdev->crit_proto_nlportid;
11299 rdev->crit_proto_nlportid = 0;
11300
11301 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11302 if (!msg)
11303 return;
11304
11305 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
11306 if (!hdr)
11307 goto nla_put_failure;
11308
11309 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11310 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11311 goto nla_put_failure;
11312
11313 genlmsg_end(msg, hdr);
11314
11315 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
11316 return;
11317
11318 nla_put_failure:
11319 if (hdr)
11320 genlmsg_cancel(msg, hdr);
11321 nlmsg_free(msg);
11322
11323}
11324EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
11325
Johannes Berg55682962007-09-20 13:09:35 -040011326/* initialisation/exit functions */
11327
11328int nl80211_init(void)
11329{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011330 int err;
Johannes Berg55682962007-09-20 13:09:35 -040011331
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011332 err = genl_register_family_with_ops(&nl80211_fam,
11333 nl80211_ops, ARRAY_SIZE(nl80211_ops));
Johannes Berg55682962007-09-20 13:09:35 -040011334 if (err)
11335 return err;
11336
Johannes Berg55682962007-09-20 13:09:35 -040011337 err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
11338 if (err)
11339 goto err_out;
11340
Johannes Berg2a519312009-02-10 21:25:55 +010011341 err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
11342 if (err)
11343 goto err_out;
11344
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040011345 err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
11346 if (err)
11347 goto err_out;
11348
Jouni Malinen6039f6d2009-03-19 13:39:21 +020011349 err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
11350 if (err)
11351 goto err_out;
11352
Johannes Bergaff89a92009-07-01 21:26:51 +020011353#ifdef CONFIG_NL80211_TESTMODE
11354 err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp);
11355 if (err)
11356 goto err_out;
11357#endif
11358
Jouni Malinen026331c2010-02-15 12:53:10 +020011359 err = netlink_register_notifier(&nl80211_netlink_notifier);
11360 if (err)
11361 goto err_out;
11362
Johannes Berg55682962007-09-20 13:09:35 -040011363 return 0;
11364 err_out:
11365 genl_unregister_family(&nl80211_fam);
11366 return err;
11367}
11368
11369void nl80211_exit(void)
11370{
Jouni Malinen026331c2010-02-15 12:53:10 +020011371 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040011372 genl_unregister_family(&nl80211_fam);
11373}