blob: af8d84a4a5b2a05fab2de732722e6535c8e699d0 [file] [log] [blame]
Johannes Berg55682962007-09-20 13:09:35 -04001/*
2 * This is the new netlink-based wireless configuration interface.
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg55682962007-09-20 13:09:35 -04005 */
6
7#include <linux/if.h>
8#include <linux/module.h>
9#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Johannes Berg55682962007-09-20 13:09:35 -040011#include <linux/list.h>
12#include <linux/if_ether.h>
13#include <linux/ieee80211.h>
14#include <linux/nl80211.h>
15#include <linux/rtnetlink.h>
16#include <linux/netlink.h>
Johannes Berg2a519312009-02-10 21:25:55 +010017#include <linux/etherdevice.h>
Johannes Berg463d0182009-07-14 00:33:35 +020018#include <net/net_namespace.h>
Johannes Berg55682962007-09-20 13:09:35 -040019#include <net/genetlink.h>
20#include <net/cfg80211.h>
Johannes Berg463d0182009-07-14 00:33:35 +020021#include <net/sock.h>
Johannes Berg2a0e0472013-01-23 22:57:40 +010022#include <net/inet_connection_sock.h>
Johannes Berg55682962007-09-20 13:09:35 -040023#include "core.h"
24#include "nl80211.h"
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -070025#include "reg.h"
Hila Gonene35e4d22012-06-27 17:19:42 +030026#include "rdev-ops.h"
Johannes Berg55682962007-09-20 13:09:35 -040027
Jouni Malinen5fb628e2011-08-10 23:54:35 +030028static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
29 struct genl_info *info,
30 struct cfg80211_crypto_settings *settings,
31 int cipher_limit);
32
Johannes Berg4c476992010-10-04 21:36:35 +020033static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
34 struct genl_info *info);
35static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
36 struct genl_info *info);
37
Johannes Berg55682962007-09-20 13:09:35 -040038/* the netlink family */
39static struct genl_family nl80211_fam = {
Marcel Holtmannfb4e1562013-04-28 16:22:06 -070040 .id = GENL_ID_GENERATE, /* don't bother with a hardcoded ID */
41 .name = NL80211_GENL_NAME, /* have users key off the name instead */
42 .hdrsize = 0, /* no private header */
43 .version = 1, /* no particular meaning now */
Johannes Berg55682962007-09-20 13:09:35 -040044 .maxattr = NL80211_ATTR_MAX,
Johannes Berg463d0182009-07-14 00:33:35 +020045 .netnsok = true,
Johannes Berg4c476992010-10-04 21:36:35 +020046 .pre_doit = nl80211_pre_doit,
47 .post_doit = nl80211_post_doit,
Johannes Berg55682962007-09-20 13:09:35 -040048};
49
Johannes Berg89a54e42012-06-15 14:33:17 +020050/* returns ERR_PTR values */
51static struct wireless_dev *
52__cfg80211_wdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berg55682962007-09-20 13:09:35 -040053{
Johannes Berg89a54e42012-06-15 14:33:17 +020054 struct cfg80211_registered_device *rdev;
55 struct wireless_dev *result = NULL;
56 bool have_ifidx = attrs[NL80211_ATTR_IFINDEX];
57 bool have_wdev_id = attrs[NL80211_ATTR_WDEV];
58 u64 wdev_id;
59 int wiphy_idx = -1;
60 int ifidx = -1;
Johannes Berg55682962007-09-20 13:09:35 -040061
Johannes Berg5fe231e2013-05-08 21:45:15 +020062 ASSERT_RTNL();
Johannes Berg55682962007-09-20 13:09:35 -040063
Johannes Berg89a54e42012-06-15 14:33:17 +020064 if (!have_ifidx && !have_wdev_id)
65 return ERR_PTR(-EINVAL);
Johannes Berg55682962007-09-20 13:09:35 -040066
Johannes Berg89a54e42012-06-15 14:33:17 +020067 if (have_ifidx)
68 ifidx = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
69 if (have_wdev_id) {
70 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
71 wiphy_idx = wdev_id >> 32;
Johannes Berg55682962007-09-20 13:09:35 -040072 }
73
Johannes Berg89a54e42012-06-15 14:33:17 +020074 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
75 struct wireless_dev *wdev;
76
77 if (wiphy_net(&rdev->wiphy) != netns)
78 continue;
79
80 if (have_wdev_id && rdev->wiphy_idx != wiphy_idx)
81 continue;
82
Johannes Berg89a54e42012-06-15 14:33:17 +020083 list_for_each_entry(wdev, &rdev->wdev_list, list) {
84 if (have_ifidx && wdev->netdev &&
85 wdev->netdev->ifindex == ifidx) {
86 result = wdev;
87 break;
88 }
89 if (have_wdev_id && wdev->identifier == (u32)wdev_id) {
90 result = wdev;
91 break;
92 }
93 }
Johannes Berg89a54e42012-06-15 14:33:17 +020094
95 if (result)
96 break;
97 }
98
99 if (result)
100 return result;
101 return ERR_PTR(-ENODEV);
Johannes Berg55682962007-09-20 13:09:35 -0400102}
103
Johannes Berga9455402012-06-15 13:32:49 +0200104static struct cfg80211_registered_device *
Johannes Berg878d9ec2012-06-15 14:18:32 +0200105__cfg80211_rdev_from_attrs(struct net *netns, struct nlattr **attrs)
Johannes Berga9455402012-06-15 13:32:49 +0200106{
Johannes Berg7fee4772012-06-15 14:09:58 +0200107 struct cfg80211_registered_device *rdev = NULL, *tmp;
108 struct net_device *netdev;
Johannes Berga9455402012-06-15 13:32:49 +0200109
Johannes Berg5fe231e2013-05-08 21:45:15 +0200110 ASSERT_RTNL();
Johannes Berga9455402012-06-15 13:32:49 +0200111
Johannes Berg878d9ec2012-06-15 14:18:32 +0200112 if (!attrs[NL80211_ATTR_WIPHY] &&
Johannes Berg89a54e42012-06-15 14:33:17 +0200113 !attrs[NL80211_ATTR_IFINDEX] &&
114 !attrs[NL80211_ATTR_WDEV])
Johannes Berg7fee4772012-06-15 14:09:58 +0200115 return ERR_PTR(-EINVAL);
116
Johannes Berg878d9ec2012-06-15 14:18:32 +0200117 if (attrs[NL80211_ATTR_WIPHY])
Johannes Berg7fee4772012-06-15 14:09:58 +0200118 rdev = cfg80211_rdev_by_wiphy_idx(
Johannes Berg878d9ec2012-06-15 14:18:32 +0200119 nla_get_u32(attrs[NL80211_ATTR_WIPHY]));
Johannes Berga9455402012-06-15 13:32:49 +0200120
Johannes Berg89a54e42012-06-15 14:33:17 +0200121 if (attrs[NL80211_ATTR_WDEV]) {
122 u64 wdev_id = nla_get_u64(attrs[NL80211_ATTR_WDEV]);
123 struct wireless_dev *wdev;
124 bool found = false;
125
126 tmp = cfg80211_rdev_by_wiphy_idx(wdev_id >> 32);
127 if (tmp) {
128 /* make sure wdev exists */
Johannes Berg89a54e42012-06-15 14:33:17 +0200129 list_for_each_entry(wdev, &tmp->wdev_list, list) {
130 if (wdev->identifier != (u32)wdev_id)
131 continue;
132 found = true;
133 break;
134 }
Johannes Berg89a54e42012-06-15 14:33:17 +0200135
136 if (!found)
137 tmp = NULL;
138
139 if (rdev && tmp != rdev)
140 return ERR_PTR(-EINVAL);
141 rdev = tmp;
142 }
143 }
144
Johannes Berg878d9ec2012-06-15 14:18:32 +0200145 if (attrs[NL80211_ATTR_IFINDEX]) {
146 int ifindex = nla_get_u32(attrs[NL80211_ATTR_IFINDEX]);
Johannes Berg4f7eff12012-06-15 14:14:22 +0200147 netdev = dev_get_by_index(netns, ifindex);
Johannes Berg7fee4772012-06-15 14:09:58 +0200148 if (netdev) {
149 if (netdev->ieee80211_ptr)
150 tmp = wiphy_to_dev(
151 netdev->ieee80211_ptr->wiphy);
152 else
153 tmp = NULL;
154
155 dev_put(netdev);
156
157 /* not wireless device -- return error */
158 if (!tmp)
159 return ERR_PTR(-EINVAL);
160
161 /* mismatch -- return error */
162 if (rdev && tmp != rdev)
163 return ERR_PTR(-EINVAL);
164
165 rdev = tmp;
Johannes Berga9455402012-06-15 13:32:49 +0200166 }
Johannes Berga9455402012-06-15 13:32:49 +0200167 }
168
Johannes Berg4f7eff12012-06-15 14:14:22 +0200169 if (!rdev)
170 return ERR_PTR(-ENODEV);
Johannes Berga9455402012-06-15 13:32:49 +0200171
Johannes Berg4f7eff12012-06-15 14:14:22 +0200172 if (netns != wiphy_net(&rdev->wiphy))
173 return ERR_PTR(-ENODEV);
174
175 return rdev;
Johannes Berga9455402012-06-15 13:32:49 +0200176}
177
178/*
179 * This function returns a pointer to the driver
180 * that the genl_info item that is passed refers to.
Johannes Berga9455402012-06-15 13:32:49 +0200181 *
182 * The result of this can be a PTR_ERR and hence must
183 * be checked with IS_ERR() for errors.
184 */
185static struct cfg80211_registered_device *
Johannes Berg4f7eff12012-06-15 14:14:22 +0200186cfg80211_get_dev_from_info(struct net *netns, struct genl_info *info)
Johannes Berga9455402012-06-15 13:32:49 +0200187{
Johannes Berg5fe231e2013-05-08 21:45:15 +0200188 return __cfg80211_rdev_from_attrs(netns, info->attrs);
Johannes Berga9455402012-06-15 13:32:49 +0200189}
190
Johannes Berg55682962007-09-20 13:09:35 -0400191/* policy for the attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000192static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
Johannes Berg55682962007-09-20 13:09:35 -0400193 [NL80211_ATTR_WIPHY] = { .type = NLA_U32 },
194 [NL80211_ATTR_WIPHY_NAME] = { .type = NLA_NUL_STRING,
David S. Miller079e24e2009-05-26 21:15:00 -0700195 .len = 20-1 },
Jouni Malinen31888482008-10-30 16:59:24 +0200196 [NL80211_ATTR_WIPHY_TXQ_PARAMS] = { .type = NLA_NESTED },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100197
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200198 [NL80211_ATTR_WIPHY_FREQ] = { .type = NLA_U32 },
Sujith094d05d2008-12-12 11:57:43 +0530199 [NL80211_ATTR_WIPHY_CHANNEL_TYPE] = { .type = NLA_U32 },
Johannes Berg3d9d1d62012-11-08 23:14:50 +0100200 [NL80211_ATTR_CHANNEL_WIDTH] = { .type = NLA_U32 },
201 [NL80211_ATTR_CENTER_FREQ1] = { .type = NLA_U32 },
202 [NL80211_ATTR_CENTER_FREQ2] = { .type = NLA_U32 },
203
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200204 [NL80211_ATTR_WIPHY_RETRY_SHORT] = { .type = NLA_U8 },
205 [NL80211_ATTR_WIPHY_RETRY_LONG] = { .type = NLA_U8 },
206 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD] = { .type = NLA_U32 },
207 [NL80211_ATTR_WIPHY_RTS_THRESHOLD] = { .type = NLA_U32 },
Lukáš Turek81077e82009-12-21 22:50:47 +0100208 [NL80211_ATTR_WIPHY_COVERAGE_CLASS] = { .type = NLA_U8 },
Johannes Berg55682962007-09-20 13:09:35 -0400209
210 [NL80211_ATTR_IFTYPE] = { .type = NLA_U32 },
211 [NL80211_ATTR_IFINDEX] = { .type = NLA_U32 },
212 [NL80211_ATTR_IFNAME] = { .type = NLA_NUL_STRING, .len = IFNAMSIZ-1 },
Johannes Berg41ade002007-12-19 02:03:29 +0100213
Eliad Pellere007b852011-11-24 18:13:56 +0200214 [NL80211_ATTR_MAC] = { .len = ETH_ALEN },
215 [NL80211_ATTR_PREV_BSSID] = { .len = ETH_ALEN },
Johannes Berg41ade002007-12-19 02:03:29 +0100216
Johannes Bergb9454e82009-07-08 13:29:08 +0200217 [NL80211_ATTR_KEY] = { .type = NLA_NESTED, },
Johannes Berg41ade002007-12-19 02:03:29 +0100218 [NL80211_ATTR_KEY_DATA] = { .type = NLA_BINARY,
219 .len = WLAN_MAX_KEY_LEN },
220 [NL80211_ATTR_KEY_IDX] = { .type = NLA_U8 },
221 [NL80211_ATTR_KEY_CIPHER] = { .type = NLA_U32 },
222 [NL80211_ATTR_KEY_DEFAULT] = { .type = NLA_FLAG },
Jouni Malinen81962262011-11-02 23:36:31 +0200223 [NL80211_ATTR_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Berge31b8212010-10-05 19:39:30 +0200224 [NL80211_ATTR_KEY_TYPE] = { .type = NLA_U32 },
Johannes Berged1b6cc2007-12-19 02:03:32 +0100225
226 [NL80211_ATTR_BEACON_INTERVAL] = { .type = NLA_U32 },
227 [NL80211_ATTR_DTIM_PERIOD] = { .type = NLA_U32 },
228 [NL80211_ATTR_BEACON_HEAD] = { .type = NLA_BINARY,
229 .len = IEEE80211_MAX_DATA_LEN },
230 [NL80211_ATTR_BEACON_TAIL] = { .type = NLA_BINARY,
231 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg5727ef12007-12-19 02:03:34 +0100232 [NL80211_ATTR_STA_AID] = { .type = NLA_U16 },
233 [NL80211_ATTR_STA_FLAGS] = { .type = NLA_NESTED },
234 [NL80211_ATTR_STA_LISTEN_INTERVAL] = { .type = NLA_U16 },
235 [NL80211_ATTR_STA_SUPPORTED_RATES] = { .type = NLA_BINARY,
236 .len = NL80211_MAX_SUPP_RATES },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100237 [NL80211_ATTR_STA_PLINK_ACTION] = { .type = NLA_U8 },
Johannes Berg5727ef12007-12-19 02:03:34 +0100238 [NL80211_ATTR_STA_VLAN] = { .type = NLA_U32 },
Johannes Berg0a9542e2008-10-15 11:54:04 +0200239 [NL80211_ATTR_MNTR_FLAGS] = { /* NLA_NESTED can't be empty */ },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100240 [NL80211_ATTR_MESH_ID] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +0800241 .len = IEEE80211_MAX_MESH_ID_LEN },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100242 [NL80211_ATTR_MPATH_NEXT_HOP] = { .type = NLA_U32 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300243
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -0700244 [NL80211_ATTR_REG_ALPHA2] = { .type = NLA_STRING, .len = 2 },
245 [NL80211_ATTR_REG_RULES] = { .type = NLA_NESTED },
246
Jouni Malinen9f1ba902008-08-07 20:07:01 +0300247 [NL80211_ATTR_BSS_CTS_PROT] = { .type = NLA_U8 },
248 [NL80211_ATTR_BSS_SHORT_PREAMBLE] = { .type = NLA_U8 },
249 [NL80211_ATTR_BSS_SHORT_SLOT_TIME] = { .type = NLA_U8 },
Jouni Malinen90c97a02008-10-30 16:59:22 +0200250 [NL80211_ATTR_BSS_BASIC_RATES] = { .type = NLA_BINARY,
251 .len = NL80211_MAX_SUPP_RATES },
Helmut Schaa50b12f52010-11-19 12:40:25 +0100252 [NL80211_ATTR_BSS_HT_OPMODE] = { .type = NLA_U16 },
Jouni Malinen36aedc902008-08-25 11:58:58 +0300253
Javier Cardona24bdd9f2010-12-16 17:37:48 -0800254 [NL80211_ATTR_MESH_CONFIG] = { .type = NLA_NESTED },
Javier Cardona15d5dda2011-04-07 15:08:28 -0700255 [NL80211_ATTR_SUPPORT_MESH_AUTH] = { .type = NLA_FLAG },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -0700256
Johannes Berg6c739412011-11-03 09:27:01 +0100257 [NL80211_ATTR_HT_CAPABILITY] = { .len = NL80211_HT_CAPABILITY_LEN },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +0200258
259 [NL80211_ATTR_MGMT_SUBTYPE] = { .type = NLA_U8 },
260 [NL80211_ATTR_IE] = { .type = NLA_BINARY,
261 .len = IEEE80211_MAX_DATA_LEN },
Johannes Berg2a519312009-02-10 21:25:55 +0100262 [NL80211_ATTR_SCAN_FREQUENCIES] = { .type = NLA_NESTED },
263 [NL80211_ATTR_SCAN_SSIDS] = { .type = NLA_NESTED },
Jouni Malinen636a5d32009-03-19 13:39:22 +0200264
265 [NL80211_ATTR_SSID] = { .type = NLA_BINARY,
266 .len = IEEE80211_MAX_SSID_LEN },
267 [NL80211_ATTR_AUTH_TYPE] = { .type = NLA_U32 },
268 [NL80211_ATTR_REASON_CODE] = { .type = NLA_U16 },
Johannes Berg04a773a2009-04-19 21:24:32 +0200269 [NL80211_ATTR_FREQ_FIXED] = { .type = NLA_FLAG },
Jouni Malinen1965c852009-04-22 21:38:25 +0300270 [NL80211_ATTR_TIMED_OUT] = { .type = NLA_FLAG },
Jouni Malinendc6382c2009-05-06 22:09:37 +0300271 [NL80211_ATTR_USE_MFP] = { .type = NLA_U32 },
Johannes Bergeccb8e82009-05-11 21:57:56 +0300272 [NL80211_ATTR_STA_FLAGS2] = {
273 .len = sizeof(struct nl80211_sta_flag_update),
274 },
Jouni Malinen3f77316c2009-05-11 21:57:57 +0300275 [NL80211_ATTR_CONTROL_PORT] = { .type = NLA_FLAG },
Johannes Bergc0692b82010-08-27 14:26:53 +0300276 [NL80211_ATTR_CONTROL_PORT_ETHERTYPE] = { .type = NLA_U16 },
277 [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT] = { .type = NLA_FLAG },
Samuel Ortizb23aa672009-07-01 21:26:54 +0200278 [NL80211_ATTR_PRIVACY] = { .type = NLA_FLAG },
279 [NL80211_ATTR_CIPHER_SUITE_GROUP] = { .type = NLA_U32 },
280 [NL80211_ATTR_WPA_VERSIONS] = { .type = NLA_U32 },
Johannes Berg463d0182009-07-14 00:33:35 +0200281 [NL80211_ATTR_PID] = { .type = NLA_U32 },
Felix Fietkau8b787642009-11-10 18:53:10 +0100282 [NL80211_ATTR_4ADDR] = { .type = NLA_U8 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +0100283 [NL80211_ATTR_PMKID] = { .type = NLA_BINARY,
284 .len = WLAN_PMKID_LEN },
Jouni Malinen9588bbd2009-12-23 13:15:41 +0100285 [NL80211_ATTR_DURATION] = { .type = NLA_U32 },
286 [NL80211_ATTR_COOKIE] = { .type = NLA_U64 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +0200287 [NL80211_ATTR_TX_RATES] = { .type = NLA_NESTED },
Jouni Malinen026331c2010-02-15 12:53:10 +0200288 [NL80211_ATTR_FRAME] = { .type = NLA_BINARY,
289 .len = IEEE80211_MAX_DATA_LEN },
290 [NL80211_ATTR_FRAME_MATCH] = { .type = NLA_BINARY, },
Kalle Valoffb9eb32010-02-17 17:58:10 +0200291 [NL80211_ATTR_PS_STATE] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +0200292 [NL80211_ATTR_CQM] = { .type = NLA_NESTED, },
Jouni Malinend5cdfac2010-04-04 09:37:19 +0300293 [NL80211_ATTR_LOCAL_STATE_CHANGE] = { .type = NLA_FLAG },
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +0200294 [NL80211_ATTR_AP_ISOLATE] = { .type = NLA_U8 },
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +0300295 [NL80211_ATTR_WIPHY_TX_POWER_SETTING] = { .type = NLA_U32 },
296 [NL80211_ATTR_WIPHY_TX_POWER_LEVEL] = { .type = NLA_U32 },
Johannes Berg2e161f72010-08-12 15:38:38 +0200297 [NL80211_ATTR_FRAME_TYPE] = { .type = NLA_U16 },
Bruno Randolfafe0cbf2010-11-10 12:50:50 +0900298 [NL80211_ATTR_WIPHY_ANTENNA_TX] = { .type = NLA_U32 },
299 [NL80211_ATTR_WIPHY_ANTENNA_RX] = { .type = NLA_U32 },
Felix Fietkau885a46d2010-11-11 15:07:22 +0100300 [NL80211_ATTR_MCAST_RATE] = { .type = NLA_U32 },
Johannes Bergf7ca38d2010-11-25 10:02:29 +0100301 [NL80211_ATTR_OFFCHANNEL_TX_OK] = { .type = NLA_FLAG },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100302 [NL80211_ATTR_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200303 [NL80211_ATTR_WOWLAN_TRIGGERS] = { .type = NLA_NESTED },
Javier Cardona9c3990a2011-05-03 16:57:11 -0700304 [NL80211_ATTR_STA_PLINK_STATE] = { .type = NLA_U8 },
Luciano Coelhobbe6ad62011-05-11 17:09:37 +0300305 [NL80211_ATTR_SCHED_SCAN_INTERVAL] = { .type = NLA_U32 },
Johannes Berge5497d72011-07-05 16:35:40 +0200306 [NL80211_ATTR_REKEY_DATA] = { .type = NLA_NESTED },
Johannes Berg34850ab2011-07-18 18:08:35 +0200307 [NL80211_ATTR_SCAN_SUPP_RATES] = { .type = NLA_NESTED },
Jouni Malinen32e9de82011-08-10 23:53:31 +0300308 [NL80211_ATTR_HIDDEN_SSID] = { .type = NLA_U32 },
Jouni Malinen9946ecf2011-08-10 23:55:56 +0300309 [NL80211_ATTR_IE_PROBE_RESP] = { .type = NLA_BINARY,
310 .len = IEEE80211_MAX_DATA_LEN },
311 [NL80211_ATTR_IE_ASSOC_RESP] = { .type = NLA_BINARY,
312 .len = IEEE80211_MAX_DATA_LEN },
Vivek Natarajanf4b34b52011-08-29 14:23:03 +0530313 [NL80211_ATTR_ROAM_SUPPORT] = { .type = NLA_FLAG },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300314 [NL80211_ATTR_SCHED_SCAN_MATCH] = { .type = NLA_NESTED },
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +0530315 [NL80211_ATTR_TX_NO_CCK_RATE] = { .type = NLA_FLAG },
Arik Nemtsov109086c2011-09-28 14:12:50 +0300316 [NL80211_ATTR_TDLS_ACTION] = { .type = NLA_U8 },
317 [NL80211_ATTR_TDLS_DIALOG_TOKEN] = { .type = NLA_U8 },
318 [NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
319 [NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
320 [NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
Johannes Berge247bd902011-11-04 11:18:21 +0100321 [NL80211_ATTR_DONT_WAIT_FOR_ACK] = { .type = NLA_FLAG },
Arik Nemtsov00f740e2011-11-10 11:28:56 +0200322 [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
323 .len = IEEE80211_MAX_DATA_LEN },
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -0700324 [NL80211_ATTR_DFS_REGION] = { .type = NLA_U8 },
Ben Greear7e7c8922011-11-18 11:31:59 -0800325 [NL80211_ATTR_DISABLE_HT] = { .type = NLA_FLAG },
326 [NL80211_ATTR_HT_CAPABILITY_MASK] = {
327 .len = NL80211_HT_CAPABILITY_LEN
328 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +0100329 [NL80211_ATTR_NOACK_MAP] = { .type = NLA_U16 },
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +0530330 [NL80211_ATTR_INACTIVITY_TIMEOUT] = { .type = NLA_U16 },
Bala Shanmugam4486ea92012-03-07 17:27:12 +0530331 [NL80211_ATTR_BG_SCAN_PERIOD] = { .type = NLA_U16 },
Johannes Berg89a54e42012-06-15 14:33:17 +0200332 [NL80211_ATTR_WDEV] = { .type = NLA_U64 },
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -0700333 [NL80211_ATTR_USER_REG_HINT_TYPE] = { .type = NLA_U32 },
Jouni Malinene39e5b52012-09-30 19:29:39 +0300334 [NL80211_ATTR_SAE_DATA] = { .type = NLA_BINARY, },
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +0000335 [NL80211_ATTR_VHT_CAPABILITY] = { .len = NL80211_VHT_CAPABILITY_LEN },
Sam Lefflered4737712012-10-11 21:03:31 -0700336 [NL80211_ATTR_SCAN_FLAGS] = { .type = NLA_U32 },
Johannes Berg53cabad2012-11-14 15:17:28 +0100337 [NL80211_ATTR_P2P_CTWINDOW] = { .type = NLA_U8 },
338 [NL80211_ATTR_P2P_OPPPS] = { .type = NLA_U8 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +0530339 [NL80211_ATTR_ACL_POLICY] = {. type = NLA_U32 },
340 [NL80211_ATTR_MAC_ADDRS] = { .type = NLA_NESTED },
Jouni Malinen9d62a982013-02-14 21:10:13 +0200341 [NL80211_ATTR_STA_CAPABILITY] = { .type = NLA_U16 },
342 [NL80211_ATTR_STA_EXT_CAPABILITY] = { .type = NLA_BINARY, },
Johannes Berg3713b4e2013-02-14 16:19:38 +0100343 [NL80211_ATTR_SPLIT_WIPHY_DUMP] = { .type = NLA_FLAG, },
Johannes Bergee2aca32013-02-21 17:36:01 +0100344 [NL80211_ATTR_DISABLE_VHT] = { .type = NLA_FLAG },
345 [NL80211_ATTR_VHT_CAPABILITY_MASK] = {
346 .len = NL80211_VHT_CAPABILITY_LEN,
347 },
Jouni Malinen355199e2013-02-27 17:14:27 +0200348 [NL80211_ATTR_MDID] = { .type = NLA_U16 },
349 [NL80211_ATTR_IE_RIC] = { .type = NLA_BINARY,
350 .len = IEEE80211_MAX_DATA_LEN },
Jouni Malinen5e4b6f52013-05-16 20:11:08 +0300351 [NL80211_ATTR_PEER_AID] = { .type = NLA_U16 },
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +0200352 [NL80211_ATTR_CH_SWITCH_COUNT] = { .type = NLA_U32 },
353 [NL80211_ATTR_CH_SWITCH_BLOCK_TX] = { .type = NLA_FLAG },
354 [NL80211_ATTR_CSA_IES] = { .type = NLA_NESTED },
355 [NL80211_ATTR_CSA_C_OFF_BEACON] = { .type = NLA_U16 },
356 [NL80211_ATTR_CSA_C_OFF_PRESP] = { .type = NLA_U16 },
Johannes Berg55682962007-09-20 13:09:35 -0400357};
358
Johannes Berge31b8212010-10-05 19:39:30 +0200359/* policy for the key attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000360static const struct nla_policy nl80211_key_policy[NL80211_KEY_MAX + 1] = {
Johannes Bergfffd0932009-07-08 14:22:54 +0200361 [NL80211_KEY_DATA] = { .type = NLA_BINARY, .len = WLAN_MAX_KEY_LEN },
Johannes Bergb9454e82009-07-08 13:29:08 +0200362 [NL80211_KEY_IDX] = { .type = NLA_U8 },
363 [NL80211_KEY_CIPHER] = { .type = NLA_U32 },
Jouni Malinen81962262011-11-02 23:36:31 +0200364 [NL80211_KEY_SEQ] = { .type = NLA_BINARY, .len = 16 },
Johannes Bergb9454e82009-07-08 13:29:08 +0200365 [NL80211_KEY_DEFAULT] = { .type = NLA_FLAG },
366 [NL80211_KEY_DEFAULT_MGMT] = { .type = NLA_FLAG },
Johannes Berge31b8212010-10-05 19:39:30 +0200367 [NL80211_KEY_TYPE] = { .type = NLA_U32 },
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100368 [NL80211_KEY_DEFAULT_TYPES] = { .type = NLA_NESTED },
369};
370
371/* policy for the key default flags */
372static const struct nla_policy
373nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = {
374 [NL80211_KEY_DEFAULT_TYPE_UNICAST] = { .type = NLA_FLAG },
375 [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG },
Johannes Bergb9454e82009-07-08 13:29:08 +0200376};
377
Johannes Bergff1b6e62011-05-04 15:37:28 +0200378/* policy for WoWLAN attributes */
379static const struct nla_policy
380nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = {
381 [NL80211_WOWLAN_TRIG_ANY] = { .type = NLA_FLAG },
382 [NL80211_WOWLAN_TRIG_DISCONNECT] = { .type = NLA_FLAG },
383 [NL80211_WOWLAN_TRIG_MAGIC_PKT] = { .type = NLA_FLAG },
384 [NL80211_WOWLAN_TRIG_PKT_PATTERN] = { .type = NLA_NESTED },
Johannes Berg77dbbb12011-07-13 10:48:55 +0200385 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE] = { .type = NLA_FLAG },
386 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST] = { .type = NLA_FLAG },
387 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE] = { .type = NLA_FLAG },
388 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE] = { .type = NLA_FLAG },
Johannes Berg2a0e0472013-01-23 22:57:40 +0100389 [NL80211_WOWLAN_TRIG_TCP_CONNECTION] = { .type = NLA_NESTED },
390};
391
392static const struct nla_policy
393nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = {
394 [NL80211_WOWLAN_TCP_SRC_IPV4] = { .type = NLA_U32 },
395 [NL80211_WOWLAN_TCP_DST_IPV4] = { .type = NLA_U32 },
396 [NL80211_WOWLAN_TCP_DST_MAC] = { .len = ETH_ALEN },
397 [NL80211_WOWLAN_TCP_SRC_PORT] = { .type = NLA_U16 },
398 [NL80211_WOWLAN_TCP_DST_PORT] = { .type = NLA_U16 },
399 [NL80211_WOWLAN_TCP_DATA_PAYLOAD] = { .len = 1 },
400 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ] = {
401 .len = sizeof(struct nl80211_wowlan_tcp_data_seq)
402 },
403 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN] = {
404 .len = sizeof(struct nl80211_wowlan_tcp_data_token)
405 },
406 [NL80211_WOWLAN_TCP_DATA_INTERVAL] = { .type = NLA_U32 },
407 [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 },
408 [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 },
Johannes Bergff1b6e62011-05-04 15:37:28 +0200409};
410
Amitkumar Karwarbe29b992013-06-28 11:51:26 -0700411/* policy for coalesce rule attributes */
412static const struct nla_policy
413nl80211_coalesce_policy[NUM_NL80211_ATTR_COALESCE_RULE] = {
414 [NL80211_ATTR_COALESCE_RULE_DELAY] = { .type = NLA_U32 },
415 [NL80211_ATTR_COALESCE_RULE_CONDITION] = { .type = NLA_U32 },
416 [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN] = { .type = NLA_NESTED },
417};
418
Johannes Berge5497d72011-07-05 16:35:40 +0200419/* policy for GTK rekey offload attributes */
420static const struct nla_policy
421nl80211_rekey_policy[NUM_NL80211_REKEY_DATA] = {
422 [NL80211_REKEY_DATA_KEK] = { .len = NL80211_KEK_LEN },
423 [NL80211_REKEY_DATA_KCK] = { .len = NL80211_KCK_LEN },
424 [NL80211_REKEY_DATA_REPLAY_CTR] = { .len = NL80211_REPLAY_CTR_LEN },
425};
426
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300427static const struct nla_policy
428nl80211_match_policy[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1] = {
Johannes Berg4a4ab0d2012-06-13 11:17:11 +0200429 [NL80211_SCHED_SCAN_MATCH_ATTR_SSID] = { .type = NLA_BINARY,
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300430 .len = IEEE80211_MAX_SSID_LEN },
Thomas Pedersen88e920b2012-06-21 11:09:54 -0700431 [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI] = { .type = NLA_U32 },
Luciano Coelhoa1f1c212011-08-31 16:01:48 +0300432};
433
Johannes Berg97990a02013-04-19 01:02:55 +0200434static int nl80211_prepare_wdev_dump(struct sk_buff *skb,
435 struct netlink_callback *cb,
436 struct cfg80211_registered_device **rdev,
437 struct wireless_dev **wdev)
Holger Schuriga0438972009-11-11 11:30:02 +0100438{
Johannes Berg67748892010-10-04 21:14:06 +0200439 int err;
440
Johannes Berg67748892010-10-04 21:14:06 +0200441 rtnl_lock();
442
Johannes Berg97990a02013-04-19 01:02:55 +0200443 if (!cb->args[0]) {
444 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
445 nl80211_fam.attrbuf, nl80211_fam.maxattr,
446 nl80211_policy);
447 if (err)
448 goto out_unlock;
449
450 *wdev = __cfg80211_wdev_from_attrs(sock_net(skb->sk),
451 nl80211_fam.attrbuf);
452 if (IS_ERR(*wdev)) {
453 err = PTR_ERR(*wdev);
454 goto out_unlock;
455 }
456 *rdev = wiphy_to_dev((*wdev)->wiphy);
Johannes Bergc319d502013-07-30 22:34:28 +0200457 /* 0 is the first index - add 1 to parse only once */
458 cb->args[0] = (*rdev)->wiphy_idx + 1;
Johannes Berg97990a02013-04-19 01:02:55 +0200459 cb->args[1] = (*wdev)->identifier;
460 } else {
Johannes Bergc319d502013-07-30 22:34:28 +0200461 /* subtract the 1 again here */
462 struct wiphy *wiphy = wiphy_idx_to_wiphy(cb->args[0] - 1);
Johannes Berg97990a02013-04-19 01:02:55 +0200463 struct wireless_dev *tmp;
464
465 if (!wiphy) {
466 err = -ENODEV;
467 goto out_unlock;
468 }
469 *rdev = wiphy_to_dev(wiphy);
470 *wdev = NULL;
471
Johannes Berg97990a02013-04-19 01:02:55 +0200472 list_for_each_entry(tmp, &(*rdev)->wdev_list, list) {
473 if (tmp->identifier == cb->args[1]) {
474 *wdev = tmp;
475 break;
476 }
477 }
Johannes Berg97990a02013-04-19 01:02:55 +0200478
479 if (!*wdev) {
480 err = -ENODEV;
481 goto out_unlock;
482 }
Johannes Berg67748892010-10-04 21:14:06 +0200483 }
484
Johannes Berg67748892010-10-04 21:14:06 +0200485 return 0;
Johannes Berg97990a02013-04-19 01:02:55 +0200486 out_unlock:
Johannes Berg67748892010-10-04 21:14:06 +0200487 rtnl_unlock();
488 return err;
489}
490
Johannes Berg97990a02013-04-19 01:02:55 +0200491static void nl80211_finish_wdev_dump(struct cfg80211_registered_device *rdev)
Johannes Berg67748892010-10-04 21:14:06 +0200492{
Johannes Berg67748892010-10-04 21:14:06 +0200493 rtnl_unlock();
494}
495
Johannes Bergf4a11bb2009-03-27 12:40:28 +0100496/* IE validation */
497static bool is_valid_ie_attr(const struct nlattr *attr)
498{
499 const u8 *pos;
500 int len;
501
502 if (!attr)
503 return true;
504
505 pos = nla_data(attr);
506 len = nla_len(attr);
507
508 while (len) {
509 u8 elemlen;
510
511 if (len < 2)
512 return false;
513 len -= 2;
514
515 elemlen = pos[1];
516 if (elemlen > len)
517 return false;
518
519 len -= elemlen;
520 pos += 2 + elemlen;
521 }
522
523 return true;
524}
525
Johannes Berg55682962007-09-20 13:09:35 -0400526/* message building helper */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000527static inline void *nl80211hdr_put(struct sk_buff *skb, u32 portid, u32 seq,
Johannes Berg55682962007-09-20 13:09:35 -0400528 int flags, u8 cmd)
529{
530 /* since there is no private header just add the generic one */
Eric W. Biederman15e47302012-09-07 20:12:54 +0000531 return genlmsg_put(skb, portid, seq, &nl80211_fam, flags, cmd);
Johannes Berg55682962007-09-20 13:09:35 -0400532}
533
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400534static int nl80211_msg_put_channel(struct sk_buff *msg,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100535 struct ieee80211_channel *chan,
536 bool large)
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400537{
David S. Miller9360ffd2012-03-29 04:41:26 -0400538 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_FREQ,
539 chan->center_freq))
540 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400541
David S. Miller9360ffd2012-03-29 04:41:26 -0400542 if ((chan->flags & IEEE80211_CHAN_DISABLED) &&
543 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_DISABLED))
544 goto nla_put_failure;
545 if ((chan->flags & IEEE80211_CHAN_PASSIVE_SCAN) &&
546 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_PASSIVE_SCAN))
547 goto nla_put_failure;
548 if ((chan->flags & IEEE80211_CHAN_NO_IBSS) &&
549 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_IBSS))
550 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100551 if (chan->flags & IEEE80211_CHAN_RADAR) {
552 if (nla_put_flag(msg, NL80211_FREQUENCY_ATTR_RADAR))
553 goto nla_put_failure;
554 if (large) {
555 u32 time;
556
557 time = elapsed_jiffies_msecs(chan->dfs_state_entered);
558
559 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_STATE,
560 chan->dfs_state))
561 goto nla_put_failure;
562 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_DFS_TIME,
563 time))
564 goto nla_put_failure;
565 }
566 }
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400567
Johannes Bergfe1abaf2013-02-27 15:39:45 +0100568 if (large) {
569 if ((chan->flags & IEEE80211_CHAN_NO_HT40MINUS) &&
570 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS))
571 goto nla_put_failure;
572 if ((chan->flags & IEEE80211_CHAN_NO_HT40PLUS) &&
573 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS))
574 goto nla_put_failure;
575 if ((chan->flags & IEEE80211_CHAN_NO_80MHZ) &&
576 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_80MHZ))
577 goto nla_put_failure;
578 if ((chan->flags & IEEE80211_CHAN_NO_160MHZ) &&
579 nla_put_flag(msg, NL80211_FREQUENCY_ATTR_NO_160MHZ))
580 goto nla_put_failure;
581 }
582
David S. Miller9360ffd2012-03-29 04:41:26 -0400583 if (nla_put_u32(msg, NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
584 DBM_TO_MBM(chan->max_power)))
585 goto nla_put_failure;
Luis R. Rodriguez5dab3b82009-04-02 14:08:08 -0400586
587 return 0;
588
589 nla_put_failure:
590 return -ENOBUFS;
591}
592
Johannes Berg55682962007-09-20 13:09:35 -0400593/* netlink command implementations */
594
Johannes Bergb9454e82009-07-08 13:29:08 +0200595struct key_parse {
596 struct key_params p;
597 int idx;
Johannes Berge31b8212010-10-05 19:39:30 +0200598 int type;
Johannes Bergb9454e82009-07-08 13:29:08 +0200599 bool def, defmgmt;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100600 bool def_uni, def_multi;
Johannes Bergb9454e82009-07-08 13:29:08 +0200601};
602
603static int nl80211_parse_key_new(struct nlattr *key, struct key_parse *k)
604{
605 struct nlattr *tb[NL80211_KEY_MAX + 1];
606 int err = nla_parse_nested(tb, NL80211_KEY_MAX, key,
607 nl80211_key_policy);
608 if (err)
609 return err;
610
611 k->def = !!tb[NL80211_KEY_DEFAULT];
612 k->defmgmt = !!tb[NL80211_KEY_DEFAULT_MGMT];
613
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100614 if (k->def) {
615 k->def_uni = true;
616 k->def_multi = true;
617 }
618 if (k->defmgmt)
619 k->def_multi = true;
620
Johannes Bergb9454e82009-07-08 13:29:08 +0200621 if (tb[NL80211_KEY_IDX])
622 k->idx = nla_get_u8(tb[NL80211_KEY_IDX]);
623
624 if (tb[NL80211_KEY_DATA]) {
625 k->p.key = nla_data(tb[NL80211_KEY_DATA]);
626 k->p.key_len = nla_len(tb[NL80211_KEY_DATA]);
627 }
628
629 if (tb[NL80211_KEY_SEQ]) {
630 k->p.seq = nla_data(tb[NL80211_KEY_SEQ]);
631 k->p.seq_len = nla_len(tb[NL80211_KEY_SEQ]);
632 }
633
634 if (tb[NL80211_KEY_CIPHER])
635 k->p.cipher = nla_get_u32(tb[NL80211_KEY_CIPHER]);
636
Johannes Berge31b8212010-10-05 19:39:30 +0200637 if (tb[NL80211_KEY_TYPE]) {
638 k->type = nla_get_u32(tb[NL80211_KEY_TYPE]);
639 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
640 return -EINVAL;
641 }
642
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100643 if (tb[NL80211_KEY_DEFAULT_TYPES]) {
644 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
Johannes Berg2da8f412012-01-20 13:52:37 +0100645 err = nla_parse_nested(kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
646 tb[NL80211_KEY_DEFAULT_TYPES],
647 nl80211_key_default_policy);
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100648 if (err)
649 return err;
650
651 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
652 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
653 }
654
Johannes Bergb9454e82009-07-08 13:29:08 +0200655 return 0;
656}
657
658static int nl80211_parse_key_old(struct genl_info *info, struct key_parse *k)
659{
660 if (info->attrs[NL80211_ATTR_KEY_DATA]) {
661 k->p.key = nla_data(info->attrs[NL80211_ATTR_KEY_DATA]);
662 k->p.key_len = nla_len(info->attrs[NL80211_ATTR_KEY_DATA]);
663 }
664
665 if (info->attrs[NL80211_ATTR_KEY_SEQ]) {
666 k->p.seq = nla_data(info->attrs[NL80211_ATTR_KEY_SEQ]);
667 k->p.seq_len = nla_len(info->attrs[NL80211_ATTR_KEY_SEQ]);
668 }
669
670 if (info->attrs[NL80211_ATTR_KEY_IDX])
671 k->idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
672
673 if (info->attrs[NL80211_ATTR_KEY_CIPHER])
674 k->p.cipher = nla_get_u32(info->attrs[NL80211_ATTR_KEY_CIPHER]);
675
676 k->def = !!info->attrs[NL80211_ATTR_KEY_DEFAULT];
677 k->defmgmt = !!info->attrs[NL80211_ATTR_KEY_DEFAULT_MGMT];
678
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100679 if (k->def) {
680 k->def_uni = true;
681 k->def_multi = true;
682 }
683 if (k->defmgmt)
684 k->def_multi = true;
685
Johannes Berge31b8212010-10-05 19:39:30 +0200686 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
687 k->type = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
688 if (k->type < 0 || k->type >= NUM_NL80211_KEYTYPES)
689 return -EINVAL;
690 }
691
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100692 if (info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES]) {
693 struct nlattr *kdt[NUM_NL80211_KEY_DEFAULT_TYPES];
694 int err = nla_parse_nested(
695 kdt, NUM_NL80211_KEY_DEFAULT_TYPES - 1,
696 info->attrs[NL80211_ATTR_KEY_DEFAULT_TYPES],
697 nl80211_key_default_policy);
698 if (err)
699 return err;
700
701 k->def_uni = kdt[NL80211_KEY_DEFAULT_TYPE_UNICAST];
702 k->def_multi = kdt[NL80211_KEY_DEFAULT_TYPE_MULTICAST];
703 }
704
Johannes Bergb9454e82009-07-08 13:29:08 +0200705 return 0;
706}
707
708static int nl80211_parse_key(struct genl_info *info, struct key_parse *k)
709{
710 int err;
711
712 memset(k, 0, sizeof(*k));
713 k->idx = -1;
Johannes Berge31b8212010-10-05 19:39:30 +0200714 k->type = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +0200715
716 if (info->attrs[NL80211_ATTR_KEY])
717 err = nl80211_parse_key_new(info->attrs[NL80211_ATTR_KEY], k);
718 else
719 err = nl80211_parse_key_old(info, k);
720
721 if (err)
722 return err;
723
724 if (k->def && k->defmgmt)
725 return -EINVAL;
726
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100727 if (k->defmgmt) {
728 if (k->def_uni || !k->def_multi)
729 return -EINVAL;
730 }
731
Johannes Bergb9454e82009-07-08 13:29:08 +0200732 if (k->idx != -1) {
733 if (k->defmgmt) {
734 if (k->idx < 4 || k->idx > 5)
735 return -EINVAL;
736 } else if (k->def) {
737 if (k->idx < 0 || k->idx > 3)
738 return -EINVAL;
739 } else {
740 if (k->idx < 0 || k->idx > 5)
741 return -EINVAL;
742 }
743 }
744
745 return 0;
746}
747
Johannes Bergfffd0932009-07-08 14:22:54 +0200748static struct cfg80211_cached_keys *
749nl80211_parse_connkeys(struct cfg80211_registered_device *rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +0530750 struct nlattr *keys, bool *no_ht)
Johannes Bergfffd0932009-07-08 14:22:54 +0200751{
752 struct key_parse parse;
753 struct nlattr *key;
754 struct cfg80211_cached_keys *result;
755 int rem, err, def = 0;
756
757 result = kzalloc(sizeof(*result), GFP_KERNEL);
758 if (!result)
759 return ERR_PTR(-ENOMEM);
760
761 result->def = -1;
762 result->defmgmt = -1;
763
764 nla_for_each_nested(key, keys, rem) {
765 memset(&parse, 0, sizeof(parse));
766 parse.idx = -1;
767
768 err = nl80211_parse_key_new(key, &parse);
769 if (err)
770 goto error;
771 err = -EINVAL;
772 if (!parse.p.key)
773 goto error;
774 if (parse.idx < 0 || parse.idx > 4)
775 goto error;
776 if (parse.def) {
777 if (def)
778 goto error;
779 def = 1;
780 result->def = parse.idx;
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100781 if (!parse.def_uni || !parse.def_multi)
782 goto error;
Johannes Bergfffd0932009-07-08 14:22:54 +0200783 } else if (parse.defmgmt)
784 goto error;
785 err = cfg80211_validate_key_settings(rdev, &parse.p,
Johannes Berge31b8212010-10-05 19:39:30 +0200786 parse.idx, false, NULL);
Johannes Bergfffd0932009-07-08 14:22:54 +0200787 if (err)
788 goto error;
789 result->params[parse.idx].cipher = parse.p.cipher;
790 result->params[parse.idx].key_len = parse.p.key_len;
791 result->params[parse.idx].key = result->data[parse.idx];
792 memcpy(result->data[parse.idx], parse.p.key, parse.p.key_len);
Sujith Manoharande7044e2012-10-18 10:19:28 +0530793
794 if (parse.p.cipher == WLAN_CIPHER_SUITE_WEP40 ||
795 parse.p.cipher == WLAN_CIPHER_SUITE_WEP104) {
796 if (no_ht)
797 *no_ht = true;
798 }
Johannes Bergfffd0932009-07-08 14:22:54 +0200799 }
800
801 return result;
802 error:
803 kfree(result);
804 return ERR_PTR(err);
805}
806
807static int nl80211_key_allowed(struct wireless_dev *wdev)
808{
809 ASSERT_WDEV_LOCK(wdev);
810
Johannes Bergfffd0932009-07-08 14:22:54 +0200811 switch (wdev->iftype) {
812 case NL80211_IFTYPE_AP:
813 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200814 case NL80211_IFTYPE_P2P_GO:
Thomas Pedersenff973af2011-05-03 16:57:12 -0700815 case NL80211_IFTYPE_MESH_POINT:
Johannes Bergfffd0932009-07-08 14:22:54 +0200816 break;
817 case NL80211_IFTYPE_ADHOC:
Johannes Bergfffd0932009-07-08 14:22:54 +0200818 case NL80211_IFTYPE_STATION:
Johannes Berg074ac8d2010-09-16 14:58:22 +0200819 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergceca7b72013-05-16 00:55:45 +0200820 if (!wdev->current_bss)
Johannes Bergfffd0932009-07-08 14:22:54 +0200821 return -ENOLINK;
822 break;
823 default:
824 return -EINVAL;
825 }
826
827 return 0;
828}
829
Johannes Berg7527a782011-05-13 10:58:57 +0200830static int nl80211_put_iftypes(struct sk_buff *msg, u32 attr, u16 ifmodes)
831{
832 struct nlattr *nl_modes = nla_nest_start(msg, attr);
833 int i;
834
835 if (!nl_modes)
836 goto nla_put_failure;
837
838 i = 0;
839 while (ifmodes) {
David S. Miller9360ffd2012-03-29 04:41:26 -0400840 if ((ifmodes & 1) && nla_put_flag(msg, i))
841 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200842 ifmodes >>= 1;
843 i++;
844 }
845
846 nla_nest_end(msg, nl_modes);
847 return 0;
848
849nla_put_failure:
850 return -ENOBUFS;
851}
852
853static int nl80211_put_iface_combinations(struct wiphy *wiphy,
Johannes Bergcdc89b92013-02-18 23:54:36 +0100854 struct sk_buff *msg,
855 bool large)
Johannes Berg7527a782011-05-13 10:58:57 +0200856{
857 struct nlattr *nl_combis;
858 int i, j;
859
860 nl_combis = nla_nest_start(msg,
861 NL80211_ATTR_INTERFACE_COMBINATIONS);
862 if (!nl_combis)
863 goto nla_put_failure;
864
865 for (i = 0; i < wiphy->n_iface_combinations; i++) {
866 const struct ieee80211_iface_combination *c;
867 struct nlattr *nl_combi, *nl_limits;
868
869 c = &wiphy->iface_combinations[i];
870
871 nl_combi = nla_nest_start(msg, i + 1);
872 if (!nl_combi)
873 goto nla_put_failure;
874
875 nl_limits = nla_nest_start(msg, NL80211_IFACE_COMB_LIMITS);
876 if (!nl_limits)
877 goto nla_put_failure;
878
879 for (j = 0; j < c->n_limits; j++) {
880 struct nlattr *nl_limit;
881
882 nl_limit = nla_nest_start(msg, j + 1);
883 if (!nl_limit)
884 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -0400885 if (nla_put_u32(msg, NL80211_IFACE_LIMIT_MAX,
886 c->limits[j].max))
887 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200888 if (nl80211_put_iftypes(msg, NL80211_IFACE_LIMIT_TYPES,
889 c->limits[j].types))
890 goto nla_put_failure;
891 nla_nest_end(msg, nl_limit);
892 }
893
894 nla_nest_end(msg, nl_limits);
895
David S. Miller9360ffd2012-03-29 04:41:26 -0400896 if (c->beacon_int_infra_match &&
897 nla_put_flag(msg, NL80211_IFACE_COMB_STA_AP_BI_MATCH))
898 goto nla_put_failure;
899 if (nla_put_u32(msg, NL80211_IFACE_COMB_NUM_CHANNELS,
900 c->num_different_channels) ||
901 nla_put_u32(msg, NL80211_IFACE_COMB_MAXNUM,
902 c->max_interfaces))
903 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +0100904 if (large &&
905 nla_put_u32(msg, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS,
906 c->radar_detect_widths))
907 goto nla_put_failure;
Johannes Berg7527a782011-05-13 10:58:57 +0200908
909 nla_nest_end(msg, nl_combi);
910 }
911
912 nla_nest_end(msg, nl_combis);
913
914 return 0;
915nla_put_failure:
916 return -ENOBUFS;
917}
918
Johannes Berg3713b4e2013-02-14 16:19:38 +0100919#ifdef CONFIG_PM
Johannes Bergb56cf722013-02-20 01:02:38 +0100920static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device *rdev,
921 struct sk_buff *msg)
922{
Johannes Berg964dc9e2013-06-03 17:25:34 +0200923 const struct wiphy_wowlan_tcp_support *tcp = rdev->wiphy.wowlan->tcp;
Johannes Bergb56cf722013-02-20 01:02:38 +0100924 struct nlattr *nl_tcp;
925
926 if (!tcp)
927 return 0;
928
929 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
930 if (!nl_tcp)
931 return -ENOBUFS;
932
933 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
934 tcp->data_payload_max))
935 return -ENOBUFS;
936
937 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
938 tcp->data_payload_max))
939 return -ENOBUFS;
940
941 if (tcp->seq && nla_put_flag(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ))
942 return -ENOBUFS;
943
944 if (tcp->tok && nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
945 sizeof(*tcp->tok), tcp->tok))
946 return -ENOBUFS;
947
948 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
949 tcp->data_interval_max))
950 return -ENOBUFS;
951
952 if (nla_put_u32(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
953 tcp->wake_payload_max))
954 return -ENOBUFS;
955
956 nla_nest_end(msg, nl_tcp);
957 return 0;
958}
959
Johannes Berg3713b4e2013-02-14 16:19:38 +0100960static int nl80211_send_wowlan(struct sk_buff *msg,
Johannes Bergb56cf722013-02-20 01:02:38 +0100961 struct cfg80211_registered_device *dev,
962 bool large)
Johannes Berg3713b4e2013-02-14 16:19:38 +0100963{
964 struct nlattr *nl_wowlan;
965
Johannes Berg964dc9e2013-06-03 17:25:34 +0200966 if (!dev->wiphy.wowlan)
Johannes Berg3713b4e2013-02-14 16:19:38 +0100967 return 0;
968
969 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED);
970 if (!nl_wowlan)
971 return -ENOBUFS;
972
Johannes Berg964dc9e2013-06-03 17:25:34 +0200973 if (((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_ANY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100974 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200975 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_DISCONNECT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100976 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200977 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100978 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200979 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_SUPPORTS_GTK_REKEY) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100980 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200981 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100982 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200983 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100984 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200985 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100986 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg964dc9e2013-06-03 17:25:34 +0200987 ((dev->wiphy.wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE) &&
Johannes Berg3713b4e2013-02-14 16:19:38 +0100988 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
989 return -ENOBUFS;
990
Johannes Berg964dc9e2013-06-03 17:25:34 +0200991 if (dev->wiphy.wowlan->n_patterns) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -0700992 struct nl80211_pattern_support pat = {
Johannes Berg964dc9e2013-06-03 17:25:34 +0200993 .max_patterns = dev->wiphy.wowlan->n_patterns,
994 .min_pattern_len = dev->wiphy.wowlan->pattern_min_len,
995 .max_pattern_len = dev->wiphy.wowlan->pattern_max_len,
996 .max_pkt_offset = dev->wiphy.wowlan->max_pkt_offset,
Johannes Berg3713b4e2013-02-14 16:19:38 +0100997 };
998
999 if (nla_put(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
1000 sizeof(pat), &pat))
1001 return -ENOBUFS;
1002 }
1003
Johannes Bergb56cf722013-02-20 01:02:38 +01001004 if (large && nl80211_send_wowlan_tcp_caps(dev, msg))
1005 return -ENOBUFS;
1006
Johannes Berg3713b4e2013-02-14 16:19:38 +01001007 nla_nest_end(msg, nl_wowlan);
1008
1009 return 0;
1010}
1011#endif
1012
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001013static int nl80211_send_coalesce(struct sk_buff *msg,
1014 struct cfg80211_registered_device *dev)
1015{
1016 struct nl80211_coalesce_rule_support rule;
1017
1018 if (!dev->wiphy.coalesce)
1019 return 0;
1020
1021 rule.max_rules = dev->wiphy.coalesce->n_rules;
1022 rule.max_delay = dev->wiphy.coalesce->max_delay;
1023 rule.pat.max_patterns = dev->wiphy.coalesce->n_patterns;
1024 rule.pat.min_pattern_len = dev->wiphy.coalesce->pattern_min_len;
1025 rule.pat.max_pattern_len = dev->wiphy.coalesce->pattern_max_len;
1026 rule.pat.max_pkt_offset = dev->wiphy.coalesce->max_pkt_offset;
1027
1028 if (nla_put(msg, NL80211_ATTR_COALESCE_RULE, sizeof(rule), &rule))
1029 return -ENOBUFS;
1030
1031 return 0;
1032}
1033
Johannes Berg3713b4e2013-02-14 16:19:38 +01001034static int nl80211_send_band_rateinfo(struct sk_buff *msg,
1035 struct ieee80211_supported_band *sband)
1036{
1037 struct nlattr *nl_rates, *nl_rate;
1038 struct ieee80211_rate *rate;
1039 int i;
1040
1041 /* add HT info */
1042 if (sband->ht_cap.ht_supported &&
1043 (nla_put(msg, NL80211_BAND_ATTR_HT_MCS_SET,
1044 sizeof(sband->ht_cap.mcs),
1045 &sband->ht_cap.mcs) ||
1046 nla_put_u16(msg, NL80211_BAND_ATTR_HT_CAPA,
1047 sband->ht_cap.cap) ||
1048 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_FACTOR,
1049 sband->ht_cap.ampdu_factor) ||
1050 nla_put_u8(msg, NL80211_BAND_ATTR_HT_AMPDU_DENSITY,
1051 sband->ht_cap.ampdu_density)))
1052 return -ENOBUFS;
1053
1054 /* add VHT info */
1055 if (sband->vht_cap.vht_supported &&
1056 (nla_put(msg, NL80211_BAND_ATTR_VHT_MCS_SET,
1057 sizeof(sband->vht_cap.vht_mcs),
1058 &sband->vht_cap.vht_mcs) ||
1059 nla_put_u32(msg, NL80211_BAND_ATTR_VHT_CAPA,
1060 sband->vht_cap.cap)))
1061 return -ENOBUFS;
1062
1063 /* add bitrates */
1064 nl_rates = nla_nest_start(msg, NL80211_BAND_ATTR_RATES);
1065 if (!nl_rates)
1066 return -ENOBUFS;
1067
1068 for (i = 0; i < sband->n_bitrates; i++) {
1069 nl_rate = nla_nest_start(msg, i);
1070 if (!nl_rate)
1071 return -ENOBUFS;
1072
1073 rate = &sband->bitrates[i];
1074 if (nla_put_u32(msg, NL80211_BITRATE_ATTR_RATE,
1075 rate->bitrate))
1076 return -ENOBUFS;
1077 if ((rate->flags & IEEE80211_RATE_SHORT_PREAMBLE) &&
1078 nla_put_flag(msg,
1079 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE))
1080 return -ENOBUFS;
1081
1082 nla_nest_end(msg, nl_rate);
1083 }
1084
1085 nla_nest_end(msg, nl_rates);
1086
1087 return 0;
1088}
1089
1090static int
1091nl80211_send_mgmt_stypes(struct sk_buff *msg,
1092 const struct ieee80211_txrx_stypes *mgmt_stypes)
1093{
1094 u16 stypes;
1095 struct nlattr *nl_ftypes, *nl_ifs;
1096 enum nl80211_iftype ift;
1097 int i;
1098
1099 if (!mgmt_stypes)
1100 return 0;
1101
1102 nl_ifs = nla_nest_start(msg, NL80211_ATTR_TX_FRAME_TYPES);
1103 if (!nl_ifs)
1104 return -ENOBUFS;
1105
1106 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1107 nl_ftypes = nla_nest_start(msg, ift);
1108 if (!nl_ftypes)
1109 return -ENOBUFS;
1110 i = 0;
1111 stypes = mgmt_stypes[ift].tx;
1112 while (stypes) {
1113 if ((stypes & 1) &&
1114 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1115 (i << 4) | IEEE80211_FTYPE_MGMT))
1116 return -ENOBUFS;
1117 stypes >>= 1;
1118 i++;
1119 }
1120 nla_nest_end(msg, nl_ftypes);
1121 }
1122
1123 nla_nest_end(msg, nl_ifs);
1124
1125 nl_ifs = nla_nest_start(msg, NL80211_ATTR_RX_FRAME_TYPES);
1126 if (!nl_ifs)
1127 return -ENOBUFS;
1128
1129 for (ift = 0; ift < NUM_NL80211_IFTYPES; ift++) {
1130 nl_ftypes = nla_nest_start(msg, ift);
1131 if (!nl_ftypes)
1132 return -ENOBUFS;
1133 i = 0;
1134 stypes = mgmt_stypes[ift].rx;
1135 while (stypes) {
1136 if ((stypes & 1) &&
1137 nla_put_u16(msg, NL80211_ATTR_FRAME_TYPE,
1138 (i << 4) | IEEE80211_FTYPE_MGMT))
1139 return -ENOBUFS;
1140 stypes >>= 1;
1141 i++;
1142 }
1143 nla_nest_end(msg, nl_ftypes);
1144 }
1145 nla_nest_end(msg, nl_ifs);
1146
1147 return 0;
1148}
1149
Johannes Berg86e8cf92013-06-19 10:57:22 +02001150struct nl80211_dump_wiphy_state {
1151 s64 filter_wiphy;
1152 long start;
1153 long split_start, band_start, chan_start;
1154 bool split;
1155};
1156
Johannes Berg3713b4e2013-02-14 16:19:38 +01001157static int nl80211_send_wiphy(struct cfg80211_registered_device *dev,
1158 struct sk_buff *msg, u32 portid, u32 seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001159 int flags, struct nl80211_dump_wiphy_state *state)
Johannes Berg55682962007-09-20 13:09:35 -04001160{
1161 void *hdr;
Johannes Bergee688b002008-01-24 19:38:39 +01001162 struct nlattr *nl_bands, *nl_band;
1163 struct nlattr *nl_freqs, *nl_freq;
Johannes Berg8fdc6212009-03-14 09:34:01 +01001164 struct nlattr *nl_cmds;
Johannes Bergee688b002008-01-24 19:38:39 +01001165 enum ieee80211_band band;
1166 struct ieee80211_channel *chan;
Johannes Bergee688b002008-01-24 19:38:39 +01001167 int i;
Johannes Berg2e161f72010-08-12 15:38:38 +02001168 const struct ieee80211_txrx_stypes *mgmt_stypes =
1169 dev->wiphy.mgmt_stypes;
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001170 u32 features;
Johannes Berg55682962007-09-20 13:09:35 -04001171
Eric W. Biederman15e47302012-09-07 20:12:54 +00001172 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_WIPHY);
Johannes Berg55682962007-09-20 13:09:35 -04001173 if (!hdr)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001174 return -ENOBUFS;
1175
Johannes Berg86e8cf92013-06-19 10:57:22 +02001176 if (WARN_ON(!state))
1177 return -EINVAL;
Johannes Berg55682962007-09-20 13:09:35 -04001178
David S. Miller9360ffd2012-03-29 04:41:26 -04001179 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, dev->wiphy_idx) ||
Johannes Berg3713b4e2013-02-14 16:19:38 +01001180 nla_put_string(msg, NL80211_ATTR_WIPHY_NAME,
1181 wiphy_name(&dev->wiphy)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04001182 nla_put_u32(msg, NL80211_ATTR_GENERATION,
Johannes Berg3713b4e2013-02-14 16:19:38 +01001183 cfg80211_rdev_list_generation))
David S. Miller9360ffd2012-03-29 04:41:26 -04001184 goto nla_put_failure;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001185
Johannes Berg86e8cf92013-06-19 10:57:22 +02001186 switch (state->split_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001187 case 0:
1188 if (nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_SHORT,
1189 dev->wiphy.retry_short) ||
1190 nla_put_u8(msg, NL80211_ATTR_WIPHY_RETRY_LONG,
1191 dev->wiphy.retry_long) ||
1192 nla_put_u32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD,
1193 dev->wiphy.frag_threshold) ||
1194 nla_put_u32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD,
1195 dev->wiphy.rts_threshold) ||
1196 nla_put_u8(msg, NL80211_ATTR_WIPHY_COVERAGE_CLASS,
1197 dev->wiphy.coverage_class) ||
1198 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCAN_SSIDS,
1199 dev->wiphy.max_scan_ssids) ||
1200 nla_put_u8(msg, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS,
1201 dev->wiphy.max_sched_scan_ssids) ||
1202 nla_put_u16(msg, NL80211_ATTR_MAX_SCAN_IE_LEN,
1203 dev->wiphy.max_scan_ie_len) ||
1204 nla_put_u16(msg, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN,
1205 dev->wiphy.max_sched_scan_ie_len) ||
1206 nla_put_u8(msg, NL80211_ATTR_MAX_MATCH_SETS,
1207 dev->wiphy.max_match_sets))
Johannes Bergee688b002008-01-24 19:38:39 +01001208 goto nla_put_failure;
1209
Johannes Berg3713b4e2013-02-14 16:19:38 +01001210 if ((dev->wiphy.flags & WIPHY_FLAG_IBSS_RSN) &&
1211 nla_put_flag(msg, NL80211_ATTR_SUPPORT_IBSS_RSN))
1212 goto nla_put_failure;
1213 if ((dev->wiphy.flags & WIPHY_FLAG_MESH_AUTH) &&
1214 nla_put_flag(msg, NL80211_ATTR_SUPPORT_MESH_AUTH))
1215 goto nla_put_failure;
1216 if ((dev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) &&
1217 nla_put_flag(msg, NL80211_ATTR_SUPPORT_AP_UAPSD))
1218 goto nla_put_failure;
1219 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_FW_ROAM) &&
1220 nla_put_flag(msg, NL80211_ATTR_ROAM_SUPPORT))
1221 goto nla_put_failure;
1222 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) &&
1223 nla_put_flag(msg, NL80211_ATTR_TDLS_SUPPORT))
1224 goto nla_put_failure;
1225 if ((dev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP) &&
1226 nla_put_flag(msg, NL80211_ATTR_TDLS_EXTERNAL_SETUP))
David S. Miller9360ffd2012-03-29 04:41:26 -04001227 goto nla_put_failure;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001228 if ((dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ) &&
1229 nla_put_flag(msg, WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1230 goto nla_put_failure;
Johannes Bergd51626d2008-10-09 12:20:13 +02001231
Johannes Berg86e8cf92013-06-19 10:57:22 +02001232 state->split_start++;
1233 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001234 break;
1235 case 1:
1236 if (nla_put(msg, NL80211_ATTR_CIPHER_SUITES,
1237 sizeof(u32) * dev->wiphy.n_cipher_suites,
1238 dev->wiphy.cipher_suites))
Mahesh Palivelabf0c111e2012-06-22 07:27:46 +00001239 goto nla_put_failure;
1240
Johannes Berg3713b4e2013-02-14 16:19:38 +01001241 if (nla_put_u8(msg, NL80211_ATTR_MAX_NUM_PMKIDS,
1242 dev->wiphy.max_num_pmkids))
Johannes Bergee688b002008-01-24 19:38:39 +01001243 goto nla_put_failure;
1244
Johannes Berg3713b4e2013-02-14 16:19:38 +01001245 if ((dev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
1246 nla_put_flag(msg, NL80211_ATTR_CONTROL_PORT_ETHERTYPE))
1247 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001248
Johannes Berg3713b4e2013-02-14 16:19:38 +01001249 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX,
1250 dev->wiphy.available_antennas_tx) ||
1251 nla_put_u32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
1252 dev->wiphy.available_antennas_rx))
1253 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001254
Johannes Berg3713b4e2013-02-14 16:19:38 +01001255 if ((dev->wiphy.flags & WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD) &&
1256 nla_put_u32(msg, NL80211_ATTR_PROBE_RESP_OFFLOAD,
1257 dev->wiphy.probe_resp_offload))
1258 goto nla_put_failure;
Jouni Malinene2f367f262008-11-21 19:01:30 +02001259
Johannes Berg3713b4e2013-02-14 16:19:38 +01001260 if ((dev->wiphy.available_antennas_tx ||
1261 dev->wiphy.available_antennas_rx) &&
1262 dev->ops->get_antenna) {
1263 u32 tx_ant = 0, rx_ant = 0;
1264 int res;
1265 res = rdev_get_antenna(dev, &tx_ant, &rx_ant);
1266 if (!res) {
1267 if (nla_put_u32(msg,
1268 NL80211_ATTR_WIPHY_ANTENNA_TX,
1269 tx_ant) ||
1270 nla_put_u32(msg,
1271 NL80211_ATTR_WIPHY_ANTENNA_RX,
1272 rx_ant))
1273 goto nla_put_failure;
1274 }
Johannes Bergee688b002008-01-24 19:38:39 +01001275 }
1276
Johannes Berg86e8cf92013-06-19 10:57:22 +02001277 state->split_start++;
1278 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001279 break;
1280 case 2:
1281 if (nl80211_put_iftypes(msg, NL80211_ATTR_SUPPORTED_IFTYPES,
1282 dev->wiphy.interface_modes))
1283 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001284 state->split_start++;
1285 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001286 break;
1287 case 3:
1288 nl_bands = nla_nest_start(msg, NL80211_ATTR_WIPHY_BANDS);
1289 if (!nl_bands)
Johannes Bergee688b002008-01-24 19:38:39 +01001290 goto nla_put_failure;
1291
Johannes Berg86e8cf92013-06-19 10:57:22 +02001292 for (band = state->band_start;
1293 band < IEEE80211_NUM_BANDS; band++) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001294 struct ieee80211_supported_band *sband;
1295
1296 sband = dev->wiphy.bands[band];
1297
1298 if (!sband)
1299 continue;
1300
1301 nl_band = nla_nest_start(msg, band);
1302 if (!nl_band)
Johannes Bergee688b002008-01-24 19:38:39 +01001303 goto nla_put_failure;
1304
Johannes Berg86e8cf92013-06-19 10:57:22 +02001305 switch (state->chan_start) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001306 case 0:
1307 if (nl80211_send_band_rateinfo(msg, sband))
1308 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001309 state->chan_start++;
1310 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001311 break;
1312 default:
1313 /* add frequencies */
1314 nl_freqs = nla_nest_start(
1315 msg, NL80211_BAND_ATTR_FREQS);
1316 if (!nl_freqs)
1317 goto nla_put_failure;
Johannes Bergee688b002008-01-24 19:38:39 +01001318
Johannes Berg86e8cf92013-06-19 10:57:22 +02001319 for (i = state->chan_start - 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001320 i < sband->n_channels;
1321 i++) {
1322 nl_freq = nla_nest_start(msg, i);
1323 if (!nl_freq)
1324 goto nla_put_failure;
1325
1326 chan = &sband->channels[i];
1327
Johannes Berg86e8cf92013-06-19 10:57:22 +02001328 if (nl80211_msg_put_channel(
1329 msg, chan,
1330 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001331 goto nla_put_failure;
1332
1333 nla_nest_end(msg, nl_freq);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001334 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001335 break;
1336 }
1337 if (i < sband->n_channels)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001338 state->chan_start = i + 2;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001339 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001340 state->chan_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001341 nla_nest_end(msg, nl_freqs);
1342 }
1343
1344 nla_nest_end(msg, nl_band);
1345
Johannes Berg86e8cf92013-06-19 10:57:22 +02001346 if (state->split) {
Johannes Berg3713b4e2013-02-14 16:19:38 +01001347 /* start again here */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001348 if (state->chan_start)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001349 band--;
1350 break;
1351 }
Johannes Bergee688b002008-01-24 19:38:39 +01001352 }
Johannes Berg3713b4e2013-02-14 16:19:38 +01001353 nla_nest_end(msg, nl_bands);
Johannes Bergee688b002008-01-24 19:38:39 +01001354
Johannes Berg3713b4e2013-02-14 16:19:38 +01001355 if (band < IEEE80211_NUM_BANDS)
Johannes Berg86e8cf92013-06-19 10:57:22 +02001356 state->band_start = band + 1;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001357 else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001358 state->band_start = 0;
Johannes Bergee688b002008-01-24 19:38:39 +01001359
Johannes Berg3713b4e2013-02-14 16:19:38 +01001360 /* if bands & channels are done, continue outside */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001361 if (state->band_start == 0 && state->chan_start == 0)
1362 state->split_start++;
1363 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001364 break;
1365 case 4:
1366 nl_cmds = nla_nest_start(msg, NL80211_ATTR_SUPPORTED_COMMANDS);
1367 if (!nl_cmds)
David S. Miller9360ffd2012-03-29 04:41:26 -04001368 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001369
1370 i = 0;
1371#define CMD(op, n) \
1372 do { \
1373 if (dev->ops->op) { \
1374 i++; \
1375 if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
1376 goto nla_put_failure; \
1377 } \
1378 } while (0)
1379
1380 CMD(add_virtual_intf, NEW_INTERFACE);
1381 CMD(change_virtual_intf, SET_INTERFACE);
1382 CMD(add_key, NEW_KEY);
1383 CMD(start_ap, START_AP);
1384 CMD(add_station, NEW_STATION);
1385 CMD(add_mpath, NEW_MPATH);
1386 CMD(update_mesh_config, SET_MESH_CONFIG);
1387 CMD(change_bss, SET_BSS);
1388 CMD(auth, AUTHENTICATE);
1389 CMD(assoc, ASSOCIATE);
1390 CMD(deauth, DEAUTHENTICATE);
1391 CMD(disassoc, DISASSOCIATE);
1392 CMD(join_ibss, JOIN_IBSS);
1393 CMD(join_mesh, JOIN_MESH);
1394 CMD(set_pmksa, SET_PMKSA);
1395 CMD(del_pmksa, DEL_PMKSA);
1396 CMD(flush_pmksa, FLUSH_PMKSA);
1397 if (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL)
1398 CMD(remain_on_channel, REMAIN_ON_CHANNEL);
1399 CMD(set_bitrate_mask, SET_TX_BITRATE_MASK);
1400 CMD(mgmt_tx, FRAME);
1401 CMD(mgmt_tx_cancel_wait, FRAME_WAIT_CANCEL);
1402 if (dev->wiphy.flags & WIPHY_FLAG_NETNS_OK) {
1403 i++;
1404 if (nla_put_u32(msg, i, NL80211_CMD_SET_WIPHY_NETNS))
1405 goto nla_put_failure;
1406 }
1407 if (dev->ops->set_monitor_channel || dev->ops->start_ap ||
1408 dev->ops->join_mesh) {
1409 i++;
1410 if (nla_put_u32(msg, i, NL80211_CMD_SET_CHANNEL))
1411 goto nla_put_failure;
1412 }
1413 CMD(set_wds_peer, SET_WDS_PEER);
1414 if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) {
1415 CMD(tdls_mgmt, TDLS_MGMT);
1416 CMD(tdls_oper, TDLS_OPER);
1417 }
1418 if (dev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN)
1419 CMD(sched_scan_start, START_SCHED_SCAN);
1420 CMD(probe_client, PROBE_CLIENT);
1421 CMD(set_noack_map, SET_NOACK_MAP);
1422 if (dev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS) {
1423 i++;
1424 if (nla_put_u32(msg, i, NL80211_CMD_REGISTER_BEACONS))
1425 goto nla_put_failure;
1426 }
1427 CMD(start_p2p_device, START_P2P_DEVICE);
1428 CMD(set_mcast_rate, SET_MCAST_RATE);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001429 if (state->split) {
Arend van Spriel5de17982013-04-18 15:49:00 +02001430 CMD(crit_proto_start, CRIT_PROTOCOL_START);
1431 CMD(crit_proto_stop, CRIT_PROTOCOL_STOP);
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02001432 if (dev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH)
1433 CMD(channel_switch, CHANNEL_SWITCH);
Arend van Spriel5de17982013-04-18 15:49:00 +02001434 }
Johannes Berg8fdc6212009-03-14 09:34:01 +01001435
Kalle Valo4745fc02011-11-17 19:06:10 +02001436#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg3713b4e2013-02-14 16:19:38 +01001437 CMD(testmode_cmd, TESTMODE);
Kalle Valo4745fc02011-11-17 19:06:10 +02001438#endif
1439
Johannes Berg8fdc6212009-03-14 09:34:01 +01001440#undef CMD
Samuel Ortizb23aa672009-07-01 21:26:54 +02001441
Johannes Berg3713b4e2013-02-14 16:19:38 +01001442 if (dev->ops->connect || dev->ops->auth) {
1443 i++;
1444 if (nla_put_u32(msg, i, NL80211_CMD_CONNECT))
Johannes Berg2e161f72010-08-12 15:38:38 +02001445 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001446 }
1447
Johannes Berg3713b4e2013-02-14 16:19:38 +01001448 if (dev->ops->disconnect || dev->ops->deauth) {
1449 i++;
1450 if (nla_put_u32(msg, i, NL80211_CMD_DISCONNECT))
1451 goto nla_put_failure;
1452 }
Johannes Berg74b70a42010-08-24 12:15:53 +02001453
Johannes Berg3713b4e2013-02-14 16:19:38 +01001454 nla_nest_end(msg, nl_cmds);
Johannes Berg86e8cf92013-06-19 10:57:22 +02001455 state->split_start++;
1456 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001457 break;
1458 case 5:
1459 if (dev->ops->remain_on_channel &&
1460 (dev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL) &&
1461 nla_put_u32(msg,
1462 NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION,
1463 dev->wiphy.max_remain_on_channel_duration))
Johannes Berg2e161f72010-08-12 15:38:38 +02001464 goto nla_put_failure;
1465
Johannes Berg3713b4e2013-02-14 16:19:38 +01001466 if ((dev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX) &&
1467 nla_put_flag(msg, NL80211_ATTR_OFFCHANNEL_TX_OK))
1468 goto nla_put_failure;
Johannes Berg2e161f72010-08-12 15:38:38 +02001469
Johannes Berg3713b4e2013-02-14 16:19:38 +01001470 if (nl80211_send_mgmt_stypes(msg, mgmt_stypes))
1471 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001472 state->split_start++;
1473 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001474 break;
1475 case 6:
Johannes Bergdfb89c52012-06-27 09:23:48 +02001476#ifdef CONFIG_PM
Johannes Berg86e8cf92013-06-19 10:57:22 +02001477 if (nl80211_send_wowlan(msg, dev, state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001478 goto nla_put_failure;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001479 state->split_start++;
1480 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001481 break;
1482#else
Johannes Berg86e8cf92013-06-19 10:57:22 +02001483 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001484#endif
1485 case 7:
1486 if (nl80211_put_iftypes(msg, NL80211_ATTR_SOFTWARE_IFTYPES,
1487 dev->wiphy.software_iftypes))
Johannes Bergff1b6e62011-05-04 15:37:28 +02001488 goto nla_put_failure;
1489
Johannes Berg86e8cf92013-06-19 10:57:22 +02001490 if (nl80211_put_iface_combinations(&dev->wiphy, msg,
1491 state->split))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001492 goto nla_put_failure;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001493
Johannes Berg86e8cf92013-06-19 10:57:22 +02001494 state->split_start++;
1495 if (state->split)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001496 break;
1497 case 8:
1498 if ((dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME) &&
1499 nla_put_u32(msg, NL80211_ATTR_DEVICE_AP_SME,
1500 dev->wiphy.ap_sme_capa))
1501 goto nla_put_failure;
1502
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001503 features = dev->wiphy.features;
1504 /*
1505 * We can only add the per-channel limit information if the
1506 * dump is split, otherwise it makes it too big. Therefore
1507 * only advertise it in that case.
1508 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001509 if (state->split)
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001510 features |= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS;
1511 if (nla_put_u32(msg, NL80211_ATTR_FEATURE_FLAGS, features))
Johannes Berg3713b4e2013-02-14 16:19:38 +01001512 goto nla_put_failure;
1513
1514 if (dev->wiphy.ht_capa_mod_mask &&
1515 nla_put(msg, NL80211_ATTR_HT_CAPABILITY_MASK,
1516 sizeof(*dev->wiphy.ht_capa_mod_mask),
1517 dev->wiphy.ht_capa_mod_mask))
1518 goto nla_put_failure;
1519
1520 if (dev->wiphy.flags & WIPHY_FLAG_HAVE_AP_SME &&
1521 dev->wiphy.max_acl_mac_addrs &&
1522 nla_put_u32(msg, NL80211_ATTR_MAC_ACL_MAX,
1523 dev->wiphy.max_acl_mac_addrs))
1524 goto nla_put_failure;
1525
1526 /*
1527 * Any information below this point is only available to
1528 * applications that can deal with it being split. This
1529 * helps ensure that newly added capabilities don't break
1530 * older tools by overrunning their buffers.
1531 *
1532 * We still increment split_start so that in the split
1533 * case we'll continue with more data in the next round,
1534 * but break unconditionally so unsplit data stops here.
1535 */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001536 state->split_start++;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001537 break;
1538 case 9:
Johannes Bergfe1abaf2013-02-27 15:39:45 +01001539 if (dev->wiphy.extended_capabilities &&
1540 (nla_put(msg, NL80211_ATTR_EXT_CAPA,
1541 dev->wiphy.extended_capabilities_len,
1542 dev->wiphy.extended_capabilities) ||
1543 nla_put(msg, NL80211_ATTR_EXT_CAPA_MASK,
1544 dev->wiphy.extended_capabilities_len,
1545 dev->wiphy.extended_capabilities_mask)))
1546 goto nla_put_failure;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001547
Johannes Bergee2aca32013-02-21 17:36:01 +01001548 if (dev->wiphy.vht_capa_mod_mask &&
1549 nla_put(msg, NL80211_ATTR_VHT_CAPABILITY_MASK,
1550 sizeof(*dev->wiphy.vht_capa_mod_mask),
1551 dev->wiphy.vht_capa_mod_mask))
1552 goto nla_put_failure;
1553
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07001554 state->split_start++;
1555 break;
1556 case 10:
1557 if (nl80211_send_coalesce(msg, dev))
1558 goto nla_put_failure;
1559
Johannes Berg3713b4e2013-02-14 16:19:38 +01001560 /* done */
Johannes Berg86e8cf92013-06-19 10:57:22 +02001561 state->split_start = 0;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001562 break;
Johannes Bergff1b6e62011-05-04 15:37:28 +02001563 }
Johannes Berg55682962007-09-20 13:09:35 -04001564 return genlmsg_end(msg, hdr);
1565
1566 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07001567 genlmsg_cancel(msg, hdr);
1568 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04001569}
1570
Johannes Berg86e8cf92013-06-19 10:57:22 +02001571static int nl80211_dump_wiphy_parse(struct sk_buff *skb,
1572 struct netlink_callback *cb,
1573 struct nl80211_dump_wiphy_state *state)
1574{
1575 struct nlattr **tb = nl80211_fam.attrbuf;
1576 int ret = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
1577 tb, nl80211_fam.maxattr, nl80211_policy);
1578 /* ignore parse errors for backward compatibility */
1579 if (ret)
1580 return 0;
1581
1582 state->split = tb[NL80211_ATTR_SPLIT_WIPHY_DUMP];
1583 if (tb[NL80211_ATTR_WIPHY])
1584 state->filter_wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
1585 if (tb[NL80211_ATTR_WDEV])
1586 state->filter_wiphy = nla_get_u64(tb[NL80211_ATTR_WDEV]) >> 32;
1587 if (tb[NL80211_ATTR_IFINDEX]) {
1588 struct net_device *netdev;
1589 struct cfg80211_registered_device *rdev;
1590 int ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
1591
1592 netdev = dev_get_by_index(sock_net(skb->sk), ifidx);
1593 if (!netdev)
1594 return -ENODEV;
1595 if (netdev->ieee80211_ptr) {
1596 rdev = wiphy_to_dev(
1597 netdev->ieee80211_ptr->wiphy);
1598 state->filter_wiphy = rdev->wiphy_idx;
1599 }
1600 dev_put(netdev);
1601 }
1602
1603 return 0;
1604}
1605
Johannes Berg55682962007-09-20 13:09:35 -04001606static int nl80211_dump_wiphy(struct sk_buff *skb, struct netlink_callback *cb)
1607{
Johannes Berg645e77d2013-03-01 14:03:49 +01001608 int idx = 0, ret;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001609 struct nl80211_dump_wiphy_state *state = (void *)cb->args[0];
Johannes Berg55682962007-09-20 13:09:35 -04001610 struct cfg80211_registered_device *dev;
Johannes Berg3a5a4232013-06-19 10:09:57 +02001611
Johannes Berg5fe231e2013-05-08 21:45:15 +02001612 rtnl_lock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001613 if (!state) {
1614 state = kzalloc(sizeof(*state), GFP_KERNEL);
John W. Linville57ed5cd2013-06-28 13:18:21 -04001615 if (!state) {
1616 rtnl_unlock();
Johannes Berg86e8cf92013-06-19 10:57:22 +02001617 return -ENOMEM;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001618 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001619 state->filter_wiphy = -1;
1620 ret = nl80211_dump_wiphy_parse(skb, cb, state);
1621 if (ret) {
1622 kfree(state);
1623 rtnl_unlock();
1624 return ret;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001625 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001626 cb->args[0] = (long)state;
Johannes Berg3713b4e2013-02-14 16:19:38 +01001627 }
1628
Johannes Berg79c97e92009-07-07 03:56:12 +02001629 list_for_each_entry(dev, &cfg80211_rdev_list, list) {
Johannes Berg463d0182009-07-14 00:33:35 +02001630 if (!net_eq(wiphy_net(&dev->wiphy), sock_net(skb->sk)))
1631 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001632 if (++idx <= state->start)
Johannes Berg55682962007-09-20 13:09:35 -04001633 continue;
Johannes Berg86e8cf92013-06-19 10:57:22 +02001634 if (state->filter_wiphy != -1 &&
1635 state->filter_wiphy != dev->wiphy_idx)
Johannes Berg3713b4e2013-02-14 16:19:38 +01001636 continue;
1637 /* attempt to fit multiple wiphy data chunks into the skb */
1638 do {
1639 ret = nl80211_send_wiphy(dev, skb,
1640 NETLINK_CB(cb->skb).portid,
1641 cb->nlh->nlmsg_seq,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001642 NLM_F_MULTI, state);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001643 if (ret < 0) {
1644 /*
1645 * If sending the wiphy data didn't fit (ENOBUFS
1646 * or EMSGSIZE returned), this SKB is still
1647 * empty (so it's not too big because another
1648 * wiphy dataset is already in the skb) and
1649 * we've not tried to adjust the dump allocation
1650 * yet ... then adjust the alloc size to be
1651 * bigger, and return 1 but with the empty skb.
1652 * This results in an empty message being RX'ed
1653 * in userspace, but that is ignored.
1654 *
1655 * We can then retry with the larger buffer.
1656 */
1657 if ((ret == -ENOBUFS || ret == -EMSGSIZE) &&
1658 !skb->len &&
1659 cb->min_dump_alloc < 4096) {
1660 cb->min_dump_alloc = 4096;
David S. Millerd98cae64e2013-06-19 16:49:39 -07001661 rtnl_unlock();
Johannes Berg3713b4e2013-02-14 16:19:38 +01001662 return 1;
1663 }
1664 idx--;
1665 break;
Johannes Berg645e77d2013-03-01 14:03:49 +01001666 }
Johannes Berg86e8cf92013-06-19 10:57:22 +02001667 } while (state->split_start > 0);
Johannes Berg3713b4e2013-02-14 16:19:38 +01001668 break;
Johannes Berg55682962007-09-20 13:09:35 -04001669 }
Johannes Berg5fe231e2013-05-08 21:45:15 +02001670 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04001671
Johannes Berg86e8cf92013-06-19 10:57:22 +02001672 state->start = idx;
Johannes Berg55682962007-09-20 13:09:35 -04001673
1674 return skb->len;
1675}
1676
Johannes Berg86e8cf92013-06-19 10:57:22 +02001677static int nl80211_dump_wiphy_done(struct netlink_callback *cb)
1678{
1679 kfree((void *)cb->args[0]);
1680 return 0;
1681}
1682
Johannes Berg55682962007-09-20 13:09:35 -04001683static int nl80211_get_wiphy(struct sk_buff *skb, struct genl_info *info)
1684{
1685 struct sk_buff *msg;
Johannes Berg4c476992010-10-04 21:36:35 +02001686 struct cfg80211_registered_device *dev = info->user_ptr[0];
Johannes Berg86e8cf92013-06-19 10:57:22 +02001687 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04001688
Johannes Berg645e77d2013-03-01 14:03:49 +01001689 msg = nlmsg_new(4096, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04001690 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02001691 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04001692
Johannes Berg3713b4e2013-02-14 16:19:38 +01001693 if (nl80211_send_wiphy(dev, msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg86e8cf92013-06-19 10:57:22 +02001694 &state) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02001695 nlmsg_free(msg);
1696 return -ENOBUFS;
1697 }
Johannes Berg55682962007-09-20 13:09:35 -04001698
Johannes Berg134e6372009-07-10 09:51:34 +00001699 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04001700}
1701
Jouni Malinen31888482008-10-30 16:59:24 +02001702static const struct nla_policy txq_params_policy[NL80211_TXQ_ATTR_MAX + 1] = {
1703 [NL80211_TXQ_ATTR_QUEUE] = { .type = NLA_U8 },
1704 [NL80211_TXQ_ATTR_TXOP] = { .type = NLA_U16 },
1705 [NL80211_TXQ_ATTR_CWMIN] = { .type = NLA_U16 },
1706 [NL80211_TXQ_ATTR_CWMAX] = { .type = NLA_U16 },
1707 [NL80211_TXQ_ATTR_AIFS] = { .type = NLA_U8 },
1708};
1709
1710static int parse_txq_params(struct nlattr *tb[],
1711 struct ieee80211_txq_params *txq_params)
1712{
Johannes Berga3304b02012-03-28 11:04:24 +02001713 if (!tb[NL80211_TXQ_ATTR_AC] || !tb[NL80211_TXQ_ATTR_TXOP] ||
Jouni Malinen31888482008-10-30 16:59:24 +02001714 !tb[NL80211_TXQ_ATTR_CWMIN] || !tb[NL80211_TXQ_ATTR_CWMAX] ||
1715 !tb[NL80211_TXQ_ATTR_AIFS])
1716 return -EINVAL;
1717
Johannes Berga3304b02012-03-28 11:04:24 +02001718 txq_params->ac = nla_get_u8(tb[NL80211_TXQ_ATTR_AC]);
Jouni Malinen31888482008-10-30 16:59:24 +02001719 txq_params->txop = nla_get_u16(tb[NL80211_TXQ_ATTR_TXOP]);
1720 txq_params->cwmin = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMIN]);
1721 txq_params->cwmax = nla_get_u16(tb[NL80211_TXQ_ATTR_CWMAX]);
1722 txq_params->aifs = nla_get_u8(tb[NL80211_TXQ_ATTR_AIFS]);
1723
Johannes Berga3304b02012-03-28 11:04:24 +02001724 if (txq_params->ac >= NL80211_NUM_ACS)
1725 return -EINVAL;
1726
Jouni Malinen31888482008-10-30 16:59:24 +02001727 return 0;
1728}
1729
Johannes Bergf444de02010-05-05 15:25:02 +02001730static bool nl80211_can_set_dev_channel(struct wireless_dev *wdev)
1731{
1732 /*
Johannes Bergcc1d2802012-05-16 23:50:20 +02001733 * You can only set the channel explicitly for WDS interfaces,
1734 * all others have their channel managed via their respective
1735 * "establish a connection" command (connect, join, ...)
1736 *
1737 * For AP/GO and mesh mode, the channel can be set with the
1738 * channel userspace API, but is only stored and passed to the
1739 * low-level driver when the AP starts or the mesh is joined.
1740 * This is for backward compatibility, userspace can also give
1741 * the channel in the start-ap or join-mesh commands instead.
Johannes Bergf444de02010-05-05 15:25:02 +02001742 *
1743 * Monitors are special as they are normally slaved to
Johannes Berge8c9bd52012-06-06 08:18:22 +02001744 * whatever else is going on, so they have their own special
1745 * operation to set the monitor channel if possible.
Johannes Bergf444de02010-05-05 15:25:02 +02001746 */
1747 return !wdev ||
1748 wdev->iftype == NL80211_IFTYPE_AP ||
Johannes Bergf444de02010-05-05 15:25:02 +02001749 wdev->iftype == NL80211_IFTYPE_MESH_POINT ||
Johannes Berg074ac8d2010-09-16 14:58:22 +02001750 wdev->iftype == NL80211_IFTYPE_MONITOR ||
1751 wdev->iftype == NL80211_IFTYPE_P2P_GO;
Johannes Bergf444de02010-05-05 15:25:02 +02001752}
1753
Johannes Berg683b6d32012-11-08 21:25:48 +01001754static int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
1755 struct genl_info *info,
1756 struct cfg80211_chan_def *chandef)
1757{
Mahesh Paliveladbeca2e2012-11-29 14:11:07 +05301758 u32 control_freq;
Johannes Berg683b6d32012-11-08 21:25:48 +01001759
1760 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
1761 return -EINVAL;
1762
1763 control_freq = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]);
1764
1765 chandef->chan = ieee80211_get_channel(&rdev->wiphy, control_freq);
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001766 chandef->width = NL80211_CHAN_WIDTH_20_NOHT;
1767 chandef->center_freq1 = control_freq;
1768 chandef->center_freq2 = 0;
Johannes Berg683b6d32012-11-08 21:25:48 +01001769
1770 /* Primary channel not allowed */
1771 if (!chandef->chan || chandef->chan->flags & IEEE80211_CHAN_DISABLED)
1772 return -EINVAL;
1773
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001774 if (info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
1775 enum nl80211_channel_type chantype;
Johannes Berg683b6d32012-11-08 21:25:48 +01001776
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001777 chantype = nla_get_u32(
1778 info->attrs[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1779
1780 switch (chantype) {
1781 case NL80211_CHAN_NO_HT:
1782 case NL80211_CHAN_HT20:
1783 case NL80211_CHAN_HT40PLUS:
1784 case NL80211_CHAN_HT40MINUS:
1785 cfg80211_chandef_create(chandef, chandef->chan,
1786 chantype);
1787 break;
1788 default:
Johannes Berg683b6d32012-11-08 21:25:48 +01001789 return -EINVAL;
Johannes Berg683b6d32012-11-08 21:25:48 +01001790 }
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001791 } else if (info->attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
1792 chandef->width =
1793 nla_get_u32(info->attrs[NL80211_ATTR_CHANNEL_WIDTH]);
1794 if (info->attrs[NL80211_ATTR_CENTER_FREQ1])
1795 chandef->center_freq1 =
1796 nla_get_u32(
1797 info->attrs[NL80211_ATTR_CENTER_FREQ1]);
1798 if (info->attrs[NL80211_ATTR_CENTER_FREQ2])
1799 chandef->center_freq2 =
1800 nla_get_u32(
1801 info->attrs[NL80211_ATTR_CENTER_FREQ2]);
1802 }
1803
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001804 if (!cfg80211_chandef_valid(chandef))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001805 return -EINVAL;
1806
Johannes Berg9f5e8f62012-11-22 16:59:45 +01001807 if (!cfg80211_chandef_usable(&rdev->wiphy, chandef,
1808 IEEE80211_CHAN_DISABLED))
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001809 return -EINVAL;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01001810
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02001811 if ((chandef->width == NL80211_CHAN_WIDTH_5 ||
1812 chandef->width == NL80211_CHAN_WIDTH_10) &&
1813 !(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_5_10_MHZ))
1814 return -EINVAL;
1815
Johannes Berg683b6d32012-11-08 21:25:48 +01001816 return 0;
1817}
1818
Johannes Bergf444de02010-05-05 15:25:02 +02001819static int __nl80211_set_channel(struct cfg80211_registered_device *rdev,
1820 struct wireless_dev *wdev,
1821 struct genl_info *info)
1822{
Johannes Berg683b6d32012-11-08 21:25:48 +01001823 struct cfg80211_chan_def chandef;
Johannes Bergf444de02010-05-05 15:25:02 +02001824 int result;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001825 enum nl80211_iftype iftype = NL80211_IFTYPE_MONITOR;
1826
1827 if (wdev)
1828 iftype = wdev->iftype;
Johannes Bergf444de02010-05-05 15:25:02 +02001829
Johannes Bergf444de02010-05-05 15:25:02 +02001830 if (!nl80211_can_set_dev_channel(wdev))
1831 return -EOPNOTSUPP;
1832
Johannes Berg683b6d32012-11-08 21:25:48 +01001833 result = nl80211_parse_chandef(rdev, info, &chandef);
1834 if (result)
1835 return result;
Johannes Bergf444de02010-05-05 15:25:02 +02001836
Johannes Berge8c9bd52012-06-06 08:18:22 +02001837 switch (iftype) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001838 case NL80211_IFTYPE_AP:
1839 case NL80211_IFTYPE_P2P_GO:
1840 if (wdev->beacon_interval) {
1841 result = -EBUSY;
1842 break;
1843 }
Johannes Berg683b6d32012-11-08 21:25:48 +01001844 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &chandef)) {
Johannes Bergaa430da2012-05-16 23:50:18 +02001845 result = -EINVAL;
1846 break;
1847 }
Johannes Berg683b6d32012-11-08 21:25:48 +01001848 wdev->preset_chandef = chandef;
Johannes Bergaa430da2012-05-16 23:50:18 +02001849 result = 0;
1850 break;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001851 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg683b6d32012-11-08 21:25:48 +01001852 result = cfg80211_set_mesh_channel(rdev, wdev, &chandef);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001853 break;
Johannes Berge8c9bd52012-06-06 08:18:22 +02001854 case NL80211_IFTYPE_MONITOR:
Johannes Berg683b6d32012-11-08 21:25:48 +01001855 result = cfg80211_set_monitor_channel(rdev, &chandef);
Johannes Berge8c9bd52012-06-06 08:18:22 +02001856 break;
Johannes Bergaa430da2012-05-16 23:50:18 +02001857 default:
Johannes Berge8c9bd52012-06-06 08:18:22 +02001858 result = -EINVAL;
Johannes Bergf444de02010-05-05 15:25:02 +02001859 }
Johannes Bergf444de02010-05-05 15:25:02 +02001860
1861 return result;
1862}
1863
1864static int nl80211_set_channel(struct sk_buff *skb, struct genl_info *info)
1865{
Johannes Berg4c476992010-10-04 21:36:35 +02001866 struct cfg80211_registered_device *rdev = info->user_ptr[0];
1867 struct net_device *netdev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02001868
Johannes Berg4c476992010-10-04 21:36:35 +02001869 return __nl80211_set_channel(rdev, netdev->ieee80211_ptr, info);
Johannes Bergf444de02010-05-05 15:25:02 +02001870}
1871
Bill Jordane8347eb2010-10-01 13:54:28 -04001872static int nl80211_set_wds_peer(struct sk_buff *skb, struct genl_info *info)
1873{
Johannes Berg43b19952010-10-07 13:10:30 +02001874 struct cfg80211_registered_device *rdev = info->user_ptr[0];
1875 struct net_device *dev = info->user_ptr[1];
1876 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Berg388ac772010-10-07 13:11:09 +02001877 const u8 *bssid;
Bill Jordane8347eb2010-10-01 13:54:28 -04001878
1879 if (!info->attrs[NL80211_ATTR_MAC])
1880 return -EINVAL;
1881
Johannes Berg43b19952010-10-07 13:10:30 +02001882 if (netif_running(dev))
1883 return -EBUSY;
Bill Jordane8347eb2010-10-01 13:54:28 -04001884
Johannes Berg43b19952010-10-07 13:10:30 +02001885 if (!rdev->ops->set_wds_peer)
1886 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04001887
Johannes Berg43b19952010-10-07 13:10:30 +02001888 if (wdev->iftype != NL80211_IFTYPE_WDS)
1889 return -EOPNOTSUPP;
Bill Jordane8347eb2010-10-01 13:54:28 -04001890
1891 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Hila Gonene35e4d22012-06-27 17:19:42 +03001892 return rdev_set_wds_peer(rdev, dev, bssid);
Bill Jordane8347eb2010-10-01 13:54:28 -04001893}
1894
1895
Johannes Berg55682962007-09-20 13:09:35 -04001896static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
1897{
1898 struct cfg80211_registered_device *rdev;
Johannes Bergf444de02010-05-05 15:25:02 +02001899 struct net_device *netdev = NULL;
1900 struct wireless_dev *wdev;
Bill Jordana1e567c2010-09-10 11:22:32 -04001901 int result = 0, rem_txq_params = 0;
Jouni Malinen31888482008-10-30 16:59:24 +02001902 struct nlattr *nl_txq_params;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001903 u32 changed;
1904 u8 retry_short = 0, retry_long = 0;
1905 u32 frag_threshold = 0, rts_threshold = 0;
Lukáš Turek81077e82009-12-21 22:50:47 +01001906 u8 coverage_class = 0;
Johannes Berg55682962007-09-20 13:09:35 -04001907
Johannes Berg5fe231e2013-05-08 21:45:15 +02001908 ASSERT_RTNL();
1909
Johannes Bergf444de02010-05-05 15:25:02 +02001910 /*
1911 * Try to find the wiphy and netdev. Normally this
1912 * function shouldn't need the netdev, but this is
1913 * done for backward compatibility -- previously
1914 * setting the channel was done per wiphy, but now
1915 * it is per netdev. Previous userland like hostapd
1916 * also passed a netdev to set_wiphy, so that it is
1917 * possible to let that go to the right netdev!
1918 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001919
Johannes Bergf444de02010-05-05 15:25:02 +02001920 if (info->attrs[NL80211_ATTR_IFINDEX]) {
1921 int ifindex = nla_get_u32(info->attrs[NL80211_ATTR_IFINDEX]);
1922
1923 netdev = dev_get_by_index(genl_info_net(info), ifindex);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001924 if (netdev && netdev->ieee80211_ptr)
Johannes Bergf444de02010-05-05 15:25:02 +02001925 rdev = wiphy_to_dev(netdev->ieee80211_ptr->wiphy);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001926 else
Johannes Bergf444de02010-05-05 15:25:02 +02001927 netdev = NULL;
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001928 }
1929
Johannes Bergf444de02010-05-05 15:25:02 +02001930 if (!netdev) {
Johannes Berg878d9ec2012-06-15 14:18:32 +02001931 rdev = __cfg80211_rdev_from_attrs(genl_info_net(info),
1932 info->attrs);
Johannes Berg5fe231e2013-05-08 21:45:15 +02001933 if (IS_ERR(rdev))
Johannes Berg4c476992010-10-04 21:36:35 +02001934 return PTR_ERR(rdev);
Johannes Bergf444de02010-05-05 15:25:02 +02001935 wdev = NULL;
1936 netdev = NULL;
1937 result = 0;
Johannes Berg71fe96b2012-10-24 10:04:58 +02001938 } else
Johannes Bergf444de02010-05-05 15:25:02 +02001939 wdev = netdev->ieee80211_ptr;
Johannes Bergf444de02010-05-05 15:25:02 +02001940
1941 /*
1942 * end workaround code, by now the rdev is available
1943 * and locked, and wdev may or may not be NULL.
1944 */
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001945
1946 if (info->attrs[NL80211_ATTR_WIPHY_NAME])
Jouni Malinen31888482008-10-30 16:59:24 +02001947 result = cfg80211_dev_rename(
1948 rdev, nla_data(info->attrs[NL80211_ATTR_WIPHY_NAME]));
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001949
Johannes Berg4bbf4d52009-03-24 09:35:46 +01001950 if (result)
1951 goto bad_res;
Johannes Berg55682962007-09-20 13:09:35 -04001952
Jouni Malinen31888482008-10-30 16:59:24 +02001953 if (info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS]) {
1954 struct ieee80211_txq_params txq_params;
1955 struct nlattr *tb[NL80211_TXQ_ATTR_MAX + 1];
1956
1957 if (!rdev->ops->set_txq_params) {
1958 result = -EOPNOTSUPP;
1959 goto bad_res;
1960 }
1961
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001962 if (!netdev) {
1963 result = -EINVAL;
1964 goto bad_res;
1965 }
1966
Johannes Berg133a3ff2011-11-03 14:50:13 +01001967 if (netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
1968 netdev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
1969 result = -EINVAL;
1970 goto bad_res;
1971 }
1972
Johannes Berg2b5f8b02012-04-02 10:51:55 +02001973 if (!netif_running(netdev)) {
1974 result = -ENETDOWN;
1975 goto bad_res;
1976 }
1977
Jouni Malinen31888482008-10-30 16:59:24 +02001978 nla_for_each_nested(nl_txq_params,
1979 info->attrs[NL80211_ATTR_WIPHY_TXQ_PARAMS],
1980 rem_txq_params) {
1981 nla_parse(tb, NL80211_TXQ_ATTR_MAX,
1982 nla_data(nl_txq_params),
1983 nla_len(nl_txq_params),
1984 txq_params_policy);
1985 result = parse_txq_params(tb, &txq_params);
1986 if (result)
1987 goto bad_res;
1988
Hila Gonene35e4d22012-06-27 17:19:42 +03001989 result = rdev_set_txq_params(rdev, netdev,
1990 &txq_params);
Jouni Malinen31888482008-10-30 16:59:24 +02001991 if (result)
1992 goto bad_res;
1993 }
1994 }
1995
Jouni Malinen72bdcf32008-11-26 16:15:24 +02001996 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg71fe96b2012-10-24 10:04:58 +02001997 result = __nl80211_set_channel(rdev,
1998 nl80211_can_set_dev_channel(wdev) ? wdev : NULL,
1999 info);
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002000 if (result)
2001 goto bad_res;
2002 }
2003
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002004 if (info->attrs[NL80211_ATTR_WIPHY_TX_POWER_SETTING]) {
Johannes Bergc8442112012-10-24 10:17:18 +02002005 struct wireless_dev *txp_wdev = wdev;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002006 enum nl80211_tx_power_setting type;
2007 int idx, mbm = 0;
2008
Johannes Bergc8442112012-10-24 10:17:18 +02002009 if (!(rdev->wiphy.features & NL80211_FEATURE_VIF_TXPOWER))
2010 txp_wdev = NULL;
2011
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002012 if (!rdev->ops->set_tx_power) {
Jiri Slaby60ea3852010-07-07 15:02:46 +02002013 result = -EOPNOTSUPP;
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002014 goto bad_res;
2015 }
2016
2017 idx = NL80211_ATTR_WIPHY_TX_POWER_SETTING;
2018 type = nla_get_u32(info->attrs[idx]);
2019
2020 if (!info->attrs[NL80211_ATTR_WIPHY_TX_POWER_LEVEL] &&
2021 (type != NL80211_TX_POWER_AUTOMATIC)) {
2022 result = -EINVAL;
2023 goto bad_res;
2024 }
2025
2026 if (type != NL80211_TX_POWER_AUTOMATIC) {
2027 idx = NL80211_ATTR_WIPHY_TX_POWER_LEVEL;
2028 mbm = nla_get_u32(info->attrs[idx]);
2029 }
2030
Johannes Bergc8442112012-10-24 10:17:18 +02002031 result = rdev_set_tx_power(rdev, txp_wdev, type, mbm);
Juuso Oikarinen98d2ff82010-06-23 12:12:38 +03002032 if (result)
2033 goto bad_res;
2034 }
2035
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002036 if (info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX] &&
2037 info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]) {
2038 u32 tx_ant, rx_ant;
Bruno Randolf7f531e02010-12-16 11:30:22 +09002039 if ((!rdev->wiphy.available_antennas_tx &&
2040 !rdev->wiphy.available_antennas_rx) ||
2041 !rdev->ops->set_antenna) {
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002042 result = -EOPNOTSUPP;
2043 goto bad_res;
2044 }
2045
2046 tx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_TX]);
2047 rx_ant = nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_ANTENNA_RX]);
2048
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002049 /* reject antenna configurations which don't match the
Bruno Randolf7f531e02010-12-16 11:30:22 +09002050 * available antenna masks, except for the "all" mask */
2051 if ((~tx_ant && (tx_ant & ~rdev->wiphy.available_antennas_tx)) ||
2052 (~rx_ant && (rx_ant & ~rdev->wiphy.available_antennas_rx))) {
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002053 result = -EINVAL;
2054 goto bad_res;
2055 }
2056
Bruno Randolf7f531e02010-12-16 11:30:22 +09002057 tx_ant = tx_ant & rdev->wiphy.available_antennas_tx;
2058 rx_ant = rx_ant & rdev->wiphy.available_antennas_rx;
Bruno Randolfa7ffac92010-12-08 13:59:24 +09002059
Hila Gonene35e4d22012-06-27 17:19:42 +03002060 result = rdev_set_antenna(rdev, tx_ant, rx_ant);
Bruno Randolfafe0cbf2010-11-10 12:50:50 +09002061 if (result)
2062 goto bad_res;
2063 }
2064
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002065 changed = 0;
2066
2067 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]) {
2068 retry_short = nla_get_u8(
2069 info->attrs[NL80211_ATTR_WIPHY_RETRY_SHORT]);
2070 if (retry_short == 0) {
2071 result = -EINVAL;
2072 goto bad_res;
2073 }
2074 changed |= WIPHY_PARAM_RETRY_SHORT;
2075 }
2076
2077 if (info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]) {
2078 retry_long = nla_get_u8(
2079 info->attrs[NL80211_ATTR_WIPHY_RETRY_LONG]);
2080 if (retry_long == 0) {
2081 result = -EINVAL;
2082 goto bad_res;
2083 }
2084 changed |= WIPHY_PARAM_RETRY_LONG;
2085 }
2086
2087 if (info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]) {
2088 frag_threshold = nla_get_u32(
2089 info->attrs[NL80211_ATTR_WIPHY_FRAG_THRESHOLD]);
2090 if (frag_threshold < 256) {
2091 result = -EINVAL;
2092 goto bad_res;
2093 }
2094 if (frag_threshold != (u32) -1) {
2095 /*
2096 * Fragments (apart from the last one) are required to
2097 * have even length. Make the fragmentation code
2098 * simpler by stripping LSB should someone try to use
2099 * odd threshold value.
2100 */
2101 frag_threshold &= ~0x1;
2102 }
2103 changed |= WIPHY_PARAM_FRAG_THRESHOLD;
2104 }
2105
2106 if (info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]) {
2107 rts_threshold = nla_get_u32(
2108 info->attrs[NL80211_ATTR_WIPHY_RTS_THRESHOLD]);
2109 changed |= WIPHY_PARAM_RTS_THRESHOLD;
2110 }
2111
Lukáš Turek81077e82009-12-21 22:50:47 +01002112 if (info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]) {
2113 coverage_class = nla_get_u8(
2114 info->attrs[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
2115 changed |= WIPHY_PARAM_COVERAGE_CLASS;
2116 }
2117
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002118 if (changed) {
2119 u8 old_retry_short, old_retry_long;
2120 u32 old_frag_threshold, old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002121 u8 old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002122
2123 if (!rdev->ops->set_wiphy_params) {
2124 result = -EOPNOTSUPP;
2125 goto bad_res;
2126 }
2127
2128 old_retry_short = rdev->wiphy.retry_short;
2129 old_retry_long = rdev->wiphy.retry_long;
2130 old_frag_threshold = rdev->wiphy.frag_threshold;
2131 old_rts_threshold = rdev->wiphy.rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002132 old_coverage_class = rdev->wiphy.coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002133
2134 if (changed & WIPHY_PARAM_RETRY_SHORT)
2135 rdev->wiphy.retry_short = retry_short;
2136 if (changed & WIPHY_PARAM_RETRY_LONG)
2137 rdev->wiphy.retry_long = retry_long;
2138 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
2139 rdev->wiphy.frag_threshold = frag_threshold;
2140 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
2141 rdev->wiphy.rts_threshold = rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002142 if (changed & WIPHY_PARAM_COVERAGE_CLASS)
2143 rdev->wiphy.coverage_class = coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002144
Hila Gonene35e4d22012-06-27 17:19:42 +03002145 result = rdev_set_wiphy_params(rdev, changed);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002146 if (result) {
2147 rdev->wiphy.retry_short = old_retry_short;
2148 rdev->wiphy.retry_long = old_retry_long;
2149 rdev->wiphy.frag_threshold = old_frag_threshold;
2150 rdev->wiphy.rts_threshold = old_rts_threshold;
Lukáš Turek81077e82009-12-21 22:50:47 +01002151 rdev->wiphy.coverage_class = old_coverage_class;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002152 }
2153 }
Jouni Malinen72bdcf32008-11-26 16:15:24 +02002154
Johannes Berg306d6112008-12-08 12:39:04 +01002155 bad_res:
Johannes Bergf444de02010-05-05 15:25:02 +02002156 if (netdev)
2157 dev_put(netdev);
Johannes Berg55682962007-09-20 13:09:35 -04002158 return result;
2159}
2160
Johannes Berg71bbc992012-06-15 15:30:18 +02002161static inline u64 wdev_id(struct wireless_dev *wdev)
2162{
2163 return (u64)wdev->identifier |
2164 ((u64)wiphy_to_dev(wdev->wiphy)->wiphy_idx << 32);
2165}
Johannes Berg55682962007-09-20 13:09:35 -04002166
Johannes Berg683b6d32012-11-08 21:25:48 +01002167static int nl80211_send_chandef(struct sk_buff *msg,
2168 struct cfg80211_chan_def *chandef)
2169{
Johannes Berg9f5e8f62012-11-22 16:59:45 +01002170 WARN_ON(!cfg80211_chandef_valid(chandef));
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002171
Johannes Berg683b6d32012-11-08 21:25:48 +01002172 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ,
2173 chandef->chan->center_freq))
2174 return -ENOBUFS;
Johannes Berg3d9d1d62012-11-08 23:14:50 +01002175 switch (chandef->width) {
2176 case NL80211_CHAN_WIDTH_20_NOHT:
2177 case NL80211_CHAN_WIDTH_20:
2178 case NL80211_CHAN_WIDTH_40:
2179 if (nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
2180 cfg80211_get_chandef_type(chandef)))
2181 return -ENOBUFS;
2182 break;
2183 default:
2184 break;
2185 }
2186 if (nla_put_u32(msg, NL80211_ATTR_CHANNEL_WIDTH, chandef->width))
2187 return -ENOBUFS;
2188 if (nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ1, chandef->center_freq1))
2189 return -ENOBUFS;
2190 if (chandef->center_freq2 &&
2191 nla_put_u32(msg, NL80211_ATTR_CENTER_FREQ2, chandef->center_freq2))
Johannes Berg683b6d32012-11-08 21:25:48 +01002192 return -ENOBUFS;
2193 return 0;
2194}
2195
Eric W. Biederman15e47302012-09-07 20:12:54 +00002196static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
Johannes Bergd7264052009-04-19 16:23:20 +02002197 struct cfg80211_registered_device *rdev,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002198 struct wireless_dev *wdev)
Johannes Berg55682962007-09-20 13:09:35 -04002199{
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002200 struct net_device *dev = wdev->netdev;
Johannes Berg55682962007-09-20 13:09:35 -04002201 void *hdr;
2202
Eric W. Biederman15e47302012-09-07 20:12:54 +00002203 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_INTERFACE);
Johannes Berg55682962007-09-20 13:09:35 -04002204 if (!hdr)
2205 return -1;
2206
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002207 if (dev &&
2208 (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002209 nla_put_string(msg, NL80211_ATTR_IFNAME, dev->name)))
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002210 goto nla_put_failure;
2211
2212 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
2213 nla_put_u32(msg, NL80211_ATTR_IFTYPE, wdev->iftype) ||
Johannes Berg71bbc992012-06-15 15:30:18 +02002214 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
Johannes Berg98104fde2012-06-16 00:19:54 +02002215 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, wdev_address(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04002216 nla_put_u32(msg, NL80211_ATTR_GENERATION,
2217 rdev->devlist_generation ^
2218 (cfg80211_rdev_list_generation << 2)))
2219 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02002220
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002221 if (rdev->ops->get_channel) {
Johannes Berg683b6d32012-11-08 21:25:48 +01002222 int ret;
2223 struct cfg80211_chan_def chandef;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02002224
Johannes Berg683b6d32012-11-08 21:25:48 +01002225 ret = rdev_get_channel(rdev, wdev, &chandef);
2226 if (ret == 0) {
2227 if (nl80211_send_chandef(msg, &chandef))
2228 goto nla_put_failure;
2229 }
Pontus Fuchsd91df0e2012-04-03 16:39:58 +02002230 }
2231
Antonio Quartullib84e7a02012-11-07 12:52:20 +01002232 if (wdev->ssid_len) {
2233 if (nla_put(msg, NL80211_ATTR_SSID, wdev->ssid_len, wdev->ssid))
2234 goto nla_put_failure;
2235 }
2236
Johannes Berg55682962007-09-20 13:09:35 -04002237 return genlmsg_end(msg, hdr);
2238
2239 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07002240 genlmsg_cancel(msg, hdr);
2241 return -EMSGSIZE;
Johannes Berg55682962007-09-20 13:09:35 -04002242}
2243
2244static int nl80211_dump_interface(struct sk_buff *skb, struct netlink_callback *cb)
2245{
2246 int wp_idx = 0;
2247 int if_idx = 0;
2248 int wp_start = cb->args[0];
2249 int if_start = cb->args[1];
Johannes Bergf5ea9122009-08-07 16:17:38 +02002250 struct cfg80211_registered_device *rdev;
Johannes Berg55682962007-09-20 13:09:35 -04002251 struct wireless_dev *wdev;
2252
Johannes Berg5fe231e2013-05-08 21:45:15 +02002253 rtnl_lock();
Johannes Bergf5ea9122009-08-07 16:17:38 +02002254 list_for_each_entry(rdev, &cfg80211_rdev_list, list) {
2255 if (!net_eq(wiphy_net(&rdev->wiphy), sock_net(skb->sk)))
Johannes Berg463d0182009-07-14 00:33:35 +02002256 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002257 if (wp_idx < wp_start) {
2258 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002259 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002260 }
Johannes Berg55682962007-09-20 13:09:35 -04002261 if_idx = 0;
2262
Johannes Berg89a54e42012-06-15 14:33:17 +02002263 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002264 if (if_idx < if_start) {
2265 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002266 continue;
Johannes Bergbba95fe2008-07-29 13:22:51 +02002267 }
Eric W. Biederman15e47302012-09-07 20:12:54 +00002268 if (nl80211_send_iface(skb, NETLINK_CB(cb->skb).portid,
Johannes Berg55682962007-09-20 13:09:35 -04002269 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002270 rdev, wdev) < 0) {
Johannes Bergbba95fe2008-07-29 13:22:51 +02002271 goto out;
2272 }
2273 if_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002274 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002275
2276 wp_idx++;
Johannes Berg55682962007-09-20 13:09:35 -04002277 }
Johannes Bergbba95fe2008-07-29 13:22:51 +02002278 out:
Johannes Berg5fe231e2013-05-08 21:45:15 +02002279 rtnl_unlock();
Johannes Berg55682962007-09-20 13:09:35 -04002280
2281 cb->args[0] = wp_idx;
2282 cb->args[1] = if_idx;
2283
2284 return skb->len;
2285}
2286
2287static int nl80211_get_interface(struct sk_buff *skb, struct genl_info *info)
2288{
2289 struct sk_buff *msg;
Johannes Berg4c476992010-10-04 21:36:35 +02002290 struct cfg80211_registered_device *dev = info->user_ptr[0];
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002291 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002292
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002293 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04002294 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02002295 return -ENOMEM;
Johannes Berg55682962007-09-20 13:09:35 -04002296
Eric W. Biederman15e47302012-09-07 20:12:54 +00002297 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg72fb2ab2012-06-15 17:52:47 +02002298 dev, wdev) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02002299 nlmsg_free(msg);
2300 return -ENOBUFS;
2301 }
Johannes Berg55682962007-09-20 13:09:35 -04002302
Johannes Berg134e6372009-07-10 09:51:34 +00002303 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002304}
2305
Michael Wu66f7ac52008-01-31 19:48:22 +01002306static const struct nla_policy mntr_flags_policy[NL80211_MNTR_FLAG_MAX + 1] = {
2307 [NL80211_MNTR_FLAG_FCSFAIL] = { .type = NLA_FLAG },
2308 [NL80211_MNTR_FLAG_PLCPFAIL] = { .type = NLA_FLAG },
2309 [NL80211_MNTR_FLAG_CONTROL] = { .type = NLA_FLAG },
2310 [NL80211_MNTR_FLAG_OTHER_BSS] = { .type = NLA_FLAG },
2311 [NL80211_MNTR_FLAG_COOK_FRAMES] = { .type = NLA_FLAG },
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002312 [NL80211_MNTR_FLAG_ACTIVE] = { .type = NLA_FLAG },
Michael Wu66f7ac52008-01-31 19:48:22 +01002313};
2314
2315static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
2316{
2317 struct nlattr *flags[NL80211_MNTR_FLAG_MAX + 1];
2318 int flag;
2319
2320 *mntrflags = 0;
2321
2322 if (!nla)
2323 return -EINVAL;
2324
2325 if (nla_parse_nested(flags, NL80211_MNTR_FLAG_MAX,
2326 nla, mntr_flags_policy))
2327 return -EINVAL;
2328
2329 for (flag = 1; flag <= NL80211_MNTR_FLAG_MAX; flag++)
2330 if (flags[flag])
2331 *mntrflags |= (1<<flag);
2332
2333 return 0;
2334}
2335
Johannes Berg9bc383d2009-11-19 11:55:19 +01002336static int nl80211_valid_4addr(struct cfg80211_registered_device *rdev,
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002337 struct net_device *netdev, u8 use_4addr,
2338 enum nl80211_iftype iftype)
Johannes Berg9bc383d2009-11-19 11:55:19 +01002339{
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002340 if (!use_4addr) {
Jiri Pirkof350a0a82010-06-15 06:50:45 +00002341 if (netdev && (netdev->priv_flags & IFF_BRIDGE_PORT))
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002342 return -EBUSY;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002343 return 0;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002344 }
Johannes Berg9bc383d2009-11-19 11:55:19 +01002345
2346 switch (iftype) {
2347 case NL80211_IFTYPE_AP_VLAN:
2348 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_AP)
2349 return 0;
2350 break;
2351 case NL80211_IFTYPE_STATION:
2352 if (rdev->wiphy.flags & WIPHY_FLAG_4ADDR_STATION)
2353 return 0;
2354 break;
2355 default:
2356 break;
2357 }
2358
2359 return -EOPNOTSUPP;
2360}
2361
Johannes Berg55682962007-09-20 13:09:35 -04002362static int nl80211_set_interface(struct sk_buff *skb, struct genl_info *info)
2363{
Johannes Berg4c476992010-10-04 21:36:35 +02002364 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002365 struct vif_params params;
Johannes Berge36d56b2009-06-09 21:04:43 +02002366 int err;
Johannes Berg04a773a2009-04-19 21:24:32 +02002367 enum nl80211_iftype otype, ntype;
Johannes Berg4c476992010-10-04 21:36:35 +02002368 struct net_device *dev = info->user_ptr[1];
Johannes Berg92ffe052008-09-16 20:39:36 +02002369 u32 _flags, *flags = NULL;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002370 bool change = false;
Johannes Berg55682962007-09-20 13:09:35 -04002371
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002372 memset(&params, 0, sizeof(params));
2373
Johannes Berg04a773a2009-04-19 21:24:32 +02002374 otype = ntype = dev->ieee80211_ptr->iftype;
Johannes Berg55682962007-09-20 13:09:35 -04002375
Johannes Berg723b0382008-09-16 20:22:09 +02002376 if (info->attrs[NL80211_ATTR_IFTYPE]) {
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002377 ntype = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
Johannes Berg04a773a2009-04-19 21:24:32 +02002378 if (otype != ntype)
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002379 change = true;
Johannes Berg4c476992010-10-04 21:36:35 +02002380 if (ntype > NL80211_IFTYPE_MAX)
2381 return -EINVAL;
Johannes Berg723b0382008-09-16 20:22:09 +02002382 }
2383
Johannes Berg92ffe052008-09-16 20:39:36 +02002384 if (info->attrs[NL80211_ATTR_MESH_ID]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01002385 struct wireless_dev *wdev = dev->ieee80211_ptr;
2386
Johannes Berg4c476992010-10-04 21:36:35 +02002387 if (ntype != NL80211_IFTYPE_MESH_POINT)
2388 return -EINVAL;
Johannes Berg29cbe682010-12-03 09:20:44 +01002389 if (netif_running(dev))
2390 return -EBUSY;
2391
2392 wdev_lock(wdev);
2393 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2394 IEEE80211_MAX_MESH_ID_LEN);
2395 wdev->mesh_id_up_len =
2396 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2397 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2398 wdev->mesh_id_up_len);
2399 wdev_unlock(wdev);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002400 }
2401
Felix Fietkau8b787642009-11-10 18:53:10 +01002402 if (info->attrs[NL80211_ATTR_4ADDR]) {
2403 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
2404 change = true;
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002405 err = nl80211_valid_4addr(rdev, dev, params.use_4addr, ntype);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002406 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002407 return err;
Felix Fietkau8b787642009-11-10 18:53:10 +01002408 } else {
2409 params.use_4addr = -1;
2410 }
2411
Johannes Berg92ffe052008-09-16 20:39:36 +02002412 if (info->attrs[NL80211_ATTR_MNTR_FLAGS]) {
Johannes Berg4c476992010-10-04 21:36:35 +02002413 if (ntype != NL80211_IFTYPE_MONITOR)
2414 return -EINVAL;
Johannes Berg92ffe052008-09-16 20:39:36 +02002415 err = parse_monitor_flags(info->attrs[NL80211_ATTR_MNTR_FLAGS],
2416 &_flags);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002417 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002418 return err;
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002419
2420 flags = &_flags;
2421 change = true;
Johannes Berg92ffe052008-09-16 20:39:36 +02002422 }
Johannes Berg3b858752009-03-12 09:55:09 +01002423
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002424 if (flags && (*flags & NL80211_MNTR_FLAG_ACTIVE) &&
2425 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2426 return -EOPNOTSUPP;
2427
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002428 if (change)
Johannes Berg3d54d252009-08-21 14:51:05 +02002429 err = cfg80211_change_iface(rdev, dev, ntype, flags, &params);
Johannes Bergac7f9cf2009-03-21 17:07:59 +01002430 else
2431 err = 0;
Johannes Berg60719ff2008-09-16 14:55:09 +02002432
Johannes Berg9bc383d2009-11-19 11:55:19 +01002433 if (!err && params.use_4addr != -1)
2434 dev->ieee80211_ptr->use_4addr = params.use_4addr;
2435
Johannes Berg55682962007-09-20 13:09:35 -04002436 return err;
2437}
2438
2439static int nl80211_new_interface(struct sk_buff *skb, struct genl_info *info)
2440{
Johannes Berg4c476992010-10-04 21:36:35 +02002441 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002442 struct vif_params params;
Johannes Berg84efbb82012-06-16 00:00:26 +02002443 struct wireless_dev *wdev;
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002444 struct sk_buff *msg;
Johannes Berg55682962007-09-20 13:09:35 -04002445 int err;
2446 enum nl80211_iftype type = NL80211_IFTYPE_UNSPECIFIED;
Michael Wu66f7ac52008-01-31 19:48:22 +01002447 u32 flags;
Johannes Berg55682962007-09-20 13:09:35 -04002448
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002449 memset(&params, 0, sizeof(params));
2450
Johannes Berg55682962007-09-20 13:09:35 -04002451 if (!info->attrs[NL80211_ATTR_IFNAME])
2452 return -EINVAL;
2453
2454 if (info->attrs[NL80211_ATTR_IFTYPE]) {
2455 type = nla_get_u32(info->attrs[NL80211_ATTR_IFTYPE]);
2456 if (type > NL80211_IFTYPE_MAX)
2457 return -EINVAL;
2458 }
2459
Johannes Berg79c97e92009-07-07 03:56:12 +02002460 if (!rdev->ops->add_virtual_intf ||
Johannes Berg4c476992010-10-04 21:36:35 +02002461 !(rdev->wiphy.interface_modes & (1 << type)))
2462 return -EOPNOTSUPP;
Johannes Berg55682962007-09-20 13:09:35 -04002463
Arend van Spriel1c18f142013-01-08 10:17:27 +01002464 if (type == NL80211_IFTYPE_P2P_DEVICE && info->attrs[NL80211_ATTR_MAC]) {
2465 nla_memcpy(params.macaddr, info->attrs[NL80211_ATTR_MAC],
2466 ETH_ALEN);
2467 if (!is_valid_ether_addr(params.macaddr))
2468 return -EADDRNOTAVAIL;
2469 }
2470
Johannes Berg9bc383d2009-11-19 11:55:19 +01002471 if (info->attrs[NL80211_ATTR_4ADDR]) {
Felix Fietkau8b787642009-11-10 18:53:10 +01002472 params.use_4addr = !!nla_get_u8(info->attrs[NL80211_ATTR_4ADDR]);
Johannes Bergad4bb6f2009-11-19 00:56:30 +01002473 err = nl80211_valid_4addr(rdev, NULL, params.use_4addr, type);
Johannes Berg9bc383d2009-11-19 11:55:19 +01002474 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02002475 return err;
Johannes Berg9bc383d2009-11-19 11:55:19 +01002476 }
Felix Fietkau8b787642009-11-10 18:53:10 +01002477
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002478 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
2479 if (!msg)
2480 return -ENOMEM;
2481
Michael Wu66f7ac52008-01-31 19:48:22 +01002482 err = parse_monitor_flags(type == NL80211_IFTYPE_MONITOR ?
2483 info->attrs[NL80211_ATTR_MNTR_FLAGS] : NULL,
2484 &flags);
Felix Fietkaue057d3c2013-05-28 13:01:52 +02002485
2486 if (!err && (flags & NL80211_MNTR_FLAG_ACTIVE) &&
2487 !(rdev->wiphy.features & NL80211_FEATURE_ACTIVE_MONITOR))
2488 return -EOPNOTSUPP;
2489
Hila Gonene35e4d22012-06-27 17:19:42 +03002490 wdev = rdev_add_virtual_intf(rdev,
2491 nla_data(info->attrs[NL80211_ATTR_IFNAME]),
2492 type, err ? NULL : &flags, &params);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002493 if (IS_ERR(wdev)) {
2494 nlmsg_free(msg);
Johannes Berg84efbb82012-06-16 00:00:26 +02002495 return PTR_ERR(wdev);
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002496 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01002497
Johannes Berg98104fde2012-06-16 00:19:54 +02002498 switch (type) {
2499 case NL80211_IFTYPE_MESH_POINT:
2500 if (!info->attrs[NL80211_ATTR_MESH_ID])
2501 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002502 wdev_lock(wdev);
2503 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN !=
2504 IEEE80211_MAX_MESH_ID_LEN);
2505 wdev->mesh_id_up_len =
2506 nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
2507 memcpy(wdev->ssid, nla_data(info->attrs[NL80211_ATTR_MESH_ID]),
2508 wdev->mesh_id_up_len);
2509 wdev_unlock(wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02002510 break;
2511 case NL80211_IFTYPE_P2P_DEVICE:
2512 /*
2513 * P2P Device doesn't have a netdev, so doesn't go
2514 * through the netdev notifier and must be added here
2515 */
2516 mutex_init(&wdev->mtx);
2517 INIT_LIST_HEAD(&wdev->event_list);
2518 spin_lock_init(&wdev->event_lock);
2519 INIT_LIST_HEAD(&wdev->mgmt_registrations);
2520 spin_lock_init(&wdev->mgmt_registrations_lock);
2521
Johannes Berg98104fde2012-06-16 00:19:54 +02002522 wdev->identifier = ++rdev->wdev_id;
2523 list_add_rcu(&wdev->list, &rdev->wdev_list);
2524 rdev->devlist_generation++;
Johannes Berg98104fde2012-06-16 00:19:54 +02002525 break;
2526 default:
2527 break;
Johannes Berg29cbe682010-12-03 09:20:44 +01002528 }
2529
Eric W. Biederman15e47302012-09-07 20:12:54 +00002530 if (nl80211_send_iface(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg1c90f9d2012-06-16 00:05:37 +02002531 rdev, wdev) < 0) {
2532 nlmsg_free(msg);
2533 return -ENOBUFS;
2534 }
2535
2536 return genlmsg_reply(msg, info);
Johannes Berg55682962007-09-20 13:09:35 -04002537}
2538
2539static int nl80211_del_interface(struct sk_buff *skb, struct genl_info *info)
2540{
Johannes Berg4c476992010-10-04 21:36:35 +02002541 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg84efbb82012-06-16 00:00:26 +02002542 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg55682962007-09-20 13:09:35 -04002543
Johannes Berg4c476992010-10-04 21:36:35 +02002544 if (!rdev->ops->del_virtual_intf)
2545 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002546
Johannes Berg84efbb82012-06-16 00:00:26 +02002547 /*
2548 * If we remove a wireless device without a netdev then clear
2549 * user_ptr[1] so that nl80211_post_doit won't dereference it
2550 * to check if it needs to do dev_put(). Otherwise it crashes
2551 * since the wdev has been freed, unlike with a netdev where
2552 * we need the dev_put() for the netdev to really be freed.
2553 */
2554 if (!wdev->netdev)
2555 info->user_ptr[1] = NULL;
2556
Hila Gonene35e4d22012-06-27 17:19:42 +03002557 return rdev_del_virtual_intf(rdev, wdev);
Johannes Berg55682962007-09-20 13:09:35 -04002558}
2559
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002560static int nl80211_set_noack_map(struct sk_buff *skb, struct genl_info *info)
2561{
2562 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2563 struct net_device *dev = info->user_ptr[1];
2564 u16 noack_map;
2565
2566 if (!info->attrs[NL80211_ATTR_NOACK_MAP])
2567 return -EINVAL;
2568
2569 if (!rdev->ops->set_noack_map)
2570 return -EOPNOTSUPP;
2571
2572 noack_map = nla_get_u16(info->attrs[NL80211_ATTR_NOACK_MAP]);
2573
Hila Gonene35e4d22012-06-27 17:19:42 +03002574 return rdev_set_noack_map(rdev, dev, noack_map);
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01002575}
2576
Johannes Berg41ade002007-12-19 02:03:29 +01002577struct get_key_cookie {
2578 struct sk_buff *msg;
2579 int error;
Johannes Bergb9454e82009-07-08 13:29:08 +02002580 int idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002581};
2582
2583static void get_key_callback(void *c, struct key_params *params)
2584{
Johannes Bergb9454e82009-07-08 13:29:08 +02002585 struct nlattr *key;
Johannes Berg41ade002007-12-19 02:03:29 +01002586 struct get_key_cookie *cookie = c;
2587
David S. Miller9360ffd2012-03-29 04:41:26 -04002588 if ((params->key &&
2589 nla_put(cookie->msg, NL80211_ATTR_KEY_DATA,
2590 params->key_len, params->key)) ||
2591 (params->seq &&
2592 nla_put(cookie->msg, NL80211_ATTR_KEY_SEQ,
2593 params->seq_len, params->seq)) ||
2594 (params->cipher &&
2595 nla_put_u32(cookie->msg, NL80211_ATTR_KEY_CIPHER,
2596 params->cipher)))
2597 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002598
Johannes Bergb9454e82009-07-08 13:29:08 +02002599 key = nla_nest_start(cookie->msg, NL80211_ATTR_KEY);
2600 if (!key)
2601 goto nla_put_failure;
2602
David S. Miller9360ffd2012-03-29 04:41:26 -04002603 if ((params->key &&
2604 nla_put(cookie->msg, NL80211_KEY_DATA,
2605 params->key_len, params->key)) ||
2606 (params->seq &&
2607 nla_put(cookie->msg, NL80211_KEY_SEQ,
2608 params->seq_len, params->seq)) ||
2609 (params->cipher &&
2610 nla_put_u32(cookie->msg, NL80211_KEY_CIPHER,
2611 params->cipher)))
2612 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002613
David S. Miller9360ffd2012-03-29 04:41:26 -04002614 if (nla_put_u8(cookie->msg, NL80211_ATTR_KEY_IDX, cookie->idx))
2615 goto nla_put_failure;
Johannes Bergb9454e82009-07-08 13:29:08 +02002616
2617 nla_nest_end(cookie->msg, key);
2618
Johannes Berg41ade002007-12-19 02:03:29 +01002619 return;
2620 nla_put_failure:
2621 cookie->error = 1;
2622}
2623
2624static int nl80211_get_key(struct sk_buff *skb, struct genl_info *info)
2625{
Johannes Berg4c476992010-10-04 21:36:35 +02002626 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002627 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002628 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002629 u8 key_idx = 0;
Johannes Berge31b8212010-10-05 19:39:30 +02002630 const u8 *mac_addr = NULL;
2631 bool pairwise;
Johannes Berg41ade002007-12-19 02:03:29 +01002632 struct get_key_cookie cookie = {
2633 .error = 0,
2634 };
2635 void *hdr;
2636 struct sk_buff *msg;
2637
2638 if (info->attrs[NL80211_ATTR_KEY_IDX])
2639 key_idx = nla_get_u8(info->attrs[NL80211_ATTR_KEY_IDX]);
2640
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02002641 if (key_idx > 5)
Johannes Berg41ade002007-12-19 02:03:29 +01002642 return -EINVAL;
2643
2644 if (info->attrs[NL80211_ATTR_MAC])
2645 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2646
Johannes Berge31b8212010-10-05 19:39:30 +02002647 pairwise = !!mac_addr;
2648 if (info->attrs[NL80211_ATTR_KEY_TYPE]) {
2649 u32 kt = nla_get_u32(info->attrs[NL80211_ATTR_KEY_TYPE]);
2650 if (kt >= NUM_NL80211_KEYTYPES)
2651 return -EINVAL;
2652 if (kt != NL80211_KEYTYPE_GROUP &&
2653 kt != NL80211_KEYTYPE_PAIRWISE)
2654 return -EINVAL;
2655 pairwise = kt == NL80211_KEYTYPE_PAIRWISE;
2656 }
2657
Johannes Berg4c476992010-10-04 21:36:35 +02002658 if (!rdev->ops->get_key)
2659 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002660
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07002661 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02002662 if (!msg)
2663 return -ENOMEM;
Johannes Berg41ade002007-12-19 02:03:29 +01002664
Eric W. Biederman15e47302012-09-07 20:12:54 +00002665 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg41ade002007-12-19 02:03:29 +01002666 NL80211_CMD_NEW_KEY);
Dan Carpentercb35fba2013-08-14 14:50:01 +03002667 if (!hdr)
2668 return -ENOBUFS;
Johannes Berg41ade002007-12-19 02:03:29 +01002669
2670 cookie.msg = msg;
Johannes Bergb9454e82009-07-08 13:29:08 +02002671 cookie.idx = key_idx;
Johannes Berg41ade002007-12-19 02:03:29 +01002672
David S. Miller9360ffd2012-03-29 04:41:26 -04002673 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
2674 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_idx))
2675 goto nla_put_failure;
2676 if (mac_addr &&
2677 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
2678 goto nla_put_failure;
Johannes Berg41ade002007-12-19 02:03:29 +01002679
Johannes Berge31b8212010-10-05 19:39:30 +02002680 if (pairwise && mac_addr &&
2681 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2682 return -ENOENT;
2683
Hila Gonene35e4d22012-06-27 17:19:42 +03002684 err = rdev_get_key(rdev, dev, key_idx, pairwise, mac_addr, &cookie,
2685 get_key_callback);
Johannes Berg41ade002007-12-19 02:03:29 +01002686
2687 if (err)
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002688 goto free_msg;
Johannes Berg41ade002007-12-19 02:03:29 +01002689
2690 if (cookie.error)
2691 goto nla_put_failure;
2692
2693 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02002694 return genlmsg_reply(msg, info);
Johannes Berg41ade002007-12-19 02:03:29 +01002695
2696 nla_put_failure:
2697 err = -ENOBUFS;
Niko Jokinen6c95e2a2009-07-15 11:00:53 +03002698 free_msg:
Johannes Berg41ade002007-12-19 02:03:29 +01002699 nlmsg_free(msg);
Johannes Berg41ade002007-12-19 02:03:29 +01002700 return err;
2701}
2702
2703static int nl80211_set_key(struct sk_buff *skb, struct genl_info *info)
2704{
Johannes Berg4c476992010-10-04 21:36:35 +02002705 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergb9454e82009-07-08 13:29:08 +02002706 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002707 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002708 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002709
Johannes Bergb9454e82009-07-08 13:29:08 +02002710 err = nl80211_parse_key(info, &key);
2711 if (err)
2712 return err;
2713
2714 if (key.idx < 0)
Johannes Berg41ade002007-12-19 02:03:29 +01002715 return -EINVAL;
2716
Johannes Bergb9454e82009-07-08 13:29:08 +02002717 /* only support setting default key */
2718 if (!key.def && !key.defmgmt)
Johannes Berg41ade002007-12-19 02:03:29 +01002719 return -EINVAL;
2720
Johannes Bergfffd0932009-07-08 14:22:54 +02002721 wdev_lock(dev->ieee80211_ptr);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002722
2723 if (key.def) {
2724 if (!rdev->ops->set_default_key) {
2725 err = -EOPNOTSUPP;
2726 goto out;
2727 }
2728
2729 err = nl80211_key_allowed(dev->ieee80211_ptr);
2730 if (err)
2731 goto out;
2732
Hila Gonene35e4d22012-06-27 17:19:42 +03002733 err = rdev_set_default_key(rdev, dev, key.idx,
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002734 key.def_uni, key.def_multi);
2735
2736 if (err)
2737 goto out;
Johannes Bergfffd0932009-07-08 14:22:54 +02002738
Johannes Berg3d23e342009-09-29 23:27:28 +02002739#ifdef CONFIG_CFG80211_WEXT
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002740 dev->ieee80211_ptr->wext.default_key = key.idx;
Johannes Berg08645122009-05-11 13:54:58 +02002741#endif
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002742 } else {
2743 if (key.def_uni || !key.def_multi) {
2744 err = -EINVAL;
2745 goto out;
2746 }
2747
2748 if (!rdev->ops->set_default_mgmt_key) {
2749 err = -EOPNOTSUPP;
2750 goto out;
2751 }
2752
2753 err = nl80211_key_allowed(dev->ieee80211_ptr);
2754 if (err)
2755 goto out;
2756
Hila Gonene35e4d22012-06-27 17:19:42 +03002757 err = rdev_set_default_mgmt_key(rdev, dev, key.idx);
Johannes Bergdbd2fd62010-12-09 19:58:59 +01002758 if (err)
2759 goto out;
2760
2761#ifdef CONFIG_CFG80211_WEXT
2762 dev->ieee80211_ptr->wext.default_mgmt_key = key.idx;
2763#endif
2764 }
2765
2766 out:
Johannes Bergfffd0932009-07-08 14:22:54 +02002767 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002768
Johannes Berg41ade002007-12-19 02:03:29 +01002769 return err;
2770}
2771
2772static int nl80211_new_key(struct sk_buff *skb, struct genl_info *info)
2773{
Johannes Berg4c476992010-10-04 21:36:35 +02002774 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfffd0932009-07-08 14:22:54 +02002775 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002776 struct net_device *dev = info->user_ptr[1];
Johannes Bergb9454e82009-07-08 13:29:08 +02002777 struct key_parse key;
Johannes Berge31b8212010-10-05 19:39:30 +02002778 const u8 *mac_addr = NULL;
Johannes Berg41ade002007-12-19 02:03:29 +01002779
Johannes Bergb9454e82009-07-08 13:29:08 +02002780 err = nl80211_parse_key(info, &key);
2781 if (err)
2782 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002783
Johannes Bergb9454e82009-07-08 13:29:08 +02002784 if (!key.p.key)
Johannes Berg41ade002007-12-19 02:03:29 +01002785 return -EINVAL;
2786
Johannes Berg41ade002007-12-19 02:03:29 +01002787 if (info->attrs[NL80211_ATTR_MAC])
2788 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2789
Johannes Berge31b8212010-10-05 19:39:30 +02002790 if (key.type == -1) {
2791 if (mac_addr)
2792 key.type = NL80211_KEYTYPE_PAIRWISE;
2793 else
2794 key.type = NL80211_KEYTYPE_GROUP;
2795 }
2796
2797 /* for now */
2798 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2799 key.type != NL80211_KEYTYPE_GROUP)
2800 return -EINVAL;
2801
Johannes Berg4c476992010-10-04 21:36:35 +02002802 if (!rdev->ops->add_key)
2803 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01002804
Johannes Berge31b8212010-10-05 19:39:30 +02002805 if (cfg80211_validate_key_settings(rdev, &key.p, key.idx,
2806 key.type == NL80211_KEYTYPE_PAIRWISE,
2807 mac_addr))
Johannes Berg4c476992010-10-04 21:36:35 +02002808 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02002809
2810 wdev_lock(dev->ieee80211_ptr);
2811 err = nl80211_key_allowed(dev->ieee80211_ptr);
2812 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002813 err = rdev_add_key(rdev, dev, key.idx,
2814 key.type == NL80211_KEYTYPE_PAIRWISE,
2815 mac_addr, &key.p);
Johannes Bergfffd0932009-07-08 14:22:54 +02002816 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg41ade002007-12-19 02:03:29 +01002817
Johannes Berg41ade002007-12-19 02:03:29 +01002818 return err;
2819}
2820
2821static int nl80211_del_key(struct sk_buff *skb, struct genl_info *info)
2822{
Johannes Berg4c476992010-10-04 21:36:35 +02002823 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg41ade002007-12-19 02:03:29 +01002824 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02002825 struct net_device *dev = info->user_ptr[1];
Johannes Berg41ade002007-12-19 02:03:29 +01002826 u8 *mac_addr = NULL;
Johannes Bergb9454e82009-07-08 13:29:08 +02002827 struct key_parse key;
Johannes Berg41ade002007-12-19 02:03:29 +01002828
Johannes Bergb9454e82009-07-08 13:29:08 +02002829 err = nl80211_parse_key(info, &key);
2830 if (err)
2831 return err;
Johannes Berg41ade002007-12-19 02:03:29 +01002832
2833 if (info->attrs[NL80211_ATTR_MAC])
2834 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
2835
Johannes Berge31b8212010-10-05 19:39:30 +02002836 if (key.type == -1) {
2837 if (mac_addr)
2838 key.type = NL80211_KEYTYPE_PAIRWISE;
2839 else
2840 key.type = NL80211_KEYTYPE_GROUP;
2841 }
2842
2843 /* for now */
2844 if (key.type != NL80211_KEYTYPE_PAIRWISE &&
2845 key.type != NL80211_KEYTYPE_GROUP)
2846 return -EINVAL;
2847
Johannes Berg4c476992010-10-04 21:36:35 +02002848 if (!rdev->ops->del_key)
2849 return -EOPNOTSUPP;
Johannes Berg41ade002007-12-19 02:03:29 +01002850
Johannes Bergfffd0932009-07-08 14:22:54 +02002851 wdev_lock(dev->ieee80211_ptr);
2852 err = nl80211_key_allowed(dev->ieee80211_ptr);
Johannes Berge31b8212010-10-05 19:39:30 +02002853
2854 if (key.type == NL80211_KEYTYPE_PAIRWISE && mac_addr &&
2855 !(rdev->wiphy.flags & WIPHY_FLAG_IBSS_RSN))
2856 err = -ENOENT;
2857
Johannes Bergfffd0932009-07-08 14:22:54 +02002858 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03002859 err = rdev_del_key(rdev, dev, key.idx,
2860 key.type == NL80211_KEYTYPE_PAIRWISE,
2861 mac_addr);
Johannes Berg41ade002007-12-19 02:03:29 +01002862
Johannes Berg3d23e342009-09-29 23:27:28 +02002863#ifdef CONFIG_CFG80211_WEXT
Johannes Berg08645122009-05-11 13:54:58 +02002864 if (!err) {
Johannes Bergb9454e82009-07-08 13:29:08 +02002865 if (key.idx == dev->ieee80211_ptr->wext.default_key)
Johannes Berg08645122009-05-11 13:54:58 +02002866 dev->ieee80211_ptr->wext.default_key = -1;
Johannes Bergb9454e82009-07-08 13:29:08 +02002867 else if (key.idx == dev->ieee80211_ptr->wext.default_mgmt_key)
Johannes Berg08645122009-05-11 13:54:58 +02002868 dev->ieee80211_ptr->wext.default_mgmt_key = -1;
2869 }
2870#endif
Johannes Bergfffd0932009-07-08 14:22:54 +02002871 wdev_unlock(dev->ieee80211_ptr);
Johannes Berg08645122009-05-11 13:54:58 +02002872
Johannes Berg41ade002007-12-19 02:03:29 +01002873 return err;
2874}
2875
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05302876/* This function returns an error or the number of nested attributes */
2877static int validate_acl_mac_addrs(struct nlattr *nl_attr)
2878{
2879 struct nlattr *attr;
2880 int n_entries = 0, tmp;
2881
2882 nla_for_each_nested(attr, nl_attr, tmp) {
2883 if (nla_len(attr) != ETH_ALEN)
2884 return -EINVAL;
2885
2886 n_entries++;
2887 }
2888
2889 return n_entries;
2890}
2891
2892/*
2893 * This function parses ACL information and allocates memory for ACL data.
2894 * On successful return, the calling function is responsible to free the
2895 * ACL buffer returned by this function.
2896 */
2897static struct cfg80211_acl_data *parse_acl_data(struct wiphy *wiphy,
2898 struct genl_info *info)
2899{
2900 enum nl80211_acl_policy acl_policy;
2901 struct nlattr *attr;
2902 struct cfg80211_acl_data *acl;
2903 int i = 0, n_entries, tmp;
2904
2905 if (!wiphy->max_acl_mac_addrs)
2906 return ERR_PTR(-EOPNOTSUPP);
2907
2908 if (!info->attrs[NL80211_ATTR_ACL_POLICY])
2909 return ERR_PTR(-EINVAL);
2910
2911 acl_policy = nla_get_u32(info->attrs[NL80211_ATTR_ACL_POLICY]);
2912 if (acl_policy != NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED &&
2913 acl_policy != NL80211_ACL_POLICY_DENY_UNLESS_LISTED)
2914 return ERR_PTR(-EINVAL);
2915
2916 if (!info->attrs[NL80211_ATTR_MAC_ADDRS])
2917 return ERR_PTR(-EINVAL);
2918
2919 n_entries = validate_acl_mac_addrs(info->attrs[NL80211_ATTR_MAC_ADDRS]);
2920 if (n_entries < 0)
2921 return ERR_PTR(n_entries);
2922
2923 if (n_entries > wiphy->max_acl_mac_addrs)
2924 return ERR_PTR(-ENOTSUPP);
2925
2926 acl = kzalloc(sizeof(*acl) + (sizeof(struct mac_address) * n_entries),
2927 GFP_KERNEL);
2928 if (!acl)
2929 return ERR_PTR(-ENOMEM);
2930
2931 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_MAC_ADDRS], tmp) {
2932 memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN);
2933 i++;
2934 }
2935
2936 acl->n_acl_entries = n_entries;
2937 acl->acl_policy = acl_policy;
2938
2939 return acl;
2940}
2941
2942static int nl80211_set_mac_acl(struct sk_buff *skb, struct genl_info *info)
2943{
2944 struct cfg80211_registered_device *rdev = info->user_ptr[0];
2945 struct net_device *dev = info->user_ptr[1];
2946 struct cfg80211_acl_data *acl;
2947 int err;
2948
2949 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
2950 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
2951 return -EOPNOTSUPP;
2952
2953 if (!dev->ieee80211_ptr->beacon_interval)
2954 return -EINVAL;
2955
2956 acl = parse_acl_data(&rdev->wiphy, info);
2957 if (IS_ERR(acl))
2958 return PTR_ERR(acl);
2959
2960 err = rdev_set_mac_acl(rdev, dev, acl);
2961
2962 kfree(acl);
2963
2964 return err;
2965}
2966
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002967static int nl80211_parse_beacon(struct nlattr *attrs[],
Johannes Berg88600202012-02-13 15:17:18 +01002968 struct cfg80211_beacon_data *bcn)
Johannes Berged1b6cc2007-12-19 02:03:32 +01002969{
Johannes Berg88600202012-02-13 15:17:18 +01002970 bool haveinfo = false;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002971
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002972 if (!is_valid_ie_attr(attrs[NL80211_ATTR_BEACON_TAIL]) ||
2973 !is_valid_ie_attr(attrs[NL80211_ATTR_IE]) ||
2974 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_PROBE_RESP]) ||
2975 !is_valid_ie_attr(attrs[NL80211_ATTR_IE_ASSOC_RESP]))
Johannes Bergf4a11bb2009-03-27 12:40:28 +01002976 return -EINVAL;
2977
Johannes Berg88600202012-02-13 15:17:18 +01002978 memset(bcn, 0, sizeof(*bcn));
Johannes Berged1b6cc2007-12-19 02:03:32 +01002979
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002980 if (attrs[NL80211_ATTR_BEACON_HEAD]) {
2981 bcn->head = nla_data(attrs[NL80211_ATTR_BEACON_HEAD]);
2982 bcn->head_len = nla_len(attrs[NL80211_ATTR_BEACON_HEAD]);
Johannes Berg88600202012-02-13 15:17:18 +01002983 if (!bcn->head_len)
2984 return -EINVAL;
2985 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002986 }
2987
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002988 if (attrs[NL80211_ATTR_BEACON_TAIL]) {
2989 bcn->tail = nla_data(attrs[NL80211_ATTR_BEACON_TAIL]);
2990 bcn->tail_len = nla_len(attrs[NL80211_ATTR_BEACON_TAIL]);
Johannes Berg88600202012-02-13 15:17:18 +01002991 haveinfo = true;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002992 }
2993
Johannes Berg4c476992010-10-04 21:36:35 +02002994 if (!haveinfo)
2995 return -EINVAL;
Johannes Berged1b6cc2007-12-19 02:03:32 +01002996
Simon Wunderlicha1193be2013-06-14 14:15:19 +02002997 if (attrs[NL80211_ATTR_IE]) {
2998 bcn->beacon_ies = nla_data(attrs[NL80211_ATTR_IE]);
2999 bcn->beacon_ies_len = nla_len(attrs[NL80211_ATTR_IE]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003000 }
3001
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003002 if (attrs[NL80211_ATTR_IE_PROBE_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003003 bcn->proberesp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003004 nla_data(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003005 bcn->proberesp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003006 nla_len(attrs[NL80211_ATTR_IE_PROBE_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003007 }
3008
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003009 if (attrs[NL80211_ATTR_IE_ASSOC_RESP]) {
Johannes Berg88600202012-02-13 15:17:18 +01003010 bcn->assocresp_ies =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003011 nla_data(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Johannes Berg88600202012-02-13 15:17:18 +01003012 bcn->assocresp_ies_len =
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003013 nla_len(attrs[NL80211_ATTR_IE_ASSOC_RESP]);
Jouni Malinen9946ecf2011-08-10 23:55:56 +03003014 }
3015
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003016 if (attrs[NL80211_ATTR_PROBE_RESP]) {
3017 bcn->probe_resp = nla_data(attrs[NL80211_ATTR_PROBE_RESP]);
3018 bcn->probe_resp_len = nla_len(attrs[NL80211_ATTR_PROBE_RESP]);
Arik Nemtsov00f740e2011-11-10 11:28:56 +02003019 }
3020
Johannes Berg88600202012-02-13 15:17:18 +01003021 return 0;
3022}
3023
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003024static bool nl80211_get_ap_channel(struct cfg80211_registered_device *rdev,
3025 struct cfg80211_ap_settings *params)
3026{
3027 struct wireless_dev *wdev;
3028 bool ret = false;
3029
Johannes Berg89a54e42012-06-15 14:33:17 +02003030 list_for_each_entry(wdev, &rdev->wdev_list, list) {
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003031 if (wdev->iftype != NL80211_IFTYPE_AP &&
3032 wdev->iftype != NL80211_IFTYPE_P2P_GO)
3033 continue;
3034
Johannes Berg683b6d32012-11-08 21:25:48 +01003035 if (!wdev->preset_chandef.chan)
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003036 continue;
3037
Johannes Berg683b6d32012-11-08 21:25:48 +01003038 params->chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003039 ret = true;
3040 break;
3041 }
3042
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003043 return ret;
3044}
3045
Jouni Malinene39e5b52012-09-30 19:29:39 +03003046static bool nl80211_valid_auth_type(struct cfg80211_registered_device *rdev,
3047 enum nl80211_auth_type auth_type,
3048 enum nl80211_commands cmd)
3049{
3050 if (auth_type > NL80211_AUTHTYPE_MAX)
3051 return false;
3052
3053 switch (cmd) {
3054 case NL80211_CMD_AUTHENTICATE:
3055 if (!(rdev->wiphy.features & NL80211_FEATURE_SAE) &&
3056 auth_type == NL80211_AUTHTYPE_SAE)
3057 return false;
3058 return true;
3059 case NL80211_CMD_CONNECT:
3060 case NL80211_CMD_START_AP:
3061 /* SAE not supported yet */
3062 if (auth_type == NL80211_AUTHTYPE_SAE)
3063 return false;
3064 return true;
3065 default:
3066 return false;
3067 }
3068}
3069
Johannes Berg88600202012-02-13 15:17:18 +01003070static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
3071{
3072 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3073 struct net_device *dev = info->user_ptr[1];
3074 struct wireless_dev *wdev = dev->ieee80211_ptr;
3075 struct cfg80211_ap_settings params;
3076 int err;
Simon Wunderlich04f39042013-02-08 18:16:19 +01003077 u8 radar_detect_width = 0;
Johannes Berg88600202012-02-13 15:17:18 +01003078
3079 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3080 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3081 return -EOPNOTSUPP;
3082
3083 if (!rdev->ops->start_ap)
3084 return -EOPNOTSUPP;
3085
3086 if (wdev->beacon_interval)
3087 return -EALREADY;
3088
3089 memset(&params, 0, sizeof(params));
3090
3091 /* these are required for START_AP */
3092 if (!info->attrs[NL80211_ATTR_BEACON_INTERVAL] ||
3093 !info->attrs[NL80211_ATTR_DTIM_PERIOD] ||
3094 !info->attrs[NL80211_ATTR_BEACON_HEAD])
3095 return -EINVAL;
3096
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003097 err = nl80211_parse_beacon(info->attrs, &params.beacon);
Johannes Berg88600202012-02-13 15:17:18 +01003098 if (err)
3099 return err;
3100
3101 params.beacon_interval =
3102 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
3103 params.dtim_period =
3104 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
3105
3106 err = cfg80211_validate_beacon_int(rdev, params.beacon_interval);
3107 if (err)
3108 return err;
3109
3110 /*
3111 * In theory, some of these attributes should be required here
3112 * but since they were not used when the command was originally
3113 * added, keep them optional for old user space programs to let
3114 * them continue to work with drivers that do not need the
3115 * additional information -- drivers must check!
3116 */
3117 if (info->attrs[NL80211_ATTR_SSID]) {
3118 params.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
3119 params.ssid_len =
3120 nla_len(info->attrs[NL80211_ATTR_SSID]);
3121 if (params.ssid_len == 0 ||
3122 params.ssid_len > IEEE80211_MAX_SSID_LEN)
3123 return -EINVAL;
3124 }
3125
3126 if (info->attrs[NL80211_ATTR_HIDDEN_SSID]) {
3127 params.hidden_ssid = nla_get_u32(
3128 info->attrs[NL80211_ATTR_HIDDEN_SSID]);
3129 if (params.hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE &&
3130 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_LEN &&
3131 params.hidden_ssid != NL80211_HIDDEN_SSID_ZERO_CONTENTS)
3132 return -EINVAL;
3133 }
3134
3135 params.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
3136
3137 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
3138 params.auth_type = nla_get_u32(
3139 info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03003140 if (!nl80211_valid_auth_type(rdev, params.auth_type,
3141 NL80211_CMD_START_AP))
Johannes Berg88600202012-02-13 15:17:18 +01003142 return -EINVAL;
3143 } else
3144 params.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
3145
3146 err = nl80211_crypto_settings(rdev, info, &params.crypto,
3147 NL80211_MAX_NR_CIPHER_SUITES);
3148 if (err)
3149 return err;
3150
Vasanthakumar Thiagarajan1b658f12012-03-02 15:50:02 +05303151 if (info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]) {
3152 if (!(rdev->wiphy.features & NL80211_FEATURE_INACTIVITY_TIMER))
3153 return -EOPNOTSUPP;
3154 params.inactivity_timeout = nla_get_u16(
3155 info->attrs[NL80211_ATTR_INACTIVITY_TIMEOUT]);
3156 }
3157
Johannes Berg53cabad2012-11-14 15:17:28 +01003158 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
3159 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3160 return -EINVAL;
3161 params.p2p_ctwindow =
3162 nla_get_u8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
3163 if (params.p2p_ctwindow > 127)
3164 return -EINVAL;
3165 if (params.p2p_ctwindow != 0 &&
3166 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
3167 return -EINVAL;
3168 }
3169
3170 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
3171 u8 tmp;
3172
3173 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3174 return -EINVAL;
3175 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
3176 if (tmp > 1)
3177 return -EINVAL;
3178 params.p2p_opp_ps = tmp;
3179 if (params.p2p_opp_ps != 0 &&
3180 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
3181 return -EINVAL;
3182 }
3183
Johannes Bergaa430da2012-05-16 23:50:18 +02003184 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003185 err = nl80211_parse_chandef(rdev, info, &params.chandef);
3186 if (err)
3187 return err;
3188 } else if (wdev->preset_chandef.chan) {
3189 params.chandef = wdev->preset_chandef;
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003190 } else if (!nl80211_get_ap_channel(rdev, &params))
Johannes Bergaa430da2012-05-16 23:50:18 +02003191 return -EINVAL;
3192
Johannes Berg683b6d32012-11-08 21:25:48 +01003193 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
Johannes Bergaa430da2012-05-16 23:50:18 +02003194 return -EINVAL;
3195
Simon Wunderlich04f39042013-02-08 18:16:19 +01003196 err = cfg80211_chandef_dfs_required(wdev->wiphy, &params.chandef);
3197 if (err < 0)
3198 return err;
3199 if (err) {
3200 radar_detect_width = BIT(params.chandef.width);
3201 params.radar_required = true;
3202 }
3203
Simon Wunderlich04f39042013-02-08 18:16:19 +01003204 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
3205 params.chandef.chan,
3206 CHAN_MODE_SHARED,
3207 radar_detect_width);
Michal Kaziore4e32452012-06-29 12:47:08 +02003208 if (err)
3209 return err;
3210
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303211 if (info->attrs[NL80211_ATTR_ACL_POLICY]) {
3212 params.acl = parse_acl_data(&rdev->wiphy, info);
3213 if (IS_ERR(params.acl))
3214 return PTR_ERR(params.acl);
3215 }
3216
Hila Gonene35e4d22012-06-27 17:19:42 +03003217 err = rdev_start_ap(rdev, dev, &params);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003218 if (!err) {
Johannes Berg683b6d32012-11-08 21:25:48 +01003219 wdev->preset_chandef = params.chandef;
Johannes Berg88600202012-02-13 15:17:18 +01003220 wdev->beacon_interval = params.beacon_interval;
Johannes Berg683b6d32012-11-08 21:25:48 +01003221 wdev->channel = params.chandef.chan;
Antonio Quartulli06e191e2012-11-07 12:52:19 +01003222 wdev->ssid_len = params.ssid_len;
3223 memcpy(wdev->ssid, params.ssid, wdev->ssid_len);
Felix Fietkau46c1dd02012-06-19 02:50:57 +02003224 }
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05303225
3226 kfree(params.acl);
3227
Johannes Berg56d18932011-05-09 18:41:15 +02003228 return err;
Johannes Berged1b6cc2007-12-19 02:03:32 +01003229}
3230
Johannes Berg88600202012-02-13 15:17:18 +01003231static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
3232{
3233 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3234 struct net_device *dev = info->user_ptr[1];
3235 struct wireless_dev *wdev = dev->ieee80211_ptr;
3236 struct cfg80211_beacon_data params;
3237 int err;
3238
3239 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3240 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
3241 return -EOPNOTSUPP;
3242
3243 if (!rdev->ops->change_beacon)
3244 return -EOPNOTSUPP;
3245
3246 if (!wdev->beacon_interval)
3247 return -EINVAL;
3248
Simon Wunderlicha1193be2013-06-14 14:15:19 +02003249 err = nl80211_parse_beacon(info->attrs, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003250 if (err)
3251 return err;
3252
Hila Gonene35e4d22012-06-27 17:19:42 +03003253 return rdev_change_beacon(rdev, dev, &params);
Johannes Berg88600202012-02-13 15:17:18 +01003254}
3255
3256static int nl80211_stop_ap(struct sk_buff *skb, struct genl_info *info)
Johannes Berged1b6cc2007-12-19 02:03:32 +01003257{
Johannes Berg4c476992010-10-04 21:36:35 +02003258 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3259 struct net_device *dev = info->user_ptr[1];
Johannes Berged1b6cc2007-12-19 02:03:32 +01003260
Michal Kazior60771782012-06-29 12:46:56 +02003261 return cfg80211_stop_ap(rdev, dev);
Johannes Berged1b6cc2007-12-19 02:03:32 +01003262}
3263
Johannes Berg5727ef12007-12-19 02:03:34 +01003264static const struct nla_policy sta_flags_policy[NL80211_STA_FLAG_MAX + 1] = {
3265 [NL80211_STA_FLAG_AUTHORIZED] = { .type = NLA_FLAG },
3266 [NL80211_STA_FLAG_SHORT_PREAMBLE] = { .type = NLA_FLAG },
3267 [NL80211_STA_FLAG_WME] = { .type = NLA_FLAG },
Jouni Malinen0e467242009-05-11 21:57:55 +03003268 [NL80211_STA_FLAG_MFP] = { .type = NLA_FLAG },
Javier Cardonab39c48f2011-04-07 15:08:30 -07003269 [NL80211_STA_FLAG_AUTHENTICATED] = { .type = NLA_FLAG },
Johannes Bergd83023d2011-12-14 09:29:15 +01003270 [NL80211_STA_FLAG_TDLS_PEER] = { .type = NLA_FLAG },
Johannes Berg5727ef12007-12-19 02:03:34 +01003271};
3272
Johannes Bergeccb8e82009-05-11 21:57:56 +03003273static int parse_station_flags(struct genl_info *info,
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003274 enum nl80211_iftype iftype,
Johannes Bergeccb8e82009-05-11 21:57:56 +03003275 struct station_parameters *params)
Johannes Berg5727ef12007-12-19 02:03:34 +01003276{
3277 struct nlattr *flags[NL80211_STA_FLAG_MAX + 1];
Johannes Bergeccb8e82009-05-11 21:57:56 +03003278 struct nlattr *nla;
Johannes Berg5727ef12007-12-19 02:03:34 +01003279 int flag;
3280
Johannes Bergeccb8e82009-05-11 21:57:56 +03003281 /*
3282 * Try parsing the new attribute first so userspace
3283 * can specify both for older kernels.
3284 */
3285 nla = info->attrs[NL80211_ATTR_STA_FLAGS2];
3286 if (nla) {
3287 struct nl80211_sta_flag_update *sta_flags;
Johannes Berg5727ef12007-12-19 02:03:34 +01003288
Johannes Bergeccb8e82009-05-11 21:57:56 +03003289 sta_flags = nla_data(nla);
3290 params->sta_flags_mask = sta_flags->mask;
3291 params->sta_flags_set = sta_flags->set;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003292 params->sta_flags_set &= params->sta_flags_mask;
Johannes Bergeccb8e82009-05-11 21:57:56 +03003293 if ((params->sta_flags_mask |
3294 params->sta_flags_set) & BIT(__NL80211_STA_FLAG_INVALID))
3295 return -EINVAL;
3296 return 0;
3297 }
3298
3299 /* if present, parse the old attribute */
3300
3301 nla = info->attrs[NL80211_ATTR_STA_FLAGS];
Johannes Berg5727ef12007-12-19 02:03:34 +01003302 if (!nla)
3303 return 0;
3304
3305 if (nla_parse_nested(flags, NL80211_STA_FLAG_MAX,
3306 nla, sta_flags_policy))
3307 return -EINVAL;
3308
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003309 /*
3310 * Only allow certain flags for interface types so that
3311 * other attributes are silently ignored. Remember that
3312 * this is backward compatibility code with old userspace
3313 * and shouldn't be hit in other cases anyway.
3314 */
3315 switch (iftype) {
3316 case NL80211_IFTYPE_AP:
3317 case NL80211_IFTYPE_AP_VLAN:
3318 case NL80211_IFTYPE_P2P_GO:
3319 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3320 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3321 BIT(NL80211_STA_FLAG_WME) |
3322 BIT(NL80211_STA_FLAG_MFP);
3323 break;
3324 case NL80211_IFTYPE_P2P_CLIENT:
3325 case NL80211_IFTYPE_STATION:
3326 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
3327 BIT(NL80211_STA_FLAG_TDLS_PEER);
3328 break;
3329 case NL80211_IFTYPE_MESH_POINT:
3330 params->sta_flags_mask = BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3331 BIT(NL80211_STA_FLAG_MFP) |
3332 BIT(NL80211_STA_FLAG_AUTHORIZED);
3333 default:
3334 return -EINVAL;
3335 }
Johannes Berg5727ef12007-12-19 02:03:34 +01003336
Johannes Berg3383b5a2012-05-10 20:14:43 +02003337 for (flag = 1; flag <= NL80211_STA_FLAG_MAX; flag++) {
3338 if (flags[flag]) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03003339 params->sta_flags_set |= (1<<flag);
Johannes Berg5727ef12007-12-19 02:03:34 +01003340
Johannes Berg3383b5a2012-05-10 20:14:43 +02003341 /* no longer support new API additions in old API */
3342 if (flag > NL80211_STA_FLAG_MAX_OLD_API)
3343 return -EINVAL;
3344 }
3345 }
3346
Johannes Berg5727ef12007-12-19 02:03:34 +01003347 return 0;
3348}
3349
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003350static bool nl80211_put_sta_rate(struct sk_buff *msg, struct rate_info *info,
3351 int attr)
3352{
3353 struct nlattr *rate;
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003354 u32 bitrate;
3355 u16 bitrate_compat;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003356
3357 rate = nla_nest_start(msg, attr);
3358 if (!rate)
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003359 return false;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003360
3361 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
3362 bitrate = cfg80211_calculate_bitrate(info);
Vladimir Kondratiev8eb41c82012-07-05 14:25:49 +03003363 /* report 16-bit bitrate only if we can */
3364 bitrate_compat = bitrate < (1UL << 16) ? bitrate : 0;
Johannes Bergdb9c64c2012-11-09 14:56:41 +01003365 if (bitrate > 0 &&
3366 nla_put_u32(msg, NL80211_RATE_INFO_BITRATE32, bitrate))
3367 return false;
3368 if (bitrate_compat > 0 &&
3369 nla_put_u16(msg, NL80211_RATE_INFO_BITRATE, bitrate_compat))
3370 return false;
3371
3372 if (info->flags & RATE_INFO_FLAGS_MCS) {
3373 if (nla_put_u8(msg, NL80211_RATE_INFO_MCS, info->mcs))
3374 return false;
3375 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3376 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3377 return false;
3378 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3379 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3380 return false;
3381 } else if (info->flags & RATE_INFO_FLAGS_VHT_MCS) {
3382 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_MCS, info->mcs))
3383 return false;
3384 if (nla_put_u8(msg, NL80211_RATE_INFO_VHT_NSS, info->nss))
3385 return false;
3386 if (info->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH &&
3387 nla_put_flag(msg, NL80211_RATE_INFO_40_MHZ_WIDTH))
3388 return false;
3389 if (info->flags & RATE_INFO_FLAGS_80_MHZ_WIDTH &&
3390 nla_put_flag(msg, NL80211_RATE_INFO_80_MHZ_WIDTH))
3391 return false;
3392 if (info->flags & RATE_INFO_FLAGS_80P80_MHZ_WIDTH &&
3393 nla_put_flag(msg, NL80211_RATE_INFO_80P80_MHZ_WIDTH))
3394 return false;
3395 if (info->flags & RATE_INFO_FLAGS_160_MHZ_WIDTH &&
3396 nla_put_flag(msg, NL80211_RATE_INFO_160_MHZ_WIDTH))
3397 return false;
3398 if (info->flags & RATE_INFO_FLAGS_SHORT_GI &&
3399 nla_put_flag(msg, NL80211_RATE_INFO_SHORT_GI))
3400 return false;
3401 }
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003402
3403 nla_nest_end(msg, rate);
3404 return true;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003405}
3406
Felix Fietkau119363c2013-04-22 16:29:30 +02003407static bool nl80211_put_signal(struct sk_buff *msg, u8 mask, s8 *signal,
3408 int id)
3409{
3410 void *attr;
3411 int i = 0;
3412
3413 if (!mask)
3414 return true;
3415
3416 attr = nla_nest_start(msg, id);
3417 if (!attr)
3418 return false;
3419
3420 for (i = 0; i < IEEE80211_MAX_CHAINS; i++) {
3421 if (!(mask & BIT(i)))
3422 continue;
3423
3424 if (nla_put_u8(msg, i, signal[i]))
3425 return false;
3426 }
3427
3428 nla_nest_end(msg, attr);
3429
3430 return true;
3431}
3432
Eric W. Biederman15e47302012-09-07 20:12:54 +00003433static int nl80211_send_station(struct sk_buff *msg, u32 portid, u32 seq,
John W. Linville66266b32012-03-15 13:25:41 -04003434 int flags,
3435 struct cfg80211_registered_device *rdev,
3436 struct net_device *dev,
Johannes Berg98b62182009-12-23 13:15:44 +01003437 const u8 *mac_addr, struct station_info *sinfo)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003438{
3439 void *hdr;
Paul Stewartf4263c92011-03-31 09:25:41 -07003440 struct nlattr *sinfoattr, *bss_param;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003441
Eric W. Biederman15e47302012-09-07 20:12:54 +00003442 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003443 if (!hdr)
3444 return -1;
3445
David S. Miller9360ffd2012-03-29 04:41:26 -04003446 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
3447 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
3448 nla_put_u32(msg, NL80211_ATTR_GENERATION, sinfo->generation))
3449 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02003450
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003451 sinfoattr = nla_nest_start(msg, NL80211_ATTR_STA_INFO);
3452 if (!sinfoattr)
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003453 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04003454 if ((sinfo->filled & STATION_INFO_CONNECTED_TIME) &&
3455 nla_put_u32(msg, NL80211_STA_INFO_CONNECTED_TIME,
3456 sinfo->connected_time))
3457 goto nla_put_failure;
3458 if ((sinfo->filled & STATION_INFO_INACTIVE_TIME) &&
3459 nla_put_u32(msg, NL80211_STA_INFO_INACTIVE_TIME,
3460 sinfo->inactive_time))
3461 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003462 if ((sinfo->filled & (STATION_INFO_RX_BYTES |
3463 STATION_INFO_RX_BYTES64)) &&
David S. Miller9360ffd2012-03-29 04:41:26 -04003464 nla_put_u32(msg, NL80211_STA_INFO_RX_BYTES,
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003465 (u32)sinfo->rx_bytes))
3466 goto nla_put_failure;
3467 if ((sinfo->filled & (STATION_INFO_TX_BYTES |
Felix Fietkau4325d722013-05-23 15:05:59 +02003468 STATION_INFO_TX_BYTES64)) &&
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003469 nla_put_u32(msg, NL80211_STA_INFO_TX_BYTES,
3470 (u32)sinfo->tx_bytes))
3471 goto nla_put_failure;
3472 if ((sinfo->filled & STATION_INFO_RX_BYTES64) &&
3473 nla_put_u64(msg, NL80211_STA_INFO_RX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003474 sinfo->rx_bytes))
3475 goto nla_put_failure;
Vladimir Kondratiev42745e02013-02-04 13:53:11 +02003476 if ((sinfo->filled & STATION_INFO_TX_BYTES64) &&
3477 nla_put_u64(msg, NL80211_STA_INFO_TX_BYTES64,
David S. Miller9360ffd2012-03-29 04:41:26 -04003478 sinfo->tx_bytes))
3479 goto nla_put_failure;
3480 if ((sinfo->filled & STATION_INFO_LLID) &&
3481 nla_put_u16(msg, NL80211_STA_INFO_LLID, sinfo->llid))
3482 goto nla_put_failure;
3483 if ((sinfo->filled & STATION_INFO_PLID) &&
3484 nla_put_u16(msg, NL80211_STA_INFO_PLID, sinfo->plid))
3485 goto nla_put_failure;
3486 if ((sinfo->filled & STATION_INFO_PLINK_STATE) &&
3487 nla_put_u8(msg, NL80211_STA_INFO_PLINK_STATE,
3488 sinfo->plink_state))
3489 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003490 switch (rdev->wiphy.signal_type) {
3491 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04003492 if ((sinfo->filled & STATION_INFO_SIGNAL) &&
3493 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL,
3494 sinfo->signal))
3495 goto nla_put_failure;
3496 if ((sinfo->filled & STATION_INFO_SIGNAL_AVG) &&
3497 nla_put_u8(msg, NL80211_STA_INFO_SIGNAL_AVG,
3498 sinfo->signal_avg))
3499 goto nla_put_failure;
John W. Linville66266b32012-03-15 13:25:41 -04003500 break;
3501 default:
3502 break;
3503 }
Felix Fietkau119363c2013-04-22 16:29:30 +02003504 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL) {
3505 if (!nl80211_put_signal(msg, sinfo->chains,
3506 sinfo->chain_signal,
3507 NL80211_STA_INFO_CHAIN_SIGNAL))
3508 goto nla_put_failure;
3509 }
3510 if (sinfo->filled & STATION_INFO_CHAIN_SIGNAL_AVG) {
3511 if (!nl80211_put_signal(msg, sinfo->chains,
3512 sinfo->chain_signal_avg,
3513 NL80211_STA_INFO_CHAIN_SIGNAL_AVG))
3514 goto nla_put_failure;
3515 }
Henning Rogge420e7fa2008-12-11 22:04:19 +01003516 if (sinfo->filled & STATION_INFO_TX_BITRATE) {
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003517 if (!nl80211_put_sta_rate(msg, &sinfo->txrate,
3518 NL80211_STA_INFO_TX_BITRATE))
Henning Rogge420e7fa2008-12-11 22:04:19 +01003519 goto nla_put_failure;
Felix Fietkauc8dcfd82011-02-27 22:08:00 +01003520 }
3521 if (sinfo->filled & STATION_INFO_RX_BITRATE) {
3522 if (!nl80211_put_sta_rate(msg, &sinfo->rxrate,
3523 NL80211_STA_INFO_RX_BITRATE))
3524 goto nla_put_failure;
Henning Rogge420e7fa2008-12-11 22:04:19 +01003525 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003526 if ((sinfo->filled & STATION_INFO_RX_PACKETS) &&
3527 nla_put_u32(msg, NL80211_STA_INFO_RX_PACKETS,
3528 sinfo->rx_packets))
3529 goto nla_put_failure;
3530 if ((sinfo->filled & STATION_INFO_TX_PACKETS) &&
3531 nla_put_u32(msg, NL80211_STA_INFO_TX_PACKETS,
3532 sinfo->tx_packets))
3533 goto nla_put_failure;
3534 if ((sinfo->filled & STATION_INFO_TX_RETRIES) &&
3535 nla_put_u32(msg, NL80211_STA_INFO_TX_RETRIES,
3536 sinfo->tx_retries))
3537 goto nla_put_failure;
3538 if ((sinfo->filled & STATION_INFO_TX_FAILED) &&
3539 nla_put_u32(msg, NL80211_STA_INFO_TX_FAILED,
3540 sinfo->tx_failed))
3541 goto nla_put_failure;
3542 if ((sinfo->filled & STATION_INFO_BEACON_LOSS_COUNT) &&
3543 nla_put_u32(msg, NL80211_STA_INFO_BEACON_LOSS,
3544 sinfo->beacon_loss_count))
3545 goto nla_put_failure;
Marco Porsch3b1c5a52013-01-07 16:04:52 +01003546 if ((sinfo->filled & STATION_INFO_LOCAL_PM) &&
3547 nla_put_u32(msg, NL80211_STA_INFO_LOCAL_PM,
3548 sinfo->local_pm))
3549 goto nla_put_failure;
3550 if ((sinfo->filled & STATION_INFO_PEER_PM) &&
3551 nla_put_u32(msg, NL80211_STA_INFO_PEER_PM,
3552 sinfo->peer_pm))
3553 goto nla_put_failure;
3554 if ((sinfo->filled & STATION_INFO_NONPEER_PM) &&
3555 nla_put_u32(msg, NL80211_STA_INFO_NONPEER_PM,
3556 sinfo->nonpeer_pm))
3557 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003558 if (sinfo->filled & STATION_INFO_BSS_PARAM) {
3559 bss_param = nla_nest_start(msg, NL80211_STA_INFO_BSS_PARAM);
3560 if (!bss_param)
3561 goto nla_put_failure;
3562
David S. Miller9360ffd2012-03-29 04:41:26 -04003563 if (((sinfo->bss_param.flags & BSS_PARAM_FLAGS_CTS_PROT) &&
3564 nla_put_flag(msg, NL80211_STA_BSS_PARAM_CTS_PROT)) ||
3565 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_PREAMBLE) &&
3566 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE)) ||
3567 ((sinfo->bss_param.flags & BSS_PARAM_FLAGS_SHORT_SLOT_TIME) &&
3568 nla_put_flag(msg, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME)) ||
3569 nla_put_u8(msg, NL80211_STA_BSS_PARAM_DTIM_PERIOD,
3570 sinfo->bss_param.dtim_period) ||
3571 nla_put_u16(msg, NL80211_STA_BSS_PARAM_BEACON_INTERVAL,
3572 sinfo->bss_param.beacon_interval))
3573 goto nla_put_failure;
Paul Stewartf4263c92011-03-31 09:25:41 -07003574
3575 nla_nest_end(msg, bss_param);
3576 }
David S. Miller9360ffd2012-03-29 04:41:26 -04003577 if ((sinfo->filled & STATION_INFO_STA_FLAGS) &&
3578 nla_put(msg, NL80211_STA_INFO_STA_FLAGS,
3579 sizeof(struct nl80211_sta_flag_update),
3580 &sinfo->sta_flags))
3581 goto nla_put_failure;
John W. Linville7eab0f62012-04-12 14:25:14 -04003582 if ((sinfo->filled & STATION_INFO_T_OFFSET) &&
3583 nla_put_u64(msg, NL80211_STA_INFO_T_OFFSET,
3584 sinfo->t_offset))
3585 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003586 nla_nest_end(msg, sinfoattr);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003587
David S. Miller9360ffd2012-03-29 04:41:26 -04003588 if ((sinfo->filled & STATION_INFO_ASSOC_REQ_IES) &&
3589 nla_put(msg, NL80211_ATTR_IE, sinfo->assoc_req_ies_len,
3590 sinfo->assoc_req_ies))
3591 goto nla_put_failure;
Jouni Malinen50d3dfb2011-08-08 12:11:52 +03003592
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003593 return genlmsg_end(msg, hdr);
3594
3595 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07003596 genlmsg_cancel(msg, hdr);
3597 return -EMSGSIZE;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003598}
3599
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003600static int nl80211_dump_station(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003601 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003602{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003603 struct station_info sinfo;
3604 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02003605 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003606 u8 mac_addr[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02003607 int sta_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003608 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003609
Johannes Berg97990a02013-04-19 01:02:55 +02003610 err = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02003611 if (err)
3612 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003613
Johannes Berg97990a02013-04-19 01:02:55 +02003614 if (!wdev->netdev) {
3615 err = -EINVAL;
3616 goto out_err;
3617 }
3618
Johannes Bergbba95fe2008-07-29 13:22:51 +02003619 if (!dev->ops->dump_station) {
Jouni Malineneec60b02009-03-20 21:21:19 +02003620 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003621 goto out_err;
3622 }
3623
Johannes Bergbba95fe2008-07-29 13:22:51 +02003624 while (1) {
Jouni Malinenf612ced2011-08-11 11:46:22 +03003625 memset(&sinfo, 0, sizeof(sinfo));
Johannes Berg97990a02013-04-19 01:02:55 +02003626 err = rdev_dump_station(dev, wdev->netdev, sta_idx,
Hila Gonene35e4d22012-06-27 17:19:42 +03003627 mac_addr, &sinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003628 if (err == -ENOENT)
3629 break;
3630 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01003631 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003632
3633 if (nl80211_send_station(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00003634 NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003635 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02003636 dev, wdev->netdev, mac_addr,
Johannes Bergbba95fe2008-07-29 13:22:51 +02003637 &sinfo) < 0)
3638 goto out;
3639
3640 sta_idx++;
3641 }
3642
3643
3644 out:
Johannes Berg97990a02013-04-19 01:02:55 +02003645 cb->args[2] = sta_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003646 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02003647 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02003648 nl80211_finish_wdev_dump(dev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02003649
3650 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003651}
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003652
Johannes Berg5727ef12007-12-19 02:03:34 +01003653static int nl80211_get_station(struct sk_buff *skb, struct genl_info *info)
3654{
Johannes Berg4c476992010-10-04 21:36:35 +02003655 struct cfg80211_registered_device *rdev = info->user_ptr[0];
3656 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003657 struct station_info sinfo;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003658 struct sk_buff *msg;
3659 u8 *mac_addr = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02003660 int err;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003661
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003662 memset(&sinfo, 0, sizeof(sinfo));
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003663
3664 if (!info->attrs[NL80211_ATTR_MAC])
3665 return -EINVAL;
3666
3667 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3668
Johannes Berg4c476992010-10-04 21:36:35 +02003669 if (!rdev->ops->get_station)
3670 return -EOPNOTSUPP;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003671
Hila Gonene35e4d22012-06-27 17:19:42 +03003672 err = rdev_get_station(rdev, dev, mac_addr, &sinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003673 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02003674 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003675
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07003676 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003677 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02003678 return -ENOMEM;
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003679
Eric W. Biederman15e47302012-09-07 20:12:54 +00003680 if (nl80211_send_station(msg, info->snd_portid, info->snd_seq, 0,
John W. Linville66266b32012-03-15 13:25:41 -04003681 rdev, dev, mac_addr, &sinfo) < 0) {
Johannes Berg4c476992010-10-04 21:36:35 +02003682 nlmsg_free(msg);
3683 return -ENOBUFS;
3684 }
Johannes Bergfd5b74d2007-12-19 02:03:36 +01003685
Johannes Berg4c476992010-10-04 21:36:35 +02003686 return genlmsg_reply(msg, info);
Johannes Berg5727ef12007-12-19 02:03:34 +01003687}
3688
Johannes Berg77ee7c82013-02-15 00:48:33 +01003689int cfg80211_check_station_change(struct wiphy *wiphy,
3690 struct station_parameters *params,
3691 enum cfg80211_station_type statype)
3692{
3693 if (params->listen_interval != -1)
3694 return -EINVAL;
3695 if (params->aid)
3696 return -EINVAL;
3697
3698 /* When you run into this, adjust the code below for the new flag */
3699 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
3700
3701 switch (statype) {
Thomas Pederseneef941e2013-03-04 13:06:11 -08003702 case CFG80211_STA_MESH_PEER_KERNEL:
3703 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003704 /*
3705 * No ignoring the TDLS flag here -- the userspace mesh
3706 * code doesn't have the bug of including TDLS in the
3707 * mask everywhere.
3708 */
3709 if (params->sta_flags_mask &
3710 ~(BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3711 BIT(NL80211_STA_FLAG_MFP) |
3712 BIT(NL80211_STA_FLAG_AUTHORIZED)))
3713 return -EINVAL;
3714 break;
3715 case CFG80211_STA_TDLS_PEER_SETUP:
3716 case CFG80211_STA_TDLS_PEER_ACTIVE:
3717 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
3718 return -EINVAL;
3719 /* ignore since it can't change */
3720 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3721 break;
3722 default:
3723 /* disallow mesh-specific things */
3724 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3725 return -EINVAL;
3726 if (params->local_pm)
3727 return -EINVAL;
3728 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3729 return -EINVAL;
3730 }
3731
3732 if (statype != CFG80211_STA_TDLS_PEER_SETUP &&
3733 statype != CFG80211_STA_TDLS_PEER_ACTIVE) {
3734 /* TDLS can't be set, ... */
3735 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
3736 return -EINVAL;
3737 /*
3738 * ... but don't bother the driver with it. This works around
3739 * a hostapd/wpa_supplicant issue -- it always includes the
3740 * TLDS_PEER flag in the mask even for AP mode.
3741 */
3742 params->sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
3743 }
3744
3745 if (statype != CFG80211_STA_TDLS_PEER_SETUP) {
3746 /* reject other things that can't change */
3747 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD)
3748 return -EINVAL;
3749 if (params->sta_modify_mask & STATION_PARAM_APPLY_CAPABILITY)
3750 return -EINVAL;
3751 if (params->supported_rates)
3752 return -EINVAL;
3753 if (params->ext_capab || params->ht_capa || params->vht_capa)
3754 return -EINVAL;
3755 }
3756
3757 if (statype != CFG80211_STA_AP_CLIENT) {
3758 if (params->vlan)
3759 return -EINVAL;
3760 }
3761
3762 switch (statype) {
3763 case CFG80211_STA_AP_MLME_CLIENT:
3764 /* Use this only for authorizing/unauthorizing a station */
3765 if (!(params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)))
3766 return -EOPNOTSUPP;
3767 break;
3768 case CFG80211_STA_AP_CLIENT:
3769 /* accept only the listed bits */
3770 if (params->sta_flags_mask &
3771 ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3772 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3773 BIT(NL80211_STA_FLAG_ASSOCIATED) |
3774 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
3775 BIT(NL80211_STA_FLAG_WME) |
3776 BIT(NL80211_STA_FLAG_MFP)))
3777 return -EINVAL;
3778
3779 /* but authenticated/associated only if driver handles it */
3780 if (!(wiphy->features & NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
3781 params->sta_flags_mask &
3782 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
3783 BIT(NL80211_STA_FLAG_ASSOCIATED)))
3784 return -EINVAL;
3785 break;
3786 case CFG80211_STA_IBSS:
3787 case CFG80211_STA_AP_STA:
3788 /* reject any changes other than AUTHORIZED */
3789 if (params->sta_flags_mask & ~BIT(NL80211_STA_FLAG_AUTHORIZED))
3790 return -EINVAL;
3791 break;
3792 case CFG80211_STA_TDLS_PEER_SETUP:
3793 /* reject any changes other than AUTHORIZED or WME */
3794 if (params->sta_flags_mask & ~(BIT(NL80211_STA_FLAG_AUTHORIZED) |
3795 BIT(NL80211_STA_FLAG_WME)))
3796 return -EINVAL;
3797 /* force (at least) rates when authorizing */
3798 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED) &&
3799 !params->supported_rates)
3800 return -EINVAL;
3801 break;
3802 case CFG80211_STA_TDLS_PEER_ACTIVE:
3803 /* reject any changes */
3804 return -EINVAL;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003805 case CFG80211_STA_MESH_PEER_KERNEL:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003806 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE)
3807 return -EINVAL;
3808 break;
Thomas Pederseneef941e2013-03-04 13:06:11 -08003809 case CFG80211_STA_MESH_PEER_USER:
Johannes Berg77ee7c82013-02-15 00:48:33 +01003810 if (params->plink_action != NL80211_PLINK_ACTION_NO_ACTION)
3811 return -EINVAL;
3812 break;
3813 }
3814
3815 return 0;
3816}
3817EXPORT_SYMBOL(cfg80211_check_station_change);
3818
Johannes Berg5727ef12007-12-19 02:03:34 +01003819/*
Felix Fietkauc258d2d2009-11-11 17:23:31 +01003820 * Get vlan interface making sure it is running and on the right wiphy.
Johannes Berg5727ef12007-12-19 02:03:34 +01003821 */
Johannes Berg80b99892011-11-18 16:23:01 +01003822static struct net_device *get_vlan(struct genl_info *info,
3823 struct cfg80211_registered_device *rdev)
Johannes Berg5727ef12007-12-19 02:03:34 +01003824{
Johannes Berg463d0182009-07-14 00:33:35 +02003825 struct nlattr *vlanattr = info->attrs[NL80211_ATTR_STA_VLAN];
Johannes Berg80b99892011-11-18 16:23:01 +01003826 struct net_device *v;
3827 int ret;
Johannes Berg5727ef12007-12-19 02:03:34 +01003828
Johannes Berg80b99892011-11-18 16:23:01 +01003829 if (!vlanattr)
3830 return NULL;
3831
3832 v = dev_get_by_index(genl_info_net(info), nla_get_u32(vlanattr));
3833 if (!v)
3834 return ERR_PTR(-ENODEV);
3835
3836 if (!v->ieee80211_ptr || v->ieee80211_ptr->wiphy != &rdev->wiphy) {
3837 ret = -EINVAL;
3838 goto error;
Johannes Berg5727ef12007-12-19 02:03:34 +01003839 }
Johannes Berg80b99892011-11-18 16:23:01 +01003840
Johannes Berg77ee7c82013-02-15 00:48:33 +01003841 if (v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
3842 v->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
3843 v->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO) {
3844 ret = -EINVAL;
3845 goto error;
3846 }
3847
Johannes Berg80b99892011-11-18 16:23:01 +01003848 if (!netif_running(v)) {
3849 ret = -ENETDOWN;
3850 goto error;
3851 }
3852
3853 return v;
3854 error:
3855 dev_put(v);
3856 return ERR_PTR(ret);
Johannes Berg5727ef12007-12-19 02:03:34 +01003857}
3858
Jouni Malinendf881292013-02-14 21:10:54 +02003859static struct nla_policy
3860nl80211_sta_wme_policy[NL80211_STA_WME_MAX + 1] __read_mostly = {
3861 [NL80211_STA_WME_UAPSD_QUEUES] = { .type = NLA_U8 },
3862 [NL80211_STA_WME_MAX_SP] = { .type = NLA_U8 },
3863};
3864
Johannes Bergff276692013-02-15 00:09:01 +01003865static int nl80211_parse_sta_wme(struct genl_info *info,
3866 struct station_parameters *params)
Jouni Malinendf881292013-02-14 21:10:54 +02003867{
Jouni Malinendf881292013-02-14 21:10:54 +02003868 struct nlattr *tb[NL80211_STA_WME_MAX + 1];
3869 struct nlattr *nla;
3870 int err;
3871
Jouni Malinendf881292013-02-14 21:10:54 +02003872 /* parse WME attributes if present */
3873 if (!info->attrs[NL80211_ATTR_STA_WME])
3874 return 0;
3875
3876 nla = info->attrs[NL80211_ATTR_STA_WME];
3877 err = nla_parse_nested(tb, NL80211_STA_WME_MAX, nla,
3878 nl80211_sta_wme_policy);
3879 if (err)
3880 return err;
3881
3882 if (tb[NL80211_STA_WME_UAPSD_QUEUES])
3883 params->uapsd_queues = nla_get_u8(
3884 tb[NL80211_STA_WME_UAPSD_QUEUES]);
3885 if (params->uapsd_queues & ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK)
3886 return -EINVAL;
3887
3888 if (tb[NL80211_STA_WME_MAX_SP])
3889 params->max_sp = nla_get_u8(tb[NL80211_STA_WME_MAX_SP]);
3890
3891 if (params->max_sp & ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK)
3892 return -EINVAL;
3893
3894 params->sta_modify_mask |= STATION_PARAM_APPLY_UAPSD;
3895
3896 return 0;
3897}
3898
Johannes Bergff276692013-02-15 00:09:01 +01003899static int nl80211_set_station_tdls(struct genl_info *info,
3900 struct station_parameters *params)
3901{
3902 /* Dummy STA entry gets updated once the peer capabilities are known */
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03003903 if (info->attrs[NL80211_ATTR_PEER_AID])
3904 params->aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Johannes Bergff276692013-02-15 00:09:01 +01003905 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
3906 params->ht_capa =
3907 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
3908 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
3909 params->vht_capa =
3910 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
3911
3912 return nl80211_parse_sta_wme(info, params);
3913}
3914
Johannes Berg5727ef12007-12-19 02:03:34 +01003915static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info)
3916{
Johannes Berg4c476992010-10-04 21:36:35 +02003917 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02003918 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01003919 struct station_parameters params;
Johannes Berg77ee7c82013-02-15 00:48:33 +01003920 u8 *mac_addr;
3921 int err;
Johannes Berg5727ef12007-12-19 02:03:34 +01003922
3923 memset(&params, 0, sizeof(params));
3924
3925 params.listen_interval = -1;
3926
Johannes Berg77ee7c82013-02-15 00:48:33 +01003927 if (!rdev->ops->change_station)
3928 return -EOPNOTSUPP;
3929
Johannes Berg5727ef12007-12-19 02:03:34 +01003930 if (info->attrs[NL80211_ATTR_STA_AID])
3931 return -EINVAL;
3932
3933 if (!info->attrs[NL80211_ATTR_MAC])
3934 return -EINVAL;
3935
3936 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
3937
3938 if (info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]) {
3939 params.supported_rates =
3940 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
3941 params.supported_rates_len =
3942 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
3943 }
3944
Jouni Malinen9d62a982013-02-14 21:10:13 +02003945 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
3946 params.capability =
3947 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
3948 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
3949 }
3950
3951 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
3952 params.ext_capab =
3953 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
3954 params.ext_capab_len =
3955 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
3956 }
3957
Jouni Malinendf881292013-02-14 21:10:54 +02003958 if (info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
Johannes Bergba23d202012-12-27 17:32:09 +01003959 return -EINVAL;
Jouni Malinen36aedc902008-08-25 11:58:58 +03003960
Johannes Bergbdd3ae32012-01-02 13:30:03 +01003961 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01003962 return -EINVAL;
3963
Johannes Bergf8bacc22013-02-14 23:27:01 +01003964 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003965 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01003966 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
3967 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
3968 return -EINVAL;
3969 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01003970
Johannes Bergf8bacc22013-02-14 23:27:01 +01003971 if (info->attrs[NL80211_ATTR_STA_PLINK_STATE]) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07003972 params.plink_state =
Johannes Bergf8bacc22013-02-14 23:27:01 +01003973 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_STATE]);
3974 if (params.plink_state >= NUM_NL80211_PLINK_STATES)
3975 return -EINVAL;
3976 params.sta_modify_mask |= STATION_PARAM_APPLY_PLINK_STATE;
3977 }
Javier Cardona9c3990a2011-05-03 16:57:11 -07003978
Marco Porsch3b1c5a52013-01-07 16:04:52 +01003979 if (info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]) {
3980 enum nl80211_mesh_power_mode pm = nla_get_u32(
3981 info->attrs[NL80211_ATTR_LOCAL_MESH_POWER_MODE]);
3982
3983 if (pm <= NL80211_MESH_POWER_UNKNOWN ||
3984 pm > NL80211_MESH_POWER_MAX)
3985 return -EINVAL;
3986
3987 params.local_pm = pm;
3988 }
3989
Johannes Berg77ee7c82013-02-15 00:48:33 +01003990 /* Include parameters for TDLS peer (will check later) */
3991 err = nl80211_set_station_tdls(info, &params);
3992 if (err)
3993 return err;
3994
3995 params.vlan = get_vlan(info, rdev);
3996 if (IS_ERR(params.vlan))
3997 return PTR_ERR(params.vlan);
3998
Johannes Berga97f4422009-06-18 17:23:43 +02003999 switch (dev->ieee80211_ptr->iftype) {
4000 case NL80211_IFTYPE_AP:
4001 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004002 case NL80211_IFTYPE_P2P_GO:
Johannes Berg074ac8d2010-09-16 14:58:22 +02004003 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berga97f4422009-06-18 17:23:43 +02004004 case NL80211_IFTYPE_STATION:
Antonio Quartulli267335d2012-01-31 20:25:47 +01004005 case NL80211_IFTYPE_ADHOC:
Johannes Berga97f4422009-06-18 17:23:43 +02004006 case NL80211_IFTYPE_MESH_POINT:
Johannes Berga97f4422009-06-18 17:23:43 +02004007 break;
4008 default:
Johannes Berg77ee7c82013-02-15 00:48:33 +01004009 err = -EOPNOTSUPP;
4010 goto out_put_vlan;
Johannes Berg034d6552009-05-27 10:35:29 +02004011 }
4012
Johannes Berg77ee7c82013-02-15 00:48:33 +01004013 /* driver will call cfg80211_check_station_change() */
Hila Gonene35e4d22012-06-27 17:19:42 +03004014 err = rdev_change_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004015
Johannes Berg77ee7c82013-02-15 00:48:33 +01004016 out_put_vlan:
Johannes Berg5727ef12007-12-19 02:03:34 +01004017 if (params.vlan)
4018 dev_put(params.vlan);
Johannes Berg3b858752009-03-12 09:55:09 +01004019
Johannes Berg5727ef12007-12-19 02:03:34 +01004020 return err;
4021}
4022
4023static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info)
4024{
Johannes Berg4c476992010-10-04 21:36:35 +02004025 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg5727ef12007-12-19 02:03:34 +01004026 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004027 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004028 struct station_parameters params;
4029 u8 *mac_addr = NULL;
4030
4031 memset(&params, 0, sizeof(params));
4032
Johannes Berg984c3112013-02-14 23:43:25 +01004033 if (!rdev->ops->add_station)
4034 return -EOPNOTSUPP;
4035
Johannes Berg5727ef12007-12-19 02:03:34 +01004036 if (!info->attrs[NL80211_ATTR_MAC])
4037 return -EINVAL;
4038
Johannes Berg5727ef12007-12-19 02:03:34 +01004039 if (!info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL])
4040 return -EINVAL;
4041
4042 if (!info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES])
4043 return -EINVAL;
4044
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004045 if (!info->attrs[NL80211_ATTR_STA_AID] &&
4046 !info->attrs[NL80211_ATTR_PEER_AID])
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004047 return -EINVAL;
4048
Johannes Berg5727ef12007-12-19 02:03:34 +01004049 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4050 params.supported_rates =
4051 nla_data(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4052 params.supported_rates_len =
4053 nla_len(info->attrs[NL80211_ATTR_STA_SUPPORTED_RATES]);
4054 params.listen_interval =
4055 nla_get_u16(info->attrs[NL80211_ATTR_STA_LISTEN_INTERVAL]);
Johannes Berg51b50fb2009-05-24 16:42:30 +02004056
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004057 if (info->attrs[NL80211_ATTR_PEER_AID])
Jouni Malinen5e4b6f52013-05-16 20:11:08 +03004058 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_PEER_AID]);
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004059 else
4060 params.aid = nla_get_u16(info->attrs[NL80211_ATTR_STA_AID]);
Thadeu Lima de Souza Cascardo0e956c12010-02-12 12:34:50 -02004061 if (!params.aid || params.aid > IEEE80211_MAX_AID)
4062 return -EINVAL;
Johannes Berg51b50fb2009-05-24 16:42:30 +02004063
Jouni Malinen9d62a982013-02-14 21:10:13 +02004064 if (info->attrs[NL80211_ATTR_STA_CAPABILITY]) {
4065 params.capability =
4066 nla_get_u16(info->attrs[NL80211_ATTR_STA_CAPABILITY]);
4067 params.sta_modify_mask |= STATION_PARAM_APPLY_CAPABILITY;
4068 }
4069
4070 if (info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]) {
4071 params.ext_capab =
4072 nla_data(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4073 params.ext_capab_len =
4074 nla_len(info->attrs[NL80211_ATTR_STA_EXT_CAPABILITY]);
4075 }
4076
Jouni Malinen36aedc902008-08-25 11:58:58 +03004077 if (info->attrs[NL80211_ATTR_HT_CAPABILITY])
4078 params.ht_capa =
4079 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]);
Johannes Berg5727ef12007-12-19 02:03:34 +01004080
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00004081 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY])
4082 params.vht_capa =
4083 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]);
4084
Johannes Bergf8bacc22013-02-14 23:27:01 +01004085 if (info->attrs[NL80211_ATTR_STA_PLINK_ACTION]) {
Javier Cardona96b78df2011-04-07 15:08:33 -07004086 params.plink_action =
Johannes Bergf8bacc22013-02-14 23:27:01 +01004087 nla_get_u8(info->attrs[NL80211_ATTR_STA_PLINK_ACTION]);
4088 if (params.plink_action >= NUM_NL80211_PLINK_ACTIONS)
4089 return -EINVAL;
4090 }
Javier Cardona96b78df2011-04-07 15:08:33 -07004091
Johannes Bergff276692013-02-15 00:09:01 +01004092 err = nl80211_parse_sta_wme(info, &params);
4093 if (err)
4094 return err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004095
Johannes Bergbdd3ae32012-01-02 13:30:03 +01004096 if (parse_station_flags(info, dev->ieee80211_ptr->iftype, &params))
Johannes Berg5727ef12007-12-19 02:03:34 +01004097 return -EINVAL;
4098
Johannes Berg77ee7c82013-02-15 00:48:33 +01004099 /* When you run into this, adjust the code below for the new flag */
4100 BUILD_BUG_ON(NL80211_STA_FLAG_MAX != 7);
4101
Johannes Bergbdd90d52011-12-14 12:20:27 +01004102 switch (dev->ieee80211_ptr->iftype) {
4103 case NL80211_IFTYPE_AP:
4104 case NL80211_IFTYPE_AP_VLAN:
4105 case NL80211_IFTYPE_P2P_GO:
Johannes Berg984c3112013-02-14 23:43:25 +01004106 /* ignore WME attributes if iface/sta is not capable */
4107 if (!(rdev->wiphy.flags & WIPHY_FLAG_AP_UAPSD) ||
4108 !(params.sta_flags_set & BIT(NL80211_STA_FLAG_WME)))
4109 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004110
Johannes Bergbdd90d52011-12-14 12:20:27 +01004111 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004112 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4113 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004114 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004115 /* but don't bother the driver with it */
4116 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_TDLS_PEER);
Eliad Pellerc75786c2011-08-23 14:37:46 +03004117
Johannes Bergd582cff2012-10-26 17:53:44 +02004118 /* allow authenticated/associated only if driver handles it */
4119 if (!(rdev->wiphy.features &
4120 NL80211_FEATURE_FULL_AP_CLIENT_STATE) &&
4121 params.sta_flags_mask &
4122 (BIT(NL80211_STA_FLAG_AUTHENTICATED) |
4123 BIT(NL80211_STA_FLAG_ASSOCIATED)))
4124 return -EINVAL;
4125
Johannes Bergbdd90d52011-12-14 12:20:27 +01004126 /* must be last in here for error handling */
4127 params.vlan = get_vlan(info, rdev);
4128 if (IS_ERR(params.vlan))
4129 return PTR_ERR(params.vlan);
4130 break;
4131 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg984c3112013-02-14 23:43:25 +01004132 /* ignore uAPSD data */
4133 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4134
Johannes Bergd582cff2012-10-26 17:53:44 +02004135 /* associated is disallowed */
4136 if (params.sta_flags_mask & BIT(NL80211_STA_FLAG_ASSOCIATED))
4137 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004138 /* TDLS peers cannot be added */
Jouni Malinen3d124ea2013-05-27 18:24:02 +03004139 if ((params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) ||
4140 info->attrs[NL80211_ATTR_PEER_AID])
Johannes Berg4319e192011-09-07 11:50:48 +02004141 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004142 break;
4143 case NL80211_IFTYPE_STATION:
Johannes Berg93d08f02013-03-04 09:29:46 +01004144 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg984c3112013-02-14 23:43:25 +01004145 /* ignore uAPSD data */
4146 params.sta_modify_mask &= ~STATION_PARAM_APPLY_UAPSD;
4147
Johannes Berg77ee7c82013-02-15 00:48:33 +01004148 /* these are disallowed */
4149 if (params.sta_flags_mask &
4150 (BIT(NL80211_STA_FLAG_ASSOCIATED) |
4151 BIT(NL80211_STA_FLAG_AUTHENTICATED)))
Johannes Bergd582cff2012-10-26 17:53:44 +02004152 return -EINVAL;
Johannes Bergbdd90d52011-12-14 12:20:27 +01004153 /* Only TDLS peers can be added */
4154 if (!(params.sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)))
4155 return -EINVAL;
4156 /* Can only add if TDLS ... */
4157 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS))
4158 return -EOPNOTSUPP;
4159 /* ... with external setup is supported */
4160 if (!(rdev->wiphy.flags & WIPHY_FLAG_TDLS_EXTERNAL_SETUP))
4161 return -EOPNOTSUPP;
Johannes Berg77ee7c82013-02-15 00:48:33 +01004162 /*
4163 * Older wpa_supplicant versions always mark the TDLS peer
4164 * as authorized, but it shouldn't yet be.
4165 */
4166 params.sta_flags_mask &= ~BIT(NL80211_STA_FLAG_AUTHORIZED);
Johannes Bergbdd90d52011-12-14 12:20:27 +01004167 break;
4168 default:
4169 return -EOPNOTSUPP;
Eliad Pellerc75786c2011-08-23 14:37:46 +03004170 }
4171
Johannes Bergbdd90d52011-12-14 12:20:27 +01004172 /* be aware of params.vlan when changing code here */
Johannes Berg5727ef12007-12-19 02:03:34 +01004173
Hila Gonene35e4d22012-06-27 17:19:42 +03004174 err = rdev_add_station(rdev, dev, mac_addr, &params);
Johannes Berg5727ef12007-12-19 02:03:34 +01004175
Johannes Berg5727ef12007-12-19 02:03:34 +01004176 if (params.vlan)
4177 dev_put(params.vlan);
Johannes Berg5727ef12007-12-19 02:03:34 +01004178 return err;
4179}
4180
4181static int nl80211_del_station(struct sk_buff *skb, struct genl_info *info)
4182{
Johannes Berg4c476992010-10-04 21:36:35 +02004183 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4184 struct net_device *dev = info->user_ptr[1];
Johannes Berg5727ef12007-12-19 02:03:34 +01004185 u8 *mac_addr = NULL;
4186
4187 if (info->attrs[NL80211_ATTR_MAC])
4188 mac_addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
4189
Johannes Berge80cf852009-05-11 14:43:13 +02004190 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Marco Porschd5d9de02010-03-30 10:00:16 +02004191 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP_VLAN &&
Johannes Berg074ac8d2010-09-16 14:58:22 +02004192 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT &&
Johannes Berg4c476992010-10-04 21:36:35 +02004193 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4194 return -EINVAL;
Johannes Berge80cf852009-05-11 14:43:13 +02004195
Johannes Berg4c476992010-10-04 21:36:35 +02004196 if (!rdev->ops->del_station)
4197 return -EOPNOTSUPP;
Johannes Berg5727ef12007-12-19 02:03:34 +01004198
Hila Gonene35e4d22012-06-27 17:19:42 +03004199 return rdev_del_station(rdev, dev, mac_addr);
Johannes Berg5727ef12007-12-19 02:03:34 +01004200}
4201
Eric W. Biederman15e47302012-09-07 20:12:54 +00004202static int nl80211_send_mpath(struct sk_buff *msg, u32 portid, u32 seq,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004203 int flags, struct net_device *dev,
4204 u8 *dst, u8 *next_hop,
4205 struct mpath_info *pinfo)
4206{
4207 void *hdr;
4208 struct nlattr *pinfoattr;
4209
Eric W. Biederman15e47302012-09-07 20:12:54 +00004210 hdr = nl80211hdr_put(msg, portid, seq, flags, NL80211_CMD_NEW_STATION);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004211 if (!hdr)
4212 return -1;
4213
David S. Miller9360ffd2012-03-29 04:41:26 -04004214 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4215 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, dst) ||
4216 nla_put(msg, NL80211_ATTR_MPATH_NEXT_HOP, ETH_ALEN, next_hop) ||
4217 nla_put_u32(msg, NL80211_ATTR_GENERATION, pinfo->generation))
4218 goto nla_put_failure;
Johannes Bergf5ea9122009-08-07 16:17:38 +02004219
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004220 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MPATH_INFO);
4221 if (!pinfoattr)
4222 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004223 if ((pinfo->filled & MPATH_INFO_FRAME_QLEN) &&
4224 nla_put_u32(msg, NL80211_MPATH_INFO_FRAME_QLEN,
4225 pinfo->frame_qlen))
4226 goto nla_put_failure;
4227 if (((pinfo->filled & MPATH_INFO_SN) &&
4228 nla_put_u32(msg, NL80211_MPATH_INFO_SN, pinfo->sn)) ||
4229 ((pinfo->filled & MPATH_INFO_METRIC) &&
4230 nla_put_u32(msg, NL80211_MPATH_INFO_METRIC,
4231 pinfo->metric)) ||
4232 ((pinfo->filled & MPATH_INFO_EXPTIME) &&
4233 nla_put_u32(msg, NL80211_MPATH_INFO_EXPTIME,
4234 pinfo->exptime)) ||
4235 ((pinfo->filled & MPATH_INFO_FLAGS) &&
4236 nla_put_u8(msg, NL80211_MPATH_INFO_FLAGS,
4237 pinfo->flags)) ||
4238 ((pinfo->filled & MPATH_INFO_DISCOVERY_TIMEOUT) &&
4239 nla_put_u32(msg, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT,
4240 pinfo->discovery_timeout)) ||
4241 ((pinfo->filled & MPATH_INFO_DISCOVERY_RETRIES) &&
4242 nla_put_u8(msg, NL80211_MPATH_INFO_DISCOVERY_RETRIES,
4243 pinfo->discovery_retries)))
4244 goto nla_put_failure;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004245
4246 nla_nest_end(msg, pinfoattr);
4247
4248 return genlmsg_end(msg, hdr);
4249
4250 nla_put_failure:
Thomas Grafbc3ed282008-06-03 16:36:54 -07004251 genlmsg_cancel(msg, hdr);
4252 return -EMSGSIZE;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004253}
4254
4255static int nl80211_dump_mpath(struct sk_buff *skb,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004256 struct netlink_callback *cb)
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004257{
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004258 struct mpath_info pinfo;
4259 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02004260 struct wireless_dev *wdev;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004261 u8 dst[ETH_ALEN];
4262 u8 next_hop[ETH_ALEN];
Johannes Berg97990a02013-04-19 01:02:55 +02004263 int path_idx = cb->args[2];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004264 int err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004265
Johannes Berg97990a02013-04-19 01:02:55 +02004266 err = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02004267 if (err)
4268 return err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004269
4270 if (!dev->ops->dump_mpath) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004271 err = -EOPNOTSUPP;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004272 goto out_err;
4273 }
4274
Johannes Berg97990a02013-04-19 01:02:55 +02004275 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT) {
Jouni Malineneec60b02009-03-20 21:21:19 +02004276 err = -EOPNOTSUPP;
Roel Kluin0448b5f2009-08-22 21:15:49 +02004277 goto out_err;
Jouni Malineneec60b02009-03-20 21:21:19 +02004278 }
4279
Johannes Bergbba95fe2008-07-29 13:22:51 +02004280 while (1) {
Johannes Berg97990a02013-04-19 01:02:55 +02004281 err = rdev_dump_mpath(dev, wdev->netdev, path_idx, dst,
4282 next_hop, &pinfo);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004283 if (err == -ENOENT)
4284 break;
4285 if (err)
Johannes Berg3b858752009-03-12 09:55:09 +01004286 goto out_err;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004287
Eric W. Biederman15e47302012-09-07 20:12:54 +00004288 if (nl80211_send_mpath(skb, NETLINK_CB(cb->skb).portid,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004289 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02004290 wdev->netdev, dst, next_hop,
Johannes Bergbba95fe2008-07-29 13:22:51 +02004291 &pinfo) < 0)
4292 goto out;
4293
4294 path_idx++;
4295 }
4296
4297
4298 out:
Johannes Berg97990a02013-04-19 01:02:55 +02004299 cb->args[2] = path_idx;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004300 err = skb->len;
Johannes Bergbba95fe2008-07-29 13:22:51 +02004301 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02004302 nl80211_finish_wdev_dump(dev);
Johannes Bergbba95fe2008-07-29 13:22:51 +02004303 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004304}
4305
4306static int nl80211_get_mpath(struct sk_buff *skb, struct genl_info *info)
4307{
Johannes Berg4c476992010-10-04 21:36:35 +02004308 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004309 int err;
Johannes Berg4c476992010-10-04 21:36:35 +02004310 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004311 struct mpath_info pinfo;
4312 struct sk_buff *msg;
4313 u8 *dst = NULL;
4314 u8 next_hop[ETH_ALEN];
4315
4316 memset(&pinfo, 0, sizeof(pinfo));
4317
4318 if (!info->attrs[NL80211_ATTR_MAC])
4319 return -EINVAL;
4320
4321 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4322
Johannes Berg4c476992010-10-04 21:36:35 +02004323 if (!rdev->ops->get_mpath)
4324 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004325
Johannes Berg4c476992010-10-04 21:36:35 +02004326 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4327 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004328
Hila Gonene35e4d22012-06-27 17:19:42 +03004329 err = rdev_get_mpath(rdev, dev, dst, next_hop, &pinfo);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004330 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004331 return err;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004332
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004333 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004334 if (!msg)
Johannes Berg4c476992010-10-04 21:36:35 +02004335 return -ENOMEM;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004336
Eric W. Biederman15e47302012-09-07 20:12:54 +00004337 if (nl80211_send_mpath(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg4c476992010-10-04 21:36:35 +02004338 dev, dst, next_hop, &pinfo) < 0) {
4339 nlmsg_free(msg);
4340 return -ENOBUFS;
4341 }
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004342
Johannes Berg4c476992010-10-04 21:36:35 +02004343 return genlmsg_reply(msg, info);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004344}
4345
4346static int nl80211_set_mpath(struct sk_buff *skb, struct genl_info *info)
4347{
Johannes Berg4c476992010-10-04 21:36:35 +02004348 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4349 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004350 u8 *dst = NULL;
4351 u8 *next_hop = NULL;
4352
4353 if (!info->attrs[NL80211_ATTR_MAC])
4354 return -EINVAL;
4355
4356 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4357 return -EINVAL;
4358
4359 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4360 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4361
Johannes Berg4c476992010-10-04 21:36:35 +02004362 if (!rdev->ops->change_mpath)
4363 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004364
Johannes Berg4c476992010-10-04 21:36:35 +02004365 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4366 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004367
Hila Gonene35e4d22012-06-27 17:19:42 +03004368 return rdev_change_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004369}
Johannes Berg4c476992010-10-04 21:36:35 +02004370
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004371static int nl80211_new_mpath(struct sk_buff *skb, struct genl_info *info)
4372{
Johannes Berg4c476992010-10-04 21:36:35 +02004373 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4374 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004375 u8 *dst = NULL;
4376 u8 *next_hop = NULL;
4377
4378 if (!info->attrs[NL80211_ATTR_MAC])
4379 return -EINVAL;
4380
4381 if (!info->attrs[NL80211_ATTR_MPATH_NEXT_HOP])
4382 return -EINVAL;
4383
4384 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4385 next_hop = nla_data(info->attrs[NL80211_ATTR_MPATH_NEXT_HOP]);
4386
Johannes Berg4c476992010-10-04 21:36:35 +02004387 if (!rdev->ops->add_mpath)
4388 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004389
Johannes Berg4c476992010-10-04 21:36:35 +02004390 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
4391 return -EOPNOTSUPP;
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004392
Hila Gonene35e4d22012-06-27 17:19:42 +03004393 return rdev_add_mpath(rdev, dev, dst, next_hop);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004394}
4395
4396static int nl80211_del_mpath(struct sk_buff *skb, struct genl_info *info)
4397{
Johannes Berg4c476992010-10-04 21:36:35 +02004398 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4399 struct net_device *dev = info->user_ptr[1];
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004400 u8 *dst = NULL;
4401
4402 if (info->attrs[NL80211_ATTR_MAC])
4403 dst = nla_data(info->attrs[NL80211_ATTR_MAC]);
4404
Johannes Berg4c476992010-10-04 21:36:35 +02004405 if (!rdev->ops->del_mpath)
4406 return -EOPNOTSUPP;
Johannes Berg3b858752009-03-12 09:55:09 +01004407
Hila Gonene35e4d22012-06-27 17:19:42 +03004408 return rdev_del_mpath(rdev, dev, dst);
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01004409}
4410
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004411static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
4412{
Johannes Berg4c476992010-10-04 21:36:35 +02004413 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4414 struct net_device *dev = info->user_ptr[1];
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004415 struct bss_parameters params;
4416
4417 memset(&params, 0, sizeof(params));
4418 /* default to not changing parameters */
4419 params.use_cts_prot = -1;
4420 params.use_short_preamble = -1;
4421 params.use_short_slot_time = -1;
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004422 params.ap_isolate = -1;
Helmut Schaa50b12f52010-11-19 12:40:25 +01004423 params.ht_opmode = -1;
Johannes Berg53cabad2012-11-14 15:17:28 +01004424 params.p2p_ctwindow = -1;
4425 params.p2p_opp_ps = -1;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004426
4427 if (info->attrs[NL80211_ATTR_BSS_CTS_PROT])
4428 params.use_cts_prot =
4429 nla_get_u8(info->attrs[NL80211_ATTR_BSS_CTS_PROT]);
4430 if (info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE])
4431 params.use_short_preamble =
4432 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_PREAMBLE]);
4433 if (info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME])
4434 params.use_short_slot_time =
4435 nla_get_u8(info->attrs[NL80211_ATTR_BSS_SHORT_SLOT_TIME]);
Jouni Malinen90c97a02008-10-30 16:59:22 +02004436 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
4437 params.basic_rates =
4438 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4439 params.basic_rates_len =
4440 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
4441 }
Felix Fietkaufd8aaaf2010-04-27 01:23:35 +02004442 if (info->attrs[NL80211_ATTR_AP_ISOLATE])
4443 params.ap_isolate = !!nla_get_u8(info->attrs[NL80211_ATTR_AP_ISOLATE]);
Helmut Schaa50b12f52010-11-19 12:40:25 +01004444 if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
4445 params.ht_opmode =
4446 nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004447
Johannes Berg53cabad2012-11-14 15:17:28 +01004448 if (info->attrs[NL80211_ATTR_P2P_CTWINDOW]) {
4449 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4450 return -EINVAL;
4451 params.p2p_ctwindow =
4452 nla_get_s8(info->attrs[NL80211_ATTR_P2P_CTWINDOW]);
4453 if (params.p2p_ctwindow < 0)
4454 return -EINVAL;
4455 if (params.p2p_ctwindow != 0 &&
4456 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_CTWIN))
4457 return -EINVAL;
4458 }
4459
4460 if (info->attrs[NL80211_ATTR_P2P_OPPPS]) {
4461 u8 tmp;
4462
4463 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4464 return -EINVAL;
4465 tmp = nla_get_u8(info->attrs[NL80211_ATTR_P2P_OPPPS]);
4466 if (tmp > 1)
4467 return -EINVAL;
4468 params.p2p_opp_ps = tmp;
4469 if (params.p2p_opp_ps &&
4470 !(rdev->wiphy.features & NL80211_FEATURE_P2P_GO_OPPPS))
4471 return -EINVAL;
4472 }
4473
Johannes Berg4c476992010-10-04 21:36:35 +02004474 if (!rdev->ops->change_bss)
4475 return -EOPNOTSUPP;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004476
Johannes Berg074ac8d2010-09-16 14:58:22 +02004477 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
Johannes Berg4c476992010-10-04 21:36:35 +02004478 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
4479 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02004480
Hila Gonene35e4d22012-06-27 17:19:42 +03004481 return rdev_change_bss(rdev, dev, &params);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03004482}
4483
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004484static const struct nla_policy reg_rule_policy[NL80211_REG_RULE_ATTR_MAX + 1] = {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004485 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
4486 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
4487 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
4488 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
4489 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
4490 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
4491};
4492
4493static int parse_reg_rule(struct nlattr *tb[],
4494 struct ieee80211_reg_rule *reg_rule)
4495{
4496 struct ieee80211_freq_range *freq_range = &reg_rule->freq_range;
4497 struct ieee80211_power_rule *power_rule = &reg_rule->power_rule;
4498
4499 if (!tb[NL80211_ATTR_REG_RULE_FLAGS])
4500 return -EINVAL;
4501 if (!tb[NL80211_ATTR_FREQ_RANGE_START])
4502 return -EINVAL;
4503 if (!tb[NL80211_ATTR_FREQ_RANGE_END])
4504 return -EINVAL;
4505 if (!tb[NL80211_ATTR_FREQ_RANGE_MAX_BW])
4506 return -EINVAL;
4507 if (!tb[NL80211_ATTR_POWER_RULE_MAX_EIRP])
4508 return -EINVAL;
4509
4510 reg_rule->flags = nla_get_u32(tb[NL80211_ATTR_REG_RULE_FLAGS]);
4511
4512 freq_range->start_freq_khz =
4513 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]);
4514 freq_range->end_freq_khz =
4515 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]);
4516 freq_range->max_bandwidth_khz =
4517 nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]);
4518
4519 power_rule->max_eirp =
4520 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]);
4521
4522 if (tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN])
4523 power_rule->max_antenna_gain =
4524 nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN]);
4525
4526 return 0;
4527}
4528
4529static int nl80211_req_set_reg(struct sk_buff *skb, struct genl_info *info)
4530{
4531 int r;
4532 char *data = NULL;
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004533 enum nl80211_user_reg_hint_type user_reg_hint_type;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004534
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004535 /*
4536 * You should only get this when cfg80211 hasn't yet initialized
4537 * completely when built-in to the kernel right between the time
4538 * window between nl80211_init() and regulatory_init(), if that is
4539 * even possible.
4540 */
Johannes Berg458f4f92012-12-06 15:47:38 +01004541 if (unlikely(!rcu_access_pointer(cfg80211_regdomain)))
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004542 return -EINPROGRESS;
Luis R. Rodriguez80778f12009-02-21 00:04:22 -05004543
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004544 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
4545 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004546
4547 data = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
4548
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004549 if (info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE])
4550 user_reg_hint_type =
4551 nla_get_u32(info->attrs[NL80211_ATTR_USER_REG_HINT_TYPE]);
4552 else
4553 user_reg_hint_type = NL80211_USER_REG_HINT_USER;
4554
4555 switch (user_reg_hint_type) {
4556 case NL80211_USER_REG_HINT_USER:
4557 case NL80211_USER_REG_HINT_CELL_BASE:
4558 break;
4559 default:
4560 return -EINVAL;
4561 }
4562
4563 r = regulatory_hint_user(data, user_reg_hint_type);
Luis R. Rodriguezfe33eb32009-02-21 00:04:30 -05004564
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07004565 return r;
4566}
4567
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004568static int nl80211_get_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004569 struct genl_info *info)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004570{
Johannes Berg4c476992010-10-04 21:36:35 +02004571 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02004572 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004573 struct wireless_dev *wdev = dev->ieee80211_ptr;
4574 struct mesh_config cur_params;
4575 int err = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004576 void *hdr;
4577 struct nlattr *pinfoattr;
4578 struct sk_buff *msg;
4579
Johannes Berg29cbe682010-12-03 09:20:44 +01004580 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4581 return -EOPNOTSUPP;
4582
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004583 if (!rdev->ops->get_mesh_config)
Johannes Berg4c476992010-10-04 21:36:35 +02004584 return -EOPNOTSUPP;
Jouni Malinenf3f92582009-03-20 17:57:36 +02004585
Johannes Berg29cbe682010-12-03 09:20:44 +01004586 wdev_lock(wdev);
4587 /* If not connected, get default parameters */
4588 if (!wdev->mesh_id_len)
4589 memcpy(&cur_params, &default_mesh_config, sizeof(cur_params));
4590 else
Hila Gonene35e4d22012-06-27 17:19:42 +03004591 err = rdev_get_mesh_config(rdev, dev, &cur_params);
Johannes Berg29cbe682010-12-03 09:20:44 +01004592 wdev_unlock(wdev);
4593
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004594 if (err)
Johannes Berg4c476992010-10-04 21:36:35 +02004595 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004596
4597 /* Draw up a netlink message to send back */
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004598 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02004599 if (!msg)
4600 return -ENOMEM;
Eric W. Biederman15e47302012-09-07 20:12:54 +00004601 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004602 NL80211_CMD_GET_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004603 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01004604 goto out;
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004605 pinfoattr = nla_nest_start(msg, NL80211_ATTR_MESH_CONFIG);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004606 if (!pinfoattr)
4607 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04004608 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
4609 nla_put_u16(msg, NL80211_MESHCONF_RETRY_TIMEOUT,
4610 cur_params.dot11MeshRetryTimeout) ||
4611 nla_put_u16(msg, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4612 cur_params.dot11MeshConfirmTimeout) ||
4613 nla_put_u16(msg, NL80211_MESHCONF_HOLDING_TIMEOUT,
4614 cur_params.dot11MeshHoldingTimeout) ||
4615 nla_put_u16(msg, NL80211_MESHCONF_MAX_PEER_LINKS,
4616 cur_params.dot11MeshMaxPeerLinks) ||
4617 nla_put_u8(msg, NL80211_MESHCONF_MAX_RETRIES,
4618 cur_params.dot11MeshMaxRetries) ||
4619 nla_put_u8(msg, NL80211_MESHCONF_TTL,
4620 cur_params.dot11MeshTTL) ||
4621 nla_put_u8(msg, NL80211_MESHCONF_ELEMENT_TTL,
4622 cur_params.element_ttl) ||
4623 nla_put_u8(msg, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4624 cur_params.auto_open_plinks) ||
John W. Linville7eab0f62012-04-12 14:25:14 -04004625 nla_put_u32(msg, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4626 cur_params.dot11MeshNbrOffsetMaxNeighbor) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04004627 nla_put_u8(msg, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4628 cur_params.dot11MeshHWMPmaxPREQretries) ||
4629 nla_put_u32(msg, NL80211_MESHCONF_PATH_REFRESH_TIME,
4630 cur_params.path_refresh_time) ||
4631 nla_put_u16(msg, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4632 cur_params.min_discovery_timeout) ||
4633 nla_put_u32(msg, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4634 cur_params.dot11MeshHWMPactivePathTimeout) ||
4635 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
4636 cur_params.dot11MeshHWMPpreqMinInterval) ||
4637 nla_put_u16(msg, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
4638 cur_params.dot11MeshHWMPperrMinInterval) ||
4639 nla_put_u16(msg, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4640 cur_params.dot11MeshHWMPnetDiameterTraversalTime) ||
4641 nla_put_u8(msg, NL80211_MESHCONF_HWMP_ROOTMODE,
4642 cur_params.dot11MeshHWMPRootMode) ||
4643 nla_put_u16(msg, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
4644 cur_params.dot11MeshHWMPRannInterval) ||
4645 nla_put_u8(msg, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
4646 cur_params.dot11MeshGateAnnouncementProtocol) ||
4647 nla_put_u8(msg, NL80211_MESHCONF_FORWARDING,
4648 cur_params.dot11MeshForwarding) ||
4649 nla_put_u32(msg, NL80211_MESHCONF_RSSI_THRESHOLD,
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07004650 cur_params.rssi_threshold) ||
4651 nla_put_u32(msg, NL80211_MESHCONF_HT_OPMODE,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004652 cur_params.ht_opmode) ||
4653 nla_put_u32(msg, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4654 cur_params.dot11MeshHWMPactivePathToRootTimeout) ||
4655 nla_put_u16(msg, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004656 cur_params.dot11MeshHWMProotInterval) ||
4657 nla_put_u16(msg, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004658 cur_params.dot11MeshHWMPconfirmationInterval) ||
4659 nla_put_u32(msg, NL80211_MESHCONF_POWER_MODE,
4660 cur_params.power_mode) ||
4661 nla_put_u16(msg, NL80211_MESHCONF_AWAKE_WINDOW,
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004662 cur_params.dot11MeshAwakeWindowDuration) ||
4663 nla_put_u32(msg, NL80211_MESHCONF_PLINK_TIMEOUT,
4664 cur_params.plink_timeout))
David S. Miller9360ffd2012-03-29 04:41:26 -04004665 goto nla_put_failure;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004666 nla_nest_end(msg, pinfoattr);
4667 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02004668 return genlmsg_reply(msg, info);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004669
Johannes Berg3b858752009-03-12 09:55:09 +01004670 nla_put_failure:
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004671 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01004672 out:
Yuri Ershovd080e272010-06-29 15:08:07 +04004673 nlmsg_free(msg);
Johannes Berg4c476992010-10-04 21:36:35 +02004674 return -ENOBUFS;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004675}
4676
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00004677static const struct nla_policy nl80211_meshconf_params_policy[NL80211_MESHCONF_ATTR_MAX+1] = {
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004678 [NL80211_MESHCONF_RETRY_TIMEOUT] = { .type = NLA_U16 },
4679 [NL80211_MESHCONF_CONFIRM_TIMEOUT] = { .type = NLA_U16 },
4680 [NL80211_MESHCONF_HOLDING_TIMEOUT] = { .type = NLA_U16 },
4681 [NL80211_MESHCONF_MAX_PEER_LINKS] = { .type = NLA_U16 },
4682 [NL80211_MESHCONF_MAX_RETRIES] = { .type = NLA_U8 },
4683 [NL80211_MESHCONF_TTL] = { .type = NLA_U8 },
Javier Cardona45904f22010-12-03 09:20:40 +01004684 [NL80211_MESHCONF_ELEMENT_TTL] = { .type = NLA_U8 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004685 [NL80211_MESHCONF_AUTO_OPEN_PLINKS] = { .type = NLA_U8 },
Javier Cardonad299a1f2012-03-31 11:31:33 -07004686 [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004687 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES] = { .type = NLA_U8 },
4688 [NL80211_MESHCONF_PATH_REFRESH_TIME] = { .type = NLA_U32 },
4689 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT] = { .type = NLA_U16 },
4690 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT] = { .type = NLA_U32 },
4691 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL] = { .type = NLA_U16 },
Thomas Pedersendca7e942011-11-24 17:15:24 -08004692 [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL] = { .type = NLA_U16 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004693 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME] = { .type = NLA_U16 },
Javier Cardona699403d2011-08-09 16:45:09 -07004694 [NL80211_MESHCONF_HWMP_ROOTMODE] = { .type = NLA_U8 },
Javier Cardona0507e152011-08-09 16:45:10 -07004695 [NL80211_MESHCONF_HWMP_RANN_INTERVAL] = { .type = NLA_U16 },
Javier Cardona16dd7262011-08-09 16:45:11 -07004696 [NL80211_MESHCONF_GATE_ANNOUNCEMENTS] = { .type = NLA_U8 },
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08004697 [NL80211_MESHCONF_FORWARDING] = { .type = NLA_U8 },
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004698 [NL80211_MESHCONF_RSSI_THRESHOLD] = { .type = NLA_U32 },
4699 [NL80211_MESHCONF_HT_OPMODE] = { .type = NLA_U16 },
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004700 [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT] = { .type = NLA_U32 },
4701 [NL80211_MESHCONF_HWMP_ROOT_INTERVAL] = { .type = NLA_U16 },
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004702 [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL] = { .type = NLA_U16 },
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004703 [NL80211_MESHCONF_POWER_MODE] = { .type = NLA_U32 },
4704 [NL80211_MESHCONF_AWAKE_WINDOW] = { .type = NLA_U16 },
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004705 [NL80211_MESHCONF_PLINK_TIMEOUT] = { .type = NLA_U32 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004706};
4707
Javier Cardonac80d5452010-12-16 17:37:49 -08004708static const struct nla_policy
4709 nl80211_mesh_setup_params_policy[NL80211_MESH_SETUP_ATTR_MAX+1] = {
Javier Cardonad299a1f2012-03-31 11:31:33 -07004710 [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC] = { .type = NLA_U8 },
Javier Cardonac80d5452010-12-16 17:37:49 -08004711 [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL] = { .type = NLA_U8 },
4712 [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC] = { .type = NLA_U8 },
Javier Cardona15d5dda2011-04-07 15:08:28 -07004713 [NL80211_MESH_SETUP_USERSPACE_AUTH] = { .type = NLA_FLAG },
Colleen Twitty6e16d902013-05-08 11:45:59 -07004714 [NL80211_MESH_SETUP_AUTH_PROTOCOL] = { .type = NLA_U8 },
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004715 [NL80211_MESH_SETUP_USERSPACE_MPM] = { .type = NLA_FLAG },
Javier Cardona581a8b02011-04-07 15:08:27 -07004716 [NL80211_MESH_SETUP_IE] = { .type = NLA_BINARY,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004717 .len = IEEE80211_MAX_DATA_LEN },
Javier Cardonab130e5c2011-05-03 16:57:07 -07004718 [NL80211_MESH_SETUP_USERSPACE_AMPE] = { .type = NLA_FLAG },
Javier Cardonac80d5452010-12-16 17:37:49 -08004719};
4720
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004721static int nl80211_parse_mesh_config(struct genl_info *info,
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004722 struct mesh_config *cfg,
4723 u32 *mask_out)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004724{
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004725 struct nlattr *tb[NL80211_MESHCONF_ATTR_MAX + 1];
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004726 u32 mask = 0;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004727
Marco Porschea54fba2013-01-07 16:04:48 +01004728#define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
4729do { \
4730 if (tb[attr]) { \
4731 if (fn(tb[attr]) < min || fn(tb[attr]) > max) \
4732 return -EINVAL; \
4733 cfg->param = fn(tb[attr]); \
4734 mask |= (1 << (attr - 1)); \
4735 } \
4736} while (0)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004737
4738
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004739 if (!info->attrs[NL80211_ATTR_MESH_CONFIG])
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004740 return -EINVAL;
4741 if (nla_parse_nested(tb, NL80211_MESHCONF_ATTR_MAX,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004742 info->attrs[NL80211_ATTR_MESH_CONFIG],
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004743 nl80211_meshconf_params_policy))
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004744 return -EINVAL;
4745
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004746 /* This makes sure that there aren't more than 32 mesh config
4747 * parameters (otherwise our bitfield scheme would not work.) */
4748 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX > 32);
4749
4750 /* Fill in the params struct */
Marco Porschea54fba2013-01-07 16:04:48 +01004751 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshRetryTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004752 mask, NL80211_MESHCONF_RETRY_TIMEOUT,
4753 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004754 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshConfirmTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004755 mask, NL80211_MESHCONF_CONFIRM_TIMEOUT,
4756 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004757 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHoldingTimeout, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004758 mask, NL80211_MESHCONF_HOLDING_TIMEOUT,
4759 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004760 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxPeerLinks, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004761 mask, NL80211_MESHCONF_MAX_PEER_LINKS,
4762 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004763 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshMaxRetries, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004764 mask, NL80211_MESHCONF_MAX_RETRIES,
4765 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004766 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshTTL, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004767 mask, NL80211_MESHCONF_TTL, nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004768 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, element_ttl, 1, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004769 mask, NL80211_MESHCONF_ELEMENT_TTL,
4770 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004771 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, auto_open_plinks, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004772 mask, NL80211_MESHCONF_AUTO_OPEN_PLINKS,
4773 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004774 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshNbrOffsetMaxNeighbor,
4775 1, 255, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004776 NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR,
4777 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004778 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPmaxPREQretries, 0, 255,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004779 mask, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES,
4780 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004781 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, path_refresh_time, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004782 mask, NL80211_MESHCONF_PATH_REFRESH_TIME,
4783 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004784 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, min_discovery_timeout, 1, 65535,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004785 mask, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT,
4786 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004787 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathTimeout,
4788 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004789 NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT,
4790 nla_get_u32);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004791 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPpreqMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01004792 1, 65535, mask,
4793 NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004794 nla_get_u16);
Thomas Pedersendca7e942011-11-24 17:15:24 -08004795 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPperrMinInterval,
Marco Porschea54fba2013-01-07 16:04:48 +01004796 1, 65535, mask,
4797 NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004798 nla_get_u16);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004799 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004800 dot11MeshHWMPnetDiameterTraversalTime,
4801 1, 65535, mask,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004802 NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
4803 nla_get_u16);
Marco Porschea54fba2013-01-07 16:04:48 +01004804 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRootMode, 0, 4,
4805 mask, NL80211_MESHCONF_HWMP_ROOTMODE,
4806 nla_get_u8);
4807 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPRannInterval, 1, 65535,
4808 mask, NL80211_MESHCONF_HWMP_RANN_INTERVAL,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004809 nla_get_u16);
Rui Paulo63c57232009-11-09 23:46:57 +00004810 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004811 dot11MeshGateAnnouncementProtocol, 0, 1,
4812 mask, NL80211_MESHCONF_GATE_ANNOUNCEMENTS,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004813 nla_get_u8);
Marco Porschea54fba2013-01-07 16:04:48 +01004814 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshForwarding, 0, 1,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004815 mask, NL80211_MESHCONF_FORWARDING,
4816 nla_get_u8);
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08004817 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, rssi_threshold, -255, 0,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004818 mask, NL80211_MESHCONF_RSSI_THRESHOLD,
Chun-Yeow Yeoh83374fe2013-07-11 18:24:03 +08004819 nla_get_s32);
Marco Porschea54fba2013-01-07 16:04:48 +01004820 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, ht_opmode, 0, 16,
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08004821 mask, NL80211_MESHCONF_HT_OPMODE,
4822 nla_get_u16);
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004823 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMPactivePathToRootTimeout,
Marco Porschea54fba2013-01-07 16:04:48 +01004824 1, 65535, mask,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004825 NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT,
4826 nla_get_u32);
Marco Porschea54fba2013-01-07 16:04:48 +01004827 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshHWMProotInterval, 1, 65535,
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08004828 mask, NL80211_MESHCONF_HWMP_ROOT_INTERVAL,
4829 nla_get_u16);
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004830 FILL_IN_MESH_PARAM_IF_SET(tb, cfg,
Marco Porschea54fba2013-01-07 16:04:48 +01004831 dot11MeshHWMPconfirmationInterval,
4832 1, 65535, mask,
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08004833 NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL,
4834 nla_get_u16);
Marco Porsch3b1c5a52013-01-07 16:04:52 +01004835 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, power_mode,
4836 NL80211_MESH_POWER_ACTIVE,
4837 NL80211_MESH_POWER_MAX,
4838 mask, NL80211_MESHCONF_POWER_MODE,
4839 nla_get_u32);
4840 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, dot11MeshAwakeWindowDuration,
4841 0, 65535, mask,
4842 NL80211_MESHCONF_AWAKE_WINDOW, nla_get_u16);
Colleen Twitty8e7c0532013-06-03 09:53:39 -07004843 FILL_IN_MESH_PARAM_IF_SET(tb, cfg, plink_timeout, 1, 0xffffffff,
4844 mask, NL80211_MESHCONF_PLINK_TIMEOUT,
4845 nla_get_u32);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004846 if (mask_out)
4847 *mask_out = mask;
Javier Cardonac80d5452010-12-16 17:37:49 -08004848
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004849 return 0;
4850
4851#undef FILL_IN_MESH_PARAM_IF_SET
4852}
4853
Javier Cardonac80d5452010-12-16 17:37:49 -08004854static int nl80211_parse_mesh_setup(struct genl_info *info,
4855 struct mesh_setup *setup)
4856{
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004857 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Javier Cardonac80d5452010-12-16 17:37:49 -08004858 struct nlattr *tb[NL80211_MESH_SETUP_ATTR_MAX + 1];
4859
4860 if (!info->attrs[NL80211_ATTR_MESH_SETUP])
4861 return -EINVAL;
4862 if (nla_parse_nested(tb, NL80211_MESH_SETUP_ATTR_MAX,
4863 info->attrs[NL80211_ATTR_MESH_SETUP],
4864 nl80211_mesh_setup_params_policy))
4865 return -EINVAL;
4866
Javier Cardonad299a1f2012-03-31 11:31:33 -07004867 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])
4868 setup->sync_method =
4869 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC])) ?
4870 IEEE80211_SYNC_METHOD_VENDOR :
4871 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET;
4872
Javier Cardonac80d5452010-12-16 17:37:49 -08004873 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])
4874 setup->path_sel_proto =
4875 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL])) ?
4876 IEEE80211_PATH_PROTOCOL_VENDOR :
4877 IEEE80211_PATH_PROTOCOL_HWMP;
4878
4879 if (tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])
4880 setup->path_metric =
4881 (nla_get_u8(tb[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC])) ?
4882 IEEE80211_PATH_METRIC_VENDOR :
4883 IEEE80211_PATH_METRIC_AIRTIME;
4884
Javier Cardona581a8b02011-04-07 15:08:27 -07004885
4886 if (tb[NL80211_MESH_SETUP_IE]) {
Javier Cardonac80d5452010-12-16 17:37:49 -08004887 struct nlattr *ieattr =
Javier Cardona581a8b02011-04-07 15:08:27 -07004888 tb[NL80211_MESH_SETUP_IE];
Javier Cardonac80d5452010-12-16 17:37:49 -08004889 if (!is_valid_ie_attr(ieattr))
4890 return -EINVAL;
Javier Cardona581a8b02011-04-07 15:08:27 -07004891 setup->ie = nla_data(ieattr);
4892 setup->ie_len = nla_len(ieattr);
Javier Cardonac80d5452010-12-16 17:37:49 -08004893 }
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004894 if (tb[NL80211_MESH_SETUP_USERSPACE_MPM] &&
4895 !(rdev->wiphy.features & NL80211_FEATURE_USERSPACE_MPM))
4896 return -EINVAL;
4897 setup->user_mpm = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_MPM]);
Javier Cardonab130e5c2011-05-03 16:57:07 -07004898 setup->is_authenticated = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AUTH]);
4899 setup->is_secure = nla_get_flag(tb[NL80211_MESH_SETUP_USERSPACE_AMPE]);
Thomas Pedersenbb2798d2013-03-04 13:06:10 -08004900 if (setup->is_secure)
4901 setup->user_mpm = true;
Javier Cardonac80d5452010-12-16 17:37:49 -08004902
Colleen Twitty6e16d902013-05-08 11:45:59 -07004903 if (tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]) {
4904 if (!setup->user_mpm)
4905 return -EINVAL;
4906 setup->auth_id =
4907 nla_get_u8(tb[NL80211_MESH_SETUP_AUTH_PROTOCOL]);
4908 }
4909
Javier Cardonac80d5452010-12-16 17:37:49 -08004910 return 0;
4911}
4912
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004913static int nl80211_update_mesh_config(struct sk_buff *skb,
Johannes Berg29cbe682010-12-03 09:20:44 +01004914 struct genl_info *info)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004915{
4916 struct cfg80211_registered_device *rdev = info->user_ptr[0];
4917 struct net_device *dev = info->user_ptr[1];
Johannes Berg29cbe682010-12-03 09:20:44 +01004918 struct wireless_dev *wdev = dev->ieee80211_ptr;
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004919 struct mesh_config cfg;
4920 u32 mask;
4921 int err;
4922
Johannes Berg29cbe682010-12-03 09:20:44 +01004923 if (wdev->iftype != NL80211_IFTYPE_MESH_POINT)
4924 return -EOPNOTSUPP;
4925
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004926 if (!rdev->ops->update_mesh_config)
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004927 return -EOPNOTSUPP;
4928
Javier Cardona24bdd9f2010-12-16 17:37:48 -08004929 err = nl80211_parse_mesh_config(info, &cfg, &mask);
Johannes Bergbd90fdc2010-12-03 09:20:43 +01004930 if (err)
4931 return err;
4932
Johannes Berg29cbe682010-12-03 09:20:44 +01004933 wdev_lock(wdev);
4934 if (!wdev->mesh_id_len)
4935 err = -ENOLINK;
4936
4937 if (!err)
Hila Gonene35e4d22012-06-27 17:19:42 +03004938 err = rdev_update_mesh_config(rdev, dev, mask, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01004939
4940 wdev_unlock(wdev);
4941
4942 return err;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07004943}
4944
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004945static int nl80211_get_reg(struct sk_buff *skb, struct genl_info *info)
4946{
Johannes Berg458f4f92012-12-06 15:47:38 +01004947 const struct ieee80211_regdomain *regdom;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004948 struct sk_buff *msg;
4949 void *hdr = NULL;
4950 struct nlattr *nl_reg_rules;
4951 unsigned int i;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004952
4953 if (!cfg80211_regdomain)
Johannes Berg5fe231e2013-05-08 21:45:15 +02004954 return -EINVAL;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004955
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07004956 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg5fe231e2013-05-08 21:45:15 +02004957 if (!msg)
4958 return -ENOBUFS;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004959
Eric W. Biederman15e47302012-09-07 20:12:54 +00004960 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004961 NL80211_CMD_GET_REG);
4962 if (!hdr)
Julia Lawallefe1cf02011-01-28 15:17:11 +01004963 goto put_failure;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004964
Luis R. Rodriguez57b5ce02012-07-12 11:49:18 -07004965 if (reg_last_request_cell_base() &&
4966 nla_put_u32(msg, NL80211_ATTR_USER_REG_HINT_TYPE,
4967 NL80211_USER_REG_HINT_CELL_BASE))
4968 goto nla_put_failure;
4969
Johannes Berg458f4f92012-12-06 15:47:38 +01004970 rcu_read_lock();
4971 regdom = rcu_dereference(cfg80211_regdomain);
4972
4973 if (nla_put_string(msg, NL80211_ATTR_REG_ALPHA2, regdom->alpha2) ||
4974 (regdom->dfs_region &&
4975 nla_put_u8(msg, NL80211_ATTR_DFS_REGION, regdom->dfs_region)))
4976 goto nla_put_failure_rcu;
4977
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004978 nl_reg_rules = nla_nest_start(msg, NL80211_ATTR_REG_RULES);
4979 if (!nl_reg_rules)
Johannes Berg458f4f92012-12-06 15:47:38 +01004980 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004981
Johannes Berg458f4f92012-12-06 15:47:38 +01004982 for (i = 0; i < regdom->n_reg_rules; i++) {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004983 struct nlattr *nl_reg_rule;
4984 const struct ieee80211_reg_rule *reg_rule;
4985 const struct ieee80211_freq_range *freq_range;
4986 const struct ieee80211_power_rule *power_rule;
4987
Johannes Berg458f4f92012-12-06 15:47:38 +01004988 reg_rule = &regdom->reg_rules[i];
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004989 freq_range = &reg_rule->freq_range;
4990 power_rule = &reg_rule->power_rule;
4991
4992 nl_reg_rule = nla_nest_start(msg, i);
4993 if (!nl_reg_rule)
Johannes Berg458f4f92012-12-06 15:47:38 +01004994 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08004995
David S. Miller9360ffd2012-03-29 04:41:26 -04004996 if (nla_put_u32(msg, NL80211_ATTR_REG_RULE_FLAGS,
4997 reg_rule->flags) ||
4998 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_START,
4999 freq_range->start_freq_khz) ||
5000 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_END,
5001 freq_range->end_freq_khz) ||
5002 nla_put_u32(msg, NL80211_ATTR_FREQ_RANGE_MAX_BW,
5003 freq_range->max_bandwidth_khz) ||
5004 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN,
5005 power_rule->max_antenna_gain) ||
5006 nla_put_u32(msg, NL80211_ATTR_POWER_RULE_MAX_EIRP,
5007 power_rule->max_eirp))
Johannes Berg458f4f92012-12-06 15:47:38 +01005008 goto nla_put_failure_rcu;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005009
5010 nla_nest_end(msg, nl_reg_rule);
5011 }
Johannes Berg458f4f92012-12-06 15:47:38 +01005012 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005013
5014 nla_nest_end(msg, nl_reg_rules);
5015
5016 genlmsg_end(msg, hdr);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005017 return genlmsg_reply(msg, info);
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005018
Johannes Berg458f4f92012-12-06 15:47:38 +01005019nla_put_failure_rcu:
5020 rcu_read_unlock();
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005021nla_put_failure:
5022 genlmsg_cancel(msg, hdr);
Julia Lawallefe1cf02011-01-28 15:17:11 +01005023put_failure:
Yuri Ershovd080e272010-06-29 15:08:07 +04005024 nlmsg_free(msg);
Johannes Berg5fe231e2013-05-08 21:45:15 +02005025 return -EMSGSIZE;
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08005026}
5027
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005028static int nl80211_set_reg(struct sk_buff *skb, struct genl_info *info)
5029{
5030 struct nlattr *tb[NL80211_REG_RULE_ATTR_MAX + 1];
5031 struct nlattr *nl_reg_rule;
5032 char *alpha2 = NULL;
5033 int rem_reg_rules = 0, r = 0;
5034 u32 num_rules = 0, rule_idx = 0, size_of_regd;
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005035 u8 dfs_region = 0;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005036 struct ieee80211_regdomain *rd = NULL;
5037
5038 if (!info->attrs[NL80211_ATTR_REG_ALPHA2])
5039 return -EINVAL;
5040
5041 if (!info->attrs[NL80211_ATTR_REG_RULES])
5042 return -EINVAL;
5043
5044 alpha2 = nla_data(info->attrs[NL80211_ATTR_REG_ALPHA2]);
5045
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005046 if (info->attrs[NL80211_ATTR_DFS_REGION])
5047 dfs_region = nla_get_u8(info->attrs[NL80211_ATTR_DFS_REGION]);
5048
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005049 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005050 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005051 num_rules++;
5052 if (num_rules > NL80211_MAX_SUPP_REG_RULES)
Luis R. Rodriguez4776c6e2009-05-13 17:04:39 -04005053 return -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005054 }
5055
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005056 size_of_regd = sizeof(struct ieee80211_regdomain) +
Johannes Berg1a919312012-12-03 17:21:11 +01005057 num_rules * sizeof(struct ieee80211_reg_rule);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005058
5059 rd = kzalloc(size_of_regd, GFP_KERNEL);
Johannes Berg6913b492012-12-04 00:48:59 +01005060 if (!rd)
5061 return -ENOMEM;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005062
5063 rd->n_reg_rules = num_rules;
5064 rd->alpha2[0] = alpha2[0];
5065 rd->alpha2[1] = alpha2[1];
5066
Luis R. Rodriguez8b60b072011-10-11 10:59:02 -07005067 /*
5068 * Disable DFS master mode if the DFS region was
5069 * not supported or known on this kernel.
5070 */
5071 if (reg_supported_dfs_region(dfs_region))
5072 rd->dfs_region = dfs_region;
5073
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005074 nla_for_each_nested(nl_reg_rule, info->attrs[NL80211_ATTR_REG_RULES],
Johannes Berg1a919312012-12-03 17:21:11 +01005075 rem_reg_rules) {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005076 nla_parse(tb, NL80211_REG_RULE_ATTR_MAX,
Johannes Berg1a919312012-12-03 17:21:11 +01005077 nla_data(nl_reg_rule), nla_len(nl_reg_rule),
5078 reg_rule_policy);
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005079 r = parse_reg_rule(tb, &rd->reg_rules[rule_idx]);
5080 if (r)
5081 goto bad_reg;
5082
5083 rule_idx++;
5084
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005085 if (rule_idx > NL80211_MAX_SUPP_REG_RULES) {
5086 r = -EINVAL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005087 goto bad_reg;
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005088 }
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005089 }
5090
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005091 r = set_regdom(rd);
Johannes Berg6913b492012-12-04 00:48:59 +01005092 /* set_regdom took ownership */
Johannes Berg1a919312012-12-03 17:21:11 +01005093 rd = NULL;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005094
Johannes Bergd2372b32008-10-24 20:32:20 +02005095 bad_reg:
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005096 kfree(rd);
Luis R. Rodriguezd0e18f82009-05-13 17:04:40 -04005097 return r;
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07005098}
5099
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005100static int validate_scan_freqs(struct nlattr *freqs)
5101{
5102 struct nlattr *attr1, *attr2;
5103 int n_channels = 0, tmp1, tmp2;
5104
5105 nla_for_each_nested(attr1, freqs, tmp1) {
5106 n_channels++;
5107 /*
5108 * Some hardware has a limited channel list for
5109 * scanning, and it is pretty much nonsensical
5110 * to scan for a channel twice, so disallow that
5111 * and don't require drivers to check that the
5112 * channel list they get isn't longer than what
5113 * they can scan, as long as they can scan all
5114 * the channels they registered at once.
5115 */
5116 nla_for_each_nested(attr2, freqs, tmp2)
5117 if (attr1 != attr2 &&
5118 nla_get_u32(attr1) == nla_get_u32(attr2))
5119 return 0;
5120 }
5121
5122 return n_channels;
5123}
5124
Johannes Berg2a519312009-02-10 21:25:55 +01005125static int nl80211_trigger_scan(struct sk_buff *skb, struct genl_info *info)
5126{
Johannes Berg4c476992010-10-04 21:36:35 +02005127 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Bergfd014282012-06-18 19:17:03 +02005128 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2a519312009-02-10 21:25:55 +01005129 struct cfg80211_scan_request *request;
Johannes Berg2a519312009-02-10 21:25:55 +01005130 struct nlattr *attr;
5131 struct wiphy *wiphy;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005132 int err, tmp, n_ssids = 0, n_channels, i;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005133 size_t ie_len;
Johannes Berg2a519312009-02-10 21:25:55 +01005134
Johannes Bergf4a11bb2009-03-27 12:40:28 +01005135 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5136 return -EINVAL;
5137
Johannes Berg79c97e92009-07-07 03:56:12 +02005138 wiphy = &rdev->wiphy;
Johannes Berg2a519312009-02-10 21:25:55 +01005139
Johannes Berg4c476992010-10-04 21:36:35 +02005140 if (!rdev->ops->scan)
5141 return -EOPNOTSUPP;
Johannes Berg2a519312009-02-10 21:25:55 +01005142
Johannes Bergf9f47522013-03-19 15:04:07 +01005143 if (rdev->scan_req) {
5144 err = -EBUSY;
5145 goto unlock;
5146 }
Johannes Berg2a519312009-02-10 21:25:55 +01005147
5148 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005149 n_channels = validate_scan_freqs(
5150 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
Johannes Bergf9f47522013-03-19 15:04:07 +01005151 if (!n_channels) {
5152 err = -EINVAL;
5153 goto unlock;
5154 }
Johannes Berg2a519312009-02-10 21:25:55 +01005155 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005156 enum ieee80211_band band;
Johannes Berg83f5e2c2009-06-17 17:41:49 +02005157 n_channels = 0;
5158
Johannes Berg2a519312009-02-10 21:25:55 +01005159 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
5160 if (wiphy->bands[band])
5161 n_channels += wiphy->bands[band]->n_channels;
5162 }
5163
5164 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5165 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp)
5166 n_ssids++;
5167
Johannes Bergf9f47522013-03-19 15:04:07 +01005168 if (n_ssids > wiphy->max_scan_ssids) {
5169 err = -EINVAL;
5170 goto unlock;
5171 }
Johannes Berg2a519312009-02-10 21:25:55 +01005172
Jouni Malinen70692ad2009-02-16 19:39:13 +02005173 if (info->attrs[NL80211_ATTR_IE])
5174 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5175 else
5176 ie_len = 0;
5177
Johannes Bergf9f47522013-03-19 15:04:07 +01005178 if (ie_len > wiphy->max_scan_ie_len) {
5179 err = -EINVAL;
5180 goto unlock;
5181 }
Johannes Berg18a83652009-03-31 12:12:05 +02005182
Johannes Berg2a519312009-02-10 21:25:55 +01005183 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005184 + sizeof(*request->ssids) * n_ssids
5185 + sizeof(*request->channels) * n_channels
Jouni Malinen70692ad2009-02-16 19:39:13 +02005186 + ie_len, GFP_KERNEL);
Johannes Bergf9f47522013-03-19 15:04:07 +01005187 if (!request) {
5188 err = -ENOMEM;
5189 goto unlock;
5190 }
Johannes Berg2a519312009-02-10 21:25:55 +01005191
Johannes Berg2a519312009-02-10 21:25:55 +01005192 if (n_ssids)
Johannes Berg5ba63532009-08-07 17:54:07 +02005193 request->ssids = (void *)&request->channels[n_channels];
Johannes Berg2a519312009-02-10 21:25:55 +01005194 request->n_ssids = n_ssids;
Jouni Malinen70692ad2009-02-16 19:39:13 +02005195 if (ie_len) {
5196 if (request->ssids)
5197 request->ie = (void *)(request->ssids + n_ssids);
5198 else
5199 request->ie = (void *)(request->channels + n_channels);
5200 }
Johannes Berg2a519312009-02-10 21:25:55 +01005201
Johannes Berg584991d2009-11-02 13:32:03 +01005202 i = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005203 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5204 /* user specified, bail out if channel not found */
Johannes Berg2a519312009-02-10 21:25:55 +01005205 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_FREQUENCIES], tmp) {
Johannes Berg584991d2009-11-02 13:32:03 +01005206 struct ieee80211_channel *chan;
5207
5208 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5209
5210 if (!chan) {
Johannes Berg2a519312009-02-10 21:25:55 +01005211 err = -EINVAL;
5212 goto out_free;
5213 }
Johannes Berg584991d2009-11-02 13:32:03 +01005214
5215 /* ignore disabled channels */
5216 if (chan->flags & IEEE80211_CHAN_DISABLED)
5217 continue;
5218
5219 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005220 i++;
5221 }
5222 } else {
Johannes Berg34850ab2011-07-18 18:08:35 +02005223 enum ieee80211_band band;
5224
Johannes Berg2a519312009-02-10 21:25:55 +01005225 /* all channels */
Johannes Berg2a519312009-02-10 21:25:55 +01005226 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5227 int j;
5228 if (!wiphy->bands[band])
5229 continue;
5230 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
Johannes Berg584991d2009-11-02 13:32:03 +01005231 struct ieee80211_channel *chan;
5232
5233 chan = &wiphy->bands[band]->channels[j];
5234
5235 if (chan->flags & IEEE80211_CHAN_DISABLED)
5236 continue;
5237
5238 request->channels[i] = chan;
Johannes Berg2a519312009-02-10 21:25:55 +01005239 i++;
5240 }
5241 }
5242 }
5243
Johannes Berg584991d2009-11-02 13:32:03 +01005244 if (!i) {
5245 err = -EINVAL;
5246 goto out_free;
5247 }
5248
5249 request->n_channels = i;
5250
Johannes Berg2a519312009-02-10 21:25:55 +01005251 i = 0;
5252 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5253 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS], tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005254 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Johannes Berg2a519312009-02-10 21:25:55 +01005255 err = -EINVAL;
5256 goto out_free;
5257 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005258 request->ssids[i].ssid_len = nla_len(attr);
Johannes Berg2a519312009-02-10 21:25:55 +01005259 memcpy(request->ssids[i].ssid, nla_data(attr), nla_len(attr));
Johannes Berg2a519312009-02-10 21:25:55 +01005260 i++;
5261 }
5262 }
5263
Jouni Malinen70692ad2009-02-16 19:39:13 +02005264 if (info->attrs[NL80211_ATTR_IE]) {
5265 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Johannes Bergde95a542009-04-01 11:58:36 +02005266 memcpy((void *)request->ie,
5267 nla_data(info->attrs[NL80211_ATTR_IE]),
Jouni Malinen70692ad2009-02-16 19:39:13 +02005268 request->ie_len);
5269 }
5270
Johannes Berg34850ab2011-07-18 18:08:35 +02005271 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Johannes Berga401d2b2011-07-20 00:52:16 +02005272 if (wiphy->bands[i])
5273 request->rates[i] =
5274 (1 << wiphy->bands[i]->n_bitrates) - 1;
Johannes Berg34850ab2011-07-18 18:08:35 +02005275
5276 if (info->attrs[NL80211_ATTR_SCAN_SUPP_RATES]) {
5277 nla_for_each_nested(attr,
5278 info->attrs[NL80211_ATTR_SCAN_SUPP_RATES],
5279 tmp) {
5280 enum ieee80211_band band = nla_type(attr);
5281
Dan Carpenter84404622011-07-29 11:52:18 +03005282 if (band < 0 || band >= IEEE80211_NUM_BANDS) {
Johannes Berg34850ab2011-07-18 18:08:35 +02005283 err = -EINVAL;
5284 goto out_free;
5285 }
5286 err = ieee80211_get_ratemask(wiphy->bands[band],
5287 nla_data(attr),
5288 nla_len(attr),
5289 &request->rates[band]);
5290 if (err)
5291 goto out_free;
5292 }
5293 }
5294
Sam Leffler46856bb2012-10-11 21:03:32 -07005295 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005296 request->flags = nla_get_u32(
5297 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Sam Leffler15d60302012-10-11 21:03:34 -07005298 if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5299 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
5300 ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
5301 !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005302 err = -EOPNOTSUPP;
5303 goto out_free;
5304 }
5305 }
Sam Lefflered4737712012-10-11 21:03:31 -07005306
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05305307 request->no_cck =
5308 nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
5309
Johannes Bergfd014282012-06-18 19:17:03 +02005310 request->wdev = wdev;
Johannes Berg79c97e92009-07-07 03:56:12 +02005311 request->wiphy = &rdev->wiphy;
Sam Leffler15d60302012-10-11 21:03:34 -07005312 request->scan_start = jiffies;
Johannes Berg2a519312009-02-10 21:25:55 +01005313
Johannes Berg79c97e92009-07-07 03:56:12 +02005314 rdev->scan_req = request;
Hila Gonene35e4d22012-06-27 17:19:42 +03005315 err = rdev_scan(rdev, request);
Johannes Berg2a519312009-02-10 21:25:55 +01005316
Johannes Berg463d0182009-07-14 00:33:35 +02005317 if (!err) {
Johannes Bergfd014282012-06-18 19:17:03 +02005318 nl80211_send_scan_start(rdev, wdev);
5319 if (wdev->netdev)
5320 dev_hold(wdev->netdev);
Johannes Berg4c476992010-10-04 21:36:35 +02005321 } else {
Johannes Berg2a519312009-02-10 21:25:55 +01005322 out_free:
Johannes Berg79c97e92009-07-07 03:56:12 +02005323 rdev->scan_req = NULL;
Johannes Berg2a519312009-02-10 21:25:55 +01005324 kfree(request);
5325 }
Johannes Berg3b858752009-03-12 09:55:09 +01005326
Johannes Bergf9f47522013-03-19 15:04:07 +01005327 unlock:
Johannes Berg2a519312009-02-10 21:25:55 +01005328 return err;
5329}
5330
Luciano Coelho807f8a82011-05-11 17:09:35 +03005331static int nl80211_start_sched_scan(struct sk_buff *skb,
5332 struct genl_info *info)
5333{
5334 struct cfg80211_sched_scan_request *request;
5335 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5336 struct net_device *dev = info->user_ptr[1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005337 struct nlattr *attr;
5338 struct wiphy *wiphy;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005339 int err, tmp, n_ssids = 0, n_match_sets = 0, n_channels, i;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005340 u32 interval;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005341 enum ieee80211_band band;
5342 size_t ie_len;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005343 struct nlattr *tb[NL80211_SCHED_SCAN_MATCH_ATTR_MAX + 1];
Luciano Coelho807f8a82011-05-11 17:09:35 +03005344
5345 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5346 !rdev->ops->sched_scan_start)
5347 return -EOPNOTSUPP;
5348
5349 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
5350 return -EINVAL;
5351
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005352 if (!info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL])
5353 return -EINVAL;
5354
5355 interval = nla_get_u32(info->attrs[NL80211_ATTR_SCHED_SCAN_INTERVAL]);
5356 if (interval == 0)
5357 return -EINVAL;
5358
Luciano Coelho807f8a82011-05-11 17:09:35 +03005359 wiphy = &rdev->wiphy;
5360
5361 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5362 n_channels = validate_scan_freqs(
5363 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]);
5364 if (!n_channels)
5365 return -EINVAL;
5366 } else {
5367 n_channels = 0;
5368
5369 for (band = 0; band < IEEE80211_NUM_BANDS; band++)
5370 if (wiphy->bands[band])
5371 n_channels += wiphy->bands[band]->n_channels;
5372 }
5373
5374 if (info->attrs[NL80211_ATTR_SCAN_SSIDS])
5375 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5376 tmp)
5377 n_ssids++;
5378
Luciano Coelho93b6aa62011-07-13 14:57:28 +03005379 if (n_ssids > wiphy->max_sched_scan_ssids)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005380 return -EINVAL;
5381
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005382 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH])
5383 nla_for_each_nested(attr,
5384 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5385 tmp)
5386 n_match_sets++;
5387
5388 if (n_match_sets > wiphy->max_match_sets)
5389 return -EINVAL;
5390
Luciano Coelho807f8a82011-05-11 17:09:35 +03005391 if (info->attrs[NL80211_ATTR_IE])
5392 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5393 else
5394 ie_len = 0;
5395
Luciano Coelho5a865ba2011-07-13 14:57:29 +03005396 if (ie_len > wiphy->max_sched_scan_ie_len)
Luciano Coelho807f8a82011-05-11 17:09:35 +03005397 return -EINVAL;
5398
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005399 if (rdev->sched_scan_req) {
5400 err = -EINPROGRESS;
5401 goto out;
5402 }
5403
Luciano Coelho807f8a82011-05-11 17:09:35 +03005404 request = kzalloc(sizeof(*request)
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005405 + sizeof(*request->ssids) * n_ssids
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005406 + sizeof(*request->match_sets) * n_match_sets
Luciano Coelhoa2cd43c2011-05-18 11:42:03 +03005407 + sizeof(*request->channels) * n_channels
Luciano Coelho807f8a82011-05-11 17:09:35 +03005408 + ie_len, GFP_KERNEL);
Luciano Coelhoc10841c2011-06-30 08:32:41 +03005409 if (!request) {
5410 err = -ENOMEM;
5411 goto out;
5412 }
Luciano Coelho807f8a82011-05-11 17:09:35 +03005413
5414 if (n_ssids)
5415 request->ssids = (void *)&request->channels[n_channels];
5416 request->n_ssids = n_ssids;
5417 if (ie_len) {
5418 if (request->ssids)
5419 request->ie = (void *)(request->ssids + n_ssids);
5420 else
5421 request->ie = (void *)(request->channels + n_channels);
5422 }
5423
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005424 if (n_match_sets) {
5425 if (request->ie)
5426 request->match_sets = (void *)(request->ie + ie_len);
5427 else if (request->ssids)
5428 request->match_sets =
5429 (void *)(request->ssids + n_ssids);
5430 else
5431 request->match_sets =
5432 (void *)(request->channels + n_channels);
5433 }
5434 request->n_match_sets = n_match_sets;
5435
Luciano Coelho807f8a82011-05-11 17:09:35 +03005436 i = 0;
5437 if (info->attrs[NL80211_ATTR_SCAN_FREQUENCIES]) {
5438 /* user specified, bail out if channel not found */
5439 nla_for_each_nested(attr,
5440 info->attrs[NL80211_ATTR_SCAN_FREQUENCIES],
5441 tmp) {
5442 struct ieee80211_channel *chan;
5443
5444 chan = ieee80211_get_channel(wiphy, nla_get_u32(attr));
5445
5446 if (!chan) {
5447 err = -EINVAL;
5448 goto out_free;
5449 }
5450
5451 /* ignore disabled channels */
5452 if (chan->flags & IEEE80211_CHAN_DISABLED)
5453 continue;
5454
5455 request->channels[i] = chan;
5456 i++;
5457 }
5458 } else {
5459 /* all channels */
5460 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
5461 int j;
5462 if (!wiphy->bands[band])
5463 continue;
5464 for (j = 0; j < wiphy->bands[band]->n_channels; j++) {
5465 struct ieee80211_channel *chan;
5466
5467 chan = &wiphy->bands[band]->channels[j];
5468
5469 if (chan->flags & IEEE80211_CHAN_DISABLED)
5470 continue;
5471
5472 request->channels[i] = chan;
5473 i++;
5474 }
5475 }
5476 }
5477
5478 if (!i) {
5479 err = -EINVAL;
5480 goto out_free;
5481 }
5482
5483 request->n_channels = i;
5484
5485 i = 0;
5486 if (info->attrs[NL80211_ATTR_SCAN_SSIDS]) {
5487 nla_for_each_nested(attr, info->attrs[NL80211_ATTR_SCAN_SSIDS],
5488 tmp) {
Luciano Coelho57a27e12011-06-07 20:42:26 +03005489 if (nla_len(attr) > IEEE80211_MAX_SSID_LEN) {
Luciano Coelho807f8a82011-05-11 17:09:35 +03005490 err = -EINVAL;
5491 goto out_free;
5492 }
Luciano Coelho57a27e12011-06-07 20:42:26 +03005493 request->ssids[i].ssid_len = nla_len(attr);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005494 memcpy(request->ssids[i].ssid, nla_data(attr),
5495 nla_len(attr));
Luciano Coelho807f8a82011-05-11 17:09:35 +03005496 i++;
5497 }
5498 }
5499
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005500 i = 0;
5501 if (info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH]) {
5502 nla_for_each_nested(attr,
5503 info->attrs[NL80211_ATTR_SCHED_SCAN_MATCH],
5504 tmp) {
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005505 struct nlattr *ssid, *rssi;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005506
5507 nla_parse(tb, NL80211_SCHED_SCAN_MATCH_ATTR_MAX,
5508 nla_data(attr), nla_len(attr),
5509 nl80211_match_policy);
Johannes Berg4a4ab0d2012-06-13 11:17:11 +02005510 ssid = tb[NL80211_SCHED_SCAN_MATCH_ATTR_SSID];
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005511 if (ssid) {
5512 if (nla_len(ssid) > IEEE80211_MAX_SSID_LEN) {
5513 err = -EINVAL;
5514 goto out_free;
5515 }
5516 memcpy(request->match_sets[i].ssid.ssid,
5517 nla_data(ssid), nla_len(ssid));
5518 request->match_sets[i].ssid.ssid_len =
5519 nla_len(ssid);
5520 }
Thomas Pedersen88e920b2012-06-21 11:09:54 -07005521 rssi = tb[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI];
5522 if (rssi)
5523 request->rssi_thold = nla_get_u32(rssi);
5524 else
5525 request->rssi_thold =
5526 NL80211_SCAN_RSSI_THOLD_OFF;
Luciano Coelhoa1f1c212011-08-31 16:01:48 +03005527 i++;
5528 }
5529 }
5530
Luciano Coelho807f8a82011-05-11 17:09:35 +03005531 if (info->attrs[NL80211_ATTR_IE]) {
5532 request->ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
5533 memcpy((void *)request->ie,
5534 nla_data(info->attrs[NL80211_ATTR_IE]),
5535 request->ie_len);
5536 }
5537
Sam Leffler46856bb2012-10-11 21:03:32 -07005538 if (info->attrs[NL80211_ATTR_SCAN_FLAGS]) {
Sam Lefflered4737712012-10-11 21:03:31 -07005539 request->flags = nla_get_u32(
5540 info->attrs[NL80211_ATTR_SCAN_FLAGS]);
Sam Leffler15d60302012-10-11 21:03:34 -07005541 if (((request->flags & NL80211_SCAN_FLAG_LOW_PRIORITY) &&
5542 !(wiphy->features & NL80211_FEATURE_LOW_PRIORITY_SCAN)) ||
5543 ((request->flags & NL80211_SCAN_FLAG_FLUSH) &&
5544 !(wiphy->features & NL80211_FEATURE_SCAN_FLUSH))) {
Sam Leffler46856bb2012-10-11 21:03:32 -07005545 err = -EOPNOTSUPP;
5546 goto out_free;
5547 }
5548 }
Sam Lefflered4737712012-10-11 21:03:31 -07005549
Luciano Coelho807f8a82011-05-11 17:09:35 +03005550 request->dev = dev;
5551 request->wiphy = &rdev->wiphy;
Luciano Coelhobbe6ad62011-05-11 17:09:37 +03005552 request->interval = interval;
Sam Leffler15d60302012-10-11 21:03:34 -07005553 request->scan_start = jiffies;
Luciano Coelho807f8a82011-05-11 17:09:35 +03005554
Hila Gonene35e4d22012-06-27 17:19:42 +03005555 err = rdev_sched_scan_start(rdev, dev, request);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005556 if (!err) {
5557 rdev->sched_scan_req = request;
5558 nl80211_send_sched_scan(rdev, dev,
5559 NL80211_CMD_START_SCHED_SCAN);
5560 goto out;
5561 }
5562
5563out_free:
5564 kfree(request);
5565out:
5566 return err;
5567}
5568
5569static int nl80211_stop_sched_scan(struct sk_buff *skb,
5570 struct genl_info *info)
5571{
5572 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5573
5574 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_SCHED_SCAN) ||
5575 !rdev->ops->sched_scan_stop)
5576 return -EOPNOTSUPP;
5577
Johannes Berg5fe231e2013-05-08 21:45:15 +02005578 return __cfg80211_stop_sched_scan(rdev, false);
Luciano Coelho807f8a82011-05-11 17:09:35 +03005579}
5580
Simon Wunderlich04f39042013-02-08 18:16:19 +01005581static int nl80211_start_radar_detection(struct sk_buff *skb,
5582 struct genl_info *info)
5583{
5584 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5585 struct net_device *dev = info->user_ptr[1];
5586 struct wireless_dev *wdev = dev->ieee80211_ptr;
5587 struct cfg80211_chan_def chandef;
5588 int err;
5589
5590 err = nl80211_parse_chandef(rdev, info, &chandef);
5591 if (err)
5592 return err;
5593
5594 if (wdev->cac_started)
5595 return -EBUSY;
5596
5597 err = cfg80211_chandef_dfs_required(wdev->wiphy, &chandef);
5598 if (err < 0)
5599 return err;
5600
5601 if (err == 0)
5602 return -EINVAL;
5603
5604 if (chandef.chan->dfs_state != NL80211_DFS_USABLE)
5605 return -EINVAL;
5606
5607 if (!rdev->ops->start_radar_detection)
5608 return -EOPNOTSUPP;
5609
Simon Wunderlich04f39042013-02-08 18:16:19 +01005610 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5611 chandef.chan, CHAN_MODE_SHARED,
5612 BIT(chandef.width));
5613 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02005614 return err;
Simon Wunderlich04f39042013-02-08 18:16:19 +01005615
5616 err = rdev->ops->start_radar_detection(&rdev->wiphy, dev, &chandef);
5617 if (!err) {
5618 wdev->channel = chandef.chan;
5619 wdev->cac_started = true;
5620 wdev->cac_start_time = jiffies;
5621 }
Simon Wunderlich04f39042013-02-08 18:16:19 +01005622 return err;
5623}
5624
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02005625static int nl80211_channel_switch(struct sk_buff *skb, struct genl_info *info)
5626{
5627 struct cfg80211_registered_device *rdev = info->user_ptr[0];
5628 struct net_device *dev = info->user_ptr[1];
5629 struct wireless_dev *wdev = dev->ieee80211_ptr;
5630 struct cfg80211_csa_settings params;
5631 /* csa_attrs is defined static to avoid waste of stack size - this
5632 * function is called under RTNL lock, so this should not be a problem.
5633 */
5634 static struct nlattr *csa_attrs[NL80211_ATTR_MAX+1];
5635 u8 radar_detect_width = 0;
5636 int err;
5637
5638 if (!rdev->ops->channel_switch ||
5639 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_CHANNEL_SWITCH))
5640 return -EOPNOTSUPP;
5641
5642 /* may add IBSS support later */
5643 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
5644 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_GO)
5645 return -EOPNOTSUPP;
5646
5647 memset(&params, 0, sizeof(params));
5648
5649 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
5650 !info->attrs[NL80211_ATTR_CH_SWITCH_COUNT])
5651 return -EINVAL;
5652
5653 /* only important for AP, IBSS and mesh create IEs internally */
5654 if (!info->attrs[NL80211_ATTR_CSA_IES])
5655 return -EINVAL;
5656
5657 /* useless if AP is not running */
5658 if (!wdev->beacon_interval)
5659 return -EINVAL;
5660
5661 params.count = nla_get_u32(info->attrs[NL80211_ATTR_CH_SWITCH_COUNT]);
5662
5663 err = nl80211_parse_beacon(info->attrs, &params.beacon_after);
5664 if (err)
5665 return err;
5666
5667 err = nla_parse_nested(csa_attrs, NL80211_ATTR_MAX,
5668 info->attrs[NL80211_ATTR_CSA_IES],
5669 nl80211_policy);
5670 if (err)
5671 return err;
5672
5673 err = nl80211_parse_beacon(csa_attrs, &params.beacon_csa);
5674 if (err)
5675 return err;
5676
5677 if (!csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON])
5678 return -EINVAL;
5679
5680 params.counter_offset_beacon =
5681 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_BEACON]);
5682 if (params.counter_offset_beacon >= params.beacon_csa.tail_len)
5683 return -EINVAL;
5684
5685 /* sanity check - counters should be the same */
5686 if (params.beacon_csa.tail[params.counter_offset_beacon] !=
5687 params.count)
5688 return -EINVAL;
5689
5690 if (csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]) {
5691 params.counter_offset_presp =
5692 nla_get_u16(csa_attrs[NL80211_ATTR_CSA_C_OFF_PRESP]);
5693 if (params.counter_offset_presp >=
5694 params.beacon_csa.probe_resp_len)
5695 return -EINVAL;
5696
5697 if (params.beacon_csa.probe_resp[params.counter_offset_presp] !=
5698 params.count)
5699 return -EINVAL;
5700 }
5701
5702 err = nl80211_parse_chandef(rdev, info, &params.chandef);
5703 if (err)
5704 return err;
5705
5706 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &params.chandef))
5707 return -EINVAL;
5708
5709 err = cfg80211_chandef_dfs_required(wdev->wiphy, &params.chandef);
5710 if (err < 0) {
5711 return err;
5712 } else if (err) {
5713 radar_detect_width = BIT(params.chandef.width);
5714 params.radar_required = true;
5715 }
5716
5717 err = cfg80211_can_use_iftype_chan(rdev, wdev, wdev->iftype,
5718 params.chandef.chan,
5719 CHAN_MODE_SHARED,
5720 radar_detect_width);
5721 if (err)
5722 return err;
5723
5724 if (info->attrs[NL80211_ATTR_CH_SWITCH_BLOCK_TX])
5725 params.block_tx = true;
5726
5727 return rdev_channel_switch(rdev, dev, &params);
5728}
5729
Johannes Berg9720bb32011-06-21 09:45:33 +02005730static int nl80211_send_bss(struct sk_buff *msg, struct netlink_callback *cb,
5731 u32 seq, int flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005732 struct cfg80211_registered_device *rdev,
Johannes Berg48ab9052009-07-10 18:42:31 +02005733 struct wireless_dev *wdev,
5734 struct cfg80211_internal_bss *intbss)
Johannes Berg2a519312009-02-10 21:25:55 +01005735{
Johannes Berg48ab9052009-07-10 18:42:31 +02005736 struct cfg80211_bss *res = &intbss->pub;
Johannes Berg9caf0362012-11-29 01:25:20 +01005737 const struct cfg80211_bss_ies *ies;
Johannes Berg2a519312009-02-10 21:25:55 +01005738 void *hdr;
5739 struct nlattr *bss;
Johannes Berg8cef2c92013-02-05 16:54:31 +01005740 bool tsf = false;
Johannes Berg48ab9052009-07-10 18:42:31 +02005741
5742 ASSERT_WDEV_LOCK(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005743
Eric W. Biederman15e47302012-09-07 20:12:54 +00005744 hdr = nl80211hdr_put(msg, NETLINK_CB(cb->skb).portid, seq, flags,
Johannes Berg2a519312009-02-10 21:25:55 +01005745 NL80211_CMD_NEW_SCAN_RESULTS);
5746 if (!hdr)
5747 return -1;
5748
Johannes Berg9720bb32011-06-21 09:45:33 +02005749 genl_dump_check_consistent(cb, hdr, &nl80211_fam);
5750
Johannes Berg97990a02013-04-19 01:02:55 +02005751 if (nla_put_u32(msg, NL80211_ATTR_GENERATION, rdev->bss_generation))
5752 goto nla_put_failure;
5753 if (wdev->netdev &&
David S. Miller9360ffd2012-03-29 04:41:26 -04005754 nla_put_u32(msg, NL80211_ATTR_IFINDEX, wdev->netdev->ifindex))
5755 goto nla_put_failure;
Johannes Berg97990a02013-04-19 01:02:55 +02005756 if (nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
5757 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005758
5759 bss = nla_nest_start(msg, NL80211_ATTR_BSS);
5760 if (!bss)
5761 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04005762 if ((!is_zero_ether_addr(res->bssid) &&
Johannes Berg9caf0362012-11-29 01:25:20 +01005763 nla_put(msg, NL80211_BSS_BSSID, ETH_ALEN, res->bssid)))
David S. Miller9360ffd2012-03-29 04:41:26 -04005764 goto nla_put_failure;
Johannes Berg9caf0362012-11-29 01:25:20 +01005765
5766 rcu_read_lock();
5767 ies = rcu_dereference(res->ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005768 if (ies) {
5769 if (nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5770 goto fail_unlock_rcu;
5771 tsf = true;
5772 if (ies->len && nla_put(msg, NL80211_BSS_INFORMATION_ELEMENTS,
5773 ies->len, ies->data))
5774 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005775 }
5776 ies = rcu_dereference(res->beacon_ies);
Johannes Berg8cef2c92013-02-05 16:54:31 +01005777 if (ies) {
5778 if (!tsf && nla_put_u64(msg, NL80211_BSS_TSF, ies->tsf))
5779 goto fail_unlock_rcu;
5780 if (ies->len && nla_put(msg, NL80211_BSS_BEACON_IES,
5781 ies->len, ies->data))
5782 goto fail_unlock_rcu;
Johannes Berg9caf0362012-11-29 01:25:20 +01005783 }
5784 rcu_read_unlock();
5785
David S. Miller9360ffd2012-03-29 04:41:26 -04005786 if (res->beacon_interval &&
5787 nla_put_u16(msg, NL80211_BSS_BEACON_INTERVAL, res->beacon_interval))
5788 goto nla_put_failure;
5789 if (nla_put_u16(msg, NL80211_BSS_CAPABILITY, res->capability) ||
5790 nla_put_u32(msg, NL80211_BSS_FREQUENCY, res->channel->center_freq) ||
Simon Wunderlichdcd6eac2013-07-08 16:55:49 +02005791 nla_put_u32(msg, NL80211_BSS_CHAN_WIDTH, res->scan_width) ||
David S. Miller9360ffd2012-03-29 04:41:26 -04005792 nla_put_u32(msg, NL80211_BSS_SEEN_MS_AGO,
5793 jiffies_to_msecs(jiffies - intbss->ts)))
5794 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005795
Johannes Berg77965c92009-02-18 18:45:06 +01005796 switch (rdev->wiphy.signal_type) {
Johannes Berg2a519312009-02-10 21:25:55 +01005797 case CFG80211_SIGNAL_TYPE_MBM:
David S. Miller9360ffd2012-03-29 04:41:26 -04005798 if (nla_put_u32(msg, NL80211_BSS_SIGNAL_MBM, res->signal))
5799 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005800 break;
5801 case CFG80211_SIGNAL_TYPE_UNSPEC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005802 if (nla_put_u8(msg, NL80211_BSS_SIGNAL_UNSPEC, res->signal))
5803 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01005804 break;
5805 default:
5806 break;
5807 }
5808
Johannes Berg48ab9052009-07-10 18:42:31 +02005809 switch (wdev->iftype) {
Johannes Berg074ac8d2010-09-16 14:58:22 +02005810 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg48ab9052009-07-10 18:42:31 +02005811 case NL80211_IFTYPE_STATION:
David S. Miller9360ffd2012-03-29 04:41:26 -04005812 if (intbss == wdev->current_bss &&
5813 nla_put_u32(msg, NL80211_BSS_STATUS,
5814 NL80211_BSS_STATUS_ASSOCIATED))
5815 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005816 break;
5817 case NL80211_IFTYPE_ADHOC:
David S. Miller9360ffd2012-03-29 04:41:26 -04005818 if (intbss == wdev->current_bss &&
5819 nla_put_u32(msg, NL80211_BSS_STATUS,
5820 NL80211_BSS_STATUS_IBSS_JOINED))
5821 goto nla_put_failure;
Johannes Berg48ab9052009-07-10 18:42:31 +02005822 break;
5823 default:
5824 break;
5825 }
5826
Johannes Berg2a519312009-02-10 21:25:55 +01005827 nla_nest_end(msg, bss);
5828
5829 return genlmsg_end(msg, hdr);
5830
Johannes Berg8cef2c92013-02-05 16:54:31 +01005831 fail_unlock_rcu:
5832 rcu_read_unlock();
Johannes Berg2a519312009-02-10 21:25:55 +01005833 nla_put_failure:
5834 genlmsg_cancel(msg, hdr);
5835 return -EMSGSIZE;
5836}
5837
Johannes Berg97990a02013-04-19 01:02:55 +02005838static int nl80211_dump_scan(struct sk_buff *skb, struct netlink_callback *cb)
Johannes Berg2a519312009-02-10 21:25:55 +01005839{
Johannes Berg48ab9052009-07-10 18:42:31 +02005840 struct cfg80211_registered_device *rdev;
Johannes Berg2a519312009-02-10 21:25:55 +01005841 struct cfg80211_internal_bss *scan;
Johannes Berg48ab9052009-07-10 18:42:31 +02005842 struct wireless_dev *wdev;
Johannes Berg97990a02013-04-19 01:02:55 +02005843 int start = cb->args[2], idx = 0;
Johannes Berg2a519312009-02-10 21:25:55 +01005844 int err;
5845
Johannes Berg97990a02013-04-19 01:02:55 +02005846 err = nl80211_prepare_wdev_dump(skb, cb, &rdev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02005847 if (err)
5848 return err;
Johannes Berg2a519312009-02-10 21:25:55 +01005849
Johannes Berg48ab9052009-07-10 18:42:31 +02005850 wdev_lock(wdev);
5851 spin_lock_bh(&rdev->bss_lock);
5852 cfg80211_bss_expire(rdev);
5853
Johannes Berg9720bb32011-06-21 09:45:33 +02005854 cb->seq = rdev->bss_generation;
5855
Johannes Berg48ab9052009-07-10 18:42:31 +02005856 list_for_each_entry(scan, &rdev->bss_list, list) {
Johannes Berg2a519312009-02-10 21:25:55 +01005857 if (++idx <= start)
5858 continue;
Johannes Berg9720bb32011-06-21 09:45:33 +02005859 if (nl80211_send_bss(skb, cb,
Johannes Berg2a519312009-02-10 21:25:55 +01005860 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg48ab9052009-07-10 18:42:31 +02005861 rdev, wdev, scan) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01005862 idx--;
Johannes Berg67748892010-10-04 21:14:06 +02005863 break;
Johannes Berg2a519312009-02-10 21:25:55 +01005864 }
5865 }
5866
Johannes Berg48ab9052009-07-10 18:42:31 +02005867 spin_unlock_bh(&rdev->bss_lock);
5868 wdev_unlock(wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005869
Johannes Berg97990a02013-04-19 01:02:55 +02005870 cb->args[2] = idx;
5871 nl80211_finish_wdev_dump(rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01005872
Johannes Berg67748892010-10-04 21:14:06 +02005873 return skb->len;
Johannes Berg2a519312009-02-10 21:25:55 +01005874}
5875
Eric W. Biederman15e47302012-09-07 20:12:54 +00005876static int nl80211_send_survey(struct sk_buff *msg, u32 portid, u32 seq,
Holger Schurig61fa7132009-11-11 12:25:40 +01005877 int flags, struct net_device *dev,
5878 struct survey_info *survey)
5879{
5880 void *hdr;
5881 struct nlattr *infoattr;
5882
Eric W. Biederman15e47302012-09-07 20:12:54 +00005883 hdr = nl80211hdr_put(msg, portid, seq, flags,
Holger Schurig61fa7132009-11-11 12:25:40 +01005884 NL80211_CMD_NEW_SURVEY_RESULTS);
5885 if (!hdr)
5886 return -ENOMEM;
5887
David S. Miller9360ffd2012-03-29 04:41:26 -04005888 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
5889 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005890
5891 infoattr = nla_nest_start(msg, NL80211_ATTR_SURVEY_INFO);
5892 if (!infoattr)
5893 goto nla_put_failure;
5894
David S. Miller9360ffd2012-03-29 04:41:26 -04005895 if (nla_put_u32(msg, NL80211_SURVEY_INFO_FREQUENCY,
5896 survey->channel->center_freq))
5897 goto nla_put_failure;
5898
5899 if ((survey->filled & SURVEY_INFO_NOISE_DBM) &&
5900 nla_put_u8(msg, NL80211_SURVEY_INFO_NOISE, survey->noise))
5901 goto nla_put_failure;
5902 if ((survey->filled & SURVEY_INFO_IN_USE) &&
5903 nla_put_flag(msg, NL80211_SURVEY_INFO_IN_USE))
5904 goto nla_put_failure;
5905 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME) &&
5906 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME,
5907 survey->channel_time))
5908 goto nla_put_failure;
5909 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_BUSY) &&
5910 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY,
5911 survey->channel_time_busy))
5912 goto nla_put_failure;
5913 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY) &&
5914 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_EXT_BUSY,
5915 survey->channel_time_ext_busy))
5916 goto nla_put_failure;
5917 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_RX) &&
5918 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_RX,
5919 survey->channel_time_rx))
5920 goto nla_put_failure;
5921 if ((survey->filled & SURVEY_INFO_CHANNEL_TIME_TX) &&
5922 nla_put_u64(msg, NL80211_SURVEY_INFO_CHANNEL_TIME_TX,
5923 survey->channel_time_tx))
5924 goto nla_put_failure;
Holger Schurig61fa7132009-11-11 12:25:40 +01005925
5926 nla_nest_end(msg, infoattr);
5927
5928 return genlmsg_end(msg, hdr);
5929
5930 nla_put_failure:
5931 genlmsg_cancel(msg, hdr);
5932 return -EMSGSIZE;
5933}
5934
5935static int nl80211_dump_survey(struct sk_buff *skb,
5936 struct netlink_callback *cb)
5937{
5938 struct survey_info survey;
5939 struct cfg80211_registered_device *dev;
Johannes Berg97990a02013-04-19 01:02:55 +02005940 struct wireless_dev *wdev;
5941 int survey_idx = cb->args[2];
Holger Schurig61fa7132009-11-11 12:25:40 +01005942 int res;
5943
Johannes Berg97990a02013-04-19 01:02:55 +02005944 res = nl80211_prepare_wdev_dump(skb, cb, &dev, &wdev);
Johannes Berg67748892010-10-04 21:14:06 +02005945 if (res)
5946 return res;
Holger Schurig61fa7132009-11-11 12:25:40 +01005947
Johannes Berg97990a02013-04-19 01:02:55 +02005948 if (!wdev->netdev) {
5949 res = -EINVAL;
5950 goto out_err;
5951 }
5952
Holger Schurig61fa7132009-11-11 12:25:40 +01005953 if (!dev->ops->dump_survey) {
5954 res = -EOPNOTSUPP;
5955 goto out_err;
5956 }
5957
5958 while (1) {
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07005959 struct ieee80211_channel *chan;
5960
Johannes Berg97990a02013-04-19 01:02:55 +02005961 res = rdev_dump_survey(dev, wdev->netdev, survey_idx, &survey);
Holger Schurig61fa7132009-11-11 12:25:40 +01005962 if (res == -ENOENT)
5963 break;
5964 if (res)
5965 goto out_err;
5966
Luis R. Rodriguez180cdc72011-05-27 07:24:02 -07005967 /* Survey without a channel doesn't make sense */
5968 if (!survey.channel) {
5969 res = -EINVAL;
5970 goto out;
5971 }
5972
5973 chan = ieee80211_get_channel(&dev->wiphy,
5974 survey.channel->center_freq);
5975 if (!chan || chan->flags & IEEE80211_CHAN_DISABLED) {
5976 survey_idx++;
5977 continue;
5978 }
5979
Holger Schurig61fa7132009-11-11 12:25:40 +01005980 if (nl80211_send_survey(skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00005981 NETLINK_CB(cb->skb).portid,
Holger Schurig61fa7132009-11-11 12:25:40 +01005982 cb->nlh->nlmsg_seq, NLM_F_MULTI,
Johannes Berg97990a02013-04-19 01:02:55 +02005983 wdev->netdev, &survey) < 0)
Holger Schurig61fa7132009-11-11 12:25:40 +01005984 goto out;
5985 survey_idx++;
5986 }
5987
5988 out:
Johannes Berg97990a02013-04-19 01:02:55 +02005989 cb->args[2] = survey_idx;
Holger Schurig61fa7132009-11-11 12:25:40 +01005990 res = skb->len;
5991 out_err:
Johannes Berg97990a02013-04-19 01:02:55 +02005992 nl80211_finish_wdev_dump(dev);
Holger Schurig61fa7132009-11-11 12:25:40 +01005993 return res;
5994}
5995
Samuel Ortizb23aa672009-07-01 21:26:54 +02005996static bool nl80211_valid_wpa_versions(u32 wpa_versions)
5997{
5998 return !(wpa_versions & ~(NL80211_WPA_VERSION_1 |
5999 NL80211_WPA_VERSION_2));
6000}
6001
Jouni Malinen636a5d32009-03-19 13:39:22 +02006002static int nl80211_authenticate(struct sk_buff *skb, struct genl_info *info)
6003{
Johannes Berg4c476992010-10-04 21:36:35 +02006004 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6005 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006006 struct ieee80211_channel *chan;
Jouni Malinene39e5b52012-09-30 19:29:39 +03006007 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL;
6008 int err, ssid_len, ie_len = 0, sae_data_len = 0;
Johannes Berg19957bb2009-07-02 17:20:43 +02006009 enum nl80211_auth_type auth_type;
Johannes Bergfffd0932009-07-08 14:22:54 +02006010 struct key_parse key;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006011 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006012
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006013 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6014 return -EINVAL;
6015
6016 if (!info->attrs[NL80211_ATTR_MAC])
6017 return -EINVAL;
6018
Jouni Malinen17780922009-03-27 20:52:47 +02006019 if (!info->attrs[NL80211_ATTR_AUTH_TYPE])
6020 return -EINVAL;
6021
Johannes Berg19957bb2009-07-02 17:20:43 +02006022 if (!info->attrs[NL80211_ATTR_SSID])
6023 return -EINVAL;
6024
6025 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
6026 return -EINVAL;
6027
Johannes Bergfffd0932009-07-08 14:22:54 +02006028 err = nl80211_parse_key(info, &key);
6029 if (err)
6030 return err;
6031
6032 if (key.idx >= 0) {
Johannes Berge31b8212010-10-05 19:39:30 +02006033 if (key.type != -1 && key.type != NL80211_KEYTYPE_GROUP)
6034 return -EINVAL;
Johannes Bergfffd0932009-07-08 14:22:54 +02006035 if (!key.p.key || !key.p.key_len)
6036 return -EINVAL;
6037 if ((key.p.cipher != WLAN_CIPHER_SUITE_WEP40 ||
6038 key.p.key_len != WLAN_KEY_LEN_WEP40) &&
6039 (key.p.cipher != WLAN_CIPHER_SUITE_WEP104 ||
6040 key.p.key_len != WLAN_KEY_LEN_WEP104))
6041 return -EINVAL;
6042 if (key.idx > 4)
6043 return -EINVAL;
6044 } else {
6045 key.p.key_len = 0;
6046 key.p.key = NULL;
6047 }
6048
Johannes Bergafea0b72010-08-10 09:46:42 +02006049 if (key.idx >= 0) {
6050 int i;
6051 bool ok = false;
6052 for (i = 0; i < rdev->wiphy.n_cipher_suites; i++) {
6053 if (key.p.cipher == rdev->wiphy.cipher_suites[i]) {
6054 ok = true;
6055 break;
6056 }
6057 }
Johannes Berg4c476992010-10-04 21:36:35 +02006058 if (!ok)
6059 return -EINVAL;
Johannes Bergafea0b72010-08-10 09:46:42 +02006060 }
6061
Johannes Berg4c476992010-10-04 21:36:35 +02006062 if (!rdev->ops->auth)
6063 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006064
Johannes Berg074ac8d2010-09-16 14:58:22 +02006065 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006066 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6067 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006068
Johannes Berg19957bb2009-07-02 17:20:43 +02006069 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg79c97e92009-07-07 03:56:12 +02006070 chan = ieee80211_get_channel(&rdev->wiphy,
Johannes Berg19957bb2009-07-02 17:20:43 +02006071 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006072 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6073 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006074
Johannes Berg19957bb2009-07-02 17:20:43 +02006075 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6076 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6077
6078 if (info->attrs[NL80211_ATTR_IE]) {
6079 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6080 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6081 }
6082
6083 auth_type = nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006084 if (!nl80211_valid_auth_type(rdev, auth_type, NL80211_CMD_AUTHENTICATE))
Johannes Berg4c476992010-10-04 21:36:35 +02006085 return -EINVAL;
Johannes Berg19957bb2009-07-02 17:20:43 +02006086
Jouni Malinene39e5b52012-09-30 19:29:39 +03006087 if (auth_type == NL80211_AUTHTYPE_SAE &&
6088 !info->attrs[NL80211_ATTR_SAE_DATA])
6089 return -EINVAL;
6090
6091 if (info->attrs[NL80211_ATTR_SAE_DATA]) {
6092 if (auth_type != NL80211_AUTHTYPE_SAE)
6093 return -EINVAL;
6094 sae_data = nla_data(info->attrs[NL80211_ATTR_SAE_DATA]);
6095 sae_data_len = nla_len(info->attrs[NL80211_ATTR_SAE_DATA]);
6096 /* need to include at least Auth Transaction and Status Code */
6097 if (sae_data_len < 4)
6098 return -EINVAL;
6099 }
6100
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006101 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6102
Johannes Berg95de8172012-01-20 13:55:25 +01006103 /*
6104 * Since we no longer track auth state, ignore
6105 * requests to only change local state.
6106 */
6107 if (local_state_change)
6108 return 0;
6109
Johannes Berg91bf9b22013-05-15 17:44:01 +02006110 wdev_lock(dev->ieee80211_ptr);
6111 err = cfg80211_mlme_auth(rdev, dev, chan, auth_type, bssid,
6112 ssid, ssid_len, ie, ie_len,
6113 key.p.key, key.p.key_len, key.idx,
6114 sae_data, sae_data_len);
6115 wdev_unlock(dev->ieee80211_ptr);
6116 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006117}
6118
Johannes Bergc0692b82010-08-27 14:26:53 +03006119static int nl80211_crypto_settings(struct cfg80211_registered_device *rdev,
6120 struct genl_info *info,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006121 struct cfg80211_crypto_settings *settings,
6122 int cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006123{
Johannes Bergc0b2bbd2009-07-25 16:54:36 +02006124 memset(settings, 0, sizeof(*settings));
6125
Samuel Ortizb23aa672009-07-01 21:26:54 +02006126 settings->control_port = info->attrs[NL80211_ATTR_CONTROL_PORT];
6127
Johannes Bergc0692b82010-08-27 14:26:53 +03006128 if (info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]) {
6129 u16 proto;
6130 proto = nla_get_u16(
6131 info->attrs[NL80211_ATTR_CONTROL_PORT_ETHERTYPE]);
6132 settings->control_port_ethertype = cpu_to_be16(proto);
6133 if (!(rdev->wiphy.flags & WIPHY_FLAG_CONTROL_PORT_PROTOCOL) &&
6134 proto != ETH_P_PAE)
6135 return -EINVAL;
6136 if (info->attrs[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT])
6137 settings->control_port_no_encrypt = true;
6138 } else
6139 settings->control_port_ethertype = cpu_to_be16(ETH_P_PAE);
6140
Samuel Ortizb23aa672009-07-01 21:26:54 +02006141 if (info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]) {
6142 void *data;
6143 int len, i;
6144
6145 data = nla_data(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6146 len = nla_len(info->attrs[NL80211_ATTR_CIPHER_SUITES_PAIRWISE]);
6147 settings->n_ciphers_pairwise = len / sizeof(u32);
6148
6149 if (len % sizeof(u32))
6150 return -EINVAL;
6151
Johannes Berg3dc27d22009-07-02 21:36:37 +02006152 if (settings->n_ciphers_pairwise > cipher_limit)
Samuel Ortizb23aa672009-07-01 21:26:54 +02006153 return -EINVAL;
6154
6155 memcpy(settings->ciphers_pairwise, data, len);
6156
6157 for (i = 0; i < settings->n_ciphers_pairwise; i++)
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006158 if (!cfg80211_supported_cipher_suite(
6159 &rdev->wiphy,
Samuel Ortizb23aa672009-07-01 21:26:54 +02006160 settings->ciphers_pairwise[i]))
6161 return -EINVAL;
6162 }
6163
6164 if (info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]) {
6165 settings->cipher_group =
6166 nla_get_u32(info->attrs[NL80211_ATTR_CIPHER_SUITE_GROUP]);
Jouni Malinen38ba3c52011-09-21 18:14:56 +03006167 if (!cfg80211_supported_cipher_suite(&rdev->wiphy,
6168 settings->cipher_group))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006169 return -EINVAL;
6170 }
6171
6172 if (info->attrs[NL80211_ATTR_WPA_VERSIONS]) {
6173 settings->wpa_versions =
6174 nla_get_u32(info->attrs[NL80211_ATTR_WPA_VERSIONS]);
6175 if (!nl80211_valid_wpa_versions(settings->wpa_versions))
6176 return -EINVAL;
6177 }
6178
6179 if (info->attrs[NL80211_ATTR_AKM_SUITES]) {
6180 void *data;
Jouni Malinen6d302402011-09-21 18:11:33 +03006181 int len;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006182
6183 data = nla_data(info->attrs[NL80211_ATTR_AKM_SUITES]);
6184 len = nla_len(info->attrs[NL80211_ATTR_AKM_SUITES]);
6185 settings->n_akm_suites = len / sizeof(u32);
6186
6187 if (len % sizeof(u32))
6188 return -EINVAL;
6189
Jouni Malinen1b9ca022011-09-21 16:13:07 +03006190 if (settings->n_akm_suites > NL80211_MAX_NR_AKM_SUITES)
6191 return -EINVAL;
6192
Samuel Ortizb23aa672009-07-01 21:26:54 +02006193 memcpy(settings->akm_suites, data, len);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006194 }
6195
6196 return 0;
6197}
6198
Jouni Malinen636a5d32009-03-19 13:39:22 +02006199static int nl80211_associate(struct sk_buff *skb, struct genl_info *info)
6200{
Johannes Berg4c476992010-10-04 21:36:35 +02006201 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6202 struct net_device *dev = info->user_ptr[1];
Johannes Bergf444de02010-05-05 15:25:02 +02006203 struct ieee80211_channel *chan;
Johannes Bergf62fab72013-02-21 20:09:09 +01006204 struct cfg80211_assoc_request req = {};
6205 const u8 *bssid, *ssid;
6206 int err, ssid_len = 0;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006207
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006208 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6209 return -EINVAL;
6210
6211 if (!info->attrs[NL80211_ATTR_MAC] ||
Johannes Berg19957bb2009-07-02 17:20:43 +02006212 !info->attrs[NL80211_ATTR_SSID] ||
6213 !info->attrs[NL80211_ATTR_WIPHY_FREQ])
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006214 return -EINVAL;
6215
Johannes Berg4c476992010-10-04 21:36:35 +02006216 if (!rdev->ops->assoc)
6217 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006218
Johannes Berg074ac8d2010-09-16 14:58:22 +02006219 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006220 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6221 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006222
Johannes Berg19957bb2009-07-02 17:20:43 +02006223 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006224
Johannes Berg19957bb2009-07-02 17:20:43 +02006225 chan = ieee80211_get_channel(&rdev->wiphy,
6226 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
Johannes Berg4c476992010-10-04 21:36:35 +02006227 if (!chan || (chan->flags & IEEE80211_CHAN_DISABLED))
6228 return -EINVAL;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006229
Johannes Berg19957bb2009-07-02 17:20:43 +02006230 ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6231 ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006232
6233 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006234 req.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6235 req.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006236 }
6237
Jouni Malinendc6382c2009-05-06 22:09:37 +03006238 if (info->attrs[NL80211_ATTR_USE_MFP]) {
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006239 enum nl80211_mfp mfp =
Jouni Malinendc6382c2009-05-06 22:09:37 +03006240 nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
Johannes Berg4f5dadc2009-07-07 03:56:10 +02006241 if (mfp == NL80211_MFP_REQUIRED)
Johannes Bergf62fab72013-02-21 20:09:09 +01006242 req.use_mfp = true;
Johannes Berg4c476992010-10-04 21:36:35 +02006243 else if (mfp != NL80211_MFP_NO)
6244 return -EINVAL;
Jouni Malinendc6382c2009-05-06 22:09:37 +03006245 }
6246
Johannes Berg3e5d7642009-07-07 14:37:26 +02006247 if (info->attrs[NL80211_ATTR_PREV_BSSID])
Johannes Bergf62fab72013-02-21 20:09:09 +01006248 req.prev_bssid = nla_data(info->attrs[NL80211_ATTR_PREV_BSSID]);
Johannes Berg3e5d7642009-07-07 14:37:26 +02006249
Ben Greear7e7c8922011-11-18 11:31:59 -08006250 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006251 req.flags |= ASSOC_REQ_DISABLE_HT;
Ben Greear7e7c8922011-11-18 11:31:59 -08006252
6253 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006254 memcpy(&req.ht_capa_mask,
6255 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6256 sizeof(req.ht_capa_mask));
Ben Greear7e7c8922011-11-18 11:31:59 -08006257
6258 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006259 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
Ben Greear7e7c8922011-11-18 11:31:59 -08006260 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006261 memcpy(&req.ht_capa,
6262 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6263 sizeof(req.ht_capa));
Ben Greear7e7c8922011-11-18 11:31:59 -08006264 }
6265
Johannes Bergee2aca32013-02-21 17:36:01 +01006266 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
Johannes Bergf62fab72013-02-21 20:09:09 +01006267 req.flags |= ASSOC_REQ_DISABLE_VHT;
Johannes Bergee2aca32013-02-21 17:36:01 +01006268
6269 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergf62fab72013-02-21 20:09:09 +01006270 memcpy(&req.vht_capa_mask,
6271 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6272 sizeof(req.vht_capa_mask));
Johannes Bergee2aca32013-02-21 17:36:01 +01006273
6274 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
Johannes Bergf62fab72013-02-21 20:09:09 +01006275 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
Johannes Bergee2aca32013-02-21 17:36:01 +01006276 return -EINVAL;
Johannes Bergf62fab72013-02-21 20:09:09 +01006277 memcpy(&req.vht_capa,
6278 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6279 sizeof(req.vht_capa));
Johannes Bergee2aca32013-02-21 17:36:01 +01006280 }
6281
Johannes Bergf62fab72013-02-21 20:09:09 +01006282 err = nl80211_crypto_settings(rdev, info, &req.crypto, 1);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006283 if (!err) {
6284 wdev_lock(dev->ieee80211_ptr);
Johannes Bergf62fab72013-02-21 20:09:09 +01006285 err = cfg80211_mlme_assoc(rdev, dev, chan, bssid,
6286 ssid, ssid_len, &req);
Johannes Berg91bf9b22013-05-15 17:44:01 +02006287 wdev_unlock(dev->ieee80211_ptr);
6288 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006289
Jouni Malinen636a5d32009-03-19 13:39:22 +02006290 return err;
6291}
6292
6293static int nl80211_deauthenticate(struct sk_buff *skb, struct genl_info *info)
6294{
Johannes Berg4c476992010-10-04 21:36:35 +02006295 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6296 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006297 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006298 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006299 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006300 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006301
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006302 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6303 return -EINVAL;
6304
6305 if (!info->attrs[NL80211_ATTR_MAC])
6306 return -EINVAL;
6307
6308 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6309 return -EINVAL;
6310
Johannes Berg4c476992010-10-04 21:36:35 +02006311 if (!rdev->ops->deauth)
6312 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006313
Johannes Berg074ac8d2010-09-16 14:58:22 +02006314 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006315 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6316 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006317
Johannes Berg19957bb2009-07-02 17:20:43 +02006318 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006319
Johannes Berg19957bb2009-07-02 17:20:43 +02006320 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6321 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006322 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006323 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006324 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006325
6326 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006327 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6328 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006329 }
6330
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006331 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6332
Johannes Berg91bf9b22013-05-15 17:44:01 +02006333 wdev_lock(dev->ieee80211_ptr);
6334 err = cfg80211_mlme_deauth(rdev, dev, bssid, ie, ie_len, reason_code,
6335 local_state_change);
6336 wdev_unlock(dev->ieee80211_ptr);
6337 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006338}
6339
6340static int nl80211_disassociate(struct sk_buff *skb, struct genl_info *info)
6341{
Johannes Berg4c476992010-10-04 21:36:35 +02006342 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6343 struct net_device *dev = info->user_ptr[1];
Johannes Berg19957bb2009-07-02 17:20:43 +02006344 const u8 *ie = NULL, *bssid;
Johannes Berg91bf9b22013-05-15 17:44:01 +02006345 int ie_len = 0, err;
Johannes Berg19957bb2009-07-02 17:20:43 +02006346 u16 reason_code;
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006347 bool local_state_change;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006348
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006349 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6350 return -EINVAL;
6351
6352 if (!info->attrs[NL80211_ATTR_MAC])
6353 return -EINVAL;
6354
6355 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6356 return -EINVAL;
6357
Johannes Berg4c476992010-10-04 21:36:35 +02006358 if (!rdev->ops->disassoc)
6359 return -EOPNOTSUPP;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006360
Johannes Berg074ac8d2010-09-16 14:58:22 +02006361 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006362 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6363 return -EOPNOTSUPP;
Jouni Malineneec60b02009-03-20 21:21:19 +02006364
Johannes Berg19957bb2009-07-02 17:20:43 +02006365 bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006366
Johannes Berg19957bb2009-07-02 17:20:43 +02006367 reason_code = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6368 if (reason_code == 0) {
Johannes Bergf4a11bb2009-03-27 12:40:28 +01006369 /* Reason Code 0 is reserved */
Johannes Berg4c476992010-10-04 21:36:35 +02006370 return -EINVAL;
Jouni Malinen255e7372009-03-20 21:21:17 +02006371 }
Jouni Malinen636a5d32009-03-19 13:39:22 +02006372
6373 if (info->attrs[NL80211_ATTR_IE]) {
Johannes Berg19957bb2009-07-02 17:20:43 +02006374 ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6375 ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
Jouni Malinen636a5d32009-03-19 13:39:22 +02006376 }
6377
Jouni Malinend5cdfac2010-04-04 09:37:19 +03006378 local_state_change = !!info->attrs[NL80211_ATTR_LOCAL_STATE_CHANGE];
6379
Johannes Berg91bf9b22013-05-15 17:44:01 +02006380 wdev_lock(dev->ieee80211_ptr);
6381 err = cfg80211_mlme_disassoc(rdev, dev, bssid, ie, ie_len, reason_code,
6382 local_state_change);
6383 wdev_unlock(dev->ieee80211_ptr);
6384 return err;
Jouni Malinen636a5d32009-03-19 13:39:22 +02006385}
6386
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006387static bool
6388nl80211_parse_mcast_rate(struct cfg80211_registered_device *rdev,
6389 int mcast_rate[IEEE80211_NUM_BANDS],
6390 int rateval)
6391{
6392 struct wiphy *wiphy = &rdev->wiphy;
6393 bool found = false;
6394 int band, i;
6395
6396 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
6397 struct ieee80211_supported_band *sband;
6398
6399 sband = wiphy->bands[band];
6400 if (!sband)
6401 continue;
6402
6403 for (i = 0; i < sband->n_bitrates; i++) {
6404 if (sband->bitrates[i].bitrate == rateval) {
6405 mcast_rate[band] = i + 1;
6406 found = true;
6407 break;
6408 }
6409 }
6410 }
6411
6412 return found;
6413}
6414
Johannes Berg04a773a2009-04-19 21:24:32 +02006415static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info)
6416{
Johannes Berg4c476992010-10-04 21:36:35 +02006417 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6418 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006419 struct cfg80211_ibss_params ibss;
6420 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006421 struct cfg80211_cached_keys *connkeys = NULL;
Johannes Berg04a773a2009-04-19 21:24:32 +02006422 int err;
6423
Johannes Berg8e30bc52009-04-22 17:45:38 +02006424 memset(&ibss, 0, sizeof(ibss));
6425
Johannes Berg04a773a2009-04-19 21:24:32 +02006426 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6427 return -EINVAL;
6428
Johannes Berg683b6d32012-11-08 21:25:48 +01006429 if (!info->attrs[NL80211_ATTR_SSID] ||
Johannes Berg04a773a2009-04-19 21:24:32 +02006430 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6431 return -EINVAL;
6432
Johannes Berg8e30bc52009-04-22 17:45:38 +02006433 ibss.beacon_interval = 100;
6434
6435 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
6436 ibss.beacon_interval =
6437 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
6438 if (ibss.beacon_interval < 1 || ibss.beacon_interval > 10000)
6439 return -EINVAL;
6440 }
6441
Johannes Berg4c476992010-10-04 21:36:35 +02006442 if (!rdev->ops->join_ibss)
6443 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006444
Johannes Berg4c476992010-10-04 21:36:35 +02006445 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6446 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006447
Johannes Berg79c97e92009-07-07 03:56:12 +02006448 wiphy = &rdev->wiphy;
Johannes Berg04a773a2009-04-19 21:24:32 +02006449
Johannes Berg39193492011-09-16 13:45:25 +02006450 if (info->attrs[NL80211_ATTR_MAC]) {
Johannes Berg04a773a2009-04-19 21:24:32 +02006451 ibss.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
Johannes Berg39193492011-09-16 13:45:25 +02006452
6453 if (!is_valid_ether_addr(ibss.bssid))
6454 return -EINVAL;
6455 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006456 ibss.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6457 ibss.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6458
6459 if (info->attrs[NL80211_ATTR_IE]) {
6460 ibss.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6461 ibss.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6462 }
6463
Johannes Berg683b6d32012-11-08 21:25:48 +01006464 err = nl80211_parse_chandef(rdev, info, &ibss.chandef);
6465 if (err)
6466 return err;
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006467
Johannes Berg683b6d32012-11-08 21:25:48 +01006468 if (!cfg80211_reg_can_beacon(&rdev->wiphy, &ibss.chandef))
Alexander Simon54858ee5b2011-11-30 16:56:32 +01006469 return -EINVAL;
6470
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006471 switch (ibss.chandef.width) {
Simon Wunderlichbf372642013-07-08 16:55:58 +02006472 case NL80211_CHAN_WIDTH_5:
6473 case NL80211_CHAN_WIDTH_10:
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006474 case NL80211_CHAN_WIDTH_20_NOHT:
6475 break;
6476 case NL80211_CHAN_WIDTH_20:
6477 case NL80211_CHAN_WIDTH_40:
6478 if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)
6479 break;
6480 default:
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006481 return -EINVAL;
Simon Wunderlich2f301ab2013-05-16 13:00:28 +02006482 }
Johannes Bergdb9c64c2012-11-09 14:56:41 +01006483
Johannes Berg04a773a2009-04-19 21:24:32 +02006484 ibss.channel_fixed = !!info->attrs[NL80211_ATTR_FREQ_FIXED];
Johannes Bergfffd0932009-07-08 14:22:54 +02006485 ibss.privacy = !!info->attrs[NL80211_ATTR_PRIVACY];
Johannes Berg04a773a2009-04-19 21:24:32 +02006486
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006487 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
6488 u8 *rates =
6489 nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6490 int n_rates =
6491 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
6492 struct ieee80211_supported_band *sband =
Johannes Berg683b6d32012-11-08 21:25:48 +01006493 wiphy->bands[ibss.chandef.chan->band];
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006494
Johannes Berg34850ab2011-07-18 18:08:35 +02006495 err = ieee80211_get_ratemask(sband, rates, n_rates,
6496 &ibss.basic_rates);
6497 if (err)
6498 return err;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006499 }
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006500
Simon Wunderlich803768f2013-06-28 10:39:58 +02006501 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6502 memcpy(&ibss.ht_capa_mask,
6503 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6504 sizeof(ibss.ht_capa_mask));
6505
6506 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
6507 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6508 return -EINVAL;
6509 memcpy(&ibss.ht_capa,
6510 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6511 sizeof(ibss.ht_capa));
6512 }
6513
Felix Fietkaudd5b4cc2010-11-22 20:58:24 +01006514 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
6515 !nl80211_parse_mcast_rate(rdev, ibss.mcast_rate,
6516 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
6517 return -EINVAL;
Teemu Paasikivifbd2c8d2010-06-14 12:55:31 +03006518
Johannes Berg4c476992010-10-04 21:36:35 +02006519 if (ibss.privacy && info->attrs[NL80211_ATTR_KEYS]) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306520 bool no_ht = false;
6521
Johannes Berg4c476992010-10-04 21:36:35 +02006522 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306523 info->attrs[NL80211_ATTR_KEYS],
6524 &no_ht);
Johannes Berg4c476992010-10-04 21:36:35 +02006525 if (IS_ERR(connkeys))
6526 return PTR_ERR(connkeys);
Sujith Manoharande7044e2012-10-18 10:19:28 +05306527
Johannes Berg3d9d1d62012-11-08 23:14:50 +01006528 if ((ibss.chandef.width != NL80211_CHAN_WIDTH_20_NOHT) &&
6529 no_ht) {
Sujith Manoharande7044e2012-10-18 10:19:28 +05306530 kfree(connkeys);
6531 return -EINVAL;
6532 }
Johannes Berg4c476992010-10-04 21:36:35 +02006533 }
Johannes Berg04a773a2009-04-19 21:24:32 +02006534
Antonio Quartulli267335d2012-01-31 20:25:47 +01006535 ibss.control_port =
6536 nla_get_flag(info->attrs[NL80211_ATTR_CONTROL_PORT]);
6537
Johannes Berg4c476992010-10-04 21:36:35 +02006538 err = cfg80211_join_ibss(rdev, dev, &ibss, connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006539 if (err)
6540 kfree(connkeys);
Johannes Berg04a773a2009-04-19 21:24:32 +02006541 return err;
6542}
6543
6544static int nl80211_leave_ibss(struct sk_buff *skb, struct genl_info *info)
6545{
Johannes Berg4c476992010-10-04 21:36:35 +02006546 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6547 struct net_device *dev = info->user_ptr[1];
Johannes Berg04a773a2009-04-19 21:24:32 +02006548
Johannes Berg4c476992010-10-04 21:36:35 +02006549 if (!rdev->ops->leave_ibss)
6550 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006551
Johannes Berg4c476992010-10-04 21:36:35 +02006552 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC)
6553 return -EOPNOTSUPP;
Johannes Berg04a773a2009-04-19 21:24:32 +02006554
Johannes Berg4c476992010-10-04 21:36:35 +02006555 return cfg80211_leave_ibss(rdev, dev, false);
Johannes Berg04a773a2009-04-19 21:24:32 +02006556}
6557
Antonio Quartullif4e583c2012-11-02 13:27:48 +01006558static int nl80211_set_mcast_rate(struct sk_buff *skb, struct genl_info *info)
6559{
6560 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6561 struct net_device *dev = info->user_ptr[1];
6562 int mcast_rate[IEEE80211_NUM_BANDS];
6563 u32 nla_rate;
6564 int err;
6565
6566 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_ADHOC &&
6567 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_MESH_POINT)
6568 return -EOPNOTSUPP;
6569
6570 if (!rdev->ops->set_mcast_rate)
6571 return -EOPNOTSUPP;
6572
6573 memset(mcast_rate, 0, sizeof(mcast_rate));
6574
6575 if (!info->attrs[NL80211_ATTR_MCAST_RATE])
6576 return -EINVAL;
6577
6578 nla_rate = nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE]);
6579 if (!nl80211_parse_mcast_rate(rdev, mcast_rate, nla_rate))
6580 return -EINVAL;
6581
6582 err = rdev->ops->set_mcast_rate(&rdev->wiphy, dev, mcast_rate);
6583
6584 return err;
6585}
6586
6587
Johannes Bergaff89a92009-07-01 21:26:51 +02006588#ifdef CONFIG_NL80211_TESTMODE
6589static struct genl_multicast_group nl80211_testmode_mcgrp = {
6590 .name = "testmode",
6591};
6592
6593static int nl80211_testmode_do(struct sk_buff *skb, struct genl_info *info)
6594{
Johannes Berg4c476992010-10-04 21:36:35 +02006595 struct cfg80211_registered_device *rdev = info->user_ptr[0];
David Spinadelfc73f112013-07-31 18:04:15 +03006596 struct wireless_dev *wdev =
6597 __cfg80211_wdev_from_attrs(genl_info_net(info), info->attrs);
Johannes Bergaff89a92009-07-01 21:26:51 +02006598 int err;
6599
David Spinadelfc73f112013-07-31 18:04:15 +03006600 if (!rdev->ops->testmode_cmd)
6601 return -EOPNOTSUPP;
6602
6603 if (IS_ERR(wdev)) {
6604 err = PTR_ERR(wdev);
6605 if (err != -EINVAL)
6606 return err;
6607 wdev = NULL;
6608 } else if (wdev->wiphy != &rdev->wiphy) {
6609 return -EINVAL;
6610 }
6611
Johannes Bergaff89a92009-07-01 21:26:51 +02006612 if (!info->attrs[NL80211_ATTR_TESTDATA])
6613 return -EINVAL;
6614
David Spinadelfc73f112013-07-31 18:04:15 +03006615 rdev->testmode_info = info;
6616 err = rdev_testmode_cmd(rdev, wdev,
Johannes Bergaff89a92009-07-01 21:26:51 +02006617 nla_data(info->attrs[NL80211_ATTR_TESTDATA]),
6618 nla_len(info->attrs[NL80211_ATTR_TESTDATA]));
David Spinadelfc73f112013-07-31 18:04:15 +03006619 rdev->testmode_info = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02006620
Johannes Bergaff89a92009-07-01 21:26:51 +02006621 return err;
6622}
6623
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006624static int nl80211_testmode_dump(struct sk_buff *skb,
6625 struct netlink_callback *cb)
6626{
Johannes Berg00918d32011-12-13 17:22:05 +01006627 struct cfg80211_registered_device *rdev;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006628 int err;
6629 long phy_idx;
6630 void *data = NULL;
6631 int data_len = 0;
6632
Johannes Berg5fe231e2013-05-08 21:45:15 +02006633 rtnl_lock();
6634
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006635 if (cb->args[0]) {
6636 /*
6637 * 0 is a valid index, but not valid for args[0],
6638 * so we need to offset by 1.
6639 */
6640 phy_idx = cb->args[0] - 1;
6641 } else {
6642 err = nlmsg_parse(cb->nlh, GENL_HDRLEN + nl80211_fam.hdrsize,
6643 nl80211_fam.attrbuf, nl80211_fam.maxattr,
6644 nl80211_policy);
6645 if (err)
Johannes Berg5fe231e2013-05-08 21:45:15 +02006646 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006647
Johannes Berg2bd7e352012-06-15 14:23:16 +02006648 rdev = __cfg80211_rdev_from_attrs(sock_net(skb->sk),
6649 nl80211_fam.attrbuf);
6650 if (IS_ERR(rdev)) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006651 err = PTR_ERR(rdev);
6652 goto out_err;
Johannes Berg00918d32011-12-13 17:22:05 +01006653 }
Johannes Berg2bd7e352012-06-15 14:23:16 +02006654 phy_idx = rdev->wiphy_idx;
6655 rdev = NULL;
Johannes Berg2bd7e352012-06-15 14:23:16 +02006656
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006657 if (nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA])
6658 cb->args[1] =
6659 (long)nl80211_fam.attrbuf[NL80211_ATTR_TESTDATA];
6660 }
6661
6662 if (cb->args[1]) {
6663 data = nla_data((void *)cb->args[1]);
6664 data_len = nla_len((void *)cb->args[1]);
6665 }
6666
Johannes Berg00918d32011-12-13 17:22:05 +01006667 rdev = cfg80211_rdev_by_wiphy_idx(phy_idx);
6668 if (!rdev) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02006669 err = -ENOENT;
6670 goto out_err;
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006671 }
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006672
Johannes Berg00918d32011-12-13 17:22:05 +01006673 if (!rdev->ops->testmode_dump) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006674 err = -EOPNOTSUPP;
6675 goto out_err;
6676 }
6677
6678 while (1) {
Eric W. Biederman15e47302012-09-07 20:12:54 +00006679 void *hdr = nl80211hdr_put(skb, NETLINK_CB(cb->skb).portid,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006680 cb->nlh->nlmsg_seq, NLM_F_MULTI,
6681 NL80211_CMD_TESTMODE);
6682 struct nlattr *tmdata;
6683
Dan Carpentercb35fba2013-08-14 14:50:01 +03006684 if (!hdr)
6685 break;
6686
David S. Miller9360ffd2012-03-29 04:41:26 -04006687 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, phy_idx)) {
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006688 genlmsg_cancel(skb, hdr);
6689 break;
6690 }
6691
6692 tmdata = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6693 if (!tmdata) {
6694 genlmsg_cancel(skb, hdr);
6695 break;
6696 }
Hila Gonene35e4d22012-06-27 17:19:42 +03006697 err = rdev_testmode_dump(rdev, skb, cb, data, data_len);
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006698 nla_nest_end(skb, tmdata);
6699
6700 if (err == -ENOBUFS || err == -ENOENT) {
6701 genlmsg_cancel(skb, hdr);
6702 break;
6703 } else if (err) {
6704 genlmsg_cancel(skb, hdr);
6705 goto out_err;
6706 }
6707
6708 genlmsg_end(skb, hdr);
6709 }
6710
6711 err = skb->len;
6712 /* see above */
6713 cb->args[0] = phy_idx + 1;
6714 out_err:
Johannes Berg5fe231e2013-05-08 21:45:15 +02006715 rtnl_unlock();
Wey-Yi Guy71063f02011-05-20 09:05:54 -07006716 return err;
6717}
6718
Johannes Bergaff89a92009-07-01 21:26:51 +02006719static struct sk_buff *
6720__cfg80211_testmode_alloc_skb(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006721 int approxlen, u32 portid, u32 seq, gfp_t gfp)
Johannes Bergaff89a92009-07-01 21:26:51 +02006722{
6723 struct sk_buff *skb;
6724 void *hdr;
6725 struct nlattr *data;
6726
6727 skb = nlmsg_new(approxlen + 100, gfp);
6728 if (!skb)
6729 return NULL;
6730
Eric W. Biederman15e47302012-09-07 20:12:54 +00006731 hdr = nl80211hdr_put(skb, portid, seq, 0, NL80211_CMD_TESTMODE);
Johannes Bergaff89a92009-07-01 21:26:51 +02006732 if (!hdr) {
6733 kfree_skb(skb);
6734 return NULL;
6735 }
6736
David S. Miller9360ffd2012-03-29 04:41:26 -04006737 if (nla_put_u32(skb, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
6738 goto nla_put_failure;
Johannes Bergaff89a92009-07-01 21:26:51 +02006739 data = nla_nest_start(skb, NL80211_ATTR_TESTDATA);
6740
6741 ((void **)skb->cb)[0] = rdev;
6742 ((void **)skb->cb)[1] = hdr;
6743 ((void **)skb->cb)[2] = data;
6744
6745 return skb;
6746
6747 nla_put_failure:
6748 kfree_skb(skb);
6749 return NULL;
6750}
6751
6752struct sk_buff *cfg80211_testmode_alloc_reply_skb(struct wiphy *wiphy,
6753 int approxlen)
6754{
6755 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6756
6757 if (WARN_ON(!rdev->testmode_info))
6758 return NULL;
6759
6760 return __cfg80211_testmode_alloc_skb(rdev, approxlen,
Eric W. Biederman15e47302012-09-07 20:12:54 +00006761 rdev->testmode_info->snd_portid,
Johannes Bergaff89a92009-07-01 21:26:51 +02006762 rdev->testmode_info->snd_seq,
6763 GFP_KERNEL);
6764}
6765EXPORT_SYMBOL(cfg80211_testmode_alloc_reply_skb);
6766
6767int cfg80211_testmode_reply(struct sk_buff *skb)
6768{
6769 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
6770 void *hdr = ((void **)skb->cb)[1];
6771 struct nlattr *data = ((void **)skb->cb)[2];
6772
6773 if (WARN_ON(!rdev->testmode_info)) {
6774 kfree_skb(skb);
6775 return -EINVAL;
6776 }
6777
6778 nla_nest_end(skb, data);
6779 genlmsg_end(skb, hdr);
6780 return genlmsg_reply(skb, rdev->testmode_info);
6781}
6782EXPORT_SYMBOL(cfg80211_testmode_reply);
6783
6784struct sk_buff *cfg80211_testmode_alloc_event_skb(struct wiphy *wiphy,
6785 int approxlen, gfp_t gfp)
6786{
6787 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
6788
6789 return __cfg80211_testmode_alloc_skb(rdev, approxlen, 0, 0, gfp);
6790}
6791EXPORT_SYMBOL(cfg80211_testmode_alloc_event_skb);
6792
6793void cfg80211_testmode_event(struct sk_buff *skb, gfp_t gfp)
6794{
Michal Kaziora0ec5702013-06-25 09:17:17 +02006795 struct cfg80211_registered_device *rdev = ((void **)skb->cb)[0];
Johannes Bergaff89a92009-07-01 21:26:51 +02006796 void *hdr = ((void **)skb->cb)[1];
6797 struct nlattr *data = ((void **)skb->cb)[2];
6798
6799 nla_nest_end(skb, data);
6800 genlmsg_end(skb, hdr);
Michal Kaziora0ec5702013-06-25 09:17:17 +02006801 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), skb, 0,
6802 nl80211_testmode_mcgrp.id, gfp);
Johannes Bergaff89a92009-07-01 21:26:51 +02006803}
6804EXPORT_SYMBOL(cfg80211_testmode_event);
6805#endif
6806
Samuel Ortizb23aa672009-07-01 21:26:54 +02006807static int nl80211_connect(struct sk_buff *skb, struct genl_info *info)
6808{
Johannes Berg4c476992010-10-04 21:36:35 +02006809 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6810 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02006811 struct cfg80211_connect_params connect;
6812 struct wiphy *wiphy;
Johannes Bergfffd0932009-07-08 14:22:54 +02006813 struct cfg80211_cached_keys *connkeys = NULL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006814 int err;
6815
6816 memset(&connect, 0, sizeof(connect));
6817
6818 if (!is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
6819 return -EINVAL;
6820
6821 if (!info->attrs[NL80211_ATTR_SSID] ||
6822 !nla_len(info->attrs[NL80211_ATTR_SSID]))
6823 return -EINVAL;
6824
6825 if (info->attrs[NL80211_ATTR_AUTH_TYPE]) {
6826 connect.auth_type =
6827 nla_get_u32(info->attrs[NL80211_ATTR_AUTH_TYPE]);
Jouni Malinene39e5b52012-09-30 19:29:39 +03006828 if (!nl80211_valid_auth_type(rdev, connect.auth_type,
6829 NL80211_CMD_CONNECT))
Samuel Ortizb23aa672009-07-01 21:26:54 +02006830 return -EINVAL;
6831 } else
6832 connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC;
6833
6834 connect.privacy = info->attrs[NL80211_ATTR_PRIVACY];
6835
Johannes Bergc0692b82010-08-27 14:26:53 +03006836 err = nl80211_crypto_settings(rdev, info, &connect.crypto,
Johannes Berg3dc27d22009-07-02 21:36:37 +02006837 NL80211_MAX_NR_CIPHER_SUITES);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006838 if (err)
6839 return err;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006840
Johannes Berg074ac8d2010-09-16 14:58:22 +02006841 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006842 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6843 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006844
Johannes Berg79c97e92009-07-07 03:56:12 +02006845 wiphy = &rdev->wiphy;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006846
Bala Shanmugam4486ea92012-03-07 17:27:12 +05306847 connect.bg_scan_period = -1;
6848 if (info->attrs[NL80211_ATTR_BG_SCAN_PERIOD] &&
6849 (wiphy->flags & WIPHY_FLAG_SUPPORTS_FW_ROAM)) {
6850 connect.bg_scan_period =
6851 nla_get_u16(info->attrs[NL80211_ATTR_BG_SCAN_PERIOD]);
6852 }
6853
Samuel Ortizb23aa672009-07-01 21:26:54 +02006854 if (info->attrs[NL80211_ATTR_MAC])
6855 connect.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
6856 connect.ssid = nla_data(info->attrs[NL80211_ATTR_SSID]);
6857 connect.ssid_len = nla_len(info->attrs[NL80211_ATTR_SSID]);
6858
6859 if (info->attrs[NL80211_ATTR_IE]) {
6860 connect.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
6861 connect.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
6862 }
6863
Jouni Malinencee00a92013-01-15 17:15:57 +02006864 if (info->attrs[NL80211_ATTR_USE_MFP]) {
6865 connect.mfp = nla_get_u32(info->attrs[NL80211_ATTR_USE_MFP]);
6866 if (connect.mfp != NL80211_MFP_REQUIRED &&
6867 connect.mfp != NL80211_MFP_NO)
6868 return -EINVAL;
6869 } else {
6870 connect.mfp = NL80211_MFP_NO;
6871 }
6872
Samuel Ortizb23aa672009-07-01 21:26:54 +02006873 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
6874 connect.channel =
6875 ieee80211_get_channel(wiphy,
6876 nla_get_u32(info->attrs[NL80211_ATTR_WIPHY_FREQ]));
6877 if (!connect.channel ||
Johannes Berg4c476992010-10-04 21:36:35 +02006878 connect.channel->flags & IEEE80211_CHAN_DISABLED)
6879 return -EINVAL;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006880 }
6881
Johannes Bergfffd0932009-07-08 14:22:54 +02006882 if (connect.privacy && info->attrs[NL80211_ATTR_KEYS]) {
6883 connkeys = nl80211_parse_connkeys(rdev,
Sujith Manoharande7044e2012-10-18 10:19:28 +05306884 info->attrs[NL80211_ATTR_KEYS], NULL);
Johannes Berg4c476992010-10-04 21:36:35 +02006885 if (IS_ERR(connkeys))
6886 return PTR_ERR(connkeys);
Johannes Bergfffd0932009-07-08 14:22:54 +02006887 }
6888
Ben Greear7e7c8922011-11-18 11:31:59 -08006889 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_HT]))
6890 connect.flags |= ASSOC_REQ_DISABLE_HT;
6891
6892 if (info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK])
6893 memcpy(&connect.ht_capa_mask,
6894 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]),
6895 sizeof(connect.ht_capa_mask));
6896
6897 if (info->attrs[NL80211_ATTR_HT_CAPABILITY]) {
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006898 if (!info->attrs[NL80211_ATTR_HT_CAPABILITY_MASK]) {
6899 kfree(connkeys);
Ben Greear7e7c8922011-11-18 11:31:59 -08006900 return -EINVAL;
Wei Yongjunb4e4f472012-09-02 21:41:04 +08006901 }
Ben Greear7e7c8922011-11-18 11:31:59 -08006902 memcpy(&connect.ht_capa,
6903 nla_data(info->attrs[NL80211_ATTR_HT_CAPABILITY]),
6904 sizeof(connect.ht_capa));
6905 }
6906
Johannes Bergee2aca32013-02-21 17:36:01 +01006907 if (nla_get_flag(info->attrs[NL80211_ATTR_DISABLE_VHT]))
6908 connect.flags |= ASSOC_REQ_DISABLE_VHT;
6909
6910 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK])
6911 memcpy(&connect.vht_capa_mask,
6912 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]),
6913 sizeof(connect.vht_capa_mask));
6914
6915 if (info->attrs[NL80211_ATTR_VHT_CAPABILITY]) {
6916 if (!info->attrs[NL80211_ATTR_VHT_CAPABILITY_MASK]) {
6917 kfree(connkeys);
6918 return -EINVAL;
6919 }
6920 memcpy(&connect.vht_capa,
6921 nla_data(info->attrs[NL80211_ATTR_VHT_CAPABILITY]),
6922 sizeof(connect.vht_capa));
6923 }
6924
Johannes Berg83739b02013-05-15 17:44:01 +02006925 wdev_lock(dev->ieee80211_ptr);
6926 err = cfg80211_connect(rdev, dev, &connect, connkeys, NULL);
6927 wdev_unlock(dev->ieee80211_ptr);
Johannes Bergfffd0932009-07-08 14:22:54 +02006928 if (err)
6929 kfree(connkeys);
Samuel Ortizb23aa672009-07-01 21:26:54 +02006930 return err;
6931}
6932
6933static int nl80211_disconnect(struct sk_buff *skb, struct genl_info *info)
6934{
Johannes Berg4c476992010-10-04 21:36:35 +02006935 struct cfg80211_registered_device *rdev = info->user_ptr[0];
6936 struct net_device *dev = info->user_ptr[1];
Samuel Ortizb23aa672009-07-01 21:26:54 +02006937 u16 reason;
Johannes Berg83739b02013-05-15 17:44:01 +02006938 int ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006939
6940 if (!info->attrs[NL80211_ATTR_REASON_CODE])
6941 reason = WLAN_REASON_DEAUTH_LEAVING;
6942 else
6943 reason = nla_get_u16(info->attrs[NL80211_ATTR_REASON_CODE]);
6944
6945 if (reason == 0)
6946 return -EINVAL;
6947
Johannes Berg074ac8d2010-09-16 14:58:22 +02006948 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02006949 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
6950 return -EOPNOTSUPP;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006951
Johannes Berg83739b02013-05-15 17:44:01 +02006952 wdev_lock(dev->ieee80211_ptr);
6953 ret = cfg80211_disconnect(rdev, dev, reason, true);
6954 wdev_unlock(dev->ieee80211_ptr);
6955 return ret;
Samuel Ortizb23aa672009-07-01 21:26:54 +02006956}
6957
Johannes Berg463d0182009-07-14 00:33:35 +02006958static int nl80211_wiphy_netns(struct sk_buff *skb, struct genl_info *info)
6959{
Johannes Berg4c476992010-10-04 21:36:35 +02006960 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg463d0182009-07-14 00:33:35 +02006961 struct net *net;
6962 int err;
6963 u32 pid;
6964
6965 if (!info->attrs[NL80211_ATTR_PID])
6966 return -EINVAL;
6967
6968 pid = nla_get_u32(info->attrs[NL80211_ATTR_PID]);
6969
Johannes Berg463d0182009-07-14 00:33:35 +02006970 net = get_net_ns_by_pid(pid);
Johannes Berg4c476992010-10-04 21:36:35 +02006971 if (IS_ERR(net))
6972 return PTR_ERR(net);
Johannes Berg463d0182009-07-14 00:33:35 +02006973
6974 err = 0;
6975
6976 /* check if anything to do */
Johannes Berg4c476992010-10-04 21:36:35 +02006977 if (!net_eq(wiphy_net(&rdev->wiphy), net))
6978 err = cfg80211_switch_netns(rdev, net);
Johannes Berg463d0182009-07-14 00:33:35 +02006979
Johannes Berg463d0182009-07-14 00:33:35 +02006980 put_net(net);
Johannes Berg463d0182009-07-14 00:33:35 +02006981 return err;
6982}
6983
Samuel Ortiz67fbb162009-11-24 23:59:15 +01006984static int nl80211_setdel_pmksa(struct sk_buff *skb, struct genl_info *info)
6985{
Johannes Berg4c476992010-10-04 21:36:35 +02006986 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01006987 int (*rdev_ops)(struct wiphy *wiphy, struct net_device *dev,
6988 struct cfg80211_pmksa *pmksa) = NULL;
Johannes Berg4c476992010-10-04 21:36:35 +02006989 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01006990 struct cfg80211_pmksa pmksa;
6991
6992 memset(&pmksa, 0, sizeof(struct cfg80211_pmksa));
6993
6994 if (!info->attrs[NL80211_ATTR_MAC])
6995 return -EINVAL;
6996
6997 if (!info->attrs[NL80211_ATTR_PMKID])
6998 return -EINVAL;
6999
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007000 pmksa.pmkid = nla_data(info->attrs[NL80211_ATTR_PMKID]);
7001 pmksa.bssid = nla_data(info->attrs[NL80211_ATTR_MAC]);
7002
Johannes Berg074ac8d2010-09-16 14:58:22 +02007003 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007004 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7005 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007006
7007 switch (info->genlhdr->cmd) {
7008 case NL80211_CMD_SET_PMKSA:
7009 rdev_ops = rdev->ops->set_pmksa;
7010 break;
7011 case NL80211_CMD_DEL_PMKSA:
7012 rdev_ops = rdev->ops->del_pmksa;
7013 break;
7014 default:
7015 WARN_ON(1);
7016 break;
7017 }
7018
Johannes Berg4c476992010-10-04 21:36:35 +02007019 if (!rdev_ops)
7020 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007021
Johannes Berg4c476992010-10-04 21:36:35 +02007022 return rdev_ops(&rdev->wiphy, dev, &pmksa);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007023}
7024
7025static int nl80211_flush_pmksa(struct sk_buff *skb, struct genl_info *info)
7026{
Johannes Berg4c476992010-10-04 21:36:35 +02007027 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7028 struct net_device *dev = info->user_ptr[1];
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007029
Johannes Berg074ac8d2010-09-16 14:58:22 +02007030 if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007031 dev->ieee80211_ptr->iftype != NL80211_IFTYPE_P2P_CLIENT)
7032 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007033
Johannes Berg4c476992010-10-04 21:36:35 +02007034 if (!rdev->ops->flush_pmksa)
7035 return -EOPNOTSUPP;
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007036
Hila Gonene35e4d22012-06-27 17:19:42 +03007037 return rdev_flush_pmksa(rdev, dev);
Samuel Ortiz67fbb162009-11-24 23:59:15 +01007038}
7039
Arik Nemtsov109086c2011-09-28 14:12:50 +03007040static int nl80211_tdls_mgmt(struct sk_buff *skb, struct genl_info *info)
7041{
7042 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7043 struct net_device *dev = info->user_ptr[1];
7044 u8 action_code, dialog_token;
7045 u16 status_code;
7046 u8 *peer;
7047
7048 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7049 !rdev->ops->tdls_mgmt)
7050 return -EOPNOTSUPP;
7051
7052 if (!info->attrs[NL80211_ATTR_TDLS_ACTION] ||
7053 !info->attrs[NL80211_ATTR_STATUS_CODE] ||
7054 !info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN] ||
7055 !info->attrs[NL80211_ATTR_IE] ||
7056 !info->attrs[NL80211_ATTR_MAC])
7057 return -EINVAL;
7058
7059 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7060 action_code = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_ACTION]);
7061 status_code = nla_get_u16(info->attrs[NL80211_ATTR_STATUS_CODE]);
7062 dialog_token = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_DIALOG_TOKEN]);
7063
Hila Gonene35e4d22012-06-27 17:19:42 +03007064 return rdev_tdls_mgmt(rdev, dev, peer, action_code,
7065 dialog_token, status_code,
7066 nla_data(info->attrs[NL80211_ATTR_IE]),
7067 nla_len(info->attrs[NL80211_ATTR_IE]));
Arik Nemtsov109086c2011-09-28 14:12:50 +03007068}
7069
7070static int nl80211_tdls_oper(struct sk_buff *skb, struct genl_info *info)
7071{
7072 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7073 struct net_device *dev = info->user_ptr[1];
7074 enum nl80211_tdls_operation operation;
7075 u8 *peer;
7076
7077 if (!(rdev->wiphy.flags & WIPHY_FLAG_SUPPORTS_TDLS) ||
7078 !rdev->ops->tdls_oper)
7079 return -EOPNOTSUPP;
7080
7081 if (!info->attrs[NL80211_ATTR_TDLS_OPERATION] ||
7082 !info->attrs[NL80211_ATTR_MAC])
7083 return -EINVAL;
7084
7085 operation = nla_get_u8(info->attrs[NL80211_ATTR_TDLS_OPERATION]);
7086 peer = nla_data(info->attrs[NL80211_ATTR_MAC]);
7087
Hila Gonene35e4d22012-06-27 17:19:42 +03007088 return rdev_tdls_oper(rdev, dev, peer, operation);
Arik Nemtsov109086c2011-09-28 14:12:50 +03007089}
7090
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007091static int nl80211_remain_on_channel(struct sk_buff *skb,
7092 struct genl_info *info)
7093{
Johannes Berg4c476992010-10-04 21:36:35 +02007094 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007095 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007096 struct cfg80211_chan_def chandef;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007097 struct sk_buff *msg;
7098 void *hdr;
7099 u64 cookie;
Johannes Berg683b6d32012-11-08 21:25:48 +01007100 u32 duration;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007101 int err;
7102
7103 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ] ||
7104 !info->attrs[NL80211_ATTR_DURATION])
7105 return -EINVAL;
7106
7107 duration = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
7108
Johannes Berg7c4ef712011-11-18 15:33:48 +01007109 if (!rdev->ops->remain_on_channel ||
7110 !(rdev->wiphy.flags & WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL))
Johannes Berg4c476992010-10-04 21:36:35 +02007111 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007112
Johannes Bergebf348f2012-06-01 12:50:54 +02007113 /*
7114 * We should be on that channel for at least a minimum amount of
7115 * time (10ms) but no longer than the driver supports.
7116 */
7117 if (duration < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7118 duration > rdev->wiphy.max_remain_on_channel_duration)
7119 return -EINVAL;
7120
Johannes Berg683b6d32012-11-08 21:25:48 +01007121 err = nl80211_parse_chandef(rdev, info, &chandef);
7122 if (err)
7123 return err;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007124
7125 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007126 if (!msg)
7127 return -ENOMEM;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007128
Eric W. Biederman15e47302012-09-07 20:12:54 +00007129 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007130 NL80211_CMD_REMAIN_ON_CHANNEL);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007131 if (!hdr) {
7132 err = -ENOBUFS;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007133 goto free_msg;
7134 }
7135
Johannes Berg683b6d32012-11-08 21:25:48 +01007136 err = rdev_remain_on_channel(rdev, wdev, chandef.chan,
7137 duration, &cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007138
7139 if (err)
7140 goto free_msg;
7141
David S. Miller9360ffd2012-03-29 04:41:26 -04007142 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7143 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007144
7145 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007146
7147 return genlmsg_reply(msg, info);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007148
7149 nla_put_failure:
7150 err = -ENOBUFS;
7151 free_msg:
7152 nlmsg_free(msg);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007153 return err;
7154}
7155
7156static int nl80211_cancel_remain_on_channel(struct sk_buff *skb,
7157 struct genl_info *info)
7158{
Johannes Berg4c476992010-10-04 21:36:35 +02007159 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007160 struct wireless_dev *wdev = info->user_ptr[1];
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007161 u64 cookie;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007162
7163 if (!info->attrs[NL80211_ATTR_COOKIE])
7164 return -EINVAL;
7165
Johannes Berg4c476992010-10-04 21:36:35 +02007166 if (!rdev->ops->cancel_remain_on_channel)
7167 return -EOPNOTSUPP;
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007168
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007169 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7170
Hila Gonene35e4d22012-06-27 17:19:42 +03007171 return rdev_cancel_remain_on_channel(rdev, wdev, cookie);
Jouni Malinen9588bbd2009-12-23 13:15:41 +01007172}
7173
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007174static u32 rateset_to_mask(struct ieee80211_supported_band *sband,
7175 u8 *rates, u8 rates_len)
7176{
7177 u8 i;
7178 u32 mask = 0;
7179
7180 for (i = 0; i < rates_len; i++) {
7181 int rate = (rates[i] & 0x7f) * 5;
7182 int ridx;
7183 for (ridx = 0; ridx < sband->n_bitrates; ridx++) {
7184 struct ieee80211_rate *srate =
7185 &sband->bitrates[ridx];
7186 if (rate == srate->bitrate) {
7187 mask |= 1 << ridx;
7188 break;
7189 }
7190 }
7191 if (ridx == sband->n_bitrates)
7192 return 0; /* rate not found */
7193 }
7194
7195 return mask;
7196}
7197
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007198static bool ht_rateset_to_mask(struct ieee80211_supported_band *sband,
7199 u8 *rates, u8 rates_len,
7200 u8 mcs[IEEE80211_HT_MCS_MASK_LEN])
7201{
7202 u8 i;
7203
7204 memset(mcs, 0, IEEE80211_HT_MCS_MASK_LEN);
7205
7206 for (i = 0; i < rates_len; i++) {
7207 int ridx, rbit;
7208
7209 ridx = rates[i] / 8;
7210 rbit = BIT(rates[i] % 8);
7211
7212 /* check validity */
Dan Carpenter910570b52012-02-01 10:42:11 +03007213 if ((ridx < 0) || (ridx >= IEEE80211_HT_MCS_MASK_LEN))
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007214 return false;
7215
7216 /* check availability */
7217 if (sband->ht_cap.mcs.rx_mask[ridx] & rbit)
7218 mcs[ridx] |= rbit;
7219 else
7220 return false;
7221 }
7222
7223 return true;
7224}
7225
Alexey Dobriyanb54452b2010-02-18 08:14:31 +00007226static const struct nla_policy nl80211_txattr_policy[NL80211_TXRATE_MAX + 1] = {
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007227 [NL80211_TXRATE_LEGACY] = { .type = NLA_BINARY,
7228 .len = NL80211_MAX_SUPP_RATES },
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007229 [NL80211_TXRATE_MCS] = { .type = NLA_BINARY,
7230 .len = NL80211_MAX_SUPP_HT_RATES },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007231};
7232
7233static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
7234 struct genl_info *info)
7235{
7236 struct nlattr *tb[NL80211_TXRATE_MAX + 1];
Johannes Berg4c476992010-10-04 21:36:35 +02007237 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007238 struct cfg80211_bitrate_mask mask;
Johannes Berg4c476992010-10-04 21:36:35 +02007239 int rem, i;
7240 struct net_device *dev = info->user_ptr[1];
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007241 struct nlattr *tx_rates;
7242 struct ieee80211_supported_band *sband;
7243
7244 if (info->attrs[NL80211_ATTR_TX_RATES] == NULL)
7245 return -EINVAL;
7246
Johannes Berg4c476992010-10-04 21:36:35 +02007247 if (!rdev->ops->set_bitrate_mask)
7248 return -EOPNOTSUPP;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007249
7250 memset(&mask, 0, sizeof(mask));
7251 /* Default to all rates enabled */
7252 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
7253 sband = rdev->wiphy.bands[i];
7254 mask.control[i].legacy =
7255 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007256 if (sband)
7257 memcpy(mask.control[i].mcs,
7258 sband->ht_cap.mcs.rx_mask,
7259 sizeof(mask.control[i].mcs));
7260 else
7261 memset(mask.control[i].mcs, 0,
7262 sizeof(mask.control[i].mcs));
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007263 }
7264
7265 /*
7266 * The nested attribute uses enum nl80211_band as the index. This maps
7267 * directly to the enum ieee80211_band values used in cfg80211.
7268 */
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007269 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES > IEEE80211_HT_MCS_MASK_LEN * 8);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007270 nla_for_each_nested(tx_rates, info->attrs[NL80211_ATTR_TX_RATES], rem)
7271 {
7272 enum ieee80211_band band = nla_type(tx_rates);
Johannes Berg4c476992010-10-04 21:36:35 +02007273 if (band < 0 || band >= IEEE80211_NUM_BANDS)
7274 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007275 sband = rdev->wiphy.bands[band];
Johannes Berg4c476992010-10-04 21:36:35 +02007276 if (sband == NULL)
7277 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007278 nla_parse(tb, NL80211_TXRATE_MAX, nla_data(tx_rates),
7279 nla_len(tx_rates), nl80211_txattr_policy);
7280 if (tb[NL80211_TXRATE_LEGACY]) {
7281 mask.control[band].legacy = rateset_to_mask(
7282 sband,
7283 nla_data(tb[NL80211_TXRATE_LEGACY]),
7284 nla_len(tb[NL80211_TXRATE_LEGACY]));
Bala Shanmugam218d2e22012-04-20 19:12:58 +05307285 if ((mask.control[band].legacy == 0) &&
7286 nla_len(tb[NL80211_TXRATE_LEGACY]))
7287 return -EINVAL;
Simon Wunderlich24db78c2012-01-28 17:25:32 +01007288 }
7289 if (tb[NL80211_TXRATE_MCS]) {
7290 if (!ht_rateset_to_mask(
7291 sband,
7292 nla_data(tb[NL80211_TXRATE_MCS]),
7293 nla_len(tb[NL80211_TXRATE_MCS]),
7294 mask.control[band].mcs))
7295 return -EINVAL;
7296 }
7297
7298 if (mask.control[band].legacy == 0) {
7299 /* don't allow empty legacy rates if HT
7300 * is not even supported. */
7301 if (!rdev->wiphy.bands[band]->ht_cap.ht_supported)
7302 return -EINVAL;
7303
7304 for (i = 0; i < IEEE80211_HT_MCS_MASK_LEN; i++)
7305 if (mask.control[band].mcs[i])
7306 break;
7307
7308 /* legacy and mcs rates may not be both empty */
7309 if (i == IEEE80211_HT_MCS_MASK_LEN)
Johannes Berg4c476992010-10-04 21:36:35 +02007310 return -EINVAL;
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007311 }
7312 }
7313
Hila Gonene35e4d22012-06-27 17:19:42 +03007314 return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
Jouni Malinen13ae75b2009-12-29 12:59:45 +02007315}
7316
Johannes Berg2e161f72010-08-12 15:38:38 +02007317static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007318{
Johannes Berg4c476992010-10-04 21:36:35 +02007319 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007320 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg2e161f72010-08-12 15:38:38 +02007321 u16 frame_type = IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_ACTION;
Jouni Malinen026331c2010-02-15 12:53:10 +02007322
7323 if (!info->attrs[NL80211_ATTR_FRAME_MATCH])
7324 return -EINVAL;
7325
Johannes Berg2e161f72010-08-12 15:38:38 +02007326 if (info->attrs[NL80211_ATTR_FRAME_TYPE])
7327 frame_type = nla_get_u16(info->attrs[NL80211_ATTR_FRAME_TYPE]);
Jouni Malinen026331c2010-02-15 12:53:10 +02007328
Johannes Berg71bbc992012-06-15 15:30:18 +02007329 switch (wdev->iftype) {
7330 case NL80211_IFTYPE_STATION:
7331 case NL80211_IFTYPE_ADHOC:
7332 case NL80211_IFTYPE_P2P_CLIENT:
7333 case NL80211_IFTYPE_AP:
7334 case NL80211_IFTYPE_AP_VLAN:
7335 case NL80211_IFTYPE_MESH_POINT:
7336 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007337 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007338 break;
7339 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007340 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007341 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007342
7343 /* not much point in registering if we can't reply */
Johannes Berg4c476992010-10-04 21:36:35 +02007344 if (!rdev->ops->mgmt_tx)
7345 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007346
Eric W. Biederman15e47302012-09-07 20:12:54 +00007347 return cfg80211_mlme_register_mgmt(wdev, info->snd_portid, frame_type,
Jouni Malinen026331c2010-02-15 12:53:10 +02007348 nla_data(info->attrs[NL80211_ATTR_FRAME_MATCH]),
7349 nla_len(info->attrs[NL80211_ATTR_FRAME_MATCH]));
Jouni Malinen026331c2010-02-15 12:53:10 +02007350}
7351
Johannes Berg2e161f72010-08-12 15:38:38 +02007352static int nl80211_tx_mgmt(struct sk_buff *skb, struct genl_info *info)
Jouni Malinen026331c2010-02-15 12:53:10 +02007353{
Johannes Berg4c476992010-10-04 21:36:35 +02007354 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007355 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Berg683b6d32012-11-08 21:25:48 +01007356 struct cfg80211_chan_def chandef;
Jouni Malinen026331c2010-02-15 12:53:10 +02007357 int err;
Johannes Bergd64d3732011-11-10 09:44:46 +01007358 void *hdr = NULL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007359 u64 cookie;
Johannes Berge247bd902011-11-04 11:18:21 +01007360 struct sk_buff *msg = NULL;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007361 unsigned int wait = 0;
Johannes Berge247bd902011-11-04 11:18:21 +01007362 bool offchan, no_cck, dont_wait_for_ack;
7363
7364 dont_wait_for_ack = info->attrs[NL80211_ATTR_DONT_WAIT_FOR_ACK];
Jouni Malinen026331c2010-02-15 12:53:10 +02007365
Johannes Berg683b6d32012-11-08 21:25:48 +01007366 if (!info->attrs[NL80211_ATTR_FRAME])
Jouni Malinen026331c2010-02-15 12:53:10 +02007367 return -EINVAL;
7368
Johannes Berg4c476992010-10-04 21:36:35 +02007369 if (!rdev->ops->mgmt_tx)
7370 return -EOPNOTSUPP;
Jouni Malinen026331c2010-02-15 12:53:10 +02007371
Johannes Berg71bbc992012-06-15 15:30:18 +02007372 switch (wdev->iftype) {
Antonio Quartulliea141b752013-06-11 14:20:03 +02007373 case NL80211_IFTYPE_P2P_DEVICE:
7374 if (!info->attrs[NL80211_ATTR_WIPHY_FREQ])
7375 return -EINVAL;
Johannes Berg71bbc992012-06-15 15:30:18 +02007376 case NL80211_IFTYPE_STATION:
7377 case NL80211_IFTYPE_ADHOC:
7378 case NL80211_IFTYPE_P2P_CLIENT:
7379 case NL80211_IFTYPE_AP:
7380 case NL80211_IFTYPE_AP_VLAN:
7381 case NL80211_IFTYPE_MESH_POINT:
7382 case NL80211_IFTYPE_P2P_GO:
7383 break;
7384 default:
Johannes Berg4c476992010-10-04 21:36:35 +02007385 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007386 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007387
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007388 if (info->attrs[NL80211_ATTR_DURATION]) {
Johannes Berg7c4ef712011-11-18 15:33:48 +01007389 if (!(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007390 return -EINVAL;
7391 wait = nla_get_u32(info->attrs[NL80211_ATTR_DURATION]);
Johannes Bergebf348f2012-06-01 12:50:54 +02007392
7393 /*
7394 * We should wait on the channel for at least a minimum amount
7395 * of time (10ms) but no longer than the driver supports.
7396 */
7397 if (wait < NL80211_MIN_REMAIN_ON_CHANNEL_TIME ||
7398 wait > rdev->wiphy.max_remain_on_channel_duration)
7399 return -EINVAL;
7400
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007401 }
7402
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007403 offchan = info->attrs[NL80211_ATTR_OFFCHANNEL_TX_OK];
7404
Johannes Berg7c4ef712011-11-18 15:33:48 +01007405 if (offchan && !(rdev->wiphy.flags & WIPHY_FLAG_OFFCHAN_TX))
7406 return -EINVAL;
7407
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05307408 no_cck = nla_get_flag(info->attrs[NL80211_ATTR_TX_NO_CCK_RATE]);
7409
Antonio Quartulliea141b752013-06-11 14:20:03 +02007410 /* get the channel if any has been specified, otherwise pass NULL to
7411 * the driver. The latter will use the current one
7412 */
7413 chandef.chan = NULL;
7414 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
7415 err = nl80211_parse_chandef(rdev, info, &chandef);
7416 if (err)
7417 return err;
7418 }
7419
7420 if (!chandef.chan && offchan)
7421 return -EINVAL;
Jouni Malinen026331c2010-02-15 12:53:10 +02007422
Johannes Berge247bd902011-11-04 11:18:21 +01007423 if (!dont_wait_for_ack) {
7424 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
7425 if (!msg)
7426 return -ENOMEM;
Jouni Malinen026331c2010-02-15 12:53:10 +02007427
Eric W. Biederman15e47302012-09-07 20:12:54 +00007428 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berge247bd902011-11-04 11:18:21 +01007429 NL80211_CMD_FRAME);
Dan Carpentercb35fba2013-08-14 14:50:01 +03007430 if (!hdr) {
7431 err = -ENOBUFS;
Johannes Berge247bd902011-11-04 11:18:21 +01007432 goto free_msg;
7433 }
Jouni Malinen026331c2010-02-15 12:53:10 +02007434 }
Johannes Berge247bd902011-11-04 11:18:21 +01007435
Johannes Berg683b6d32012-11-08 21:25:48 +01007436 err = cfg80211_mlme_mgmt_tx(rdev, wdev, chandef.chan, offchan, wait,
Johannes Berg2e161f72010-08-12 15:38:38 +02007437 nla_data(info->attrs[NL80211_ATTR_FRAME]),
7438 nla_len(info->attrs[NL80211_ATTR_FRAME]),
Johannes Berge247bd902011-11-04 11:18:21 +01007439 no_cck, dont_wait_for_ack, &cookie);
Jouni Malinen026331c2010-02-15 12:53:10 +02007440 if (err)
7441 goto free_msg;
7442
Johannes Berge247bd902011-11-04 11:18:21 +01007443 if (msg) {
David S. Miller9360ffd2012-03-29 04:41:26 -04007444 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
7445 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +02007446
Johannes Berge247bd902011-11-04 11:18:21 +01007447 genlmsg_end(msg, hdr);
7448 return genlmsg_reply(msg, info);
7449 }
7450
7451 return 0;
Jouni Malinen026331c2010-02-15 12:53:10 +02007452
7453 nla_put_failure:
7454 err = -ENOBUFS;
7455 free_msg:
7456 nlmsg_free(msg);
Jouni Malinen026331c2010-02-15 12:53:10 +02007457 return err;
7458}
7459
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007460static int nl80211_tx_mgmt_cancel_wait(struct sk_buff *skb, struct genl_info *info)
7461{
7462 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg71bbc992012-06-15 15:30:18 +02007463 struct wireless_dev *wdev = info->user_ptr[1];
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007464 u64 cookie;
7465
7466 if (!info->attrs[NL80211_ATTR_COOKIE])
7467 return -EINVAL;
7468
7469 if (!rdev->ops->mgmt_tx_cancel_wait)
7470 return -EOPNOTSUPP;
7471
Johannes Berg71bbc992012-06-15 15:30:18 +02007472 switch (wdev->iftype) {
7473 case NL80211_IFTYPE_STATION:
7474 case NL80211_IFTYPE_ADHOC:
7475 case NL80211_IFTYPE_P2P_CLIENT:
7476 case NL80211_IFTYPE_AP:
7477 case NL80211_IFTYPE_AP_VLAN:
7478 case NL80211_IFTYPE_P2P_GO:
Johannes Berg98104fde2012-06-16 00:19:54 +02007479 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg71bbc992012-06-15 15:30:18 +02007480 break;
7481 default:
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007482 return -EOPNOTSUPP;
Johannes Berg71bbc992012-06-15 15:30:18 +02007483 }
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007484
7485 cookie = nla_get_u64(info->attrs[NL80211_ATTR_COOKIE]);
7486
Hila Gonene35e4d22012-06-27 17:19:42 +03007487 return rdev_mgmt_tx_cancel_wait(rdev, wdev, cookie);
Johannes Bergf7ca38d2010-11-25 10:02:29 +01007488}
7489
Kalle Valoffb9eb32010-02-17 17:58:10 +02007490static int nl80211_set_power_save(struct sk_buff *skb, struct genl_info *info)
7491{
Johannes Berg4c476992010-10-04 21:36:35 +02007492 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007493 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007494 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007495 u8 ps_state;
7496 bool state;
7497 int err;
7498
Johannes Berg4c476992010-10-04 21:36:35 +02007499 if (!info->attrs[NL80211_ATTR_PS_STATE])
7500 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007501
7502 ps_state = nla_get_u32(info->attrs[NL80211_ATTR_PS_STATE]);
7503
Johannes Berg4c476992010-10-04 21:36:35 +02007504 if (ps_state != NL80211_PS_DISABLED && ps_state != NL80211_PS_ENABLED)
7505 return -EINVAL;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007506
7507 wdev = dev->ieee80211_ptr;
7508
Johannes Berg4c476992010-10-04 21:36:35 +02007509 if (!rdev->ops->set_power_mgmt)
7510 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007511
7512 state = (ps_state == NL80211_PS_ENABLED) ? true : false;
7513
7514 if (state == wdev->ps)
Johannes Berg4c476992010-10-04 21:36:35 +02007515 return 0;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007516
Hila Gonene35e4d22012-06-27 17:19:42 +03007517 err = rdev_set_power_mgmt(rdev, dev, state, wdev->ps_timeout);
Johannes Berg4c476992010-10-04 21:36:35 +02007518 if (!err)
7519 wdev->ps = state;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007520 return err;
7521}
7522
7523static int nl80211_get_power_save(struct sk_buff *skb, struct genl_info *info)
7524{
Johannes Berg4c476992010-10-04 21:36:35 +02007525 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007526 enum nl80211_ps_state ps_state;
7527 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02007528 struct net_device *dev = info->user_ptr[1];
Kalle Valoffb9eb32010-02-17 17:58:10 +02007529 struct sk_buff *msg;
7530 void *hdr;
7531 int err;
7532
Kalle Valoffb9eb32010-02-17 17:58:10 +02007533 wdev = dev->ieee80211_ptr;
7534
Johannes Berg4c476992010-10-04 21:36:35 +02007535 if (!rdev->ops->set_power_mgmt)
7536 return -EOPNOTSUPP;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007537
7538 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg4c476992010-10-04 21:36:35 +02007539 if (!msg)
7540 return -ENOMEM;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007541
Eric W. Biederman15e47302012-09-07 20:12:54 +00007542 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Kalle Valoffb9eb32010-02-17 17:58:10 +02007543 NL80211_CMD_GET_POWER_SAVE);
7544 if (!hdr) {
Johannes Berg4c476992010-10-04 21:36:35 +02007545 err = -ENOBUFS;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007546 goto free_msg;
7547 }
7548
7549 if (wdev->ps)
7550 ps_state = NL80211_PS_ENABLED;
7551 else
7552 ps_state = NL80211_PS_DISABLED;
7553
David S. Miller9360ffd2012-03-29 04:41:26 -04007554 if (nla_put_u32(msg, NL80211_ATTR_PS_STATE, ps_state))
7555 goto nla_put_failure;
Kalle Valoffb9eb32010-02-17 17:58:10 +02007556
7557 genlmsg_end(msg, hdr);
Johannes Berg4c476992010-10-04 21:36:35 +02007558 return genlmsg_reply(msg, info);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007559
Johannes Berg4c476992010-10-04 21:36:35 +02007560 nla_put_failure:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007561 err = -ENOBUFS;
Johannes Berg4c476992010-10-04 21:36:35 +02007562 free_msg:
Kalle Valoffb9eb32010-02-17 17:58:10 +02007563 nlmsg_free(msg);
Kalle Valoffb9eb32010-02-17 17:58:10 +02007564 return err;
7565}
7566
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007567static struct nla_policy
7568nl80211_attr_cqm_policy[NL80211_ATTR_CQM_MAX + 1] __read_mostly = {
7569 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
7570 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U32 },
7571 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
Thomas Pedersen84f10702012-07-12 16:17:33 -07007572 [NL80211_ATTR_CQM_TXE_RATE] = { .type = NLA_U32 },
7573 [NL80211_ATTR_CQM_TXE_PKTS] = { .type = NLA_U32 },
7574 [NL80211_ATTR_CQM_TXE_INTVL] = { .type = NLA_U32 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007575};
7576
Thomas Pedersen84f10702012-07-12 16:17:33 -07007577static int nl80211_set_cqm_txe(struct genl_info *info,
Johannes Bergd9d8b012012-11-26 12:51:52 +01007578 u32 rate, u32 pkts, u32 intvl)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007579{
7580 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Thomas Pedersen84f10702012-07-12 16:17:33 -07007581 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007582 struct wireless_dev *wdev = dev->ieee80211_ptr;
Thomas Pedersen84f10702012-07-12 16:17:33 -07007583
Johannes Bergd9d8b012012-11-26 12:51:52 +01007584 if (rate > 100 || intvl > NL80211_CQM_TXE_MAX_INTVL)
Thomas Pedersen84f10702012-07-12 16:17:33 -07007585 return -EINVAL;
7586
Thomas Pedersen84f10702012-07-12 16:17:33 -07007587 if (!rdev->ops->set_cqm_txe_config)
7588 return -EOPNOTSUPP;
7589
7590 if (wdev->iftype != NL80211_IFTYPE_STATION &&
7591 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7592 return -EOPNOTSUPP;
7593
Hila Gonene35e4d22012-06-27 17:19:42 +03007594 return rdev_set_cqm_txe_config(rdev, dev, rate, pkts, intvl);
Thomas Pedersen84f10702012-07-12 16:17:33 -07007595}
7596
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007597static int nl80211_set_cqm_rssi(struct genl_info *info,
7598 s32 threshold, u32 hysteresis)
7599{
Johannes Berg4c476992010-10-04 21:36:35 +02007600 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Johannes Berg4c476992010-10-04 21:36:35 +02007601 struct net_device *dev = info->user_ptr[1];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007602 struct wireless_dev *wdev = dev->ieee80211_ptr;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007603
7604 if (threshold > 0)
7605 return -EINVAL;
7606
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007607 /* disabling - hysteresis should also be zero then */
7608 if (threshold == 0)
7609 hysteresis = 0;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007610
Johannes Berg4c476992010-10-04 21:36:35 +02007611 if (!rdev->ops->set_cqm_rssi_config)
7612 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007613
Johannes Berg074ac8d2010-09-16 14:58:22 +02007614 if (wdev->iftype != NL80211_IFTYPE_STATION &&
Johannes Berg4c476992010-10-04 21:36:35 +02007615 wdev->iftype != NL80211_IFTYPE_P2P_CLIENT)
7616 return -EOPNOTSUPP;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007617
Hila Gonene35e4d22012-06-27 17:19:42 +03007618 return rdev_set_cqm_rssi_config(rdev, dev, threshold, hysteresis);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007619}
7620
7621static int nl80211_set_cqm(struct sk_buff *skb, struct genl_info *info)
7622{
7623 struct nlattr *attrs[NL80211_ATTR_CQM_MAX + 1];
7624 struct nlattr *cqm;
7625 int err;
7626
7627 cqm = info->attrs[NL80211_ATTR_CQM];
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007628 if (!cqm)
7629 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007630
7631 err = nla_parse_nested(attrs, NL80211_ATTR_CQM_MAX, cqm,
7632 nl80211_attr_cqm_policy);
7633 if (err)
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007634 return err;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007635
7636 if (attrs[NL80211_ATTR_CQM_RSSI_THOLD] &&
7637 attrs[NL80211_ATTR_CQM_RSSI_HYST]) {
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007638 s32 threshold = nla_get_s32(attrs[NL80211_ATTR_CQM_RSSI_THOLD]);
7639 u32 hysteresis = nla_get_u32(attrs[NL80211_ATTR_CQM_RSSI_HYST]);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007640
Johannes Berg1da5fcc2013-08-06 14:10:48 +02007641 return nl80211_set_cqm_rssi(info, threshold, hysteresis);
7642 }
7643
7644 if (attrs[NL80211_ATTR_CQM_TXE_RATE] &&
7645 attrs[NL80211_ATTR_CQM_TXE_PKTS] &&
7646 attrs[NL80211_ATTR_CQM_TXE_INTVL]) {
7647 u32 rate = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_RATE]);
7648 u32 pkts = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_PKTS]);
7649 u32 intvl = nla_get_u32(attrs[NL80211_ATTR_CQM_TXE_INTVL]);
7650
7651 return nl80211_set_cqm_txe(info, rate, pkts, intvl);
7652 }
7653
7654 return -EINVAL;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02007655}
7656
Johannes Berg29cbe682010-12-03 09:20:44 +01007657static int nl80211_join_mesh(struct sk_buff *skb, struct genl_info *info)
7658{
7659 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7660 struct net_device *dev = info->user_ptr[1];
7661 struct mesh_config cfg;
Javier Cardonac80d5452010-12-16 17:37:49 -08007662 struct mesh_setup setup;
Johannes Berg29cbe682010-12-03 09:20:44 +01007663 int err;
7664
7665 /* start with default */
7666 memcpy(&cfg, &default_mesh_config, sizeof(cfg));
Javier Cardonac80d5452010-12-16 17:37:49 -08007667 memcpy(&setup, &default_mesh_setup, sizeof(setup));
Johannes Berg29cbe682010-12-03 09:20:44 +01007668
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007669 if (info->attrs[NL80211_ATTR_MESH_CONFIG]) {
Johannes Berg29cbe682010-12-03 09:20:44 +01007670 /* and parse parameters if given */
Javier Cardona24bdd9f2010-12-16 17:37:48 -08007671 err = nl80211_parse_mesh_config(info, &cfg, NULL);
Johannes Berg29cbe682010-12-03 09:20:44 +01007672 if (err)
7673 return err;
7674 }
7675
7676 if (!info->attrs[NL80211_ATTR_MESH_ID] ||
7677 !nla_len(info->attrs[NL80211_ATTR_MESH_ID]))
7678 return -EINVAL;
7679
Javier Cardonac80d5452010-12-16 17:37:49 -08007680 setup.mesh_id = nla_data(info->attrs[NL80211_ATTR_MESH_ID]);
7681 setup.mesh_id_len = nla_len(info->attrs[NL80211_ATTR_MESH_ID]);
7682
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08007683 if (info->attrs[NL80211_ATTR_MCAST_RATE] &&
7684 !nl80211_parse_mcast_rate(rdev, setup.mcast_rate,
7685 nla_get_u32(info->attrs[NL80211_ATTR_MCAST_RATE])))
7686 return -EINVAL;
7687
Marco Porsch9bdbf042013-01-07 16:04:51 +01007688 if (info->attrs[NL80211_ATTR_BEACON_INTERVAL]) {
7689 setup.beacon_interval =
7690 nla_get_u32(info->attrs[NL80211_ATTR_BEACON_INTERVAL]);
7691 if (setup.beacon_interval < 10 ||
7692 setup.beacon_interval > 10000)
7693 return -EINVAL;
7694 }
7695
7696 if (info->attrs[NL80211_ATTR_DTIM_PERIOD]) {
7697 setup.dtim_period =
7698 nla_get_u32(info->attrs[NL80211_ATTR_DTIM_PERIOD]);
7699 if (setup.dtim_period < 1 || setup.dtim_period > 100)
7700 return -EINVAL;
7701 }
7702
Javier Cardonac80d5452010-12-16 17:37:49 -08007703 if (info->attrs[NL80211_ATTR_MESH_SETUP]) {
7704 /* parse additional setup parameters if given */
7705 err = nl80211_parse_mesh_setup(info, &setup);
7706 if (err)
7707 return err;
7708 }
7709
Thomas Pedersend37bb182013-03-04 13:06:13 -08007710 if (setup.user_mpm)
7711 cfg.auto_open_plinks = false;
7712
Johannes Bergcc1d2802012-05-16 23:50:20 +02007713 if (info->attrs[NL80211_ATTR_WIPHY_FREQ]) {
Johannes Berg683b6d32012-11-08 21:25:48 +01007714 err = nl80211_parse_chandef(rdev, info, &setup.chandef);
7715 if (err)
7716 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007717 } else {
7718 /* cfg80211_join_mesh() will sort it out */
Johannes Berg683b6d32012-11-08 21:25:48 +01007719 setup.chandef.chan = NULL;
Johannes Bergcc1d2802012-05-16 23:50:20 +02007720 }
7721
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07007722 if (info->attrs[NL80211_ATTR_BSS_BASIC_RATES]) {
7723 u8 *rates = nla_data(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7724 int n_rates =
7725 nla_len(info->attrs[NL80211_ATTR_BSS_BASIC_RATES]);
7726 struct ieee80211_supported_band *sband;
7727
7728 if (!setup.chandef.chan)
7729 return -EINVAL;
7730
7731 sband = rdev->wiphy.bands[setup.chandef.chan->band];
7732
7733 err = ieee80211_get_ratemask(sband, rates, n_rates,
7734 &setup.basic_rates);
7735 if (err)
7736 return err;
7737 }
7738
Javier Cardonac80d5452010-12-16 17:37:49 -08007739 return cfg80211_join_mesh(rdev, dev, &setup, &cfg);
Johannes Berg29cbe682010-12-03 09:20:44 +01007740}
7741
7742static int nl80211_leave_mesh(struct sk_buff *skb, struct genl_info *info)
7743{
7744 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7745 struct net_device *dev = info->user_ptr[1];
7746
7747 return cfg80211_leave_mesh(rdev, dev);
7748}
7749
Johannes Bergdfb89c52012-06-27 09:23:48 +02007750#ifdef CONFIG_PM
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007751static int nl80211_send_wowlan_patterns(struct sk_buff *msg,
7752 struct cfg80211_registered_device *rdev)
7753{
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007754 struct cfg80211_wowlan *wowlan = rdev->wiphy.wowlan_config;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007755 struct nlattr *nl_pats, *nl_pat;
7756 int i, pat_len;
7757
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007758 if (!wowlan->n_patterns)
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007759 return 0;
7760
7761 nl_pats = nla_nest_start(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN);
7762 if (!nl_pats)
7763 return -ENOBUFS;
7764
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007765 for (i = 0; i < wowlan->n_patterns; i++) {
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007766 nl_pat = nla_nest_start(msg, i + 1);
7767 if (!nl_pat)
7768 return -ENOBUFS;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007769 pat_len = wowlan->patterns[i].pattern_len;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007770 if (nla_put(msg, NL80211_PKTPAT_MASK, DIV_ROUND_UP(pat_len, 8),
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007771 wowlan->patterns[i].mask) ||
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07007772 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
7773 wowlan->patterns[i].pattern) ||
7774 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007775 wowlan->patterns[i].pkt_offset))
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007776 return -ENOBUFS;
7777 nla_nest_end(msg, nl_pat);
7778 }
7779 nla_nest_end(msg, nl_pats);
7780
7781 return 0;
7782}
7783
Johannes Berg2a0e0472013-01-23 22:57:40 +01007784static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
7785 struct cfg80211_wowlan_tcp *tcp)
7786{
7787 struct nlattr *nl_tcp;
7788
7789 if (!tcp)
7790 return 0;
7791
7792 nl_tcp = nla_nest_start(msg, NL80211_WOWLAN_TRIG_TCP_CONNECTION);
7793 if (!nl_tcp)
7794 return -ENOBUFS;
7795
7796 if (nla_put_be32(msg, NL80211_WOWLAN_TCP_SRC_IPV4, tcp->src) ||
7797 nla_put_be32(msg, NL80211_WOWLAN_TCP_DST_IPV4, tcp->dst) ||
7798 nla_put(msg, NL80211_WOWLAN_TCP_DST_MAC, ETH_ALEN, tcp->dst_mac) ||
7799 nla_put_u16(msg, NL80211_WOWLAN_TCP_SRC_PORT, tcp->src_port) ||
7800 nla_put_u16(msg, NL80211_WOWLAN_TCP_DST_PORT, tcp->dst_port) ||
7801 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD,
7802 tcp->payload_len, tcp->payload) ||
7803 nla_put_u32(msg, NL80211_WOWLAN_TCP_DATA_INTERVAL,
7804 tcp->data_interval) ||
7805 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_PAYLOAD,
7806 tcp->wake_len, tcp->wake_data) ||
7807 nla_put(msg, NL80211_WOWLAN_TCP_WAKE_MASK,
7808 DIV_ROUND_UP(tcp->wake_len, 8), tcp->wake_mask))
7809 return -ENOBUFS;
7810
7811 if (tcp->payload_seq.len &&
7812 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ,
7813 sizeof(tcp->payload_seq), &tcp->payload_seq))
7814 return -ENOBUFS;
7815
7816 if (tcp->payload_tok.len &&
7817 nla_put(msg, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN,
7818 sizeof(tcp->payload_tok) + tcp->tokens_size,
7819 &tcp->payload_tok))
7820 return -ENOBUFS;
7821
Johannes Berge248ad32013-05-16 10:24:28 +02007822 nla_nest_end(msg, nl_tcp);
7823
Johannes Berg2a0e0472013-01-23 22:57:40 +01007824 return 0;
7825}
7826
Johannes Bergff1b6e62011-05-04 15:37:28 +02007827static int nl80211_get_wowlan(struct sk_buff *skb, struct genl_info *info)
7828{
7829 struct cfg80211_registered_device *rdev = info->user_ptr[0];
7830 struct sk_buff *msg;
7831 void *hdr;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007832 u32 size = NLMSG_DEFAULT_SIZE;
Johannes Bergff1b6e62011-05-04 15:37:28 +02007833
Johannes Berg964dc9e2013-06-03 17:25:34 +02007834 if (!rdev->wiphy.wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02007835 return -EOPNOTSUPP;
7836
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007837 if (rdev->wiphy.wowlan_config && rdev->wiphy.wowlan_config->tcp) {
Johannes Berg2a0e0472013-01-23 22:57:40 +01007838 /* adjust size to have room for all the data */
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007839 size += rdev->wiphy.wowlan_config->tcp->tokens_size +
7840 rdev->wiphy.wowlan_config->tcp->payload_len +
7841 rdev->wiphy.wowlan_config->tcp->wake_len +
7842 rdev->wiphy.wowlan_config->tcp->wake_len / 8;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007843 }
7844
7845 msg = nlmsg_new(size, GFP_KERNEL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02007846 if (!msg)
7847 return -ENOMEM;
7848
Eric W. Biederman15e47302012-09-07 20:12:54 +00007849 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Bergff1b6e62011-05-04 15:37:28 +02007850 NL80211_CMD_GET_WOWLAN);
7851 if (!hdr)
7852 goto nla_put_failure;
7853
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007854 if (rdev->wiphy.wowlan_config) {
Johannes Bergff1b6e62011-05-04 15:37:28 +02007855 struct nlattr *nl_wowlan;
7856
7857 nl_wowlan = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
7858 if (!nl_wowlan)
7859 goto nla_put_failure;
7860
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007861 if ((rdev->wiphy.wowlan_config->any &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007862 nla_put_flag(msg, NL80211_WOWLAN_TRIG_ANY)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007863 (rdev->wiphy.wowlan_config->disconnect &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007864 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007865 (rdev->wiphy.wowlan_config->magic_pkt &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007866 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007867 (rdev->wiphy.wowlan_config->gtk_rekey_failure &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007868 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007869 (rdev->wiphy.wowlan_config->eap_identity_req &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007870 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007871 (rdev->wiphy.wowlan_config->four_way_handshake &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007872 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE)) ||
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007873 (rdev->wiphy.wowlan_config->rfkill_release &&
David S. Miller9360ffd2012-03-29 04:41:26 -04007874 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE)))
7875 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007876
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08007877 if (nl80211_send_wowlan_patterns(msg, rdev))
7878 goto nla_put_failure;
Johannes Berg2a0e0472013-01-23 22:57:40 +01007879
Johannes Berg6abb9cb2013-05-15 09:30:07 +02007880 if (nl80211_send_wowlan_tcp(msg,
7881 rdev->wiphy.wowlan_config->tcp))
Johannes Berg2a0e0472013-01-23 22:57:40 +01007882 goto nla_put_failure;
7883
Johannes Bergff1b6e62011-05-04 15:37:28 +02007884 nla_nest_end(msg, nl_wowlan);
7885 }
7886
7887 genlmsg_end(msg, hdr);
7888 return genlmsg_reply(msg, info);
7889
7890nla_put_failure:
7891 nlmsg_free(msg);
7892 return -ENOBUFS;
7893}
7894
Johannes Berg2a0e0472013-01-23 22:57:40 +01007895static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device *rdev,
7896 struct nlattr *attr,
7897 struct cfg80211_wowlan *trig)
7898{
7899 struct nlattr *tb[NUM_NL80211_WOWLAN_TCP];
7900 struct cfg80211_wowlan_tcp *cfg;
7901 struct nl80211_wowlan_tcp_data_token *tok = NULL;
7902 struct nl80211_wowlan_tcp_data_seq *seq = NULL;
7903 u32 size;
7904 u32 data_size, wake_size, tokens_size = 0, wake_mask_size;
7905 int err, port;
7906
Johannes Berg964dc9e2013-06-03 17:25:34 +02007907 if (!rdev->wiphy.wowlan->tcp)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007908 return -EINVAL;
7909
7910 err = nla_parse(tb, MAX_NL80211_WOWLAN_TCP,
7911 nla_data(attr), nla_len(attr),
7912 nl80211_wowlan_tcp_policy);
7913 if (err)
7914 return err;
7915
7916 if (!tb[NL80211_WOWLAN_TCP_SRC_IPV4] ||
7917 !tb[NL80211_WOWLAN_TCP_DST_IPV4] ||
7918 !tb[NL80211_WOWLAN_TCP_DST_MAC] ||
7919 !tb[NL80211_WOWLAN_TCP_DST_PORT] ||
7920 !tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD] ||
7921 !tb[NL80211_WOWLAN_TCP_DATA_INTERVAL] ||
7922 !tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD] ||
7923 !tb[NL80211_WOWLAN_TCP_WAKE_MASK])
7924 return -EINVAL;
7925
7926 data_size = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02007927 if (data_size > rdev->wiphy.wowlan->tcp->data_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007928 return -EINVAL;
7929
7930 if (nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) >
Johannes Berg964dc9e2013-06-03 17:25:34 +02007931 rdev->wiphy.wowlan->tcp->data_interval_max ||
Johannes Berg723d5682013-02-26 13:56:40 +01007932 nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]) == 0)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007933 return -EINVAL;
7934
7935 wake_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02007936 if (wake_size > rdev->wiphy.wowlan->tcp->wake_payload_max)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007937 return -EINVAL;
7938
7939 wake_mask_size = nla_len(tb[NL80211_WOWLAN_TCP_WAKE_MASK]);
7940 if (wake_mask_size != DIV_ROUND_UP(wake_size, 8))
7941 return -EINVAL;
7942
7943 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]) {
7944 u32 tokln = nla_len(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
7945
7946 tok = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN]);
7947 tokens_size = tokln - sizeof(*tok);
7948
7949 if (!tok->len || tokens_size % tok->len)
7950 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02007951 if (!rdev->wiphy.wowlan->tcp->tok)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007952 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02007953 if (tok->len > rdev->wiphy.wowlan->tcp->tok->max_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007954 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02007955 if (tok->len < rdev->wiphy.wowlan->tcp->tok->min_len)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007956 return -EINVAL;
Johannes Berg964dc9e2013-06-03 17:25:34 +02007957 if (tokens_size > rdev->wiphy.wowlan->tcp->tok->bufsize)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007958 return -EINVAL;
7959 if (tok->offset + tok->len > data_size)
7960 return -EINVAL;
7961 }
7962
7963 if (tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]) {
7964 seq = nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ]);
Johannes Berg964dc9e2013-06-03 17:25:34 +02007965 if (!rdev->wiphy.wowlan->tcp->seq)
Johannes Berg2a0e0472013-01-23 22:57:40 +01007966 return -EINVAL;
7967 if (seq->len == 0 || seq->len > 4)
7968 return -EINVAL;
7969 if (seq->len + seq->offset > data_size)
7970 return -EINVAL;
7971 }
7972
7973 size = sizeof(*cfg);
7974 size += data_size;
7975 size += wake_size + wake_mask_size;
7976 size += tokens_size;
7977
7978 cfg = kzalloc(size, GFP_KERNEL);
7979 if (!cfg)
7980 return -ENOMEM;
7981 cfg->src = nla_get_be32(tb[NL80211_WOWLAN_TCP_SRC_IPV4]);
7982 cfg->dst = nla_get_be32(tb[NL80211_WOWLAN_TCP_DST_IPV4]);
7983 memcpy(cfg->dst_mac, nla_data(tb[NL80211_WOWLAN_TCP_DST_MAC]),
7984 ETH_ALEN);
7985 if (tb[NL80211_WOWLAN_TCP_SRC_PORT])
7986 port = nla_get_u16(tb[NL80211_WOWLAN_TCP_SRC_PORT]);
7987 else
7988 port = 0;
7989#ifdef CONFIG_INET
7990 /* allocate a socket and port for it and use it */
7991 err = __sock_create(wiphy_net(&rdev->wiphy), PF_INET, SOCK_STREAM,
7992 IPPROTO_TCP, &cfg->sock, 1);
7993 if (err) {
7994 kfree(cfg);
7995 return err;
7996 }
7997 if (inet_csk_get_port(cfg->sock->sk, port)) {
7998 sock_release(cfg->sock);
7999 kfree(cfg);
8000 return -EADDRINUSE;
8001 }
8002 cfg->src_port = inet_sk(cfg->sock->sk)->inet_num;
8003#else
8004 if (!port) {
8005 kfree(cfg);
8006 return -EINVAL;
8007 }
8008 cfg->src_port = port;
8009#endif
8010
8011 cfg->dst_port = nla_get_u16(tb[NL80211_WOWLAN_TCP_DST_PORT]);
8012 cfg->payload_len = data_size;
8013 cfg->payload = (u8 *)cfg + sizeof(*cfg) + tokens_size;
8014 memcpy((void *)cfg->payload,
8015 nla_data(tb[NL80211_WOWLAN_TCP_DATA_PAYLOAD]),
8016 data_size);
8017 if (seq)
8018 cfg->payload_seq = *seq;
8019 cfg->data_interval = nla_get_u32(tb[NL80211_WOWLAN_TCP_DATA_INTERVAL]);
8020 cfg->wake_len = wake_size;
8021 cfg->wake_data = (u8 *)cfg + sizeof(*cfg) + tokens_size + data_size;
8022 memcpy((void *)cfg->wake_data,
8023 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_PAYLOAD]),
8024 wake_size);
8025 cfg->wake_mask = (u8 *)cfg + sizeof(*cfg) + tokens_size +
8026 data_size + wake_size;
8027 memcpy((void *)cfg->wake_mask,
8028 nla_data(tb[NL80211_WOWLAN_TCP_WAKE_MASK]),
8029 wake_mask_size);
8030 if (tok) {
8031 cfg->tokens_size = tokens_size;
8032 memcpy(&cfg->payload_tok, tok, sizeof(*tok) + tokens_size);
8033 }
8034
8035 trig->tcp = cfg;
8036
8037 return 0;
8038}
8039
Johannes Bergff1b6e62011-05-04 15:37:28 +02008040static int nl80211_set_wowlan(struct sk_buff *skb, struct genl_info *info)
8041{
8042 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8043 struct nlattr *tb[NUM_NL80211_WOWLAN_TRIG];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008044 struct cfg80211_wowlan new_triggers = {};
Johannes Bergae33bd82012-07-12 16:25:02 +02008045 struct cfg80211_wowlan *ntrig;
Johannes Berg964dc9e2013-06-03 17:25:34 +02008046 const struct wiphy_wowlan_support *wowlan = rdev->wiphy.wowlan;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008047 int err, i;
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008048 bool prev_enabled = rdev->wiphy.wowlan_config;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008049
Johannes Berg964dc9e2013-06-03 17:25:34 +02008050 if (!wowlan)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008051 return -EOPNOTSUPP;
8052
Johannes Bergae33bd82012-07-12 16:25:02 +02008053 if (!info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]) {
8054 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008055 rdev->wiphy.wowlan_config = NULL;
Johannes Bergae33bd82012-07-12 16:25:02 +02008056 goto set_wakeup;
8057 }
Johannes Bergff1b6e62011-05-04 15:37:28 +02008058
8059 err = nla_parse(tb, MAX_NL80211_WOWLAN_TRIG,
8060 nla_data(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8061 nla_len(info->attrs[NL80211_ATTR_WOWLAN_TRIGGERS]),
8062 nl80211_wowlan_policy);
8063 if (err)
8064 return err;
8065
8066 if (tb[NL80211_WOWLAN_TRIG_ANY]) {
8067 if (!(wowlan->flags & WIPHY_WOWLAN_ANY))
8068 return -EINVAL;
8069 new_triggers.any = true;
8070 }
8071
8072 if (tb[NL80211_WOWLAN_TRIG_DISCONNECT]) {
8073 if (!(wowlan->flags & WIPHY_WOWLAN_DISCONNECT))
8074 return -EINVAL;
8075 new_triggers.disconnect = true;
8076 }
8077
8078 if (tb[NL80211_WOWLAN_TRIG_MAGIC_PKT]) {
8079 if (!(wowlan->flags & WIPHY_WOWLAN_MAGIC_PKT))
8080 return -EINVAL;
8081 new_triggers.magic_pkt = true;
8082 }
8083
Johannes Berg77dbbb12011-07-13 10:48:55 +02008084 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED])
8085 return -EINVAL;
8086
8087 if (tb[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE]) {
8088 if (!(wowlan->flags & WIPHY_WOWLAN_GTK_REKEY_FAILURE))
8089 return -EINVAL;
8090 new_triggers.gtk_rekey_failure = true;
8091 }
8092
8093 if (tb[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST]) {
8094 if (!(wowlan->flags & WIPHY_WOWLAN_EAP_IDENTITY_REQ))
8095 return -EINVAL;
8096 new_triggers.eap_identity_req = true;
8097 }
8098
8099 if (tb[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE]) {
8100 if (!(wowlan->flags & WIPHY_WOWLAN_4WAY_HANDSHAKE))
8101 return -EINVAL;
8102 new_triggers.four_way_handshake = true;
8103 }
8104
8105 if (tb[NL80211_WOWLAN_TRIG_RFKILL_RELEASE]) {
8106 if (!(wowlan->flags & WIPHY_WOWLAN_RFKILL_RELEASE))
8107 return -EINVAL;
8108 new_triggers.rfkill_release = true;
8109 }
8110
Johannes Bergff1b6e62011-05-04 15:37:28 +02008111 if (tb[NL80211_WOWLAN_TRIG_PKT_PATTERN]) {
8112 struct nlattr *pat;
8113 int n_patterns = 0;
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008114 int rem, pat_len, mask_len, pkt_offset;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008115 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
Johannes Bergff1b6e62011-05-04 15:37:28 +02008116
8117 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8118 rem)
8119 n_patterns++;
8120 if (n_patterns > wowlan->n_patterns)
8121 return -EINVAL;
8122
8123 new_triggers.patterns = kcalloc(n_patterns,
8124 sizeof(new_triggers.patterns[0]),
8125 GFP_KERNEL);
8126 if (!new_triggers.patterns)
8127 return -ENOMEM;
8128
8129 new_triggers.n_patterns = n_patterns;
8130 i = 0;
8131
8132 nla_for_each_nested(pat, tb[NL80211_WOWLAN_TRIG_PKT_PATTERN],
8133 rem) {
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008134 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8135 nla_len(pat), NULL);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008136 err = -EINVAL;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008137 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8138 !pat_tb[NL80211_PKTPAT_PATTERN])
Johannes Bergff1b6e62011-05-04 15:37:28 +02008139 goto error;
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008140 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008141 mask_len = DIV_ROUND_UP(pat_len, 8);
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008142 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
Johannes Bergff1b6e62011-05-04 15:37:28 +02008143 goto error;
8144 if (pat_len > wowlan->pattern_max_len ||
8145 pat_len < wowlan->pattern_min_len)
8146 goto error;
8147
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008148 if (!pat_tb[NL80211_PKTPAT_OFFSET])
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008149 pkt_offset = 0;
8150 else
8151 pkt_offset = nla_get_u32(
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008152 pat_tb[NL80211_PKTPAT_OFFSET]);
Amitkumar Karwarbb92d192013-02-12 12:16:26 -08008153 if (pkt_offset > wowlan->max_pkt_offset)
8154 goto error;
8155 new_triggers.patterns[i].pkt_offset = pkt_offset;
8156
Johannes Bergff1b6e62011-05-04 15:37:28 +02008157 new_triggers.patterns[i].mask =
8158 kmalloc(mask_len + pat_len, GFP_KERNEL);
8159 if (!new_triggers.patterns[i].mask) {
8160 err = -ENOMEM;
8161 goto error;
8162 }
8163 new_triggers.patterns[i].pattern =
8164 new_triggers.patterns[i].mask + mask_len;
8165 memcpy(new_triggers.patterns[i].mask,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008166 nla_data(pat_tb[NL80211_PKTPAT_MASK]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008167 mask_len);
8168 new_triggers.patterns[i].pattern_len = pat_len;
8169 memcpy(new_triggers.patterns[i].pattern,
Amitkumar Karwar50ac6602013-06-25 19:03:56 -07008170 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]),
Johannes Bergff1b6e62011-05-04 15:37:28 +02008171 pat_len);
8172 i++;
8173 }
8174 }
8175
Johannes Berg2a0e0472013-01-23 22:57:40 +01008176 if (tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION]) {
8177 err = nl80211_parse_wowlan_tcp(
8178 rdev, tb[NL80211_WOWLAN_TRIG_TCP_CONNECTION],
8179 &new_triggers);
8180 if (err)
8181 goto error;
8182 }
8183
Johannes Bergae33bd82012-07-12 16:25:02 +02008184 ntrig = kmemdup(&new_triggers, sizeof(new_triggers), GFP_KERNEL);
8185 if (!ntrig) {
8186 err = -ENOMEM;
8187 goto error;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008188 }
Johannes Bergae33bd82012-07-12 16:25:02 +02008189 cfg80211_rdev_free_wowlan(rdev);
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008190 rdev->wiphy.wowlan_config = ntrig;
Johannes Bergff1b6e62011-05-04 15:37:28 +02008191
Johannes Bergae33bd82012-07-12 16:25:02 +02008192 set_wakeup:
Johannes Berg6abb9cb2013-05-15 09:30:07 +02008193 if (rdev->ops->set_wakeup &&
8194 prev_enabled != !!rdev->wiphy.wowlan_config)
8195 rdev_set_wakeup(rdev, rdev->wiphy.wowlan_config);
Johannes Berg6d525632012-04-04 15:05:25 +02008196
Johannes Bergff1b6e62011-05-04 15:37:28 +02008197 return 0;
8198 error:
8199 for (i = 0; i < new_triggers.n_patterns; i++)
8200 kfree(new_triggers.patterns[i].mask);
8201 kfree(new_triggers.patterns);
Johannes Berg2a0e0472013-01-23 22:57:40 +01008202 if (new_triggers.tcp && new_triggers.tcp->sock)
8203 sock_release(new_triggers.tcp->sock);
8204 kfree(new_triggers.tcp);
Johannes Bergff1b6e62011-05-04 15:37:28 +02008205 return err;
8206}
Johannes Bergdfb89c52012-06-27 09:23:48 +02008207#endif
Johannes Bergff1b6e62011-05-04 15:37:28 +02008208
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07008209static int nl80211_send_coalesce_rules(struct sk_buff *msg,
8210 struct cfg80211_registered_device *rdev)
8211{
8212 struct nlattr *nl_pats, *nl_pat, *nl_rule, *nl_rules;
8213 int i, j, pat_len;
8214 struct cfg80211_coalesce_rules *rule;
8215
8216 if (!rdev->coalesce->n_rules)
8217 return 0;
8218
8219 nl_rules = nla_nest_start(msg, NL80211_ATTR_COALESCE_RULE);
8220 if (!nl_rules)
8221 return -ENOBUFS;
8222
8223 for (i = 0; i < rdev->coalesce->n_rules; i++) {
8224 nl_rule = nla_nest_start(msg, i + 1);
8225 if (!nl_rule)
8226 return -ENOBUFS;
8227
8228 rule = &rdev->coalesce->rules[i];
8229 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_DELAY,
8230 rule->delay))
8231 return -ENOBUFS;
8232
8233 if (nla_put_u32(msg, NL80211_ATTR_COALESCE_RULE_CONDITION,
8234 rule->condition))
8235 return -ENOBUFS;
8236
8237 nl_pats = nla_nest_start(msg,
8238 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN);
8239 if (!nl_pats)
8240 return -ENOBUFS;
8241
8242 for (j = 0; j < rule->n_patterns; j++) {
8243 nl_pat = nla_nest_start(msg, j + 1);
8244 if (!nl_pat)
8245 return -ENOBUFS;
8246 pat_len = rule->patterns[j].pattern_len;
8247 if (nla_put(msg, NL80211_PKTPAT_MASK,
8248 DIV_ROUND_UP(pat_len, 8),
8249 rule->patterns[j].mask) ||
8250 nla_put(msg, NL80211_PKTPAT_PATTERN, pat_len,
8251 rule->patterns[j].pattern) ||
8252 nla_put_u32(msg, NL80211_PKTPAT_OFFSET,
8253 rule->patterns[j].pkt_offset))
8254 return -ENOBUFS;
8255 nla_nest_end(msg, nl_pat);
8256 }
8257 nla_nest_end(msg, nl_pats);
8258 nla_nest_end(msg, nl_rule);
8259 }
8260 nla_nest_end(msg, nl_rules);
8261
8262 return 0;
8263}
8264
8265static int nl80211_get_coalesce(struct sk_buff *skb, struct genl_info *info)
8266{
8267 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8268 struct sk_buff *msg;
8269 void *hdr;
8270
8271 if (!rdev->wiphy.coalesce)
8272 return -EOPNOTSUPP;
8273
8274 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8275 if (!msg)
8276 return -ENOMEM;
8277
8278 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8279 NL80211_CMD_GET_COALESCE);
8280 if (!hdr)
8281 goto nla_put_failure;
8282
8283 if (rdev->coalesce && nl80211_send_coalesce_rules(msg, rdev))
8284 goto nla_put_failure;
8285
8286 genlmsg_end(msg, hdr);
8287 return genlmsg_reply(msg, info);
8288
8289nla_put_failure:
8290 nlmsg_free(msg);
8291 return -ENOBUFS;
8292}
8293
8294void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device *rdev)
8295{
8296 struct cfg80211_coalesce *coalesce = rdev->coalesce;
8297 int i, j;
8298 struct cfg80211_coalesce_rules *rule;
8299
8300 if (!coalesce)
8301 return;
8302
8303 for (i = 0; i < coalesce->n_rules; i++) {
8304 rule = &coalesce->rules[i];
8305 for (j = 0; j < rule->n_patterns; j++)
8306 kfree(rule->patterns[j].mask);
8307 kfree(rule->patterns);
8308 }
8309 kfree(coalesce->rules);
8310 kfree(coalesce);
8311 rdev->coalesce = NULL;
8312}
8313
8314static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device *rdev,
8315 struct nlattr *rule,
8316 struct cfg80211_coalesce_rules *new_rule)
8317{
8318 int err, i;
8319 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8320 struct nlattr *tb[NUM_NL80211_ATTR_COALESCE_RULE], *pat;
8321 int rem, pat_len, mask_len, pkt_offset, n_patterns = 0;
8322 struct nlattr *pat_tb[NUM_NL80211_PKTPAT];
8323
8324 err = nla_parse(tb, NL80211_ATTR_COALESCE_RULE_MAX, nla_data(rule),
8325 nla_len(rule), nl80211_coalesce_policy);
8326 if (err)
8327 return err;
8328
8329 if (tb[NL80211_ATTR_COALESCE_RULE_DELAY])
8330 new_rule->delay =
8331 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_DELAY]);
8332 if (new_rule->delay > coalesce->max_delay)
8333 return -EINVAL;
8334
8335 if (tb[NL80211_ATTR_COALESCE_RULE_CONDITION])
8336 new_rule->condition =
8337 nla_get_u32(tb[NL80211_ATTR_COALESCE_RULE_CONDITION]);
8338 if (new_rule->condition != NL80211_COALESCE_CONDITION_MATCH &&
8339 new_rule->condition != NL80211_COALESCE_CONDITION_NO_MATCH)
8340 return -EINVAL;
8341
8342 if (!tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN])
8343 return -EINVAL;
8344
8345 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8346 rem)
8347 n_patterns++;
8348 if (n_patterns > coalesce->n_patterns)
8349 return -EINVAL;
8350
8351 new_rule->patterns = kcalloc(n_patterns, sizeof(new_rule->patterns[0]),
8352 GFP_KERNEL);
8353 if (!new_rule->patterns)
8354 return -ENOMEM;
8355
8356 new_rule->n_patterns = n_patterns;
8357 i = 0;
8358
8359 nla_for_each_nested(pat, tb[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN],
8360 rem) {
8361 nla_parse(pat_tb, MAX_NL80211_PKTPAT, nla_data(pat),
8362 nla_len(pat), NULL);
8363 if (!pat_tb[NL80211_PKTPAT_MASK] ||
8364 !pat_tb[NL80211_PKTPAT_PATTERN])
8365 return -EINVAL;
8366 pat_len = nla_len(pat_tb[NL80211_PKTPAT_PATTERN]);
8367 mask_len = DIV_ROUND_UP(pat_len, 8);
8368 if (nla_len(pat_tb[NL80211_PKTPAT_MASK]) != mask_len)
8369 return -EINVAL;
8370 if (pat_len > coalesce->pattern_max_len ||
8371 pat_len < coalesce->pattern_min_len)
8372 return -EINVAL;
8373
8374 if (!pat_tb[NL80211_PKTPAT_OFFSET])
8375 pkt_offset = 0;
8376 else
8377 pkt_offset = nla_get_u32(pat_tb[NL80211_PKTPAT_OFFSET]);
8378 if (pkt_offset > coalesce->max_pkt_offset)
8379 return -EINVAL;
8380 new_rule->patterns[i].pkt_offset = pkt_offset;
8381
8382 new_rule->patterns[i].mask =
8383 kmalloc(mask_len + pat_len, GFP_KERNEL);
8384 if (!new_rule->patterns[i].mask)
8385 return -ENOMEM;
8386 new_rule->patterns[i].pattern =
8387 new_rule->patterns[i].mask + mask_len;
8388 memcpy(new_rule->patterns[i].mask,
8389 nla_data(pat_tb[NL80211_PKTPAT_MASK]), mask_len);
8390 new_rule->patterns[i].pattern_len = pat_len;
8391 memcpy(new_rule->patterns[i].pattern,
8392 nla_data(pat_tb[NL80211_PKTPAT_PATTERN]), pat_len);
8393 i++;
8394 }
8395
8396 return 0;
8397}
8398
8399static int nl80211_set_coalesce(struct sk_buff *skb, struct genl_info *info)
8400{
8401 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8402 const struct wiphy_coalesce_support *coalesce = rdev->wiphy.coalesce;
8403 struct cfg80211_coalesce new_coalesce = {};
8404 struct cfg80211_coalesce *n_coalesce;
8405 int err, rem_rule, n_rules = 0, i, j;
8406 struct nlattr *rule;
8407 struct cfg80211_coalesce_rules *tmp_rule;
8408
8409 if (!rdev->wiphy.coalesce || !rdev->ops->set_coalesce)
8410 return -EOPNOTSUPP;
8411
8412 if (!info->attrs[NL80211_ATTR_COALESCE_RULE]) {
8413 cfg80211_rdev_free_coalesce(rdev);
8414 rdev->ops->set_coalesce(&rdev->wiphy, NULL);
8415 return 0;
8416 }
8417
8418 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8419 rem_rule)
8420 n_rules++;
8421 if (n_rules > coalesce->n_rules)
8422 return -EINVAL;
8423
8424 new_coalesce.rules = kcalloc(n_rules, sizeof(new_coalesce.rules[0]),
8425 GFP_KERNEL);
8426 if (!new_coalesce.rules)
8427 return -ENOMEM;
8428
8429 new_coalesce.n_rules = n_rules;
8430 i = 0;
8431
8432 nla_for_each_nested(rule, info->attrs[NL80211_ATTR_COALESCE_RULE],
8433 rem_rule) {
8434 err = nl80211_parse_coalesce_rule(rdev, rule,
8435 &new_coalesce.rules[i]);
8436 if (err)
8437 goto error;
8438
8439 i++;
8440 }
8441
8442 err = rdev->ops->set_coalesce(&rdev->wiphy, &new_coalesce);
8443 if (err)
8444 goto error;
8445
8446 n_coalesce = kmemdup(&new_coalesce, sizeof(new_coalesce), GFP_KERNEL);
8447 if (!n_coalesce) {
8448 err = -ENOMEM;
8449 goto error;
8450 }
8451 cfg80211_rdev_free_coalesce(rdev);
8452 rdev->coalesce = n_coalesce;
8453
8454 return 0;
8455error:
8456 for (i = 0; i < new_coalesce.n_rules; i++) {
8457 tmp_rule = &new_coalesce.rules[i];
8458 for (j = 0; j < tmp_rule->n_patterns; j++)
8459 kfree(tmp_rule->patterns[j].mask);
8460 kfree(tmp_rule->patterns);
8461 }
8462 kfree(new_coalesce.rules);
8463
8464 return err;
8465}
8466
Johannes Berge5497d72011-07-05 16:35:40 +02008467static int nl80211_set_rekey_data(struct sk_buff *skb, struct genl_info *info)
8468{
8469 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8470 struct net_device *dev = info->user_ptr[1];
8471 struct wireless_dev *wdev = dev->ieee80211_ptr;
8472 struct nlattr *tb[NUM_NL80211_REKEY_DATA];
8473 struct cfg80211_gtk_rekey_data rekey_data;
8474 int err;
8475
8476 if (!info->attrs[NL80211_ATTR_REKEY_DATA])
8477 return -EINVAL;
8478
8479 err = nla_parse(tb, MAX_NL80211_REKEY_DATA,
8480 nla_data(info->attrs[NL80211_ATTR_REKEY_DATA]),
8481 nla_len(info->attrs[NL80211_ATTR_REKEY_DATA]),
8482 nl80211_rekey_policy);
8483 if (err)
8484 return err;
8485
8486 if (nla_len(tb[NL80211_REKEY_DATA_REPLAY_CTR]) != NL80211_REPLAY_CTR_LEN)
8487 return -ERANGE;
8488 if (nla_len(tb[NL80211_REKEY_DATA_KEK]) != NL80211_KEK_LEN)
8489 return -ERANGE;
8490 if (nla_len(tb[NL80211_REKEY_DATA_KCK]) != NL80211_KCK_LEN)
8491 return -ERANGE;
8492
8493 memcpy(rekey_data.kek, nla_data(tb[NL80211_REKEY_DATA_KEK]),
8494 NL80211_KEK_LEN);
8495 memcpy(rekey_data.kck, nla_data(tb[NL80211_REKEY_DATA_KCK]),
8496 NL80211_KCK_LEN);
8497 memcpy(rekey_data.replay_ctr,
8498 nla_data(tb[NL80211_REKEY_DATA_REPLAY_CTR]),
8499 NL80211_REPLAY_CTR_LEN);
8500
8501 wdev_lock(wdev);
8502 if (!wdev->current_bss) {
8503 err = -ENOTCONN;
8504 goto out;
8505 }
8506
8507 if (!rdev->ops->set_rekey_data) {
8508 err = -EOPNOTSUPP;
8509 goto out;
8510 }
8511
Hila Gonene35e4d22012-06-27 17:19:42 +03008512 err = rdev_set_rekey_data(rdev, dev, &rekey_data);
Johannes Berge5497d72011-07-05 16:35:40 +02008513 out:
8514 wdev_unlock(wdev);
8515 return err;
8516}
8517
Johannes Berg28946da2011-11-04 11:18:12 +01008518static int nl80211_register_unexpected_frame(struct sk_buff *skb,
8519 struct genl_info *info)
8520{
8521 struct net_device *dev = info->user_ptr[1];
8522 struct wireless_dev *wdev = dev->ieee80211_ptr;
8523
8524 if (wdev->iftype != NL80211_IFTYPE_AP &&
8525 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8526 return -EINVAL;
8527
Eric W. Biederman15e47302012-09-07 20:12:54 +00008528 if (wdev->ap_unexpected_nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +01008529 return -EBUSY;
8530
Eric W. Biederman15e47302012-09-07 20:12:54 +00008531 wdev->ap_unexpected_nlportid = info->snd_portid;
Johannes Berg28946da2011-11-04 11:18:12 +01008532 return 0;
8533}
8534
Johannes Berg7f6cf312011-11-04 11:18:15 +01008535static int nl80211_probe_client(struct sk_buff *skb,
8536 struct genl_info *info)
8537{
8538 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8539 struct net_device *dev = info->user_ptr[1];
8540 struct wireless_dev *wdev = dev->ieee80211_ptr;
8541 struct sk_buff *msg;
8542 void *hdr;
8543 const u8 *addr;
8544 u64 cookie;
8545 int err;
8546
8547 if (wdev->iftype != NL80211_IFTYPE_AP &&
8548 wdev->iftype != NL80211_IFTYPE_P2P_GO)
8549 return -EOPNOTSUPP;
8550
8551 if (!info->attrs[NL80211_ATTR_MAC])
8552 return -EINVAL;
8553
8554 if (!rdev->ops->probe_client)
8555 return -EOPNOTSUPP;
8556
8557 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8558 if (!msg)
8559 return -ENOMEM;
8560
Eric W. Biederman15e47302012-09-07 20:12:54 +00008561 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
Johannes Berg7f6cf312011-11-04 11:18:15 +01008562 NL80211_CMD_PROBE_CLIENT);
Dan Carpentercb35fba2013-08-14 14:50:01 +03008563 if (!hdr) {
8564 err = -ENOBUFS;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008565 goto free_msg;
8566 }
8567
8568 addr = nla_data(info->attrs[NL80211_ATTR_MAC]);
8569
Hila Gonene35e4d22012-06-27 17:19:42 +03008570 err = rdev_probe_client(rdev, dev, addr, &cookie);
Johannes Berg7f6cf312011-11-04 11:18:15 +01008571 if (err)
8572 goto free_msg;
8573
David S. Miller9360ffd2012-03-29 04:41:26 -04008574 if (nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
8575 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +01008576
8577 genlmsg_end(msg, hdr);
8578
8579 return genlmsg_reply(msg, info);
8580
8581 nla_put_failure:
8582 err = -ENOBUFS;
8583 free_msg:
8584 nlmsg_free(msg);
8585 return err;
8586}
8587
Johannes Berg5e7602302011-11-04 11:18:17 +01008588static int nl80211_register_beacons(struct sk_buff *skb, struct genl_info *info)
8589{
8590 struct cfg80211_registered_device *rdev = info->user_ptr[0];
Ben Greear37c73b52012-10-26 14:49:25 -07008591 struct cfg80211_beacon_registration *reg, *nreg;
8592 int rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01008593
8594 if (!(rdev->wiphy.flags & WIPHY_FLAG_REPORTS_OBSS))
8595 return -EOPNOTSUPP;
8596
Ben Greear37c73b52012-10-26 14:49:25 -07008597 nreg = kzalloc(sizeof(*nreg), GFP_KERNEL);
8598 if (!nreg)
8599 return -ENOMEM;
Johannes Berg5e7602302011-11-04 11:18:17 +01008600
Ben Greear37c73b52012-10-26 14:49:25 -07008601 /* First, check if already registered. */
8602 spin_lock_bh(&rdev->beacon_registrations_lock);
8603 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
8604 if (reg->nlportid == info->snd_portid) {
8605 rv = -EALREADY;
8606 goto out_err;
8607 }
8608 }
8609 /* Add it to the list */
8610 nreg->nlportid = info->snd_portid;
8611 list_add(&nreg->list, &rdev->beacon_registrations);
8612
8613 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +01008614
8615 return 0;
Ben Greear37c73b52012-10-26 14:49:25 -07008616out_err:
8617 spin_unlock_bh(&rdev->beacon_registrations_lock);
8618 kfree(nreg);
8619 return rv;
Johannes Berg5e7602302011-11-04 11:18:17 +01008620}
8621
Johannes Berg98104fde2012-06-16 00:19:54 +02008622static int nl80211_start_p2p_device(struct sk_buff *skb, struct genl_info *info)
8623{
8624 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8625 struct wireless_dev *wdev = info->user_ptr[1];
8626 int err;
8627
8628 if (!rdev->ops->start_p2p_device)
8629 return -EOPNOTSUPP;
8630
8631 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8632 return -EOPNOTSUPP;
8633
8634 if (wdev->p2p_started)
8635 return 0;
8636
Johannes Berg98104fde2012-06-16 00:19:54 +02008637 err = cfg80211_can_add_interface(rdev, wdev->iftype);
Johannes Berg98104fde2012-06-16 00:19:54 +02008638 if (err)
8639 return err;
8640
Johannes Bergeeb126e2012-10-23 15:16:50 +02008641 err = rdev_start_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008642 if (err)
8643 return err;
8644
8645 wdev->p2p_started = true;
Johannes Berg98104fde2012-06-16 00:19:54 +02008646 rdev->opencount++;
Johannes Berg98104fde2012-06-16 00:19:54 +02008647
8648 return 0;
8649}
8650
8651static int nl80211_stop_p2p_device(struct sk_buff *skb, struct genl_info *info)
8652{
8653 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8654 struct wireless_dev *wdev = info->user_ptr[1];
8655
8656 if (wdev->iftype != NL80211_IFTYPE_P2P_DEVICE)
8657 return -EOPNOTSUPP;
8658
8659 if (!rdev->ops->stop_p2p_device)
8660 return -EOPNOTSUPP;
8661
Johannes Bergf9f47522013-03-19 15:04:07 +01008662 cfg80211_stop_p2p_device(rdev, wdev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008663
8664 return 0;
8665}
8666
Johannes Berg3713b4e2013-02-14 16:19:38 +01008667static int nl80211_get_protocol_features(struct sk_buff *skb,
8668 struct genl_info *info)
8669{
8670 void *hdr;
8671 struct sk_buff *msg;
8672
8673 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
8674 if (!msg)
8675 return -ENOMEM;
8676
8677 hdr = nl80211hdr_put(msg, info->snd_portid, info->snd_seq, 0,
8678 NL80211_CMD_GET_PROTOCOL_FEATURES);
8679 if (!hdr)
8680 goto nla_put_failure;
8681
8682 if (nla_put_u32(msg, NL80211_ATTR_PROTOCOL_FEATURES,
8683 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP))
8684 goto nla_put_failure;
8685
8686 genlmsg_end(msg, hdr);
8687 return genlmsg_reply(msg, info);
8688
8689 nla_put_failure:
8690 kfree_skb(msg);
8691 return -ENOBUFS;
8692}
8693
Jouni Malinen355199e2013-02-27 17:14:27 +02008694static int nl80211_update_ft_ies(struct sk_buff *skb, struct genl_info *info)
8695{
8696 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8697 struct cfg80211_update_ft_ies_params ft_params;
8698 struct net_device *dev = info->user_ptr[1];
8699
8700 if (!rdev->ops->update_ft_ies)
8701 return -EOPNOTSUPP;
8702
8703 if (!info->attrs[NL80211_ATTR_MDID] ||
8704 !is_valid_ie_attr(info->attrs[NL80211_ATTR_IE]))
8705 return -EINVAL;
8706
8707 memset(&ft_params, 0, sizeof(ft_params));
8708 ft_params.md = nla_get_u16(info->attrs[NL80211_ATTR_MDID]);
8709 ft_params.ie = nla_data(info->attrs[NL80211_ATTR_IE]);
8710 ft_params.ie_len = nla_len(info->attrs[NL80211_ATTR_IE]);
8711
8712 return rdev_update_ft_ies(rdev, dev, &ft_params);
8713}
8714
Arend van Spriel5de17982013-04-18 15:49:00 +02008715static int nl80211_crit_protocol_start(struct sk_buff *skb,
8716 struct genl_info *info)
8717{
8718 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8719 struct wireless_dev *wdev = info->user_ptr[1];
8720 enum nl80211_crit_proto_id proto = NL80211_CRIT_PROTO_UNSPEC;
8721 u16 duration;
8722 int ret;
8723
8724 if (!rdev->ops->crit_proto_start)
8725 return -EOPNOTSUPP;
8726
8727 if (WARN_ON(!rdev->ops->crit_proto_stop))
8728 return -EINVAL;
8729
8730 if (rdev->crit_proto_nlportid)
8731 return -EBUSY;
8732
8733 /* determine protocol if provided */
8734 if (info->attrs[NL80211_ATTR_CRIT_PROT_ID])
8735 proto = nla_get_u16(info->attrs[NL80211_ATTR_CRIT_PROT_ID]);
8736
8737 if (proto >= NUM_NL80211_CRIT_PROTO)
8738 return -EINVAL;
8739
8740 /* timeout must be provided */
8741 if (!info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION])
8742 return -EINVAL;
8743
8744 duration =
8745 nla_get_u16(info->attrs[NL80211_ATTR_MAX_CRIT_PROT_DURATION]);
8746
8747 if (duration > NL80211_CRIT_PROTO_MAX_DURATION)
8748 return -ERANGE;
8749
8750 ret = rdev_crit_proto_start(rdev, wdev, proto, duration);
8751 if (!ret)
8752 rdev->crit_proto_nlportid = info->snd_portid;
8753
8754 return ret;
8755}
8756
8757static int nl80211_crit_protocol_stop(struct sk_buff *skb,
8758 struct genl_info *info)
8759{
8760 struct cfg80211_registered_device *rdev = info->user_ptr[0];
8761 struct wireless_dev *wdev = info->user_ptr[1];
8762
8763 if (!rdev->ops->crit_proto_stop)
8764 return -EOPNOTSUPP;
8765
8766 if (rdev->crit_proto_nlportid) {
8767 rdev->crit_proto_nlportid = 0;
8768 rdev_crit_proto_stop(rdev, wdev);
8769 }
8770 return 0;
8771}
8772
Johannes Berg4c476992010-10-04 21:36:35 +02008773#define NL80211_FLAG_NEED_WIPHY 0x01
8774#define NL80211_FLAG_NEED_NETDEV 0x02
8775#define NL80211_FLAG_NEED_RTNL 0x04
Johannes Berg41265712010-10-04 21:14:05 +02008776#define NL80211_FLAG_CHECK_NETDEV_UP 0x08
8777#define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
8778 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg1bf614e2012-06-15 15:23:36 +02008779#define NL80211_FLAG_NEED_WDEV 0x10
Johannes Berg98104fde2012-06-16 00:19:54 +02008780/* If a netdev is associated, it must be UP, P2P must be started */
Johannes Berg1bf614e2012-06-15 15:23:36 +02008781#define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
8782 NL80211_FLAG_CHECK_NETDEV_UP)
Johannes Berg4c476992010-10-04 21:36:35 +02008783
8784static int nl80211_pre_doit(struct genl_ops *ops, struct sk_buff *skb,
8785 struct genl_info *info)
8786{
8787 struct cfg80211_registered_device *rdev;
Johannes Berg89a54e42012-06-15 14:33:17 +02008788 struct wireless_dev *wdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008789 struct net_device *dev;
Johannes Berg4c476992010-10-04 21:36:35 +02008790 bool rtnl = ops->internal_flags & NL80211_FLAG_NEED_RTNL;
8791
8792 if (rtnl)
8793 rtnl_lock();
8794
8795 if (ops->internal_flags & NL80211_FLAG_NEED_WIPHY) {
Johannes Berg4f7eff12012-06-15 14:14:22 +02008796 rdev = cfg80211_get_dev_from_info(genl_info_net(info), info);
Johannes Berg4c476992010-10-04 21:36:35 +02008797 if (IS_ERR(rdev)) {
8798 if (rtnl)
8799 rtnl_unlock();
8800 return PTR_ERR(rdev);
8801 }
8802 info->user_ptr[0] = rdev;
Johannes Berg1bf614e2012-06-15 15:23:36 +02008803 } else if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV ||
8804 ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
Johannes Berg5fe231e2013-05-08 21:45:15 +02008805 ASSERT_RTNL();
8806
Johannes Berg89a54e42012-06-15 14:33:17 +02008807 wdev = __cfg80211_wdev_from_attrs(genl_info_net(info),
8808 info->attrs);
8809 if (IS_ERR(wdev)) {
Johannes Berg4c476992010-10-04 21:36:35 +02008810 if (rtnl)
8811 rtnl_unlock();
Johannes Berg89a54e42012-06-15 14:33:17 +02008812 return PTR_ERR(wdev);
Johannes Berg4c476992010-10-04 21:36:35 +02008813 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008814
Johannes Berg89a54e42012-06-15 14:33:17 +02008815 dev = wdev->netdev;
8816 rdev = wiphy_to_dev(wdev->wiphy);
8817
Johannes Berg1bf614e2012-06-15 15:23:36 +02008818 if (ops->internal_flags & NL80211_FLAG_NEED_NETDEV) {
8819 if (!dev) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008820 if (rtnl)
8821 rtnl_unlock();
8822 return -EINVAL;
8823 }
8824
8825 info->user_ptr[1] = dev;
8826 } else {
8827 info->user_ptr[1] = wdev;
Johannes Berg41265712010-10-04 21:14:05 +02008828 }
Johannes Berg89a54e42012-06-15 14:33:17 +02008829
Johannes Berg1bf614e2012-06-15 15:23:36 +02008830 if (dev) {
8831 if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP &&
8832 !netif_running(dev)) {
Johannes Berg1bf614e2012-06-15 15:23:36 +02008833 if (rtnl)
8834 rtnl_unlock();
8835 return -ENETDOWN;
8836 }
8837
8838 dev_hold(dev);
Johannes Berg98104fde2012-06-16 00:19:54 +02008839 } else if (ops->internal_flags & NL80211_FLAG_CHECK_NETDEV_UP) {
8840 if (!wdev->p2p_started) {
Johannes Berg98104fde2012-06-16 00:19:54 +02008841 if (rtnl)
8842 rtnl_unlock();
8843 return -ENETDOWN;
8844 }
Johannes Berg1bf614e2012-06-15 15:23:36 +02008845 }
8846
Johannes Berg4c476992010-10-04 21:36:35 +02008847 info->user_ptr[0] = rdev;
Johannes Berg4c476992010-10-04 21:36:35 +02008848 }
8849
8850 return 0;
8851}
8852
8853static void nl80211_post_doit(struct genl_ops *ops, struct sk_buff *skb,
8854 struct genl_info *info)
8855{
Johannes Berg1bf614e2012-06-15 15:23:36 +02008856 if (info->user_ptr[1]) {
8857 if (ops->internal_flags & NL80211_FLAG_NEED_WDEV) {
8858 struct wireless_dev *wdev = info->user_ptr[1];
8859
8860 if (wdev->netdev)
8861 dev_put(wdev->netdev);
8862 } else {
8863 dev_put(info->user_ptr[1]);
8864 }
8865 }
Johannes Berg4c476992010-10-04 21:36:35 +02008866 if (ops->internal_flags & NL80211_FLAG_NEED_RTNL)
8867 rtnl_unlock();
8868}
8869
Johannes Berg55682962007-09-20 13:09:35 -04008870static struct genl_ops nl80211_ops[] = {
8871 {
8872 .cmd = NL80211_CMD_GET_WIPHY,
8873 .doit = nl80211_get_wiphy,
8874 .dumpit = nl80211_dump_wiphy,
Johannes Berg86e8cf92013-06-19 10:57:22 +02008875 .done = nl80211_dump_wiphy_done,
Johannes Berg55682962007-09-20 13:09:35 -04008876 .policy = nl80211_policy,
8877 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008878 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8879 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008880 },
8881 {
8882 .cmd = NL80211_CMD_SET_WIPHY,
8883 .doit = nl80211_set_wiphy,
8884 .policy = nl80211_policy,
8885 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008886 .internal_flags = NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008887 },
8888 {
8889 .cmd = NL80211_CMD_GET_INTERFACE,
8890 .doit = nl80211_get_interface,
8891 .dumpit = nl80211_dump_interface,
8892 .policy = nl80211_policy,
8893 /* can be retrieved by unprivileged users */
Johannes Berg5fe231e2013-05-08 21:45:15 +02008894 .internal_flags = NL80211_FLAG_NEED_WDEV |
8895 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008896 },
8897 {
8898 .cmd = NL80211_CMD_SET_INTERFACE,
8899 .doit = nl80211_set_interface,
8900 .policy = nl80211_policy,
8901 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008902 .internal_flags = NL80211_FLAG_NEED_NETDEV |
8903 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008904 },
8905 {
8906 .cmd = NL80211_CMD_NEW_INTERFACE,
8907 .doit = nl80211_new_interface,
8908 .policy = nl80211_policy,
8909 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02008910 .internal_flags = NL80211_FLAG_NEED_WIPHY |
8911 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008912 },
8913 {
8914 .cmd = NL80211_CMD_DEL_INTERFACE,
8915 .doit = nl80211_del_interface,
8916 .policy = nl80211_policy,
8917 .flags = GENL_ADMIN_PERM,
Johannes Berg84efbb82012-06-16 00:00:26 +02008918 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02008919 NL80211_FLAG_NEED_RTNL,
Johannes Berg55682962007-09-20 13:09:35 -04008920 },
Johannes Berg41ade002007-12-19 02:03:29 +01008921 {
8922 .cmd = NL80211_CMD_GET_KEY,
8923 .doit = nl80211_get_key,
8924 .policy = nl80211_policy,
8925 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008926 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008927 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01008928 },
8929 {
8930 .cmd = NL80211_CMD_SET_KEY,
8931 .doit = nl80211_set_key,
8932 .policy = nl80211_policy,
8933 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02008934 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008935 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01008936 },
8937 {
8938 .cmd = NL80211_CMD_NEW_KEY,
8939 .doit = nl80211_new_key,
8940 .policy = nl80211_policy,
8941 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02008942 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008943 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01008944 },
8945 {
8946 .cmd = NL80211_CMD_DEL_KEY,
8947 .doit = nl80211_del_key,
8948 .policy = nl80211_policy,
8949 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02008950 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008951 NL80211_FLAG_NEED_RTNL,
Johannes Berg41ade002007-12-19 02:03:29 +01008952 },
Johannes Berged1b6cc2007-12-19 02:03:32 +01008953 {
8954 .cmd = NL80211_CMD_SET_BEACON,
8955 .policy = nl80211_policy,
8956 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01008957 .doit = nl80211_set_beacon,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008958 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008959 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01008960 },
8961 {
Johannes Berg88600202012-02-13 15:17:18 +01008962 .cmd = NL80211_CMD_START_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01008963 .policy = nl80211_policy,
8964 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01008965 .doit = nl80211_start_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008966 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008967 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01008968 },
8969 {
Johannes Berg88600202012-02-13 15:17:18 +01008970 .cmd = NL80211_CMD_STOP_AP,
Johannes Berged1b6cc2007-12-19 02:03:32 +01008971 .policy = nl80211_policy,
8972 .flags = GENL_ADMIN_PERM,
Johannes Berg88600202012-02-13 15:17:18 +01008973 .doit = nl80211_stop_ap,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008974 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008975 NL80211_FLAG_NEED_RTNL,
Johannes Berged1b6cc2007-12-19 02:03:32 +01008976 },
Johannes Berg5727ef12007-12-19 02:03:34 +01008977 {
8978 .cmd = NL80211_CMD_GET_STATION,
8979 .doit = nl80211_get_station,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01008980 .dumpit = nl80211_dump_station,
Johannes Berg5727ef12007-12-19 02:03:34 +01008981 .policy = nl80211_policy,
Johannes Berg4c476992010-10-04 21:36:35 +02008982 .internal_flags = NL80211_FLAG_NEED_NETDEV |
8983 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01008984 },
8985 {
8986 .cmd = NL80211_CMD_SET_STATION,
8987 .doit = nl80211_set_station,
8988 .policy = nl80211_policy,
8989 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02008990 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008991 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01008992 },
8993 {
8994 .cmd = NL80211_CMD_NEW_STATION,
8995 .doit = nl80211_new_station,
8996 .policy = nl80211_policy,
8997 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02008998 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02008999 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009000 },
9001 {
9002 .cmd = NL80211_CMD_DEL_STATION,
9003 .doit = nl80211_del_station,
9004 .policy = nl80211_policy,
9005 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009006 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009007 NL80211_FLAG_NEED_RTNL,
Johannes Berg5727ef12007-12-19 02:03:34 +01009008 },
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009009 {
9010 .cmd = NL80211_CMD_GET_MPATH,
9011 .doit = nl80211_get_mpath,
9012 .dumpit = nl80211_dump_mpath,
9013 .policy = nl80211_policy,
9014 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009015 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009016 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009017 },
9018 {
9019 .cmd = NL80211_CMD_SET_MPATH,
9020 .doit = nl80211_set_mpath,
9021 .policy = nl80211_policy,
9022 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009023 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009024 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009025 },
9026 {
9027 .cmd = NL80211_CMD_NEW_MPATH,
9028 .doit = nl80211_new_mpath,
9029 .policy = nl80211_policy,
9030 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009031 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009032 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009033 },
9034 {
9035 .cmd = NL80211_CMD_DEL_MPATH,
9036 .doit = nl80211_del_mpath,
9037 .policy = nl80211_policy,
9038 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009039 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009040 NL80211_FLAG_NEED_RTNL,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +01009041 },
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009042 {
9043 .cmd = NL80211_CMD_SET_BSS,
9044 .doit = nl80211_set_bss,
9045 .policy = nl80211_policy,
9046 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009047 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009048 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03009049 },
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009050 {
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009051 .cmd = NL80211_CMD_GET_REG,
9052 .doit = nl80211_get_reg,
9053 .policy = nl80211_policy,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009054 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezf1303472009-01-30 09:26:42 -08009055 /* can be retrieved by unprivileged users */
9056 },
9057 {
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009058 .cmd = NL80211_CMD_SET_REG,
9059 .doit = nl80211_set_reg,
9060 .policy = nl80211_policy,
9061 .flags = GENL_ADMIN_PERM,
Johannes Berg5fe231e2013-05-08 21:45:15 +02009062 .internal_flags = NL80211_FLAG_NEED_RTNL,
Luis R. Rodriguezb2e1b302008-09-09 23:19:48 -07009063 },
9064 {
9065 .cmd = NL80211_CMD_REQ_SET_REG,
9066 .doit = nl80211_req_set_reg,
9067 .policy = nl80211_policy,
9068 .flags = GENL_ADMIN_PERM,
9069 },
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009070 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009071 .cmd = NL80211_CMD_GET_MESH_CONFIG,
9072 .doit = nl80211_get_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009073 .policy = nl80211_policy,
9074 /* can be retrieved by unprivileged users */
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009075 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009076 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009077 },
9078 {
Javier Cardona24bdd9f2010-12-16 17:37:48 -08009079 .cmd = NL80211_CMD_SET_MESH_CONFIG,
9080 .doit = nl80211_update_mesh_config,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009081 .policy = nl80211_policy,
9082 .flags = GENL_ADMIN_PERM,
Johannes Berg29cbe682010-12-03 09:20:44 +01009083 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009084 NL80211_FLAG_NEED_RTNL,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07009085 },
Jouni Malinen9aed3cc2009-01-13 16:03:29 +02009086 {
Johannes Berg2a519312009-02-10 21:25:55 +01009087 .cmd = NL80211_CMD_TRIGGER_SCAN,
9088 .doit = nl80211_trigger_scan,
9089 .policy = nl80211_policy,
9090 .flags = GENL_ADMIN_PERM,
Johannes Bergfd014282012-06-18 19:17:03 +02009091 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009092 NL80211_FLAG_NEED_RTNL,
Johannes Berg2a519312009-02-10 21:25:55 +01009093 },
9094 {
9095 .cmd = NL80211_CMD_GET_SCAN,
9096 .policy = nl80211_policy,
9097 .dumpit = nl80211_dump_scan,
9098 },
Jouni Malinen636a5d32009-03-19 13:39:22 +02009099 {
Luciano Coelho807f8a82011-05-11 17:09:35 +03009100 .cmd = NL80211_CMD_START_SCHED_SCAN,
9101 .doit = nl80211_start_sched_scan,
9102 .policy = nl80211_policy,
9103 .flags = GENL_ADMIN_PERM,
9104 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9105 NL80211_FLAG_NEED_RTNL,
9106 },
9107 {
9108 .cmd = NL80211_CMD_STOP_SCHED_SCAN,
9109 .doit = nl80211_stop_sched_scan,
9110 .policy = nl80211_policy,
9111 .flags = GENL_ADMIN_PERM,
9112 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9113 NL80211_FLAG_NEED_RTNL,
9114 },
9115 {
Jouni Malinen636a5d32009-03-19 13:39:22 +02009116 .cmd = NL80211_CMD_AUTHENTICATE,
9117 .doit = nl80211_authenticate,
9118 .policy = nl80211_policy,
9119 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009120 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009121 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009122 },
9123 {
9124 .cmd = NL80211_CMD_ASSOCIATE,
9125 .doit = nl80211_associate,
9126 .policy = nl80211_policy,
9127 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009128 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009129 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009130 },
9131 {
9132 .cmd = NL80211_CMD_DEAUTHENTICATE,
9133 .doit = nl80211_deauthenticate,
9134 .policy = nl80211_policy,
9135 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009136 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009137 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009138 },
9139 {
9140 .cmd = NL80211_CMD_DISASSOCIATE,
9141 .doit = nl80211_disassociate,
9142 .policy = nl80211_policy,
9143 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009144 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009145 NL80211_FLAG_NEED_RTNL,
Jouni Malinen636a5d32009-03-19 13:39:22 +02009146 },
Johannes Berg04a773a2009-04-19 21:24:32 +02009147 {
9148 .cmd = NL80211_CMD_JOIN_IBSS,
9149 .doit = nl80211_join_ibss,
9150 .policy = nl80211_policy,
9151 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009152 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009153 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009154 },
9155 {
9156 .cmd = NL80211_CMD_LEAVE_IBSS,
9157 .doit = nl80211_leave_ibss,
9158 .policy = nl80211_policy,
9159 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009160 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009161 NL80211_FLAG_NEED_RTNL,
Johannes Berg04a773a2009-04-19 21:24:32 +02009162 },
Johannes Bergaff89a92009-07-01 21:26:51 +02009163#ifdef CONFIG_NL80211_TESTMODE
9164 {
9165 .cmd = NL80211_CMD_TESTMODE,
9166 .doit = nl80211_testmode_do,
Wey-Yi Guy71063f02011-05-20 09:05:54 -07009167 .dumpit = nl80211_testmode_dump,
Johannes Bergaff89a92009-07-01 21:26:51 +02009168 .policy = nl80211_policy,
9169 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009170 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9171 NL80211_FLAG_NEED_RTNL,
Johannes Bergaff89a92009-07-01 21:26:51 +02009172 },
9173#endif
Samuel Ortizb23aa672009-07-01 21:26:54 +02009174 {
9175 .cmd = NL80211_CMD_CONNECT,
9176 .doit = nl80211_connect,
9177 .policy = nl80211_policy,
9178 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009179 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009180 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009181 },
9182 {
9183 .cmd = NL80211_CMD_DISCONNECT,
9184 .doit = nl80211_disconnect,
9185 .policy = nl80211_policy,
9186 .flags = GENL_ADMIN_PERM,
Johannes Berg41265712010-10-04 21:14:05 +02009187 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009188 NL80211_FLAG_NEED_RTNL,
Samuel Ortizb23aa672009-07-01 21:26:54 +02009189 },
Johannes Berg463d0182009-07-14 00:33:35 +02009190 {
9191 .cmd = NL80211_CMD_SET_WIPHY_NETNS,
9192 .doit = nl80211_wiphy_netns,
9193 .policy = nl80211_policy,
9194 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009195 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9196 NL80211_FLAG_NEED_RTNL,
Johannes Berg463d0182009-07-14 00:33:35 +02009197 },
Holger Schurig61fa7132009-11-11 12:25:40 +01009198 {
9199 .cmd = NL80211_CMD_GET_SURVEY,
9200 .policy = nl80211_policy,
9201 .dumpit = nl80211_dump_survey,
9202 },
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009203 {
9204 .cmd = NL80211_CMD_SET_PMKSA,
9205 .doit = nl80211_setdel_pmksa,
9206 .policy = nl80211_policy,
9207 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009208 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009209 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009210 },
9211 {
9212 .cmd = NL80211_CMD_DEL_PMKSA,
9213 .doit = nl80211_setdel_pmksa,
9214 .policy = nl80211_policy,
9215 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009216 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009217 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009218 },
9219 {
9220 .cmd = NL80211_CMD_FLUSH_PMKSA,
9221 .doit = nl80211_flush_pmksa,
9222 .policy = nl80211_policy,
9223 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009224 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009225 NL80211_FLAG_NEED_RTNL,
Samuel Ortiz67fbb162009-11-24 23:59:15 +01009226 },
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009227 {
9228 .cmd = NL80211_CMD_REMAIN_ON_CHANNEL,
9229 .doit = nl80211_remain_on_channel,
9230 .policy = nl80211_policy,
9231 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009232 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009233 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009234 },
9235 {
9236 .cmd = NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
9237 .doit = nl80211_cancel_remain_on_channel,
9238 .policy = nl80211_policy,
9239 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009240 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009241 NL80211_FLAG_NEED_RTNL,
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009242 },
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009243 {
9244 .cmd = NL80211_CMD_SET_TX_BITRATE_MASK,
9245 .doit = nl80211_set_tx_bitrate_mask,
9246 .policy = nl80211_policy,
9247 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009248 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9249 NL80211_FLAG_NEED_RTNL,
Jouni Malinen13ae75b2009-12-29 12:59:45 +02009250 },
Jouni Malinen026331c2010-02-15 12:53:10 +02009251 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009252 .cmd = NL80211_CMD_REGISTER_FRAME,
9253 .doit = nl80211_register_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009254 .policy = nl80211_policy,
9255 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009256 .internal_flags = NL80211_FLAG_NEED_WDEV |
Johannes Berg4c476992010-10-04 21:36:35 +02009257 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009258 },
9259 {
Johannes Berg2e161f72010-08-12 15:38:38 +02009260 .cmd = NL80211_CMD_FRAME,
9261 .doit = nl80211_tx_mgmt,
Jouni Malinen026331c2010-02-15 12:53:10 +02009262 .policy = nl80211_policy,
9263 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009264 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Berg4c476992010-10-04 21:36:35 +02009265 NL80211_FLAG_NEED_RTNL,
Jouni Malinen026331c2010-02-15 12:53:10 +02009266 },
Kalle Valoffb9eb32010-02-17 17:58:10 +02009267 {
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009268 .cmd = NL80211_CMD_FRAME_WAIT_CANCEL,
9269 .doit = nl80211_tx_mgmt_cancel_wait,
9270 .policy = nl80211_policy,
9271 .flags = GENL_ADMIN_PERM,
Johannes Berg71bbc992012-06-15 15:30:18 +02009272 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
Johannes Bergf7ca38d2010-11-25 10:02:29 +01009273 NL80211_FLAG_NEED_RTNL,
9274 },
9275 {
Kalle Valoffb9eb32010-02-17 17:58:10 +02009276 .cmd = NL80211_CMD_SET_POWER_SAVE,
9277 .doit = nl80211_set_power_save,
9278 .policy = nl80211_policy,
9279 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009280 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9281 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009282 },
9283 {
9284 .cmd = NL80211_CMD_GET_POWER_SAVE,
9285 .doit = nl80211_get_power_save,
9286 .policy = nl80211_policy,
9287 /* can be retrieved by unprivileged users */
Johannes Berg4c476992010-10-04 21:36:35 +02009288 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9289 NL80211_FLAG_NEED_RTNL,
Kalle Valoffb9eb32010-02-17 17:58:10 +02009290 },
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009291 {
9292 .cmd = NL80211_CMD_SET_CQM,
9293 .doit = nl80211_set_cqm,
9294 .policy = nl80211_policy,
9295 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009296 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9297 NL80211_FLAG_NEED_RTNL,
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +02009298 },
Johannes Bergf444de02010-05-05 15:25:02 +02009299 {
9300 .cmd = NL80211_CMD_SET_CHANNEL,
9301 .doit = nl80211_set_channel,
9302 .policy = nl80211_policy,
9303 .flags = GENL_ADMIN_PERM,
Johannes Berg4c476992010-10-04 21:36:35 +02009304 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9305 NL80211_FLAG_NEED_RTNL,
Johannes Bergf444de02010-05-05 15:25:02 +02009306 },
Bill Jordane8347eb2010-10-01 13:54:28 -04009307 {
9308 .cmd = NL80211_CMD_SET_WDS_PEER,
9309 .doit = nl80211_set_wds_peer,
9310 .policy = nl80211_policy,
9311 .flags = GENL_ADMIN_PERM,
Johannes Berg43b19952010-10-07 13:10:30 +02009312 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9313 NL80211_FLAG_NEED_RTNL,
Bill Jordane8347eb2010-10-01 13:54:28 -04009314 },
Johannes Berg29cbe682010-12-03 09:20:44 +01009315 {
9316 .cmd = NL80211_CMD_JOIN_MESH,
9317 .doit = nl80211_join_mesh,
9318 .policy = nl80211_policy,
9319 .flags = GENL_ADMIN_PERM,
9320 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9321 NL80211_FLAG_NEED_RTNL,
9322 },
9323 {
9324 .cmd = NL80211_CMD_LEAVE_MESH,
9325 .doit = nl80211_leave_mesh,
9326 .policy = nl80211_policy,
9327 .flags = GENL_ADMIN_PERM,
9328 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9329 NL80211_FLAG_NEED_RTNL,
9330 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009331#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02009332 {
9333 .cmd = NL80211_CMD_GET_WOWLAN,
9334 .doit = nl80211_get_wowlan,
9335 .policy = nl80211_policy,
9336 /* can be retrieved by unprivileged users */
9337 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9338 NL80211_FLAG_NEED_RTNL,
9339 },
9340 {
9341 .cmd = NL80211_CMD_SET_WOWLAN,
9342 .doit = nl80211_set_wowlan,
9343 .policy = nl80211_policy,
9344 .flags = GENL_ADMIN_PERM,
9345 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9346 NL80211_FLAG_NEED_RTNL,
9347 },
Johannes Bergdfb89c52012-06-27 09:23:48 +02009348#endif
Johannes Berge5497d72011-07-05 16:35:40 +02009349 {
9350 .cmd = NL80211_CMD_SET_REKEY_OFFLOAD,
9351 .doit = nl80211_set_rekey_data,
9352 .policy = nl80211_policy,
9353 .flags = GENL_ADMIN_PERM,
9354 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9355 NL80211_FLAG_NEED_RTNL,
9356 },
Arik Nemtsov109086c2011-09-28 14:12:50 +03009357 {
9358 .cmd = NL80211_CMD_TDLS_MGMT,
9359 .doit = nl80211_tdls_mgmt,
9360 .policy = nl80211_policy,
9361 .flags = GENL_ADMIN_PERM,
9362 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9363 NL80211_FLAG_NEED_RTNL,
9364 },
9365 {
9366 .cmd = NL80211_CMD_TDLS_OPER,
9367 .doit = nl80211_tdls_oper,
9368 .policy = nl80211_policy,
9369 .flags = GENL_ADMIN_PERM,
9370 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9371 NL80211_FLAG_NEED_RTNL,
9372 },
Johannes Berg28946da2011-11-04 11:18:12 +01009373 {
9374 .cmd = NL80211_CMD_UNEXPECTED_FRAME,
9375 .doit = nl80211_register_unexpected_frame,
9376 .policy = nl80211_policy,
9377 .flags = GENL_ADMIN_PERM,
9378 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9379 NL80211_FLAG_NEED_RTNL,
9380 },
Johannes Berg7f6cf312011-11-04 11:18:15 +01009381 {
9382 .cmd = NL80211_CMD_PROBE_CLIENT,
9383 .doit = nl80211_probe_client,
9384 .policy = nl80211_policy,
9385 .flags = GENL_ADMIN_PERM,
Johannes Berg2b5f8b02012-04-02 10:51:55 +02009386 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
Johannes Berg7f6cf312011-11-04 11:18:15 +01009387 NL80211_FLAG_NEED_RTNL,
9388 },
Johannes Berg5e7602302011-11-04 11:18:17 +01009389 {
9390 .cmd = NL80211_CMD_REGISTER_BEACONS,
9391 .doit = nl80211_register_beacons,
9392 .policy = nl80211_policy,
9393 .flags = GENL_ADMIN_PERM,
9394 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9395 NL80211_FLAG_NEED_RTNL,
9396 },
Simon Wunderlich1d9d9212011-11-18 14:20:43 +01009397 {
9398 .cmd = NL80211_CMD_SET_NOACK_MAP,
9399 .doit = nl80211_set_noack_map,
9400 .policy = nl80211_policy,
9401 .flags = GENL_ADMIN_PERM,
9402 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9403 NL80211_FLAG_NEED_RTNL,
9404 },
Johannes Berg98104fde2012-06-16 00:19:54 +02009405 {
9406 .cmd = NL80211_CMD_START_P2P_DEVICE,
9407 .doit = nl80211_start_p2p_device,
9408 .policy = nl80211_policy,
9409 .flags = GENL_ADMIN_PERM,
9410 .internal_flags = NL80211_FLAG_NEED_WDEV |
9411 NL80211_FLAG_NEED_RTNL,
9412 },
9413 {
9414 .cmd = NL80211_CMD_STOP_P2P_DEVICE,
9415 .doit = nl80211_stop_p2p_device,
9416 .policy = nl80211_policy,
9417 .flags = GENL_ADMIN_PERM,
9418 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9419 NL80211_FLAG_NEED_RTNL,
9420 },
Antonio Quartullif4e583c2012-11-02 13:27:48 +01009421 {
9422 .cmd = NL80211_CMD_SET_MCAST_RATE,
9423 .doit = nl80211_set_mcast_rate,
9424 .policy = nl80211_policy,
9425 .flags = GENL_ADMIN_PERM,
9426 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9427 NL80211_FLAG_NEED_RTNL,
9428 },
Vasanthakumar Thiagarajan77765ea2013-01-18 11:18:45 +05309429 {
9430 .cmd = NL80211_CMD_SET_MAC_ACL,
9431 .doit = nl80211_set_mac_acl,
9432 .policy = nl80211_policy,
9433 .flags = GENL_ADMIN_PERM,
9434 .internal_flags = NL80211_FLAG_NEED_NETDEV |
9435 NL80211_FLAG_NEED_RTNL,
9436 },
Simon Wunderlich04f39042013-02-08 18:16:19 +01009437 {
9438 .cmd = NL80211_CMD_RADAR_DETECT,
9439 .doit = nl80211_start_radar_detection,
9440 .policy = nl80211_policy,
9441 .flags = GENL_ADMIN_PERM,
9442 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9443 NL80211_FLAG_NEED_RTNL,
9444 },
Johannes Berg3713b4e2013-02-14 16:19:38 +01009445 {
9446 .cmd = NL80211_CMD_GET_PROTOCOL_FEATURES,
9447 .doit = nl80211_get_protocol_features,
9448 .policy = nl80211_policy,
9449 },
Jouni Malinen355199e2013-02-27 17:14:27 +02009450 {
9451 .cmd = NL80211_CMD_UPDATE_FT_IES,
9452 .doit = nl80211_update_ft_ies,
9453 .policy = nl80211_policy,
9454 .flags = GENL_ADMIN_PERM,
9455 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9456 NL80211_FLAG_NEED_RTNL,
9457 },
Arend van Spriel5de17982013-04-18 15:49:00 +02009458 {
9459 .cmd = NL80211_CMD_CRIT_PROTOCOL_START,
9460 .doit = nl80211_crit_protocol_start,
9461 .policy = nl80211_policy,
9462 .flags = GENL_ADMIN_PERM,
9463 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9464 NL80211_FLAG_NEED_RTNL,
9465 },
9466 {
9467 .cmd = NL80211_CMD_CRIT_PROTOCOL_STOP,
9468 .doit = nl80211_crit_protocol_stop,
9469 .policy = nl80211_policy,
9470 .flags = GENL_ADMIN_PERM,
9471 .internal_flags = NL80211_FLAG_NEED_WDEV_UP |
9472 NL80211_FLAG_NEED_RTNL,
Amitkumar Karwarbe29b992013-06-28 11:51:26 -07009473 },
9474 {
9475 .cmd = NL80211_CMD_GET_COALESCE,
9476 .doit = nl80211_get_coalesce,
9477 .policy = nl80211_policy,
9478 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9479 NL80211_FLAG_NEED_RTNL,
9480 },
9481 {
9482 .cmd = NL80211_CMD_SET_COALESCE,
9483 .doit = nl80211_set_coalesce,
9484 .policy = nl80211_policy,
9485 .flags = GENL_ADMIN_PERM,
9486 .internal_flags = NL80211_FLAG_NEED_WIPHY |
9487 NL80211_FLAG_NEED_RTNL,
Simon Wunderlich16ef1fe2013-07-11 16:09:05 +02009488 },
9489 {
9490 .cmd = NL80211_CMD_CHANNEL_SWITCH,
9491 .doit = nl80211_channel_switch,
9492 .policy = nl80211_policy,
9493 .flags = GENL_ADMIN_PERM,
9494 .internal_flags = NL80211_FLAG_NEED_NETDEV_UP |
9495 NL80211_FLAG_NEED_RTNL,
9496 },
Johannes Berg55682962007-09-20 13:09:35 -04009497};
Jouni Malinen9588bbd2009-12-23 13:15:41 +01009498
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009499static struct genl_multicast_group nl80211_mlme_mcgrp = {
9500 .name = "mlme",
9501};
Johannes Berg55682962007-09-20 13:09:35 -04009502
9503/* multicast groups */
9504static struct genl_multicast_group nl80211_config_mcgrp = {
9505 .name = "config",
9506};
Johannes Berg2a519312009-02-10 21:25:55 +01009507static struct genl_multicast_group nl80211_scan_mcgrp = {
9508 .name = "scan",
9509};
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009510static struct genl_multicast_group nl80211_regulatory_mcgrp = {
9511 .name = "regulatory",
9512};
Johannes Berg55682962007-09-20 13:09:35 -04009513
9514/* notification functions */
9515
9516void nl80211_notify_dev_rename(struct cfg80211_registered_device *rdev)
9517{
9518 struct sk_buff *msg;
Johannes Berg86e8cf92013-06-19 10:57:22 +02009519 struct nl80211_dump_wiphy_state state = {};
Johannes Berg55682962007-09-20 13:09:35 -04009520
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009521 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009522 if (!msg)
9523 return;
9524
Johannes Berg86e8cf92013-06-19 10:57:22 +02009525 if (nl80211_send_wiphy(rdev, msg, 0, 0, 0, &state) < 0) {
Johannes Berg55682962007-09-20 13:09:35 -04009526 nlmsg_free(msg);
9527 return;
9528 }
9529
Johannes Berg463d0182009-07-14 00:33:35 +02009530 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9531 nl80211_config_mcgrp.id, GFP_KERNEL);
Johannes Berg55682962007-09-20 13:09:35 -04009532}
9533
Johannes Berg362a4152009-05-24 16:43:15 +02009534static int nl80211_add_scan_req(struct sk_buff *msg,
9535 struct cfg80211_registered_device *rdev)
9536{
9537 struct cfg80211_scan_request *req = rdev->scan_req;
9538 struct nlattr *nest;
9539 int i;
9540
9541 if (WARN_ON(!req))
9542 return 0;
9543
9544 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
9545 if (!nest)
9546 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009547 for (i = 0; i < req->n_ssids; i++) {
9548 if (nla_put(msg, i, req->ssids[i].ssid_len, req->ssids[i].ssid))
9549 goto nla_put_failure;
9550 }
Johannes Berg362a4152009-05-24 16:43:15 +02009551 nla_nest_end(msg, nest);
9552
9553 nest = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
9554 if (!nest)
9555 goto nla_put_failure;
David S. Miller9360ffd2012-03-29 04:41:26 -04009556 for (i = 0; i < req->n_channels; i++) {
9557 if (nla_put_u32(msg, i, req->channels[i]->center_freq))
9558 goto nla_put_failure;
9559 }
Johannes Berg362a4152009-05-24 16:43:15 +02009560 nla_nest_end(msg, nest);
9561
David S. Miller9360ffd2012-03-29 04:41:26 -04009562 if (req->ie &&
9563 nla_put(msg, NL80211_ATTR_IE, req->ie_len, req->ie))
9564 goto nla_put_failure;
Johannes Berg362a4152009-05-24 16:43:15 +02009565
Sam Lefflered4737712012-10-11 21:03:31 -07009566 if (req->flags)
9567 nla_put_u32(msg, NL80211_ATTR_SCAN_FLAGS, req->flags);
9568
Johannes Berg362a4152009-05-24 16:43:15 +02009569 return 0;
9570 nla_put_failure:
9571 return -ENOBUFS;
9572}
9573
Johannes Berga538e2d2009-06-16 19:56:42 +02009574static int nl80211_send_scan_msg(struct sk_buff *msg,
9575 struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009576 struct wireless_dev *wdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009577 u32 portid, u32 seq, int flags,
Johannes Berga538e2d2009-06-16 19:56:42 +02009578 u32 cmd)
Johannes Berg2a519312009-02-10 21:25:55 +01009579{
9580 void *hdr;
9581
Eric W. Biederman15e47302012-09-07 20:12:54 +00009582 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Johannes Berg2a519312009-02-10 21:25:55 +01009583 if (!hdr)
9584 return -1;
9585
David S. Miller9360ffd2012-03-29 04:41:26 -04009586 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Bergfd014282012-06-18 19:17:03 +02009587 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
9588 wdev->netdev->ifindex)) ||
9589 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
David S. Miller9360ffd2012-03-29 04:41:26 -04009590 goto nla_put_failure;
Johannes Berg2a519312009-02-10 21:25:55 +01009591
Johannes Berg362a4152009-05-24 16:43:15 +02009592 /* ignore errors and send incomplete event anyway */
9593 nl80211_add_scan_req(msg, rdev);
Johannes Berg2a519312009-02-10 21:25:55 +01009594
9595 return genlmsg_end(msg, hdr);
9596
9597 nla_put_failure:
9598 genlmsg_cancel(msg, hdr);
9599 return -EMSGSIZE;
9600}
9601
Luciano Coelho807f8a82011-05-11 17:09:35 +03009602static int
9603nl80211_send_sched_scan_msg(struct sk_buff *msg,
9604 struct cfg80211_registered_device *rdev,
9605 struct net_device *netdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +00009606 u32 portid, u32 seq, int flags, u32 cmd)
Luciano Coelho807f8a82011-05-11 17:09:35 +03009607{
9608 void *hdr;
9609
Eric W. Biederman15e47302012-09-07 20:12:54 +00009610 hdr = nl80211hdr_put(msg, portid, seq, flags, cmd);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009611 if (!hdr)
9612 return -1;
9613
David S. Miller9360ffd2012-03-29 04:41:26 -04009614 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9615 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
9616 goto nla_put_failure;
Luciano Coelho807f8a82011-05-11 17:09:35 +03009617
9618 return genlmsg_end(msg, hdr);
9619
9620 nla_put_failure:
9621 genlmsg_cancel(msg, hdr);
9622 return -EMSGSIZE;
9623}
9624
Johannes Berga538e2d2009-06-16 19:56:42 +02009625void nl80211_send_scan_start(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009626 struct wireless_dev *wdev)
Johannes Berga538e2d2009-06-16 19:56:42 +02009627{
9628 struct sk_buff *msg;
9629
Thomas Graf58050fc2012-06-28 03:57:45 +00009630 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009631 if (!msg)
9632 return;
9633
Johannes Bergfd014282012-06-18 19:17:03 +02009634 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009635 NL80211_CMD_TRIGGER_SCAN) < 0) {
9636 nlmsg_free(msg);
9637 return;
9638 }
9639
Johannes Berg463d0182009-07-14 00:33:35 +02009640 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9641 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berga538e2d2009-06-16 19:56:42 +02009642}
9643
Johannes Berg2a519312009-02-10 21:25:55 +01009644void nl80211_send_scan_done(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009645 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009646{
9647 struct sk_buff *msg;
9648
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009649 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009650 if (!msg)
9651 return;
9652
Johannes Bergfd014282012-06-18 19:17:03 +02009653 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009654 NL80211_CMD_NEW_SCAN_RESULTS) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009655 nlmsg_free(msg);
9656 return;
9657 }
9658
Johannes Berg463d0182009-07-14 00:33:35 +02009659 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9660 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009661}
9662
9663void nl80211_send_scan_aborted(struct cfg80211_registered_device *rdev,
Johannes Bergfd014282012-06-18 19:17:03 +02009664 struct wireless_dev *wdev)
Johannes Berg2a519312009-02-10 21:25:55 +01009665{
9666 struct sk_buff *msg;
9667
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009668 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009669 if (!msg)
9670 return;
9671
Johannes Bergfd014282012-06-18 19:17:03 +02009672 if (nl80211_send_scan_msg(msg, rdev, wdev, 0, 0, 0,
Johannes Berga538e2d2009-06-16 19:56:42 +02009673 NL80211_CMD_SCAN_ABORTED) < 0) {
Johannes Berg2a519312009-02-10 21:25:55 +01009674 nlmsg_free(msg);
9675 return;
9676 }
9677
Johannes Berg463d0182009-07-14 00:33:35 +02009678 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9679 nl80211_scan_mcgrp.id, GFP_KERNEL);
Johannes Berg2a519312009-02-10 21:25:55 +01009680}
9681
Luciano Coelho807f8a82011-05-11 17:09:35 +03009682void nl80211_send_sched_scan_results(struct cfg80211_registered_device *rdev,
9683 struct net_device *netdev)
9684{
9685 struct sk_buff *msg;
9686
9687 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
9688 if (!msg)
9689 return;
9690
9691 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0,
9692 NL80211_CMD_SCHED_SCAN_RESULTS) < 0) {
9693 nlmsg_free(msg);
9694 return;
9695 }
9696
9697 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9698 nl80211_scan_mcgrp.id, GFP_KERNEL);
9699}
9700
9701void nl80211_send_sched_scan(struct cfg80211_registered_device *rdev,
9702 struct net_device *netdev, u32 cmd)
9703{
9704 struct sk_buff *msg;
9705
Thomas Graf58050fc2012-06-28 03:57:45 +00009706 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luciano Coelho807f8a82011-05-11 17:09:35 +03009707 if (!msg)
9708 return;
9709
9710 if (nl80211_send_sched_scan_msg(msg, rdev, netdev, 0, 0, 0, cmd) < 0) {
9711 nlmsg_free(msg);
9712 return;
9713 }
9714
9715 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9716 nl80211_scan_mcgrp.id, GFP_KERNEL);
9717}
9718
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009719/*
9720 * This can happen on global regulatory changes or device specific settings
9721 * based on custom world regulatory domains.
9722 */
9723void nl80211_send_reg_change_event(struct regulatory_request *request)
9724{
9725 struct sk_buff *msg;
9726 void *hdr;
9727
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -07009728 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009729 if (!msg)
9730 return;
9731
9732 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_CHANGE);
9733 if (!hdr) {
9734 nlmsg_free(msg);
9735 return;
9736 }
9737
9738 /* Userspace can always count this one always being set */
David S. Miller9360ffd2012-03-29 04:41:26 -04009739 if (nla_put_u8(msg, NL80211_ATTR_REG_INITIATOR, request->initiator))
9740 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009741
David S. Miller9360ffd2012-03-29 04:41:26 -04009742 if (request->alpha2[0] == '0' && request->alpha2[1] == '0') {
9743 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9744 NL80211_REGDOM_TYPE_WORLD))
9745 goto nla_put_failure;
9746 } else if (request->alpha2[0] == '9' && request->alpha2[1] == '9') {
9747 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9748 NL80211_REGDOM_TYPE_CUSTOM_WORLD))
9749 goto nla_put_failure;
9750 } else if ((request->alpha2[0] == '9' && request->alpha2[1] == '8') ||
9751 request->intersect) {
9752 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9753 NL80211_REGDOM_TYPE_INTERSECTION))
9754 goto nla_put_failure;
9755 } else {
9756 if (nla_put_u8(msg, NL80211_ATTR_REG_TYPE,
9757 NL80211_REGDOM_TYPE_COUNTRY) ||
9758 nla_put_string(msg, NL80211_ATTR_REG_ALPHA2,
9759 request->alpha2))
9760 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009761 }
9762
Johannes Bergf4173762012-12-03 18:23:37 +01009763 if (request->wiphy_idx != WIPHY_IDX_INVALID &&
David S. Miller9360ffd2012-03-29 04:41:26 -04009764 nla_put_u32(msg, NL80211_ATTR_WIPHY, request->wiphy_idx))
9765 goto nla_put_failure;
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009766
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009767 genlmsg_end(msg, hdr);
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009768
Johannes Bergbc43b282009-07-25 10:54:13 +02009769 rcu_read_lock();
Johannes Berg463d0182009-07-14 00:33:35 +02009770 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
Johannes Bergbc43b282009-07-25 10:54:13 +02009771 GFP_ATOMIC);
9772 rcu_read_unlock();
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -04009773
9774 return;
9775
9776nla_put_failure:
9777 genlmsg_cancel(msg, hdr);
9778 nlmsg_free(msg);
9779}
9780
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009781static void nl80211_send_mlme_event(struct cfg80211_registered_device *rdev,
9782 struct net_device *netdev,
9783 const u8 *buf, size_t len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009784 enum nl80211_commands cmd, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009785{
9786 struct sk_buff *msg;
9787 void *hdr;
9788
Johannes Berge6d6e342009-07-01 21:26:47 +02009789 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009790 if (!msg)
9791 return;
9792
9793 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9794 if (!hdr) {
9795 nlmsg_free(msg);
9796 return;
9797 }
9798
David S. Miller9360ffd2012-03-29 04:41:26 -04009799 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9800 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9801 nla_put(msg, NL80211_ATTR_FRAME, len, buf))
9802 goto nla_put_failure;
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009803
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009804 genlmsg_end(msg, hdr);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009805
Johannes Berg463d0182009-07-14 00:33:35 +02009806 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9807 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009808 return;
9809
9810 nla_put_failure:
9811 genlmsg_cancel(msg, hdr);
9812 nlmsg_free(msg);
9813}
9814
9815void nl80211_send_rx_auth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009816 struct net_device *netdev, const u8 *buf,
9817 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009818{
9819 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009820 NL80211_CMD_AUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009821}
9822
9823void nl80211_send_rx_assoc(struct cfg80211_registered_device *rdev,
9824 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009825 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009826{
Johannes Berge6d6e342009-07-01 21:26:47 +02009827 nl80211_send_mlme_event(rdev, netdev, buf, len,
9828 NL80211_CMD_ASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009829}
9830
Jouni Malinen53b46b82009-03-27 20:53:56 +02009831void nl80211_send_deauth(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009832 struct net_device *netdev, const u8 *buf,
9833 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009834{
9835 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009836 NL80211_CMD_DEAUTHENTICATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009837}
9838
Jouni Malinen53b46b82009-03-27 20:53:56 +02009839void nl80211_send_disassoc(struct cfg80211_registered_device *rdev,
9840 struct net_device *netdev, const u8 *buf,
Johannes Berge6d6e342009-07-01 21:26:47 +02009841 size_t len, gfp_t gfp)
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009842{
9843 nl80211_send_mlme_event(rdev, netdev, buf, len,
Johannes Berge6d6e342009-07-01 21:26:47 +02009844 NL80211_CMD_DISASSOCIATE, gfp);
Jouni Malinen6039f6d2009-03-19 13:39:21 +02009845}
9846
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009847void cfg80211_rx_unprot_mlme_mgmt(struct net_device *dev, const u8 *buf,
9848 size_t len)
Jouni Malinencf4e5942010-12-16 00:52:40 +02009849{
Johannes Berg947add32013-02-22 22:05:20 +01009850 struct wireless_dev *wdev = dev->ieee80211_ptr;
9851 struct wiphy *wiphy = wdev->wiphy;
9852 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009853 const struct ieee80211_mgmt *mgmt = (void *)buf;
9854 u32 cmd;
Jouni Malinencf4e5942010-12-16 00:52:40 +02009855
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009856 if (WARN_ON(len < 2))
9857 return;
9858
9859 if (ieee80211_is_deauth(mgmt->frame_control))
9860 cmd = NL80211_CMD_UNPROT_DEAUTHENTICATE;
9861 else
9862 cmd = NL80211_CMD_UNPROT_DISASSOCIATE;
9863
9864 trace_cfg80211_rx_unprot_mlme_mgmt(dev, buf, len);
9865 nl80211_send_mlme_event(rdev, dev, buf, len, cmd, GFP_ATOMIC);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009866}
Johannes Berg6ff57cf2013-05-16 00:55:00 +02009867EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt);
Jouni Malinencf4e5942010-12-16 00:52:40 +02009868
Luis R. Rodriguez1b06bb42009-05-02 00:34:48 -04009869static void nl80211_send_mlme_timeout(struct cfg80211_registered_device *rdev,
9870 struct net_device *netdev, int cmd,
Johannes Berge6d6e342009-07-01 21:26:47 +02009871 const u8 *addr, gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009872{
9873 struct sk_buff *msg;
9874 void *hdr;
9875
Johannes Berge6d6e342009-07-01 21:26:47 +02009876 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009877 if (!msg)
9878 return;
9879
9880 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
9881 if (!hdr) {
9882 nlmsg_free(msg);
9883 return;
9884 }
9885
David S. Miller9360ffd2012-03-29 04:41:26 -04009886 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9887 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9888 nla_put_flag(msg, NL80211_ATTR_TIMED_OUT) ||
9889 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
9890 goto nla_put_failure;
Jouni Malinen1965c852009-04-22 21:38:25 +03009891
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009892 genlmsg_end(msg, hdr);
Jouni Malinen1965c852009-04-22 21:38:25 +03009893
Johannes Berg463d0182009-07-14 00:33:35 +02009894 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9895 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009896 return;
9897
9898 nla_put_failure:
9899 genlmsg_cancel(msg, hdr);
9900 nlmsg_free(msg);
9901}
9902
9903void nl80211_send_auth_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009904 struct net_device *netdev, const u8 *addr,
9905 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009906{
9907 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_AUTHENTICATE,
Johannes Berge6d6e342009-07-01 21:26:47 +02009908 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009909}
9910
9911void nl80211_send_assoc_timeout(struct cfg80211_registered_device *rdev,
Johannes Berge6d6e342009-07-01 21:26:47 +02009912 struct net_device *netdev, const u8 *addr,
9913 gfp_t gfp)
Jouni Malinen1965c852009-04-22 21:38:25 +03009914{
Johannes Berge6d6e342009-07-01 21:26:47 +02009915 nl80211_send_mlme_timeout(rdev, netdev, NL80211_CMD_ASSOCIATE,
9916 addr, gfp);
Jouni Malinen1965c852009-04-22 21:38:25 +03009917}
9918
Samuel Ortizb23aa672009-07-01 21:26:54 +02009919void nl80211_send_connect_result(struct cfg80211_registered_device *rdev,
9920 struct net_device *netdev, const u8 *bssid,
9921 const u8 *req_ie, size_t req_ie_len,
9922 const u8 *resp_ie, size_t resp_ie_len,
9923 u16 status, gfp_t gfp)
9924{
9925 struct sk_buff *msg;
9926 void *hdr;
9927
Thomas Graf58050fc2012-06-28 03:57:45 +00009928 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009929 if (!msg)
9930 return;
9931
9932 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONNECT);
9933 if (!hdr) {
9934 nlmsg_free(msg);
9935 return;
9936 }
9937
David S. Miller9360ffd2012-03-29 04:41:26 -04009938 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9939 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9940 (bssid && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid)) ||
9941 nla_put_u16(msg, NL80211_ATTR_STATUS_CODE, status) ||
9942 (req_ie &&
9943 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
9944 (resp_ie &&
9945 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
9946 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +02009947
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009948 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009949
Johannes Berg463d0182009-07-14 00:33:35 +02009950 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9951 nl80211_mlme_mcgrp.id, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009952 return;
9953
9954 nla_put_failure:
9955 genlmsg_cancel(msg, hdr);
9956 nlmsg_free(msg);
9957
9958}
9959
9960void nl80211_send_roamed(struct cfg80211_registered_device *rdev,
9961 struct net_device *netdev, const u8 *bssid,
9962 const u8 *req_ie, size_t req_ie_len,
9963 const u8 *resp_ie, size_t resp_ie_len, gfp_t gfp)
9964{
9965 struct sk_buff *msg;
9966 void *hdr;
9967
Thomas Graf58050fc2012-06-28 03:57:45 +00009968 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009969 if (!msg)
9970 return;
9971
9972 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_ROAM);
9973 if (!hdr) {
9974 nlmsg_free(msg);
9975 return;
9976 }
9977
David S. Miller9360ffd2012-03-29 04:41:26 -04009978 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
9979 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
9980 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid) ||
9981 (req_ie &&
9982 nla_put(msg, NL80211_ATTR_REQ_IE, req_ie_len, req_ie)) ||
9983 (resp_ie &&
9984 nla_put(msg, NL80211_ATTR_RESP_IE, resp_ie_len, resp_ie)))
9985 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +02009986
Johannes Berg3b7b72e2011-10-22 19:05:51 +02009987 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009988
Johannes Berg463d0182009-07-14 00:33:35 +02009989 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
9990 nl80211_mlme_mcgrp.id, gfp);
Samuel Ortizb23aa672009-07-01 21:26:54 +02009991 return;
9992
9993 nla_put_failure:
9994 genlmsg_cancel(msg, hdr);
9995 nlmsg_free(msg);
9996
9997}
9998
9999void nl80211_send_disconnected(struct cfg80211_registered_device *rdev,
10000 struct net_device *netdev, u16 reason,
Johannes Berg667503dd2009-07-07 03:56:11 +020010001 const u8 *ie, size_t ie_len, bool from_ap)
Samuel Ortizb23aa672009-07-01 21:26:54 +020010002{
10003 struct sk_buff *msg;
10004 void *hdr;
10005
Thomas Graf58050fc2012-06-28 03:57:45 +000010006 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010007 if (!msg)
10008 return;
10009
10010 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DISCONNECT);
10011 if (!hdr) {
10012 nlmsg_free(msg);
10013 return;
10014 }
10015
David S. Miller9360ffd2012-03-29 04:41:26 -040010016 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10017 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10018 (from_ap && reason &&
10019 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason)) ||
10020 (from_ap &&
10021 nla_put_flag(msg, NL80211_ATTR_DISCONNECTED_BY_AP)) ||
10022 (ie && nla_put(msg, NL80211_ATTR_IE, ie_len, ie)))
10023 goto nla_put_failure;
Samuel Ortizb23aa672009-07-01 21:26:54 +020010024
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010025 genlmsg_end(msg, hdr);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010026
Johannes Berg463d0182009-07-14 00:33:35 +020010027 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10028 nl80211_mlme_mcgrp.id, GFP_KERNEL);
Samuel Ortizb23aa672009-07-01 21:26:54 +020010029 return;
10030
10031 nla_put_failure:
10032 genlmsg_cancel(msg, hdr);
10033 nlmsg_free(msg);
10034
10035}
10036
Johannes Berg04a773a2009-04-19 21:24:32 +020010037void nl80211_send_ibss_bssid(struct cfg80211_registered_device *rdev,
10038 struct net_device *netdev, const u8 *bssid,
10039 gfp_t gfp)
10040{
10041 struct sk_buff *msg;
10042 void *hdr;
10043
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010044 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010045 if (!msg)
10046 return;
10047
10048 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_JOIN_IBSS);
10049 if (!hdr) {
10050 nlmsg_free(msg);
10051 return;
10052 }
10053
David S. Miller9360ffd2012-03-29 04:41:26 -040010054 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10055 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10056 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10057 goto nla_put_failure;
Johannes Berg04a773a2009-04-19 21:24:32 +020010058
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010059 genlmsg_end(msg, hdr);
Johannes Berg04a773a2009-04-19 21:24:32 +020010060
Johannes Berg463d0182009-07-14 00:33:35 +020010061 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10062 nl80211_mlme_mcgrp.id, gfp);
Johannes Berg04a773a2009-04-19 21:24:32 +020010063 return;
10064
10065 nla_put_failure:
10066 genlmsg_cancel(msg, hdr);
10067 nlmsg_free(msg);
10068}
10069
Johannes Berg947add32013-02-22 22:05:20 +010010070void cfg80211_notify_new_peer_candidate(struct net_device *dev, const u8 *addr,
10071 const u8* ie, u8 ie_len, gfp_t gfp)
Javier Cardonac93b5e72011-04-07 15:08:34 -070010072{
Johannes Berg947add32013-02-22 22:05:20 +010010073 struct wireless_dev *wdev = dev->ieee80211_ptr;
10074 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010075 struct sk_buff *msg;
10076 void *hdr;
10077
Johannes Berg947add32013-02-22 22:05:20 +010010078 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_MESH_POINT))
10079 return;
10080
10081 trace_cfg80211_notify_new_peer_candidate(dev, addr);
10082
Javier Cardonac93b5e72011-04-07 15:08:34 -070010083 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10084 if (!msg)
10085 return;
10086
10087 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE);
10088 if (!hdr) {
10089 nlmsg_free(msg);
10090 return;
10091 }
10092
David S. Miller9360ffd2012-03-29 04:41:26 -040010093 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010094 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10095 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010096 (ie_len && ie &&
10097 nla_put(msg, NL80211_ATTR_IE, ie_len , ie)))
10098 goto nla_put_failure;
Javier Cardonac93b5e72011-04-07 15:08:34 -070010099
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010100 genlmsg_end(msg, hdr);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010101
10102 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10103 nl80211_mlme_mcgrp.id, gfp);
10104 return;
10105
10106 nla_put_failure:
10107 genlmsg_cancel(msg, hdr);
10108 nlmsg_free(msg);
10109}
Johannes Berg947add32013-02-22 22:05:20 +010010110EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate);
Javier Cardonac93b5e72011-04-07 15:08:34 -070010111
Jouni Malinena3b8b052009-03-27 21:59:49 +020010112void nl80211_michael_mic_failure(struct cfg80211_registered_device *rdev,
10113 struct net_device *netdev, const u8 *addr,
10114 enum nl80211_key_type key_type, int key_id,
Johannes Berge6d6e342009-07-01 21:26:47 +020010115 const u8 *tsc, gfp_t gfp)
Jouni Malinena3b8b052009-03-27 21:59:49 +020010116{
10117 struct sk_buff *msg;
10118 void *hdr;
10119
Johannes Berge6d6e342009-07-01 21:26:47 +020010120 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010121 if (!msg)
10122 return;
10123
10124 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE);
10125 if (!hdr) {
10126 nlmsg_free(msg);
10127 return;
10128 }
10129
David S. Miller9360ffd2012-03-29 04:41:26 -040010130 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10131 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10132 (addr && nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr)) ||
10133 nla_put_u32(msg, NL80211_ATTR_KEY_TYPE, key_type) ||
10134 (key_id != -1 &&
10135 nla_put_u8(msg, NL80211_ATTR_KEY_IDX, key_id)) ||
10136 (tsc && nla_put(msg, NL80211_ATTR_KEY_SEQ, 6, tsc)))
10137 goto nla_put_failure;
Jouni Malinena3b8b052009-03-27 21:59:49 +020010138
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010139 genlmsg_end(msg, hdr);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010140
Johannes Berg463d0182009-07-14 00:33:35 +020010141 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10142 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinena3b8b052009-03-27 21:59:49 +020010143 return;
10144
10145 nla_put_failure:
10146 genlmsg_cancel(msg, hdr);
10147 nlmsg_free(msg);
10148}
10149
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010150void nl80211_send_beacon_hint_event(struct wiphy *wiphy,
10151 struct ieee80211_channel *channel_before,
10152 struct ieee80211_channel *channel_after)
10153{
10154 struct sk_buff *msg;
10155 void *hdr;
10156 struct nlattr *nl_freq;
10157
Pablo Neira Ayusofd2120c2009-05-19 15:27:55 -070010158 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010159 if (!msg)
10160 return;
10161
10162 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT);
10163 if (!hdr) {
10164 nlmsg_free(msg);
10165 return;
10166 }
10167
10168 /*
10169 * Since we are applying the beacon hint to a wiphy we know its
10170 * wiphy_idx is valid
10171 */
David S. Miller9360ffd2012-03-29 04:41:26 -040010172 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, get_wiphy_idx(wiphy)))
10173 goto nla_put_failure;
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010174
10175 /* Before */
10176 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_BEFORE);
10177 if (!nl_freq)
10178 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010179 if (nl80211_msg_put_channel(msg, channel_before, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010180 goto nla_put_failure;
10181 nla_nest_end(msg, nl_freq);
10182
10183 /* After */
10184 nl_freq = nla_nest_start(msg, NL80211_ATTR_FREQ_AFTER);
10185 if (!nl_freq)
10186 goto nla_put_failure;
Johannes Bergcdc89b92013-02-18 23:54:36 +010010187 if (nl80211_msg_put_channel(msg, channel_after, false))
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010188 goto nla_put_failure;
10189 nla_nest_end(msg, nl_freq);
10190
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010191 genlmsg_end(msg, hdr);
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010192
Johannes Berg463d0182009-07-14 00:33:35 +020010193 rcu_read_lock();
10194 genlmsg_multicast_allns(msg, 0, nl80211_regulatory_mcgrp.id,
10195 GFP_ATOMIC);
10196 rcu_read_unlock();
Luis R. Rodriguez6bad8762009-04-02 14:08:09 -040010197
10198 return;
10199
10200nla_put_failure:
10201 genlmsg_cancel(msg, hdr);
10202 nlmsg_free(msg);
10203}
10204
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010205static void nl80211_send_remain_on_chan_event(
10206 int cmd, struct cfg80211_registered_device *rdev,
Johannes Berg71bbc992012-06-15 15:30:18 +020010207 struct wireless_dev *wdev, u64 cookie,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010208 struct ieee80211_channel *chan,
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010209 unsigned int duration, gfp_t gfp)
10210{
10211 struct sk_buff *msg;
10212 void *hdr;
10213
10214 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10215 if (!msg)
10216 return;
10217
10218 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
10219 if (!hdr) {
10220 nlmsg_free(msg);
10221 return;
10222 }
10223
David S. Miller9360ffd2012-03-29 04:41:26 -040010224 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010225 (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10226 wdev->netdev->ifindex)) ||
Johannes Berg00f53352012-07-17 11:53:12 +020010227 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010228 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, chan->center_freq) ||
Johannes Berg42d97a52012-11-08 18:31:02 +010010229 nla_put_u32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10230 NL80211_CHAN_NO_HT) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010231 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie))
10232 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010233
David S. Miller9360ffd2012-03-29 04:41:26 -040010234 if (cmd == NL80211_CMD_REMAIN_ON_CHANNEL &&
10235 nla_put_u32(msg, NL80211_ATTR_DURATION, duration))
10236 goto nla_put_failure;
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010237
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010238 genlmsg_end(msg, hdr);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010239
10240 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10241 nl80211_mlme_mcgrp.id, gfp);
10242 return;
10243
10244 nla_put_failure:
10245 genlmsg_cancel(msg, hdr);
10246 nlmsg_free(msg);
10247}
10248
Johannes Berg947add32013-02-22 22:05:20 +010010249void cfg80211_ready_on_channel(struct wireless_dev *wdev, u64 cookie,
10250 struct ieee80211_channel *chan,
10251 unsigned int duration, gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010252{
Johannes Berg947add32013-02-22 22:05:20 +010010253 struct wiphy *wiphy = wdev->wiphy;
10254 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10255
10256 trace_cfg80211_ready_on_channel(wdev, cookie, chan, duration);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010257 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL,
Johannes Berg71bbc992012-06-15 15:30:18 +020010258 rdev, wdev, cookie, chan,
Johannes Berg42d97a52012-11-08 18:31:02 +010010259 duration, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010260}
Johannes Berg947add32013-02-22 22:05:20 +010010261EXPORT_SYMBOL(cfg80211_ready_on_channel);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010262
Johannes Berg947add32013-02-22 22:05:20 +010010263void cfg80211_remain_on_channel_expired(struct wireless_dev *wdev, u64 cookie,
10264 struct ieee80211_channel *chan,
10265 gfp_t gfp)
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010266{
Johannes Berg947add32013-02-22 22:05:20 +010010267 struct wiphy *wiphy = wdev->wiphy;
10268 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10269
10270 trace_cfg80211_ready_on_channel_expired(wdev, cookie, chan);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010271 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL,
Johannes Berg42d97a52012-11-08 18:31:02 +010010272 rdev, wdev, cookie, chan, 0, gfp);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010273}
Johannes Berg947add32013-02-22 22:05:20 +010010274EXPORT_SYMBOL(cfg80211_remain_on_channel_expired);
Jouni Malinen9588bbd2009-12-23 13:15:41 +010010275
Johannes Berg947add32013-02-22 22:05:20 +010010276void cfg80211_new_sta(struct net_device *dev, const u8 *mac_addr,
10277 struct station_info *sinfo, gfp_t gfp)
Johannes Berg98b62182009-12-23 13:15:44 +010010278{
Johannes Berg947add32013-02-22 22:05:20 +010010279 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10280 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg98b62182009-12-23 13:15:44 +010010281 struct sk_buff *msg;
10282
Johannes Berg947add32013-02-22 22:05:20 +010010283 trace_cfg80211_new_sta(dev, mac_addr, sinfo);
10284
Thomas Graf58050fc2012-06-28 03:57:45 +000010285 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berg98b62182009-12-23 13:15:44 +010010286 if (!msg)
10287 return;
10288
John W. Linville66266b32012-03-15 13:25:41 -040010289 if (nl80211_send_station(msg, 0, 0, 0,
10290 rdev, dev, mac_addr, sinfo) < 0) {
Johannes Berg98b62182009-12-23 13:15:44 +010010291 nlmsg_free(msg);
10292 return;
10293 }
10294
10295 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10296 nl80211_mlme_mcgrp.id, gfp);
10297}
Johannes Berg947add32013-02-22 22:05:20 +010010298EXPORT_SYMBOL(cfg80211_new_sta);
Johannes Berg98b62182009-12-23 13:15:44 +010010299
Johannes Berg947add32013-02-22 22:05:20 +010010300void cfg80211_del_sta(struct net_device *dev, const u8 *mac_addr, gfp_t gfp)
Jouni Malinenec15e682011-03-23 15:29:52 +020010301{
Johannes Berg947add32013-02-22 22:05:20 +010010302 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10303 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Jouni Malinenec15e682011-03-23 15:29:52 +020010304 struct sk_buff *msg;
10305 void *hdr;
10306
Johannes Berg947add32013-02-22 22:05:20 +010010307 trace_cfg80211_del_sta(dev, mac_addr);
10308
Thomas Graf58050fc2012-06-28 03:57:45 +000010309 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenec15e682011-03-23 15:29:52 +020010310 if (!msg)
10311 return;
10312
10313 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_DEL_STATION);
10314 if (!hdr) {
10315 nlmsg_free(msg);
10316 return;
10317 }
10318
David S. Miller9360ffd2012-03-29 04:41:26 -040010319 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10320 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr))
10321 goto nla_put_failure;
Jouni Malinenec15e682011-03-23 15:29:52 +020010322
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010323 genlmsg_end(msg, hdr);
Jouni Malinenec15e682011-03-23 15:29:52 +020010324
10325 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10326 nl80211_mlme_mcgrp.id, gfp);
10327 return;
10328
10329 nla_put_failure:
10330 genlmsg_cancel(msg, hdr);
10331 nlmsg_free(msg);
10332}
Johannes Berg947add32013-02-22 22:05:20 +010010333EXPORT_SYMBOL(cfg80211_del_sta);
Jouni Malinenec15e682011-03-23 15:29:52 +020010334
Johannes Berg947add32013-02-22 22:05:20 +010010335void cfg80211_conn_failed(struct net_device *dev, const u8 *mac_addr,
10336 enum nl80211_connect_failed_reason reason,
10337 gfp_t gfp)
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010338{
Johannes Berg947add32013-02-22 22:05:20 +010010339 struct wiphy *wiphy = dev->ieee80211_ptr->wiphy;
10340 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010341 struct sk_buff *msg;
10342 void *hdr;
10343
10344 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10345 if (!msg)
10346 return;
10347
10348 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CONN_FAILED);
10349 if (!hdr) {
10350 nlmsg_free(msg);
10351 return;
10352 }
10353
10354 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10355 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr) ||
10356 nla_put_u32(msg, NL80211_ATTR_CONN_FAILED_REASON, reason))
10357 goto nla_put_failure;
10358
10359 genlmsg_end(msg, hdr);
10360
10361 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10362 nl80211_mlme_mcgrp.id, gfp);
10363 return;
10364
10365 nla_put_failure:
10366 genlmsg_cancel(msg, hdr);
10367 nlmsg_free(msg);
10368}
Johannes Berg947add32013-02-22 22:05:20 +010010369EXPORT_SYMBOL(cfg80211_conn_failed);
Pandiyarajan Pitchaimuthued44a952012-09-18 16:50:49 +053010370
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010371static bool __nl80211_unexpected_frame(struct net_device *dev, u8 cmd,
10372 const u8 *addr, gfp_t gfp)
Johannes Berg28946da2011-11-04 11:18:12 +010010373{
10374 struct wireless_dev *wdev = dev->ieee80211_ptr;
10375 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10376 struct sk_buff *msg;
10377 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +000010378 u32 nlportid = ACCESS_ONCE(wdev->ap_unexpected_nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010379
Eric W. Biederman15e47302012-09-07 20:12:54 +000010380 if (!nlportid)
Johannes Berg28946da2011-11-04 11:18:12 +010010381 return false;
10382
10383 msg = nlmsg_new(100, gfp);
10384 if (!msg)
10385 return true;
10386
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010387 hdr = nl80211hdr_put(msg, 0, 0, 0, cmd);
Johannes Berg28946da2011-11-04 11:18:12 +010010388 if (!hdr) {
10389 nlmsg_free(msg);
10390 return true;
10391 }
10392
David S. Miller9360ffd2012-03-29 04:41:26 -040010393 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10394 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10395 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr))
10396 goto nla_put_failure;
Johannes Berg28946da2011-11-04 11:18:12 +010010397
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010398 genlmsg_end(msg, hdr);
Eric W. Biederman15e47302012-09-07 20:12:54 +000010399 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Johannes Berg28946da2011-11-04 11:18:12 +010010400 return true;
10401
10402 nla_put_failure:
10403 genlmsg_cancel(msg, hdr);
10404 nlmsg_free(msg);
10405 return true;
10406}
10407
Johannes Berg947add32013-02-22 22:05:20 +010010408bool cfg80211_rx_spurious_frame(struct net_device *dev,
10409 const u8 *addr, gfp_t gfp)
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010410{
Johannes Berg947add32013-02-22 22:05:20 +010010411 struct wireless_dev *wdev = dev->ieee80211_ptr;
10412 bool ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010413
Johannes Berg947add32013-02-22 22:05:20 +010010414 trace_cfg80211_rx_spurious_frame(dev, addr);
10415
10416 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10417 wdev->iftype != NL80211_IFTYPE_P2P_GO)) {
10418 trace_cfg80211_return_bool(false);
10419 return false;
10420 }
10421 ret = __nl80211_unexpected_frame(dev, NL80211_CMD_UNEXPECTED_FRAME,
10422 addr, gfp);
10423 trace_cfg80211_return_bool(ret);
10424 return ret;
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010425}
Johannes Berg947add32013-02-22 22:05:20 +010010426EXPORT_SYMBOL(cfg80211_rx_spurious_frame);
10427
10428bool cfg80211_rx_unexpected_4addr_frame(struct net_device *dev,
10429 const u8 *addr, gfp_t gfp)
10430{
10431 struct wireless_dev *wdev = dev->ieee80211_ptr;
10432 bool ret;
10433
10434 trace_cfg80211_rx_unexpected_4addr_frame(dev, addr);
10435
10436 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10437 wdev->iftype != NL80211_IFTYPE_P2P_GO &&
10438 wdev->iftype != NL80211_IFTYPE_AP_VLAN)) {
10439 trace_cfg80211_return_bool(false);
10440 return false;
10441 }
10442 ret = __nl80211_unexpected_frame(dev,
10443 NL80211_CMD_UNEXPECTED_4ADDR_FRAME,
10444 addr, gfp);
10445 trace_cfg80211_return_bool(ret);
10446 return ret;
10447}
10448EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame);
Johannes Bergb92ab5d2011-11-04 11:18:19 +010010449
Johannes Berg2e161f72010-08-12 15:38:38 +020010450int nl80211_send_mgmt(struct cfg80211_registered_device *rdev,
Eric W. Biederman15e47302012-09-07 20:12:54 +000010451 struct wireless_dev *wdev, u32 nlportid,
Johannes Berg804483e2012-03-05 22:18:41 +010010452 int freq, int sig_dbm,
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010453 const u8 *buf, size_t len, u32 flags, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010454{
Johannes Berg71bbc992012-06-15 15:30:18 +020010455 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010456 struct sk_buff *msg;
10457 void *hdr;
Jouni Malinen026331c2010-02-15 12:53:10 +020010458
10459 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10460 if (!msg)
10461 return -ENOMEM;
10462
Johannes Berg2e161f72010-08-12 15:38:38 +020010463 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
Jouni Malinen026331c2010-02-15 12:53:10 +020010464 if (!hdr) {
10465 nlmsg_free(msg);
10466 return -ENOMEM;
10467 }
10468
David S. Miller9360ffd2012-03-29 04:41:26 -040010469 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010470 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10471 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010472 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010473 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq) ||
10474 (sig_dbm &&
10475 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
Vladimir Kondratiev19504cf2013-08-15 14:51:28 +030010476 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10477 (flags &&
10478 nla_put_u32(msg, NL80211_ATTR_RXMGMT_FLAGS, flags)))
David S. Miller9360ffd2012-03-29 04:41:26 -040010479 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010480
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010481 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010482
Eric W. Biederman15e47302012-09-07 20:12:54 +000010483 return genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
Jouni Malinen026331c2010-02-15 12:53:10 +020010484
10485 nla_put_failure:
10486 genlmsg_cancel(msg, hdr);
10487 nlmsg_free(msg);
10488 return -ENOBUFS;
10489}
10490
Johannes Berg947add32013-02-22 22:05:20 +010010491void cfg80211_mgmt_tx_status(struct wireless_dev *wdev, u64 cookie,
10492 const u8 *buf, size_t len, bool ack, gfp_t gfp)
Jouni Malinen026331c2010-02-15 12:53:10 +020010493{
Johannes Berg947add32013-02-22 22:05:20 +010010494 struct wiphy *wiphy = wdev->wiphy;
10495 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +020010496 struct net_device *netdev = wdev->netdev;
Jouni Malinen026331c2010-02-15 12:53:10 +020010497 struct sk_buff *msg;
10498 void *hdr;
10499
Johannes Berg947add32013-02-22 22:05:20 +010010500 trace_cfg80211_mgmt_tx_status(wdev, cookie, ack);
10501
Jouni Malinen026331c2010-02-15 12:53:10 +020010502 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10503 if (!msg)
10504 return;
10505
Johannes Berg2e161f72010-08-12 15:38:38 +020010506 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS);
Jouni Malinen026331c2010-02-15 12:53:10 +020010507 if (!hdr) {
10508 nlmsg_free(msg);
10509 return;
10510 }
10511
David S. Miller9360ffd2012-03-29 04:41:26 -040010512 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg71bbc992012-06-15 15:30:18 +020010513 (netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
10514 netdev->ifindex)) ||
Ilan Peera8384902013-05-08 16:35:55 +030010515 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010516 nla_put(msg, NL80211_ATTR_FRAME, len, buf) ||
10517 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
10518 (ack && nla_put_flag(msg, NL80211_ATTR_ACK)))
10519 goto nla_put_failure;
Jouni Malinen026331c2010-02-15 12:53:10 +020010520
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010521 genlmsg_end(msg, hdr);
Jouni Malinen026331c2010-02-15 12:53:10 +020010522
Michal Kaziora0ec5702013-06-25 09:17:17 +020010523 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10524 nl80211_mlme_mcgrp.id, gfp);
Jouni Malinen026331c2010-02-15 12:53:10 +020010525 return;
10526
10527 nla_put_failure:
10528 genlmsg_cancel(msg, hdr);
10529 nlmsg_free(msg);
10530}
Johannes Berg947add32013-02-22 22:05:20 +010010531EXPORT_SYMBOL(cfg80211_mgmt_tx_status);
Jouni Malinen026331c2010-02-15 12:53:10 +020010532
Johannes Berg947add32013-02-22 22:05:20 +010010533void cfg80211_cqm_rssi_notify(struct net_device *dev,
10534 enum nl80211_cqm_rssi_threshold_event rssi_event,
10535 gfp_t gfp)
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010536{
Johannes Berg947add32013-02-22 22:05:20 +010010537 struct wireless_dev *wdev = dev->ieee80211_ptr;
10538 struct wiphy *wiphy = wdev->wiphy;
10539 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010540 struct sk_buff *msg;
10541 struct nlattr *pinfoattr;
10542 void *hdr;
10543
Johannes Berg947add32013-02-22 22:05:20 +010010544 trace_cfg80211_cqm_rssi_notify(dev, rssi_event);
10545
Thomas Graf58050fc2012-06-28 03:57:45 +000010546 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010547 if (!msg)
10548 return;
10549
10550 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10551 if (!hdr) {
10552 nlmsg_free(msg);
10553 return;
10554 }
10555
David S. Miller9360ffd2012-03-29 04:41:26 -040010556 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010557 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex))
David S. Miller9360ffd2012-03-29 04:41:26 -040010558 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010559
10560 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10561 if (!pinfoattr)
10562 goto nla_put_failure;
10563
David S. Miller9360ffd2012-03-29 04:41:26 -040010564 if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT,
10565 rssi_event))
10566 goto nla_put_failure;
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010567
10568 nla_nest_end(msg, pinfoattr);
10569
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010570 genlmsg_end(msg, hdr);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010571
10572 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10573 nl80211_mlme_mcgrp.id, gfp);
10574 return;
10575
10576 nla_put_failure:
10577 genlmsg_cancel(msg, hdr);
10578 nlmsg_free(msg);
10579}
Johannes Berg947add32013-02-22 22:05:20 +010010580EXPORT_SYMBOL(cfg80211_cqm_rssi_notify);
Juuso Oikarinend6dc1a32010-03-23 09:02:33 +020010581
Johannes Berg947add32013-02-22 22:05:20 +010010582static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device *rdev,
10583 struct net_device *netdev, const u8 *bssid,
10584 const u8 *replay_ctr, gfp_t gfp)
Johannes Berge5497d72011-07-05 16:35:40 +020010585{
10586 struct sk_buff *msg;
10587 struct nlattr *rekey_attr;
10588 void *hdr;
10589
Thomas Graf58050fc2012-06-28 03:57:45 +000010590 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Berge5497d72011-07-05 16:35:40 +020010591 if (!msg)
10592 return;
10593
10594 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10595 if (!hdr) {
10596 nlmsg_free(msg);
10597 return;
10598 }
10599
David S. Miller9360ffd2012-03-29 04:41:26 -040010600 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10601 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10602 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid))
10603 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010604
10605 rekey_attr = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10606 if (!rekey_attr)
10607 goto nla_put_failure;
10608
David S. Miller9360ffd2012-03-29 04:41:26 -040010609 if (nla_put(msg, NL80211_REKEY_DATA_REPLAY_CTR,
10610 NL80211_REPLAY_CTR_LEN, replay_ctr))
10611 goto nla_put_failure;
Johannes Berge5497d72011-07-05 16:35:40 +020010612
10613 nla_nest_end(msg, rekey_attr);
10614
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010615 genlmsg_end(msg, hdr);
Johannes Berge5497d72011-07-05 16:35:40 +020010616
10617 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10618 nl80211_mlme_mcgrp.id, gfp);
10619 return;
10620
10621 nla_put_failure:
10622 genlmsg_cancel(msg, hdr);
10623 nlmsg_free(msg);
10624}
10625
Johannes Berg947add32013-02-22 22:05:20 +010010626void cfg80211_gtk_rekey_notify(struct net_device *dev, const u8 *bssid,
10627 const u8 *replay_ctr, gfp_t gfp)
10628{
10629 struct wireless_dev *wdev = dev->ieee80211_ptr;
10630 struct wiphy *wiphy = wdev->wiphy;
10631 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10632
10633 trace_cfg80211_gtk_rekey_notify(dev, bssid);
10634 nl80211_gtk_rekey_notify(rdev, dev, bssid, replay_ctr, gfp);
10635}
10636EXPORT_SYMBOL(cfg80211_gtk_rekey_notify);
10637
10638static void
10639nl80211_pmksa_candidate_notify(struct cfg80211_registered_device *rdev,
10640 struct net_device *netdev, int index,
10641 const u8 *bssid, bool preauth, gfp_t gfp)
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010642{
10643 struct sk_buff *msg;
10644 struct nlattr *attr;
10645 void *hdr;
10646
Thomas Graf58050fc2012-06-28 03:57:45 +000010647 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010648 if (!msg)
10649 return;
10650
10651 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE);
10652 if (!hdr) {
10653 nlmsg_free(msg);
10654 return;
10655 }
10656
David S. Miller9360ffd2012-03-29 04:41:26 -040010657 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10658 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10659 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010660
10661 attr = nla_nest_start(msg, NL80211_ATTR_PMKSA_CANDIDATE);
10662 if (!attr)
10663 goto nla_put_failure;
10664
David S. Miller9360ffd2012-03-29 04:41:26 -040010665 if (nla_put_u32(msg, NL80211_PMKSA_CANDIDATE_INDEX, index) ||
10666 nla_put(msg, NL80211_PMKSA_CANDIDATE_BSSID, ETH_ALEN, bssid) ||
10667 (preauth &&
10668 nla_put_flag(msg, NL80211_PMKSA_CANDIDATE_PREAUTH)))
10669 goto nla_put_failure;
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010670
10671 nla_nest_end(msg, attr);
10672
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010673 genlmsg_end(msg, hdr);
Jouni Malinenc9df56b2011-09-16 18:56:23 +030010674
10675 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10676 nl80211_mlme_mcgrp.id, gfp);
10677 return;
10678
10679 nla_put_failure:
10680 genlmsg_cancel(msg, hdr);
10681 nlmsg_free(msg);
10682}
10683
Johannes Berg947add32013-02-22 22:05:20 +010010684void cfg80211_pmksa_candidate_notify(struct net_device *dev, int index,
10685 const u8 *bssid, bool preauth, gfp_t gfp)
10686{
10687 struct wireless_dev *wdev = dev->ieee80211_ptr;
10688 struct wiphy *wiphy = wdev->wiphy;
10689 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10690
10691 trace_cfg80211_pmksa_candidate_notify(dev, index, bssid, preauth);
10692 nl80211_pmksa_candidate_notify(rdev, dev, index, bssid, preauth, gfp);
10693}
10694EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify);
10695
10696static void nl80211_ch_switch_notify(struct cfg80211_registered_device *rdev,
10697 struct net_device *netdev,
10698 struct cfg80211_chan_def *chandef,
10699 gfp_t gfp)
Thomas Pedersen53145262012-04-06 13:35:47 -070010700{
10701 struct sk_buff *msg;
10702 void *hdr;
10703
Thomas Graf58050fc2012-06-28 03:57:45 +000010704 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Thomas Pedersen53145262012-04-06 13:35:47 -070010705 if (!msg)
10706 return;
10707
10708 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CH_SWITCH_NOTIFY);
10709 if (!hdr) {
10710 nlmsg_free(msg);
10711 return;
10712 }
10713
Johannes Berg683b6d32012-11-08 21:25:48 +010010714 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex))
10715 goto nla_put_failure;
10716
10717 if (nl80211_send_chandef(msg, chandef))
John W. Linville7eab0f62012-04-12 14:25:14 -040010718 goto nla_put_failure;
Thomas Pedersen53145262012-04-06 13:35:47 -070010719
10720 genlmsg_end(msg, hdr);
10721
10722 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10723 nl80211_mlme_mcgrp.id, gfp);
10724 return;
10725
10726 nla_put_failure:
10727 genlmsg_cancel(msg, hdr);
10728 nlmsg_free(msg);
10729}
10730
Johannes Berg947add32013-02-22 22:05:20 +010010731void cfg80211_ch_switch_notify(struct net_device *dev,
10732 struct cfg80211_chan_def *chandef)
Thomas Pedersen84f10702012-07-12 16:17:33 -070010733{
Johannes Berg947add32013-02-22 22:05:20 +010010734 struct wireless_dev *wdev = dev->ieee80211_ptr;
10735 struct wiphy *wiphy = wdev->wiphy;
10736 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10737
10738 trace_cfg80211_ch_switch_notify(dev, chandef);
10739
10740 wdev_lock(wdev);
10741
10742 if (WARN_ON(wdev->iftype != NL80211_IFTYPE_AP &&
10743 wdev->iftype != NL80211_IFTYPE_P2P_GO))
10744 goto out;
10745
10746 wdev->channel = chandef->chan;
10747 nl80211_ch_switch_notify(rdev, dev, chandef, GFP_KERNEL);
10748out:
10749 wdev_unlock(wdev);
10750 return;
10751}
10752EXPORT_SYMBOL(cfg80211_ch_switch_notify);
10753
10754void cfg80211_cqm_txe_notify(struct net_device *dev,
10755 const u8 *peer, u32 num_packets,
10756 u32 rate, u32 intvl, gfp_t gfp)
10757{
10758 struct wireless_dev *wdev = dev->ieee80211_ptr;
10759 struct wiphy *wiphy = wdev->wiphy;
10760 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010761 struct sk_buff *msg;
10762 struct nlattr *pinfoattr;
10763 void *hdr;
10764
10765 msg = nlmsg_new(NLMSG_GOODSIZE, gfp);
10766 if (!msg)
10767 return;
10768
10769 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10770 if (!hdr) {
10771 nlmsg_free(msg);
10772 return;
10773 }
10774
10775 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010776 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
Thomas Pedersen84f10702012-07-12 16:17:33 -070010777 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10778 goto nla_put_failure;
10779
10780 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10781 if (!pinfoattr)
10782 goto nla_put_failure;
10783
10784 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_PKTS, num_packets))
10785 goto nla_put_failure;
10786
10787 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_RATE, rate))
10788 goto nla_put_failure;
10789
10790 if (nla_put_u32(msg, NL80211_ATTR_CQM_TXE_INTVL, intvl))
10791 goto nla_put_failure;
10792
10793 nla_nest_end(msg, pinfoattr);
10794
10795 genlmsg_end(msg, hdr);
10796
10797 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10798 nl80211_mlme_mcgrp.id, gfp);
10799 return;
10800
10801 nla_put_failure:
10802 genlmsg_cancel(msg, hdr);
10803 nlmsg_free(msg);
10804}
Johannes Berg947add32013-02-22 22:05:20 +010010805EXPORT_SYMBOL(cfg80211_cqm_txe_notify);
Thomas Pedersen84f10702012-07-12 16:17:33 -070010806
10807void
Simon Wunderlich04f39042013-02-08 18:16:19 +010010808nl80211_radar_notify(struct cfg80211_registered_device *rdev,
10809 struct cfg80211_chan_def *chandef,
10810 enum nl80211_radar_event event,
10811 struct net_device *netdev, gfp_t gfp)
10812{
10813 struct sk_buff *msg;
10814 void *hdr;
10815
10816 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
10817 if (!msg)
10818 return;
10819
10820 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_RADAR_DETECT);
10821 if (!hdr) {
10822 nlmsg_free(msg);
10823 return;
10824 }
10825
10826 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx))
10827 goto nla_put_failure;
10828
10829 /* NOP and radar events don't need a netdev parameter */
10830 if (netdev) {
10831 struct wireless_dev *wdev = netdev->ieee80211_ptr;
10832
10833 if (nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex) ||
10834 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
10835 goto nla_put_failure;
10836 }
10837
10838 if (nla_put_u32(msg, NL80211_ATTR_RADAR_EVENT, event))
10839 goto nla_put_failure;
10840
10841 if (nl80211_send_chandef(msg, chandef))
10842 goto nla_put_failure;
10843
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010844 genlmsg_end(msg, hdr);
Simon Wunderlich04f39042013-02-08 18:16:19 +010010845
10846 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10847 nl80211_mlme_mcgrp.id, gfp);
10848 return;
10849
10850 nla_put_failure:
10851 genlmsg_cancel(msg, hdr);
10852 nlmsg_free(msg);
10853}
10854
Johannes Berg947add32013-02-22 22:05:20 +010010855void cfg80211_cqm_pktloss_notify(struct net_device *dev,
10856 const u8 *peer, u32 num_packets, gfp_t gfp)
Johannes Bergc063dbf2010-11-24 08:10:05 +010010857{
Johannes Berg947add32013-02-22 22:05:20 +010010858 struct wireless_dev *wdev = dev->ieee80211_ptr;
10859 struct wiphy *wiphy = wdev->wiphy;
10860 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010861 struct sk_buff *msg;
10862 struct nlattr *pinfoattr;
10863 void *hdr;
10864
Johannes Berg947add32013-02-22 22:05:20 +010010865 trace_cfg80211_cqm_pktloss_notify(dev, peer, num_packets);
10866
Thomas Graf58050fc2012-06-28 03:57:45 +000010867 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010868 if (!msg)
10869 return;
10870
10871 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_NOTIFY_CQM);
10872 if (!hdr) {
10873 nlmsg_free(msg);
10874 return;
10875 }
10876
David S. Miller9360ffd2012-03-29 04:41:26 -040010877 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
Johannes Berg947add32013-02-22 22:05:20 +010010878 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
David S. Miller9360ffd2012-03-29 04:41:26 -040010879 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer))
10880 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010881
10882 pinfoattr = nla_nest_start(msg, NL80211_ATTR_CQM);
10883 if (!pinfoattr)
10884 goto nla_put_failure;
10885
David S. Miller9360ffd2012-03-29 04:41:26 -040010886 if (nla_put_u32(msg, NL80211_ATTR_CQM_PKT_LOSS_EVENT, num_packets))
10887 goto nla_put_failure;
Johannes Bergc063dbf2010-11-24 08:10:05 +010010888
10889 nla_nest_end(msg, pinfoattr);
10890
Johannes Berg3b7b72e2011-10-22 19:05:51 +020010891 genlmsg_end(msg, hdr);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010892
10893 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10894 nl80211_mlme_mcgrp.id, gfp);
10895 return;
10896
10897 nla_put_failure:
10898 genlmsg_cancel(msg, hdr);
10899 nlmsg_free(msg);
10900}
Johannes Berg947add32013-02-22 22:05:20 +010010901EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify);
Johannes Bergc063dbf2010-11-24 08:10:05 +010010902
Johannes Berg7f6cf312011-11-04 11:18:15 +010010903void cfg80211_probe_status(struct net_device *dev, const u8 *addr,
10904 u64 cookie, bool acked, gfp_t gfp)
10905{
10906 struct wireless_dev *wdev = dev->ieee80211_ptr;
10907 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10908 struct sk_buff *msg;
10909 void *hdr;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010910
Beni Lev4ee3e062012-08-27 12:49:39 +030010911 trace_cfg80211_probe_status(dev, addr, cookie, acked);
10912
Thomas Graf58050fc2012-06-28 03:57:45 +000010913 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
Beni Lev4ee3e062012-08-27 12:49:39 +030010914
Johannes Berg7f6cf312011-11-04 11:18:15 +010010915 if (!msg)
10916 return;
10917
10918 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_PROBE_CLIENT);
10919 if (!hdr) {
10920 nlmsg_free(msg);
10921 return;
10922 }
10923
David S. Miller9360ffd2012-03-29 04:41:26 -040010924 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10925 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
10926 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, addr) ||
10927 nla_put_u64(msg, NL80211_ATTR_COOKIE, cookie) ||
10928 (acked && nla_put_flag(msg, NL80211_ATTR_ACK)))
10929 goto nla_put_failure;
Johannes Berg7f6cf312011-11-04 11:18:15 +010010930
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010931 genlmsg_end(msg, hdr);
Johannes Berg7f6cf312011-11-04 11:18:15 +010010932
10933 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
10934 nl80211_mlme_mcgrp.id, gfp);
10935 return;
10936
10937 nla_put_failure:
10938 genlmsg_cancel(msg, hdr);
10939 nlmsg_free(msg);
10940}
10941EXPORT_SYMBOL(cfg80211_probe_status);
10942
Johannes Berg5e7602302011-11-04 11:18:17 +010010943void cfg80211_report_obss_beacon(struct wiphy *wiphy,
10944 const u8 *frame, size_t len,
Ben Greear37c73b52012-10-26 14:49:25 -070010945 int freq, int sig_dbm)
Johannes Berg5e7602302011-11-04 11:18:17 +010010946{
10947 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
10948 struct sk_buff *msg;
10949 void *hdr;
Ben Greear37c73b52012-10-26 14:49:25 -070010950 struct cfg80211_beacon_registration *reg;
Johannes Berg5e7602302011-11-04 11:18:17 +010010951
Beni Lev4ee3e062012-08-27 12:49:39 +030010952 trace_cfg80211_report_obss_beacon(wiphy, frame, len, freq, sig_dbm);
10953
Ben Greear37c73b52012-10-26 14:49:25 -070010954 spin_lock_bh(&rdev->beacon_registrations_lock);
10955 list_for_each_entry(reg, &rdev->beacon_registrations, list) {
10956 msg = nlmsg_new(len + 100, GFP_ATOMIC);
10957 if (!msg) {
10958 spin_unlock_bh(&rdev->beacon_registrations_lock);
10959 return;
10960 }
Johannes Berg5e7602302011-11-04 11:18:17 +010010961
Ben Greear37c73b52012-10-26 14:49:25 -070010962 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FRAME);
10963 if (!hdr)
10964 goto nla_put_failure;
Johannes Berg5e7602302011-11-04 11:18:17 +010010965
Ben Greear37c73b52012-10-26 14:49:25 -070010966 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
10967 (freq &&
10968 nla_put_u32(msg, NL80211_ATTR_WIPHY_FREQ, freq)) ||
10969 (sig_dbm &&
10970 nla_put_u32(msg, NL80211_ATTR_RX_SIGNAL_DBM, sig_dbm)) ||
10971 nla_put(msg, NL80211_ATTR_FRAME, len, frame))
10972 goto nla_put_failure;
10973
10974 genlmsg_end(msg, hdr);
10975
10976 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, reg->nlportid);
Johannes Berg5e7602302011-11-04 11:18:17 +010010977 }
Ben Greear37c73b52012-10-26 14:49:25 -070010978 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010010979 return;
10980
10981 nla_put_failure:
Ben Greear37c73b52012-10-26 14:49:25 -070010982 spin_unlock_bh(&rdev->beacon_registrations_lock);
10983 if (hdr)
10984 genlmsg_cancel(msg, hdr);
Johannes Berg5e7602302011-11-04 11:18:17 +010010985 nlmsg_free(msg);
10986}
10987EXPORT_SYMBOL(cfg80211_report_obss_beacon);
10988
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010010989#ifdef CONFIG_PM
10990void cfg80211_report_wowlan_wakeup(struct wireless_dev *wdev,
10991 struct cfg80211_wowlan_wakeup *wakeup,
10992 gfp_t gfp)
10993{
10994 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
10995 struct sk_buff *msg;
10996 void *hdr;
Johannes Berg9c90a9f2013-06-04 12:46:03 +020010997 int size = 200;
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010010998
10999 trace_cfg80211_report_wowlan_wakeup(wdev->wiphy, wdev, wakeup);
11000
11001 if (wakeup)
11002 size += wakeup->packet_present_len;
11003
11004 msg = nlmsg_new(size, gfp);
11005 if (!msg)
11006 return;
11007
11008 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_SET_WOWLAN);
11009 if (!hdr)
11010 goto free_msg;
11011
11012 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11013 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11014 goto free_msg;
11015
11016 if (wdev->netdev && nla_put_u32(msg, NL80211_ATTR_IFINDEX,
11017 wdev->netdev->ifindex))
11018 goto free_msg;
11019
11020 if (wakeup) {
11021 struct nlattr *reasons;
11022
11023 reasons = nla_nest_start(msg, NL80211_ATTR_WOWLAN_TRIGGERS);
11024
11025 if (wakeup->disconnect &&
11026 nla_put_flag(msg, NL80211_WOWLAN_TRIG_DISCONNECT))
11027 goto free_msg;
11028 if (wakeup->magic_pkt &&
11029 nla_put_flag(msg, NL80211_WOWLAN_TRIG_MAGIC_PKT))
11030 goto free_msg;
11031 if (wakeup->gtk_rekey_failure &&
11032 nla_put_flag(msg, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE))
11033 goto free_msg;
11034 if (wakeup->eap_identity_req &&
11035 nla_put_flag(msg, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST))
11036 goto free_msg;
11037 if (wakeup->four_way_handshake &&
11038 nla_put_flag(msg, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE))
11039 goto free_msg;
11040 if (wakeup->rfkill_release &&
11041 nla_put_flag(msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE))
11042 goto free_msg;
11043
11044 if (wakeup->pattern_idx >= 0 &&
11045 nla_put_u32(msg, NL80211_WOWLAN_TRIG_PKT_PATTERN,
11046 wakeup->pattern_idx))
11047 goto free_msg;
11048
Johannes Berg2a0e0472013-01-23 22:57:40 +010011049 if (wakeup->tcp_match)
11050 nla_put_flag(msg, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH);
11051
11052 if (wakeup->tcp_connlost)
11053 nla_put_flag(msg,
11054 NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST);
11055
11056 if (wakeup->tcp_nomoretokens)
11057 nla_put_flag(msg,
11058 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS);
11059
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011060 if (wakeup->packet) {
11061 u32 pkt_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211;
11062 u32 len_attr = NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN;
11063
11064 if (!wakeup->packet_80211) {
11065 pkt_attr =
11066 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023;
11067 len_attr =
11068 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN;
11069 }
11070
11071 if (wakeup->packet_len &&
11072 nla_put_u32(msg, len_attr, wakeup->packet_len))
11073 goto free_msg;
11074
11075 if (nla_put(msg, pkt_attr, wakeup->packet_present_len,
11076 wakeup->packet))
11077 goto free_msg;
11078 }
11079
11080 nla_nest_end(msg, reasons);
11081 }
11082
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011083 genlmsg_end(msg, hdr);
Johannes Bergcd8f7cb2013-01-22 12:34:29 +010011084
11085 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11086 nl80211_mlme_mcgrp.id, gfp);
11087 return;
11088
11089 free_msg:
11090 nlmsg_free(msg);
11091}
11092EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup);
11093#endif
11094
Jouni Malinen3475b092012-11-16 22:49:57 +020011095void cfg80211_tdls_oper_request(struct net_device *dev, const u8 *peer,
11096 enum nl80211_tdls_operation oper,
11097 u16 reason_code, gfp_t gfp)
11098{
11099 struct wireless_dev *wdev = dev->ieee80211_ptr;
11100 struct cfg80211_registered_device *rdev = wiphy_to_dev(wdev->wiphy);
11101 struct sk_buff *msg;
11102 void *hdr;
Jouni Malinen3475b092012-11-16 22:49:57 +020011103
11104 trace_cfg80211_tdls_oper_request(wdev->wiphy, dev, peer, oper,
11105 reason_code);
11106
11107 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11108 if (!msg)
11109 return;
11110
11111 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_TDLS_OPER);
11112 if (!hdr) {
11113 nlmsg_free(msg);
11114 return;
11115 }
11116
11117 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11118 nla_put_u32(msg, NL80211_ATTR_IFINDEX, dev->ifindex) ||
11119 nla_put_u8(msg, NL80211_ATTR_TDLS_OPERATION, oper) ||
11120 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, peer) ||
11121 (reason_code > 0 &&
11122 nla_put_u16(msg, NL80211_ATTR_REASON_CODE, reason_code)))
11123 goto nla_put_failure;
11124
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011125 genlmsg_end(msg, hdr);
Jouni Malinen3475b092012-11-16 22:49:57 +020011126
11127 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11128 nl80211_mlme_mcgrp.id, gfp);
11129 return;
11130
11131 nla_put_failure:
11132 genlmsg_cancel(msg, hdr);
11133 nlmsg_free(msg);
11134}
11135EXPORT_SYMBOL(cfg80211_tdls_oper_request);
11136
Jouni Malinen026331c2010-02-15 12:53:10 +020011137static int nl80211_netlink_notify(struct notifier_block * nb,
11138 unsigned long state,
11139 void *_notify)
11140{
11141 struct netlink_notify *notify = _notify;
11142 struct cfg80211_registered_device *rdev;
11143 struct wireless_dev *wdev;
Ben Greear37c73b52012-10-26 14:49:25 -070011144 struct cfg80211_beacon_registration *reg, *tmp;
Jouni Malinen026331c2010-02-15 12:53:10 +020011145
11146 if (state != NETLINK_URELEASE)
11147 return NOTIFY_DONE;
11148
11149 rcu_read_lock();
11150
Johannes Berg5e7602302011-11-04 11:18:17 +010011151 list_for_each_entry_rcu(rdev, &cfg80211_rdev_list, list) {
Johannes Berg89a54e42012-06-15 14:33:17 +020011152 list_for_each_entry_rcu(wdev, &rdev->wdev_list, list)
Eric W. Biederman15e47302012-09-07 20:12:54 +000011153 cfg80211_mlme_unregister_socket(wdev, notify->portid);
Ben Greear37c73b52012-10-26 14:49:25 -070011154
11155 spin_lock_bh(&rdev->beacon_registrations_lock);
11156 list_for_each_entry_safe(reg, tmp, &rdev->beacon_registrations,
11157 list) {
11158 if (reg->nlportid == notify->portid) {
11159 list_del(&reg->list);
11160 kfree(reg);
11161 break;
11162 }
11163 }
11164 spin_unlock_bh(&rdev->beacon_registrations_lock);
Johannes Berg5e7602302011-11-04 11:18:17 +010011165 }
Jouni Malinen026331c2010-02-15 12:53:10 +020011166
11167 rcu_read_unlock();
11168
11169 return NOTIFY_DONE;
11170}
11171
11172static struct notifier_block nl80211_netlink_notifier = {
11173 .notifier_call = nl80211_netlink_notify,
11174};
11175
Jouni Malinen355199e2013-02-27 17:14:27 +020011176void cfg80211_ft_event(struct net_device *netdev,
11177 struct cfg80211_ft_event_params *ft_event)
11178{
11179 struct wiphy *wiphy = netdev->ieee80211_ptr->wiphy;
11180 struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy);
11181 struct sk_buff *msg;
11182 void *hdr;
Jouni Malinen355199e2013-02-27 17:14:27 +020011183
11184 trace_cfg80211_ft_event(wiphy, netdev, ft_event);
11185
11186 if (!ft_event->target_ap)
11187 return;
11188
11189 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
11190 if (!msg)
11191 return;
11192
11193 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_FT_EVENT);
11194 if (!hdr) {
11195 nlmsg_free(msg);
11196 return;
11197 }
11198
11199 nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx);
11200 nla_put_u32(msg, NL80211_ATTR_IFINDEX, netdev->ifindex);
11201 nla_put(msg, NL80211_ATTR_MAC, ETH_ALEN, ft_event->target_ap);
11202 if (ft_event->ies)
11203 nla_put(msg, NL80211_ATTR_IE, ft_event->ies_len, ft_event->ies);
11204 if (ft_event->ric_ies)
11205 nla_put(msg, NL80211_ATTR_IE_RIC, ft_event->ric_ies_len,
11206 ft_event->ric_ies);
11207
Johannes Berg9c90a9f2013-06-04 12:46:03 +020011208 genlmsg_end(msg, hdr);
Jouni Malinen355199e2013-02-27 17:14:27 +020011209
11210 genlmsg_multicast_netns(wiphy_net(&rdev->wiphy), msg, 0,
11211 nl80211_mlme_mcgrp.id, GFP_KERNEL);
11212}
11213EXPORT_SYMBOL(cfg80211_ft_event);
11214
Arend van Spriel5de17982013-04-18 15:49:00 +020011215void cfg80211_crit_proto_stopped(struct wireless_dev *wdev, gfp_t gfp)
11216{
11217 struct cfg80211_registered_device *rdev;
11218 struct sk_buff *msg;
11219 void *hdr;
11220 u32 nlportid;
11221
11222 rdev = wiphy_to_dev(wdev->wiphy);
11223 if (!rdev->crit_proto_nlportid)
11224 return;
11225
11226 nlportid = rdev->crit_proto_nlportid;
11227 rdev->crit_proto_nlportid = 0;
11228
11229 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, gfp);
11230 if (!msg)
11231 return;
11232
11233 hdr = nl80211hdr_put(msg, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP);
11234 if (!hdr)
11235 goto nla_put_failure;
11236
11237 if (nla_put_u32(msg, NL80211_ATTR_WIPHY, rdev->wiphy_idx) ||
11238 nla_put_u64(msg, NL80211_ATTR_WDEV, wdev_id(wdev)))
11239 goto nla_put_failure;
11240
11241 genlmsg_end(msg, hdr);
11242
11243 genlmsg_unicast(wiphy_net(&rdev->wiphy), msg, nlportid);
11244 return;
11245
11246 nla_put_failure:
11247 if (hdr)
11248 genlmsg_cancel(msg, hdr);
11249 nlmsg_free(msg);
11250
11251}
11252EXPORT_SYMBOL(cfg80211_crit_proto_stopped);
11253
Johannes Berg55682962007-09-20 13:09:35 -040011254/* initialisation/exit functions */
11255
11256int nl80211_init(void)
11257{
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011258 int err;
Johannes Berg55682962007-09-20 13:09:35 -040011259
Michał Mirosław0d63cbb2009-05-21 10:34:06 +000011260 err = genl_register_family_with_ops(&nl80211_fam,
11261 nl80211_ops, ARRAY_SIZE(nl80211_ops));
Johannes Berg55682962007-09-20 13:09:35 -040011262 if (err)
11263 return err;
11264
Johannes Berg55682962007-09-20 13:09:35 -040011265 err = genl_register_mc_group(&nl80211_fam, &nl80211_config_mcgrp);
11266 if (err)
11267 goto err_out;
11268
Johannes Berg2a519312009-02-10 21:25:55 +010011269 err = genl_register_mc_group(&nl80211_fam, &nl80211_scan_mcgrp);
11270 if (err)
11271 goto err_out;
11272
Luis R. Rodriguez73d54c92009-03-09 22:07:42 -040011273 err = genl_register_mc_group(&nl80211_fam, &nl80211_regulatory_mcgrp);
11274 if (err)
11275 goto err_out;
11276
Jouni Malinen6039f6d2009-03-19 13:39:21 +020011277 err = genl_register_mc_group(&nl80211_fam, &nl80211_mlme_mcgrp);
11278 if (err)
11279 goto err_out;
11280
Johannes Bergaff89a92009-07-01 21:26:51 +020011281#ifdef CONFIG_NL80211_TESTMODE
11282 err = genl_register_mc_group(&nl80211_fam, &nl80211_testmode_mcgrp);
11283 if (err)
11284 goto err_out;
11285#endif
11286
Jouni Malinen026331c2010-02-15 12:53:10 +020011287 err = netlink_register_notifier(&nl80211_netlink_notifier);
11288 if (err)
11289 goto err_out;
11290
Johannes Berg55682962007-09-20 13:09:35 -040011291 return 0;
11292 err_out:
11293 genl_unregister_family(&nl80211_fam);
11294 return err;
11295}
11296
11297void nl80211_exit(void)
11298{
Jouni Malinen026331c2010-02-15 12:53:10 +020011299 netlink_unregister_notifier(&nl80211_netlink_notifier);
Johannes Berg55682962007-09-20 13:09:35 -040011300 genl_unregister_family(&nl80211_fam);
11301}