2 * This is the new netlink-based wireless configuration interface.
4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
5 * Copyright 2013-2014 Intel Mobile Communications GmbH
6 * Copyright 2015 Intel Deutschland GmbH
10 #include <linux/module.h>
11 #include <linux/err.h>
12 #include <linux/slab.h>
13 #include <linux/list.h>
14 #include <linux/if_ether.h>
15 #include <linux/ieee80211.h>
16 #include <linux/nl80211.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/netlink.h>
19 #include <linux/etherdevice.h>
20 #include <net/net_namespace.h>
21 #include <net/genetlink.h>
22 #include <net/cfg80211.h>
24 #include <net/inet_connection_sock.h>
30 static int nl80211_crypto_settings(struct cfg80211_registered_device
*rdev
,
31 struct genl_info
*info
,
32 struct cfg80211_crypto_settings
*settings
,
35 static int nl80211_pre_doit(const struct genl_ops
*ops
, struct sk_buff
*skb
,
36 struct genl_info
*info
);
37 static void nl80211_post_doit(const struct genl_ops
*ops
, struct sk_buff
*skb
,
38 struct genl_info
*info
);
40 /* the netlink family */
41 static struct genl_family nl80211_fam
= {
42 .id
= GENL_ID_GENERATE
, /* don't bother with a hardcoded ID */
43 .name
= NL80211_GENL_NAME
, /* have users key off the name instead */
44 .hdrsize
= 0, /* no private header */
45 .version
= 1, /* no particular meaning now */
46 .maxattr
= NL80211_ATTR_MAX
,
48 .pre_doit
= nl80211_pre_doit
,
49 .post_doit
= nl80211_post_doit
,
52 /* multicast groups */
53 enum nl80211_multicast_groups
{
56 NL80211_MCGRP_REGULATORY
,
59 NL80211_MCGRP_TESTMODE
/* keep last - ifdef! */
62 static const struct genl_multicast_group nl80211_mcgrps
[] = {
63 [NL80211_MCGRP_CONFIG
] = { .name
= NL80211_MULTICAST_GROUP_CONFIG
},
64 [NL80211_MCGRP_SCAN
] = { .name
= NL80211_MULTICAST_GROUP_SCAN
},
65 [NL80211_MCGRP_REGULATORY
] = { .name
= NL80211_MULTICAST_GROUP_REG
},
66 [NL80211_MCGRP_MLME
] = { .name
= NL80211_MULTICAST_GROUP_MLME
},
67 [NL80211_MCGRP_VENDOR
] = { .name
= NL80211_MULTICAST_GROUP_VENDOR
},
68 #ifdef CONFIG_NL80211_TESTMODE
69 [NL80211_MCGRP_TESTMODE
] = { .name
= NL80211_MULTICAST_GROUP_TESTMODE
}
73 /* returns ERR_PTR values */
74 static struct wireless_dev
*
75 __cfg80211_wdev_from_attrs(struct net
*netns
, struct nlattr
**attrs
)
77 struct cfg80211_registered_device
*rdev
;
78 struct wireless_dev
*result
= NULL
;
79 bool have_ifidx
= attrs
[NL80211_ATTR_IFINDEX
];
80 bool have_wdev_id
= attrs
[NL80211_ATTR_WDEV
];
87 if (!have_ifidx
&& !have_wdev_id
)
88 return ERR_PTR(-EINVAL
);
91 ifidx
= nla_get_u32(attrs
[NL80211_ATTR_IFINDEX
]);
93 wdev_id
= nla_get_u64(attrs
[NL80211_ATTR_WDEV
]);
94 wiphy_idx
= wdev_id
>> 32;
97 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
98 struct wireless_dev
*wdev
;
100 if (wiphy_net(&rdev
->wiphy
) != netns
)
103 if (have_wdev_id
&& rdev
->wiphy_idx
!= wiphy_idx
)
106 list_for_each_entry(wdev
, &rdev
->wdev_list
, list
) {
107 if (have_ifidx
&& wdev
->netdev
&&
108 wdev
->netdev
->ifindex
== ifidx
) {
112 if (have_wdev_id
&& wdev
->identifier
== (u32
)wdev_id
) {
124 return ERR_PTR(-ENODEV
);
127 static struct cfg80211_registered_device
*
128 __cfg80211_rdev_from_attrs(struct net
*netns
, struct nlattr
**attrs
)
130 struct cfg80211_registered_device
*rdev
= NULL
, *tmp
;
131 struct net_device
*netdev
;
135 if (!attrs
[NL80211_ATTR_WIPHY
] &&
136 !attrs
[NL80211_ATTR_IFINDEX
] &&
137 !attrs
[NL80211_ATTR_WDEV
])
138 return ERR_PTR(-EINVAL
);
140 if (attrs
[NL80211_ATTR_WIPHY
])
141 rdev
= cfg80211_rdev_by_wiphy_idx(
142 nla_get_u32(attrs
[NL80211_ATTR_WIPHY
]));
144 if (attrs
[NL80211_ATTR_WDEV
]) {
145 u64 wdev_id
= nla_get_u64(attrs
[NL80211_ATTR_WDEV
]);
146 struct wireless_dev
*wdev
;
149 tmp
= cfg80211_rdev_by_wiphy_idx(wdev_id
>> 32);
151 /* make sure wdev exists */
152 list_for_each_entry(wdev
, &tmp
->wdev_list
, list
) {
153 if (wdev
->identifier
!= (u32
)wdev_id
)
162 if (rdev
&& tmp
!= rdev
)
163 return ERR_PTR(-EINVAL
);
168 if (attrs
[NL80211_ATTR_IFINDEX
]) {
169 int ifindex
= nla_get_u32(attrs
[NL80211_ATTR_IFINDEX
]);
170 netdev
= __dev_get_by_index(netns
, ifindex
);
172 if (netdev
->ieee80211_ptr
)
174 netdev
->ieee80211_ptr
->wiphy
);
178 /* not wireless device -- return error */
180 return ERR_PTR(-EINVAL
);
182 /* mismatch -- return error */
183 if (rdev
&& tmp
!= rdev
)
184 return ERR_PTR(-EINVAL
);
191 return ERR_PTR(-ENODEV
);
193 if (netns
!= wiphy_net(&rdev
->wiphy
))
194 return ERR_PTR(-ENODEV
);
200 * This function returns a pointer to the driver
201 * that the genl_info item that is passed refers to.
203 * The result of this can be a PTR_ERR and hence must
204 * be checked with IS_ERR() for errors.
206 static struct cfg80211_registered_device
*
207 cfg80211_get_dev_from_info(struct net
*netns
, struct genl_info
*info
)
209 return __cfg80211_rdev_from_attrs(netns
, info
->attrs
);
212 /* policy for the attributes */
213 static const struct nla_policy nl80211_policy
[NUM_NL80211_ATTR
] = {
214 [NL80211_ATTR_WIPHY
] = { .type
= NLA_U32
},
215 [NL80211_ATTR_WIPHY_NAME
] = { .type
= NLA_NUL_STRING
,
217 [NL80211_ATTR_WIPHY_TXQ_PARAMS
] = { .type
= NLA_NESTED
},
219 [NL80211_ATTR_WIPHY_FREQ
] = { .type
= NLA_U32
},
220 [NL80211_ATTR_WIPHY_CHANNEL_TYPE
] = { .type
= NLA_U32
},
221 [NL80211_ATTR_CHANNEL_WIDTH
] = { .type
= NLA_U32
},
222 [NL80211_ATTR_CENTER_FREQ1
] = { .type
= NLA_U32
},
223 [NL80211_ATTR_CENTER_FREQ2
] = { .type
= NLA_U32
},
225 [NL80211_ATTR_WIPHY_RETRY_SHORT
] = { .type
= NLA_U8
},
226 [NL80211_ATTR_WIPHY_RETRY_LONG
] = { .type
= NLA_U8
},
227 [NL80211_ATTR_WIPHY_FRAG_THRESHOLD
] = { .type
= NLA_U32
},
228 [NL80211_ATTR_WIPHY_RTS_THRESHOLD
] = { .type
= NLA_U32
},
229 [NL80211_ATTR_WIPHY_COVERAGE_CLASS
] = { .type
= NLA_U8
},
230 [NL80211_ATTR_WIPHY_DYN_ACK
] = { .type
= NLA_FLAG
},
232 [NL80211_ATTR_IFTYPE
] = { .type
= NLA_U32
},
233 [NL80211_ATTR_IFINDEX
] = { .type
= NLA_U32
},
234 [NL80211_ATTR_IFNAME
] = { .type
= NLA_NUL_STRING
, .len
= IFNAMSIZ
-1 },
236 [NL80211_ATTR_MAC
] = { .len
= ETH_ALEN
},
237 [NL80211_ATTR_PREV_BSSID
] = { .len
= ETH_ALEN
},
239 [NL80211_ATTR_KEY
] = { .type
= NLA_NESTED
, },
240 [NL80211_ATTR_KEY_DATA
] = { .type
= NLA_BINARY
,
241 .len
= WLAN_MAX_KEY_LEN
},
242 [NL80211_ATTR_KEY_IDX
] = { .type
= NLA_U8
},
243 [NL80211_ATTR_KEY_CIPHER
] = { .type
= NLA_U32
},
244 [NL80211_ATTR_KEY_DEFAULT
] = { .type
= NLA_FLAG
},
245 [NL80211_ATTR_KEY_SEQ
] = { .type
= NLA_BINARY
, .len
= 16 },
246 [NL80211_ATTR_KEY_TYPE
] = { .type
= NLA_U32
},
248 [NL80211_ATTR_BEACON_INTERVAL
] = { .type
= NLA_U32
},
249 [NL80211_ATTR_DTIM_PERIOD
] = { .type
= NLA_U32
},
250 [NL80211_ATTR_BEACON_HEAD
] = { .type
= NLA_BINARY
,
251 .len
= IEEE80211_MAX_DATA_LEN
},
252 [NL80211_ATTR_BEACON_TAIL
] = { .type
= NLA_BINARY
,
253 .len
= IEEE80211_MAX_DATA_LEN
},
254 [NL80211_ATTR_STA_AID
] = { .type
= NLA_U16
},
255 [NL80211_ATTR_STA_FLAGS
] = { .type
= NLA_NESTED
},
256 [NL80211_ATTR_STA_LISTEN_INTERVAL
] = { .type
= NLA_U16
},
257 [NL80211_ATTR_STA_SUPPORTED_RATES
] = { .type
= NLA_BINARY
,
258 .len
= NL80211_MAX_SUPP_RATES
},
259 [NL80211_ATTR_STA_PLINK_ACTION
] = { .type
= NLA_U8
},
260 [NL80211_ATTR_STA_VLAN
] = { .type
= NLA_U32
},
261 [NL80211_ATTR_MNTR_FLAGS
] = { /* NLA_NESTED can't be empty */ },
262 [NL80211_ATTR_MESH_ID
] = { .type
= NLA_BINARY
,
263 .len
= IEEE80211_MAX_MESH_ID_LEN
},
264 [NL80211_ATTR_MPATH_NEXT_HOP
] = { .type
= NLA_U32
},
266 [NL80211_ATTR_REG_ALPHA2
] = { .type
= NLA_STRING
, .len
= 2 },
267 [NL80211_ATTR_REG_RULES
] = { .type
= NLA_NESTED
},
269 [NL80211_ATTR_BSS_CTS_PROT
] = { .type
= NLA_U8
},
270 [NL80211_ATTR_BSS_SHORT_PREAMBLE
] = { .type
= NLA_U8
},
271 [NL80211_ATTR_BSS_SHORT_SLOT_TIME
] = { .type
= NLA_U8
},
272 [NL80211_ATTR_BSS_BASIC_RATES
] = { .type
= NLA_BINARY
,
273 .len
= NL80211_MAX_SUPP_RATES
},
274 [NL80211_ATTR_BSS_HT_OPMODE
] = { .type
= NLA_U16
},
276 [NL80211_ATTR_MESH_CONFIG
] = { .type
= NLA_NESTED
},
277 [NL80211_ATTR_SUPPORT_MESH_AUTH
] = { .type
= NLA_FLAG
},
279 [NL80211_ATTR_HT_CAPABILITY
] = { .len
= NL80211_HT_CAPABILITY_LEN
},
281 [NL80211_ATTR_MGMT_SUBTYPE
] = { .type
= NLA_U8
},
282 [NL80211_ATTR_IE
] = { .type
= NLA_BINARY
,
283 .len
= IEEE80211_MAX_DATA_LEN
},
284 [NL80211_ATTR_SCAN_FREQUENCIES
] = { .type
= NLA_NESTED
},
285 [NL80211_ATTR_SCAN_SSIDS
] = { .type
= NLA_NESTED
},
287 [NL80211_ATTR_SSID
] = { .type
= NLA_BINARY
,
288 .len
= IEEE80211_MAX_SSID_LEN
},
289 [NL80211_ATTR_AUTH_TYPE
] = { .type
= NLA_U32
},
290 [NL80211_ATTR_REASON_CODE
] = { .type
= NLA_U16
},
291 [NL80211_ATTR_FREQ_FIXED
] = { .type
= NLA_FLAG
},
292 [NL80211_ATTR_TIMED_OUT
] = { .type
= NLA_FLAG
},
293 [NL80211_ATTR_USE_MFP
] = { .type
= NLA_U32
},
294 [NL80211_ATTR_STA_FLAGS2
] = {
295 .len
= sizeof(struct nl80211_sta_flag_update
),
297 [NL80211_ATTR_CONTROL_PORT
] = { .type
= NLA_FLAG
},
298 [NL80211_ATTR_CONTROL_PORT_ETHERTYPE
] = { .type
= NLA_U16
},
299 [NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT
] = { .type
= NLA_FLAG
},
300 [NL80211_ATTR_PRIVACY
] = { .type
= NLA_FLAG
},
301 [NL80211_ATTR_CIPHER_SUITE_GROUP
] = { .type
= NLA_U32
},
302 [NL80211_ATTR_WPA_VERSIONS
] = { .type
= NLA_U32
},
303 [NL80211_ATTR_PID
] = { .type
= NLA_U32
},
304 [NL80211_ATTR_4ADDR
] = { .type
= NLA_U8
},
305 [NL80211_ATTR_PMKID
] = { .type
= NLA_BINARY
,
306 .len
= WLAN_PMKID_LEN
},
307 [NL80211_ATTR_DURATION
] = { .type
= NLA_U32
},
308 [NL80211_ATTR_COOKIE
] = { .type
= NLA_U64
},
309 [NL80211_ATTR_TX_RATES
] = { .type
= NLA_NESTED
},
310 [NL80211_ATTR_FRAME
] = { .type
= NLA_BINARY
,
311 .len
= IEEE80211_MAX_DATA_LEN
},
312 [NL80211_ATTR_FRAME_MATCH
] = { .type
= NLA_BINARY
, },
313 [NL80211_ATTR_PS_STATE
] = { .type
= NLA_U32
},
314 [NL80211_ATTR_CQM
] = { .type
= NLA_NESTED
, },
315 [NL80211_ATTR_LOCAL_STATE_CHANGE
] = { .type
= NLA_FLAG
},
316 [NL80211_ATTR_AP_ISOLATE
] = { .type
= NLA_U8
},
317 [NL80211_ATTR_WIPHY_TX_POWER_SETTING
] = { .type
= NLA_U32
},
318 [NL80211_ATTR_WIPHY_TX_POWER_LEVEL
] = { .type
= NLA_U32
},
319 [NL80211_ATTR_FRAME_TYPE
] = { .type
= NLA_U16
},
320 [NL80211_ATTR_WIPHY_ANTENNA_TX
] = { .type
= NLA_U32
},
321 [NL80211_ATTR_WIPHY_ANTENNA_RX
] = { .type
= NLA_U32
},
322 [NL80211_ATTR_MCAST_RATE
] = { .type
= NLA_U32
},
323 [NL80211_ATTR_OFFCHANNEL_TX_OK
] = { .type
= NLA_FLAG
},
324 [NL80211_ATTR_KEY_DEFAULT_TYPES
] = { .type
= NLA_NESTED
},
325 [NL80211_ATTR_WOWLAN_TRIGGERS
] = { .type
= NLA_NESTED
},
326 [NL80211_ATTR_STA_PLINK_STATE
] = { .type
= NLA_U8
},
327 [NL80211_ATTR_SCHED_SCAN_INTERVAL
] = { .type
= NLA_U32
},
328 [NL80211_ATTR_REKEY_DATA
] = { .type
= NLA_NESTED
},
329 [NL80211_ATTR_SCAN_SUPP_RATES
] = { .type
= NLA_NESTED
},
330 [NL80211_ATTR_HIDDEN_SSID
] = { .type
= NLA_U32
},
331 [NL80211_ATTR_IE_PROBE_RESP
] = { .type
= NLA_BINARY
,
332 .len
= IEEE80211_MAX_DATA_LEN
},
333 [NL80211_ATTR_IE_ASSOC_RESP
] = { .type
= NLA_BINARY
,
334 .len
= IEEE80211_MAX_DATA_LEN
},
335 [NL80211_ATTR_ROAM_SUPPORT
] = { .type
= NLA_FLAG
},
336 [NL80211_ATTR_SCHED_SCAN_MATCH
] = { .type
= NLA_NESTED
},
337 [NL80211_ATTR_TX_NO_CCK_RATE
] = { .type
= NLA_FLAG
},
338 [NL80211_ATTR_TDLS_ACTION
] = { .type
= NLA_U8
},
339 [NL80211_ATTR_TDLS_DIALOG_TOKEN
] = { .type
= NLA_U8
},
340 [NL80211_ATTR_TDLS_OPERATION
] = { .type
= NLA_U8
},
341 [NL80211_ATTR_TDLS_SUPPORT
] = { .type
= NLA_FLAG
},
342 [NL80211_ATTR_TDLS_EXTERNAL_SETUP
] = { .type
= NLA_FLAG
},
343 [NL80211_ATTR_TDLS_INITIATOR
] = { .type
= NLA_FLAG
},
344 [NL80211_ATTR_DONT_WAIT_FOR_ACK
] = { .type
= NLA_FLAG
},
345 [NL80211_ATTR_PROBE_RESP
] = { .type
= NLA_BINARY
,
346 .len
= IEEE80211_MAX_DATA_LEN
},
347 [NL80211_ATTR_DFS_REGION
] = { .type
= NLA_U8
},
348 [NL80211_ATTR_DISABLE_HT
] = { .type
= NLA_FLAG
},
349 [NL80211_ATTR_HT_CAPABILITY_MASK
] = {
350 .len
= NL80211_HT_CAPABILITY_LEN
352 [NL80211_ATTR_NOACK_MAP
] = { .type
= NLA_U16
},
353 [NL80211_ATTR_INACTIVITY_TIMEOUT
] = { .type
= NLA_U16
},
354 [NL80211_ATTR_BG_SCAN_PERIOD
] = { .type
= NLA_U16
},
355 [NL80211_ATTR_WDEV
] = { .type
= NLA_U64
},
356 [NL80211_ATTR_USER_REG_HINT_TYPE
] = { .type
= NLA_U32
},
357 [NL80211_ATTR_SAE_DATA
] = { .type
= NLA_BINARY
, },
358 [NL80211_ATTR_VHT_CAPABILITY
] = { .len
= NL80211_VHT_CAPABILITY_LEN
},
359 [NL80211_ATTR_SCAN_FLAGS
] = { .type
= NLA_U32
},
360 [NL80211_ATTR_P2P_CTWINDOW
] = { .type
= NLA_U8
},
361 [NL80211_ATTR_P2P_OPPPS
] = { .type
= NLA_U8
},
362 [NL80211_ATTR_ACL_POLICY
] = {. type
= NLA_U32
},
363 [NL80211_ATTR_MAC_ADDRS
] = { .type
= NLA_NESTED
},
364 [NL80211_ATTR_STA_CAPABILITY
] = { .type
= NLA_U16
},
365 [NL80211_ATTR_STA_EXT_CAPABILITY
] = { .type
= NLA_BINARY
, },
366 [NL80211_ATTR_SPLIT_WIPHY_DUMP
] = { .type
= NLA_FLAG
, },
367 [NL80211_ATTR_DISABLE_VHT
] = { .type
= NLA_FLAG
},
368 [NL80211_ATTR_VHT_CAPABILITY_MASK
] = {
369 .len
= NL80211_VHT_CAPABILITY_LEN
,
371 [NL80211_ATTR_MDID
] = { .type
= NLA_U16
},
372 [NL80211_ATTR_IE_RIC
] = { .type
= NLA_BINARY
,
373 .len
= IEEE80211_MAX_DATA_LEN
},
374 [NL80211_ATTR_PEER_AID
] = { .type
= NLA_U16
},
375 [NL80211_ATTR_CH_SWITCH_COUNT
] = { .type
= NLA_U32
},
376 [NL80211_ATTR_CH_SWITCH_BLOCK_TX
] = { .type
= NLA_FLAG
},
377 [NL80211_ATTR_CSA_IES
] = { .type
= NLA_NESTED
},
378 [NL80211_ATTR_CSA_C_OFF_BEACON
] = { .type
= NLA_BINARY
},
379 [NL80211_ATTR_CSA_C_OFF_PRESP
] = { .type
= NLA_BINARY
},
380 [NL80211_ATTR_STA_SUPPORTED_CHANNELS
] = { .type
= NLA_BINARY
},
381 [NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES
] = { .type
= NLA_BINARY
},
382 [NL80211_ATTR_HANDLE_DFS
] = { .type
= NLA_FLAG
},
383 [NL80211_ATTR_OPMODE_NOTIF
] = { .type
= NLA_U8
},
384 [NL80211_ATTR_VENDOR_ID
] = { .type
= NLA_U32
},
385 [NL80211_ATTR_VENDOR_SUBCMD
] = { .type
= NLA_U32
},
386 [NL80211_ATTR_VENDOR_DATA
] = { .type
= NLA_BINARY
},
387 [NL80211_ATTR_QOS_MAP
] = { .type
= NLA_BINARY
,
388 .len
= IEEE80211_QOS_MAP_LEN_MAX
},
389 [NL80211_ATTR_MAC_HINT
] = { .len
= ETH_ALEN
},
390 [NL80211_ATTR_WIPHY_FREQ_HINT
] = { .type
= NLA_U32
},
391 [NL80211_ATTR_TDLS_PEER_CAPABILITY
] = { .type
= NLA_U32
},
392 [NL80211_ATTR_SOCKET_OWNER
] = { .type
= NLA_FLAG
},
393 [NL80211_ATTR_CSA_C_OFFSETS_TX
] = { .type
= NLA_BINARY
},
394 [NL80211_ATTR_USE_RRM
] = { .type
= NLA_FLAG
},
395 [NL80211_ATTR_TSID
] = { .type
= NLA_U8
},
396 [NL80211_ATTR_USER_PRIO
] = { .type
= NLA_U8
},
397 [NL80211_ATTR_ADMITTED_TIME
] = { .type
= NLA_U16
},
398 [NL80211_ATTR_SMPS_MODE
] = { .type
= NLA_U8
},
399 [NL80211_ATTR_MAC_MASK
] = { .len
= ETH_ALEN
},
400 [NL80211_ATTR_WIPHY_SELF_MANAGED_REG
] = { .type
= NLA_FLAG
},
401 [NL80211_ATTR_NETNS_FD
] = { .type
= NLA_U32
},
402 [NL80211_ATTR_SCHED_SCAN_DELAY
] = { .type
= NLA_U32
},
403 [NL80211_ATTR_REG_INDOOR
] = { .type
= NLA_FLAG
},
406 /* policy for the key attributes */
407 static const struct nla_policy nl80211_key_policy
[NL80211_KEY_MAX
+ 1] = {
408 [NL80211_KEY_DATA
] = { .type
= NLA_BINARY
, .len
= WLAN_MAX_KEY_LEN
},
409 [NL80211_KEY_IDX
] = { .type
= NLA_U8
},
410 [NL80211_KEY_CIPHER
] = { .type
= NLA_U32
},
411 [NL80211_KEY_SEQ
] = { .type
= NLA_BINARY
, .len
= 16 },
412 [NL80211_KEY_DEFAULT
] = { .type
= NLA_FLAG
},
413 [NL80211_KEY_DEFAULT_MGMT
] = { .type
= NLA_FLAG
},
414 [NL80211_KEY_TYPE
] = { .type
= NLA_U32
},
415 [NL80211_KEY_DEFAULT_TYPES
] = { .type
= NLA_NESTED
},
418 /* policy for the key default flags */
419 static const struct nla_policy
420 nl80211_key_default_policy
[NUM_NL80211_KEY_DEFAULT_TYPES
] = {
421 [NL80211_KEY_DEFAULT_TYPE_UNICAST
] = { .type
= NLA_FLAG
},
422 [NL80211_KEY_DEFAULT_TYPE_MULTICAST
] = { .type
= NLA_FLAG
},
425 /* policy for WoWLAN attributes */
426 static const struct nla_policy
427 nl80211_wowlan_policy
[NUM_NL80211_WOWLAN_TRIG
] = {
428 [NL80211_WOWLAN_TRIG_ANY
] = { .type
= NLA_FLAG
},
429 [NL80211_WOWLAN_TRIG_DISCONNECT
] = { .type
= NLA_FLAG
},
430 [NL80211_WOWLAN_TRIG_MAGIC_PKT
] = { .type
= NLA_FLAG
},
431 [NL80211_WOWLAN_TRIG_PKT_PATTERN
] = { .type
= NLA_NESTED
},
432 [NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE
] = { .type
= NLA_FLAG
},
433 [NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST
] = { .type
= NLA_FLAG
},
434 [NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE
] = { .type
= NLA_FLAG
},
435 [NL80211_WOWLAN_TRIG_RFKILL_RELEASE
] = { .type
= NLA_FLAG
},
436 [NL80211_WOWLAN_TRIG_TCP_CONNECTION
] = { .type
= NLA_NESTED
},
437 [NL80211_WOWLAN_TRIG_NET_DETECT
] = { .type
= NLA_NESTED
},
440 static const struct nla_policy
441 nl80211_wowlan_tcp_policy
[NUM_NL80211_WOWLAN_TCP
] = {
442 [NL80211_WOWLAN_TCP_SRC_IPV4
] = { .type
= NLA_U32
},
443 [NL80211_WOWLAN_TCP_DST_IPV4
] = { .type
= NLA_U32
},
444 [NL80211_WOWLAN_TCP_DST_MAC
] = { .len
= ETH_ALEN
},
445 [NL80211_WOWLAN_TCP_SRC_PORT
] = { .type
= NLA_U16
},
446 [NL80211_WOWLAN_TCP_DST_PORT
] = { .type
= NLA_U16
},
447 [NL80211_WOWLAN_TCP_DATA_PAYLOAD
] = { .len
= 1 },
448 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ
] = {
449 .len
= sizeof(struct nl80211_wowlan_tcp_data_seq
)
451 [NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN
] = {
452 .len
= sizeof(struct nl80211_wowlan_tcp_data_token
)
454 [NL80211_WOWLAN_TCP_DATA_INTERVAL
] = { .type
= NLA_U32
},
455 [NL80211_WOWLAN_TCP_WAKE_PAYLOAD
] = { .len
= 1 },
456 [NL80211_WOWLAN_TCP_WAKE_MASK
] = { .len
= 1 },
459 /* policy for coalesce rule attributes */
460 static const struct nla_policy
461 nl80211_coalesce_policy
[NUM_NL80211_ATTR_COALESCE_RULE
] = {
462 [NL80211_ATTR_COALESCE_RULE_DELAY
] = { .type
= NLA_U32
},
463 [NL80211_ATTR_COALESCE_RULE_CONDITION
] = { .type
= NLA_U32
},
464 [NL80211_ATTR_COALESCE_RULE_PKT_PATTERN
] = { .type
= NLA_NESTED
},
467 /* policy for GTK rekey offload attributes */
468 static const struct nla_policy
469 nl80211_rekey_policy
[NUM_NL80211_REKEY_DATA
] = {
470 [NL80211_REKEY_DATA_KEK
] = { .len
= NL80211_KEK_LEN
},
471 [NL80211_REKEY_DATA_KCK
] = { .len
= NL80211_KCK_LEN
},
472 [NL80211_REKEY_DATA_REPLAY_CTR
] = { .len
= NL80211_REPLAY_CTR_LEN
},
475 static const struct nla_policy
476 nl80211_match_policy
[NL80211_SCHED_SCAN_MATCH_ATTR_MAX
+ 1] = {
477 [NL80211_SCHED_SCAN_MATCH_ATTR_SSID
] = { .type
= NLA_BINARY
,
478 .len
= IEEE80211_MAX_SSID_LEN
},
479 [NL80211_SCHED_SCAN_MATCH_ATTR_RSSI
] = { .type
= NLA_U32
},
482 static const struct nla_policy
483 nl80211_plan_policy
[NL80211_SCHED_SCAN_PLAN_MAX
+ 1] = {
484 [NL80211_SCHED_SCAN_PLAN_INTERVAL
] = { .type
= NLA_U32
},
485 [NL80211_SCHED_SCAN_PLAN_ITERATIONS
] = { .type
= NLA_U32
},
488 static int nl80211_prepare_wdev_dump(struct sk_buff
*skb
,
489 struct netlink_callback
*cb
,
490 struct cfg80211_registered_device
**rdev
,
491 struct wireless_dev
**wdev
)
498 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
499 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
504 *wdev
= __cfg80211_wdev_from_attrs(sock_net(skb
->sk
),
505 nl80211_fam
.attrbuf
);
507 err
= PTR_ERR(*wdev
);
510 *rdev
= wiphy_to_rdev((*wdev
)->wiphy
);
511 /* 0 is the first index - add 1 to parse only once */
512 cb
->args
[0] = (*rdev
)->wiphy_idx
+ 1;
513 cb
->args
[1] = (*wdev
)->identifier
;
515 /* subtract the 1 again here */
516 struct wiphy
*wiphy
= wiphy_idx_to_wiphy(cb
->args
[0] - 1);
517 struct wireless_dev
*tmp
;
523 *rdev
= wiphy_to_rdev(wiphy
);
526 list_for_each_entry(tmp
, &(*rdev
)->wdev_list
, list
) {
527 if (tmp
->identifier
== cb
->args
[1]) {
545 static void nl80211_finish_wdev_dump(struct cfg80211_registered_device
*rdev
)
551 static bool is_valid_ie_attr(const struct nlattr
*attr
)
559 pos
= nla_data(attr
);
580 /* message building helper */
581 static inline void *nl80211hdr_put(struct sk_buff
*skb
, u32 portid
, u32 seq
,
584 /* since there is no private header just add the generic one */
585 return genlmsg_put(skb
, portid
, seq
, &nl80211_fam
, flags
, cmd
);
588 static int nl80211_msg_put_channel(struct sk_buff
*msg
,
589 struct ieee80211_channel
*chan
,
592 /* Some channels must be completely excluded from the
593 * list to protect old user-space tools from breaking
595 if (!large
&& chan
->flags
&
596 (IEEE80211_CHAN_NO_10MHZ
| IEEE80211_CHAN_NO_20MHZ
))
599 if (nla_put_u32(msg
, NL80211_FREQUENCY_ATTR_FREQ
,
601 goto nla_put_failure
;
603 if ((chan
->flags
& IEEE80211_CHAN_DISABLED
) &&
604 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_DISABLED
))
605 goto nla_put_failure
;
606 if (chan
->flags
& IEEE80211_CHAN_NO_IR
) {
607 if (nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_IR
))
608 goto nla_put_failure
;
609 if (nla_put_flag(msg
, __NL80211_FREQUENCY_ATTR_NO_IBSS
))
610 goto nla_put_failure
;
612 if (chan
->flags
& IEEE80211_CHAN_RADAR
) {
613 if (nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_RADAR
))
614 goto nla_put_failure
;
618 time
= elapsed_jiffies_msecs(chan
->dfs_state_entered
);
620 if (nla_put_u32(msg
, NL80211_FREQUENCY_ATTR_DFS_STATE
,
622 goto nla_put_failure
;
623 if (nla_put_u32(msg
, NL80211_FREQUENCY_ATTR_DFS_TIME
,
625 goto nla_put_failure
;
627 NL80211_FREQUENCY_ATTR_DFS_CAC_TIME
,
629 goto nla_put_failure
;
634 if ((chan
->flags
& IEEE80211_CHAN_NO_HT40MINUS
) &&
635 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_HT40_MINUS
))
636 goto nla_put_failure
;
637 if ((chan
->flags
& IEEE80211_CHAN_NO_HT40PLUS
) &&
638 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_HT40_PLUS
))
639 goto nla_put_failure
;
640 if ((chan
->flags
& IEEE80211_CHAN_NO_80MHZ
) &&
641 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_80MHZ
))
642 goto nla_put_failure
;
643 if ((chan
->flags
& IEEE80211_CHAN_NO_160MHZ
) &&
644 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_160MHZ
))
645 goto nla_put_failure
;
646 if ((chan
->flags
& IEEE80211_CHAN_INDOOR_ONLY
) &&
647 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_INDOOR_ONLY
))
648 goto nla_put_failure
;
649 if ((chan
->flags
& IEEE80211_CHAN_IR_CONCURRENT
) &&
650 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_IR_CONCURRENT
))
651 goto nla_put_failure
;
652 if ((chan
->flags
& IEEE80211_CHAN_NO_20MHZ
) &&
653 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_20MHZ
))
654 goto nla_put_failure
;
655 if ((chan
->flags
& IEEE80211_CHAN_NO_10MHZ
) &&
656 nla_put_flag(msg
, NL80211_FREQUENCY_ATTR_NO_10MHZ
))
657 goto nla_put_failure
;
660 if (nla_put_u32(msg
, NL80211_FREQUENCY_ATTR_MAX_TX_POWER
,
661 DBM_TO_MBM(chan
->max_power
)))
662 goto nla_put_failure
;
670 /* netlink command implementations */
677 bool def_uni
, def_multi
;
680 static int nl80211_parse_key_new(struct nlattr
*key
, struct key_parse
*k
)
682 struct nlattr
*tb
[NL80211_KEY_MAX
+ 1];
683 int err
= nla_parse_nested(tb
, NL80211_KEY_MAX
, key
,
688 k
->def
= !!tb
[NL80211_KEY_DEFAULT
];
689 k
->defmgmt
= !!tb
[NL80211_KEY_DEFAULT_MGMT
];
698 if (tb
[NL80211_KEY_IDX
])
699 k
->idx
= nla_get_u8(tb
[NL80211_KEY_IDX
]);
701 if (tb
[NL80211_KEY_DATA
]) {
702 k
->p
.key
= nla_data(tb
[NL80211_KEY_DATA
]);
703 k
->p
.key_len
= nla_len(tb
[NL80211_KEY_DATA
]);
706 if (tb
[NL80211_KEY_SEQ
]) {
707 k
->p
.seq
= nla_data(tb
[NL80211_KEY_SEQ
]);
708 k
->p
.seq_len
= nla_len(tb
[NL80211_KEY_SEQ
]);
711 if (tb
[NL80211_KEY_CIPHER
])
712 k
->p
.cipher
= nla_get_u32(tb
[NL80211_KEY_CIPHER
]);
714 if (tb
[NL80211_KEY_TYPE
]) {
715 k
->type
= nla_get_u32(tb
[NL80211_KEY_TYPE
]);
716 if (k
->type
< 0 || k
->type
>= NUM_NL80211_KEYTYPES
)
720 if (tb
[NL80211_KEY_DEFAULT_TYPES
]) {
721 struct nlattr
*kdt
[NUM_NL80211_KEY_DEFAULT_TYPES
];
722 err
= nla_parse_nested(kdt
, NUM_NL80211_KEY_DEFAULT_TYPES
- 1,
723 tb
[NL80211_KEY_DEFAULT_TYPES
],
724 nl80211_key_default_policy
);
728 k
->def_uni
= kdt
[NL80211_KEY_DEFAULT_TYPE_UNICAST
];
729 k
->def_multi
= kdt
[NL80211_KEY_DEFAULT_TYPE_MULTICAST
];
735 static int nl80211_parse_key_old(struct genl_info
*info
, struct key_parse
*k
)
737 if (info
->attrs
[NL80211_ATTR_KEY_DATA
]) {
738 k
->p
.key
= nla_data(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
739 k
->p
.key_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_DATA
]);
742 if (info
->attrs
[NL80211_ATTR_KEY_SEQ
]) {
743 k
->p
.seq
= nla_data(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
744 k
->p
.seq_len
= nla_len(info
->attrs
[NL80211_ATTR_KEY_SEQ
]);
747 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
748 k
->idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
750 if (info
->attrs
[NL80211_ATTR_KEY_CIPHER
])
751 k
->p
.cipher
= nla_get_u32(info
->attrs
[NL80211_ATTR_KEY_CIPHER
]);
753 k
->def
= !!info
->attrs
[NL80211_ATTR_KEY_DEFAULT
];
754 k
->defmgmt
= !!info
->attrs
[NL80211_ATTR_KEY_DEFAULT_MGMT
];
763 if (info
->attrs
[NL80211_ATTR_KEY_TYPE
]) {
764 k
->type
= nla_get_u32(info
->attrs
[NL80211_ATTR_KEY_TYPE
]);
765 if (k
->type
< 0 || k
->type
>= NUM_NL80211_KEYTYPES
)
769 if (info
->attrs
[NL80211_ATTR_KEY_DEFAULT_TYPES
]) {
770 struct nlattr
*kdt
[NUM_NL80211_KEY_DEFAULT_TYPES
];
771 int err
= nla_parse_nested(
772 kdt
, NUM_NL80211_KEY_DEFAULT_TYPES
- 1,
773 info
->attrs
[NL80211_ATTR_KEY_DEFAULT_TYPES
],
774 nl80211_key_default_policy
);
778 k
->def_uni
= kdt
[NL80211_KEY_DEFAULT_TYPE_UNICAST
];
779 k
->def_multi
= kdt
[NL80211_KEY_DEFAULT_TYPE_MULTICAST
];
785 static int nl80211_parse_key(struct genl_info
*info
, struct key_parse
*k
)
789 memset(k
, 0, sizeof(*k
));
793 if (info
->attrs
[NL80211_ATTR_KEY
])
794 err
= nl80211_parse_key_new(info
->attrs
[NL80211_ATTR_KEY
], k
);
796 err
= nl80211_parse_key_old(info
, k
);
801 if (k
->def
&& k
->defmgmt
)
805 if (k
->def_uni
|| !k
->def_multi
)
811 if (k
->idx
< 4 || k
->idx
> 5)
814 if (k
->idx
< 0 || k
->idx
> 3)
817 if (k
->idx
< 0 || k
->idx
> 5)
825 static struct cfg80211_cached_keys
*
826 nl80211_parse_connkeys(struct cfg80211_registered_device
*rdev
,
827 struct nlattr
*keys
, bool *no_ht
)
829 struct key_parse parse
;
831 struct cfg80211_cached_keys
*result
;
832 int rem
, err
, def
= 0;
834 result
= kzalloc(sizeof(*result
), GFP_KERNEL
);
836 return ERR_PTR(-ENOMEM
);
839 result
->defmgmt
= -1;
841 nla_for_each_nested(key
, keys
, rem
) {
842 memset(&parse
, 0, sizeof(parse
));
845 err
= nl80211_parse_key_new(key
, &parse
);
851 if (parse
.idx
< 0 || parse
.idx
> 4)
857 result
->def
= parse
.idx
;
858 if (!parse
.def_uni
|| !parse
.def_multi
)
860 } else if (parse
.defmgmt
)
862 err
= cfg80211_validate_key_settings(rdev
, &parse
.p
,
863 parse
.idx
, false, NULL
);
866 result
->params
[parse
.idx
].cipher
= parse
.p
.cipher
;
867 result
->params
[parse
.idx
].key_len
= parse
.p
.key_len
;
868 result
->params
[parse
.idx
].key
= result
->data
[parse
.idx
];
869 memcpy(result
->data
[parse
.idx
], parse
.p
.key
, parse
.p
.key_len
);
871 if (parse
.p
.cipher
== WLAN_CIPHER_SUITE_WEP40
||
872 parse
.p
.cipher
== WLAN_CIPHER_SUITE_WEP104
) {
884 static int nl80211_key_allowed(struct wireless_dev
*wdev
)
886 ASSERT_WDEV_LOCK(wdev
);
888 switch (wdev
->iftype
) {
889 case NL80211_IFTYPE_AP
:
890 case NL80211_IFTYPE_AP_VLAN
:
891 case NL80211_IFTYPE_P2P_GO
:
892 case NL80211_IFTYPE_MESH_POINT
:
894 case NL80211_IFTYPE_ADHOC
:
895 case NL80211_IFTYPE_STATION
:
896 case NL80211_IFTYPE_P2P_CLIENT
:
897 if (!wdev
->current_bss
)
900 case NL80211_IFTYPE_UNSPECIFIED
:
901 case NL80211_IFTYPE_OCB
:
902 case NL80211_IFTYPE_MONITOR
:
903 case NL80211_IFTYPE_P2P_DEVICE
:
904 case NL80211_IFTYPE_WDS
:
905 case NUM_NL80211_IFTYPES
:
912 static struct ieee80211_channel
*nl80211_get_valid_chan(struct wiphy
*wiphy
,
915 struct ieee80211_channel
*chan
;
919 chan
= ieee80211_get_channel(wiphy
, nla_get_u32(tb
));
920 if (!chan
|| chan
->flags
& IEEE80211_CHAN_DISABLED
)
925 static int nl80211_put_iftypes(struct sk_buff
*msg
, u32 attr
, u16 ifmodes
)
927 struct nlattr
*nl_modes
= nla_nest_start(msg
, attr
);
931 goto nla_put_failure
;
935 if ((ifmodes
& 1) && nla_put_flag(msg
, i
))
936 goto nla_put_failure
;
941 nla_nest_end(msg
, nl_modes
);
948 static int nl80211_put_iface_combinations(struct wiphy
*wiphy
,
952 struct nlattr
*nl_combis
;
955 nl_combis
= nla_nest_start(msg
,
956 NL80211_ATTR_INTERFACE_COMBINATIONS
);
958 goto nla_put_failure
;
960 for (i
= 0; i
< wiphy
->n_iface_combinations
; i
++) {
961 const struct ieee80211_iface_combination
*c
;
962 struct nlattr
*nl_combi
, *nl_limits
;
964 c
= &wiphy
->iface_combinations
[i
];
966 nl_combi
= nla_nest_start(msg
, i
+ 1);
968 goto nla_put_failure
;
970 nl_limits
= nla_nest_start(msg
, NL80211_IFACE_COMB_LIMITS
);
972 goto nla_put_failure
;
974 for (j
= 0; j
< c
->n_limits
; j
++) {
975 struct nlattr
*nl_limit
;
977 nl_limit
= nla_nest_start(msg
, j
+ 1);
979 goto nla_put_failure
;
980 if (nla_put_u32(msg
, NL80211_IFACE_LIMIT_MAX
,
982 goto nla_put_failure
;
983 if (nl80211_put_iftypes(msg
, NL80211_IFACE_LIMIT_TYPES
,
985 goto nla_put_failure
;
986 nla_nest_end(msg
, nl_limit
);
989 nla_nest_end(msg
, nl_limits
);
991 if (c
->beacon_int_infra_match
&&
992 nla_put_flag(msg
, NL80211_IFACE_COMB_STA_AP_BI_MATCH
))
993 goto nla_put_failure
;
994 if (nla_put_u32(msg
, NL80211_IFACE_COMB_NUM_CHANNELS
,
995 c
->num_different_channels
) ||
996 nla_put_u32(msg
, NL80211_IFACE_COMB_MAXNUM
,
998 goto nla_put_failure
;
1000 (nla_put_u32(msg
, NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS
,
1001 c
->radar_detect_widths
) ||
1002 nla_put_u32(msg
, NL80211_IFACE_COMB_RADAR_DETECT_REGIONS
,
1003 c
->radar_detect_regions
)))
1004 goto nla_put_failure
;
1006 nla_nest_end(msg
, nl_combi
);
1009 nla_nest_end(msg
, nl_combis
);
1017 static int nl80211_send_wowlan_tcp_caps(struct cfg80211_registered_device
*rdev
,
1018 struct sk_buff
*msg
)
1020 const struct wiphy_wowlan_tcp_support
*tcp
= rdev
->wiphy
.wowlan
->tcp
;
1021 struct nlattr
*nl_tcp
;
1026 nl_tcp
= nla_nest_start(msg
, NL80211_WOWLAN_TRIG_TCP_CONNECTION
);
1030 if (nla_put_u32(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD
,
1031 tcp
->data_payload_max
))
1034 if (nla_put_u32(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD
,
1035 tcp
->data_payload_max
))
1038 if (tcp
->seq
&& nla_put_flag(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ
))
1041 if (tcp
->tok
&& nla_put(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN
,
1042 sizeof(*tcp
->tok
), tcp
->tok
))
1045 if (nla_put_u32(msg
, NL80211_WOWLAN_TCP_DATA_INTERVAL
,
1046 tcp
->data_interval_max
))
1049 if (nla_put_u32(msg
, NL80211_WOWLAN_TCP_WAKE_PAYLOAD
,
1050 tcp
->wake_payload_max
))
1053 nla_nest_end(msg
, nl_tcp
);
1057 static int nl80211_send_wowlan(struct sk_buff
*msg
,
1058 struct cfg80211_registered_device
*rdev
,
1061 struct nlattr
*nl_wowlan
;
1063 if (!rdev
->wiphy
.wowlan
)
1066 nl_wowlan
= nla_nest_start(msg
, NL80211_ATTR_WOWLAN_TRIGGERS_SUPPORTED
);
1070 if (((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_ANY
) &&
1071 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_ANY
)) ||
1072 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_DISCONNECT
) &&
1073 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_DISCONNECT
)) ||
1074 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_MAGIC_PKT
) &&
1075 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_MAGIC_PKT
)) ||
1076 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_SUPPORTS_GTK_REKEY
) &&
1077 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED
)) ||
1078 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_GTK_REKEY_FAILURE
) &&
1079 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE
)) ||
1080 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_EAP_IDENTITY_REQ
) &&
1081 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST
)) ||
1082 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_4WAY_HANDSHAKE
) &&
1083 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE
)) ||
1084 ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_RFKILL_RELEASE
) &&
1085 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_RFKILL_RELEASE
)))
1088 if (rdev
->wiphy
.wowlan
->n_patterns
) {
1089 struct nl80211_pattern_support pat
= {
1090 .max_patterns
= rdev
->wiphy
.wowlan
->n_patterns
,
1091 .min_pattern_len
= rdev
->wiphy
.wowlan
->pattern_min_len
,
1092 .max_pattern_len
= rdev
->wiphy
.wowlan
->pattern_max_len
,
1093 .max_pkt_offset
= rdev
->wiphy
.wowlan
->max_pkt_offset
,
1096 if (nla_put(msg
, NL80211_WOWLAN_TRIG_PKT_PATTERN
,
1101 if ((rdev
->wiphy
.wowlan
->flags
& WIPHY_WOWLAN_NET_DETECT
) &&
1102 nla_put_u32(msg
, NL80211_WOWLAN_TRIG_NET_DETECT
,
1103 rdev
->wiphy
.wowlan
->max_nd_match_sets
))
1106 if (large
&& nl80211_send_wowlan_tcp_caps(rdev
, msg
))
1109 nla_nest_end(msg
, nl_wowlan
);
1115 static int nl80211_send_coalesce(struct sk_buff
*msg
,
1116 struct cfg80211_registered_device
*rdev
)
1118 struct nl80211_coalesce_rule_support rule
;
1120 if (!rdev
->wiphy
.coalesce
)
1123 rule
.max_rules
= rdev
->wiphy
.coalesce
->n_rules
;
1124 rule
.max_delay
= rdev
->wiphy
.coalesce
->max_delay
;
1125 rule
.pat
.max_patterns
= rdev
->wiphy
.coalesce
->n_patterns
;
1126 rule
.pat
.min_pattern_len
= rdev
->wiphy
.coalesce
->pattern_min_len
;
1127 rule
.pat
.max_pattern_len
= rdev
->wiphy
.coalesce
->pattern_max_len
;
1128 rule
.pat
.max_pkt_offset
= rdev
->wiphy
.coalesce
->max_pkt_offset
;
1130 if (nla_put(msg
, NL80211_ATTR_COALESCE_RULE
, sizeof(rule
), &rule
))
1136 static int nl80211_send_band_rateinfo(struct sk_buff
*msg
,
1137 struct ieee80211_supported_band
*sband
)
1139 struct nlattr
*nl_rates
, *nl_rate
;
1140 struct ieee80211_rate
*rate
;
1144 if (sband
->ht_cap
.ht_supported
&&
1145 (nla_put(msg
, NL80211_BAND_ATTR_HT_MCS_SET
,
1146 sizeof(sband
->ht_cap
.mcs
),
1147 &sband
->ht_cap
.mcs
) ||
1148 nla_put_u16(msg
, NL80211_BAND_ATTR_HT_CAPA
,
1149 sband
->ht_cap
.cap
) ||
1150 nla_put_u8(msg
, NL80211_BAND_ATTR_HT_AMPDU_FACTOR
,
1151 sband
->ht_cap
.ampdu_factor
) ||
1152 nla_put_u8(msg
, NL80211_BAND_ATTR_HT_AMPDU_DENSITY
,
1153 sband
->ht_cap
.ampdu_density
)))
1157 if (sband
->vht_cap
.vht_supported
&&
1158 (nla_put(msg
, NL80211_BAND_ATTR_VHT_MCS_SET
,
1159 sizeof(sband
->vht_cap
.vht_mcs
),
1160 &sband
->vht_cap
.vht_mcs
) ||
1161 nla_put_u32(msg
, NL80211_BAND_ATTR_VHT_CAPA
,
1162 sband
->vht_cap
.cap
)))
1166 nl_rates
= nla_nest_start(msg
, NL80211_BAND_ATTR_RATES
);
1170 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
1171 nl_rate
= nla_nest_start(msg
, i
);
1175 rate
= &sband
->bitrates
[i
];
1176 if (nla_put_u32(msg
, NL80211_BITRATE_ATTR_RATE
,
1179 if ((rate
->flags
& IEEE80211_RATE_SHORT_PREAMBLE
) &&
1181 NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE
))
1184 nla_nest_end(msg
, nl_rate
);
1187 nla_nest_end(msg
, nl_rates
);
1193 nl80211_send_mgmt_stypes(struct sk_buff
*msg
,
1194 const struct ieee80211_txrx_stypes
*mgmt_stypes
)
1197 struct nlattr
*nl_ftypes
, *nl_ifs
;
1198 enum nl80211_iftype ift
;
1204 nl_ifs
= nla_nest_start(msg
, NL80211_ATTR_TX_FRAME_TYPES
);
1208 for (ift
= 0; ift
< NUM_NL80211_IFTYPES
; ift
++) {
1209 nl_ftypes
= nla_nest_start(msg
, ift
);
1213 stypes
= mgmt_stypes
[ift
].tx
;
1216 nla_put_u16(msg
, NL80211_ATTR_FRAME_TYPE
,
1217 (i
<< 4) | IEEE80211_FTYPE_MGMT
))
1222 nla_nest_end(msg
, nl_ftypes
);
1225 nla_nest_end(msg
, nl_ifs
);
1227 nl_ifs
= nla_nest_start(msg
, NL80211_ATTR_RX_FRAME_TYPES
);
1231 for (ift
= 0; ift
< NUM_NL80211_IFTYPES
; ift
++) {
1232 nl_ftypes
= nla_nest_start(msg
, ift
);
1236 stypes
= mgmt_stypes
[ift
].rx
;
1239 nla_put_u16(msg
, NL80211_ATTR_FRAME_TYPE
,
1240 (i
<< 4) | IEEE80211_FTYPE_MGMT
))
1245 nla_nest_end(msg
, nl_ftypes
);
1247 nla_nest_end(msg
, nl_ifs
);
1252 struct nl80211_dump_wiphy_state
{
1255 long split_start
, band_start
, chan_start
;
1259 static int nl80211_send_wiphy(struct cfg80211_registered_device
*rdev
,
1260 enum nl80211_commands cmd
,
1261 struct sk_buff
*msg
, u32 portid
, u32 seq
,
1262 int flags
, struct nl80211_dump_wiphy_state
*state
)
1265 struct nlattr
*nl_bands
, *nl_band
;
1266 struct nlattr
*nl_freqs
, *nl_freq
;
1267 struct nlattr
*nl_cmds
;
1268 enum ieee80211_band band
;
1269 struct ieee80211_channel
*chan
;
1271 const struct ieee80211_txrx_stypes
*mgmt_stypes
=
1272 rdev
->wiphy
.mgmt_stypes
;
1275 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
, cmd
);
1279 if (WARN_ON(!state
))
1282 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
1283 nla_put_string(msg
, NL80211_ATTR_WIPHY_NAME
,
1284 wiphy_name(&rdev
->wiphy
)) ||
1285 nla_put_u32(msg
, NL80211_ATTR_GENERATION
,
1286 cfg80211_rdev_list_generation
))
1287 goto nla_put_failure
;
1289 if (cmd
!= NL80211_CMD_NEW_WIPHY
)
1292 switch (state
->split_start
) {
1294 if (nla_put_u8(msg
, NL80211_ATTR_WIPHY_RETRY_SHORT
,
1295 rdev
->wiphy
.retry_short
) ||
1296 nla_put_u8(msg
, NL80211_ATTR_WIPHY_RETRY_LONG
,
1297 rdev
->wiphy
.retry_long
) ||
1298 nla_put_u32(msg
, NL80211_ATTR_WIPHY_FRAG_THRESHOLD
,
1299 rdev
->wiphy
.frag_threshold
) ||
1300 nla_put_u32(msg
, NL80211_ATTR_WIPHY_RTS_THRESHOLD
,
1301 rdev
->wiphy
.rts_threshold
) ||
1302 nla_put_u8(msg
, NL80211_ATTR_WIPHY_COVERAGE_CLASS
,
1303 rdev
->wiphy
.coverage_class
) ||
1304 nla_put_u8(msg
, NL80211_ATTR_MAX_NUM_SCAN_SSIDS
,
1305 rdev
->wiphy
.max_scan_ssids
) ||
1306 nla_put_u8(msg
, NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS
,
1307 rdev
->wiphy
.max_sched_scan_ssids
) ||
1308 nla_put_u16(msg
, NL80211_ATTR_MAX_SCAN_IE_LEN
,
1309 rdev
->wiphy
.max_scan_ie_len
) ||
1310 nla_put_u16(msg
, NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN
,
1311 rdev
->wiphy
.max_sched_scan_ie_len
) ||
1312 nla_put_u8(msg
, NL80211_ATTR_MAX_MATCH_SETS
,
1313 rdev
->wiphy
.max_match_sets
) ||
1314 nla_put_u32(msg
, NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS
,
1315 rdev
->wiphy
.max_sched_scan_plans
) ||
1316 nla_put_u32(msg
, NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL
,
1317 rdev
->wiphy
.max_sched_scan_plan_interval
) ||
1318 nla_put_u32(msg
, NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS
,
1319 rdev
->wiphy
.max_sched_scan_plan_iterations
))
1320 goto nla_put_failure
;
1322 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_IBSS_RSN
) &&
1323 nla_put_flag(msg
, NL80211_ATTR_SUPPORT_IBSS_RSN
))
1324 goto nla_put_failure
;
1325 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_MESH_AUTH
) &&
1326 nla_put_flag(msg
, NL80211_ATTR_SUPPORT_MESH_AUTH
))
1327 goto nla_put_failure
;
1328 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_AP_UAPSD
) &&
1329 nla_put_flag(msg
, NL80211_ATTR_SUPPORT_AP_UAPSD
))
1330 goto nla_put_failure
;
1331 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_FW_ROAM
) &&
1332 nla_put_flag(msg
, NL80211_ATTR_ROAM_SUPPORT
))
1333 goto nla_put_failure
;
1334 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_TDLS
) &&
1335 nla_put_flag(msg
, NL80211_ATTR_TDLS_SUPPORT
))
1336 goto nla_put_failure
;
1337 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_TDLS_EXTERNAL_SETUP
) &&
1338 nla_put_flag(msg
, NL80211_ATTR_TDLS_EXTERNAL_SETUP
))
1339 goto nla_put_failure
;
1340 state
->split_start
++;
1344 if (nla_put(msg
, NL80211_ATTR_CIPHER_SUITES
,
1345 sizeof(u32
) * rdev
->wiphy
.n_cipher_suites
,
1346 rdev
->wiphy
.cipher_suites
))
1347 goto nla_put_failure
;
1349 if (nla_put_u8(msg
, NL80211_ATTR_MAX_NUM_PMKIDS
,
1350 rdev
->wiphy
.max_num_pmkids
))
1351 goto nla_put_failure
;
1353 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_CONTROL_PORT_PROTOCOL
) &&
1354 nla_put_flag(msg
, NL80211_ATTR_CONTROL_PORT_ETHERTYPE
))
1355 goto nla_put_failure
;
1357 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_TX
,
1358 rdev
->wiphy
.available_antennas_tx
) ||
1359 nla_put_u32(msg
, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX
,
1360 rdev
->wiphy
.available_antennas_rx
))
1361 goto nla_put_failure
;
1363 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
) &&
1364 nla_put_u32(msg
, NL80211_ATTR_PROBE_RESP_OFFLOAD
,
1365 rdev
->wiphy
.probe_resp_offload
))
1366 goto nla_put_failure
;
1368 if ((rdev
->wiphy
.available_antennas_tx
||
1369 rdev
->wiphy
.available_antennas_rx
) &&
1370 rdev
->ops
->get_antenna
) {
1371 u32 tx_ant
= 0, rx_ant
= 0;
1373 res
= rdev_get_antenna(rdev
, &tx_ant
, &rx_ant
);
1375 if (nla_put_u32(msg
,
1376 NL80211_ATTR_WIPHY_ANTENNA_TX
,
1379 NL80211_ATTR_WIPHY_ANTENNA_RX
,
1381 goto nla_put_failure
;
1385 state
->split_start
++;
1389 if (nl80211_put_iftypes(msg
, NL80211_ATTR_SUPPORTED_IFTYPES
,
1390 rdev
->wiphy
.interface_modes
))
1391 goto nla_put_failure
;
1392 state
->split_start
++;
1396 nl_bands
= nla_nest_start(msg
, NL80211_ATTR_WIPHY_BANDS
);
1398 goto nla_put_failure
;
1400 for (band
= state
->band_start
;
1401 band
< IEEE80211_NUM_BANDS
; band
++) {
1402 struct ieee80211_supported_band
*sband
;
1404 sband
= rdev
->wiphy
.bands
[band
];
1409 nl_band
= nla_nest_start(msg
, band
);
1411 goto nla_put_failure
;
1413 switch (state
->chan_start
) {
1415 if (nl80211_send_band_rateinfo(msg
, sband
))
1416 goto nla_put_failure
;
1417 state
->chan_start
++;
1421 /* add frequencies */
1422 nl_freqs
= nla_nest_start(
1423 msg
, NL80211_BAND_ATTR_FREQS
);
1425 goto nla_put_failure
;
1427 for (i
= state
->chan_start
- 1;
1428 i
< sband
->n_channels
;
1430 nl_freq
= nla_nest_start(msg
, i
);
1432 goto nla_put_failure
;
1434 chan
= &sband
->channels
[i
];
1436 if (nl80211_msg_put_channel(
1439 goto nla_put_failure
;
1441 nla_nest_end(msg
, nl_freq
);
1445 if (i
< sband
->n_channels
)
1446 state
->chan_start
= i
+ 2;
1448 state
->chan_start
= 0;
1449 nla_nest_end(msg
, nl_freqs
);
1452 nla_nest_end(msg
, nl_band
);
1455 /* start again here */
1456 if (state
->chan_start
)
1461 nla_nest_end(msg
, nl_bands
);
1463 if (band
< IEEE80211_NUM_BANDS
)
1464 state
->band_start
= band
+ 1;
1466 state
->band_start
= 0;
1468 /* if bands & channels are done, continue outside */
1469 if (state
->band_start
== 0 && state
->chan_start
== 0)
1470 state
->split_start
++;
1474 nl_cmds
= nla_nest_start(msg
, NL80211_ATTR_SUPPORTED_COMMANDS
);
1476 goto nla_put_failure
;
1479 #define CMD(op, n) \
1481 if (rdev->ops->op) { \
1483 if (nla_put_u32(msg, i, NL80211_CMD_ ## n)) \
1484 goto nla_put_failure; \
1488 CMD(add_virtual_intf
, NEW_INTERFACE
);
1489 CMD(change_virtual_intf
, SET_INTERFACE
);
1490 CMD(add_key
, NEW_KEY
);
1491 CMD(start_ap
, START_AP
);
1492 CMD(add_station
, NEW_STATION
);
1493 CMD(add_mpath
, NEW_MPATH
);
1494 CMD(update_mesh_config
, SET_MESH_CONFIG
);
1495 CMD(change_bss
, SET_BSS
);
1496 CMD(auth
, AUTHENTICATE
);
1497 CMD(assoc
, ASSOCIATE
);
1498 CMD(deauth
, DEAUTHENTICATE
);
1499 CMD(disassoc
, DISASSOCIATE
);
1500 CMD(join_ibss
, JOIN_IBSS
);
1501 CMD(join_mesh
, JOIN_MESH
);
1502 CMD(set_pmksa
, SET_PMKSA
);
1503 CMD(del_pmksa
, DEL_PMKSA
);
1504 CMD(flush_pmksa
, FLUSH_PMKSA
);
1505 if (rdev
->wiphy
.flags
& WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
)
1506 CMD(remain_on_channel
, REMAIN_ON_CHANNEL
);
1507 CMD(set_bitrate_mask
, SET_TX_BITRATE_MASK
);
1508 CMD(mgmt_tx
, FRAME
);
1509 CMD(mgmt_tx_cancel_wait
, FRAME_WAIT_CANCEL
);
1510 if (rdev
->wiphy
.flags
& WIPHY_FLAG_NETNS_OK
) {
1512 if (nla_put_u32(msg
, i
, NL80211_CMD_SET_WIPHY_NETNS
))
1513 goto nla_put_failure
;
1515 if (rdev
->ops
->set_monitor_channel
|| rdev
->ops
->start_ap
||
1516 rdev
->ops
->join_mesh
) {
1518 if (nla_put_u32(msg
, i
, NL80211_CMD_SET_CHANNEL
))
1519 goto nla_put_failure
;
1521 CMD(set_wds_peer
, SET_WDS_PEER
);
1522 if (rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_TDLS
) {
1523 CMD(tdls_mgmt
, TDLS_MGMT
);
1524 CMD(tdls_oper
, TDLS_OPER
);
1526 if (rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_SCHED_SCAN
)
1527 CMD(sched_scan_start
, START_SCHED_SCAN
);
1528 CMD(probe_client
, PROBE_CLIENT
);
1529 CMD(set_noack_map
, SET_NOACK_MAP
);
1530 if (rdev
->wiphy
.flags
& WIPHY_FLAG_REPORTS_OBSS
) {
1532 if (nla_put_u32(msg
, i
, NL80211_CMD_REGISTER_BEACONS
))
1533 goto nla_put_failure
;
1535 CMD(start_p2p_device
, START_P2P_DEVICE
);
1536 CMD(set_mcast_rate
, SET_MCAST_RATE
);
1537 #ifdef CONFIG_NL80211_TESTMODE
1538 CMD(testmode_cmd
, TESTMODE
);
1541 CMD(crit_proto_start
, CRIT_PROTOCOL_START
);
1542 CMD(crit_proto_stop
, CRIT_PROTOCOL_STOP
);
1543 if (rdev
->wiphy
.flags
& WIPHY_FLAG_HAS_CHANNEL_SWITCH
)
1544 CMD(channel_switch
, CHANNEL_SWITCH
);
1545 CMD(set_qos_map
, SET_QOS_MAP
);
1546 if (rdev
->wiphy
.features
&
1547 NL80211_FEATURE_SUPPORTS_WMM_ADMISSION
)
1548 CMD(add_tx_ts
, ADD_TX_TS
);
1550 /* add into the if now */
1553 if (rdev
->ops
->connect
|| rdev
->ops
->auth
) {
1555 if (nla_put_u32(msg
, i
, NL80211_CMD_CONNECT
))
1556 goto nla_put_failure
;
1559 if (rdev
->ops
->disconnect
|| rdev
->ops
->deauth
) {
1561 if (nla_put_u32(msg
, i
, NL80211_CMD_DISCONNECT
))
1562 goto nla_put_failure
;
1565 nla_nest_end(msg
, nl_cmds
);
1566 state
->split_start
++;
1570 if (rdev
->ops
->remain_on_channel
&&
1571 (rdev
->wiphy
.flags
& WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
) &&
1573 NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION
,
1574 rdev
->wiphy
.max_remain_on_channel_duration
))
1575 goto nla_put_failure
;
1577 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_OFFCHAN_TX
) &&
1578 nla_put_flag(msg
, NL80211_ATTR_OFFCHANNEL_TX_OK
))
1579 goto nla_put_failure
;
1581 if (nl80211_send_mgmt_stypes(msg
, mgmt_stypes
))
1582 goto nla_put_failure
;
1583 state
->split_start
++;
1588 if (nl80211_send_wowlan(msg
, rdev
, state
->split
))
1589 goto nla_put_failure
;
1590 state
->split_start
++;
1594 state
->split_start
++;
1597 if (nl80211_put_iftypes(msg
, NL80211_ATTR_SOFTWARE_IFTYPES
,
1598 rdev
->wiphy
.software_iftypes
))
1599 goto nla_put_failure
;
1601 if (nl80211_put_iface_combinations(&rdev
->wiphy
, msg
,
1603 goto nla_put_failure
;
1605 state
->split_start
++;
1609 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_HAVE_AP_SME
) &&
1610 nla_put_u32(msg
, NL80211_ATTR_DEVICE_AP_SME
,
1611 rdev
->wiphy
.ap_sme_capa
))
1612 goto nla_put_failure
;
1614 features
= rdev
->wiphy
.features
;
1616 * We can only add the per-channel limit information if the
1617 * dump is split, otherwise it makes it too big. Therefore
1618 * only advertise it in that case.
1621 features
|= NL80211_FEATURE_ADVERTISE_CHAN_LIMITS
;
1622 if (nla_put_u32(msg
, NL80211_ATTR_FEATURE_FLAGS
, features
))
1623 goto nla_put_failure
;
1625 if (rdev
->wiphy
.ht_capa_mod_mask
&&
1626 nla_put(msg
, NL80211_ATTR_HT_CAPABILITY_MASK
,
1627 sizeof(*rdev
->wiphy
.ht_capa_mod_mask
),
1628 rdev
->wiphy
.ht_capa_mod_mask
))
1629 goto nla_put_failure
;
1631 if (rdev
->wiphy
.flags
& WIPHY_FLAG_HAVE_AP_SME
&&
1632 rdev
->wiphy
.max_acl_mac_addrs
&&
1633 nla_put_u32(msg
, NL80211_ATTR_MAC_ACL_MAX
,
1634 rdev
->wiphy
.max_acl_mac_addrs
))
1635 goto nla_put_failure
;
1638 * Any information below this point is only available to
1639 * applications that can deal with it being split. This
1640 * helps ensure that newly added capabilities don't break
1641 * older tools by overrunning their buffers.
1643 * We still increment split_start so that in the split
1644 * case we'll continue with more data in the next round,
1645 * but break unconditionally so unsplit data stops here.
1647 state
->split_start
++;
1650 if (rdev
->wiphy
.extended_capabilities
&&
1651 (nla_put(msg
, NL80211_ATTR_EXT_CAPA
,
1652 rdev
->wiphy
.extended_capabilities_len
,
1653 rdev
->wiphy
.extended_capabilities
) ||
1654 nla_put(msg
, NL80211_ATTR_EXT_CAPA_MASK
,
1655 rdev
->wiphy
.extended_capabilities_len
,
1656 rdev
->wiphy
.extended_capabilities_mask
)))
1657 goto nla_put_failure
;
1659 if (rdev
->wiphy
.vht_capa_mod_mask
&&
1660 nla_put(msg
, NL80211_ATTR_VHT_CAPABILITY_MASK
,
1661 sizeof(*rdev
->wiphy
.vht_capa_mod_mask
),
1662 rdev
->wiphy
.vht_capa_mod_mask
))
1663 goto nla_put_failure
;
1665 state
->split_start
++;
1668 if (nl80211_send_coalesce(msg
, rdev
))
1669 goto nla_put_failure
;
1671 if ((rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_5_10_MHZ
) &&
1672 (nla_put_flag(msg
, NL80211_ATTR_SUPPORT_5_MHZ
) ||
1673 nla_put_flag(msg
, NL80211_ATTR_SUPPORT_10_MHZ
)))
1674 goto nla_put_failure
;
1676 if (rdev
->wiphy
.max_ap_assoc_sta
&&
1677 nla_put_u32(msg
, NL80211_ATTR_MAX_AP_ASSOC_STA
,
1678 rdev
->wiphy
.max_ap_assoc_sta
))
1679 goto nla_put_failure
;
1681 state
->split_start
++;
1684 if (rdev
->wiphy
.n_vendor_commands
) {
1685 const struct nl80211_vendor_cmd_info
*info
;
1686 struct nlattr
*nested
;
1688 nested
= nla_nest_start(msg
, NL80211_ATTR_VENDOR_DATA
);
1690 goto nla_put_failure
;
1692 for (i
= 0; i
< rdev
->wiphy
.n_vendor_commands
; i
++) {
1693 info
= &rdev
->wiphy
.vendor_commands
[i
].info
;
1694 if (nla_put(msg
, i
+ 1, sizeof(*info
), info
))
1695 goto nla_put_failure
;
1697 nla_nest_end(msg
, nested
);
1700 if (rdev
->wiphy
.n_vendor_events
) {
1701 const struct nl80211_vendor_cmd_info
*info
;
1702 struct nlattr
*nested
;
1704 nested
= nla_nest_start(msg
,
1705 NL80211_ATTR_VENDOR_EVENTS
);
1707 goto nla_put_failure
;
1709 for (i
= 0; i
< rdev
->wiphy
.n_vendor_events
; i
++) {
1710 info
= &rdev
->wiphy
.vendor_events
[i
];
1711 if (nla_put(msg
, i
+ 1, sizeof(*info
), info
))
1712 goto nla_put_failure
;
1714 nla_nest_end(msg
, nested
);
1716 state
->split_start
++;
1719 if (rdev
->wiphy
.flags
& WIPHY_FLAG_HAS_CHANNEL_SWITCH
&&
1720 nla_put_u8(msg
, NL80211_ATTR_MAX_CSA_COUNTERS
,
1721 rdev
->wiphy
.max_num_csa_counters
))
1722 goto nla_put_failure
;
1724 if (rdev
->wiphy
.regulatory_flags
& REGULATORY_WIPHY_SELF_MANAGED
&&
1725 nla_put_flag(msg
, NL80211_ATTR_WIPHY_SELF_MANAGED_REG
))
1726 goto nla_put_failure
;
1728 if (nla_put(msg
, NL80211_ATTR_EXT_FEATURES
,
1729 sizeof(rdev
->wiphy
.ext_features
),
1730 rdev
->wiphy
.ext_features
))
1731 goto nla_put_failure
;
1734 state
->split_start
= 0;
1738 genlmsg_end(msg
, hdr
);
1742 genlmsg_cancel(msg
, hdr
);
1746 static int nl80211_dump_wiphy_parse(struct sk_buff
*skb
,
1747 struct netlink_callback
*cb
,
1748 struct nl80211_dump_wiphy_state
*state
)
1750 struct nlattr
**tb
= nl80211_fam
.attrbuf
;
1751 int ret
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
1752 tb
, nl80211_fam
.maxattr
, nl80211_policy
);
1753 /* ignore parse errors for backward compatibility */
1757 state
->split
= tb
[NL80211_ATTR_SPLIT_WIPHY_DUMP
];
1758 if (tb
[NL80211_ATTR_WIPHY
])
1759 state
->filter_wiphy
= nla_get_u32(tb
[NL80211_ATTR_WIPHY
]);
1760 if (tb
[NL80211_ATTR_WDEV
])
1761 state
->filter_wiphy
= nla_get_u64(tb
[NL80211_ATTR_WDEV
]) >> 32;
1762 if (tb
[NL80211_ATTR_IFINDEX
]) {
1763 struct net_device
*netdev
;
1764 struct cfg80211_registered_device
*rdev
;
1765 int ifidx
= nla_get_u32(tb
[NL80211_ATTR_IFINDEX
]);
1767 netdev
= __dev_get_by_index(sock_net(skb
->sk
), ifidx
);
1770 if (netdev
->ieee80211_ptr
) {
1771 rdev
= wiphy_to_rdev(
1772 netdev
->ieee80211_ptr
->wiphy
);
1773 state
->filter_wiphy
= rdev
->wiphy_idx
;
1780 static int nl80211_dump_wiphy(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1783 struct nl80211_dump_wiphy_state
*state
= (void *)cb
->args
[0];
1784 struct cfg80211_registered_device
*rdev
;
1788 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
1793 state
->filter_wiphy
= -1;
1794 ret
= nl80211_dump_wiphy_parse(skb
, cb
, state
);
1800 cb
->args
[0] = (long)state
;
1803 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
1804 if (!net_eq(wiphy_net(&rdev
->wiphy
), sock_net(skb
->sk
)))
1806 if (++idx
<= state
->start
)
1808 if (state
->filter_wiphy
!= -1 &&
1809 state
->filter_wiphy
!= rdev
->wiphy_idx
)
1811 /* attempt to fit multiple wiphy data chunks into the skb */
1813 ret
= nl80211_send_wiphy(rdev
, NL80211_CMD_NEW_WIPHY
,
1815 NETLINK_CB(cb
->skb
).portid
,
1817 NLM_F_MULTI
, state
);
1820 * If sending the wiphy data didn't fit (ENOBUFS
1821 * or EMSGSIZE returned), this SKB is still
1822 * empty (so it's not too big because another
1823 * wiphy dataset is already in the skb) and
1824 * we've not tried to adjust the dump allocation
1825 * yet ... then adjust the alloc size to be
1826 * bigger, and return 1 but with the empty skb.
1827 * This results in an empty message being RX'ed
1828 * in userspace, but that is ignored.
1830 * We can then retry with the larger buffer.
1832 if ((ret
== -ENOBUFS
|| ret
== -EMSGSIZE
) &&
1833 !skb
->len
&& !state
->split
&&
1834 cb
->min_dump_alloc
< 4096) {
1835 cb
->min_dump_alloc
= 4096;
1836 state
->split_start
= 0;
1843 } while (state
->split_start
> 0);
1853 static int nl80211_dump_wiphy_done(struct netlink_callback
*cb
)
1855 kfree((void *)cb
->args
[0]);
1859 static int nl80211_get_wiphy(struct sk_buff
*skb
, struct genl_info
*info
)
1861 struct sk_buff
*msg
;
1862 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
1863 struct nl80211_dump_wiphy_state state
= {};
1865 msg
= nlmsg_new(4096, GFP_KERNEL
);
1869 if (nl80211_send_wiphy(rdev
, NL80211_CMD_NEW_WIPHY
, msg
,
1870 info
->snd_portid
, info
->snd_seq
, 0,
1876 return genlmsg_reply(msg
, info
);
1879 static const struct nla_policy txq_params_policy
[NL80211_TXQ_ATTR_MAX
+ 1] = {
1880 [NL80211_TXQ_ATTR_QUEUE
] = { .type
= NLA_U8
},
1881 [NL80211_TXQ_ATTR_TXOP
] = { .type
= NLA_U16
},
1882 [NL80211_TXQ_ATTR_CWMIN
] = { .type
= NLA_U16
},
1883 [NL80211_TXQ_ATTR_CWMAX
] = { .type
= NLA_U16
},
1884 [NL80211_TXQ_ATTR_AIFS
] = { .type
= NLA_U8
},
1887 static int parse_txq_params(struct nlattr
*tb
[],
1888 struct ieee80211_txq_params
*txq_params
)
1890 if (!tb
[NL80211_TXQ_ATTR_AC
] || !tb
[NL80211_TXQ_ATTR_TXOP
] ||
1891 !tb
[NL80211_TXQ_ATTR_CWMIN
] || !tb
[NL80211_TXQ_ATTR_CWMAX
] ||
1892 !tb
[NL80211_TXQ_ATTR_AIFS
])
1895 txq_params
->ac
= nla_get_u8(tb
[NL80211_TXQ_ATTR_AC
]);
1896 txq_params
->txop
= nla_get_u16(tb
[NL80211_TXQ_ATTR_TXOP
]);
1897 txq_params
->cwmin
= nla_get_u16(tb
[NL80211_TXQ_ATTR_CWMIN
]);
1898 txq_params
->cwmax
= nla_get_u16(tb
[NL80211_TXQ_ATTR_CWMAX
]);
1899 txq_params
->aifs
= nla_get_u8(tb
[NL80211_TXQ_ATTR_AIFS
]);
1901 if (txq_params
->ac
>= NL80211_NUM_ACS
)
1907 static bool nl80211_can_set_dev_channel(struct wireless_dev
*wdev
)
1910 * You can only set the channel explicitly for WDS interfaces,
1911 * all others have their channel managed via their respective
1912 * "establish a connection" command (connect, join, ...)
1914 * For AP/GO and mesh mode, the channel can be set with the
1915 * channel userspace API, but is only stored and passed to the
1916 * low-level driver when the AP starts or the mesh is joined.
1917 * This is for backward compatibility, userspace can also give
1918 * the channel in the start-ap or join-mesh commands instead.
1920 * Monitors are special as they are normally slaved to
1921 * whatever else is going on, so they have their own special
1922 * operation to set the monitor channel if possible.
1925 wdev
->iftype
== NL80211_IFTYPE_AP
||
1926 wdev
->iftype
== NL80211_IFTYPE_MESH_POINT
||
1927 wdev
->iftype
== NL80211_IFTYPE_MONITOR
||
1928 wdev
->iftype
== NL80211_IFTYPE_P2P_GO
;
1931 static int nl80211_parse_chandef(struct cfg80211_registered_device
*rdev
,
1932 struct genl_info
*info
,
1933 struct cfg80211_chan_def
*chandef
)
1937 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
])
1940 control_freq
= nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
1942 chandef
->chan
= ieee80211_get_channel(&rdev
->wiphy
, control_freq
);
1943 chandef
->width
= NL80211_CHAN_WIDTH_20_NOHT
;
1944 chandef
->center_freq1
= control_freq
;
1945 chandef
->center_freq2
= 0;
1947 /* Primary channel not allowed */
1948 if (!chandef
->chan
|| chandef
->chan
->flags
& IEEE80211_CHAN_DISABLED
)
1951 if (info
->attrs
[NL80211_ATTR_WIPHY_CHANNEL_TYPE
]) {
1952 enum nl80211_channel_type chantype
;
1954 chantype
= nla_get_u32(
1955 info
->attrs
[NL80211_ATTR_WIPHY_CHANNEL_TYPE
]);
1958 case NL80211_CHAN_NO_HT
:
1959 case NL80211_CHAN_HT20
:
1960 case NL80211_CHAN_HT40PLUS
:
1961 case NL80211_CHAN_HT40MINUS
:
1962 cfg80211_chandef_create(chandef
, chandef
->chan
,
1968 } else if (info
->attrs
[NL80211_ATTR_CHANNEL_WIDTH
]) {
1970 nla_get_u32(info
->attrs
[NL80211_ATTR_CHANNEL_WIDTH
]);
1971 if (info
->attrs
[NL80211_ATTR_CENTER_FREQ1
])
1972 chandef
->center_freq1
=
1974 info
->attrs
[NL80211_ATTR_CENTER_FREQ1
]);
1975 if (info
->attrs
[NL80211_ATTR_CENTER_FREQ2
])
1976 chandef
->center_freq2
=
1978 info
->attrs
[NL80211_ATTR_CENTER_FREQ2
]);
1981 if (!cfg80211_chandef_valid(chandef
))
1984 if (!cfg80211_chandef_usable(&rdev
->wiphy
, chandef
,
1985 IEEE80211_CHAN_DISABLED
))
1988 if ((chandef
->width
== NL80211_CHAN_WIDTH_5
||
1989 chandef
->width
== NL80211_CHAN_WIDTH_10
) &&
1990 !(rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_5_10_MHZ
))
1996 static int __nl80211_set_channel(struct cfg80211_registered_device
*rdev
,
1997 struct net_device
*dev
,
1998 struct genl_info
*info
)
2000 struct cfg80211_chan_def chandef
;
2002 enum nl80211_iftype iftype
= NL80211_IFTYPE_MONITOR
;
2003 struct wireless_dev
*wdev
= NULL
;
2006 wdev
= dev
->ieee80211_ptr
;
2007 if (!nl80211_can_set_dev_channel(wdev
))
2010 iftype
= wdev
->iftype
;
2012 result
= nl80211_parse_chandef(rdev
, info
, &chandef
);
2017 case NL80211_IFTYPE_AP
:
2018 case NL80211_IFTYPE_P2P_GO
:
2019 if (!cfg80211_reg_can_beacon_relax(&rdev
->wiphy
, &chandef
,
2024 if (wdev
->beacon_interval
) {
2025 if (!dev
|| !rdev
->ops
->set_ap_chanwidth
||
2026 !(rdev
->wiphy
.features
&
2027 NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE
)) {
2032 /* Only allow dynamic channel width changes */
2033 if (chandef
.chan
!= wdev
->preset_chandef
.chan
) {
2037 result
= rdev_set_ap_chanwidth(rdev
, dev
, &chandef
);
2041 wdev
->preset_chandef
= chandef
;
2044 case NL80211_IFTYPE_MESH_POINT
:
2045 result
= cfg80211_set_mesh_channel(rdev
, wdev
, &chandef
);
2047 case NL80211_IFTYPE_MONITOR
:
2048 result
= cfg80211_set_monitor_channel(rdev
, &chandef
);
2057 static int nl80211_set_channel(struct sk_buff
*skb
, struct genl_info
*info
)
2059 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2060 struct net_device
*netdev
= info
->user_ptr
[1];
2062 return __nl80211_set_channel(rdev
, netdev
, info
);
2065 static int nl80211_set_wds_peer(struct sk_buff
*skb
, struct genl_info
*info
)
2067 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2068 struct net_device
*dev
= info
->user_ptr
[1];
2069 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
2072 if (!info
->attrs
[NL80211_ATTR_MAC
])
2075 if (netif_running(dev
))
2078 if (!rdev
->ops
->set_wds_peer
)
2081 if (wdev
->iftype
!= NL80211_IFTYPE_WDS
)
2084 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2085 return rdev_set_wds_peer(rdev
, dev
, bssid
);
2089 static int nl80211_set_wiphy(struct sk_buff
*skb
, struct genl_info
*info
)
2091 struct cfg80211_registered_device
*rdev
;
2092 struct net_device
*netdev
= NULL
;
2093 struct wireless_dev
*wdev
;
2094 int result
= 0, rem_txq_params
= 0;
2095 struct nlattr
*nl_txq_params
;
2097 u8 retry_short
= 0, retry_long
= 0;
2098 u32 frag_threshold
= 0, rts_threshold
= 0;
2099 u8 coverage_class
= 0;
2104 * Try to find the wiphy and netdev. Normally this
2105 * function shouldn't need the netdev, but this is
2106 * done for backward compatibility -- previously
2107 * setting the channel was done per wiphy, but now
2108 * it is per netdev. Previous userland like hostapd
2109 * also passed a netdev to set_wiphy, so that it is
2110 * possible to let that go to the right netdev!
2113 if (info
->attrs
[NL80211_ATTR_IFINDEX
]) {
2114 int ifindex
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFINDEX
]);
2116 netdev
= __dev_get_by_index(genl_info_net(info
), ifindex
);
2117 if (netdev
&& netdev
->ieee80211_ptr
)
2118 rdev
= wiphy_to_rdev(netdev
->ieee80211_ptr
->wiphy
);
2124 rdev
= __cfg80211_rdev_from_attrs(genl_info_net(info
),
2127 return PTR_ERR(rdev
);
2132 wdev
= netdev
->ieee80211_ptr
;
2135 * end workaround code, by now the rdev is available
2136 * and locked, and wdev may or may not be NULL.
2139 if (info
->attrs
[NL80211_ATTR_WIPHY_NAME
])
2140 result
= cfg80211_dev_rename(
2141 rdev
, nla_data(info
->attrs
[NL80211_ATTR_WIPHY_NAME
]));
2146 if (info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
]) {
2147 struct ieee80211_txq_params txq_params
;
2148 struct nlattr
*tb
[NL80211_TXQ_ATTR_MAX
+ 1];
2150 if (!rdev
->ops
->set_txq_params
)
2156 if (netdev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
2157 netdev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
2160 if (!netif_running(netdev
))
2163 nla_for_each_nested(nl_txq_params
,
2164 info
->attrs
[NL80211_ATTR_WIPHY_TXQ_PARAMS
],
2166 result
= nla_parse(tb
, NL80211_TXQ_ATTR_MAX
,
2167 nla_data(nl_txq_params
),
2168 nla_len(nl_txq_params
),
2172 result
= parse_txq_params(tb
, &txq_params
);
2176 result
= rdev_set_txq_params(rdev
, netdev
,
2183 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
2184 result
= __nl80211_set_channel(
2186 nl80211_can_set_dev_channel(wdev
) ? netdev
: NULL
,
2192 if (info
->attrs
[NL80211_ATTR_WIPHY_TX_POWER_SETTING
]) {
2193 struct wireless_dev
*txp_wdev
= wdev
;
2194 enum nl80211_tx_power_setting type
;
2197 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_VIF_TXPOWER
))
2200 if (!rdev
->ops
->set_tx_power
)
2203 idx
= NL80211_ATTR_WIPHY_TX_POWER_SETTING
;
2204 type
= nla_get_u32(info
->attrs
[idx
]);
2206 if (!info
->attrs
[NL80211_ATTR_WIPHY_TX_POWER_LEVEL
] &&
2207 (type
!= NL80211_TX_POWER_AUTOMATIC
))
2210 if (type
!= NL80211_TX_POWER_AUTOMATIC
) {
2211 idx
= NL80211_ATTR_WIPHY_TX_POWER_LEVEL
;
2212 mbm
= nla_get_u32(info
->attrs
[idx
]);
2215 result
= rdev_set_tx_power(rdev
, txp_wdev
, type
, mbm
);
2220 if (info
->attrs
[NL80211_ATTR_WIPHY_ANTENNA_TX
] &&
2221 info
->attrs
[NL80211_ATTR_WIPHY_ANTENNA_RX
]) {
2223 if ((!rdev
->wiphy
.available_antennas_tx
&&
2224 !rdev
->wiphy
.available_antennas_rx
) ||
2225 !rdev
->ops
->set_antenna
)
2228 tx_ant
= nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_ANTENNA_TX
]);
2229 rx_ant
= nla_get_u32(info
->attrs
[NL80211_ATTR_WIPHY_ANTENNA_RX
]);
2231 /* reject antenna configurations which don't match the
2232 * available antenna masks, except for the "all" mask */
2233 if ((~tx_ant
&& (tx_ant
& ~rdev
->wiphy
.available_antennas_tx
)) ||
2234 (~rx_ant
&& (rx_ant
& ~rdev
->wiphy
.available_antennas_rx
)))
2237 tx_ant
= tx_ant
& rdev
->wiphy
.available_antennas_tx
;
2238 rx_ant
= rx_ant
& rdev
->wiphy
.available_antennas_rx
;
2240 result
= rdev_set_antenna(rdev
, tx_ant
, rx_ant
);
2247 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]) {
2248 retry_short
= nla_get_u8(
2249 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_SHORT
]);
2250 if (retry_short
== 0)
2253 changed
|= WIPHY_PARAM_RETRY_SHORT
;
2256 if (info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]) {
2257 retry_long
= nla_get_u8(
2258 info
->attrs
[NL80211_ATTR_WIPHY_RETRY_LONG
]);
2259 if (retry_long
== 0)
2262 changed
|= WIPHY_PARAM_RETRY_LONG
;
2265 if (info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]) {
2266 frag_threshold
= nla_get_u32(
2267 info
->attrs
[NL80211_ATTR_WIPHY_FRAG_THRESHOLD
]);
2268 if (frag_threshold
< 256)
2271 if (frag_threshold
!= (u32
) -1) {
2273 * Fragments (apart from the last one) are required to
2274 * have even length. Make the fragmentation code
2275 * simpler by stripping LSB should someone try to use
2276 * odd threshold value.
2278 frag_threshold
&= ~0x1;
2280 changed
|= WIPHY_PARAM_FRAG_THRESHOLD
;
2283 if (info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]) {
2284 rts_threshold
= nla_get_u32(
2285 info
->attrs
[NL80211_ATTR_WIPHY_RTS_THRESHOLD
]);
2286 changed
|= WIPHY_PARAM_RTS_THRESHOLD
;
2289 if (info
->attrs
[NL80211_ATTR_WIPHY_COVERAGE_CLASS
]) {
2290 if (info
->attrs
[NL80211_ATTR_WIPHY_DYN_ACK
])
2293 coverage_class
= nla_get_u8(
2294 info
->attrs
[NL80211_ATTR_WIPHY_COVERAGE_CLASS
]);
2295 changed
|= WIPHY_PARAM_COVERAGE_CLASS
;
2298 if (info
->attrs
[NL80211_ATTR_WIPHY_DYN_ACK
]) {
2299 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_ACKTO_ESTIMATION
))
2302 changed
|= WIPHY_PARAM_DYN_ACK
;
2306 u8 old_retry_short
, old_retry_long
;
2307 u32 old_frag_threshold
, old_rts_threshold
;
2308 u8 old_coverage_class
;
2310 if (!rdev
->ops
->set_wiphy_params
)
2313 old_retry_short
= rdev
->wiphy
.retry_short
;
2314 old_retry_long
= rdev
->wiphy
.retry_long
;
2315 old_frag_threshold
= rdev
->wiphy
.frag_threshold
;
2316 old_rts_threshold
= rdev
->wiphy
.rts_threshold
;
2317 old_coverage_class
= rdev
->wiphy
.coverage_class
;
2319 if (changed
& WIPHY_PARAM_RETRY_SHORT
)
2320 rdev
->wiphy
.retry_short
= retry_short
;
2321 if (changed
& WIPHY_PARAM_RETRY_LONG
)
2322 rdev
->wiphy
.retry_long
= retry_long
;
2323 if (changed
& WIPHY_PARAM_FRAG_THRESHOLD
)
2324 rdev
->wiphy
.frag_threshold
= frag_threshold
;
2325 if (changed
& WIPHY_PARAM_RTS_THRESHOLD
)
2326 rdev
->wiphy
.rts_threshold
= rts_threshold
;
2327 if (changed
& WIPHY_PARAM_COVERAGE_CLASS
)
2328 rdev
->wiphy
.coverage_class
= coverage_class
;
2330 result
= rdev_set_wiphy_params(rdev
, changed
);
2332 rdev
->wiphy
.retry_short
= old_retry_short
;
2333 rdev
->wiphy
.retry_long
= old_retry_long
;
2334 rdev
->wiphy
.frag_threshold
= old_frag_threshold
;
2335 rdev
->wiphy
.rts_threshold
= old_rts_threshold
;
2336 rdev
->wiphy
.coverage_class
= old_coverage_class
;
2343 static inline u64
wdev_id(struct wireless_dev
*wdev
)
2345 return (u64
)wdev
->identifier
|
2346 ((u64
)wiphy_to_rdev(wdev
->wiphy
)->wiphy_idx
<< 32);
2349 static int nl80211_send_chandef(struct sk_buff
*msg
,
2350 const struct cfg80211_chan_def
*chandef
)
2352 if (WARN_ON(!cfg80211_chandef_valid(chandef
)))
2355 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY_FREQ
,
2356 chandef
->chan
->center_freq
))
2358 switch (chandef
->width
) {
2359 case NL80211_CHAN_WIDTH_20_NOHT
:
2360 case NL80211_CHAN_WIDTH_20
:
2361 case NL80211_CHAN_WIDTH_40
:
2362 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY_CHANNEL_TYPE
,
2363 cfg80211_get_chandef_type(chandef
)))
2369 if (nla_put_u32(msg
, NL80211_ATTR_CHANNEL_WIDTH
, chandef
->width
))
2371 if (nla_put_u32(msg
, NL80211_ATTR_CENTER_FREQ1
, chandef
->center_freq1
))
2373 if (chandef
->center_freq2
&&
2374 nla_put_u32(msg
, NL80211_ATTR_CENTER_FREQ2
, chandef
->center_freq2
))
2379 static int nl80211_send_iface(struct sk_buff
*msg
, u32 portid
, u32 seq
, int flags
,
2380 struct cfg80211_registered_device
*rdev
,
2381 struct wireless_dev
*wdev
, bool removal
)
2383 struct net_device
*dev
= wdev
->netdev
;
2384 u8 cmd
= NL80211_CMD_NEW_INTERFACE
;
2388 cmd
= NL80211_CMD_DEL_INTERFACE
;
2390 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
, cmd
);
2395 (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
2396 nla_put_string(msg
, NL80211_ATTR_IFNAME
, dev
->name
)))
2397 goto nla_put_failure
;
2399 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
2400 nla_put_u32(msg
, NL80211_ATTR_IFTYPE
, wdev
->iftype
) ||
2401 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)) ||
2402 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, wdev_address(wdev
)) ||
2403 nla_put_u32(msg
, NL80211_ATTR_GENERATION
,
2404 rdev
->devlist_generation
^
2405 (cfg80211_rdev_list_generation
<< 2)))
2406 goto nla_put_failure
;
2408 if (rdev
->ops
->get_channel
) {
2410 struct cfg80211_chan_def chandef
;
2412 ret
= rdev_get_channel(rdev
, wdev
, &chandef
);
2414 if (nl80211_send_chandef(msg
, &chandef
))
2415 goto nla_put_failure
;
2419 if (rdev
->ops
->get_tx_power
) {
2422 ret
= rdev_get_tx_power(rdev
, wdev
, &dbm
);
2424 nla_put_u32(msg
, NL80211_ATTR_WIPHY_TX_POWER_LEVEL
,
2426 goto nla_put_failure
;
2429 if (wdev
->ssid_len
) {
2430 if (nla_put(msg
, NL80211_ATTR_SSID
, wdev
->ssid_len
, wdev
->ssid
))
2431 goto nla_put_failure
;
2434 genlmsg_end(msg
, hdr
);
2438 genlmsg_cancel(msg
, hdr
);
2442 static int nl80211_dump_interface(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2446 int wp_start
= cb
->args
[0];
2447 int if_start
= cb
->args
[1];
2448 struct cfg80211_registered_device
*rdev
;
2449 struct wireless_dev
*wdev
;
2452 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
2453 if (!net_eq(wiphy_net(&rdev
->wiphy
), sock_net(skb
->sk
)))
2455 if (wp_idx
< wp_start
) {
2461 list_for_each_entry(wdev
, &rdev
->wdev_list
, list
) {
2462 if (if_idx
< if_start
) {
2466 if (nl80211_send_iface(skb
, NETLINK_CB(cb
->skb
).portid
,
2467 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
2468 rdev
, wdev
, false) < 0) {
2479 cb
->args
[0] = wp_idx
;
2480 cb
->args
[1] = if_idx
;
2485 static int nl80211_get_interface(struct sk_buff
*skb
, struct genl_info
*info
)
2487 struct sk_buff
*msg
;
2488 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2489 struct wireless_dev
*wdev
= info
->user_ptr
[1];
2491 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2495 if (nl80211_send_iface(msg
, info
->snd_portid
, info
->snd_seq
, 0,
2496 rdev
, wdev
, false) < 0) {
2501 return genlmsg_reply(msg
, info
);
2504 static const struct nla_policy mntr_flags_policy
[NL80211_MNTR_FLAG_MAX
+ 1] = {
2505 [NL80211_MNTR_FLAG_FCSFAIL
] = { .type
= NLA_FLAG
},
2506 [NL80211_MNTR_FLAG_PLCPFAIL
] = { .type
= NLA_FLAG
},
2507 [NL80211_MNTR_FLAG_CONTROL
] = { .type
= NLA_FLAG
},
2508 [NL80211_MNTR_FLAG_OTHER_BSS
] = { .type
= NLA_FLAG
},
2509 [NL80211_MNTR_FLAG_COOK_FRAMES
] = { .type
= NLA_FLAG
},
2510 [NL80211_MNTR_FLAG_ACTIVE
] = { .type
= NLA_FLAG
},
2513 static int parse_monitor_flags(struct nlattr
*nla
, u32
*mntrflags
)
2515 struct nlattr
*flags
[NL80211_MNTR_FLAG_MAX
+ 1];
2523 if (nla_parse_nested(flags
, NL80211_MNTR_FLAG_MAX
,
2524 nla
, mntr_flags_policy
))
2527 for (flag
= 1; flag
<= NL80211_MNTR_FLAG_MAX
; flag
++)
2529 *mntrflags
|= (1<<flag
);
2534 static int nl80211_valid_4addr(struct cfg80211_registered_device
*rdev
,
2535 struct net_device
*netdev
, u8 use_4addr
,
2536 enum nl80211_iftype iftype
)
2539 if (netdev
&& (netdev
->priv_flags
& IFF_BRIDGE_PORT
))
2545 case NL80211_IFTYPE_AP_VLAN
:
2546 if (rdev
->wiphy
.flags
& WIPHY_FLAG_4ADDR_AP
)
2549 case NL80211_IFTYPE_STATION
:
2550 if (rdev
->wiphy
.flags
& WIPHY_FLAG_4ADDR_STATION
)
2560 static int nl80211_set_interface(struct sk_buff
*skb
, struct genl_info
*info
)
2562 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2563 struct vif_params params
;
2565 enum nl80211_iftype otype
, ntype
;
2566 struct net_device
*dev
= info
->user_ptr
[1];
2567 u32 _flags
, *flags
= NULL
;
2568 bool change
= false;
2570 memset(¶ms
, 0, sizeof(params
));
2572 otype
= ntype
= dev
->ieee80211_ptr
->iftype
;
2574 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
2575 ntype
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
2578 if (ntype
> NL80211_IFTYPE_MAX
)
2582 if (info
->attrs
[NL80211_ATTR_MESH_ID
]) {
2583 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
2585 if (ntype
!= NL80211_IFTYPE_MESH_POINT
)
2587 if (netif_running(dev
))
2591 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN
!=
2592 IEEE80211_MAX_MESH_ID_LEN
);
2593 wdev
->mesh_id_up_len
=
2594 nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
2595 memcpy(wdev
->ssid
, nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]),
2596 wdev
->mesh_id_up_len
);
2600 if (info
->attrs
[NL80211_ATTR_4ADDR
]) {
2601 params
.use_4addr
= !!nla_get_u8(info
->attrs
[NL80211_ATTR_4ADDR
]);
2603 err
= nl80211_valid_4addr(rdev
, dev
, params
.use_4addr
, ntype
);
2607 params
.use_4addr
= -1;
2610 if (info
->attrs
[NL80211_ATTR_MNTR_FLAGS
]) {
2611 if (ntype
!= NL80211_IFTYPE_MONITOR
)
2613 err
= parse_monitor_flags(info
->attrs
[NL80211_ATTR_MNTR_FLAGS
],
2622 if (flags
&& (*flags
& MONITOR_FLAG_ACTIVE
) &&
2623 !(rdev
->wiphy
.features
& NL80211_FEATURE_ACTIVE_MONITOR
))
2627 err
= cfg80211_change_iface(rdev
, dev
, ntype
, flags
, ¶ms
);
2631 if (!err
&& params
.use_4addr
!= -1)
2632 dev
->ieee80211_ptr
->use_4addr
= params
.use_4addr
;
2637 static int nl80211_new_interface(struct sk_buff
*skb
, struct genl_info
*info
)
2639 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2640 struct vif_params params
;
2641 struct wireless_dev
*wdev
;
2642 struct sk_buff
*msg
, *event
;
2644 enum nl80211_iftype type
= NL80211_IFTYPE_UNSPECIFIED
;
2647 /* to avoid failing a new interface creation due to pending removal */
2648 cfg80211_destroy_ifaces(rdev
);
2650 memset(¶ms
, 0, sizeof(params
));
2652 if (!info
->attrs
[NL80211_ATTR_IFNAME
])
2655 if (info
->attrs
[NL80211_ATTR_IFTYPE
]) {
2656 type
= nla_get_u32(info
->attrs
[NL80211_ATTR_IFTYPE
]);
2657 if (type
> NL80211_IFTYPE_MAX
)
2661 if (!rdev
->ops
->add_virtual_intf
||
2662 !(rdev
->wiphy
.interface_modes
& (1 << type
)))
2665 if ((type
== NL80211_IFTYPE_P2P_DEVICE
||
2666 rdev
->wiphy
.features
& NL80211_FEATURE_MAC_ON_CREATE
) &&
2667 info
->attrs
[NL80211_ATTR_MAC
]) {
2668 nla_memcpy(params
.macaddr
, info
->attrs
[NL80211_ATTR_MAC
],
2670 if (!is_valid_ether_addr(params
.macaddr
))
2671 return -EADDRNOTAVAIL
;
2674 if (info
->attrs
[NL80211_ATTR_4ADDR
]) {
2675 params
.use_4addr
= !!nla_get_u8(info
->attrs
[NL80211_ATTR_4ADDR
]);
2676 err
= nl80211_valid_4addr(rdev
, NULL
, params
.use_4addr
, type
);
2681 err
= parse_monitor_flags(type
== NL80211_IFTYPE_MONITOR
?
2682 info
->attrs
[NL80211_ATTR_MNTR_FLAGS
] : NULL
,
2685 if (!err
&& (flags
& MONITOR_FLAG_ACTIVE
) &&
2686 !(rdev
->wiphy
.features
& NL80211_FEATURE_ACTIVE_MONITOR
))
2689 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2693 wdev
= rdev_add_virtual_intf(rdev
,
2694 nla_data(info
->attrs
[NL80211_ATTR_IFNAME
]),
2695 NET_NAME_USER
, type
, err
? NULL
: &flags
,
2697 if (WARN_ON(!wdev
)) {
2700 } else if (IS_ERR(wdev
)) {
2702 return PTR_ERR(wdev
);
2705 if (info
->attrs
[NL80211_ATTR_SOCKET_OWNER
])
2706 wdev
->owner_nlportid
= info
->snd_portid
;
2709 case NL80211_IFTYPE_MESH_POINT
:
2710 if (!info
->attrs
[NL80211_ATTR_MESH_ID
])
2713 BUILD_BUG_ON(IEEE80211_MAX_SSID_LEN
!=
2714 IEEE80211_MAX_MESH_ID_LEN
);
2715 wdev
->mesh_id_up_len
=
2716 nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
2717 memcpy(wdev
->ssid
, nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]),
2718 wdev
->mesh_id_up_len
);
2721 case NL80211_IFTYPE_P2P_DEVICE
:
2723 * P2P Device doesn't have a netdev, so doesn't go
2724 * through the netdev notifier and must be added here
2726 mutex_init(&wdev
->mtx
);
2727 INIT_LIST_HEAD(&wdev
->event_list
);
2728 spin_lock_init(&wdev
->event_lock
);
2729 INIT_LIST_HEAD(&wdev
->mgmt_registrations
);
2730 spin_lock_init(&wdev
->mgmt_registrations_lock
);
2732 wdev
->identifier
= ++rdev
->wdev_id
;
2733 list_add_rcu(&wdev
->list
, &rdev
->wdev_list
);
2734 rdev
->devlist_generation
++;
2740 if (nl80211_send_iface(msg
, info
->snd_portid
, info
->snd_seq
, 0,
2741 rdev
, wdev
, false) < 0) {
2746 event
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2748 if (nl80211_send_iface(event
, 0, 0, 0,
2749 rdev
, wdev
, false) < 0) {
2754 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
),
2755 event
, 0, NL80211_MCGRP_CONFIG
,
2760 return genlmsg_reply(msg
, info
);
2763 static int nl80211_del_interface(struct sk_buff
*skb
, struct genl_info
*info
)
2765 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2766 struct wireless_dev
*wdev
= info
->user_ptr
[1];
2767 struct sk_buff
*msg
;
2770 if (!rdev
->ops
->del_virtual_intf
)
2773 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2774 if (msg
&& nl80211_send_iface(msg
, 0, 0, 0, rdev
, wdev
, true) < 0) {
2780 * If we remove a wireless device without a netdev then clear
2781 * user_ptr[1] so that nl80211_post_doit won't dereference it
2782 * to check if it needs to do dev_put(). Otherwise it crashes
2783 * since the wdev has been freed, unlike with a netdev where
2784 * we need the dev_put() for the netdev to really be freed.
2787 info
->user_ptr
[1] = NULL
;
2789 status
= rdev_del_virtual_intf(rdev
, wdev
);
2790 if (status
>= 0 && msg
)
2791 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
),
2792 msg
, 0, NL80211_MCGRP_CONFIG
,
2800 static int nl80211_set_noack_map(struct sk_buff
*skb
, struct genl_info
*info
)
2802 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2803 struct net_device
*dev
= info
->user_ptr
[1];
2806 if (!info
->attrs
[NL80211_ATTR_NOACK_MAP
])
2809 if (!rdev
->ops
->set_noack_map
)
2812 noack_map
= nla_get_u16(info
->attrs
[NL80211_ATTR_NOACK_MAP
]);
2814 return rdev_set_noack_map(rdev
, dev
, noack_map
);
2817 struct get_key_cookie
{
2818 struct sk_buff
*msg
;
2823 static void get_key_callback(void *c
, struct key_params
*params
)
2826 struct get_key_cookie
*cookie
= c
;
2829 nla_put(cookie
->msg
, NL80211_ATTR_KEY_DATA
,
2830 params
->key_len
, params
->key
)) ||
2832 nla_put(cookie
->msg
, NL80211_ATTR_KEY_SEQ
,
2833 params
->seq_len
, params
->seq
)) ||
2835 nla_put_u32(cookie
->msg
, NL80211_ATTR_KEY_CIPHER
,
2837 goto nla_put_failure
;
2839 key
= nla_nest_start(cookie
->msg
, NL80211_ATTR_KEY
);
2841 goto nla_put_failure
;
2844 nla_put(cookie
->msg
, NL80211_KEY_DATA
,
2845 params
->key_len
, params
->key
)) ||
2847 nla_put(cookie
->msg
, NL80211_KEY_SEQ
,
2848 params
->seq_len
, params
->seq
)) ||
2850 nla_put_u32(cookie
->msg
, NL80211_KEY_CIPHER
,
2852 goto nla_put_failure
;
2854 if (nla_put_u8(cookie
->msg
, NL80211_ATTR_KEY_IDX
, cookie
->idx
))
2855 goto nla_put_failure
;
2857 nla_nest_end(cookie
->msg
, key
);
2864 static int nl80211_get_key(struct sk_buff
*skb
, struct genl_info
*info
)
2866 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2868 struct net_device
*dev
= info
->user_ptr
[1];
2870 const u8
*mac_addr
= NULL
;
2872 struct get_key_cookie cookie
= {
2876 struct sk_buff
*msg
;
2878 if (info
->attrs
[NL80211_ATTR_KEY_IDX
])
2879 key_idx
= nla_get_u8(info
->attrs
[NL80211_ATTR_KEY_IDX
]);
2884 if (info
->attrs
[NL80211_ATTR_MAC
])
2885 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
2887 pairwise
= !!mac_addr
;
2888 if (info
->attrs
[NL80211_ATTR_KEY_TYPE
]) {
2889 u32 kt
= nla_get_u32(info
->attrs
[NL80211_ATTR_KEY_TYPE
]);
2890 if (kt
>= NUM_NL80211_KEYTYPES
)
2892 if (kt
!= NL80211_KEYTYPE_GROUP
&&
2893 kt
!= NL80211_KEYTYPE_PAIRWISE
)
2895 pairwise
= kt
== NL80211_KEYTYPE_PAIRWISE
;
2898 if (!rdev
->ops
->get_key
)
2901 if (!pairwise
&& mac_addr
&& !(rdev
->wiphy
.flags
& WIPHY_FLAG_IBSS_RSN
))
2904 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
2908 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
2909 NL80211_CMD_NEW_KEY
);
2911 goto nla_put_failure
;
2914 cookie
.idx
= key_idx
;
2916 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
2917 nla_put_u8(msg
, NL80211_ATTR_KEY_IDX
, key_idx
))
2918 goto nla_put_failure
;
2920 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
))
2921 goto nla_put_failure
;
2923 err
= rdev_get_key(rdev
, dev
, key_idx
, pairwise
, mac_addr
, &cookie
,
2930 goto nla_put_failure
;
2932 genlmsg_end(msg
, hdr
);
2933 return genlmsg_reply(msg
, info
);
2942 static int nl80211_set_key(struct sk_buff
*skb
, struct genl_info
*info
)
2944 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
2945 struct key_parse key
;
2947 struct net_device
*dev
= info
->user_ptr
[1];
2949 err
= nl80211_parse_key(info
, &key
);
2956 /* only support setting default key */
2957 if (!key
.def
&& !key
.defmgmt
)
2960 wdev_lock(dev
->ieee80211_ptr
);
2963 if (!rdev
->ops
->set_default_key
) {
2968 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
2972 err
= rdev_set_default_key(rdev
, dev
, key
.idx
,
2973 key
.def_uni
, key
.def_multi
);
2978 #ifdef CONFIG_CFG80211_WEXT
2979 dev
->ieee80211_ptr
->wext
.default_key
= key
.idx
;
2982 if (key
.def_uni
|| !key
.def_multi
) {
2987 if (!rdev
->ops
->set_default_mgmt_key
) {
2992 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
2996 err
= rdev_set_default_mgmt_key(rdev
, dev
, key
.idx
);
3000 #ifdef CONFIG_CFG80211_WEXT
3001 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= key
.idx
;
3006 wdev_unlock(dev
->ieee80211_ptr
);
3011 static int nl80211_new_key(struct sk_buff
*skb
, struct genl_info
*info
)
3013 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3015 struct net_device
*dev
= info
->user_ptr
[1];
3016 struct key_parse key
;
3017 const u8
*mac_addr
= NULL
;
3019 err
= nl80211_parse_key(info
, &key
);
3026 if (info
->attrs
[NL80211_ATTR_MAC
])
3027 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3029 if (key
.type
== -1) {
3031 key
.type
= NL80211_KEYTYPE_PAIRWISE
;
3033 key
.type
= NL80211_KEYTYPE_GROUP
;
3037 if (key
.type
!= NL80211_KEYTYPE_PAIRWISE
&&
3038 key
.type
!= NL80211_KEYTYPE_GROUP
)
3041 if (!rdev
->ops
->add_key
)
3044 if (cfg80211_validate_key_settings(rdev
, &key
.p
, key
.idx
,
3045 key
.type
== NL80211_KEYTYPE_PAIRWISE
,
3049 wdev_lock(dev
->ieee80211_ptr
);
3050 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
3052 err
= rdev_add_key(rdev
, dev
, key
.idx
,
3053 key
.type
== NL80211_KEYTYPE_PAIRWISE
,
3055 wdev_unlock(dev
->ieee80211_ptr
);
3060 static int nl80211_del_key(struct sk_buff
*skb
, struct genl_info
*info
)
3062 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3064 struct net_device
*dev
= info
->user_ptr
[1];
3065 u8
*mac_addr
= NULL
;
3066 struct key_parse key
;
3068 err
= nl80211_parse_key(info
, &key
);
3072 if (info
->attrs
[NL80211_ATTR_MAC
])
3073 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3075 if (key
.type
== -1) {
3077 key
.type
= NL80211_KEYTYPE_PAIRWISE
;
3079 key
.type
= NL80211_KEYTYPE_GROUP
;
3083 if (key
.type
!= NL80211_KEYTYPE_PAIRWISE
&&
3084 key
.type
!= NL80211_KEYTYPE_GROUP
)
3087 if (!rdev
->ops
->del_key
)
3090 wdev_lock(dev
->ieee80211_ptr
);
3091 err
= nl80211_key_allowed(dev
->ieee80211_ptr
);
3093 if (key
.type
== NL80211_KEYTYPE_GROUP
&& mac_addr
&&
3094 !(rdev
->wiphy
.flags
& WIPHY_FLAG_IBSS_RSN
))
3098 err
= rdev_del_key(rdev
, dev
, key
.idx
,
3099 key
.type
== NL80211_KEYTYPE_PAIRWISE
,
3102 #ifdef CONFIG_CFG80211_WEXT
3104 if (key
.idx
== dev
->ieee80211_ptr
->wext
.default_key
)
3105 dev
->ieee80211_ptr
->wext
.default_key
= -1;
3106 else if (key
.idx
== dev
->ieee80211_ptr
->wext
.default_mgmt_key
)
3107 dev
->ieee80211_ptr
->wext
.default_mgmt_key
= -1;
3110 wdev_unlock(dev
->ieee80211_ptr
);
3115 /* This function returns an error or the number of nested attributes */
3116 static int validate_acl_mac_addrs(struct nlattr
*nl_attr
)
3118 struct nlattr
*attr
;
3119 int n_entries
= 0, tmp
;
3121 nla_for_each_nested(attr
, nl_attr
, tmp
) {
3122 if (nla_len(attr
) != ETH_ALEN
)
3132 * This function parses ACL information and allocates memory for ACL data.
3133 * On successful return, the calling function is responsible to free the
3134 * ACL buffer returned by this function.
3136 static struct cfg80211_acl_data
*parse_acl_data(struct wiphy
*wiphy
,
3137 struct genl_info
*info
)
3139 enum nl80211_acl_policy acl_policy
;
3140 struct nlattr
*attr
;
3141 struct cfg80211_acl_data
*acl
;
3142 int i
= 0, n_entries
, tmp
;
3144 if (!wiphy
->max_acl_mac_addrs
)
3145 return ERR_PTR(-EOPNOTSUPP
);
3147 if (!info
->attrs
[NL80211_ATTR_ACL_POLICY
])
3148 return ERR_PTR(-EINVAL
);
3150 acl_policy
= nla_get_u32(info
->attrs
[NL80211_ATTR_ACL_POLICY
]);
3151 if (acl_policy
!= NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED
&&
3152 acl_policy
!= NL80211_ACL_POLICY_DENY_UNLESS_LISTED
)
3153 return ERR_PTR(-EINVAL
);
3155 if (!info
->attrs
[NL80211_ATTR_MAC_ADDRS
])
3156 return ERR_PTR(-EINVAL
);
3158 n_entries
= validate_acl_mac_addrs(info
->attrs
[NL80211_ATTR_MAC_ADDRS
]);
3160 return ERR_PTR(n_entries
);
3162 if (n_entries
> wiphy
->max_acl_mac_addrs
)
3163 return ERR_PTR(-ENOTSUPP
);
3165 acl
= kzalloc(sizeof(*acl
) + (sizeof(struct mac_address
) * n_entries
),
3168 return ERR_PTR(-ENOMEM
);
3170 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_MAC_ADDRS
], tmp
) {
3171 memcpy(acl
->mac_addrs
[i
].addr
, nla_data(attr
), ETH_ALEN
);
3175 acl
->n_acl_entries
= n_entries
;
3176 acl
->acl_policy
= acl_policy
;
3181 static int nl80211_set_mac_acl(struct sk_buff
*skb
, struct genl_info
*info
)
3183 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3184 struct net_device
*dev
= info
->user_ptr
[1];
3185 struct cfg80211_acl_data
*acl
;
3188 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
3189 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
3192 if (!dev
->ieee80211_ptr
->beacon_interval
)
3195 acl
= parse_acl_data(&rdev
->wiphy
, info
);
3197 return PTR_ERR(acl
);
3199 err
= rdev_set_mac_acl(rdev
, dev
, acl
);
3206 static int nl80211_parse_beacon(struct nlattr
*attrs
[],
3207 struct cfg80211_beacon_data
*bcn
)
3209 bool haveinfo
= false;
3211 if (!is_valid_ie_attr(attrs
[NL80211_ATTR_BEACON_TAIL
]) ||
3212 !is_valid_ie_attr(attrs
[NL80211_ATTR_IE
]) ||
3213 !is_valid_ie_attr(attrs
[NL80211_ATTR_IE_PROBE_RESP
]) ||
3214 !is_valid_ie_attr(attrs
[NL80211_ATTR_IE_ASSOC_RESP
]))
3217 memset(bcn
, 0, sizeof(*bcn
));
3219 if (attrs
[NL80211_ATTR_BEACON_HEAD
]) {
3220 bcn
->head
= nla_data(attrs
[NL80211_ATTR_BEACON_HEAD
]);
3221 bcn
->head_len
= nla_len(attrs
[NL80211_ATTR_BEACON_HEAD
]);
3227 if (attrs
[NL80211_ATTR_BEACON_TAIL
]) {
3228 bcn
->tail
= nla_data(attrs
[NL80211_ATTR_BEACON_TAIL
]);
3229 bcn
->tail_len
= nla_len(attrs
[NL80211_ATTR_BEACON_TAIL
]);
3236 if (attrs
[NL80211_ATTR_IE
]) {
3237 bcn
->beacon_ies
= nla_data(attrs
[NL80211_ATTR_IE
]);
3238 bcn
->beacon_ies_len
= nla_len(attrs
[NL80211_ATTR_IE
]);
3241 if (attrs
[NL80211_ATTR_IE_PROBE_RESP
]) {
3242 bcn
->proberesp_ies
=
3243 nla_data(attrs
[NL80211_ATTR_IE_PROBE_RESP
]);
3244 bcn
->proberesp_ies_len
=
3245 nla_len(attrs
[NL80211_ATTR_IE_PROBE_RESP
]);
3248 if (attrs
[NL80211_ATTR_IE_ASSOC_RESP
]) {
3249 bcn
->assocresp_ies
=
3250 nla_data(attrs
[NL80211_ATTR_IE_ASSOC_RESP
]);
3251 bcn
->assocresp_ies_len
=
3252 nla_len(attrs
[NL80211_ATTR_IE_ASSOC_RESP
]);
3255 if (attrs
[NL80211_ATTR_PROBE_RESP
]) {
3256 bcn
->probe_resp
= nla_data(attrs
[NL80211_ATTR_PROBE_RESP
]);
3257 bcn
->probe_resp_len
= nla_len(attrs
[NL80211_ATTR_PROBE_RESP
]);
3263 static bool nl80211_get_ap_channel(struct cfg80211_registered_device
*rdev
,
3264 struct cfg80211_ap_settings
*params
)
3266 struct wireless_dev
*wdev
;
3269 list_for_each_entry(wdev
, &rdev
->wdev_list
, list
) {
3270 if (wdev
->iftype
!= NL80211_IFTYPE_AP
&&
3271 wdev
->iftype
!= NL80211_IFTYPE_P2P_GO
)
3274 if (!wdev
->preset_chandef
.chan
)
3277 params
->chandef
= wdev
->preset_chandef
;
3285 static bool nl80211_valid_auth_type(struct cfg80211_registered_device
*rdev
,
3286 enum nl80211_auth_type auth_type
,
3287 enum nl80211_commands cmd
)
3289 if (auth_type
> NL80211_AUTHTYPE_MAX
)
3293 case NL80211_CMD_AUTHENTICATE
:
3294 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_SAE
) &&
3295 auth_type
== NL80211_AUTHTYPE_SAE
)
3298 case NL80211_CMD_CONNECT
:
3299 case NL80211_CMD_START_AP
:
3300 /* SAE not supported yet */
3301 if (auth_type
== NL80211_AUTHTYPE_SAE
)
3309 static int nl80211_start_ap(struct sk_buff
*skb
, struct genl_info
*info
)
3311 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3312 struct net_device
*dev
= info
->user_ptr
[1];
3313 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
3314 struct cfg80211_ap_settings params
;
3317 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
3318 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
3321 if (!rdev
->ops
->start_ap
)
3324 if (wdev
->beacon_interval
)
3327 memset(¶ms
, 0, sizeof(params
));
3329 /* these are required for START_AP */
3330 if (!info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
] ||
3331 !info
->attrs
[NL80211_ATTR_DTIM_PERIOD
] ||
3332 !info
->attrs
[NL80211_ATTR_BEACON_HEAD
])
3335 err
= nl80211_parse_beacon(info
->attrs
, ¶ms
.beacon
);
3339 params
.beacon_interval
=
3340 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
3341 params
.dtim_period
=
3342 nla_get_u32(info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]);
3344 err
= cfg80211_validate_beacon_int(rdev
, params
.beacon_interval
);
3349 * In theory, some of these attributes should be required here
3350 * but since they were not used when the command was originally
3351 * added, keep them optional for old user space programs to let
3352 * them continue to work with drivers that do not need the
3353 * additional information -- drivers must check!
3355 if (info
->attrs
[NL80211_ATTR_SSID
]) {
3356 params
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
3358 nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
3359 if (params
.ssid_len
== 0 ||
3360 params
.ssid_len
> IEEE80211_MAX_SSID_LEN
)
3364 if (info
->attrs
[NL80211_ATTR_HIDDEN_SSID
]) {
3365 params
.hidden_ssid
= nla_get_u32(
3366 info
->attrs
[NL80211_ATTR_HIDDEN_SSID
]);
3367 if (params
.hidden_ssid
!= NL80211_HIDDEN_SSID_NOT_IN_USE
&&
3368 params
.hidden_ssid
!= NL80211_HIDDEN_SSID_ZERO_LEN
&&
3369 params
.hidden_ssid
!= NL80211_HIDDEN_SSID_ZERO_CONTENTS
)
3373 params
.privacy
= !!info
->attrs
[NL80211_ATTR_PRIVACY
];
3375 if (info
->attrs
[NL80211_ATTR_AUTH_TYPE
]) {
3376 params
.auth_type
= nla_get_u32(
3377 info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
3378 if (!nl80211_valid_auth_type(rdev
, params
.auth_type
,
3379 NL80211_CMD_START_AP
))
3382 params
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
3384 err
= nl80211_crypto_settings(rdev
, info
, ¶ms
.crypto
,
3385 NL80211_MAX_NR_CIPHER_SUITES
);
3389 if (info
->attrs
[NL80211_ATTR_INACTIVITY_TIMEOUT
]) {
3390 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_INACTIVITY_TIMER
))
3392 params
.inactivity_timeout
= nla_get_u16(
3393 info
->attrs
[NL80211_ATTR_INACTIVITY_TIMEOUT
]);
3396 if (info
->attrs
[NL80211_ATTR_P2P_CTWINDOW
]) {
3397 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
3399 params
.p2p_ctwindow
=
3400 nla_get_u8(info
->attrs
[NL80211_ATTR_P2P_CTWINDOW
]);
3401 if (params
.p2p_ctwindow
> 127)
3403 if (params
.p2p_ctwindow
!= 0 &&
3404 !(rdev
->wiphy
.features
& NL80211_FEATURE_P2P_GO_CTWIN
))
3408 if (info
->attrs
[NL80211_ATTR_P2P_OPPPS
]) {
3411 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
3413 tmp
= nla_get_u8(info
->attrs
[NL80211_ATTR_P2P_OPPPS
]);
3416 params
.p2p_opp_ps
= tmp
;
3417 if (params
.p2p_opp_ps
!= 0 &&
3418 !(rdev
->wiphy
.features
& NL80211_FEATURE_P2P_GO_OPPPS
))
3422 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
3423 err
= nl80211_parse_chandef(rdev
, info
, ¶ms
.chandef
);
3426 } else if (wdev
->preset_chandef
.chan
) {
3427 params
.chandef
= wdev
->preset_chandef
;
3428 } else if (!nl80211_get_ap_channel(rdev
, ¶ms
))
3431 if (!cfg80211_reg_can_beacon_relax(&rdev
->wiphy
, ¶ms
.chandef
,
3435 if (info
->attrs
[NL80211_ATTR_SMPS_MODE
]) {
3437 nla_get_u8(info
->attrs
[NL80211_ATTR_SMPS_MODE
]);
3438 switch (params
.smps_mode
) {
3439 case NL80211_SMPS_OFF
:
3441 case NL80211_SMPS_STATIC
:
3442 if (!(rdev
->wiphy
.features
&
3443 NL80211_FEATURE_STATIC_SMPS
))
3446 case NL80211_SMPS_DYNAMIC
:
3447 if (!(rdev
->wiphy
.features
&
3448 NL80211_FEATURE_DYNAMIC_SMPS
))
3455 params
.smps_mode
= NL80211_SMPS_OFF
;
3458 if (info
->attrs
[NL80211_ATTR_ACL_POLICY
]) {
3459 params
.acl
= parse_acl_data(&rdev
->wiphy
, info
);
3460 if (IS_ERR(params
.acl
))
3461 return PTR_ERR(params
.acl
);
3465 err
= rdev_start_ap(rdev
, dev
, ¶ms
);
3467 wdev
->preset_chandef
= params
.chandef
;
3468 wdev
->beacon_interval
= params
.beacon_interval
;
3469 wdev
->chandef
= params
.chandef
;
3470 wdev
->ssid_len
= params
.ssid_len
;
3471 memcpy(wdev
->ssid
, params
.ssid
, wdev
->ssid_len
);
3480 static int nl80211_set_beacon(struct sk_buff
*skb
, struct genl_info
*info
)
3482 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3483 struct net_device
*dev
= info
->user_ptr
[1];
3484 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
3485 struct cfg80211_beacon_data params
;
3488 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
3489 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
3492 if (!rdev
->ops
->change_beacon
)
3495 if (!wdev
->beacon_interval
)
3498 err
= nl80211_parse_beacon(info
->attrs
, ¶ms
);
3503 err
= rdev_change_beacon(rdev
, dev
, ¶ms
);
3509 static int nl80211_stop_ap(struct sk_buff
*skb
, struct genl_info
*info
)
3511 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3512 struct net_device
*dev
= info
->user_ptr
[1];
3514 return cfg80211_stop_ap(rdev
, dev
, false);
3517 static const struct nla_policy sta_flags_policy
[NL80211_STA_FLAG_MAX
+ 1] = {
3518 [NL80211_STA_FLAG_AUTHORIZED
] = { .type
= NLA_FLAG
},
3519 [NL80211_STA_FLAG_SHORT_PREAMBLE
] = { .type
= NLA_FLAG
},
3520 [NL80211_STA_FLAG_WME
] = { .type
= NLA_FLAG
},
3521 [NL80211_STA_FLAG_MFP
] = { .type
= NLA_FLAG
},
3522 [NL80211_STA_FLAG_AUTHENTICATED
] = { .type
= NLA_FLAG
},
3523 [NL80211_STA_FLAG_TDLS_PEER
] = { .type
= NLA_FLAG
},
3526 static int parse_station_flags(struct genl_info
*info
,
3527 enum nl80211_iftype iftype
,
3528 struct station_parameters
*params
)
3530 struct nlattr
*flags
[NL80211_STA_FLAG_MAX
+ 1];
3535 * Try parsing the new attribute first so userspace
3536 * can specify both for older kernels.
3538 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS2
];
3540 struct nl80211_sta_flag_update
*sta_flags
;
3542 sta_flags
= nla_data(nla
);
3543 params
->sta_flags_mask
= sta_flags
->mask
;
3544 params
->sta_flags_set
= sta_flags
->set
;
3545 params
->sta_flags_set
&= params
->sta_flags_mask
;
3546 if ((params
->sta_flags_mask
|
3547 params
->sta_flags_set
) & BIT(__NL80211_STA_FLAG_INVALID
))
3552 /* if present, parse the old attribute */
3554 nla
= info
->attrs
[NL80211_ATTR_STA_FLAGS
];
3558 if (nla_parse_nested(flags
, NL80211_STA_FLAG_MAX
,
3559 nla
, sta_flags_policy
))
3563 * Only allow certain flags for interface types so that
3564 * other attributes are silently ignored. Remember that
3565 * this is backward compatibility code with old userspace
3566 * and shouldn't be hit in other cases anyway.
3569 case NL80211_IFTYPE_AP
:
3570 case NL80211_IFTYPE_AP_VLAN
:
3571 case NL80211_IFTYPE_P2P_GO
:
3572 params
->sta_flags_mask
= BIT(NL80211_STA_FLAG_AUTHORIZED
) |
3573 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
) |
3574 BIT(NL80211_STA_FLAG_WME
) |
3575 BIT(NL80211_STA_FLAG_MFP
);
3577 case NL80211_IFTYPE_P2P_CLIENT
:
3578 case NL80211_IFTYPE_STATION
:
3579 params
->sta_flags_mask
= BIT(NL80211_STA_FLAG_AUTHORIZED
) |
3580 BIT(NL80211_STA_FLAG_TDLS_PEER
);
3582 case NL80211_IFTYPE_MESH_POINT
:
3583 params
->sta_flags_mask
= BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
3584 BIT(NL80211_STA_FLAG_MFP
) |
3585 BIT(NL80211_STA_FLAG_AUTHORIZED
);
3590 for (flag
= 1; flag
<= NL80211_STA_FLAG_MAX
; flag
++) {
3592 params
->sta_flags_set
|= (1<<flag
);
3594 /* no longer support new API additions in old API */
3595 if (flag
> NL80211_STA_FLAG_MAX_OLD_API
)
3603 static bool nl80211_put_sta_rate(struct sk_buff
*msg
, struct rate_info
*info
,
3606 struct nlattr
*rate
;
3609 enum nl80211_attrs rate_flg
;
3611 rate
= nla_nest_start(msg
, attr
);
3615 /* cfg80211_calculate_bitrate will return 0 for mcs >= 32 */
3616 bitrate
= cfg80211_calculate_bitrate(info
);
3617 /* report 16-bit bitrate only if we can */
3618 bitrate_compat
= bitrate
< (1UL << 16) ? bitrate
: 0;
3620 nla_put_u32(msg
, NL80211_RATE_INFO_BITRATE32
, bitrate
))
3622 if (bitrate_compat
> 0 &&
3623 nla_put_u16(msg
, NL80211_RATE_INFO_BITRATE
, bitrate_compat
))
3627 case RATE_INFO_BW_5
:
3628 rate_flg
= NL80211_RATE_INFO_5_MHZ_WIDTH
;
3630 case RATE_INFO_BW_10
:
3631 rate_flg
= NL80211_RATE_INFO_10_MHZ_WIDTH
;
3636 case RATE_INFO_BW_20
:
3639 case RATE_INFO_BW_40
:
3640 rate_flg
= NL80211_RATE_INFO_40_MHZ_WIDTH
;
3642 case RATE_INFO_BW_80
:
3643 rate_flg
= NL80211_RATE_INFO_80_MHZ_WIDTH
;
3645 case RATE_INFO_BW_160
:
3646 rate_flg
= NL80211_RATE_INFO_160_MHZ_WIDTH
;
3650 if (rate_flg
&& nla_put_flag(msg
, rate_flg
))
3653 if (info
->flags
& RATE_INFO_FLAGS_MCS
) {
3654 if (nla_put_u8(msg
, NL80211_RATE_INFO_MCS
, info
->mcs
))
3656 if (info
->flags
& RATE_INFO_FLAGS_SHORT_GI
&&
3657 nla_put_flag(msg
, NL80211_RATE_INFO_SHORT_GI
))
3659 } else if (info
->flags
& RATE_INFO_FLAGS_VHT_MCS
) {
3660 if (nla_put_u8(msg
, NL80211_RATE_INFO_VHT_MCS
, info
->mcs
))
3662 if (nla_put_u8(msg
, NL80211_RATE_INFO_VHT_NSS
, info
->nss
))
3664 if (info
->flags
& RATE_INFO_FLAGS_SHORT_GI
&&
3665 nla_put_flag(msg
, NL80211_RATE_INFO_SHORT_GI
))
3669 nla_nest_end(msg
, rate
);
3673 static bool nl80211_put_signal(struct sk_buff
*msg
, u8 mask
, s8
*signal
,
3682 attr
= nla_nest_start(msg
, id
);
3686 for (i
= 0; i
< IEEE80211_MAX_CHAINS
; i
++) {
3687 if (!(mask
& BIT(i
)))
3690 if (nla_put_u8(msg
, i
, signal
[i
]))
3694 nla_nest_end(msg
, attr
);
3699 static int nl80211_send_station(struct sk_buff
*msg
, u32 cmd
, u32 portid
,
3701 struct cfg80211_registered_device
*rdev
,
3702 struct net_device
*dev
,
3703 const u8
*mac_addr
, struct station_info
*sinfo
)
3706 struct nlattr
*sinfoattr
, *bss_param
;
3708 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
, cmd
);
3712 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
3713 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
) ||
3714 nla_put_u32(msg
, NL80211_ATTR_GENERATION
, sinfo
->generation
))
3715 goto nla_put_failure
;
3717 sinfoattr
= nla_nest_start(msg
, NL80211_ATTR_STA_INFO
);
3719 goto nla_put_failure
;
3721 #define PUT_SINFO(attr, memb, type) do { \
3722 if (sinfo->filled & BIT(NL80211_STA_INFO_ ## attr) && \
3723 nla_put_ ## type(msg, NL80211_STA_INFO_ ## attr, \
3725 goto nla_put_failure; \
3728 PUT_SINFO(CONNECTED_TIME
, connected_time
, u32
);
3729 PUT_SINFO(INACTIVE_TIME
, inactive_time
, u32
);
3731 if (sinfo
->filled
& (BIT(NL80211_STA_INFO_RX_BYTES
) |
3732 BIT(NL80211_STA_INFO_RX_BYTES64
)) &&
3733 nla_put_u32(msg
, NL80211_STA_INFO_RX_BYTES
,
3734 (u32
)sinfo
->rx_bytes
))
3735 goto nla_put_failure
;
3737 if (sinfo
->filled
& (BIT(NL80211_STA_INFO_TX_BYTES
) |
3738 BIT(NL80211_STA_INFO_TX_BYTES64
)) &&
3739 nla_put_u32(msg
, NL80211_STA_INFO_TX_BYTES
,
3740 (u32
)sinfo
->tx_bytes
))
3741 goto nla_put_failure
;
3743 PUT_SINFO(RX_BYTES64
, rx_bytes
, u64
);
3744 PUT_SINFO(TX_BYTES64
, tx_bytes
, u64
);
3745 PUT_SINFO(LLID
, llid
, u16
);
3746 PUT_SINFO(PLID
, plid
, u16
);
3747 PUT_SINFO(PLINK_STATE
, plink_state
, u8
);
3749 switch (rdev
->wiphy
.signal_type
) {
3750 case CFG80211_SIGNAL_TYPE_MBM
:
3751 PUT_SINFO(SIGNAL
, signal
, u8
);
3752 PUT_SINFO(SIGNAL_AVG
, signal_avg
, u8
);
3757 if (sinfo
->filled
& BIT(NL80211_STA_INFO_CHAIN_SIGNAL
)) {
3758 if (!nl80211_put_signal(msg
, sinfo
->chains
,
3759 sinfo
->chain_signal
,
3760 NL80211_STA_INFO_CHAIN_SIGNAL
))
3761 goto nla_put_failure
;
3763 if (sinfo
->filled
& BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG
)) {
3764 if (!nl80211_put_signal(msg
, sinfo
->chains
,
3765 sinfo
->chain_signal_avg
,
3766 NL80211_STA_INFO_CHAIN_SIGNAL_AVG
))
3767 goto nla_put_failure
;
3769 if (sinfo
->filled
& BIT(NL80211_STA_INFO_TX_BITRATE
)) {
3770 if (!nl80211_put_sta_rate(msg
, &sinfo
->txrate
,
3771 NL80211_STA_INFO_TX_BITRATE
))
3772 goto nla_put_failure
;
3774 if (sinfo
->filled
& BIT(NL80211_STA_INFO_RX_BITRATE
)) {
3775 if (!nl80211_put_sta_rate(msg
, &sinfo
->rxrate
,
3776 NL80211_STA_INFO_RX_BITRATE
))
3777 goto nla_put_failure
;
3780 PUT_SINFO(RX_PACKETS
, rx_packets
, u32
);
3781 PUT_SINFO(TX_PACKETS
, tx_packets
, u32
);
3782 PUT_SINFO(TX_RETRIES
, tx_retries
, u32
);
3783 PUT_SINFO(TX_FAILED
, tx_failed
, u32
);
3784 PUT_SINFO(EXPECTED_THROUGHPUT
, expected_throughput
, u32
);
3785 PUT_SINFO(BEACON_LOSS
, beacon_loss_count
, u32
);
3786 PUT_SINFO(LOCAL_PM
, local_pm
, u32
);
3787 PUT_SINFO(PEER_PM
, peer_pm
, u32
);
3788 PUT_SINFO(NONPEER_PM
, nonpeer_pm
, u32
);
3790 if (sinfo
->filled
& BIT(NL80211_STA_INFO_BSS_PARAM
)) {
3791 bss_param
= nla_nest_start(msg
, NL80211_STA_INFO_BSS_PARAM
);
3793 goto nla_put_failure
;
3795 if (((sinfo
->bss_param
.flags
& BSS_PARAM_FLAGS_CTS_PROT
) &&
3796 nla_put_flag(msg
, NL80211_STA_BSS_PARAM_CTS_PROT
)) ||
3797 ((sinfo
->bss_param
.flags
& BSS_PARAM_FLAGS_SHORT_PREAMBLE
) &&
3798 nla_put_flag(msg
, NL80211_STA_BSS_PARAM_SHORT_PREAMBLE
)) ||
3799 ((sinfo
->bss_param
.flags
& BSS_PARAM_FLAGS_SHORT_SLOT_TIME
) &&
3800 nla_put_flag(msg
, NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME
)) ||
3801 nla_put_u8(msg
, NL80211_STA_BSS_PARAM_DTIM_PERIOD
,
3802 sinfo
->bss_param
.dtim_period
) ||
3803 nla_put_u16(msg
, NL80211_STA_BSS_PARAM_BEACON_INTERVAL
,
3804 sinfo
->bss_param
.beacon_interval
))
3805 goto nla_put_failure
;
3807 nla_nest_end(msg
, bss_param
);
3809 if ((sinfo
->filled
& BIT(NL80211_STA_INFO_STA_FLAGS
)) &&
3810 nla_put(msg
, NL80211_STA_INFO_STA_FLAGS
,
3811 sizeof(struct nl80211_sta_flag_update
),
3813 goto nla_put_failure
;
3815 PUT_SINFO(T_OFFSET
, t_offset
, u64
);
3816 PUT_SINFO(RX_DROP_MISC
, rx_dropped_misc
, u64
);
3817 PUT_SINFO(BEACON_RX
, rx_beacon
, u64
);
3818 PUT_SINFO(BEACON_SIGNAL_AVG
, rx_beacon_signal_avg
, u8
);
3822 if (sinfo
->filled
& BIT(NL80211_STA_INFO_TID_STATS
)) {
3823 struct nlattr
*tidsattr
;
3826 tidsattr
= nla_nest_start(msg
, NL80211_STA_INFO_TID_STATS
);
3828 goto nla_put_failure
;
3830 for (tid
= 0; tid
< IEEE80211_NUM_TIDS
+ 1; tid
++) {
3831 struct cfg80211_tid_stats
*tidstats
;
3832 struct nlattr
*tidattr
;
3834 tidstats
= &sinfo
->pertid
[tid
];
3836 if (!tidstats
->filled
)
3839 tidattr
= nla_nest_start(msg
, tid
+ 1);
3841 goto nla_put_failure
;
3843 #define PUT_TIDVAL(attr, memb, type) do { \
3844 if (tidstats->filled & BIT(NL80211_TID_STATS_ ## attr) && \
3845 nla_put_ ## type(msg, NL80211_TID_STATS_ ## attr, \
3847 goto nla_put_failure; \
3850 PUT_TIDVAL(RX_MSDU
, rx_msdu
, u64
);
3851 PUT_TIDVAL(TX_MSDU
, tx_msdu
, u64
);
3852 PUT_TIDVAL(TX_MSDU_RETRIES
, tx_msdu_retries
, u64
);
3853 PUT_TIDVAL(TX_MSDU_FAILED
, tx_msdu_failed
, u64
);
3856 nla_nest_end(msg
, tidattr
);
3859 nla_nest_end(msg
, tidsattr
);
3862 nla_nest_end(msg
, sinfoattr
);
3864 if (sinfo
->assoc_req_ies_len
&&
3865 nla_put(msg
, NL80211_ATTR_IE
, sinfo
->assoc_req_ies_len
,
3866 sinfo
->assoc_req_ies
))
3867 goto nla_put_failure
;
3869 genlmsg_end(msg
, hdr
);
3873 genlmsg_cancel(msg
, hdr
);
3877 static int nl80211_dump_station(struct sk_buff
*skb
,
3878 struct netlink_callback
*cb
)
3880 struct station_info sinfo
;
3881 struct cfg80211_registered_device
*rdev
;
3882 struct wireless_dev
*wdev
;
3883 u8 mac_addr
[ETH_ALEN
];
3884 int sta_idx
= cb
->args
[2];
3887 err
= nl80211_prepare_wdev_dump(skb
, cb
, &rdev
, &wdev
);
3891 if (!wdev
->netdev
) {
3896 if (!rdev
->ops
->dump_station
) {
3902 memset(&sinfo
, 0, sizeof(sinfo
));
3903 err
= rdev_dump_station(rdev
, wdev
->netdev
, sta_idx
,
3910 if (nl80211_send_station(skb
, NL80211_CMD_NEW_STATION
,
3911 NETLINK_CB(cb
->skb
).portid
,
3912 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
3913 rdev
, wdev
->netdev
, mac_addr
,
3922 cb
->args
[2] = sta_idx
;
3925 nl80211_finish_wdev_dump(rdev
);
3930 static int nl80211_get_station(struct sk_buff
*skb
, struct genl_info
*info
)
3932 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
3933 struct net_device
*dev
= info
->user_ptr
[1];
3934 struct station_info sinfo
;
3935 struct sk_buff
*msg
;
3936 u8
*mac_addr
= NULL
;
3939 memset(&sinfo
, 0, sizeof(sinfo
));
3941 if (!info
->attrs
[NL80211_ATTR_MAC
])
3944 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
3946 if (!rdev
->ops
->get_station
)
3949 err
= rdev_get_station(rdev
, dev
, mac_addr
, &sinfo
);
3953 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
3957 if (nl80211_send_station(msg
, NL80211_CMD_NEW_STATION
,
3958 info
->snd_portid
, info
->snd_seq
, 0,
3959 rdev
, dev
, mac_addr
, &sinfo
) < 0) {
3964 return genlmsg_reply(msg
, info
);
3967 int cfg80211_check_station_change(struct wiphy
*wiphy
,
3968 struct station_parameters
*params
,
3969 enum cfg80211_station_type statype
)
3971 if (params
->listen_interval
!= -1 &&
3972 statype
!= CFG80211_STA_AP_CLIENT_UNASSOC
)
3976 !(params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) &&
3977 statype
!= CFG80211_STA_AP_CLIENT_UNASSOC
)
3980 /* When you run into this, adjust the code below for the new flag */
3981 BUILD_BUG_ON(NL80211_STA_FLAG_MAX
!= 7);
3984 case CFG80211_STA_MESH_PEER_KERNEL
:
3985 case CFG80211_STA_MESH_PEER_USER
:
3987 * No ignoring the TDLS flag here -- the userspace mesh
3988 * code doesn't have the bug of including TDLS in the
3991 if (params
->sta_flags_mask
&
3992 ~(BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
3993 BIT(NL80211_STA_FLAG_MFP
) |
3994 BIT(NL80211_STA_FLAG_AUTHORIZED
)))
3997 case CFG80211_STA_TDLS_PEER_SETUP
:
3998 case CFG80211_STA_TDLS_PEER_ACTIVE
:
3999 if (!(params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)))
4001 /* ignore since it can't change */
4002 params
->sta_flags_mask
&= ~BIT(NL80211_STA_FLAG_TDLS_PEER
);
4005 /* disallow mesh-specific things */
4006 if (params
->plink_action
!= NL80211_PLINK_ACTION_NO_ACTION
)
4008 if (params
->local_pm
)
4010 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_PLINK_STATE
)
4014 if (statype
!= CFG80211_STA_TDLS_PEER_SETUP
&&
4015 statype
!= CFG80211_STA_TDLS_PEER_ACTIVE
) {
4016 /* TDLS can't be set, ... */
4017 if (params
->sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
))
4020 * ... but don't bother the driver with it. This works around
4021 * a hostapd/wpa_supplicant issue -- it always includes the
4022 * TLDS_PEER flag in the mask even for AP mode.
4024 params
->sta_flags_mask
&= ~BIT(NL80211_STA_FLAG_TDLS_PEER
);
4027 if (statype
!= CFG80211_STA_TDLS_PEER_SETUP
&&
4028 statype
!= CFG80211_STA_AP_CLIENT_UNASSOC
) {
4029 /* reject other things that can't change */
4030 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_UAPSD
)
4032 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_CAPABILITY
)
4034 if (params
->supported_rates
)
4036 if (params
->ext_capab
|| params
->ht_capa
|| params
->vht_capa
)
4040 if (statype
!= CFG80211_STA_AP_CLIENT
&&
4041 statype
!= CFG80211_STA_AP_CLIENT_UNASSOC
) {
4047 case CFG80211_STA_AP_MLME_CLIENT
:
4048 /* Use this only for authorizing/unauthorizing a station */
4049 if (!(params
->sta_flags_mask
& BIT(NL80211_STA_FLAG_AUTHORIZED
)))
4052 case CFG80211_STA_AP_CLIENT
:
4053 case CFG80211_STA_AP_CLIENT_UNASSOC
:
4054 /* accept only the listed bits */
4055 if (params
->sta_flags_mask
&
4056 ~(BIT(NL80211_STA_FLAG_AUTHORIZED
) |
4057 BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
4058 BIT(NL80211_STA_FLAG_ASSOCIATED
) |
4059 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE
) |
4060 BIT(NL80211_STA_FLAG_WME
) |
4061 BIT(NL80211_STA_FLAG_MFP
)))
4064 /* but authenticated/associated only if driver handles it */
4065 if (!(wiphy
->features
& NL80211_FEATURE_FULL_AP_CLIENT_STATE
) &&
4066 params
->sta_flags_mask
&
4067 (BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
4068 BIT(NL80211_STA_FLAG_ASSOCIATED
)))
4071 case CFG80211_STA_IBSS
:
4072 case CFG80211_STA_AP_STA
:
4073 /* reject any changes other than AUTHORIZED */
4074 if (params
->sta_flags_mask
& ~BIT(NL80211_STA_FLAG_AUTHORIZED
))
4077 case CFG80211_STA_TDLS_PEER_SETUP
:
4078 /* reject any changes other than AUTHORIZED or WME */
4079 if (params
->sta_flags_mask
& ~(BIT(NL80211_STA_FLAG_AUTHORIZED
) |
4080 BIT(NL80211_STA_FLAG_WME
)))
4082 /* force (at least) rates when authorizing */
4083 if (params
->sta_flags_set
& BIT(NL80211_STA_FLAG_AUTHORIZED
) &&
4084 !params
->supported_rates
)
4087 case CFG80211_STA_TDLS_PEER_ACTIVE
:
4088 /* reject any changes */
4090 case CFG80211_STA_MESH_PEER_KERNEL
:
4091 if (params
->sta_modify_mask
& STATION_PARAM_APPLY_PLINK_STATE
)
4094 case CFG80211_STA_MESH_PEER_USER
:
4095 if (params
->plink_action
!= NL80211_PLINK_ACTION_NO_ACTION
&&
4096 params
->plink_action
!= NL80211_PLINK_ACTION_BLOCK
)
4103 EXPORT_SYMBOL(cfg80211_check_station_change
);
4106 * Get vlan interface making sure it is running and on the right wiphy.
4108 static struct net_device
*get_vlan(struct genl_info
*info
,
4109 struct cfg80211_registered_device
*rdev
)
4111 struct nlattr
*vlanattr
= info
->attrs
[NL80211_ATTR_STA_VLAN
];
4112 struct net_device
*v
;
4118 v
= dev_get_by_index(genl_info_net(info
), nla_get_u32(vlanattr
));
4120 return ERR_PTR(-ENODEV
);
4122 if (!v
->ieee80211_ptr
|| v
->ieee80211_ptr
->wiphy
!= &rdev
->wiphy
) {
4127 if (v
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
&&
4128 v
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
4129 v
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
) {
4134 if (!netif_running(v
)) {
4142 return ERR_PTR(ret
);
4145 static const struct nla_policy
4146 nl80211_sta_wme_policy
[NL80211_STA_WME_MAX
+ 1] = {
4147 [NL80211_STA_WME_UAPSD_QUEUES
] = { .type
= NLA_U8
},
4148 [NL80211_STA_WME_MAX_SP
] = { .type
= NLA_U8
},
4151 static int nl80211_parse_sta_wme(struct genl_info
*info
,
4152 struct station_parameters
*params
)
4154 struct nlattr
*tb
[NL80211_STA_WME_MAX
+ 1];
4158 /* parse WME attributes if present */
4159 if (!info
->attrs
[NL80211_ATTR_STA_WME
])
4162 nla
= info
->attrs
[NL80211_ATTR_STA_WME
];
4163 err
= nla_parse_nested(tb
, NL80211_STA_WME_MAX
, nla
,
4164 nl80211_sta_wme_policy
);
4168 if (tb
[NL80211_STA_WME_UAPSD_QUEUES
])
4169 params
->uapsd_queues
= nla_get_u8(
4170 tb
[NL80211_STA_WME_UAPSD_QUEUES
]);
4171 if (params
->uapsd_queues
& ~IEEE80211_WMM_IE_STA_QOSINFO_AC_MASK
)
4174 if (tb
[NL80211_STA_WME_MAX_SP
])
4175 params
->max_sp
= nla_get_u8(tb
[NL80211_STA_WME_MAX_SP
]);
4177 if (params
->max_sp
& ~IEEE80211_WMM_IE_STA_QOSINFO_SP_MASK
)
4180 params
->sta_modify_mask
|= STATION_PARAM_APPLY_UAPSD
;
4185 static int nl80211_parse_sta_channel_info(struct genl_info
*info
,
4186 struct station_parameters
*params
)
4188 if (info
->attrs
[NL80211_ATTR_STA_SUPPORTED_CHANNELS
]) {
4189 params
->supported_channels
=
4190 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_CHANNELS
]);
4191 params
->supported_channels_len
=
4192 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_CHANNELS
]);
4194 * Need to include at least one (first channel, number of
4195 * channels) tuple for each subband, and must have proper
4196 * tuples for the rest of the data as well.
4198 if (params
->supported_channels_len
< 2)
4200 if (params
->supported_channels_len
% 2)
4204 if (info
->attrs
[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES
]) {
4205 params
->supported_oper_classes
=
4206 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES
]);
4207 params
->supported_oper_classes_len
=
4208 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_OPER_CLASSES
]);
4210 * The value of the Length field of the Supported Operating
4211 * Classes element is between 2 and 253.
4213 if (params
->supported_oper_classes_len
< 2 ||
4214 params
->supported_oper_classes_len
> 253)
4220 static int nl80211_set_station_tdls(struct genl_info
*info
,
4221 struct station_parameters
*params
)
4224 /* Dummy STA entry gets updated once the peer capabilities are known */
4225 if (info
->attrs
[NL80211_ATTR_PEER_AID
])
4226 params
->aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_PEER_AID
]);
4227 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
4229 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
4230 if (info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
])
4232 nla_data(info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
]);
4234 err
= nl80211_parse_sta_channel_info(info
, params
);
4238 return nl80211_parse_sta_wme(info
, params
);
4241 static int nl80211_set_station(struct sk_buff
*skb
, struct genl_info
*info
)
4243 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4244 struct net_device
*dev
= info
->user_ptr
[1];
4245 struct station_parameters params
;
4249 memset(¶ms
, 0, sizeof(params
));
4251 if (!rdev
->ops
->change_station
)
4255 * AID and listen_interval properties can be set only for unassociated
4256 * station. Include these parameters here and will check them in
4257 * cfg80211_check_station_change().
4259 if (info
->attrs
[NL80211_ATTR_PEER_AID
])
4260 params
.aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_PEER_AID
]);
4262 if (info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
4263 params
.listen_interval
=
4264 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
4266 params
.listen_interval
= -1;
4268 if (!info
->attrs
[NL80211_ATTR_MAC
])
4271 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4273 if (info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]) {
4274 params
.supported_rates
=
4275 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
4276 params
.supported_rates_len
=
4277 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
4280 if (info
->attrs
[NL80211_ATTR_STA_CAPABILITY
]) {
4282 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_CAPABILITY
]);
4283 params
.sta_modify_mask
|= STATION_PARAM_APPLY_CAPABILITY
;
4286 if (info
->attrs
[NL80211_ATTR_STA_EXT_CAPABILITY
]) {
4288 nla_data(info
->attrs
[NL80211_ATTR_STA_EXT_CAPABILITY
]);
4289 params
.ext_capab_len
=
4290 nla_len(info
->attrs
[NL80211_ATTR_STA_EXT_CAPABILITY
]);
4293 if (parse_station_flags(info
, dev
->ieee80211_ptr
->iftype
, ¶ms
))
4296 if (info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]) {
4297 params
.plink_action
=
4298 nla_get_u8(info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]);
4299 if (params
.plink_action
>= NUM_NL80211_PLINK_ACTIONS
)
4303 if (info
->attrs
[NL80211_ATTR_STA_PLINK_STATE
]) {
4304 params
.plink_state
=
4305 nla_get_u8(info
->attrs
[NL80211_ATTR_STA_PLINK_STATE
]);
4306 if (params
.plink_state
>= NUM_NL80211_PLINK_STATES
)
4308 params
.sta_modify_mask
|= STATION_PARAM_APPLY_PLINK_STATE
;
4311 if (info
->attrs
[NL80211_ATTR_LOCAL_MESH_POWER_MODE
]) {
4312 enum nl80211_mesh_power_mode pm
= nla_get_u32(
4313 info
->attrs
[NL80211_ATTR_LOCAL_MESH_POWER_MODE
]);
4315 if (pm
<= NL80211_MESH_POWER_UNKNOWN
||
4316 pm
> NL80211_MESH_POWER_MAX
)
4319 params
.local_pm
= pm
;
4322 /* Include parameters for TDLS peer (will check later) */
4323 err
= nl80211_set_station_tdls(info
, ¶ms
);
4327 params
.vlan
= get_vlan(info
, rdev
);
4328 if (IS_ERR(params
.vlan
))
4329 return PTR_ERR(params
.vlan
);
4331 switch (dev
->ieee80211_ptr
->iftype
) {
4332 case NL80211_IFTYPE_AP
:
4333 case NL80211_IFTYPE_AP_VLAN
:
4334 case NL80211_IFTYPE_P2P_GO
:
4335 case NL80211_IFTYPE_P2P_CLIENT
:
4336 case NL80211_IFTYPE_STATION
:
4337 case NL80211_IFTYPE_ADHOC
:
4338 case NL80211_IFTYPE_MESH_POINT
:
4345 /* driver will call cfg80211_check_station_change() */
4346 err
= rdev_change_station(rdev
, dev
, mac_addr
, ¶ms
);
4350 dev_put(params
.vlan
);
4355 static int nl80211_new_station(struct sk_buff
*skb
, struct genl_info
*info
)
4357 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4359 struct net_device
*dev
= info
->user_ptr
[1];
4360 struct station_parameters params
;
4361 u8
*mac_addr
= NULL
;
4363 memset(¶ms
, 0, sizeof(params
));
4365 if (!rdev
->ops
->add_station
)
4368 if (!info
->attrs
[NL80211_ATTR_MAC
])
4371 if (!info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
])
4374 if (!info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
])
4377 if (!info
->attrs
[NL80211_ATTR_STA_AID
] &&
4378 !info
->attrs
[NL80211_ATTR_PEER_AID
])
4381 mac_addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4382 params
.supported_rates
=
4383 nla_data(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
4384 params
.supported_rates_len
=
4385 nla_len(info
->attrs
[NL80211_ATTR_STA_SUPPORTED_RATES
]);
4386 params
.listen_interval
=
4387 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_LISTEN_INTERVAL
]);
4389 if (info
->attrs
[NL80211_ATTR_PEER_AID
])
4390 params
.aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_PEER_AID
]);
4392 params
.aid
= nla_get_u16(info
->attrs
[NL80211_ATTR_STA_AID
]);
4393 if (!params
.aid
|| params
.aid
> IEEE80211_MAX_AID
)
4396 if (info
->attrs
[NL80211_ATTR_STA_CAPABILITY
]) {
4398 nla_get_u16(info
->attrs
[NL80211_ATTR_STA_CAPABILITY
]);
4399 params
.sta_modify_mask
|= STATION_PARAM_APPLY_CAPABILITY
;
4402 if (info
->attrs
[NL80211_ATTR_STA_EXT_CAPABILITY
]) {
4404 nla_data(info
->attrs
[NL80211_ATTR_STA_EXT_CAPABILITY
]);
4405 params
.ext_capab_len
=
4406 nla_len(info
->attrs
[NL80211_ATTR_STA_EXT_CAPABILITY
]);
4409 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
])
4411 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]);
4413 if (info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
])
4415 nla_data(info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
]);
4417 if (info
->attrs
[NL80211_ATTR_OPMODE_NOTIF
]) {
4418 params
.opmode_notif_used
= true;
4419 params
.opmode_notif
=
4420 nla_get_u8(info
->attrs
[NL80211_ATTR_OPMODE_NOTIF
]);
4423 if (info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]) {
4424 params
.plink_action
=
4425 nla_get_u8(info
->attrs
[NL80211_ATTR_STA_PLINK_ACTION
]);
4426 if (params
.plink_action
>= NUM_NL80211_PLINK_ACTIONS
)
4430 err
= nl80211_parse_sta_channel_info(info
, ¶ms
);
4434 err
= nl80211_parse_sta_wme(info
, ¶ms
);
4438 if (parse_station_flags(info
, dev
->ieee80211_ptr
->iftype
, ¶ms
))
4441 /* HT/VHT requires QoS, but if we don't have that just ignore HT/VHT
4442 * as userspace might just pass through the capabilities from the IEs
4443 * directly, rather than enforcing this restriction and returning an
4444 * error in this case.
4446 if (!(params
.sta_flags_set
& BIT(NL80211_STA_FLAG_WME
))) {
4447 params
.ht_capa
= NULL
;
4448 params
.vht_capa
= NULL
;
4451 /* When you run into this, adjust the code below for the new flag */
4452 BUILD_BUG_ON(NL80211_STA_FLAG_MAX
!= 7);
4454 switch (dev
->ieee80211_ptr
->iftype
) {
4455 case NL80211_IFTYPE_AP
:
4456 case NL80211_IFTYPE_AP_VLAN
:
4457 case NL80211_IFTYPE_P2P_GO
:
4458 /* ignore WME attributes if iface/sta is not capable */
4459 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_AP_UAPSD
) ||
4460 !(params
.sta_flags_set
& BIT(NL80211_STA_FLAG_WME
)))
4461 params
.sta_modify_mask
&= ~STATION_PARAM_APPLY_UAPSD
;
4463 /* TDLS peers cannot be added */
4464 if ((params
.sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) ||
4465 info
->attrs
[NL80211_ATTR_PEER_AID
])
4467 /* but don't bother the driver with it */
4468 params
.sta_flags_mask
&= ~BIT(NL80211_STA_FLAG_TDLS_PEER
);
4470 /* allow authenticated/associated only if driver handles it */
4471 if (!(rdev
->wiphy
.features
&
4472 NL80211_FEATURE_FULL_AP_CLIENT_STATE
) &&
4473 params
.sta_flags_mask
&
4474 (BIT(NL80211_STA_FLAG_AUTHENTICATED
) |
4475 BIT(NL80211_STA_FLAG_ASSOCIATED
)))
4478 /* must be last in here for error handling */
4479 params
.vlan
= get_vlan(info
, rdev
);
4480 if (IS_ERR(params
.vlan
))
4481 return PTR_ERR(params
.vlan
);
4483 case NL80211_IFTYPE_MESH_POINT
:
4484 /* ignore uAPSD data */
4485 params
.sta_modify_mask
&= ~STATION_PARAM_APPLY_UAPSD
;
4487 /* associated is disallowed */
4488 if (params
.sta_flags_mask
& BIT(NL80211_STA_FLAG_ASSOCIATED
))
4490 /* TDLS peers cannot be added */
4491 if ((params
.sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)) ||
4492 info
->attrs
[NL80211_ATTR_PEER_AID
])
4495 case NL80211_IFTYPE_STATION
:
4496 case NL80211_IFTYPE_P2P_CLIENT
:
4497 /* ignore uAPSD data */
4498 params
.sta_modify_mask
&= ~STATION_PARAM_APPLY_UAPSD
;
4500 /* these are disallowed */
4501 if (params
.sta_flags_mask
&
4502 (BIT(NL80211_STA_FLAG_ASSOCIATED
) |
4503 BIT(NL80211_STA_FLAG_AUTHENTICATED
)))
4505 /* Only TDLS peers can be added */
4506 if (!(params
.sta_flags_set
& BIT(NL80211_STA_FLAG_TDLS_PEER
)))
4508 /* Can only add if TDLS ... */
4509 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_TDLS
))
4511 /* ... with external setup is supported */
4512 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_TDLS_EXTERNAL_SETUP
))
4515 * Older wpa_supplicant versions always mark the TDLS peer
4516 * as authorized, but it shouldn't yet be.
4518 params
.sta_flags_mask
&= ~BIT(NL80211_STA_FLAG_AUTHORIZED
);
4524 /* be aware of params.vlan when changing code here */
4526 err
= rdev_add_station(rdev
, dev
, mac_addr
, ¶ms
);
4529 dev_put(params
.vlan
);
4533 static int nl80211_del_station(struct sk_buff
*skb
, struct genl_info
*info
)
4535 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4536 struct net_device
*dev
= info
->user_ptr
[1];
4537 struct station_del_parameters params
;
4539 memset(¶ms
, 0, sizeof(params
));
4541 if (info
->attrs
[NL80211_ATTR_MAC
])
4542 params
.mac
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4544 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
4545 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP_VLAN
&&
4546 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
&&
4547 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
4550 if (!rdev
->ops
->del_station
)
4553 if (info
->attrs
[NL80211_ATTR_MGMT_SUBTYPE
]) {
4555 nla_get_u8(info
->attrs
[NL80211_ATTR_MGMT_SUBTYPE
]);
4556 if (params
.subtype
!= IEEE80211_STYPE_DISASSOC
>> 4 &&
4557 params
.subtype
!= IEEE80211_STYPE_DEAUTH
>> 4)
4560 /* Default to Deauthentication frame */
4561 params
.subtype
= IEEE80211_STYPE_DEAUTH
>> 4;
4564 if (info
->attrs
[NL80211_ATTR_REASON_CODE
]) {
4565 params
.reason_code
=
4566 nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
4567 if (params
.reason_code
== 0)
4568 return -EINVAL
; /* 0 is reserved */
4570 /* Default to reason code 2 */
4571 params
.reason_code
= WLAN_REASON_PREV_AUTH_NOT_VALID
;
4574 return rdev_del_station(rdev
, dev
, ¶ms
);
4577 static int nl80211_send_mpath(struct sk_buff
*msg
, u32 portid
, u32 seq
,
4578 int flags
, struct net_device
*dev
,
4579 u8
*dst
, u8
*next_hop
,
4580 struct mpath_info
*pinfo
)
4583 struct nlattr
*pinfoattr
;
4585 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
, NL80211_CMD_NEW_MPATH
);
4589 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
4590 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, dst
) ||
4591 nla_put(msg
, NL80211_ATTR_MPATH_NEXT_HOP
, ETH_ALEN
, next_hop
) ||
4592 nla_put_u32(msg
, NL80211_ATTR_GENERATION
, pinfo
->generation
))
4593 goto nla_put_failure
;
4595 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MPATH_INFO
);
4597 goto nla_put_failure
;
4598 if ((pinfo
->filled
& MPATH_INFO_FRAME_QLEN
) &&
4599 nla_put_u32(msg
, NL80211_MPATH_INFO_FRAME_QLEN
,
4601 goto nla_put_failure
;
4602 if (((pinfo
->filled
& MPATH_INFO_SN
) &&
4603 nla_put_u32(msg
, NL80211_MPATH_INFO_SN
, pinfo
->sn
)) ||
4604 ((pinfo
->filled
& MPATH_INFO_METRIC
) &&
4605 nla_put_u32(msg
, NL80211_MPATH_INFO_METRIC
,
4607 ((pinfo
->filled
& MPATH_INFO_EXPTIME
) &&
4608 nla_put_u32(msg
, NL80211_MPATH_INFO_EXPTIME
,
4610 ((pinfo
->filled
& MPATH_INFO_FLAGS
) &&
4611 nla_put_u8(msg
, NL80211_MPATH_INFO_FLAGS
,
4613 ((pinfo
->filled
& MPATH_INFO_DISCOVERY_TIMEOUT
) &&
4614 nla_put_u32(msg
, NL80211_MPATH_INFO_DISCOVERY_TIMEOUT
,
4615 pinfo
->discovery_timeout
)) ||
4616 ((pinfo
->filled
& MPATH_INFO_DISCOVERY_RETRIES
) &&
4617 nla_put_u8(msg
, NL80211_MPATH_INFO_DISCOVERY_RETRIES
,
4618 pinfo
->discovery_retries
)))
4619 goto nla_put_failure
;
4621 nla_nest_end(msg
, pinfoattr
);
4623 genlmsg_end(msg
, hdr
);
4627 genlmsg_cancel(msg
, hdr
);
4631 static int nl80211_dump_mpath(struct sk_buff
*skb
,
4632 struct netlink_callback
*cb
)
4634 struct mpath_info pinfo
;
4635 struct cfg80211_registered_device
*rdev
;
4636 struct wireless_dev
*wdev
;
4638 u8 next_hop
[ETH_ALEN
];
4639 int path_idx
= cb
->args
[2];
4642 err
= nl80211_prepare_wdev_dump(skb
, cb
, &rdev
, &wdev
);
4646 if (!rdev
->ops
->dump_mpath
) {
4651 if (wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
4657 err
= rdev_dump_mpath(rdev
, wdev
->netdev
, path_idx
, dst
,
4664 if (nl80211_send_mpath(skb
, NETLINK_CB(cb
->skb
).portid
,
4665 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
4666 wdev
->netdev
, dst
, next_hop
,
4675 cb
->args
[2] = path_idx
;
4678 nl80211_finish_wdev_dump(rdev
);
4682 static int nl80211_get_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
4684 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4686 struct net_device
*dev
= info
->user_ptr
[1];
4687 struct mpath_info pinfo
;
4688 struct sk_buff
*msg
;
4690 u8 next_hop
[ETH_ALEN
];
4692 memset(&pinfo
, 0, sizeof(pinfo
));
4694 if (!info
->attrs
[NL80211_ATTR_MAC
])
4697 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4699 if (!rdev
->ops
->get_mpath
)
4702 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
4705 err
= rdev_get_mpath(rdev
, dev
, dst
, next_hop
, &pinfo
);
4709 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
4713 if (nl80211_send_mpath(msg
, info
->snd_portid
, info
->snd_seq
, 0,
4714 dev
, dst
, next_hop
, &pinfo
) < 0) {
4719 return genlmsg_reply(msg
, info
);
4722 static int nl80211_set_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
4724 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4725 struct net_device
*dev
= info
->user_ptr
[1];
4727 u8
*next_hop
= NULL
;
4729 if (!info
->attrs
[NL80211_ATTR_MAC
])
4732 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
4735 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4736 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
4738 if (!rdev
->ops
->change_mpath
)
4741 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
4744 return rdev_change_mpath(rdev
, dev
, dst
, next_hop
);
4747 static int nl80211_new_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
4749 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4750 struct net_device
*dev
= info
->user_ptr
[1];
4752 u8
*next_hop
= NULL
;
4754 if (!info
->attrs
[NL80211_ATTR_MAC
])
4757 if (!info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
])
4760 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4761 next_hop
= nla_data(info
->attrs
[NL80211_ATTR_MPATH_NEXT_HOP
]);
4763 if (!rdev
->ops
->add_mpath
)
4766 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
4769 return rdev_add_mpath(rdev
, dev
, dst
, next_hop
);
4772 static int nl80211_del_mpath(struct sk_buff
*skb
, struct genl_info
*info
)
4774 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4775 struct net_device
*dev
= info
->user_ptr
[1];
4778 if (info
->attrs
[NL80211_ATTR_MAC
])
4779 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4781 if (!rdev
->ops
->del_mpath
)
4784 return rdev_del_mpath(rdev
, dev
, dst
);
4787 static int nl80211_get_mpp(struct sk_buff
*skb
, struct genl_info
*info
)
4789 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4791 struct net_device
*dev
= info
->user_ptr
[1];
4792 struct mpath_info pinfo
;
4793 struct sk_buff
*msg
;
4797 memset(&pinfo
, 0, sizeof(pinfo
));
4799 if (!info
->attrs
[NL80211_ATTR_MAC
])
4802 dst
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
4804 if (!rdev
->ops
->get_mpp
)
4807 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
4810 err
= rdev_get_mpp(rdev
, dev
, dst
, mpp
, &pinfo
);
4814 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
4818 if (nl80211_send_mpath(msg
, info
->snd_portid
, info
->snd_seq
, 0,
4819 dev
, dst
, mpp
, &pinfo
) < 0) {
4824 return genlmsg_reply(msg
, info
);
4827 static int nl80211_dump_mpp(struct sk_buff
*skb
,
4828 struct netlink_callback
*cb
)
4830 struct mpath_info pinfo
;
4831 struct cfg80211_registered_device
*rdev
;
4832 struct wireless_dev
*wdev
;
4835 int path_idx
= cb
->args
[2];
4838 err
= nl80211_prepare_wdev_dump(skb
, cb
, &rdev
, &wdev
);
4842 if (!rdev
->ops
->dump_mpp
) {
4847 if (wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
) {
4853 err
= rdev_dump_mpp(rdev
, wdev
->netdev
, path_idx
, dst
,
4860 if (nl80211_send_mpath(skb
, NETLINK_CB(cb
->skb
).portid
,
4861 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
4862 wdev
->netdev
, dst
, mpp
,
4870 cb
->args
[2] = path_idx
;
4873 nl80211_finish_wdev_dump(rdev
);
4877 static int nl80211_set_bss(struct sk_buff
*skb
, struct genl_info
*info
)
4879 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
4880 struct net_device
*dev
= info
->user_ptr
[1];
4881 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
4882 struct bss_parameters params
;
4885 memset(¶ms
, 0, sizeof(params
));
4886 /* default to not changing parameters */
4887 params
.use_cts_prot
= -1;
4888 params
.use_short_preamble
= -1;
4889 params
.use_short_slot_time
= -1;
4890 params
.ap_isolate
= -1;
4891 params
.ht_opmode
= -1;
4892 params
.p2p_ctwindow
= -1;
4893 params
.p2p_opp_ps
= -1;
4895 if (info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
])
4896 params
.use_cts_prot
=
4897 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_CTS_PROT
]);
4898 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
])
4899 params
.use_short_preamble
=
4900 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_PREAMBLE
]);
4901 if (info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
])
4902 params
.use_short_slot_time
=
4903 nla_get_u8(info
->attrs
[NL80211_ATTR_BSS_SHORT_SLOT_TIME
]);
4904 if (info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]) {
4905 params
.basic_rates
=
4906 nla_data(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
4907 params
.basic_rates_len
=
4908 nla_len(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
4910 if (info
->attrs
[NL80211_ATTR_AP_ISOLATE
])
4911 params
.ap_isolate
= !!nla_get_u8(info
->attrs
[NL80211_ATTR_AP_ISOLATE
]);
4912 if (info
->attrs
[NL80211_ATTR_BSS_HT_OPMODE
])
4914 nla_get_u16(info
->attrs
[NL80211_ATTR_BSS_HT_OPMODE
]);
4916 if (info
->attrs
[NL80211_ATTR_P2P_CTWINDOW
]) {
4917 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
4919 params
.p2p_ctwindow
=
4920 nla_get_s8(info
->attrs
[NL80211_ATTR_P2P_CTWINDOW
]);
4921 if (params
.p2p_ctwindow
< 0)
4923 if (params
.p2p_ctwindow
!= 0 &&
4924 !(rdev
->wiphy
.features
& NL80211_FEATURE_P2P_GO_CTWIN
))
4928 if (info
->attrs
[NL80211_ATTR_P2P_OPPPS
]) {
4931 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
4933 tmp
= nla_get_u8(info
->attrs
[NL80211_ATTR_P2P_OPPPS
]);
4936 params
.p2p_opp_ps
= tmp
;
4937 if (params
.p2p_opp_ps
&&
4938 !(rdev
->wiphy
.features
& NL80211_FEATURE_P2P_GO_OPPPS
))
4942 if (!rdev
->ops
->change_bss
)
4945 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_AP
&&
4946 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_GO
)
4950 err
= rdev_change_bss(rdev
, dev
, ¶ms
);
4956 static int nl80211_req_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
4960 enum nl80211_user_reg_hint_type user_reg_hint_type
;
4965 * You should only get this when cfg80211 hasn't yet initialized
4966 * completely when built-in to the kernel right between the time
4967 * window between nl80211_init() and regulatory_init(), if that is
4970 if (unlikely(!rcu_access_pointer(cfg80211_regdomain
)))
4971 return -EINPROGRESS
;
4973 if (info
->attrs
[NL80211_ATTR_USER_REG_HINT_TYPE
])
4974 user_reg_hint_type
=
4975 nla_get_u32(info
->attrs
[NL80211_ATTR_USER_REG_HINT_TYPE
]);
4977 user_reg_hint_type
= NL80211_USER_REG_HINT_USER
;
4979 switch (user_reg_hint_type
) {
4980 case NL80211_USER_REG_HINT_USER
:
4981 case NL80211_USER_REG_HINT_CELL_BASE
:
4982 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
4985 data
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
4986 return regulatory_hint_user(data
, user_reg_hint_type
);
4987 case NL80211_USER_REG_HINT_INDOOR
:
4988 if (info
->attrs
[NL80211_ATTR_SOCKET_OWNER
]) {
4989 owner_nlportid
= info
->snd_portid
;
4990 is_indoor
= !!info
->attrs
[NL80211_ATTR_REG_INDOOR
];
4996 return regulatory_hint_indoor(is_indoor
, owner_nlportid
);
5002 static int nl80211_get_mesh_config(struct sk_buff
*skb
,
5003 struct genl_info
*info
)
5005 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
5006 struct net_device
*dev
= info
->user_ptr
[1];
5007 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
5008 struct mesh_config cur_params
;
5011 struct nlattr
*pinfoattr
;
5012 struct sk_buff
*msg
;
5014 if (wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
5017 if (!rdev
->ops
->get_mesh_config
)
5021 /* If not connected, get default parameters */
5022 if (!wdev
->mesh_id_len
)
5023 memcpy(&cur_params
, &default_mesh_config
, sizeof(cur_params
));
5025 err
= rdev_get_mesh_config(rdev
, dev
, &cur_params
);
5031 /* Draw up a netlink message to send back */
5032 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
5035 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
5036 NL80211_CMD_GET_MESH_CONFIG
);
5039 pinfoattr
= nla_nest_start(msg
, NL80211_ATTR_MESH_CONFIG
);
5041 goto nla_put_failure
;
5042 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
5043 nla_put_u16(msg
, NL80211_MESHCONF_RETRY_TIMEOUT
,
5044 cur_params
.dot11MeshRetryTimeout
) ||
5045 nla_put_u16(msg
, NL80211_MESHCONF_CONFIRM_TIMEOUT
,
5046 cur_params
.dot11MeshConfirmTimeout
) ||
5047 nla_put_u16(msg
, NL80211_MESHCONF_HOLDING_TIMEOUT
,
5048 cur_params
.dot11MeshHoldingTimeout
) ||
5049 nla_put_u16(msg
, NL80211_MESHCONF_MAX_PEER_LINKS
,
5050 cur_params
.dot11MeshMaxPeerLinks
) ||
5051 nla_put_u8(msg
, NL80211_MESHCONF_MAX_RETRIES
,
5052 cur_params
.dot11MeshMaxRetries
) ||
5053 nla_put_u8(msg
, NL80211_MESHCONF_TTL
,
5054 cur_params
.dot11MeshTTL
) ||
5055 nla_put_u8(msg
, NL80211_MESHCONF_ELEMENT_TTL
,
5056 cur_params
.element_ttl
) ||
5057 nla_put_u8(msg
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
,
5058 cur_params
.auto_open_plinks
) ||
5059 nla_put_u32(msg
, NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR
,
5060 cur_params
.dot11MeshNbrOffsetMaxNeighbor
) ||
5061 nla_put_u8(msg
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
5062 cur_params
.dot11MeshHWMPmaxPREQretries
) ||
5063 nla_put_u32(msg
, NL80211_MESHCONF_PATH_REFRESH_TIME
,
5064 cur_params
.path_refresh_time
) ||
5065 nla_put_u16(msg
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
5066 cur_params
.min_discovery_timeout
) ||
5067 nla_put_u32(msg
, NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
5068 cur_params
.dot11MeshHWMPactivePathTimeout
) ||
5069 nla_put_u16(msg
, NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
5070 cur_params
.dot11MeshHWMPpreqMinInterval
) ||
5071 nla_put_u16(msg
, NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL
,
5072 cur_params
.dot11MeshHWMPperrMinInterval
) ||
5073 nla_put_u16(msg
, NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
5074 cur_params
.dot11MeshHWMPnetDiameterTraversalTime
) ||
5075 nla_put_u8(msg
, NL80211_MESHCONF_HWMP_ROOTMODE
,
5076 cur_params
.dot11MeshHWMPRootMode
) ||
5077 nla_put_u16(msg
, NL80211_MESHCONF_HWMP_RANN_INTERVAL
,
5078 cur_params
.dot11MeshHWMPRannInterval
) ||
5079 nla_put_u8(msg
, NL80211_MESHCONF_GATE_ANNOUNCEMENTS
,
5080 cur_params
.dot11MeshGateAnnouncementProtocol
) ||
5081 nla_put_u8(msg
, NL80211_MESHCONF_FORWARDING
,
5082 cur_params
.dot11MeshForwarding
) ||
5083 nla_put_u32(msg
, NL80211_MESHCONF_RSSI_THRESHOLD
,
5084 cur_params
.rssi_threshold
) ||
5085 nla_put_u32(msg
, NL80211_MESHCONF_HT_OPMODE
,
5086 cur_params
.ht_opmode
) ||
5087 nla_put_u32(msg
, NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT
,
5088 cur_params
.dot11MeshHWMPactivePathToRootTimeout
) ||
5089 nla_put_u16(msg
, NL80211_MESHCONF_HWMP_ROOT_INTERVAL
,
5090 cur_params
.dot11MeshHWMProotInterval
) ||
5091 nla_put_u16(msg
, NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL
,
5092 cur_params
.dot11MeshHWMPconfirmationInterval
) ||
5093 nla_put_u32(msg
, NL80211_MESHCONF_POWER_MODE
,
5094 cur_params
.power_mode
) ||
5095 nla_put_u16(msg
, NL80211_MESHCONF_AWAKE_WINDOW
,
5096 cur_params
.dot11MeshAwakeWindowDuration
) ||
5097 nla_put_u32(msg
, NL80211_MESHCONF_PLINK_TIMEOUT
,
5098 cur_params
.plink_timeout
))
5099 goto nla_put_failure
;
5100 nla_nest_end(msg
, pinfoattr
);
5101 genlmsg_end(msg
, hdr
);
5102 return genlmsg_reply(msg
, info
);
5105 genlmsg_cancel(msg
, hdr
);
5111 static const struct nla_policy nl80211_meshconf_params_policy
[NL80211_MESHCONF_ATTR_MAX
+1] = {
5112 [NL80211_MESHCONF_RETRY_TIMEOUT
] = { .type
= NLA_U16
},
5113 [NL80211_MESHCONF_CONFIRM_TIMEOUT
] = { .type
= NLA_U16
},
5114 [NL80211_MESHCONF_HOLDING_TIMEOUT
] = { .type
= NLA_U16
},
5115 [NL80211_MESHCONF_MAX_PEER_LINKS
] = { .type
= NLA_U16
},
5116 [NL80211_MESHCONF_MAX_RETRIES
] = { .type
= NLA_U8
},
5117 [NL80211_MESHCONF_TTL
] = { .type
= NLA_U8
},
5118 [NL80211_MESHCONF_ELEMENT_TTL
] = { .type
= NLA_U8
},
5119 [NL80211_MESHCONF_AUTO_OPEN_PLINKS
] = { .type
= NLA_U8
},
5120 [NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR
] = { .type
= NLA_U32
},
5121 [NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
] = { .type
= NLA_U8
},
5122 [NL80211_MESHCONF_PATH_REFRESH_TIME
] = { .type
= NLA_U32
},
5123 [NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
] = { .type
= NLA_U16
},
5124 [NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
] = { .type
= NLA_U32
},
5125 [NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
] = { .type
= NLA_U16
},
5126 [NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL
] = { .type
= NLA_U16
},
5127 [NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
] = { .type
= NLA_U16
},
5128 [NL80211_MESHCONF_HWMP_ROOTMODE
] = { .type
= NLA_U8
},
5129 [NL80211_MESHCONF_HWMP_RANN_INTERVAL
] = { .type
= NLA_U16
},
5130 [NL80211_MESHCONF_GATE_ANNOUNCEMENTS
] = { .type
= NLA_U8
},
5131 [NL80211_MESHCONF_FORWARDING
] = { .type
= NLA_U8
},
5132 [NL80211_MESHCONF_RSSI_THRESHOLD
] = { .type
= NLA_U32
},
5133 [NL80211_MESHCONF_HT_OPMODE
] = { .type
= NLA_U16
},
5134 [NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT
] = { .type
= NLA_U32
},
5135 [NL80211_MESHCONF_HWMP_ROOT_INTERVAL
] = { .type
= NLA_U16
},
5136 [NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL
] = { .type
= NLA_U16
},
5137 [NL80211_MESHCONF_POWER_MODE
] = { .type
= NLA_U32
},
5138 [NL80211_MESHCONF_AWAKE_WINDOW
] = { .type
= NLA_U16
},
5139 [NL80211_MESHCONF_PLINK_TIMEOUT
] = { .type
= NLA_U32
},
5142 static const struct nla_policy
5143 nl80211_mesh_setup_params_policy
[NL80211_MESH_SETUP_ATTR_MAX
+1] = {
5144 [NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC
] = { .type
= NLA_U8
},
5145 [NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL
] = { .type
= NLA_U8
},
5146 [NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC
] = { .type
= NLA_U8
},
5147 [NL80211_MESH_SETUP_USERSPACE_AUTH
] = { .type
= NLA_FLAG
},
5148 [NL80211_MESH_SETUP_AUTH_PROTOCOL
] = { .type
= NLA_U8
},
5149 [NL80211_MESH_SETUP_USERSPACE_MPM
] = { .type
= NLA_FLAG
},
5150 [NL80211_MESH_SETUP_IE
] = { .type
= NLA_BINARY
,
5151 .len
= IEEE80211_MAX_DATA_LEN
},
5152 [NL80211_MESH_SETUP_USERSPACE_AMPE
] = { .type
= NLA_FLAG
},
5155 static int nl80211_parse_mesh_config(struct genl_info
*info
,
5156 struct mesh_config
*cfg
,
5159 struct nlattr
*tb
[NL80211_MESHCONF_ATTR_MAX
+ 1];
5162 #define FILL_IN_MESH_PARAM_IF_SET(tb, cfg, param, min, max, mask, attr, fn) \
5165 if (fn(tb[attr]) < min || fn(tb[attr]) > max) \
5167 cfg->param = fn(tb[attr]); \
5168 mask |= (1 << (attr - 1)); \
5173 if (!info
->attrs
[NL80211_ATTR_MESH_CONFIG
])
5175 if (nla_parse_nested(tb
, NL80211_MESHCONF_ATTR_MAX
,
5176 info
->attrs
[NL80211_ATTR_MESH_CONFIG
],
5177 nl80211_meshconf_params_policy
))
5180 /* This makes sure that there aren't more than 32 mesh config
5181 * parameters (otherwise our bitfield scheme would not work.) */
5182 BUILD_BUG_ON(NL80211_MESHCONF_ATTR_MAX
> 32);
5184 /* Fill in the params struct */
5185 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshRetryTimeout
, 1, 255,
5186 mask
, NL80211_MESHCONF_RETRY_TIMEOUT
,
5188 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshConfirmTimeout
, 1, 255,
5189 mask
, NL80211_MESHCONF_CONFIRM_TIMEOUT
,
5191 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHoldingTimeout
, 1, 255,
5192 mask
, NL80211_MESHCONF_HOLDING_TIMEOUT
,
5194 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxPeerLinks
, 0, 255,
5195 mask
, NL80211_MESHCONF_MAX_PEER_LINKS
,
5197 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshMaxRetries
, 0, 16,
5198 mask
, NL80211_MESHCONF_MAX_RETRIES
,
5200 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshTTL
, 1, 255,
5201 mask
, NL80211_MESHCONF_TTL
, nla_get_u8
);
5202 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, element_ttl
, 1, 255,
5203 mask
, NL80211_MESHCONF_ELEMENT_TTL
,
5205 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, auto_open_plinks
, 0, 1,
5206 mask
, NL80211_MESHCONF_AUTO_OPEN_PLINKS
,
5208 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshNbrOffsetMaxNeighbor
,
5210 NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR
,
5212 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPmaxPREQretries
, 0, 255,
5213 mask
, NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES
,
5215 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, path_refresh_time
, 1, 65535,
5216 mask
, NL80211_MESHCONF_PATH_REFRESH_TIME
,
5218 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, min_discovery_timeout
, 1, 65535,
5219 mask
, NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT
,
5221 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPactivePathTimeout
,
5223 NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT
,
5225 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPpreqMinInterval
,
5227 NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL
,
5229 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPperrMinInterval
,
5231 NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL
,
5233 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
,
5234 dot11MeshHWMPnetDiameterTraversalTime
,
5236 NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME
,
5238 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPRootMode
, 0, 4,
5239 mask
, NL80211_MESHCONF_HWMP_ROOTMODE
,
5241 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPRannInterval
, 1, 65535,
5242 mask
, NL80211_MESHCONF_HWMP_RANN_INTERVAL
,
5244 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
,
5245 dot11MeshGateAnnouncementProtocol
, 0, 1,
5246 mask
, NL80211_MESHCONF_GATE_ANNOUNCEMENTS
,
5248 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshForwarding
, 0, 1,
5249 mask
, NL80211_MESHCONF_FORWARDING
,
5251 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, rssi_threshold
, -255, 0,
5252 mask
, NL80211_MESHCONF_RSSI_THRESHOLD
,
5254 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, ht_opmode
, 0, 16,
5255 mask
, NL80211_MESHCONF_HT_OPMODE
,
5257 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMPactivePathToRootTimeout
,
5259 NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT
,
5261 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshHWMProotInterval
, 1, 65535,
5262 mask
, NL80211_MESHCONF_HWMP_ROOT_INTERVAL
,
5264 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
,
5265 dot11MeshHWMPconfirmationInterval
,
5267 NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL
,
5269 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, power_mode
,
5270 NL80211_MESH_POWER_ACTIVE
,
5271 NL80211_MESH_POWER_MAX
,
5272 mask
, NL80211_MESHCONF_POWER_MODE
,
5274 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, dot11MeshAwakeWindowDuration
,
5276 NL80211_MESHCONF_AWAKE_WINDOW
, nla_get_u16
);
5277 FILL_IN_MESH_PARAM_IF_SET(tb
, cfg
, plink_timeout
, 0, 0xffffffff,
5278 mask
, NL80211_MESHCONF_PLINK_TIMEOUT
,
5285 #undef FILL_IN_MESH_PARAM_IF_SET
5288 static int nl80211_parse_mesh_setup(struct genl_info
*info
,
5289 struct mesh_setup
*setup
)
5291 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
5292 struct nlattr
*tb
[NL80211_MESH_SETUP_ATTR_MAX
+ 1];
5294 if (!info
->attrs
[NL80211_ATTR_MESH_SETUP
])
5296 if (nla_parse_nested(tb
, NL80211_MESH_SETUP_ATTR_MAX
,
5297 info
->attrs
[NL80211_ATTR_MESH_SETUP
],
5298 nl80211_mesh_setup_params_policy
))
5301 if (tb
[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC
])
5302 setup
->sync_method
=
5303 (nla_get_u8(tb
[NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC
])) ?
5304 IEEE80211_SYNC_METHOD_VENDOR
:
5305 IEEE80211_SYNC_METHOD_NEIGHBOR_OFFSET
;
5307 if (tb
[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL
])
5308 setup
->path_sel_proto
=
5309 (nla_get_u8(tb
[NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL
])) ?
5310 IEEE80211_PATH_PROTOCOL_VENDOR
:
5311 IEEE80211_PATH_PROTOCOL_HWMP
;
5313 if (tb
[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC
])
5314 setup
->path_metric
=
5315 (nla_get_u8(tb
[NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC
])) ?
5316 IEEE80211_PATH_METRIC_VENDOR
:
5317 IEEE80211_PATH_METRIC_AIRTIME
;
5320 if (tb
[NL80211_MESH_SETUP_IE
]) {
5321 struct nlattr
*ieattr
=
5322 tb
[NL80211_MESH_SETUP_IE
];
5323 if (!is_valid_ie_attr(ieattr
))
5325 setup
->ie
= nla_data(ieattr
);
5326 setup
->ie_len
= nla_len(ieattr
);
5328 if (tb
[NL80211_MESH_SETUP_USERSPACE_MPM
] &&
5329 !(rdev
->wiphy
.features
& NL80211_FEATURE_USERSPACE_MPM
))
5331 setup
->user_mpm
= nla_get_flag(tb
[NL80211_MESH_SETUP_USERSPACE_MPM
]);
5332 setup
->is_authenticated
= nla_get_flag(tb
[NL80211_MESH_SETUP_USERSPACE_AUTH
]);
5333 setup
->is_secure
= nla_get_flag(tb
[NL80211_MESH_SETUP_USERSPACE_AMPE
]);
5334 if (setup
->is_secure
)
5335 setup
->user_mpm
= true;
5337 if (tb
[NL80211_MESH_SETUP_AUTH_PROTOCOL
]) {
5338 if (!setup
->user_mpm
)
5341 nla_get_u8(tb
[NL80211_MESH_SETUP_AUTH_PROTOCOL
]);
5347 static int nl80211_update_mesh_config(struct sk_buff
*skb
,
5348 struct genl_info
*info
)
5350 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
5351 struct net_device
*dev
= info
->user_ptr
[1];
5352 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
5353 struct mesh_config cfg
;
5357 if (wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
)
5360 if (!rdev
->ops
->update_mesh_config
)
5363 err
= nl80211_parse_mesh_config(info
, &cfg
, &mask
);
5368 if (!wdev
->mesh_id_len
)
5372 err
= rdev_update_mesh_config(rdev
, dev
, mask
, &cfg
);
5379 static int nl80211_put_regdom(const struct ieee80211_regdomain
*regdom
,
5380 struct sk_buff
*msg
)
5382 struct nlattr
*nl_reg_rules
;
5385 if (nla_put_string(msg
, NL80211_ATTR_REG_ALPHA2
, regdom
->alpha2
) ||
5386 (regdom
->dfs_region
&&
5387 nla_put_u8(msg
, NL80211_ATTR_DFS_REGION
, regdom
->dfs_region
)))
5388 goto nla_put_failure
;
5390 nl_reg_rules
= nla_nest_start(msg
, NL80211_ATTR_REG_RULES
);
5392 goto nla_put_failure
;
5394 for (i
= 0; i
< regdom
->n_reg_rules
; i
++) {
5395 struct nlattr
*nl_reg_rule
;
5396 const struct ieee80211_reg_rule
*reg_rule
;
5397 const struct ieee80211_freq_range
*freq_range
;
5398 const struct ieee80211_power_rule
*power_rule
;
5399 unsigned int max_bandwidth_khz
;
5401 reg_rule
= ®dom
->reg_rules
[i
];
5402 freq_range
= ®_rule
->freq_range
;
5403 power_rule
= ®_rule
->power_rule
;
5405 nl_reg_rule
= nla_nest_start(msg
, i
);
5407 goto nla_put_failure
;
5409 max_bandwidth_khz
= freq_range
->max_bandwidth_khz
;
5410 if (!max_bandwidth_khz
)
5411 max_bandwidth_khz
= reg_get_max_bandwidth(regdom
,
5414 if (nla_put_u32(msg
, NL80211_ATTR_REG_RULE_FLAGS
,
5416 nla_put_u32(msg
, NL80211_ATTR_FREQ_RANGE_START
,
5417 freq_range
->start_freq_khz
) ||
5418 nla_put_u32(msg
, NL80211_ATTR_FREQ_RANGE_END
,
5419 freq_range
->end_freq_khz
) ||
5420 nla_put_u32(msg
, NL80211_ATTR_FREQ_RANGE_MAX_BW
,
5421 max_bandwidth_khz
) ||
5422 nla_put_u32(msg
, NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
,
5423 power_rule
->max_antenna_gain
) ||
5424 nla_put_u32(msg
, NL80211_ATTR_POWER_RULE_MAX_EIRP
,
5425 power_rule
->max_eirp
) ||
5426 nla_put_u32(msg
, NL80211_ATTR_DFS_CAC_TIME
,
5427 reg_rule
->dfs_cac_ms
))
5428 goto nla_put_failure
;
5430 nla_nest_end(msg
, nl_reg_rule
);
5433 nla_nest_end(msg
, nl_reg_rules
);
5440 static int nl80211_get_reg_do(struct sk_buff
*skb
, struct genl_info
*info
)
5442 const struct ieee80211_regdomain
*regdom
= NULL
;
5443 struct cfg80211_registered_device
*rdev
;
5444 struct wiphy
*wiphy
= NULL
;
5445 struct sk_buff
*msg
;
5448 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
5452 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
5453 NL80211_CMD_GET_REG
);
5457 if (info
->attrs
[NL80211_ATTR_WIPHY
]) {
5460 rdev
= cfg80211_get_dev_from_info(genl_info_net(info
), info
);
5463 return PTR_ERR(rdev
);
5466 wiphy
= &rdev
->wiphy
;
5467 self_managed
= wiphy
->regulatory_flags
&
5468 REGULATORY_WIPHY_SELF_MANAGED
;
5469 regdom
= get_wiphy_regdom(wiphy
);
5471 /* a self-managed-reg device must have a private regdom */
5472 if (WARN_ON(!regdom
&& self_managed
)) {
5478 nla_put_u32(msg
, NL80211_ATTR_WIPHY
, get_wiphy_idx(wiphy
)))
5479 goto nla_put_failure
;
5482 if (!wiphy
&& reg_last_request_cell_base() &&
5483 nla_put_u32(msg
, NL80211_ATTR_USER_REG_HINT_TYPE
,
5484 NL80211_USER_REG_HINT_CELL_BASE
))
5485 goto nla_put_failure
;
5490 regdom
= rcu_dereference(cfg80211_regdomain
);
5492 if (nl80211_put_regdom(regdom
, msg
))
5493 goto nla_put_failure_rcu
;
5497 genlmsg_end(msg
, hdr
);
5498 return genlmsg_reply(msg
, info
);
5500 nla_put_failure_rcu
:
5503 genlmsg_cancel(msg
, hdr
);
5509 static int nl80211_send_regdom(struct sk_buff
*msg
, struct netlink_callback
*cb
,
5510 u32 seq
, int flags
, struct wiphy
*wiphy
,
5511 const struct ieee80211_regdomain
*regdom
)
5513 void *hdr
= nl80211hdr_put(msg
, NETLINK_CB(cb
->skb
).portid
, seq
, flags
,
5514 NL80211_CMD_GET_REG
);
5519 genl_dump_check_consistent(cb
, hdr
, &nl80211_fam
);
5521 if (nl80211_put_regdom(regdom
, msg
))
5522 goto nla_put_failure
;
5524 if (!wiphy
&& reg_last_request_cell_base() &&
5525 nla_put_u32(msg
, NL80211_ATTR_USER_REG_HINT_TYPE
,
5526 NL80211_USER_REG_HINT_CELL_BASE
))
5527 goto nla_put_failure
;
5530 nla_put_u32(msg
, NL80211_ATTR_WIPHY
, get_wiphy_idx(wiphy
)))
5531 goto nla_put_failure
;
5533 if (wiphy
&& wiphy
->regulatory_flags
& REGULATORY_WIPHY_SELF_MANAGED
&&
5534 nla_put_flag(msg
, NL80211_ATTR_WIPHY_SELF_MANAGED_REG
))
5535 goto nla_put_failure
;
5537 genlmsg_end(msg
, hdr
);
5541 genlmsg_cancel(msg
, hdr
);
5545 static int nl80211_get_reg_dump(struct sk_buff
*skb
,
5546 struct netlink_callback
*cb
)
5548 const struct ieee80211_regdomain
*regdom
= NULL
;
5549 struct cfg80211_registered_device
*rdev
;
5550 int err
, reg_idx
, start
= cb
->args
[2];
5554 if (cfg80211_regdomain
&& start
== 0) {
5555 err
= nl80211_send_regdom(skb
, cb
, cb
->nlh
->nlmsg_seq
,
5557 rtnl_dereference(cfg80211_regdomain
));
5562 /* the global regdom is idx 0 */
5564 list_for_each_entry(rdev
, &cfg80211_rdev_list
, list
) {
5565 regdom
= get_wiphy_regdom(&rdev
->wiphy
);
5569 if (++reg_idx
<= start
)
5572 err
= nl80211_send_regdom(skb
, cb
, cb
->nlh
->nlmsg_seq
,
5573 NLM_F_MULTI
, &rdev
->wiphy
, regdom
);
5580 cb
->args
[2] = reg_idx
;
5587 #ifdef CONFIG_CFG80211_CRDA_SUPPORT
5588 static const struct nla_policy reg_rule_policy
[NL80211_REG_RULE_ATTR_MAX
+ 1] = {
5589 [NL80211_ATTR_REG_RULE_FLAGS
] = { .type
= NLA_U32
},
5590 [NL80211_ATTR_FREQ_RANGE_START
] = { .type
= NLA_U32
},
5591 [NL80211_ATTR_FREQ_RANGE_END
] = { .type
= NLA_U32
},
5592 [NL80211_ATTR_FREQ_RANGE_MAX_BW
] = { .type
= NLA_U32
},
5593 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
] = { .type
= NLA_U32
},
5594 [NL80211_ATTR_POWER_RULE_MAX_EIRP
] = { .type
= NLA_U32
},
5595 [NL80211_ATTR_DFS_CAC_TIME
] = { .type
= NLA_U32
},
5598 static int parse_reg_rule(struct nlattr
*tb
[],
5599 struct ieee80211_reg_rule
*reg_rule
)
5601 struct ieee80211_freq_range
*freq_range
= ®_rule
->freq_range
;
5602 struct ieee80211_power_rule
*power_rule
= ®_rule
->power_rule
;
5604 if (!tb
[NL80211_ATTR_REG_RULE_FLAGS
])
5606 if (!tb
[NL80211_ATTR_FREQ_RANGE_START
])
5608 if (!tb
[NL80211_ATTR_FREQ_RANGE_END
])
5610 if (!tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
])
5612 if (!tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
])
5615 reg_rule
->flags
= nla_get_u32(tb
[NL80211_ATTR_REG_RULE_FLAGS
]);
5617 freq_range
->start_freq_khz
=
5618 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_START
]);
5619 freq_range
->end_freq_khz
=
5620 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_END
]);
5621 freq_range
->max_bandwidth_khz
=
5622 nla_get_u32(tb
[NL80211_ATTR_FREQ_RANGE_MAX_BW
]);
5624 power_rule
->max_eirp
=
5625 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_EIRP
]);
5627 if (tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
])
5628 power_rule
->max_antenna_gain
=
5629 nla_get_u32(tb
[NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN
]);
5631 if (tb
[NL80211_ATTR_DFS_CAC_TIME
])
5632 reg_rule
->dfs_cac_ms
=
5633 nla_get_u32(tb
[NL80211_ATTR_DFS_CAC_TIME
]);
5638 static int nl80211_set_reg(struct sk_buff
*skb
, struct genl_info
*info
)
5640 struct nlattr
*tb
[NL80211_REG_RULE_ATTR_MAX
+ 1];
5641 struct nlattr
*nl_reg_rule
;
5643 int rem_reg_rules
, r
;
5644 u32 num_rules
= 0, rule_idx
= 0, size_of_regd
;
5645 enum nl80211_dfs_regions dfs_region
= NL80211_DFS_UNSET
;
5646 struct ieee80211_regdomain
*rd
;
5648 if (!info
->attrs
[NL80211_ATTR_REG_ALPHA2
])
5651 if (!info
->attrs
[NL80211_ATTR_REG_RULES
])
5654 alpha2
= nla_data(info
->attrs
[NL80211_ATTR_REG_ALPHA2
]);
5656 if (info
->attrs
[NL80211_ATTR_DFS_REGION
])
5657 dfs_region
= nla_get_u8(info
->attrs
[NL80211_ATTR_DFS_REGION
]);
5659 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
5662 if (num_rules
> NL80211_MAX_SUPP_REG_RULES
)
5666 if (!reg_is_valid_request(alpha2
))
5669 size_of_regd
= sizeof(struct ieee80211_regdomain
) +
5670 num_rules
* sizeof(struct ieee80211_reg_rule
);
5672 rd
= kzalloc(size_of_regd
, GFP_KERNEL
);
5676 rd
->n_reg_rules
= num_rules
;
5677 rd
->alpha2
[0] = alpha2
[0];
5678 rd
->alpha2
[1] = alpha2
[1];
5681 * Disable DFS master mode if the DFS region was
5682 * not supported or known on this kernel.
5684 if (reg_supported_dfs_region(dfs_region
))
5685 rd
->dfs_region
= dfs_region
;
5687 nla_for_each_nested(nl_reg_rule
, info
->attrs
[NL80211_ATTR_REG_RULES
],
5689 r
= nla_parse(tb
, NL80211_REG_RULE_ATTR_MAX
,
5690 nla_data(nl_reg_rule
), nla_len(nl_reg_rule
),
5694 r
= parse_reg_rule(tb
, &rd
->reg_rules
[rule_idx
]);
5700 if (rule_idx
> NL80211_MAX_SUPP_REG_RULES
) {
5706 r
= set_regdom(rd
, REGD_SOURCE_CRDA
);
5707 /* set_regdom took ownership */
5714 #endif /* CONFIG_CFG80211_CRDA_SUPPORT */
5716 static int validate_scan_freqs(struct nlattr
*freqs
)
5718 struct nlattr
*attr1
, *attr2
;
5719 int n_channels
= 0, tmp1
, tmp2
;
5721 nla_for_each_nested(attr1
, freqs
, tmp1
) {
5724 * Some hardware has a limited channel list for
5725 * scanning, and it is pretty much nonsensical
5726 * to scan for a channel twice, so disallow that
5727 * and don't require drivers to check that the
5728 * channel list they get isn't longer than what
5729 * they can scan, as long as they can scan all
5730 * the channels they registered at once.
5732 nla_for_each_nested(attr2
, freqs
, tmp2
)
5733 if (attr1
!= attr2
&&
5734 nla_get_u32(attr1
) == nla_get_u32(attr2
))
5741 static int nl80211_parse_random_mac(struct nlattr
**attrs
,
5742 u8
*mac_addr
, u8
*mac_addr_mask
)
5746 if (!attrs
[NL80211_ATTR_MAC
] && !attrs
[NL80211_ATTR_MAC_MASK
]) {
5747 eth_zero_addr(mac_addr
);
5748 eth_zero_addr(mac_addr_mask
);
5750 mac_addr_mask
[0] = 0x3;
5755 /* need both or none */
5756 if (!attrs
[NL80211_ATTR_MAC
] || !attrs
[NL80211_ATTR_MAC_MASK
])
5759 memcpy(mac_addr
, nla_data(attrs
[NL80211_ATTR_MAC
]), ETH_ALEN
);
5760 memcpy(mac_addr_mask
, nla_data(attrs
[NL80211_ATTR_MAC_MASK
]), ETH_ALEN
);
5762 /* don't allow or configure an mcast address */
5763 if (!is_multicast_ether_addr(mac_addr_mask
) ||
5764 is_multicast_ether_addr(mac_addr
))
5768 * allow users to pass a MAC address that has bits set outside
5769 * of the mask, but don't bother drivers with having to deal
5772 for (i
= 0; i
< ETH_ALEN
; i
++)
5773 mac_addr
[i
] &= mac_addr_mask
[i
];
5778 static int nl80211_trigger_scan(struct sk_buff
*skb
, struct genl_info
*info
)
5780 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
5781 struct wireless_dev
*wdev
= info
->user_ptr
[1];
5782 struct cfg80211_scan_request
*request
;
5783 struct nlattr
*attr
;
5784 struct wiphy
*wiphy
;
5785 int err
, tmp
, n_ssids
= 0, n_channels
, i
;
5788 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
5791 wiphy
= &rdev
->wiphy
;
5793 if (!rdev
->ops
->scan
)
5796 if (rdev
->scan_req
|| rdev
->scan_msg
) {
5801 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
5802 n_channels
= validate_scan_freqs(
5803 info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]);
5809 n_channels
= ieee80211_get_num_supported_channels(wiphy
);
5812 if (info
->attrs
[NL80211_ATTR_SCAN_SSIDS
])
5813 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
)
5816 if (n_ssids
> wiphy
->max_scan_ssids
) {
5821 if (info
->attrs
[NL80211_ATTR_IE
])
5822 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
5826 if (ie_len
> wiphy
->max_scan_ie_len
) {
5831 request
= kzalloc(sizeof(*request
)
5832 + sizeof(*request
->ssids
) * n_ssids
5833 + sizeof(*request
->channels
) * n_channels
5834 + ie_len
, GFP_KERNEL
);
5841 request
->ssids
= (void *)&request
->channels
[n_channels
];
5842 request
->n_ssids
= n_ssids
;
5845 request
->ie
= (void *)(request
->ssids
+ n_ssids
);
5847 request
->ie
= (void *)(request
->channels
+ n_channels
);
5851 if (info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
5852 /* user specified, bail out if channel not found */
5853 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_FREQUENCIES
], tmp
) {
5854 struct ieee80211_channel
*chan
;
5856 chan
= ieee80211_get_channel(wiphy
, nla_get_u32(attr
));
5863 /* ignore disabled channels */
5864 if (chan
->flags
& IEEE80211_CHAN_DISABLED
)
5867 request
->channels
[i
] = chan
;
5871 enum ieee80211_band band
;
5874 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
5876 if (!wiphy
->bands
[band
])
5878 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
5879 struct ieee80211_channel
*chan
;
5881 chan
= &wiphy
->bands
[band
]->channels
[j
];
5883 if (chan
->flags
& IEEE80211_CHAN_DISABLED
)
5886 request
->channels
[i
] = chan
;
5897 request
->n_channels
= i
;
5901 nla_for_each_nested(attr
, info
->attrs
[NL80211_ATTR_SCAN_SSIDS
], tmp
) {
5902 if (nla_len(attr
) > IEEE80211_MAX_SSID_LEN
) {
5906 request
->ssids
[i
].ssid_len
= nla_len(attr
);
5907 memcpy(request
->ssids
[i
].ssid
, nla_data(attr
), nla_len(attr
));
5912 if (info
->attrs
[NL80211_ATTR_IE
]) {
5913 request
->ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
5914 memcpy((void *)request
->ie
,
5915 nla_data(info
->attrs
[NL80211_ATTR_IE
]),
5919 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++)
5920 if (wiphy
->bands
[i
])
5922 (1 << wiphy
->bands
[i
]->n_bitrates
) - 1;
5924 if (info
->attrs
[NL80211_ATTR_SCAN_SUPP_RATES
]) {
5925 nla_for_each_nested(attr
,
5926 info
->attrs
[NL80211_ATTR_SCAN_SUPP_RATES
],
5928 enum ieee80211_band band
= nla_type(attr
);
5930 if (band
< 0 || band
>= IEEE80211_NUM_BANDS
) {
5935 if (!wiphy
->bands
[band
])
5938 err
= ieee80211_get_ratemask(wiphy
->bands
[band
],
5941 &request
->rates
[band
]);
5947 if (info
->attrs
[NL80211_ATTR_SCAN_FLAGS
]) {
5948 request
->flags
= nla_get_u32(
5949 info
->attrs
[NL80211_ATTR_SCAN_FLAGS
]);
5950 if ((request
->flags
& NL80211_SCAN_FLAG_LOW_PRIORITY
) &&
5951 !(wiphy
->features
& NL80211_FEATURE_LOW_PRIORITY_SCAN
)) {
5956 if (request
->flags
& NL80211_SCAN_FLAG_RANDOM_ADDR
) {
5957 if (!(wiphy
->features
&
5958 NL80211_FEATURE_SCAN_RANDOM_MAC_ADDR
)) {
5963 if (wdev
->current_bss
) {
5968 err
= nl80211_parse_random_mac(info
->attrs
,
5970 request
->mac_addr_mask
);
5977 nla_get_flag(info
->attrs
[NL80211_ATTR_TX_NO_CCK_RATE
]);
5979 request
->wdev
= wdev
;
5980 request
->wiphy
= &rdev
->wiphy
;
5981 request
->scan_start
= jiffies
;
5983 rdev
->scan_req
= request
;
5984 err
= rdev_scan(rdev
, request
);
5987 nl80211_send_scan_start(rdev
, wdev
);
5989 dev_hold(wdev
->netdev
);
5992 rdev
->scan_req
= NULL
;
6001 nl80211_parse_sched_scan_plans(struct wiphy
*wiphy
, int n_plans
,
6002 struct cfg80211_sched_scan_request
*request
,
6003 struct nlattr
**attrs
)
6005 int tmp
, err
, i
= 0;
6006 struct nlattr
*attr
;
6008 if (!attrs
[NL80211_ATTR_SCHED_SCAN_PLANS
]) {
6012 * If scan plans are not specified,
6013 * %NL80211_ATTR_SCHED_SCAN_INTERVAL must be specified. In this
6014 * case one scan plan will be set with the specified scan
6015 * interval and infinite number of iterations.
6017 if (!attrs
[NL80211_ATTR_SCHED_SCAN_INTERVAL
])
6020 interval
= nla_get_u32(attrs
[NL80211_ATTR_SCHED_SCAN_INTERVAL
]);
6024 request
->scan_plans
[0].interval
=
6025 DIV_ROUND_UP(interval
, MSEC_PER_SEC
);
6026 if (!request
->scan_plans
[0].interval
)
6029 if (request
->scan_plans
[0].interval
>
6030 wiphy
->max_sched_scan_plan_interval
)
6031 request
->scan_plans
[0].interval
=
6032 wiphy
->max_sched_scan_plan_interval
;
6037 nla_for_each_nested(attr
, attrs
[NL80211_ATTR_SCHED_SCAN_PLANS
], tmp
) {
6038 struct nlattr
*plan
[NL80211_SCHED_SCAN_PLAN_MAX
+ 1];
6040 if (WARN_ON(i
>= n_plans
))
6043 err
= nla_parse(plan
, NL80211_SCHED_SCAN_PLAN_MAX
,
6044 nla_data(attr
), nla_len(attr
),
6045 nl80211_plan_policy
);
6049 if (!plan
[NL80211_SCHED_SCAN_PLAN_INTERVAL
])
6052 request
->scan_plans
[i
].interval
=
6053 nla_get_u32(plan
[NL80211_SCHED_SCAN_PLAN_INTERVAL
]);
6054 if (!request
->scan_plans
[i
].interval
||
6055 request
->scan_plans
[i
].interval
>
6056 wiphy
->max_sched_scan_plan_interval
)
6059 if (plan
[NL80211_SCHED_SCAN_PLAN_ITERATIONS
]) {
6060 request
->scan_plans
[i
].iterations
=
6061 nla_get_u32(plan
[NL80211_SCHED_SCAN_PLAN_ITERATIONS
]);
6062 if (!request
->scan_plans
[i
].iterations
||
6063 (request
->scan_plans
[i
].iterations
>
6064 wiphy
->max_sched_scan_plan_iterations
))
6066 } else if (i
< n_plans
- 1) {
6068 * All scan plans but the last one must specify
6069 * a finite number of iterations
6078 * The last scan plan must not specify the number of
6079 * iterations, it is supposed to run infinitely
6081 if (request
->scan_plans
[n_plans
- 1].iterations
)
6087 static struct cfg80211_sched_scan_request
*
6088 nl80211_parse_sched_scan(struct wiphy
*wiphy
, struct wireless_dev
*wdev
,
6089 struct nlattr
**attrs
)
6091 struct cfg80211_sched_scan_request
*request
;
6092 struct nlattr
*attr
;
6093 int err
, tmp
, n_ssids
= 0, n_match_sets
= 0, n_channels
, i
, n_plans
= 0;
6094 enum ieee80211_band band
;
6096 struct nlattr
*tb
[NL80211_SCHED_SCAN_MATCH_ATTR_MAX
+ 1];
6097 s32 default_match_rssi
= NL80211_SCAN_RSSI_THOLD_OFF
;
6099 if (!is_valid_ie_attr(attrs
[NL80211_ATTR_IE
]))
6100 return ERR_PTR(-EINVAL
);
6102 if (attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
6103 n_channels
= validate_scan_freqs(
6104 attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]);
6106 return ERR_PTR(-EINVAL
);
6108 n_channels
= ieee80211_get_num_supported_channels(wiphy
);
6111 if (attrs
[NL80211_ATTR_SCAN_SSIDS
])
6112 nla_for_each_nested(attr
, attrs
[NL80211_ATTR_SCAN_SSIDS
],
6116 if (n_ssids
> wiphy
->max_sched_scan_ssids
)
6117 return ERR_PTR(-EINVAL
);
6120 * First, count the number of 'real' matchsets. Due to an issue with
6121 * the old implementation, matchsets containing only the RSSI attribute
6122 * (NL80211_SCHED_SCAN_MATCH_ATTR_RSSI) are considered as the 'default'
6123 * RSSI for all matchsets, rather than their own matchset for reporting
6124 * all APs with a strong RSSI. This is needed to be compatible with
6125 * older userspace that treated a matchset with only the RSSI as the
6126 * global RSSI for all other matchsets - if there are other matchsets.
6128 if (attrs
[NL80211_ATTR_SCHED_SCAN_MATCH
]) {
6129 nla_for_each_nested(attr
,
6130 attrs
[NL80211_ATTR_SCHED_SCAN_MATCH
],
6132 struct nlattr
*rssi
;
6134 err
= nla_parse(tb
, NL80211_SCHED_SCAN_MATCH_ATTR_MAX
,
6135 nla_data(attr
), nla_len(attr
),
6136 nl80211_match_policy
);
6138 return ERR_PTR(err
);
6139 /* add other standalone attributes here */
6140 if (tb
[NL80211_SCHED_SCAN_MATCH_ATTR_SSID
]) {
6144 rssi
= tb
[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI
];
6146 default_match_rssi
= nla_get_s32(rssi
);
6150 /* However, if there's no other matchset, add the RSSI one */
6151 if (!n_match_sets
&& default_match_rssi
!= NL80211_SCAN_RSSI_THOLD_OFF
)
6154 if (n_match_sets
> wiphy
->max_match_sets
)
6155 return ERR_PTR(-EINVAL
);
6157 if (attrs
[NL80211_ATTR_IE
])
6158 ie_len
= nla_len(attrs
[NL80211_ATTR_IE
]);
6162 if (ie_len
> wiphy
->max_sched_scan_ie_len
)
6163 return ERR_PTR(-EINVAL
);
6165 if (attrs
[NL80211_ATTR_SCHED_SCAN_PLANS
]) {
6167 * NL80211_ATTR_SCHED_SCAN_INTERVAL must not be specified since
6168 * each scan plan already specifies its own interval
6170 if (attrs
[NL80211_ATTR_SCHED_SCAN_INTERVAL
])
6171 return ERR_PTR(-EINVAL
);
6173 nla_for_each_nested(attr
,
6174 attrs
[NL80211_ATTR_SCHED_SCAN_PLANS
], tmp
)
6178 * The scan interval attribute is kept for backward
6179 * compatibility. If no scan plans are specified and sched scan
6180 * interval is specified, one scan plan will be set with this
6181 * scan interval and infinite number of iterations.
6183 if (!attrs
[NL80211_ATTR_SCHED_SCAN_INTERVAL
])
6184 return ERR_PTR(-EINVAL
);
6189 if (!n_plans
|| n_plans
> wiphy
->max_sched_scan_plans
)
6190 return ERR_PTR(-EINVAL
);
6192 request
= kzalloc(sizeof(*request
)
6193 + sizeof(*request
->ssids
) * n_ssids
6194 + sizeof(*request
->match_sets
) * n_match_sets
6195 + sizeof(*request
->scan_plans
) * n_plans
6196 + sizeof(*request
->channels
) * n_channels
6197 + ie_len
, GFP_KERNEL
);
6199 return ERR_PTR(-ENOMEM
);
6202 request
->ssids
= (void *)&request
->channels
[n_channels
];
6203 request
->n_ssids
= n_ssids
;
6206 request
->ie
= (void *)(request
->ssids
+ n_ssids
);
6208 request
->ie
= (void *)(request
->channels
+ n_channels
);
6213 request
->match_sets
= (void *)(request
->ie
+ ie_len
);
6215 request
->match_sets
=
6216 (void *)(request
->ssids
+ n_ssids
);
6218 request
->match_sets
=
6219 (void *)(request
->channels
+ n_channels
);
6221 request
->n_match_sets
= n_match_sets
;
6224 request
->scan_plans
= (void *)(request
->match_sets
+
6226 else if (request
->ie
)
6227 request
->scan_plans
= (void *)(request
->ie
+ ie_len
);
6229 request
->scan_plans
= (void *)(request
->ssids
+ n_ssids
);
6231 request
->scan_plans
= (void *)(request
->channels
+ n_channels
);
6233 request
->n_scan_plans
= n_plans
;
6236 if (attrs
[NL80211_ATTR_SCAN_FREQUENCIES
]) {
6237 /* user specified, bail out if channel not found */
6238 nla_for_each_nested(attr
,
6239 attrs
[NL80211_ATTR_SCAN_FREQUENCIES
],
6241 struct ieee80211_channel
*chan
;
6243 chan
= ieee80211_get_channel(wiphy
, nla_get_u32(attr
));
6250 /* ignore disabled channels */
6251 if (chan
->flags
& IEEE80211_CHAN_DISABLED
)
6254 request
->channels
[i
] = chan
;
6259 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
6261 if (!wiphy
->bands
[band
])
6263 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
6264 struct ieee80211_channel
*chan
;
6266 chan
= &wiphy
->bands
[band
]->channels
[j
];
6268 if (chan
->flags
& IEEE80211_CHAN_DISABLED
)
6271 request
->channels
[i
] = chan
;
6282 request
->n_channels
= i
;
6286 nla_for_each_nested(attr
, attrs
[NL80211_ATTR_SCAN_SSIDS
],
6288 if (nla_len(attr
) > IEEE80211_MAX_SSID_LEN
) {
6292 request
->ssids
[i
].ssid_len
= nla_len(attr
);
6293 memcpy(request
->ssids
[i
].ssid
, nla_data(attr
),
6300 if (attrs
[NL80211_ATTR_SCHED_SCAN_MATCH
]) {
6301 nla_for_each_nested(attr
,
6302 attrs
[NL80211_ATTR_SCHED_SCAN_MATCH
],
6304 struct nlattr
*ssid
, *rssi
;
6306 err
= nla_parse(tb
, NL80211_SCHED_SCAN_MATCH_ATTR_MAX
,
6307 nla_data(attr
), nla_len(attr
),
6308 nl80211_match_policy
);
6311 ssid
= tb
[NL80211_SCHED_SCAN_MATCH_ATTR_SSID
];
6313 if (WARN_ON(i
>= n_match_sets
)) {
6314 /* this indicates a programming error,
6315 * the loop above should have verified
6322 if (nla_len(ssid
) > IEEE80211_MAX_SSID_LEN
) {
6326 memcpy(request
->match_sets
[i
].ssid
.ssid
,
6327 nla_data(ssid
), nla_len(ssid
));
6328 request
->match_sets
[i
].ssid
.ssid_len
=
6330 /* special attribute - old implemenation w/a */
6331 request
->match_sets
[i
].rssi_thold
=
6333 rssi
= tb
[NL80211_SCHED_SCAN_MATCH_ATTR_RSSI
];
6335 request
->match_sets
[i
].rssi_thold
=
6341 /* there was no other matchset, so the RSSI one is alone */
6342 if (i
== 0 && n_match_sets
)
6343 request
->match_sets
[0].rssi_thold
= default_match_rssi
;
6345 request
->min_rssi_thold
= INT_MAX
;
6346 for (i
= 0; i
< n_match_sets
; i
++)
6347 request
->min_rssi_thold
=
6348 min(request
->match_sets
[i
].rssi_thold
,
6349 request
->min_rssi_thold
);
6351 request
->min_rssi_thold
= NL80211_SCAN_RSSI_THOLD_OFF
;
6355 request
->ie_len
= ie_len
;
6356 memcpy((void *)request
->ie
,
6357 nla_data(attrs
[NL80211_ATTR_IE
]),
6361 if (attrs
[NL80211_ATTR_SCAN_FLAGS
]) {
6362 request
->flags
= nla_get_u32(
6363 attrs
[NL80211_ATTR_SCAN_FLAGS
]);
6364 if ((request
->flags
& NL80211_SCAN_FLAG_LOW_PRIORITY
) &&
6365 !(wiphy
->features
& NL80211_FEATURE_LOW_PRIORITY_SCAN
)) {
6370 if (request
->flags
& NL80211_SCAN_FLAG_RANDOM_ADDR
) {
6371 u32 flg
= NL80211_FEATURE_SCHED_SCAN_RANDOM_MAC_ADDR
;
6373 if (!wdev
) /* must be net-detect */
6374 flg
= NL80211_FEATURE_ND_RANDOM_MAC_ADDR
;
6376 if (!(wiphy
->features
& flg
)) {
6381 if (wdev
&& wdev
->current_bss
) {
6386 err
= nl80211_parse_random_mac(attrs
, request
->mac_addr
,
6387 request
->mac_addr_mask
);
6393 if (attrs
[NL80211_ATTR_SCHED_SCAN_DELAY
])
6395 nla_get_u32(attrs
[NL80211_ATTR_SCHED_SCAN_DELAY
]);
6397 err
= nl80211_parse_sched_scan_plans(wiphy
, n_plans
, request
, attrs
);
6401 request
->scan_start
= jiffies
;
6407 return ERR_PTR(err
);
6410 static int nl80211_start_sched_scan(struct sk_buff
*skb
,
6411 struct genl_info
*info
)
6413 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
6414 struct net_device
*dev
= info
->user_ptr
[1];
6415 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
6416 struct cfg80211_sched_scan_request
*sched_scan_req
;
6419 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_SCHED_SCAN
) ||
6420 !rdev
->ops
->sched_scan_start
)
6423 if (rdev
->sched_scan_req
)
6424 return -EINPROGRESS
;
6426 sched_scan_req
= nl80211_parse_sched_scan(&rdev
->wiphy
, wdev
,
6429 err
= PTR_ERR_OR_ZERO(sched_scan_req
);
6433 err
= rdev_sched_scan_start(rdev
, dev
, sched_scan_req
);
6437 sched_scan_req
->dev
= dev
;
6438 sched_scan_req
->wiphy
= &rdev
->wiphy
;
6440 if (info
->attrs
[NL80211_ATTR_SOCKET_OWNER
])
6441 sched_scan_req
->owner_nlportid
= info
->snd_portid
;
6443 rcu_assign_pointer(rdev
->sched_scan_req
, sched_scan_req
);
6445 nl80211_send_sched_scan(rdev
, dev
,
6446 NL80211_CMD_START_SCHED_SCAN
);
6450 kfree(sched_scan_req
);
6455 static int nl80211_stop_sched_scan(struct sk_buff
*skb
,
6456 struct genl_info
*info
)
6458 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
6460 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_SCHED_SCAN
) ||
6461 !rdev
->ops
->sched_scan_stop
)
6464 return __cfg80211_stop_sched_scan(rdev
, false);
6467 static int nl80211_start_radar_detection(struct sk_buff
*skb
,
6468 struct genl_info
*info
)
6470 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
6471 struct net_device
*dev
= info
->user_ptr
[1];
6472 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
6473 struct cfg80211_chan_def chandef
;
6474 enum nl80211_dfs_regions dfs_region
;
6475 unsigned int cac_time_ms
;
6478 dfs_region
= reg_get_dfs_region(wdev
->wiphy
);
6479 if (dfs_region
== NL80211_DFS_UNSET
)
6482 err
= nl80211_parse_chandef(rdev
, info
, &chandef
);
6486 if (netif_carrier_ok(dev
))
6489 if (wdev
->cac_started
)
6492 err
= cfg80211_chandef_dfs_required(wdev
->wiphy
, &chandef
,
6500 if (!cfg80211_chandef_dfs_usable(wdev
->wiphy
, &chandef
))
6503 if (!rdev
->ops
->start_radar_detection
)
6506 cac_time_ms
= cfg80211_chandef_dfs_cac_time(&rdev
->wiphy
, &chandef
);
6507 if (WARN_ON(!cac_time_ms
))
6508 cac_time_ms
= IEEE80211_DFS_MIN_CAC_TIME_MS
;
6510 err
= rdev
->ops
->start_radar_detection(&rdev
->wiphy
, dev
, &chandef
,
6513 wdev
->chandef
= chandef
;
6514 wdev
->cac_started
= true;
6515 wdev
->cac_start_time
= jiffies
;
6516 wdev
->cac_time_ms
= cac_time_ms
;
6521 static int nl80211_channel_switch(struct sk_buff
*skb
, struct genl_info
*info
)
6523 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
6524 struct net_device
*dev
= info
->user_ptr
[1];
6525 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
6526 struct cfg80211_csa_settings params
;
6527 /* csa_attrs is defined static to avoid waste of stack size - this
6528 * function is called under RTNL lock, so this should not be a problem.
6530 static struct nlattr
*csa_attrs
[NL80211_ATTR_MAX
+1];
6532 bool need_new_beacon
= false;
6536 if (!rdev
->ops
->channel_switch
||
6537 !(rdev
->wiphy
.flags
& WIPHY_FLAG_HAS_CHANNEL_SWITCH
))
6540 switch (dev
->ieee80211_ptr
->iftype
) {
6541 case NL80211_IFTYPE_AP
:
6542 case NL80211_IFTYPE_P2P_GO
:
6543 need_new_beacon
= true;
6545 /* useless if AP is not running */
6546 if (!wdev
->beacon_interval
)
6549 case NL80211_IFTYPE_ADHOC
:
6550 if (!wdev
->ssid_len
)
6553 case NL80211_IFTYPE_MESH_POINT
:
6554 if (!wdev
->mesh_id_len
)
6561 memset(¶ms
, 0, sizeof(params
));
6563 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
] ||
6564 !info
->attrs
[NL80211_ATTR_CH_SWITCH_COUNT
])
6567 /* only important for AP, IBSS and mesh create IEs internally */
6568 if (need_new_beacon
&& !info
->attrs
[NL80211_ATTR_CSA_IES
])
6571 /* Even though the attribute is u32, the specification says
6572 * u8, so let's make sure we don't overflow.
6574 cs_count
= nla_get_u32(info
->attrs
[NL80211_ATTR_CH_SWITCH_COUNT
]);
6578 params
.count
= cs_count
;
6580 if (!need_new_beacon
)
6583 err
= nl80211_parse_beacon(info
->attrs
, ¶ms
.beacon_after
);
6587 err
= nla_parse_nested(csa_attrs
, NL80211_ATTR_MAX
,
6588 info
->attrs
[NL80211_ATTR_CSA_IES
],
6593 err
= nl80211_parse_beacon(csa_attrs
, ¶ms
.beacon_csa
);
6597 if (!csa_attrs
[NL80211_ATTR_CSA_C_OFF_BEACON
])
6600 len
= nla_len(csa_attrs
[NL80211_ATTR_CSA_C_OFF_BEACON
]);
6601 if (!len
|| (len
% sizeof(u16
)))
6604 params
.n_counter_offsets_beacon
= len
/ sizeof(u16
);
6605 if (rdev
->wiphy
.max_num_csa_counters
&&
6606 (params
.n_counter_offsets_beacon
>
6607 rdev
->wiphy
.max_num_csa_counters
))
6610 params
.counter_offsets_beacon
=
6611 nla_data(csa_attrs
[NL80211_ATTR_CSA_C_OFF_BEACON
]);
6613 /* sanity checks - counters should fit and be the same */
6614 for (i
= 0; i
< params
.n_counter_offsets_beacon
; i
++) {
6615 u16 offset
= params
.counter_offsets_beacon
[i
];
6617 if (offset
>= params
.beacon_csa
.tail_len
)
6620 if (params
.beacon_csa
.tail
[offset
] != params
.count
)
6624 if (csa_attrs
[NL80211_ATTR_CSA_C_OFF_PRESP
]) {
6625 len
= nla_len(csa_attrs
[NL80211_ATTR_CSA_C_OFF_PRESP
]);
6626 if (!len
|| (len
% sizeof(u16
)))
6629 params
.n_counter_offsets_presp
= len
/ sizeof(u16
);
6630 if (rdev
->wiphy
.max_num_csa_counters
&&
6631 (params
.n_counter_offsets_beacon
>
6632 rdev
->wiphy
.max_num_csa_counters
))
6635 params
.counter_offsets_presp
=
6636 nla_data(csa_attrs
[NL80211_ATTR_CSA_C_OFF_PRESP
]);
6638 /* sanity checks - counters should fit and be the same */
6639 for (i
= 0; i
< params
.n_counter_offsets_presp
; i
++) {
6640 u16 offset
= params
.counter_offsets_presp
[i
];
6642 if (offset
>= params
.beacon_csa
.probe_resp_len
)
6645 if (params
.beacon_csa
.probe_resp
[offset
] !=
6652 err
= nl80211_parse_chandef(rdev
, info
, ¶ms
.chandef
);
6656 if (!cfg80211_reg_can_beacon_relax(&rdev
->wiphy
, ¶ms
.chandef
,
6660 err
= cfg80211_chandef_dfs_required(wdev
->wiphy
,
6667 params
.radar_required
= true;
6669 if (info
->attrs
[NL80211_ATTR_CH_SWITCH_BLOCK_TX
])
6670 params
.block_tx
= true;
6673 err
= rdev_channel_switch(rdev
, dev
, ¶ms
);
6679 static int nl80211_send_bss(struct sk_buff
*msg
, struct netlink_callback
*cb
,
6681 struct cfg80211_registered_device
*rdev
,
6682 struct wireless_dev
*wdev
,
6683 struct cfg80211_internal_bss
*intbss
)
6685 struct cfg80211_bss
*res
= &intbss
->pub
;
6686 const struct cfg80211_bss_ies
*ies
;
6690 ASSERT_WDEV_LOCK(wdev
);
6692 hdr
= nl80211hdr_put(msg
, NETLINK_CB(cb
->skb
).portid
, seq
, flags
,
6693 NL80211_CMD_NEW_SCAN_RESULTS
);
6697 genl_dump_check_consistent(cb
, hdr
, &nl80211_fam
);
6699 if (nla_put_u32(msg
, NL80211_ATTR_GENERATION
, rdev
->bss_generation
))
6700 goto nla_put_failure
;
6702 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, wdev
->netdev
->ifindex
))
6703 goto nla_put_failure
;
6704 if (nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)))
6705 goto nla_put_failure
;
6707 bss
= nla_nest_start(msg
, NL80211_ATTR_BSS
);
6709 goto nla_put_failure
;
6710 if ((!is_zero_ether_addr(res
->bssid
) &&
6711 nla_put(msg
, NL80211_BSS_BSSID
, ETH_ALEN
, res
->bssid
)))
6712 goto nla_put_failure
;
6715 /* indicate whether we have probe response data or not */
6716 if (rcu_access_pointer(res
->proberesp_ies
) &&
6717 nla_put_flag(msg
, NL80211_BSS_PRESP_DATA
))
6718 goto fail_unlock_rcu
;
6720 /* this pointer prefers to be pointed to probe response data
6721 * but is always valid
6723 ies
= rcu_dereference(res
->ies
);
6725 if (nla_put_u64(msg
, NL80211_BSS_TSF
, ies
->tsf
))
6726 goto fail_unlock_rcu
;
6727 if (ies
->len
&& nla_put(msg
, NL80211_BSS_INFORMATION_ELEMENTS
,
6728 ies
->len
, ies
->data
))
6729 goto fail_unlock_rcu
;
6732 /* and this pointer is always (unless driver didn't know) beacon data */
6733 ies
= rcu_dereference(res
->beacon_ies
);
6734 if (ies
&& ies
->from_beacon
) {
6735 if (nla_put_u64(msg
, NL80211_BSS_BEACON_TSF
, ies
->tsf
))
6736 goto fail_unlock_rcu
;
6737 if (ies
->len
&& nla_put(msg
, NL80211_BSS_BEACON_IES
,
6738 ies
->len
, ies
->data
))
6739 goto fail_unlock_rcu
;
6743 if (res
->beacon_interval
&&
6744 nla_put_u16(msg
, NL80211_BSS_BEACON_INTERVAL
, res
->beacon_interval
))
6745 goto nla_put_failure
;
6746 if (nla_put_u16(msg
, NL80211_BSS_CAPABILITY
, res
->capability
) ||
6747 nla_put_u32(msg
, NL80211_BSS_FREQUENCY
, res
->channel
->center_freq
) ||
6748 nla_put_u32(msg
, NL80211_BSS_CHAN_WIDTH
, res
->scan_width
) ||
6749 nla_put_u32(msg
, NL80211_BSS_SEEN_MS_AGO
,
6750 jiffies_to_msecs(jiffies
- intbss
->ts
)))
6751 goto nla_put_failure
;
6753 if (intbss
->ts_boottime
&&
6754 nla_put_u64(msg
, NL80211_BSS_LAST_SEEN_BOOTTIME
,
6755 intbss
->ts_boottime
))
6756 goto nla_put_failure
;
6758 switch (rdev
->wiphy
.signal_type
) {
6759 case CFG80211_SIGNAL_TYPE_MBM
:
6760 if (nla_put_u32(msg
, NL80211_BSS_SIGNAL_MBM
, res
->signal
))
6761 goto nla_put_failure
;
6763 case CFG80211_SIGNAL_TYPE_UNSPEC
:
6764 if (nla_put_u8(msg
, NL80211_BSS_SIGNAL_UNSPEC
, res
->signal
))
6765 goto nla_put_failure
;
6771 switch (wdev
->iftype
) {
6772 case NL80211_IFTYPE_P2P_CLIENT
:
6773 case NL80211_IFTYPE_STATION
:
6774 if (intbss
== wdev
->current_bss
&&
6775 nla_put_u32(msg
, NL80211_BSS_STATUS
,
6776 NL80211_BSS_STATUS_ASSOCIATED
))
6777 goto nla_put_failure
;
6779 case NL80211_IFTYPE_ADHOC
:
6780 if (intbss
== wdev
->current_bss
&&
6781 nla_put_u32(msg
, NL80211_BSS_STATUS
,
6782 NL80211_BSS_STATUS_IBSS_JOINED
))
6783 goto nla_put_failure
;
6789 nla_nest_end(msg
, bss
);
6791 genlmsg_end(msg
, hdr
);
6797 genlmsg_cancel(msg
, hdr
);
6801 static int nl80211_dump_scan(struct sk_buff
*skb
, struct netlink_callback
*cb
)
6803 struct cfg80211_registered_device
*rdev
;
6804 struct cfg80211_internal_bss
*scan
;
6805 struct wireless_dev
*wdev
;
6806 int start
= cb
->args
[2], idx
= 0;
6809 err
= nl80211_prepare_wdev_dump(skb
, cb
, &rdev
, &wdev
);
6814 spin_lock_bh(&rdev
->bss_lock
);
6815 cfg80211_bss_expire(rdev
);
6817 cb
->seq
= rdev
->bss_generation
;
6819 list_for_each_entry(scan
, &rdev
->bss_list
, list
) {
6822 if (nl80211_send_bss(skb
, cb
,
6823 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
6824 rdev
, wdev
, scan
) < 0) {
6830 spin_unlock_bh(&rdev
->bss_lock
);
6834 nl80211_finish_wdev_dump(rdev
);
6839 static int nl80211_send_survey(struct sk_buff
*msg
, u32 portid
, u32 seq
,
6840 int flags
, struct net_device
*dev
,
6841 bool allow_radio_stats
,
6842 struct survey_info
*survey
)
6845 struct nlattr
*infoattr
;
6847 /* skip radio stats if userspace didn't request them */
6848 if (!survey
->channel
&& !allow_radio_stats
)
6851 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
,
6852 NL80211_CMD_NEW_SURVEY_RESULTS
);
6856 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
))
6857 goto nla_put_failure
;
6859 infoattr
= nla_nest_start(msg
, NL80211_ATTR_SURVEY_INFO
);
6861 goto nla_put_failure
;
6863 if (survey
->channel
&&
6864 nla_put_u32(msg
, NL80211_SURVEY_INFO_FREQUENCY
,
6865 survey
->channel
->center_freq
))
6866 goto nla_put_failure
;
6868 if ((survey
->filled
& SURVEY_INFO_NOISE_DBM
) &&
6869 nla_put_u8(msg
, NL80211_SURVEY_INFO_NOISE
, survey
->noise
))
6870 goto nla_put_failure
;
6871 if ((survey
->filled
& SURVEY_INFO_IN_USE
) &&
6872 nla_put_flag(msg
, NL80211_SURVEY_INFO_IN_USE
))
6873 goto nla_put_failure
;
6874 if ((survey
->filled
& SURVEY_INFO_TIME
) &&
6875 nla_put_u64(msg
, NL80211_SURVEY_INFO_TIME
,
6877 goto nla_put_failure
;
6878 if ((survey
->filled
& SURVEY_INFO_TIME_BUSY
) &&
6879 nla_put_u64(msg
, NL80211_SURVEY_INFO_TIME_BUSY
,
6881 goto nla_put_failure
;
6882 if ((survey
->filled
& SURVEY_INFO_TIME_EXT_BUSY
) &&
6883 nla_put_u64(msg
, NL80211_SURVEY_INFO_TIME_EXT_BUSY
,
6884 survey
->time_ext_busy
))
6885 goto nla_put_failure
;
6886 if ((survey
->filled
& SURVEY_INFO_TIME_RX
) &&
6887 nla_put_u64(msg
, NL80211_SURVEY_INFO_TIME_RX
,
6889 goto nla_put_failure
;
6890 if ((survey
->filled
& SURVEY_INFO_TIME_TX
) &&
6891 nla_put_u64(msg
, NL80211_SURVEY_INFO_TIME_TX
,
6893 goto nla_put_failure
;
6894 if ((survey
->filled
& SURVEY_INFO_TIME_SCAN
) &&
6895 nla_put_u64(msg
, NL80211_SURVEY_INFO_TIME_SCAN
,
6897 goto nla_put_failure
;
6899 nla_nest_end(msg
, infoattr
);
6901 genlmsg_end(msg
, hdr
);
6905 genlmsg_cancel(msg
, hdr
);
6909 static int nl80211_dump_survey(struct sk_buff
*skb
, struct netlink_callback
*cb
)
6911 struct survey_info survey
;
6912 struct cfg80211_registered_device
*rdev
;
6913 struct wireless_dev
*wdev
;
6914 int survey_idx
= cb
->args
[2];
6918 res
= nl80211_prepare_wdev_dump(skb
, cb
, &rdev
, &wdev
);
6922 /* prepare_wdev_dump parsed the attributes */
6923 radio_stats
= nl80211_fam
.attrbuf
[NL80211_ATTR_SURVEY_RADIO_STATS
];
6925 if (!wdev
->netdev
) {
6930 if (!rdev
->ops
->dump_survey
) {
6936 res
= rdev_dump_survey(rdev
, wdev
->netdev
, survey_idx
, &survey
);
6942 /* don't send disabled channels, but do send non-channel data */
6943 if (survey
.channel
&&
6944 survey
.channel
->flags
& IEEE80211_CHAN_DISABLED
) {
6949 if (nl80211_send_survey(skb
,
6950 NETLINK_CB(cb
->skb
).portid
,
6951 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
6952 wdev
->netdev
, radio_stats
, &survey
) < 0)
6958 cb
->args
[2] = survey_idx
;
6961 nl80211_finish_wdev_dump(rdev
);
6965 static bool nl80211_valid_wpa_versions(u32 wpa_versions
)
6967 return !(wpa_versions
& ~(NL80211_WPA_VERSION_1
|
6968 NL80211_WPA_VERSION_2
));
6971 static int nl80211_authenticate(struct sk_buff
*skb
, struct genl_info
*info
)
6973 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
6974 struct net_device
*dev
= info
->user_ptr
[1];
6975 struct ieee80211_channel
*chan
;
6976 const u8
*bssid
, *ssid
, *ie
= NULL
, *sae_data
= NULL
;
6977 int err
, ssid_len
, ie_len
= 0, sae_data_len
= 0;
6978 enum nl80211_auth_type auth_type
;
6979 struct key_parse key
;
6980 bool local_state_change
;
6982 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
6985 if (!info
->attrs
[NL80211_ATTR_MAC
])
6988 if (!info
->attrs
[NL80211_ATTR_AUTH_TYPE
])
6991 if (!info
->attrs
[NL80211_ATTR_SSID
])
6994 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
])
6997 err
= nl80211_parse_key(info
, &key
);
7002 if (key
.type
!= -1 && key
.type
!= NL80211_KEYTYPE_GROUP
)
7004 if (!key
.p
.key
|| !key
.p
.key_len
)
7006 if ((key
.p
.cipher
!= WLAN_CIPHER_SUITE_WEP40
||
7007 key
.p
.key_len
!= WLAN_KEY_LEN_WEP40
) &&
7008 (key
.p
.cipher
!= WLAN_CIPHER_SUITE_WEP104
||
7009 key
.p
.key_len
!= WLAN_KEY_LEN_WEP104
))
7021 for (i
= 0; i
< rdev
->wiphy
.n_cipher_suites
; i
++) {
7022 if (key
.p
.cipher
== rdev
->wiphy
.cipher_suites
[i
]) {
7031 if (!rdev
->ops
->auth
)
7034 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
7035 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
7038 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
7039 chan
= nl80211_get_valid_chan(&rdev
->wiphy
,
7040 info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
7044 ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
7045 ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
7047 if (info
->attrs
[NL80211_ATTR_IE
]) {
7048 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
7049 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
7052 auth_type
= nla_get_u32(info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
7053 if (!nl80211_valid_auth_type(rdev
, auth_type
, NL80211_CMD_AUTHENTICATE
))
7056 if (auth_type
== NL80211_AUTHTYPE_SAE
&&
7057 !info
->attrs
[NL80211_ATTR_SAE_DATA
])
7060 if (info
->attrs
[NL80211_ATTR_SAE_DATA
]) {
7061 if (auth_type
!= NL80211_AUTHTYPE_SAE
)
7063 sae_data
= nla_data(info
->attrs
[NL80211_ATTR_SAE_DATA
]);
7064 sae_data_len
= nla_len(info
->attrs
[NL80211_ATTR_SAE_DATA
]);
7065 /* need to include at least Auth Transaction and Status Code */
7066 if (sae_data_len
< 4)
7070 local_state_change
= !!info
->attrs
[NL80211_ATTR_LOCAL_STATE_CHANGE
];
7073 * Since we no longer track auth state, ignore
7074 * requests to only change local state.
7076 if (local_state_change
)
7079 wdev_lock(dev
->ieee80211_ptr
);
7080 err
= cfg80211_mlme_auth(rdev
, dev
, chan
, auth_type
, bssid
,
7081 ssid
, ssid_len
, ie
, ie_len
,
7082 key
.p
.key
, key
.p
.key_len
, key
.idx
,
7083 sae_data
, sae_data_len
);
7084 wdev_unlock(dev
->ieee80211_ptr
);
7088 static int nl80211_crypto_settings(struct cfg80211_registered_device
*rdev
,
7089 struct genl_info
*info
,
7090 struct cfg80211_crypto_settings
*settings
,
7093 memset(settings
, 0, sizeof(*settings
));
7095 settings
->control_port
= info
->attrs
[NL80211_ATTR_CONTROL_PORT
];
7097 if (info
->attrs
[NL80211_ATTR_CONTROL_PORT_ETHERTYPE
]) {
7099 proto
= nla_get_u16(
7100 info
->attrs
[NL80211_ATTR_CONTROL_PORT_ETHERTYPE
]);
7101 settings
->control_port_ethertype
= cpu_to_be16(proto
);
7102 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_CONTROL_PORT_PROTOCOL
) &&
7105 if (info
->attrs
[NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT
])
7106 settings
->control_port_no_encrypt
= true;
7108 settings
->control_port_ethertype
= cpu_to_be16(ETH_P_PAE
);
7110 if (info
->attrs
[NL80211_ATTR_CIPHER_SUITES_PAIRWISE
]) {
7114 data
= nla_data(info
->attrs
[NL80211_ATTR_CIPHER_SUITES_PAIRWISE
]);
7115 len
= nla_len(info
->attrs
[NL80211_ATTR_CIPHER_SUITES_PAIRWISE
]);
7116 settings
->n_ciphers_pairwise
= len
/ sizeof(u32
);
7118 if (len
% sizeof(u32
))
7121 if (settings
->n_ciphers_pairwise
> cipher_limit
)
7124 memcpy(settings
->ciphers_pairwise
, data
, len
);
7126 for (i
= 0; i
< settings
->n_ciphers_pairwise
; i
++)
7127 if (!cfg80211_supported_cipher_suite(
7129 settings
->ciphers_pairwise
[i
]))
7133 if (info
->attrs
[NL80211_ATTR_CIPHER_SUITE_GROUP
]) {
7134 settings
->cipher_group
=
7135 nla_get_u32(info
->attrs
[NL80211_ATTR_CIPHER_SUITE_GROUP
]);
7136 if (!cfg80211_supported_cipher_suite(&rdev
->wiphy
,
7137 settings
->cipher_group
))
7141 if (info
->attrs
[NL80211_ATTR_WPA_VERSIONS
]) {
7142 settings
->wpa_versions
=
7143 nla_get_u32(info
->attrs
[NL80211_ATTR_WPA_VERSIONS
]);
7144 if (!nl80211_valid_wpa_versions(settings
->wpa_versions
))
7148 if (info
->attrs
[NL80211_ATTR_AKM_SUITES
]) {
7152 data
= nla_data(info
->attrs
[NL80211_ATTR_AKM_SUITES
]);
7153 len
= nla_len(info
->attrs
[NL80211_ATTR_AKM_SUITES
]);
7154 settings
->n_akm_suites
= len
/ sizeof(u32
);
7156 if (len
% sizeof(u32
))
7159 if (settings
->n_akm_suites
> NL80211_MAX_NR_AKM_SUITES
)
7162 memcpy(settings
->akm_suites
, data
, len
);
7168 static int nl80211_associate(struct sk_buff
*skb
, struct genl_info
*info
)
7170 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7171 struct net_device
*dev
= info
->user_ptr
[1];
7172 struct ieee80211_channel
*chan
;
7173 struct cfg80211_assoc_request req
= {};
7174 const u8
*bssid
, *ssid
;
7175 int err
, ssid_len
= 0;
7177 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
7180 if (!info
->attrs
[NL80211_ATTR_MAC
] ||
7181 !info
->attrs
[NL80211_ATTR_SSID
] ||
7182 !info
->attrs
[NL80211_ATTR_WIPHY_FREQ
])
7185 if (!rdev
->ops
->assoc
)
7188 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
7189 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
7192 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
7194 chan
= nl80211_get_valid_chan(&rdev
->wiphy
,
7195 info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
7199 ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
7200 ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
7202 if (info
->attrs
[NL80211_ATTR_IE
]) {
7203 req
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
7204 req
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
7207 if (info
->attrs
[NL80211_ATTR_USE_MFP
]) {
7208 enum nl80211_mfp mfp
=
7209 nla_get_u32(info
->attrs
[NL80211_ATTR_USE_MFP
]);
7210 if (mfp
== NL80211_MFP_REQUIRED
)
7212 else if (mfp
!= NL80211_MFP_NO
)
7216 if (info
->attrs
[NL80211_ATTR_PREV_BSSID
])
7217 req
.prev_bssid
= nla_data(info
->attrs
[NL80211_ATTR_PREV_BSSID
]);
7219 if (nla_get_flag(info
->attrs
[NL80211_ATTR_DISABLE_HT
]))
7220 req
.flags
|= ASSOC_REQ_DISABLE_HT
;
7222 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
])
7223 memcpy(&req
.ht_capa_mask
,
7224 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
]),
7225 sizeof(req
.ht_capa_mask
));
7227 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]) {
7228 if (!info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
])
7230 memcpy(&req
.ht_capa
,
7231 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]),
7232 sizeof(req
.ht_capa
));
7235 if (nla_get_flag(info
->attrs
[NL80211_ATTR_DISABLE_VHT
]))
7236 req
.flags
|= ASSOC_REQ_DISABLE_VHT
;
7238 if (info
->attrs
[NL80211_ATTR_VHT_CAPABILITY_MASK
])
7239 memcpy(&req
.vht_capa_mask
,
7240 nla_data(info
->attrs
[NL80211_ATTR_VHT_CAPABILITY_MASK
]),
7241 sizeof(req
.vht_capa_mask
));
7243 if (info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
]) {
7244 if (!info
->attrs
[NL80211_ATTR_VHT_CAPABILITY_MASK
])
7246 memcpy(&req
.vht_capa
,
7247 nla_data(info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
]),
7248 sizeof(req
.vht_capa
));
7251 if (nla_get_flag(info
->attrs
[NL80211_ATTR_USE_RRM
])) {
7252 if (!(rdev
->wiphy
.features
&
7253 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES
) ||
7254 !(rdev
->wiphy
.features
& NL80211_FEATURE_QUIET
))
7256 req
.flags
|= ASSOC_REQ_USE_RRM
;
7259 err
= nl80211_crypto_settings(rdev
, info
, &req
.crypto
, 1);
7261 wdev_lock(dev
->ieee80211_ptr
);
7262 err
= cfg80211_mlme_assoc(rdev
, dev
, chan
, bssid
,
7263 ssid
, ssid_len
, &req
);
7264 wdev_unlock(dev
->ieee80211_ptr
);
7270 static int nl80211_deauthenticate(struct sk_buff
*skb
, struct genl_info
*info
)
7272 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7273 struct net_device
*dev
= info
->user_ptr
[1];
7274 const u8
*ie
= NULL
, *bssid
;
7275 int ie_len
= 0, err
;
7277 bool local_state_change
;
7279 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
7282 if (!info
->attrs
[NL80211_ATTR_MAC
])
7285 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
7288 if (!rdev
->ops
->deauth
)
7291 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
7292 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
7295 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
7297 reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
7298 if (reason_code
== 0) {
7299 /* Reason Code 0 is reserved */
7303 if (info
->attrs
[NL80211_ATTR_IE
]) {
7304 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
7305 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
7308 local_state_change
= !!info
->attrs
[NL80211_ATTR_LOCAL_STATE_CHANGE
];
7310 wdev_lock(dev
->ieee80211_ptr
);
7311 err
= cfg80211_mlme_deauth(rdev
, dev
, bssid
, ie
, ie_len
, reason_code
,
7312 local_state_change
);
7313 wdev_unlock(dev
->ieee80211_ptr
);
7317 static int nl80211_disassociate(struct sk_buff
*skb
, struct genl_info
*info
)
7319 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7320 struct net_device
*dev
= info
->user_ptr
[1];
7321 const u8
*ie
= NULL
, *bssid
;
7322 int ie_len
= 0, err
;
7324 bool local_state_change
;
7326 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
7329 if (!info
->attrs
[NL80211_ATTR_MAC
])
7332 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
7335 if (!rdev
->ops
->disassoc
)
7338 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
7339 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
7342 bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
7344 reason_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
7345 if (reason_code
== 0) {
7346 /* Reason Code 0 is reserved */
7350 if (info
->attrs
[NL80211_ATTR_IE
]) {
7351 ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
7352 ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
7355 local_state_change
= !!info
->attrs
[NL80211_ATTR_LOCAL_STATE_CHANGE
];
7357 wdev_lock(dev
->ieee80211_ptr
);
7358 err
= cfg80211_mlme_disassoc(rdev
, dev
, bssid
, ie
, ie_len
, reason_code
,
7359 local_state_change
);
7360 wdev_unlock(dev
->ieee80211_ptr
);
7365 nl80211_parse_mcast_rate(struct cfg80211_registered_device
*rdev
,
7366 int mcast_rate
[IEEE80211_NUM_BANDS
],
7369 struct wiphy
*wiphy
= &rdev
->wiphy
;
7373 for (band
= 0; band
< IEEE80211_NUM_BANDS
; band
++) {
7374 struct ieee80211_supported_band
*sband
;
7376 sband
= wiphy
->bands
[band
];
7380 for (i
= 0; i
< sband
->n_bitrates
; i
++) {
7381 if (sband
->bitrates
[i
].bitrate
== rateval
) {
7382 mcast_rate
[band
] = i
+ 1;
7392 static int nl80211_join_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
7394 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7395 struct net_device
*dev
= info
->user_ptr
[1];
7396 struct cfg80211_ibss_params ibss
;
7397 struct wiphy
*wiphy
;
7398 struct cfg80211_cached_keys
*connkeys
= NULL
;
7401 memset(&ibss
, 0, sizeof(ibss
));
7403 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
7406 if (!info
->attrs
[NL80211_ATTR_SSID
] ||
7407 !nla_len(info
->attrs
[NL80211_ATTR_SSID
]))
7410 ibss
.beacon_interval
= 100;
7412 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
7413 ibss
.beacon_interval
=
7414 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
7415 if (ibss
.beacon_interval
< 1 || ibss
.beacon_interval
> 10000)
7419 if (!rdev
->ops
->join_ibss
)
7422 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
)
7425 wiphy
= &rdev
->wiphy
;
7427 if (info
->attrs
[NL80211_ATTR_MAC
]) {
7428 ibss
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
7430 if (!is_valid_ether_addr(ibss
.bssid
))
7433 ibss
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
7434 ibss
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
7436 if (info
->attrs
[NL80211_ATTR_IE
]) {
7437 ibss
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
7438 ibss
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
7441 err
= nl80211_parse_chandef(rdev
, info
, &ibss
.chandef
);
7445 if (!cfg80211_reg_can_beacon(&rdev
->wiphy
, &ibss
.chandef
,
7446 NL80211_IFTYPE_ADHOC
))
7449 switch (ibss
.chandef
.width
) {
7450 case NL80211_CHAN_WIDTH_5
:
7451 case NL80211_CHAN_WIDTH_10
:
7452 case NL80211_CHAN_WIDTH_20_NOHT
:
7454 case NL80211_CHAN_WIDTH_20
:
7455 case NL80211_CHAN_WIDTH_40
:
7456 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_HT_IBSS
))
7459 case NL80211_CHAN_WIDTH_80
:
7460 case NL80211_CHAN_WIDTH_80P80
:
7461 case NL80211_CHAN_WIDTH_160
:
7462 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_HT_IBSS
))
7464 if (!wiphy_ext_feature_isset(&rdev
->wiphy
,
7465 NL80211_EXT_FEATURE_VHT_IBSS
))
7472 ibss
.channel_fixed
= !!info
->attrs
[NL80211_ATTR_FREQ_FIXED
];
7473 ibss
.privacy
= !!info
->attrs
[NL80211_ATTR_PRIVACY
];
7475 if (info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]) {
7477 nla_data(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
7479 nla_len(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
7480 struct ieee80211_supported_band
*sband
=
7481 wiphy
->bands
[ibss
.chandef
.chan
->band
];
7483 err
= ieee80211_get_ratemask(sband
, rates
, n_rates
,
7489 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
])
7490 memcpy(&ibss
.ht_capa_mask
,
7491 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
]),
7492 sizeof(ibss
.ht_capa_mask
));
7494 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]) {
7495 if (!info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
])
7497 memcpy(&ibss
.ht_capa
,
7498 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]),
7499 sizeof(ibss
.ht_capa
));
7502 if (info
->attrs
[NL80211_ATTR_MCAST_RATE
] &&
7503 !nl80211_parse_mcast_rate(rdev
, ibss
.mcast_rate
,
7504 nla_get_u32(info
->attrs
[NL80211_ATTR_MCAST_RATE
])))
7507 if (ibss
.privacy
&& info
->attrs
[NL80211_ATTR_KEYS
]) {
7510 connkeys
= nl80211_parse_connkeys(rdev
,
7511 info
->attrs
[NL80211_ATTR_KEYS
],
7513 if (IS_ERR(connkeys
))
7514 return PTR_ERR(connkeys
);
7516 if ((ibss
.chandef
.width
!= NL80211_CHAN_WIDTH_20_NOHT
) &&
7524 nla_get_flag(info
->attrs
[NL80211_ATTR_CONTROL_PORT
]);
7526 ibss
.userspace_handles_dfs
=
7527 nla_get_flag(info
->attrs
[NL80211_ATTR_HANDLE_DFS
]);
7529 err
= cfg80211_join_ibss(rdev
, dev
, &ibss
, connkeys
);
7535 static int nl80211_leave_ibss(struct sk_buff
*skb
, struct genl_info
*info
)
7537 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7538 struct net_device
*dev
= info
->user_ptr
[1];
7540 if (!rdev
->ops
->leave_ibss
)
7543 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
)
7546 return cfg80211_leave_ibss(rdev
, dev
, false);
7549 static int nl80211_set_mcast_rate(struct sk_buff
*skb
, struct genl_info
*info
)
7551 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7552 struct net_device
*dev
= info
->user_ptr
[1];
7553 int mcast_rate
[IEEE80211_NUM_BANDS
];
7557 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_ADHOC
&&
7558 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_MESH_POINT
&&
7559 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_OCB
)
7562 if (!rdev
->ops
->set_mcast_rate
)
7565 memset(mcast_rate
, 0, sizeof(mcast_rate
));
7567 if (!info
->attrs
[NL80211_ATTR_MCAST_RATE
])
7570 nla_rate
= nla_get_u32(info
->attrs
[NL80211_ATTR_MCAST_RATE
]);
7571 if (!nl80211_parse_mcast_rate(rdev
, mcast_rate
, nla_rate
))
7574 err
= rdev
->ops
->set_mcast_rate(&rdev
->wiphy
, dev
, mcast_rate
);
7579 static struct sk_buff
*
7580 __cfg80211_alloc_vendor_skb(struct cfg80211_registered_device
*rdev
,
7581 struct wireless_dev
*wdev
, int approxlen
,
7582 u32 portid
, u32 seq
, enum nl80211_commands cmd
,
7583 enum nl80211_attrs attr
,
7584 const struct nl80211_vendor_cmd_info
*info
,
7587 struct sk_buff
*skb
;
7589 struct nlattr
*data
;
7591 skb
= nlmsg_new(approxlen
+ 100, gfp
);
7595 hdr
= nl80211hdr_put(skb
, portid
, seq
, 0, cmd
);
7601 if (nla_put_u32(skb
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
))
7602 goto nla_put_failure
;
7605 if (nla_put_u32(skb
, NL80211_ATTR_VENDOR_ID
,
7607 goto nla_put_failure
;
7608 if (nla_put_u32(skb
, NL80211_ATTR_VENDOR_SUBCMD
,
7610 goto nla_put_failure
;
7614 if (nla_put_u64(skb
, NL80211_ATTR_WDEV
,
7616 goto nla_put_failure
;
7618 nla_put_u32(skb
, NL80211_ATTR_IFINDEX
,
7619 wdev
->netdev
->ifindex
))
7620 goto nla_put_failure
;
7623 data
= nla_nest_start(skb
, attr
);
7625 ((void **)skb
->cb
)[0] = rdev
;
7626 ((void **)skb
->cb
)[1] = hdr
;
7627 ((void **)skb
->cb
)[2] = data
;
7636 struct sk_buff
*__cfg80211_alloc_event_skb(struct wiphy
*wiphy
,
7637 struct wireless_dev
*wdev
,
7638 enum nl80211_commands cmd
,
7639 enum nl80211_attrs attr
,
7640 int vendor_event_idx
,
7641 int approxlen
, gfp_t gfp
)
7643 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
7644 const struct nl80211_vendor_cmd_info
*info
;
7647 case NL80211_CMD_TESTMODE
:
7648 if (WARN_ON(vendor_event_idx
!= -1))
7652 case NL80211_CMD_VENDOR
:
7653 if (WARN_ON(vendor_event_idx
< 0 ||
7654 vendor_event_idx
>= wiphy
->n_vendor_events
))
7656 info
= &wiphy
->vendor_events
[vendor_event_idx
];
7663 return __cfg80211_alloc_vendor_skb(rdev
, wdev
, approxlen
, 0, 0,
7664 cmd
, attr
, info
, gfp
);
7666 EXPORT_SYMBOL(__cfg80211_alloc_event_skb
);
7668 void __cfg80211_send_event_skb(struct sk_buff
*skb
, gfp_t gfp
)
7670 struct cfg80211_registered_device
*rdev
= ((void **)skb
->cb
)[0];
7671 void *hdr
= ((void **)skb
->cb
)[1];
7672 struct nlattr
*data
= ((void **)skb
->cb
)[2];
7673 enum nl80211_multicast_groups mcgrp
= NL80211_MCGRP_TESTMODE
;
7675 /* clear CB data for netlink core to own from now on */
7676 memset(skb
->cb
, 0, sizeof(skb
->cb
));
7678 nla_nest_end(skb
, data
);
7679 genlmsg_end(skb
, hdr
);
7681 if (data
->nla_type
== NL80211_ATTR_VENDOR_DATA
)
7682 mcgrp
= NL80211_MCGRP_VENDOR
;
7684 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), skb
, 0,
7687 EXPORT_SYMBOL(__cfg80211_send_event_skb
);
7689 #ifdef CONFIG_NL80211_TESTMODE
7690 static int nl80211_testmode_do(struct sk_buff
*skb
, struct genl_info
*info
)
7692 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7693 struct wireless_dev
*wdev
=
7694 __cfg80211_wdev_from_attrs(genl_info_net(info
), info
->attrs
);
7697 if (!rdev
->ops
->testmode_cmd
)
7701 err
= PTR_ERR(wdev
);
7705 } else if (wdev
->wiphy
!= &rdev
->wiphy
) {
7709 if (!info
->attrs
[NL80211_ATTR_TESTDATA
])
7712 rdev
->cur_cmd_info
= info
;
7713 err
= rdev_testmode_cmd(rdev
, wdev
,
7714 nla_data(info
->attrs
[NL80211_ATTR_TESTDATA
]),
7715 nla_len(info
->attrs
[NL80211_ATTR_TESTDATA
]));
7716 rdev
->cur_cmd_info
= NULL
;
7721 static int nl80211_testmode_dump(struct sk_buff
*skb
,
7722 struct netlink_callback
*cb
)
7724 struct cfg80211_registered_device
*rdev
;
7734 * 0 is a valid index, but not valid for args[0],
7735 * so we need to offset by 1.
7737 phy_idx
= cb
->args
[0] - 1;
7739 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
7740 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
7745 rdev
= __cfg80211_rdev_from_attrs(sock_net(skb
->sk
),
7746 nl80211_fam
.attrbuf
);
7748 err
= PTR_ERR(rdev
);
7751 phy_idx
= rdev
->wiphy_idx
;
7754 if (nl80211_fam
.attrbuf
[NL80211_ATTR_TESTDATA
])
7756 (long)nl80211_fam
.attrbuf
[NL80211_ATTR_TESTDATA
];
7760 data
= nla_data((void *)cb
->args
[1]);
7761 data_len
= nla_len((void *)cb
->args
[1]);
7764 rdev
= cfg80211_rdev_by_wiphy_idx(phy_idx
);
7770 if (!rdev
->ops
->testmode_dump
) {
7776 void *hdr
= nl80211hdr_put(skb
, NETLINK_CB(cb
->skb
).portid
,
7777 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
7778 NL80211_CMD_TESTMODE
);
7779 struct nlattr
*tmdata
;
7784 if (nla_put_u32(skb
, NL80211_ATTR_WIPHY
, phy_idx
)) {
7785 genlmsg_cancel(skb
, hdr
);
7789 tmdata
= nla_nest_start(skb
, NL80211_ATTR_TESTDATA
);
7791 genlmsg_cancel(skb
, hdr
);
7794 err
= rdev_testmode_dump(rdev
, skb
, cb
, data
, data_len
);
7795 nla_nest_end(skb
, tmdata
);
7797 if (err
== -ENOBUFS
|| err
== -ENOENT
) {
7798 genlmsg_cancel(skb
, hdr
);
7801 genlmsg_cancel(skb
, hdr
);
7805 genlmsg_end(skb
, hdr
);
7810 cb
->args
[0] = phy_idx
+ 1;
7817 static int nl80211_connect(struct sk_buff
*skb
, struct genl_info
*info
)
7819 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7820 struct net_device
*dev
= info
->user_ptr
[1];
7821 struct cfg80211_connect_params connect
;
7822 struct wiphy
*wiphy
;
7823 struct cfg80211_cached_keys
*connkeys
= NULL
;
7826 memset(&connect
, 0, sizeof(connect
));
7828 if (!is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
7831 if (!info
->attrs
[NL80211_ATTR_SSID
] ||
7832 !nla_len(info
->attrs
[NL80211_ATTR_SSID
]))
7835 if (info
->attrs
[NL80211_ATTR_AUTH_TYPE
]) {
7837 nla_get_u32(info
->attrs
[NL80211_ATTR_AUTH_TYPE
]);
7838 if (!nl80211_valid_auth_type(rdev
, connect
.auth_type
,
7839 NL80211_CMD_CONNECT
))
7842 connect
.auth_type
= NL80211_AUTHTYPE_AUTOMATIC
;
7844 connect
.privacy
= info
->attrs
[NL80211_ATTR_PRIVACY
];
7846 err
= nl80211_crypto_settings(rdev
, info
, &connect
.crypto
,
7847 NL80211_MAX_NR_CIPHER_SUITES
);
7851 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
7852 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
7855 wiphy
= &rdev
->wiphy
;
7857 connect
.bg_scan_period
= -1;
7858 if (info
->attrs
[NL80211_ATTR_BG_SCAN_PERIOD
] &&
7859 (wiphy
->flags
& WIPHY_FLAG_SUPPORTS_FW_ROAM
)) {
7860 connect
.bg_scan_period
=
7861 nla_get_u16(info
->attrs
[NL80211_ATTR_BG_SCAN_PERIOD
]);
7864 if (info
->attrs
[NL80211_ATTR_MAC
])
7865 connect
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
7866 else if (info
->attrs
[NL80211_ATTR_MAC_HINT
])
7867 connect
.bssid_hint
=
7868 nla_data(info
->attrs
[NL80211_ATTR_MAC_HINT
]);
7869 connect
.ssid
= nla_data(info
->attrs
[NL80211_ATTR_SSID
]);
7870 connect
.ssid_len
= nla_len(info
->attrs
[NL80211_ATTR_SSID
]);
7872 if (info
->attrs
[NL80211_ATTR_IE
]) {
7873 connect
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
7874 connect
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
7877 if (info
->attrs
[NL80211_ATTR_USE_MFP
]) {
7878 connect
.mfp
= nla_get_u32(info
->attrs
[NL80211_ATTR_USE_MFP
]);
7879 if (connect
.mfp
!= NL80211_MFP_REQUIRED
&&
7880 connect
.mfp
!= NL80211_MFP_NO
)
7883 connect
.mfp
= NL80211_MFP_NO
;
7886 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
7887 connect
.channel
= nl80211_get_valid_chan(
7888 wiphy
, info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]);
7889 if (!connect
.channel
)
7891 } else if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ_HINT
]) {
7892 connect
.channel_hint
= nl80211_get_valid_chan(
7893 wiphy
, info
->attrs
[NL80211_ATTR_WIPHY_FREQ_HINT
]);
7894 if (!connect
.channel_hint
)
7898 if (connect
.privacy
&& info
->attrs
[NL80211_ATTR_KEYS
]) {
7899 connkeys
= nl80211_parse_connkeys(rdev
,
7900 info
->attrs
[NL80211_ATTR_KEYS
], NULL
);
7901 if (IS_ERR(connkeys
))
7902 return PTR_ERR(connkeys
);
7905 if (nla_get_flag(info
->attrs
[NL80211_ATTR_DISABLE_HT
]))
7906 connect
.flags
|= ASSOC_REQ_DISABLE_HT
;
7908 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
])
7909 memcpy(&connect
.ht_capa_mask
,
7910 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
]),
7911 sizeof(connect
.ht_capa_mask
));
7913 if (info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]) {
7914 if (!info
->attrs
[NL80211_ATTR_HT_CAPABILITY_MASK
]) {
7918 memcpy(&connect
.ht_capa
,
7919 nla_data(info
->attrs
[NL80211_ATTR_HT_CAPABILITY
]),
7920 sizeof(connect
.ht_capa
));
7923 if (nla_get_flag(info
->attrs
[NL80211_ATTR_DISABLE_VHT
]))
7924 connect
.flags
|= ASSOC_REQ_DISABLE_VHT
;
7926 if (info
->attrs
[NL80211_ATTR_VHT_CAPABILITY_MASK
])
7927 memcpy(&connect
.vht_capa_mask
,
7928 nla_data(info
->attrs
[NL80211_ATTR_VHT_CAPABILITY_MASK
]),
7929 sizeof(connect
.vht_capa_mask
));
7931 if (info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
]) {
7932 if (!info
->attrs
[NL80211_ATTR_VHT_CAPABILITY_MASK
]) {
7936 memcpy(&connect
.vht_capa
,
7937 nla_data(info
->attrs
[NL80211_ATTR_VHT_CAPABILITY
]),
7938 sizeof(connect
.vht_capa
));
7941 if (nla_get_flag(info
->attrs
[NL80211_ATTR_USE_RRM
])) {
7942 if (!(rdev
->wiphy
.features
&
7943 NL80211_FEATURE_DS_PARAM_SET_IE_IN_PROBES
) ||
7944 !(rdev
->wiphy
.features
& NL80211_FEATURE_QUIET
)) {
7948 connect
.flags
|= ASSOC_REQ_USE_RRM
;
7951 wdev_lock(dev
->ieee80211_ptr
);
7952 err
= cfg80211_connect(rdev
, dev
, &connect
, connkeys
, NULL
);
7953 wdev_unlock(dev
->ieee80211_ptr
);
7959 static int nl80211_disconnect(struct sk_buff
*skb
, struct genl_info
*info
)
7961 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7962 struct net_device
*dev
= info
->user_ptr
[1];
7966 if (!info
->attrs
[NL80211_ATTR_REASON_CODE
])
7967 reason
= WLAN_REASON_DEAUTH_LEAVING
;
7969 reason
= nla_get_u16(info
->attrs
[NL80211_ATTR_REASON_CODE
]);
7974 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
7975 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
7978 wdev_lock(dev
->ieee80211_ptr
);
7979 ret
= cfg80211_disconnect(rdev
, dev
, reason
, true);
7980 wdev_unlock(dev
->ieee80211_ptr
);
7984 static int nl80211_wiphy_netns(struct sk_buff
*skb
, struct genl_info
*info
)
7986 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
7990 if (info
->attrs
[NL80211_ATTR_PID
]) {
7991 u32 pid
= nla_get_u32(info
->attrs
[NL80211_ATTR_PID
]);
7993 net
= get_net_ns_by_pid(pid
);
7994 } else if (info
->attrs
[NL80211_ATTR_NETNS_FD
]) {
7995 u32 fd
= nla_get_u32(info
->attrs
[NL80211_ATTR_NETNS_FD
]);
7997 net
= get_net_ns_by_fd(fd
);
8003 return PTR_ERR(net
);
8007 /* check if anything to do */
8008 if (!net_eq(wiphy_net(&rdev
->wiphy
), net
))
8009 err
= cfg80211_switch_netns(rdev
, net
);
8015 static int nl80211_setdel_pmksa(struct sk_buff
*skb
, struct genl_info
*info
)
8017 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8018 int (*rdev_ops
)(struct wiphy
*wiphy
, struct net_device
*dev
,
8019 struct cfg80211_pmksa
*pmksa
) = NULL
;
8020 struct net_device
*dev
= info
->user_ptr
[1];
8021 struct cfg80211_pmksa pmksa
;
8023 memset(&pmksa
, 0, sizeof(struct cfg80211_pmksa
));
8025 if (!info
->attrs
[NL80211_ATTR_MAC
])
8028 if (!info
->attrs
[NL80211_ATTR_PMKID
])
8031 pmksa
.pmkid
= nla_data(info
->attrs
[NL80211_ATTR_PMKID
]);
8032 pmksa
.bssid
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
8034 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
8035 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
8038 switch (info
->genlhdr
->cmd
) {
8039 case NL80211_CMD_SET_PMKSA
:
8040 rdev_ops
= rdev
->ops
->set_pmksa
;
8042 case NL80211_CMD_DEL_PMKSA
:
8043 rdev_ops
= rdev
->ops
->del_pmksa
;
8053 return rdev_ops(&rdev
->wiphy
, dev
, &pmksa
);
8056 static int nl80211_flush_pmksa(struct sk_buff
*skb
, struct genl_info
*info
)
8058 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8059 struct net_device
*dev
= info
->user_ptr
[1];
8061 if (dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_STATION
&&
8062 dev
->ieee80211_ptr
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
8065 if (!rdev
->ops
->flush_pmksa
)
8068 return rdev_flush_pmksa(rdev
, dev
);
8071 static int nl80211_tdls_mgmt(struct sk_buff
*skb
, struct genl_info
*info
)
8073 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8074 struct net_device
*dev
= info
->user_ptr
[1];
8075 u8 action_code
, dialog_token
;
8076 u32 peer_capability
= 0;
8081 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_TDLS
) ||
8082 !rdev
->ops
->tdls_mgmt
)
8085 if (!info
->attrs
[NL80211_ATTR_TDLS_ACTION
] ||
8086 !info
->attrs
[NL80211_ATTR_STATUS_CODE
] ||
8087 !info
->attrs
[NL80211_ATTR_TDLS_DIALOG_TOKEN
] ||
8088 !info
->attrs
[NL80211_ATTR_IE
] ||
8089 !info
->attrs
[NL80211_ATTR_MAC
])
8092 peer
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
8093 action_code
= nla_get_u8(info
->attrs
[NL80211_ATTR_TDLS_ACTION
]);
8094 status_code
= nla_get_u16(info
->attrs
[NL80211_ATTR_STATUS_CODE
]);
8095 dialog_token
= nla_get_u8(info
->attrs
[NL80211_ATTR_TDLS_DIALOG_TOKEN
]);
8096 initiator
= nla_get_flag(info
->attrs
[NL80211_ATTR_TDLS_INITIATOR
]);
8097 if (info
->attrs
[NL80211_ATTR_TDLS_PEER_CAPABILITY
])
8099 nla_get_u32(info
->attrs
[NL80211_ATTR_TDLS_PEER_CAPABILITY
]);
8101 return rdev_tdls_mgmt(rdev
, dev
, peer
, action_code
,
8102 dialog_token
, status_code
, peer_capability
,
8104 nla_data(info
->attrs
[NL80211_ATTR_IE
]),
8105 nla_len(info
->attrs
[NL80211_ATTR_IE
]));
8108 static int nl80211_tdls_oper(struct sk_buff
*skb
, struct genl_info
*info
)
8110 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8111 struct net_device
*dev
= info
->user_ptr
[1];
8112 enum nl80211_tdls_operation operation
;
8115 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_TDLS
) ||
8116 !rdev
->ops
->tdls_oper
)
8119 if (!info
->attrs
[NL80211_ATTR_TDLS_OPERATION
] ||
8120 !info
->attrs
[NL80211_ATTR_MAC
])
8123 operation
= nla_get_u8(info
->attrs
[NL80211_ATTR_TDLS_OPERATION
]);
8124 peer
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
8126 return rdev_tdls_oper(rdev
, dev
, peer
, operation
);
8129 static int nl80211_remain_on_channel(struct sk_buff
*skb
,
8130 struct genl_info
*info
)
8132 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8133 struct wireless_dev
*wdev
= info
->user_ptr
[1];
8134 struct cfg80211_chan_def chandef
;
8135 struct sk_buff
*msg
;
8141 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
] ||
8142 !info
->attrs
[NL80211_ATTR_DURATION
])
8145 duration
= nla_get_u32(info
->attrs
[NL80211_ATTR_DURATION
]);
8147 if (!rdev
->ops
->remain_on_channel
||
8148 !(rdev
->wiphy
.flags
& WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
))
8152 * We should be on that channel for at least a minimum amount of
8153 * time (10ms) but no longer than the driver supports.
8155 if (duration
< NL80211_MIN_REMAIN_ON_CHANNEL_TIME
||
8156 duration
> rdev
->wiphy
.max_remain_on_channel_duration
)
8159 err
= nl80211_parse_chandef(rdev
, info
, &chandef
);
8163 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
8167 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
8168 NL80211_CMD_REMAIN_ON_CHANNEL
);
8174 err
= rdev_remain_on_channel(rdev
, wdev
, chandef
.chan
,
8180 if (nla_put_u64(msg
, NL80211_ATTR_COOKIE
, cookie
))
8181 goto nla_put_failure
;
8183 genlmsg_end(msg
, hdr
);
8185 return genlmsg_reply(msg
, info
);
8194 static int nl80211_cancel_remain_on_channel(struct sk_buff
*skb
,
8195 struct genl_info
*info
)
8197 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8198 struct wireless_dev
*wdev
= info
->user_ptr
[1];
8201 if (!info
->attrs
[NL80211_ATTR_COOKIE
])
8204 if (!rdev
->ops
->cancel_remain_on_channel
)
8207 cookie
= nla_get_u64(info
->attrs
[NL80211_ATTR_COOKIE
]);
8209 return rdev_cancel_remain_on_channel(rdev
, wdev
, cookie
);
8212 static u32
rateset_to_mask(struct ieee80211_supported_band
*sband
,
8213 u8
*rates
, u8 rates_len
)
8218 for (i
= 0; i
< rates_len
; i
++) {
8219 int rate
= (rates
[i
] & 0x7f) * 5;
8221 for (ridx
= 0; ridx
< sband
->n_bitrates
; ridx
++) {
8222 struct ieee80211_rate
*srate
=
8223 &sband
->bitrates
[ridx
];
8224 if (rate
== srate
->bitrate
) {
8229 if (ridx
== sband
->n_bitrates
)
8230 return 0; /* rate not found */
8236 static bool ht_rateset_to_mask(struct ieee80211_supported_band
*sband
,
8237 u8
*rates
, u8 rates_len
,
8238 u8 mcs
[IEEE80211_HT_MCS_MASK_LEN
])
8242 memset(mcs
, 0, IEEE80211_HT_MCS_MASK_LEN
);
8244 for (i
= 0; i
< rates_len
; i
++) {
8247 ridx
= rates
[i
] / 8;
8248 rbit
= BIT(rates
[i
] % 8);
8250 /* check validity */
8251 if ((ridx
< 0) || (ridx
>= IEEE80211_HT_MCS_MASK_LEN
))
8254 /* check availability */
8255 if (sband
->ht_cap
.mcs
.rx_mask
[ridx
] & rbit
)
8264 static u16
vht_mcs_map_to_mcs_mask(u8 vht_mcs_map
)
8268 switch (vht_mcs_map
) {
8269 case IEEE80211_VHT_MCS_NOT_SUPPORTED
:
8271 case IEEE80211_VHT_MCS_SUPPORT_0_7
:
8274 case IEEE80211_VHT_MCS_SUPPORT_0_8
:
8277 case IEEE80211_VHT_MCS_SUPPORT_0_9
:
8287 static void vht_build_mcs_mask(u16 vht_mcs_map
,
8288 u16 vht_mcs_mask
[NL80211_VHT_NSS_MAX
])
8292 for (nss
= 0; nss
< NL80211_VHT_NSS_MAX
; nss
++) {
8293 vht_mcs_mask
[nss
] = vht_mcs_map_to_mcs_mask(vht_mcs_map
& 0x03);
8298 static bool vht_set_mcs_mask(struct ieee80211_supported_band
*sband
,
8299 struct nl80211_txrate_vht
*txrate
,
8300 u16 mcs
[NL80211_VHT_NSS_MAX
])
8302 u16 tx_mcs_map
= le16_to_cpu(sband
->vht_cap
.vht_mcs
.tx_mcs_map
);
8303 u16 tx_mcs_mask
[NL80211_VHT_NSS_MAX
] = {};
8306 if (!sband
->vht_cap
.vht_supported
)
8309 memset(mcs
, 0, sizeof(u16
) * NL80211_VHT_NSS_MAX
);
8311 /* Build vht_mcs_mask from VHT capabilities */
8312 vht_build_mcs_mask(tx_mcs_map
, tx_mcs_mask
);
8314 for (i
= 0; i
< NL80211_VHT_NSS_MAX
; i
++) {
8315 if ((tx_mcs_mask
[i
] & txrate
->mcs
[i
]) == txrate
->mcs
[i
])
8316 mcs
[i
] = txrate
->mcs
[i
];
8324 static const struct nla_policy nl80211_txattr_policy
[NL80211_TXRATE_MAX
+ 1] = {
8325 [NL80211_TXRATE_LEGACY
] = { .type
= NLA_BINARY
,
8326 .len
= NL80211_MAX_SUPP_RATES
},
8327 [NL80211_TXRATE_HT
] = { .type
= NLA_BINARY
,
8328 .len
= NL80211_MAX_SUPP_HT_RATES
},
8329 [NL80211_TXRATE_VHT
] = { .len
= sizeof(struct nl80211_txrate_vht
)},
8330 [NL80211_TXRATE_GI
] = { .type
= NLA_U8
},
8333 static int nl80211_set_tx_bitrate_mask(struct sk_buff
*skb
,
8334 struct genl_info
*info
)
8336 struct nlattr
*tb
[NL80211_TXRATE_MAX
+ 1];
8337 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8338 struct cfg80211_bitrate_mask mask
;
8340 struct net_device
*dev
= info
->user_ptr
[1];
8341 struct nlattr
*tx_rates
;
8342 struct ieee80211_supported_band
*sband
;
8345 if (!rdev
->ops
->set_bitrate_mask
)
8348 memset(&mask
, 0, sizeof(mask
));
8349 /* Default to all rates enabled */
8350 for (i
= 0; i
< IEEE80211_NUM_BANDS
; i
++) {
8351 sband
= rdev
->wiphy
.bands
[i
];
8356 mask
.control
[i
].legacy
= (1 << sband
->n_bitrates
) - 1;
8357 memcpy(mask
.control
[i
].ht_mcs
,
8358 sband
->ht_cap
.mcs
.rx_mask
,
8359 sizeof(mask
.control
[i
].ht_mcs
));
8361 if (!sband
->vht_cap
.vht_supported
)
8364 vht_tx_mcs_map
= le16_to_cpu(sband
->vht_cap
.vht_mcs
.tx_mcs_map
);
8365 vht_build_mcs_mask(vht_tx_mcs_map
, mask
.control
[i
].vht_mcs
);
8368 /* if no rates are given set it back to the defaults */
8369 if (!info
->attrs
[NL80211_ATTR_TX_RATES
])
8373 * The nested attribute uses enum nl80211_band as the index. This maps
8374 * directly to the enum ieee80211_band values used in cfg80211.
8376 BUILD_BUG_ON(NL80211_MAX_SUPP_HT_RATES
> IEEE80211_HT_MCS_MASK_LEN
* 8);
8377 nla_for_each_nested(tx_rates
, info
->attrs
[NL80211_ATTR_TX_RATES
], rem
) {
8378 enum ieee80211_band band
= nla_type(tx_rates
);
8381 if (band
< 0 || band
>= IEEE80211_NUM_BANDS
)
8383 sband
= rdev
->wiphy
.bands
[band
];
8386 err
= nla_parse(tb
, NL80211_TXRATE_MAX
, nla_data(tx_rates
),
8387 nla_len(tx_rates
), nl80211_txattr_policy
);
8390 if (tb
[NL80211_TXRATE_LEGACY
]) {
8391 mask
.control
[band
].legacy
= rateset_to_mask(
8393 nla_data(tb
[NL80211_TXRATE_LEGACY
]),
8394 nla_len(tb
[NL80211_TXRATE_LEGACY
]));
8395 if ((mask
.control
[band
].legacy
== 0) &&
8396 nla_len(tb
[NL80211_TXRATE_LEGACY
]))
8399 if (tb
[NL80211_TXRATE_HT
]) {
8400 if (!ht_rateset_to_mask(
8402 nla_data(tb
[NL80211_TXRATE_HT
]),
8403 nla_len(tb
[NL80211_TXRATE_HT
]),
8404 mask
.control
[band
].ht_mcs
))
8407 if (tb
[NL80211_TXRATE_VHT
]) {
8408 if (!vht_set_mcs_mask(
8410 nla_data(tb
[NL80211_TXRATE_VHT
]),
8411 mask
.control
[band
].vht_mcs
))
8414 if (tb
[NL80211_TXRATE_GI
]) {
8415 mask
.control
[band
].gi
=
8416 nla_get_u8(tb
[NL80211_TXRATE_GI
]);
8417 if (mask
.control
[band
].gi
> NL80211_TXRATE_FORCE_LGI
)
8421 if (mask
.control
[band
].legacy
== 0) {
8422 /* don't allow empty legacy rates if HT or VHT
8423 * are not even supported.
8425 if (!(rdev
->wiphy
.bands
[band
]->ht_cap
.ht_supported
||
8426 rdev
->wiphy
.bands
[band
]->vht_cap
.vht_supported
))
8429 for (i
= 0; i
< IEEE80211_HT_MCS_MASK_LEN
; i
++)
8430 if (mask
.control
[band
].ht_mcs
[i
])
8433 for (i
= 0; i
< NL80211_VHT_NSS_MAX
; i
++)
8434 if (mask
.control
[band
].vht_mcs
[i
])
8437 /* legacy and mcs rates may not be both empty */
8443 return rdev_set_bitrate_mask(rdev
, dev
, NULL
, &mask
);
8446 static int nl80211_register_mgmt(struct sk_buff
*skb
, struct genl_info
*info
)
8448 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8449 struct wireless_dev
*wdev
= info
->user_ptr
[1];
8450 u16 frame_type
= IEEE80211_FTYPE_MGMT
| IEEE80211_STYPE_ACTION
;
8452 if (!info
->attrs
[NL80211_ATTR_FRAME_MATCH
])
8455 if (info
->attrs
[NL80211_ATTR_FRAME_TYPE
])
8456 frame_type
= nla_get_u16(info
->attrs
[NL80211_ATTR_FRAME_TYPE
]);
8458 switch (wdev
->iftype
) {
8459 case NL80211_IFTYPE_STATION
:
8460 case NL80211_IFTYPE_ADHOC
:
8461 case NL80211_IFTYPE_P2P_CLIENT
:
8462 case NL80211_IFTYPE_AP
:
8463 case NL80211_IFTYPE_AP_VLAN
:
8464 case NL80211_IFTYPE_MESH_POINT
:
8465 case NL80211_IFTYPE_P2P_GO
:
8466 case NL80211_IFTYPE_P2P_DEVICE
:
8472 /* not much point in registering if we can't reply */
8473 if (!rdev
->ops
->mgmt_tx
)
8476 return cfg80211_mlme_register_mgmt(wdev
, info
->snd_portid
, frame_type
,
8477 nla_data(info
->attrs
[NL80211_ATTR_FRAME_MATCH
]),
8478 nla_len(info
->attrs
[NL80211_ATTR_FRAME_MATCH
]));
8481 static int nl80211_tx_mgmt(struct sk_buff
*skb
, struct genl_info
*info
)
8483 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8484 struct wireless_dev
*wdev
= info
->user_ptr
[1];
8485 struct cfg80211_chan_def chandef
;
8489 struct sk_buff
*msg
= NULL
;
8490 struct cfg80211_mgmt_tx_params params
= {
8491 .dont_wait_for_ack
=
8492 info
->attrs
[NL80211_ATTR_DONT_WAIT_FOR_ACK
],
8495 if (!info
->attrs
[NL80211_ATTR_FRAME
])
8498 if (!rdev
->ops
->mgmt_tx
)
8501 switch (wdev
->iftype
) {
8502 case NL80211_IFTYPE_P2P_DEVICE
:
8503 if (!info
->attrs
[NL80211_ATTR_WIPHY_FREQ
])
8505 case NL80211_IFTYPE_STATION
:
8506 case NL80211_IFTYPE_ADHOC
:
8507 case NL80211_IFTYPE_P2P_CLIENT
:
8508 case NL80211_IFTYPE_AP
:
8509 case NL80211_IFTYPE_AP_VLAN
:
8510 case NL80211_IFTYPE_MESH_POINT
:
8511 case NL80211_IFTYPE_P2P_GO
:
8517 if (info
->attrs
[NL80211_ATTR_DURATION
]) {
8518 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_OFFCHAN_TX
))
8520 params
.wait
= nla_get_u32(info
->attrs
[NL80211_ATTR_DURATION
]);
8523 * We should wait on the channel for at least a minimum amount
8524 * of time (10ms) but no longer than the driver supports.
8526 if (params
.wait
< NL80211_MIN_REMAIN_ON_CHANNEL_TIME
||
8527 params
.wait
> rdev
->wiphy
.max_remain_on_channel_duration
)
8532 params
.offchan
= info
->attrs
[NL80211_ATTR_OFFCHANNEL_TX_OK
];
8534 if (params
.offchan
&& !(rdev
->wiphy
.flags
& WIPHY_FLAG_OFFCHAN_TX
))
8537 params
.no_cck
= nla_get_flag(info
->attrs
[NL80211_ATTR_TX_NO_CCK_RATE
]);
8539 /* get the channel if any has been specified, otherwise pass NULL to
8540 * the driver. The latter will use the current one
8542 chandef
.chan
= NULL
;
8543 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
8544 err
= nl80211_parse_chandef(rdev
, info
, &chandef
);
8549 if (!chandef
.chan
&& params
.offchan
)
8552 params
.buf
= nla_data(info
->attrs
[NL80211_ATTR_FRAME
]);
8553 params
.len
= nla_len(info
->attrs
[NL80211_ATTR_FRAME
]);
8555 if (info
->attrs
[NL80211_ATTR_CSA_C_OFFSETS_TX
]) {
8556 int len
= nla_len(info
->attrs
[NL80211_ATTR_CSA_C_OFFSETS_TX
]);
8559 if (len
% sizeof(u16
))
8562 params
.n_csa_offsets
= len
/ sizeof(u16
);
8563 params
.csa_offsets
=
8564 nla_data(info
->attrs
[NL80211_ATTR_CSA_C_OFFSETS_TX
]);
8566 /* check that all the offsets fit the frame */
8567 for (i
= 0; i
< params
.n_csa_offsets
; i
++) {
8568 if (params
.csa_offsets
[i
] >= params
.len
)
8573 if (!params
.dont_wait_for_ack
) {
8574 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
8578 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
8586 params
.chan
= chandef
.chan
;
8587 err
= cfg80211_mlme_mgmt_tx(rdev
, wdev
, ¶ms
, &cookie
);
8592 if (nla_put_u64(msg
, NL80211_ATTR_COOKIE
, cookie
))
8593 goto nla_put_failure
;
8595 genlmsg_end(msg
, hdr
);
8596 return genlmsg_reply(msg
, info
);
8608 static int nl80211_tx_mgmt_cancel_wait(struct sk_buff
*skb
, struct genl_info
*info
)
8610 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8611 struct wireless_dev
*wdev
= info
->user_ptr
[1];
8614 if (!info
->attrs
[NL80211_ATTR_COOKIE
])
8617 if (!rdev
->ops
->mgmt_tx_cancel_wait
)
8620 switch (wdev
->iftype
) {
8621 case NL80211_IFTYPE_STATION
:
8622 case NL80211_IFTYPE_ADHOC
:
8623 case NL80211_IFTYPE_P2P_CLIENT
:
8624 case NL80211_IFTYPE_AP
:
8625 case NL80211_IFTYPE_AP_VLAN
:
8626 case NL80211_IFTYPE_P2P_GO
:
8627 case NL80211_IFTYPE_P2P_DEVICE
:
8633 cookie
= nla_get_u64(info
->attrs
[NL80211_ATTR_COOKIE
]);
8635 return rdev_mgmt_tx_cancel_wait(rdev
, wdev
, cookie
);
8638 static int nl80211_set_power_save(struct sk_buff
*skb
, struct genl_info
*info
)
8640 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8641 struct wireless_dev
*wdev
;
8642 struct net_device
*dev
= info
->user_ptr
[1];
8647 if (!info
->attrs
[NL80211_ATTR_PS_STATE
])
8650 ps_state
= nla_get_u32(info
->attrs
[NL80211_ATTR_PS_STATE
]);
8652 if (ps_state
!= NL80211_PS_DISABLED
&& ps_state
!= NL80211_PS_ENABLED
)
8655 wdev
= dev
->ieee80211_ptr
;
8657 if (!rdev
->ops
->set_power_mgmt
)
8660 state
= (ps_state
== NL80211_PS_ENABLED
) ? true : false;
8662 if (state
== wdev
->ps
)
8665 err
= rdev_set_power_mgmt(rdev
, dev
, state
, wdev
->ps_timeout
);
8671 static int nl80211_get_power_save(struct sk_buff
*skb
, struct genl_info
*info
)
8673 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8674 enum nl80211_ps_state ps_state
;
8675 struct wireless_dev
*wdev
;
8676 struct net_device
*dev
= info
->user_ptr
[1];
8677 struct sk_buff
*msg
;
8681 wdev
= dev
->ieee80211_ptr
;
8683 if (!rdev
->ops
->set_power_mgmt
)
8686 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
8690 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
8691 NL80211_CMD_GET_POWER_SAVE
);
8698 ps_state
= NL80211_PS_ENABLED
;
8700 ps_state
= NL80211_PS_DISABLED
;
8702 if (nla_put_u32(msg
, NL80211_ATTR_PS_STATE
, ps_state
))
8703 goto nla_put_failure
;
8705 genlmsg_end(msg
, hdr
);
8706 return genlmsg_reply(msg
, info
);
8715 static const struct nla_policy
8716 nl80211_attr_cqm_policy
[NL80211_ATTR_CQM_MAX
+ 1] = {
8717 [NL80211_ATTR_CQM_RSSI_THOLD
] = { .type
= NLA_U32
},
8718 [NL80211_ATTR_CQM_RSSI_HYST
] = { .type
= NLA_U32
},
8719 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT
] = { .type
= NLA_U32
},
8720 [NL80211_ATTR_CQM_TXE_RATE
] = { .type
= NLA_U32
},
8721 [NL80211_ATTR_CQM_TXE_PKTS
] = { .type
= NLA_U32
},
8722 [NL80211_ATTR_CQM_TXE_INTVL
] = { .type
= NLA_U32
},
8725 static int nl80211_set_cqm_txe(struct genl_info
*info
,
8726 u32 rate
, u32 pkts
, u32 intvl
)
8728 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8729 struct net_device
*dev
= info
->user_ptr
[1];
8730 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
8732 if (rate
> 100 || intvl
> NL80211_CQM_TXE_MAX_INTVL
)
8735 if (!rdev
->ops
->set_cqm_txe_config
)
8738 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
8739 wdev
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
8742 return rdev_set_cqm_txe_config(rdev
, dev
, rate
, pkts
, intvl
);
8745 static int nl80211_set_cqm_rssi(struct genl_info
*info
,
8746 s32 threshold
, u32 hysteresis
)
8748 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8749 struct net_device
*dev
= info
->user_ptr
[1];
8750 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
8755 /* disabling - hysteresis should also be zero then */
8759 if (!rdev
->ops
->set_cqm_rssi_config
)
8762 if (wdev
->iftype
!= NL80211_IFTYPE_STATION
&&
8763 wdev
->iftype
!= NL80211_IFTYPE_P2P_CLIENT
)
8766 return rdev_set_cqm_rssi_config(rdev
, dev
, threshold
, hysteresis
);
8769 static int nl80211_set_cqm(struct sk_buff
*skb
, struct genl_info
*info
)
8771 struct nlattr
*attrs
[NL80211_ATTR_CQM_MAX
+ 1];
8775 cqm
= info
->attrs
[NL80211_ATTR_CQM
];
8779 err
= nla_parse_nested(attrs
, NL80211_ATTR_CQM_MAX
, cqm
,
8780 nl80211_attr_cqm_policy
);
8784 if (attrs
[NL80211_ATTR_CQM_RSSI_THOLD
] &&
8785 attrs
[NL80211_ATTR_CQM_RSSI_HYST
]) {
8786 s32 threshold
= nla_get_s32(attrs
[NL80211_ATTR_CQM_RSSI_THOLD
]);
8787 u32 hysteresis
= nla_get_u32(attrs
[NL80211_ATTR_CQM_RSSI_HYST
]);
8789 return nl80211_set_cqm_rssi(info
, threshold
, hysteresis
);
8792 if (attrs
[NL80211_ATTR_CQM_TXE_RATE
] &&
8793 attrs
[NL80211_ATTR_CQM_TXE_PKTS
] &&
8794 attrs
[NL80211_ATTR_CQM_TXE_INTVL
]) {
8795 u32 rate
= nla_get_u32(attrs
[NL80211_ATTR_CQM_TXE_RATE
]);
8796 u32 pkts
= nla_get_u32(attrs
[NL80211_ATTR_CQM_TXE_PKTS
]);
8797 u32 intvl
= nla_get_u32(attrs
[NL80211_ATTR_CQM_TXE_INTVL
]);
8799 return nl80211_set_cqm_txe(info
, rate
, pkts
, intvl
);
8805 static int nl80211_join_ocb(struct sk_buff
*skb
, struct genl_info
*info
)
8807 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8808 struct net_device
*dev
= info
->user_ptr
[1];
8809 struct ocb_setup setup
= {};
8812 err
= nl80211_parse_chandef(rdev
, info
, &setup
.chandef
);
8816 return cfg80211_join_ocb(rdev
, dev
, &setup
);
8819 static int nl80211_leave_ocb(struct sk_buff
*skb
, struct genl_info
*info
)
8821 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8822 struct net_device
*dev
= info
->user_ptr
[1];
8824 return cfg80211_leave_ocb(rdev
, dev
);
8827 static int nl80211_join_mesh(struct sk_buff
*skb
, struct genl_info
*info
)
8829 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8830 struct net_device
*dev
= info
->user_ptr
[1];
8831 struct mesh_config cfg
;
8832 struct mesh_setup setup
;
8835 /* start with default */
8836 memcpy(&cfg
, &default_mesh_config
, sizeof(cfg
));
8837 memcpy(&setup
, &default_mesh_setup
, sizeof(setup
));
8839 if (info
->attrs
[NL80211_ATTR_MESH_CONFIG
]) {
8840 /* and parse parameters if given */
8841 err
= nl80211_parse_mesh_config(info
, &cfg
, NULL
);
8846 if (!info
->attrs
[NL80211_ATTR_MESH_ID
] ||
8847 !nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]))
8850 setup
.mesh_id
= nla_data(info
->attrs
[NL80211_ATTR_MESH_ID
]);
8851 setup
.mesh_id_len
= nla_len(info
->attrs
[NL80211_ATTR_MESH_ID
]);
8853 if (info
->attrs
[NL80211_ATTR_MCAST_RATE
] &&
8854 !nl80211_parse_mcast_rate(rdev
, setup
.mcast_rate
,
8855 nla_get_u32(info
->attrs
[NL80211_ATTR_MCAST_RATE
])))
8858 if (info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]) {
8859 setup
.beacon_interval
=
8860 nla_get_u32(info
->attrs
[NL80211_ATTR_BEACON_INTERVAL
]);
8861 if (setup
.beacon_interval
< 10 ||
8862 setup
.beacon_interval
> 10000)
8866 if (info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]) {
8868 nla_get_u32(info
->attrs
[NL80211_ATTR_DTIM_PERIOD
]);
8869 if (setup
.dtim_period
< 1 || setup
.dtim_period
> 100)
8873 if (info
->attrs
[NL80211_ATTR_MESH_SETUP
]) {
8874 /* parse additional setup parameters if given */
8875 err
= nl80211_parse_mesh_setup(info
, &setup
);
8881 cfg
.auto_open_plinks
= false;
8883 if (info
->attrs
[NL80211_ATTR_WIPHY_FREQ
]) {
8884 err
= nl80211_parse_chandef(rdev
, info
, &setup
.chandef
);
8888 /* cfg80211_join_mesh() will sort it out */
8889 setup
.chandef
.chan
= NULL
;
8892 if (info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]) {
8893 u8
*rates
= nla_data(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
8895 nla_len(info
->attrs
[NL80211_ATTR_BSS_BASIC_RATES
]);
8896 struct ieee80211_supported_band
*sband
;
8898 if (!setup
.chandef
.chan
)
8901 sband
= rdev
->wiphy
.bands
[setup
.chandef
.chan
->band
];
8903 err
= ieee80211_get_ratemask(sband
, rates
, n_rates
,
8904 &setup
.basic_rates
);
8909 return cfg80211_join_mesh(rdev
, dev
, &setup
, &cfg
);
8912 static int nl80211_leave_mesh(struct sk_buff
*skb
, struct genl_info
*info
)
8914 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
8915 struct net_device
*dev
= info
->user_ptr
[1];
8917 return cfg80211_leave_mesh(rdev
, dev
);
8921 static int nl80211_send_wowlan_patterns(struct sk_buff
*msg
,
8922 struct cfg80211_registered_device
*rdev
)
8924 struct cfg80211_wowlan
*wowlan
= rdev
->wiphy
.wowlan_config
;
8925 struct nlattr
*nl_pats
, *nl_pat
;
8928 if (!wowlan
->n_patterns
)
8931 nl_pats
= nla_nest_start(msg
, NL80211_WOWLAN_TRIG_PKT_PATTERN
);
8935 for (i
= 0; i
< wowlan
->n_patterns
; i
++) {
8936 nl_pat
= nla_nest_start(msg
, i
+ 1);
8939 pat_len
= wowlan
->patterns
[i
].pattern_len
;
8940 if (nla_put(msg
, NL80211_PKTPAT_MASK
, DIV_ROUND_UP(pat_len
, 8),
8941 wowlan
->patterns
[i
].mask
) ||
8942 nla_put(msg
, NL80211_PKTPAT_PATTERN
, pat_len
,
8943 wowlan
->patterns
[i
].pattern
) ||
8944 nla_put_u32(msg
, NL80211_PKTPAT_OFFSET
,
8945 wowlan
->patterns
[i
].pkt_offset
))
8947 nla_nest_end(msg
, nl_pat
);
8949 nla_nest_end(msg
, nl_pats
);
8954 static int nl80211_send_wowlan_tcp(struct sk_buff
*msg
,
8955 struct cfg80211_wowlan_tcp
*tcp
)
8957 struct nlattr
*nl_tcp
;
8962 nl_tcp
= nla_nest_start(msg
, NL80211_WOWLAN_TRIG_TCP_CONNECTION
);
8966 if (nla_put_in_addr(msg
, NL80211_WOWLAN_TCP_SRC_IPV4
, tcp
->src
) ||
8967 nla_put_in_addr(msg
, NL80211_WOWLAN_TCP_DST_IPV4
, tcp
->dst
) ||
8968 nla_put(msg
, NL80211_WOWLAN_TCP_DST_MAC
, ETH_ALEN
, tcp
->dst_mac
) ||
8969 nla_put_u16(msg
, NL80211_WOWLAN_TCP_SRC_PORT
, tcp
->src_port
) ||
8970 nla_put_u16(msg
, NL80211_WOWLAN_TCP_DST_PORT
, tcp
->dst_port
) ||
8971 nla_put(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD
,
8972 tcp
->payload_len
, tcp
->payload
) ||
8973 nla_put_u32(msg
, NL80211_WOWLAN_TCP_DATA_INTERVAL
,
8974 tcp
->data_interval
) ||
8975 nla_put(msg
, NL80211_WOWLAN_TCP_WAKE_PAYLOAD
,
8976 tcp
->wake_len
, tcp
->wake_data
) ||
8977 nla_put(msg
, NL80211_WOWLAN_TCP_WAKE_MASK
,
8978 DIV_ROUND_UP(tcp
->wake_len
, 8), tcp
->wake_mask
))
8981 if (tcp
->payload_seq
.len
&&
8982 nla_put(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ
,
8983 sizeof(tcp
->payload_seq
), &tcp
->payload_seq
))
8986 if (tcp
->payload_tok
.len
&&
8987 nla_put(msg
, NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN
,
8988 sizeof(tcp
->payload_tok
) + tcp
->tokens_size
,
8992 nla_nest_end(msg
, nl_tcp
);
8997 static int nl80211_send_wowlan_nd(struct sk_buff
*msg
,
8998 struct cfg80211_sched_scan_request
*req
)
9000 struct nlattr
*nd
, *freqs
, *matches
, *match
, *scan_plans
, *scan_plan
;
9006 nd
= nla_nest_start(msg
, NL80211_WOWLAN_TRIG_NET_DETECT
);
9010 if (req
->n_scan_plans
== 1 &&
9011 nla_put_u32(msg
, NL80211_ATTR_SCHED_SCAN_INTERVAL
,
9012 req
->scan_plans
[0].interval
* 1000))
9015 if (nla_put_u32(msg
, NL80211_ATTR_SCHED_SCAN_DELAY
, req
->delay
))
9018 freqs
= nla_nest_start(msg
, NL80211_ATTR_SCAN_FREQUENCIES
);
9022 for (i
= 0; i
< req
->n_channels
; i
++)
9023 nla_put_u32(msg
, i
, req
->channels
[i
]->center_freq
);
9025 nla_nest_end(msg
, freqs
);
9027 if (req
->n_match_sets
) {
9028 matches
= nla_nest_start(msg
, NL80211_ATTR_SCHED_SCAN_MATCH
);
9029 for (i
= 0; i
< req
->n_match_sets
; i
++) {
9030 match
= nla_nest_start(msg
, i
);
9031 nla_put(msg
, NL80211_SCHED_SCAN_MATCH_ATTR_SSID
,
9032 req
->match_sets
[i
].ssid
.ssid_len
,
9033 req
->match_sets
[i
].ssid
.ssid
);
9034 nla_nest_end(msg
, match
);
9036 nla_nest_end(msg
, matches
);
9039 scan_plans
= nla_nest_start(msg
, NL80211_ATTR_SCHED_SCAN_PLANS
);
9043 for (i
= 0; i
< req
->n_scan_plans
; i
++) {
9044 scan_plan
= nla_nest_start(msg
, i
+ 1);
9046 nla_put_u32(msg
, NL80211_SCHED_SCAN_PLAN_INTERVAL
,
9047 req
->scan_plans
[i
].interval
) ||
9048 (req
->scan_plans
[i
].iterations
&&
9049 nla_put_u32(msg
, NL80211_SCHED_SCAN_PLAN_ITERATIONS
,
9050 req
->scan_plans
[i
].iterations
)))
9052 nla_nest_end(msg
, scan_plan
);
9054 nla_nest_end(msg
, scan_plans
);
9056 nla_nest_end(msg
, nd
);
9061 static int nl80211_get_wowlan(struct sk_buff
*skb
, struct genl_info
*info
)
9063 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9064 struct sk_buff
*msg
;
9066 u32 size
= NLMSG_DEFAULT_SIZE
;
9068 if (!rdev
->wiphy
.wowlan
)
9071 if (rdev
->wiphy
.wowlan_config
&& rdev
->wiphy
.wowlan_config
->tcp
) {
9072 /* adjust size to have room for all the data */
9073 size
+= rdev
->wiphy
.wowlan_config
->tcp
->tokens_size
+
9074 rdev
->wiphy
.wowlan_config
->tcp
->payload_len
+
9075 rdev
->wiphy
.wowlan_config
->tcp
->wake_len
+
9076 rdev
->wiphy
.wowlan_config
->tcp
->wake_len
/ 8;
9079 msg
= nlmsg_new(size
, GFP_KERNEL
);
9083 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
9084 NL80211_CMD_GET_WOWLAN
);
9086 goto nla_put_failure
;
9088 if (rdev
->wiphy
.wowlan_config
) {
9089 struct nlattr
*nl_wowlan
;
9091 nl_wowlan
= nla_nest_start(msg
, NL80211_ATTR_WOWLAN_TRIGGERS
);
9093 goto nla_put_failure
;
9095 if ((rdev
->wiphy
.wowlan_config
->any
&&
9096 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_ANY
)) ||
9097 (rdev
->wiphy
.wowlan_config
->disconnect
&&
9098 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_DISCONNECT
)) ||
9099 (rdev
->wiphy
.wowlan_config
->magic_pkt
&&
9100 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_MAGIC_PKT
)) ||
9101 (rdev
->wiphy
.wowlan_config
->gtk_rekey_failure
&&
9102 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE
)) ||
9103 (rdev
->wiphy
.wowlan_config
->eap_identity_req
&&
9104 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST
)) ||
9105 (rdev
->wiphy
.wowlan_config
->four_way_handshake
&&
9106 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE
)) ||
9107 (rdev
->wiphy
.wowlan_config
->rfkill_release
&&
9108 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_RFKILL_RELEASE
)))
9109 goto nla_put_failure
;
9111 if (nl80211_send_wowlan_patterns(msg
, rdev
))
9112 goto nla_put_failure
;
9114 if (nl80211_send_wowlan_tcp(msg
,
9115 rdev
->wiphy
.wowlan_config
->tcp
))
9116 goto nla_put_failure
;
9118 if (nl80211_send_wowlan_nd(
9120 rdev
->wiphy
.wowlan_config
->nd_config
))
9121 goto nla_put_failure
;
9123 nla_nest_end(msg
, nl_wowlan
);
9126 genlmsg_end(msg
, hdr
);
9127 return genlmsg_reply(msg
, info
);
9134 static int nl80211_parse_wowlan_tcp(struct cfg80211_registered_device
*rdev
,
9135 struct nlattr
*attr
,
9136 struct cfg80211_wowlan
*trig
)
9138 struct nlattr
*tb
[NUM_NL80211_WOWLAN_TCP
];
9139 struct cfg80211_wowlan_tcp
*cfg
;
9140 struct nl80211_wowlan_tcp_data_token
*tok
= NULL
;
9141 struct nl80211_wowlan_tcp_data_seq
*seq
= NULL
;
9143 u32 data_size
, wake_size
, tokens_size
= 0, wake_mask_size
;
9146 if (!rdev
->wiphy
.wowlan
->tcp
)
9149 err
= nla_parse(tb
, MAX_NL80211_WOWLAN_TCP
,
9150 nla_data(attr
), nla_len(attr
),
9151 nl80211_wowlan_tcp_policy
);
9155 if (!tb
[NL80211_WOWLAN_TCP_SRC_IPV4
] ||
9156 !tb
[NL80211_WOWLAN_TCP_DST_IPV4
] ||
9157 !tb
[NL80211_WOWLAN_TCP_DST_MAC
] ||
9158 !tb
[NL80211_WOWLAN_TCP_DST_PORT
] ||
9159 !tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD
] ||
9160 !tb
[NL80211_WOWLAN_TCP_DATA_INTERVAL
] ||
9161 !tb
[NL80211_WOWLAN_TCP_WAKE_PAYLOAD
] ||
9162 !tb
[NL80211_WOWLAN_TCP_WAKE_MASK
])
9165 data_size
= nla_len(tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD
]);
9166 if (data_size
> rdev
->wiphy
.wowlan
->tcp
->data_payload_max
)
9169 if (nla_get_u32(tb
[NL80211_WOWLAN_TCP_DATA_INTERVAL
]) >
9170 rdev
->wiphy
.wowlan
->tcp
->data_interval_max
||
9171 nla_get_u32(tb
[NL80211_WOWLAN_TCP_DATA_INTERVAL
]) == 0)
9174 wake_size
= nla_len(tb
[NL80211_WOWLAN_TCP_WAKE_PAYLOAD
]);
9175 if (wake_size
> rdev
->wiphy
.wowlan
->tcp
->wake_payload_max
)
9178 wake_mask_size
= nla_len(tb
[NL80211_WOWLAN_TCP_WAKE_MASK
]);
9179 if (wake_mask_size
!= DIV_ROUND_UP(wake_size
, 8))
9182 if (tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN
]) {
9183 u32 tokln
= nla_len(tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN
]);
9185 tok
= nla_data(tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD_TOKEN
]);
9186 tokens_size
= tokln
- sizeof(*tok
);
9188 if (!tok
->len
|| tokens_size
% tok
->len
)
9190 if (!rdev
->wiphy
.wowlan
->tcp
->tok
)
9192 if (tok
->len
> rdev
->wiphy
.wowlan
->tcp
->tok
->max_len
)
9194 if (tok
->len
< rdev
->wiphy
.wowlan
->tcp
->tok
->min_len
)
9196 if (tokens_size
> rdev
->wiphy
.wowlan
->tcp
->tok
->bufsize
)
9198 if (tok
->offset
+ tok
->len
> data_size
)
9202 if (tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ
]) {
9203 seq
= nla_data(tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD_SEQ
]);
9204 if (!rdev
->wiphy
.wowlan
->tcp
->seq
)
9206 if (seq
->len
== 0 || seq
->len
> 4)
9208 if (seq
->len
+ seq
->offset
> data_size
)
9212 size
= sizeof(*cfg
);
9214 size
+= wake_size
+ wake_mask_size
;
9215 size
+= tokens_size
;
9217 cfg
= kzalloc(size
, GFP_KERNEL
);
9220 cfg
->src
= nla_get_in_addr(tb
[NL80211_WOWLAN_TCP_SRC_IPV4
]);
9221 cfg
->dst
= nla_get_in_addr(tb
[NL80211_WOWLAN_TCP_DST_IPV4
]);
9222 memcpy(cfg
->dst_mac
, nla_data(tb
[NL80211_WOWLAN_TCP_DST_MAC
]),
9224 if (tb
[NL80211_WOWLAN_TCP_SRC_PORT
])
9225 port
= nla_get_u16(tb
[NL80211_WOWLAN_TCP_SRC_PORT
]);
9229 /* allocate a socket and port for it and use it */
9230 err
= __sock_create(wiphy_net(&rdev
->wiphy
), PF_INET
, SOCK_STREAM
,
9231 IPPROTO_TCP
, &cfg
->sock
, 1);
9236 if (inet_csk_get_port(cfg
->sock
->sk
, port
)) {
9237 sock_release(cfg
->sock
);
9241 cfg
->src_port
= inet_sk(cfg
->sock
->sk
)->inet_num
;
9247 cfg
->src_port
= port
;
9250 cfg
->dst_port
= nla_get_u16(tb
[NL80211_WOWLAN_TCP_DST_PORT
]);
9251 cfg
->payload_len
= data_size
;
9252 cfg
->payload
= (u8
*)cfg
+ sizeof(*cfg
) + tokens_size
;
9253 memcpy((void *)cfg
->payload
,
9254 nla_data(tb
[NL80211_WOWLAN_TCP_DATA_PAYLOAD
]),
9257 cfg
->payload_seq
= *seq
;
9258 cfg
->data_interval
= nla_get_u32(tb
[NL80211_WOWLAN_TCP_DATA_INTERVAL
]);
9259 cfg
->wake_len
= wake_size
;
9260 cfg
->wake_data
= (u8
*)cfg
+ sizeof(*cfg
) + tokens_size
+ data_size
;
9261 memcpy((void *)cfg
->wake_data
,
9262 nla_data(tb
[NL80211_WOWLAN_TCP_WAKE_PAYLOAD
]),
9264 cfg
->wake_mask
= (u8
*)cfg
+ sizeof(*cfg
) + tokens_size
+
9265 data_size
+ wake_size
;
9266 memcpy((void *)cfg
->wake_mask
,
9267 nla_data(tb
[NL80211_WOWLAN_TCP_WAKE_MASK
]),
9270 cfg
->tokens_size
= tokens_size
;
9271 memcpy(&cfg
->payload_tok
, tok
, sizeof(*tok
) + tokens_size
);
9279 static int nl80211_parse_wowlan_nd(struct cfg80211_registered_device
*rdev
,
9280 const struct wiphy_wowlan_support
*wowlan
,
9281 struct nlattr
*attr
,
9282 struct cfg80211_wowlan
*trig
)
9287 tb
= kzalloc(NUM_NL80211_ATTR
* sizeof(*tb
), GFP_KERNEL
);
9291 if (!(wowlan
->flags
& WIPHY_WOWLAN_NET_DETECT
)) {
9296 err
= nla_parse(tb
, NL80211_ATTR_MAX
,
9297 nla_data(attr
), nla_len(attr
),
9302 trig
->nd_config
= nl80211_parse_sched_scan(&rdev
->wiphy
, NULL
, tb
);
9303 err
= PTR_ERR_OR_ZERO(trig
->nd_config
);
9305 trig
->nd_config
= NULL
;
9312 static int nl80211_set_wowlan(struct sk_buff
*skb
, struct genl_info
*info
)
9314 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9315 struct nlattr
*tb
[NUM_NL80211_WOWLAN_TRIG
];
9316 struct cfg80211_wowlan new_triggers
= {};
9317 struct cfg80211_wowlan
*ntrig
;
9318 const struct wiphy_wowlan_support
*wowlan
= rdev
->wiphy
.wowlan
;
9320 bool prev_enabled
= rdev
->wiphy
.wowlan_config
;
9321 bool regular
= false;
9326 if (!info
->attrs
[NL80211_ATTR_WOWLAN_TRIGGERS
]) {
9327 cfg80211_rdev_free_wowlan(rdev
);
9328 rdev
->wiphy
.wowlan_config
= NULL
;
9332 err
= nla_parse(tb
, MAX_NL80211_WOWLAN_TRIG
,
9333 nla_data(info
->attrs
[NL80211_ATTR_WOWLAN_TRIGGERS
]),
9334 nla_len(info
->attrs
[NL80211_ATTR_WOWLAN_TRIGGERS
]),
9335 nl80211_wowlan_policy
);
9339 if (tb
[NL80211_WOWLAN_TRIG_ANY
]) {
9340 if (!(wowlan
->flags
& WIPHY_WOWLAN_ANY
))
9342 new_triggers
.any
= true;
9345 if (tb
[NL80211_WOWLAN_TRIG_DISCONNECT
]) {
9346 if (!(wowlan
->flags
& WIPHY_WOWLAN_DISCONNECT
))
9348 new_triggers
.disconnect
= true;
9352 if (tb
[NL80211_WOWLAN_TRIG_MAGIC_PKT
]) {
9353 if (!(wowlan
->flags
& WIPHY_WOWLAN_MAGIC_PKT
))
9355 new_triggers
.magic_pkt
= true;
9359 if (tb
[NL80211_WOWLAN_TRIG_GTK_REKEY_SUPPORTED
])
9362 if (tb
[NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE
]) {
9363 if (!(wowlan
->flags
& WIPHY_WOWLAN_GTK_REKEY_FAILURE
))
9365 new_triggers
.gtk_rekey_failure
= true;
9369 if (tb
[NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST
]) {
9370 if (!(wowlan
->flags
& WIPHY_WOWLAN_EAP_IDENTITY_REQ
))
9372 new_triggers
.eap_identity_req
= true;
9376 if (tb
[NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE
]) {
9377 if (!(wowlan
->flags
& WIPHY_WOWLAN_4WAY_HANDSHAKE
))
9379 new_triggers
.four_way_handshake
= true;
9383 if (tb
[NL80211_WOWLAN_TRIG_RFKILL_RELEASE
]) {
9384 if (!(wowlan
->flags
& WIPHY_WOWLAN_RFKILL_RELEASE
))
9386 new_triggers
.rfkill_release
= true;
9390 if (tb
[NL80211_WOWLAN_TRIG_PKT_PATTERN
]) {
9393 int rem
, pat_len
, mask_len
, pkt_offset
;
9394 struct nlattr
*pat_tb
[NUM_NL80211_PKTPAT
];
9398 nla_for_each_nested(pat
, tb
[NL80211_WOWLAN_TRIG_PKT_PATTERN
],
9401 if (n_patterns
> wowlan
->n_patterns
)
9404 new_triggers
.patterns
= kcalloc(n_patterns
,
9405 sizeof(new_triggers
.patterns
[0]),
9407 if (!new_triggers
.patterns
)
9410 new_triggers
.n_patterns
= n_patterns
;
9413 nla_for_each_nested(pat
, tb
[NL80211_WOWLAN_TRIG_PKT_PATTERN
],
9417 nla_parse(pat_tb
, MAX_NL80211_PKTPAT
, nla_data(pat
),
9418 nla_len(pat
), NULL
);
9420 if (!pat_tb
[NL80211_PKTPAT_MASK
] ||
9421 !pat_tb
[NL80211_PKTPAT_PATTERN
])
9423 pat_len
= nla_len(pat_tb
[NL80211_PKTPAT_PATTERN
]);
9424 mask_len
= DIV_ROUND_UP(pat_len
, 8);
9425 if (nla_len(pat_tb
[NL80211_PKTPAT_MASK
]) != mask_len
)
9427 if (pat_len
> wowlan
->pattern_max_len
||
9428 pat_len
< wowlan
->pattern_min_len
)
9431 if (!pat_tb
[NL80211_PKTPAT_OFFSET
])
9434 pkt_offset
= nla_get_u32(
9435 pat_tb
[NL80211_PKTPAT_OFFSET
]);
9436 if (pkt_offset
> wowlan
->max_pkt_offset
)
9438 new_triggers
.patterns
[i
].pkt_offset
= pkt_offset
;
9440 mask_pat
= kmalloc(mask_len
+ pat_len
, GFP_KERNEL
);
9445 new_triggers
.patterns
[i
].mask
= mask_pat
;
9446 memcpy(mask_pat
, nla_data(pat_tb
[NL80211_PKTPAT_MASK
]),
9448 mask_pat
+= mask_len
;
9449 new_triggers
.patterns
[i
].pattern
= mask_pat
;
9450 new_triggers
.patterns
[i
].pattern_len
= pat_len
;
9452 nla_data(pat_tb
[NL80211_PKTPAT_PATTERN
]),
9458 if (tb
[NL80211_WOWLAN_TRIG_TCP_CONNECTION
]) {
9460 err
= nl80211_parse_wowlan_tcp(
9461 rdev
, tb
[NL80211_WOWLAN_TRIG_TCP_CONNECTION
],
9467 if (tb
[NL80211_WOWLAN_TRIG_NET_DETECT
]) {
9469 err
= nl80211_parse_wowlan_nd(
9470 rdev
, wowlan
, tb
[NL80211_WOWLAN_TRIG_NET_DETECT
],
9476 /* The 'any' trigger means the device continues operating more or less
9477 * as in its normal operation mode and wakes up the host on most of the
9478 * normal interrupts (like packet RX, ...)
9479 * It therefore makes little sense to combine with the more constrained
9480 * wakeup trigger modes.
9482 if (new_triggers
.any
&& regular
) {
9487 ntrig
= kmemdup(&new_triggers
, sizeof(new_triggers
), GFP_KERNEL
);
9492 cfg80211_rdev_free_wowlan(rdev
);
9493 rdev
->wiphy
.wowlan_config
= ntrig
;
9496 if (rdev
->ops
->set_wakeup
&&
9497 prev_enabled
!= !!rdev
->wiphy
.wowlan_config
)
9498 rdev_set_wakeup(rdev
, rdev
->wiphy
.wowlan_config
);
9502 for (i
= 0; i
< new_triggers
.n_patterns
; i
++)
9503 kfree(new_triggers
.patterns
[i
].mask
);
9504 kfree(new_triggers
.patterns
);
9505 if (new_triggers
.tcp
&& new_triggers
.tcp
->sock
)
9506 sock_release(new_triggers
.tcp
->sock
);
9507 kfree(new_triggers
.tcp
);
9508 kfree(new_triggers
.nd_config
);
9513 static int nl80211_send_coalesce_rules(struct sk_buff
*msg
,
9514 struct cfg80211_registered_device
*rdev
)
9516 struct nlattr
*nl_pats
, *nl_pat
, *nl_rule
, *nl_rules
;
9518 struct cfg80211_coalesce_rules
*rule
;
9520 if (!rdev
->coalesce
->n_rules
)
9523 nl_rules
= nla_nest_start(msg
, NL80211_ATTR_COALESCE_RULE
);
9527 for (i
= 0; i
< rdev
->coalesce
->n_rules
; i
++) {
9528 nl_rule
= nla_nest_start(msg
, i
+ 1);
9532 rule
= &rdev
->coalesce
->rules
[i
];
9533 if (nla_put_u32(msg
, NL80211_ATTR_COALESCE_RULE_DELAY
,
9537 if (nla_put_u32(msg
, NL80211_ATTR_COALESCE_RULE_CONDITION
,
9541 nl_pats
= nla_nest_start(msg
,
9542 NL80211_ATTR_COALESCE_RULE_PKT_PATTERN
);
9546 for (j
= 0; j
< rule
->n_patterns
; j
++) {
9547 nl_pat
= nla_nest_start(msg
, j
+ 1);
9550 pat_len
= rule
->patterns
[j
].pattern_len
;
9551 if (nla_put(msg
, NL80211_PKTPAT_MASK
,
9552 DIV_ROUND_UP(pat_len
, 8),
9553 rule
->patterns
[j
].mask
) ||
9554 nla_put(msg
, NL80211_PKTPAT_PATTERN
, pat_len
,
9555 rule
->patterns
[j
].pattern
) ||
9556 nla_put_u32(msg
, NL80211_PKTPAT_OFFSET
,
9557 rule
->patterns
[j
].pkt_offset
))
9559 nla_nest_end(msg
, nl_pat
);
9561 nla_nest_end(msg
, nl_pats
);
9562 nla_nest_end(msg
, nl_rule
);
9564 nla_nest_end(msg
, nl_rules
);
9569 static int nl80211_get_coalesce(struct sk_buff
*skb
, struct genl_info
*info
)
9571 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9572 struct sk_buff
*msg
;
9575 if (!rdev
->wiphy
.coalesce
)
9578 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
9582 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
9583 NL80211_CMD_GET_COALESCE
);
9585 goto nla_put_failure
;
9587 if (rdev
->coalesce
&& nl80211_send_coalesce_rules(msg
, rdev
))
9588 goto nla_put_failure
;
9590 genlmsg_end(msg
, hdr
);
9591 return genlmsg_reply(msg
, info
);
9598 void cfg80211_rdev_free_coalesce(struct cfg80211_registered_device
*rdev
)
9600 struct cfg80211_coalesce
*coalesce
= rdev
->coalesce
;
9602 struct cfg80211_coalesce_rules
*rule
;
9607 for (i
= 0; i
< coalesce
->n_rules
; i
++) {
9608 rule
= &coalesce
->rules
[i
];
9609 for (j
= 0; j
< rule
->n_patterns
; j
++)
9610 kfree(rule
->patterns
[j
].mask
);
9611 kfree(rule
->patterns
);
9613 kfree(coalesce
->rules
);
9615 rdev
->coalesce
= NULL
;
9618 static int nl80211_parse_coalesce_rule(struct cfg80211_registered_device
*rdev
,
9619 struct nlattr
*rule
,
9620 struct cfg80211_coalesce_rules
*new_rule
)
9623 const struct wiphy_coalesce_support
*coalesce
= rdev
->wiphy
.coalesce
;
9624 struct nlattr
*tb
[NUM_NL80211_ATTR_COALESCE_RULE
], *pat
;
9625 int rem
, pat_len
, mask_len
, pkt_offset
, n_patterns
= 0;
9626 struct nlattr
*pat_tb
[NUM_NL80211_PKTPAT
];
9628 err
= nla_parse(tb
, NL80211_ATTR_COALESCE_RULE_MAX
, nla_data(rule
),
9629 nla_len(rule
), nl80211_coalesce_policy
);
9633 if (tb
[NL80211_ATTR_COALESCE_RULE_DELAY
])
9635 nla_get_u32(tb
[NL80211_ATTR_COALESCE_RULE_DELAY
]);
9636 if (new_rule
->delay
> coalesce
->max_delay
)
9639 if (tb
[NL80211_ATTR_COALESCE_RULE_CONDITION
])
9640 new_rule
->condition
=
9641 nla_get_u32(tb
[NL80211_ATTR_COALESCE_RULE_CONDITION
]);
9642 if (new_rule
->condition
!= NL80211_COALESCE_CONDITION_MATCH
&&
9643 new_rule
->condition
!= NL80211_COALESCE_CONDITION_NO_MATCH
)
9646 if (!tb
[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN
])
9649 nla_for_each_nested(pat
, tb
[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN
],
9652 if (n_patterns
> coalesce
->n_patterns
)
9655 new_rule
->patterns
= kcalloc(n_patterns
, sizeof(new_rule
->patterns
[0]),
9657 if (!new_rule
->patterns
)
9660 new_rule
->n_patterns
= n_patterns
;
9663 nla_for_each_nested(pat
, tb
[NL80211_ATTR_COALESCE_RULE_PKT_PATTERN
],
9667 nla_parse(pat_tb
, MAX_NL80211_PKTPAT
, nla_data(pat
),
9668 nla_len(pat
), NULL
);
9669 if (!pat_tb
[NL80211_PKTPAT_MASK
] ||
9670 !pat_tb
[NL80211_PKTPAT_PATTERN
])
9672 pat_len
= nla_len(pat_tb
[NL80211_PKTPAT_PATTERN
]);
9673 mask_len
= DIV_ROUND_UP(pat_len
, 8);
9674 if (nla_len(pat_tb
[NL80211_PKTPAT_MASK
]) != mask_len
)
9676 if (pat_len
> coalesce
->pattern_max_len
||
9677 pat_len
< coalesce
->pattern_min_len
)
9680 if (!pat_tb
[NL80211_PKTPAT_OFFSET
])
9683 pkt_offset
= nla_get_u32(pat_tb
[NL80211_PKTPAT_OFFSET
]);
9684 if (pkt_offset
> coalesce
->max_pkt_offset
)
9686 new_rule
->patterns
[i
].pkt_offset
= pkt_offset
;
9688 mask_pat
= kmalloc(mask_len
+ pat_len
, GFP_KERNEL
);
9692 new_rule
->patterns
[i
].mask
= mask_pat
;
9693 memcpy(mask_pat
, nla_data(pat_tb
[NL80211_PKTPAT_MASK
]),
9696 mask_pat
+= mask_len
;
9697 new_rule
->patterns
[i
].pattern
= mask_pat
;
9698 new_rule
->patterns
[i
].pattern_len
= pat_len
;
9699 memcpy(mask_pat
, nla_data(pat_tb
[NL80211_PKTPAT_PATTERN
]),
9707 static int nl80211_set_coalesce(struct sk_buff
*skb
, struct genl_info
*info
)
9709 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9710 const struct wiphy_coalesce_support
*coalesce
= rdev
->wiphy
.coalesce
;
9711 struct cfg80211_coalesce new_coalesce
= {};
9712 struct cfg80211_coalesce
*n_coalesce
;
9713 int err
, rem_rule
, n_rules
= 0, i
, j
;
9714 struct nlattr
*rule
;
9715 struct cfg80211_coalesce_rules
*tmp_rule
;
9717 if (!rdev
->wiphy
.coalesce
|| !rdev
->ops
->set_coalesce
)
9720 if (!info
->attrs
[NL80211_ATTR_COALESCE_RULE
]) {
9721 cfg80211_rdev_free_coalesce(rdev
);
9722 rdev
->ops
->set_coalesce(&rdev
->wiphy
, NULL
);
9726 nla_for_each_nested(rule
, info
->attrs
[NL80211_ATTR_COALESCE_RULE
],
9729 if (n_rules
> coalesce
->n_rules
)
9732 new_coalesce
.rules
= kcalloc(n_rules
, sizeof(new_coalesce
.rules
[0]),
9734 if (!new_coalesce
.rules
)
9737 new_coalesce
.n_rules
= n_rules
;
9740 nla_for_each_nested(rule
, info
->attrs
[NL80211_ATTR_COALESCE_RULE
],
9742 err
= nl80211_parse_coalesce_rule(rdev
, rule
,
9743 &new_coalesce
.rules
[i
]);
9750 err
= rdev
->ops
->set_coalesce(&rdev
->wiphy
, &new_coalesce
);
9754 n_coalesce
= kmemdup(&new_coalesce
, sizeof(new_coalesce
), GFP_KERNEL
);
9759 cfg80211_rdev_free_coalesce(rdev
);
9760 rdev
->coalesce
= n_coalesce
;
9764 for (i
= 0; i
< new_coalesce
.n_rules
; i
++) {
9765 tmp_rule
= &new_coalesce
.rules
[i
];
9766 for (j
= 0; j
< tmp_rule
->n_patterns
; j
++)
9767 kfree(tmp_rule
->patterns
[j
].mask
);
9768 kfree(tmp_rule
->patterns
);
9770 kfree(new_coalesce
.rules
);
9775 static int nl80211_set_rekey_data(struct sk_buff
*skb
, struct genl_info
*info
)
9777 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9778 struct net_device
*dev
= info
->user_ptr
[1];
9779 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
9780 struct nlattr
*tb
[NUM_NL80211_REKEY_DATA
];
9781 struct cfg80211_gtk_rekey_data rekey_data
;
9784 if (!info
->attrs
[NL80211_ATTR_REKEY_DATA
])
9787 err
= nla_parse(tb
, MAX_NL80211_REKEY_DATA
,
9788 nla_data(info
->attrs
[NL80211_ATTR_REKEY_DATA
]),
9789 nla_len(info
->attrs
[NL80211_ATTR_REKEY_DATA
]),
9790 nl80211_rekey_policy
);
9794 if (nla_len(tb
[NL80211_REKEY_DATA_REPLAY_CTR
]) != NL80211_REPLAY_CTR_LEN
)
9796 if (nla_len(tb
[NL80211_REKEY_DATA_KEK
]) != NL80211_KEK_LEN
)
9798 if (nla_len(tb
[NL80211_REKEY_DATA_KCK
]) != NL80211_KCK_LEN
)
9801 rekey_data
.kek
= nla_data(tb
[NL80211_REKEY_DATA_KEK
]);
9802 rekey_data
.kck
= nla_data(tb
[NL80211_REKEY_DATA_KCK
]);
9803 rekey_data
.replay_ctr
= nla_data(tb
[NL80211_REKEY_DATA_REPLAY_CTR
]);
9806 if (!wdev
->current_bss
) {
9811 if (!rdev
->ops
->set_rekey_data
) {
9816 err
= rdev_set_rekey_data(rdev
, dev
, &rekey_data
);
9822 static int nl80211_register_unexpected_frame(struct sk_buff
*skb
,
9823 struct genl_info
*info
)
9825 struct net_device
*dev
= info
->user_ptr
[1];
9826 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
9828 if (wdev
->iftype
!= NL80211_IFTYPE_AP
&&
9829 wdev
->iftype
!= NL80211_IFTYPE_P2P_GO
)
9832 if (wdev
->ap_unexpected_nlportid
)
9835 wdev
->ap_unexpected_nlportid
= info
->snd_portid
;
9839 static int nl80211_probe_client(struct sk_buff
*skb
,
9840 struct genl_info
*info
)
9842 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9843 struct net_device
*dev
= info
->user_ptr
[1];
9844 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
9845 struct sk_buff
*msg
;
9851 if (wdev
->iftype
!= NL80211_IFTYPE_AP
&&
9852 wdev
->iftype
!= NL80211_IFTYPE_P2P_GO
)
9855 if (!info
->attrs
[NL80211_ATTR_MAC
])
9858 if (!rdev
->ops
->probe_client
)
9861 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
9865 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
9866 NL80211_CMD_PROBE_CLIENT
);
9872 addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
9874 err
= rdev_probe_client(rdev
, dev
, addr
, &cookie
);
9878 if (nla_put_u64(msg
, NL80211_ATTR_COOKIE
, cookie
))
9879 goto nla_put_failure
;
9881 genlmsg_end(msg
, hdr
);
9883 return genlmsg_reply(msg
, info
);
9892 static int nl80211_register_beacons(struct sk_buff
*skb
, struct genl_info
*info
)
9894 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9895 struct cfg80211_beacon_registration
*reg
, *nreg
;
9898 if (!(rdev
->wiphy
.flags
& WIPHY_FLAG_REPORTS_OBSS
))
9901 nreg
= kzalloc(sizeof(*nreg
), GFP_KERNEL
);
9905 /* First, check if already registered. */
9906 spin_lock_bh(&rdev
->beacon_registrations_lock
);
9907 list_for_each_entry(reg
, &rdev
->beacon_registrations
, list
) {
9908 if (reg
->nlportid
== info
->snd_portid
) {
9913 /* Add it to the list */
9914 nreg
->nlportid
= info
->snd_portid
;
9915 list_add(&nreg
->list
, &rdev
->beacon_registrations
);
9917 spin_unlock_bh(&rdev
->beacon_registrations_lock
);
9921 spin_unlock_bh(&rdev
->beacon_registrations_lock
);
9926 static int nl80211_start_p2p_device(struct sk_buff
*skb
, struct genl_info
*info
)
9928 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9929 struct wireless_dev
*wdev
= info
->user_ptr
[1];
9932 if (!rdev
->ops
->start_p2p_device
)
9935 if (wdev
->iftype
!= NL80211_IFTYPE_P2P_DEVICE
)
9938 if (wdev
->p2p_started
)
9941 if (rfkill_blocked(rdev
->rfkill
))
9944 err
= rdev_start_p2p_device(rdev
, wdev
);
9948 wdev
->p2p_started
= true;
9954 static int nl80211_stop_p2p_device(struct sk_buff
*skb
, struct genl_info
*info
)
9956 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
9957 struct wireless_dev
*wdev
= info
->user_ptr
[1];
9959 if (wdev
->iftype
!= NL80211_IFTYPE_P2P_DEVICE
)
9962 if (!rdev
->ops
->stop_p2p_device
)
9965 cfg80211_stop_p2p_device(rdev
, wdev
);
9970 static int nl80211_get_protocol_features(struct sk_buff
*skb
,
9971 struct genl_info
*info
)
9974 struct sk_buff
*msg
;
9976 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
9980 hdr
= nl80211hdr_put(msg
, info
->snd_portid
, info
->snd_seq
, 0,
9981 NL80211_CMD_GET_PROTOCOL_FEATURES
);
9983 goto nla_put_failure
;
9985 if (nla_put_u32(msg
, NL80211_ATTR_PROTOCOL_FEATURES
,
9986 NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP
))
9987 goto nla_put_failure
;
9989 genlmsg_end(msg
, hdr
);
9990 return genlmsg_reply(msg
, info
);
9997 static int nl80211_update_ft_ies(struct sk_buff
*skb
, struct genl_info
*info
)
9999 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10000 struct cfg80211_update_ft_ies_params ft_params
;
10001 struct net_device
*dev
= info
->user_ptr
[1];
10003 if (!rdev
->ops
->update_ft_ies
)
10004 return -EOPNOTSUPP
;
10006 if (!info
->attrs
[NL80211_ATTR_MDID
] ||
10007 !is_valid_ie_attr(info
->attrs
[NL80211_ATTR_IE
]))
10010 memset(&ft_params
, 0, sizeof(ft_params
));
10011 ft_params
.md
= nla_get_u16(info
->attrs
[NL80211_ATTR_MDID
]);
10012 ft_params
.ie
= nla_data(info
->attrs
[NL80211_ATTR_IE
]);
10013 ft_params
.ie_len
= nla_len(info
->attrs
[NL80211_ATTR_IE
]);
10015 return rdev_update_ft_ies(rdev
, dev
, &ft_params
);
10018 static int nl80211_crit_protocol_start(struct sk_buff
*skb
,
10019 struct genl_info
*info
)
10021 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10022 struct wireless_dev
*wdev
= info
->user_ptr
[1];
10023 enum nl80211_crit_proto_id proto
= NL80211_CRIT_PROTO_UNSPEC
;
10027 if (!rdev
->ops
->crit_proto_start
)
10028 return -EOPNOTSUPP
;
10030 if (WARN_ON(!rdev
->ops
->crit_proto_stop
))
10033 if (rdev
->crit_proto_nlportid
)
10036 /* determine protocol if provided */
10037 if (info
->attrs
[NL80211_ATTR_CRIT_PROT_ID
])
10038 proto
= nla_get_u16(info
->attrs
[NL80211_ATTR_CRIT_PROT_ID
]);
10040 if (proto
>= NUM_NL80211_CRIT_PROTO
)
10043 /* timeout must be provided */
10044 if (!info
->attrs
[NL80211_ATTR_MAX_CRIT_PROT_DURATION
])
10048 nla_get_u16(info
->attrs
[NL80211_ATTR_MAX_CRIT_PROT_DURATION
]);
10050 if (duration
> NL80211_CRIT_PROTO_MAX_DURATION
)
10053 ret
= rdev_crit_proto_start(rdev
, wdev
, proto
, duration
);
10055 rdev
->crit_proto_nlportid
= info
->snd_portid
;
10060 static int nl80211_crit_protocol_stop(struct sk_buff
*skb
,
10061 struct genl_info
*info
)
10063 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10064 struct wireless_dev
*wdev
= info
->user_ptr
[1];
10066 if (!rdev
->ops
->crit_proto_stop
)
10067 return -EOPNOTSUPP
;
10069 if (rdev
->crit_proto_nlportid
) {
10070 rdev
->crit_proto_nlportid
= 0;
10071 rdev_crit_proto_stop(rdev
, wdev
);
10076 static int nl80211_vendor_cmd(struct sk_buff
*skb
, struct genl_info
*info
)
10078 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10079 struct wireless_dev
*wdev
=
10080 __cfg80211_wdev_from_attrs(genl_info_net(info
), info
->attrs
);
10084 if (!rdev
->wiphy
.vendor_commands
)
10085 return -EOPNOTSUPP
;
10087 if (IS_ERR(wdev
)) {
10088 err
= PTR_ERR(wdev
);
10089 if (err
!= -EINVAL
)
10092 } else if (wdev
->wiphy
!= &rdev
->wiphy
) {
10096 if (!info
->attrs
[NL80211_ATTR_VENDOR_ID
] ||
10097 !info
->attrs
[NL80211_ATTR_VENDOR_SUBCMD
])
10100 vid
= nla_get_u32(info
->attrs
[NL80211_ATTR_VENDOR_ID
]);
10101 subcmd
= nla_get_u32(info
->attrs
[NL80211_ATTR_VENDOR_SUBCMD
]);
10102 for (i
= 0; i
< rdev
->wiphy
.n_vendor_commands
; i
++) {
10103 const struct wiphy_vendor_command
*vcmd
;
10107 vcmd
= &rdev
->wiphy
.vendor_commands
[i
];
10109 if (vcmd
->info
.vendor_id
!= vid
|| vcmd
->info
.subcmd
!= subcmd
)
10112 if (vcmd
->flags
& (WIPHY_VENDOR_CMD_NEED_WDEV
|
10113 WIPHY_VENDOR_CMD_NEED_NETDEV
)) {
10116 if (vcmd
->flags
& WIPHY_VENDOR_CMD_NEED_NETDEV
&&
10120 if (vcmd
->flags
& WIPHY_VENDOR_CMD_NEED_RUNNING
) {
10121 if (wdev
->netdev
&&
10122 !netif_running(wdev
->netdev
))
10124 if (!wdev
->netdev
&& !wdev
->p2p_started
)
10129 return -EOPNOTSUPP
;
10134 if (info
->attrs
[NL80211_ATTR_VENDOR_DATA
]) {
10135 data
= nla_data(info
->attrs
[NL80211_ATTR_VENDOR_DATA
]);
10136 len
= nla_len(info
->attrs
[NL80211_ATTR_VENDOR_DATA
]);
10139 rdev
->cur_cmd_info
= info
;
10140 err
= rdev
->wiphy
.vendor_commands
[i
].doit(&rdev
->wiphy
, wdev
,
10142 rdev
->cur_cmd_info
= NULL
;
10146 return -EOPNOTSUPP
;
10149 static int nl80211_prepare_vendor_dump(struct sk_buff
*skb
,
10150 struct netlink_callback
*cb
,
10151 struct cfg80211_registered_device
**rdev
,
10152 struct wireless_dev
**wdev
)
10159 unsigned int data_len
= 0;
10164 /* subtract the 1 again here */
10165 struct wiphy
*wiphy
= wiphy_idx_to_wiphy(cb
->args
[0] - 1);
10166 struct wireless_dev
*tmp
;
10172 *rdev
= wiphy_to_rdev(wiphy
);
10176 list_for_each_entry(tmp
, &(*rdev
)->wdev_list
, list
) {
10177 if (tmp
->identifier
== cb
->args
[1] - 1) {
10184 /* keep rtnl locked in successful case */
10188 err
= nlmsg_parse(cb
->nlh
, GENL_HDRLEN
+ nl80211_fam
.hdrsize
,
10189 nl80211_fam
.attrbuf
, nl80211_fam
.maxattr
,
10194 if (!nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_ID
] ||
10195 !nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_SUBCMD
]) {
10200 *wdev
= __cfg80211_wdev_from_attrs(sock_net(skb
->sk
),
10201 nl80211_fam
.attrbuf
);
10205 *rdev
= __cfg80211_rdev_from_attrs(sock_net(skb
->sk
),
10206 nl80211_fam
.attrbuf
);
10207 if (IS_ERR(*rdev
)) {
10208 err
= PTR_ERR(*rdev
);
10212 vid
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_ID
]);
10213 subcmd
= nla_get_u32(nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_SUBCMD
]);
10215 for (i
= 0; i
< (*rdev
)->wiphy
.n_vendor_commands
; i
++) {
10216 const struct wiphy_vendor_command
*vcmd
;
10218 vcmd
= &(*rdev
)->wiphy
.vendor_commands
[i
];
10220 if (vcmd
->info
.vendor_id
!= vid
|| vcmd
->info
.subcmd
!= subcmd
)
10223 if (!vcmd
->dumpit
) {
10232 if (vcmd_idx
< 0) {
10237 if (nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_DATA
]) {
10238 data
= nla_data(nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_DATA
]);
10239 data_len
= nla_len(nl80211_fam
.attrbuf
[NL80211_ATTR_VENDOR_DATA
]);
10242 /* 0 is the first index - add 1 to parse only once */
10243 cb
->args
[0] = (*rdev
)->wiphy_idx
+ 1;
10244 /* add 1 to know if it was NULL */
10245 cb
->args
[1] = *wdev
? (*wdev
)->identifier
+ 1 : 0;
10246 cb
->args
[2] = vcmd_idx
;
10247 cb
->args
[3] = (unsigned long)data
;
10248 cb
->args
[4] = data_len
;
10250 /* keep rtnl locked in successful case */
10257 static int nl80211_vendor_cmd_dump(struct sk_buff
*skb
,
10258 struct netlink_callback
*cb
)
10260 struct cfg80211_registered_device
*rdev
;
10261 struct wireless_dev
*wdev
;
10262 unsigned int vcmd_idx
;
10263 const struct wiphy_vendor_command
*vcmd
;
10267 struct nlattr
*vendor_data
;
10269 err
= nl80211_prepare_vendor_dump(skb
, cb
, &rdev
, &wdev
);
10273 vcmd_idx
= cb
->args
[2];
10274 data
= (void *)cb
->args
[3];
10275 data_len
= cb
->args
[4];
10276 vcmd
= &rdev
->wiphy
.vendor_commands
[vcmd_idx
];
10278 if (vcmd
->flags
& (WIPHY_VENDOR_CMD_NEED_WDEV
|
10279 WIPHY_VENDOR_CMD_NEED_NETDEV
)) {
10282 if (vcmd
->flags
& WIPHY_VENDOR_CMD_NEED_NETDEV
&&
10286 if (vcmd
->flags
& WIPHY_VENDOR_CMD_NEED_RUNNING
) {
10287 if (wdev
->netdev
&&
10288 !netif_running(wdev
->netdev
))
10290 if (!wdev
->netdev
&& !wdev
->p2p_started
)
10296 void *hdr
= nl80211hdr_put(skb
, NETLINK_CB(cb
->skb
).portid
,
10297 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
,
10298 NL80211_CMD_VENDOR
);
10302 if (nla_put_u32(skb
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
10303 (wdev
&& nla_put_u64(skb
, NL80211_ATTR_WDEV
,
10305 genlmsg_cancel(skb
, hdr
);
10309 vendor_data
= nla_nest_start(skb
, NL80211_ATTR_VENDOR_DATA
);
10310 if (!vendor_data
) {
10311 genlmsg_cancel(skb
, hdr
);
10315 err
= vcmd
->dumpit(&rdev
->wiphy
, wdev
, skb
, data
, data_len
,
10316 (unsigned long *)&cb
->args
[5]);
10317 nla_nest_end(skb
, vendor_data
);
10319 if (err
== -ENOBUFS
|| err
== -ENOENT
) {
10320 genlmsg_cancel(skb
, hdr
);
10323 genlmsg_cancel(skb
, hdr
);
10327 genlmsg_end(skb
, hdr
);
10336 struct sk_buff
*__cfg80211_alloc_reply_skb(struct wiphy
*wiphy
,
10337 enum nl80211_commands cmd
,
10338 enum nl80211_attrs attr
,
10341 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
10343 if (WARN_ON(!rdev
->cur_cmd_info
))
10346 return __cfg80211_alloc_vendor_skb(rdev
, NULL
, approxlen
,
10347 rdev
->cur_cmd_info
->snd_portid
,
10348 rdev
->cur_cmd_info
->snd_seq
,
10349 cmd
, attr
, NULL
, GFP_KERNEL
);
10351 EXPORT_SYMBOL(__cfg80211_alloc_reply_skb
);
10353 int cfg80211_vendor_cmd_reply(struct sk_buff
*skb
)
10355 struct cfg80211_registered_device
*rdev
= ((void **)skb
->cb
)[0];
10356 void *hdr
= ((void **)skb
->cb
)[1];
10357 struct nlattr
*data
= ((void **)skb
->cb
)[2];
10359 /* clear CB data for netlink core to own from now on */
10360 memset(skb
->cb
, 0, sizeof(skb
->cb
));
10362 if (WARN_ON(!rdev
->cur_cmd_info
)) {
10367 nla_nest_end(skb
, data
);
10368 genlmsg_end(skb
, hdr
);
10369 return genlmsg_reply(skb
, rdev
->cur_cmd_info
);
10371 EXPORT_SYMBOL_GPL(cfg80211_vendor_cmd_reply
);
10374 static int nl80211_set_qos_map(struct sk_buff
*skb
,
10375 struct genl_info
*info
)
10377 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10378 struct cfg80211_qos_map
*qos_map
= NULL
;
10379 struct net_device
*dev
= info
->user_ptr
[1];
10380 u8
*pos
, len
, num_des
, des_len
, des
;
10383 if (!rdev
->ops
->set_qos_map
)
10384 return -EOPNOTSUPP
;
10386 if (info
->attrs
[NL80211_ATTR_QOS_MAP
]) {
10387 pos
= nla_data(info
->attrs
[NL80211_ATTR_QOS_MAP
]);
10388 len
= nla_len(info
->attrs
[NL80211_ATTR_QOS_MAP
]);
10390 if (len
% 2 || len
< IEEE80211_QOS_MAP_LEN_MIN
||
10391 len
> IEEE80211_QOS_MAP_LEN_MAX
)
10394 qos_map
= kzalloc(sizeof(struct cfg80211_qos_map
), GFP_KERNEL
);
10398 num_des
= (len
- IEEE80211_QOS_MAP_LEN_MIN
) >> 1;
10400 des_len
= num_des
*
10401 sizeof(struct cfg80211_dscp_exception
);
10402 memcpy(qos_map
->dscp_exception
, pos
, des_len
);
10403 qos_map
->num_des
= num_des
;
10404 for (des
= 0; des
< num_des
; des
++) {
10405 if (qos_map
->dscp_exception
[des
].up
> 7) {
10412 memcpy(qos_map
->up
, pos
, IEEE80211_QOS_MAP_LEN_MIN
);
10415 wdev_lock(dev
->ieee80211_ptr
);
10416 ret
= nl80211_key_allowed(dev
->ieee80211_ptr
);
10418 ret
= rdev_set_qos_map(rdev
, dev
, qos_map
);
10419 wdev_unlock(dev
->ieee80211_ptr
);
10425 static int nl80211_add_tx_ts(struct sk_buff
*skb
, struct genl_info
*info
)
10427 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10428 struct net_device
*dev
= info
->user_ptr
[1];
10429 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
10432 u16 admitted_time
= 0;
10435 if (!(rdev
->wiphy
.features
& NL80211_FEATURE_SUPPORTS_WMM_ADMISSION
))
10436 return -EOPNOTSUPP
;
10438 if (!info
->attrs
[NL80211_ATTR_TSID
] || !info
->attrs
[NL80211_ATTR_MAC
] ||
10439 !info
->attrs
[NL80211_ATTR_USER_PRIO
])
10442 tsid
= nla_get_u8(info
->attrs
[NL80211_ATTR_TSID
]);
10443 if (tsid
>= IEEE80211_NUM_TIDS
)
10446 up
= nla_get_u8(info
->attrs
[NL80211_ATTR_USER_PRIO
]);
10447 if (up
>= IEEE80211_NUM_UPS
)
10450 /* WMM uses TIDs 0-7 even for TSPEC */
10451 if (tsid
>= IEEE80211_FIRST_TSPEC_TSID
) {
10452 /* TODO: handle 802.11 TSPEC/admission control
10453 * need more attributes for that (e.g. BA session requirement);
10454 * change the WMM adminssion test above to allow both then
10459 peer
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
10461 if (info
->attrs
[NL80211_ATTR_ADMITTED_TIME
]) {
10463 nla_get_u16(info
->attrs
[NL80211_ATTR_ADMITTED_TIME
]);
10464 if (!admitted_time
)
10469 switch (wdev
->iftype
) {
10470 case NL80211_IFTYPE_STATION
:
10471 case NL80211_IFTYPE_P2P_CLIENT
:
10472 if (wdev
->current_bss
)
10481 err
= rdev_add_tx_ts(rdev
, dev
, tsid
, peer
, up
, admitted_time
);
10488 static int nl80211_del_tx_ts(struct sk_buff
*skb
, struct genl_info
*info
)
10490 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10491 struct net_device
*dev
= info
->user_ptr
[1];
10492 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
10497 if (!info
->attrs
[NL80211_ATTR_TSID
] || !info
->attrs
[NL80211_ATTR_MAC
])
10500 tsid
= nla_get_u8(info
->attrs
[NL80211_ATTR_TSID
]);
10501 peer
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
10504 err
= rdev_del_tx_ts(rdev
, dev
, tsid
, peer
);
10510 static int nl80211_tdls_channel_switch(struct sk_buff
*skb
,
10511 struct genl_info
*info
)
10513 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10514 struct net_device
*dev
= info
->user_ptr
[1];
10515 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
10516 struct cfg80211_chan_def chandef
= {};
10521 if (!rdev
->ops
->tdls_channel_switch
||
10522 !(rdev
->wiphy
.features
& NL80211_FEATURE_TDLS_CHANNEL_SWITCH
))
10523 return -EOPNOTSUPP
;
10525 switch (dev
->ieee80211_ptr
->iftype
) {
10526 case NL80211_IFTYPE_STATION
:
10527 case NL80211_IFTYPE_P2P_CLIENT
:
10530 return -EOPNOTSUPP
;
10533 if (!info
->attrs
[NL80211_ATTR_MAC
] ||
10534 !info
->attrs
[NL80211_ATTR_OPER_CLASS
])
10537 err
= nl80211_parse_chandef(rdev
, info
, &chandef
);
10542 * Don't allow wide channels on the 2.4Ghz band, as per IEEE802.11-2012
10543 * section 10.22.6.2.1. Disallow 5/10Mhz channels as well for now, the
10544 * specification is not defined for them.
10546 if (chandef
.chan
->band
== IEEE80211_BAND_2GHZ
&&
10547 chandef
.width
!= NL80211_CHAN_WIDTH_20_NOHT
&&
10548 chandef
.width
!= NL80211_CHAN_WIDTH_20
)
10551 /* we will be active on the TDLS link */
10552 if (!cfg80211_reg_can_beacon_relax(&rdev
->wiphy
, &chandef
,
10556 /* don't allow switching to DFS channels */
10557 if (cfg80211_chandef_dfs_required(wdev
->wiphy
, &chandef
, wdev
->iftype
))
10560 addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
10561 oper_class
= nla_get_u8(info
->attrs
[NL80211_ATTR_OPER_CLASS
]);
10564 err
= rdev_tdls_channel_switch(rdev
, dev
, addr
, oper_class
, &chandef
);
10570 static int nl80211_tdls_cancel_channel_switch(struct sk_buff
*skb
,
10571 struct genl_info
*info
)
10573 struct cfg80211_registered_device
*rdev
= info
->user_ptr
[0];
10574 struct net_device
*dev
= info
->user_ptr
[1];
10575 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
10578 if (!rdev
->ops
->tdls_channel_switch
||
10579 !rdev
->ops
->tdls_cancel_channel_switch
||
10580 !(rdev
->wiphy
.features
& NL80211_FEATURE_TDLS_CHANNEL_SWITCH
))
10581 return -EOPNOTSUPP
;
10583 switch (dev
->ieee80211_ptr
->iftype
) {
10584 case NL80211_IFTYPE_STATION
:
10585 case NL80211_IFTYPE_P2P_CLIENT
:
10588 return -EOPNOTSUPP
;
10591 if (!info
->attrs
[NL80211_ATTR_MAC
])
10594 addr
= nla_data(info
->attrs
[NL80211_ATTR_MAC
]);
10597 rdev_tdls_cancel_channel_switch(rdev
, dev
, addr
);
10603 #define NL80211_FLAG_NEED_WIPHY 0x01
10604 #define NL80211_FLAG_NEED_NETDEV 0x02
10605 #define NL80211_FLAG_NEED_RTNL 0x04
10606 #define NL80211_FLAG_CHECK_NETDEV_UP 0x08
10607 #define NL80211_FLAG_NEED_NETDEV_UP (NL80211_FLAG_NEED_NETDEV |\
10608 NL80211_FLAG_CHECK_NETDEV_UP)
10609 #define NL80211_FLAG_NEED_WDEV 0x10
10610 /* If a netdev is associated, it must be UP, P2P must be started */
10611 #define NL80211_FLAG_NEED_WDEV_UP (NL80211_FLAG_NEED_WDEV |\
10612 NL80211_FLAG_CHECK_NETDEV_UP)
10613 #define NL80211_FLAG_CLEAR_SKB 0x20
10615 static int nl80211_pre_doit(const struct genl_ops
*ops
, struct sk_buff
*skb
,
10616 struct genl_info
*info
)
10618 struct cfg80211_registered_device
*rdev
;
10619 struct wireless_dev
*wdev
;
10620 struct net_device
*dev
;
10621 bool rtnl
= ops
->internal_flags
& NL80211_FLAG_NEED_RTNL
;
10626 if (ops
->internal_flags
& NL80211_FLAG_NEED_WIPHY
) {
10627 rdev
= cfg80211_get_dev_from_info(genl_info_net(info
), info
);
10628 if (IS_ERR(rdev
)) {
10631 return PTR_ERR(rdev
);
10633 info
->user_ptr
[0] = rdev
;
10634 } else if (ops
->internal_flags
& NL80211_FLAG_NEED_NETDEV
||
10635 ops
->internal_flags
& NL80211_FLAG_NEED_WDEV
) {
10638 wdev
= __cfg80211_wdev_from_attrs(genl_info_net(info
),
10640 if (IS_ERR(wdev
)) {
10643 return PTR_ERR(wdev
);
10646 dev
= wdev
->netdev
;
10647 rdev
= wiphy_to_rdev(wdev
->wiphy
);
10649 if (ops
->internal_flags
& NL80211_FLAG_NEED_NETDEV
) {
10656 info
->user_ptr
[1] = dev
;
10658 info
->user_ptr
[1] = wdev
;
10662 if (ops
->internal_flags
& NL80211_FLAG_CHECK_NETDEV_UP
&&
10663 !netif_running(dev
)) {
10670 } else if (ops
->internal_flags
& NL80211_FLAG_CHECK_NETDEV_UP
) {
10671 if (!wdev
->p2p_started
) {
10678 info
->user_ptr
[0] = rdev
;
10684 static void nl80211_post_doit(const struct genl_ops
*ops
, struct sk_buff
*skb
,
10685 struct genl_info
*info
)
10687 if (info
->user_ptr
[1]) {
10688 if (ops
->internal_flags
& NL80211_FLAG_NEED_WDEV
) {
10689 struct wireless_dev
*wdev
= info
->user_ptr
[1];
10692 dev_put(wdev
->netdev
);
10694 dev_put(info
->user_ptr
[1]);
10698 if (ops
->internal_flags
& NL80211_FLAG_NEED_RTNL
)
10701 /* If needed, clear the netlink message payload from the SKB
10702 * as it might contain key data that shouldn't stick around on
10703 * the heap after the SKB is freed. The netlink message header
10704 * is still needed for further processing, so leave it intact.
10706 if (ops
->internal_flags
& NL80211_FLAG_CLEAR_SKB
) {
10707 struct nlmsghdr
*nlh
= nlmsg_hdr(skb
);
10709 memset(nlmsg_data(nlh
), 0, nlmsg_len(nlh
));
10713 static const struct genl_ops nl80211_ops
[] = {
10715 .cmd
= NL80211_CMD_GET_WIPHY
,
10716 .doit
= nl80211_get_wiphy
,
10717 .dumpit
= nl80211_dump_wiphy
,
10718 .done
= nl80211_dump_wiphy_done
,
10719 .policy
= nl80211_policy
,
10720 /* can be retrieved by unprivileged users */
10721 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
10722 NL80211_FLAG_NEED_RTNL
,
10725 .cmd
= NL80211_CMD_SET_WIPHY
,
10726 .doit
= nl80211_set_wiphy
,
10727 .policy
= nl80211_policy
,
10728 .flags
= GENL_ADMIN_PERM
,
10729 .internal_flags
= NL80211_FLAG_NEED_RTNL
,
10732 .cmd
= NL80211_CMD_GET_INTERFACE
,
10733 .doit
= nl80211_get_interface
,
10734 .dumpit
= nl80211_dump_interface
,
10735 .policy
= nl80211_policy
,
10736 /* can be retrieved by unprivileged users */
10737 .internal_flags
= NL80211_FLAG_NEED_WDEV
|
10738 NL80211_FLAG_NEED_RTNL
,
10741 .cmd
= NL80211_CMD_SET_INTERFACE
,
10742 .doit
= nl80211_set_interface
,
10743 .policy
= nl80211_policy
,
10744 .flags
= GENL_ADMIN_PERM
,
10745 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
10746 NL80211_FLAG_NEED_RTNL
,
10749 .cmd
= NL80211_CMD_NEW_INTERFACE
,
10750 .doit
= nl80211_new_interface
,
10751 .policy
= nl80211_policy
,
10752 .flags
= GENL_ADMIN_PERM
,
10753 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
10754 NL80211_FLAG_NEED_RTNL
,
10757 .cmd
= NL80211_CMD_DEL_INTERFACE
,
10758 .doit
= nl80211_del_interface
,
10759 .policy
= nl80211_policy
,
10760 .flags
= GENL_ADMIN_PERM
,
10761 .internal_flags
= NL80211_FLAG_NEED_WDEV
|
10762 NL80211_FLAG_NEED_RTNL
,
10765 .cmd
= NL80211_CMD_GET_KEY
,
10766 .doit
= nl80211_get_key
,
10767 .policy
= nl80211_policy
,
10768 .flags
= GENL_ADMIN_PERM
,
10769 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10770 NL80211_FLAG_NEED_RTNL
,
10773 .cmd
= NL80211_CMD_SET_KEY
,
10774 .doit
= nl80211_set_key
,
10775 .policy
= nl80211_policy
,
10776 .flags
= GENL_ADMIN_PERM
,
10777 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10778 NL80211_FLAG_NEED_RTNL
|
10779 NL80211_FLAG_CLEAR_SKB
,
10782 .cmd
= NL80211_CMD_NEW_KEY
,
10783 .doit
= nl80211_new_key
,
10784 .policy
= nl80211_policy
,
10785 .flags
= GENL_ADMIN_PERM
,
10786 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10787 NL80211_FLAG_NEED_RTNL
|
10788 NL80211_FLAG_CLEAR_SKB
,
10791 .cmd
= NL80211_CMD_DEL_KEY
,
10792 .doit
= nl80211_del_key
,
10793 .policy
= nl80211_policy
,
10794 .flags
= GENL_ADMIN_PERM
,
10795 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10796 NL80211_FLAG_NEED_RTNL
,
10799 .cmd
= NL80211_CMD_SET_BEACON
,
10800 .policy
= nl80211_policy
,
10801 .flags
= GENL_ADMIN_PERM
,
10802 .doit
= nl80211_set_beacon
,
10803 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10804 NL80211_FLAG_NEED_RTNL
,
10807 .cmd
= NL80211_CMD_START_AP
,
10808 .policy
= nl80211_policy
,
10809 .flags
= GENL_ADMIN_PERM
,
10810 .doit
= nl80211_start_ap
,
10811 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10812 NL80211_FLAG_NEED_RTNL
,
10815 .cmd
= NL80211_CMD_STOP_AP
,
10816 .policy
= nl80211_policy
,
10817 .flags
= GENL_ADMIN_PERM
,
10818 .doit
= nl80211_stop_ap
,
10819 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10820 NL80211_FLAG_NEED_RTNL
,
10823 .cmd
= NL80211_CMD_GET_STATION
,
10824 .doit
= nl80211_get_station
,
10825 .dumpit
= nl80211_dump_station
,
10826 .policy
= nl80211_policy
,
10827 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
10828 NL80211_FLAG_NEED_RTNL
,
10831 .cmd
= NL80211_CMD_SET_STATION
,
10832 .doit
= nl80211_set_station
,
10833 .policy
= nl80211_policy
,
10834 .flags
= GENL_ADMIN_PERM
,
10835 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10836 NL80211_FLAG_NEED_RTNL
,
10839 .cmd
= NL80211_CMD_NEW_STATION
,
10840 .doit
= nl80211_new_station
,
10841 .policy
= nl80211_policy
,
10842 .flags
= GENL_ADMIN_PERM
,
10843 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10844 NL80211_FLAG_NEED_RTNL
,
10847 .cmd
= NL80211_CMD_DEL_STATION
,
10848 .doit
= nl80211_del_station
,
10849 .policy
= nl80211_policy
,
10850 .flags
= GENL_ADMIN_PERM
,
10851 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10852 NL80211_FLAG_NEED_RTNL
,
10855 .cmd
= NL80211_CMD_GET_MPATH
,
10856 .doit
= nl80211_get_mpath
,
10857 .dumpit
= nl80211_dump_mpath
,
10858 .policy
= nl80211_policy
,
10859 .flags
= GENL_ADMIN_PERM
,
10860 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10861 NL80211_FLAG_NEED_RTNL
,
10864 .cmd
= NL80211_CMD_GET_MPP
,
10865 .doit
= nl80211_get_mpp
,
10866 .dumpit
= nl80211_dump_mpp
,
10867 .policy
= nl80211_policy
,
10868 .flags
= GENL_ADMIN_PERM
,
10869 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10870 NL80211_FLAG_NEED_RTNL
,
10873 .cmd
= NL80211_CMD_SET_MPATH
,
10874 .doit
= nl80211_set_mpath
,
10875 .policy
= nl80211_policy
,
10876 .flags
= GENL_ADMIN_PERM
,
10877 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10878 NL80211_FLAG_NEED_RTNL
,
10881 .cmd
= NL80211_CMD_NEW_MPATH
,
10882 .doit
= nl80211_new_mpath
,
10883 .policy
= nl80211_policy
,
10884 .flags
= GENL_ADMIN_PERM
,
10885 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10886 NL80211_FLAG_NEED_RTNL
,
10889 .cmd
= NL80211_CMD_DEL_MPATH
,
10890 .doit
= nl80211_del_mpath
,
10891 .policy
= nl80211_policy
,
10892 .flags
= GENL_ADMIN_PERM
,
10893 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10894 NL80211_FLAG_NEED_RTNL
,
10897 .cmd
= NL80211_CMD_SET_BSS
,
10898 .doit
= nl80211_set_bss
,
10899 .policy
= nl80211_policy
,
10900 .flags
= GENL_ADMIN_PERM
,
10901 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10902 NL80211_FLAG_NEED_RTNL
,
10905 .cmd
= NL80211_CMD_GET_REG
,
10906 .doit
= nl80211_get_reg_do
,
10907 .dumpit
= nl80211_get_reg_dump
,
10908 .policy
= nl80211_policy
,
10909 .internal_flags
= NL80211_FLAG_NEED_RTNL
,
10910 /* can be retrieved by unprivileged users */
10912 #ifdef CONFIG_CFG80211_CRDA_SUPPORT
10914 .cmd
= NL80211_CMD_SET_REG
,
10915 .doit
= nl80211_set_reg
,
10916 .policy
= nl80211_policy
,
10917 .flags
= GENL_ADMIN_PERM
,
10918 .internal_flags
= NL80211_FLAG_NEED_RTNL
,
10922 .cmd
= NL80211_CMD_REQ_SET_REG
,
10923 .doit
= nl80211_req_set_reg
,
10924 .policy
= nl80211_policy
,
10925 .flags
= GENL_ADMIN_PERM
,
10928 .cmd
= NL80211_CMD_GET_MESH_CONFIG
,
10929 .doit
= nl80211_get_mesh_config
,
10930 .policy
= nl80211_policy
,
10931 /* can be retrieved by unprivileged users */
10932 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10933 NL80211_FLAG_NEED_RTNL
,
10936 .cmd
= NL80211_CMD_SET_MESH_CONFIG
,
10937 .doit
= nl80211_update_mesh_config
,
10938 .policy
= nl80211_policy
,
10939 .flags
= GENL_ADMIN_PERM
,
10940 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10941 NL80211_FLAG_NEED_RTNL
,
10944 .cmd
= NL80211_CMD_TRIGGER_SCAN
,
10945 .doit
= nl80211_trigger_scan
,
10946 .policy
= nl80211_policy
,
10947 .flags
= GENL_ADMIN_PERM
,
10948 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
10949 NL80211_FLAG_NEED_RTNL
,
10952 .cmd
= NL80211_CMD_GET_SCAN
,
10953 .policy
= nl80211_policy
,
10954 .dumpit
= nl80211_dump_scan
,
10957 .cmd
= NL80211_CMD_START_SCHED_SCAN
,
10958 .doit
= nl80211_start_sched_scan
,
10959 .policy
= nl80211_policy
,
10960 .flags
= GENL_ADMIN_PERM
,
10961 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10962 NL80211_FLAG_NEED_RTNL
,
10965 .cmd
= NL80211_CMD_STOP_SCHED_SCAN
,
10966 .doit
= nl80211_stop_sched_scan
,
10967 .policy
= nl80211_policy
,
10968 .flags
= GENL_ADMIN_PERM
,
10969 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10970 NL80211_FLAG_NEED_RTNL
,
10973 .cmd
= NL80211_CMD_AUTHENTICATE
,
10974 .doit
= nl80211_authenticate
,
10975 .policy
= nl80211_policy
,
10976 .flags
= GENL_ADMIN_PERM
,
10977 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10978 NL80211_FLAG_NEED_RTNL
|
10979 NL80211_FLAG_CLEAR_SKB
,
10982 .cmd
= NL80211_CMD_ASSOCIATE
,
10983 .doit
= nl80211_associate
,
10984 .policy
= nl80211_policy
,
10985 .flags
= GENL_ADMIN_PERM
,
10986 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10987 NL80211_FLAG_NEED_RTNL
,
10990 .cmd
= NL80211_CMD_DEAUTHENTICATE
,
10991 .doit
= nl80211_deauthenticate
,
10992 .policy
= nl80211_policy
,
10993 .flags
= GENL_ADMIN_PERM
,
10994 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
10995 NL80211_FLAG_NEED_RTNL
,
10998 .cmd
= NL80211_CMD_DISASSOCIATE
,
10999 .doit
= nl80211_disassociate
,
11000 .policy
= nl80211_policy
,
11001 .flags
= GENL_ADMIN_PERM
,
11002 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11003 NL80211_FLAG_NEED_RTNL
,
11006 .cmd
= NL80211_CMD_JOIN_IBSS
,
11007 .doit
= nl80211_join_ibss
,
11008 .policy
= nl80211_policy
,
11009 .flags
= GENL_ADMIN_PERM
,
11010 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11011 NL80211_FLAG_NEED_RTNL
,
11014 .cmd
= NL80211_CMD_LEAVE_IBSS
,
11015 .doit
= nl80211_leave_ibss
,
11016 .policy
= nl80211_policy
,
11017 .flags
= GENL_ADMIN_PERM
,
11018 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11019 NL80211_FLAG_NEED_RTNL
,
11021 #ifdef CONFIG_NL80211_TESTMODE
11023 .cmd
= NL80211_CMD_TESTMODE
,
11024 .doit
= nl80211_testmode_do
,
11025 .dumpit
= nl80211_testmode_dump
,
11026 .policy
= nl80211_policy
,
11027 .flags
= GENL_ADMIN_PERM
,
11028 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11029 NL80211_FLAG_NEED_RTNL
,
11033 .cmd
= NL80211_CMD_CONNECT
,
11034 .doit
= nl80211_connect
,
11035 .policy
= nl80211_policy
,
11036 .flags
= GENL_ADMIN_PERM
,
11037 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11038 NL80211_FLAG_NEED_RTNL
,
11041 .cmd
= NL80211_CMD_DISCONNECT
,
11042 .doit
= nl80211_disconnect
,
11043 .policy
= nl80211_policy
,
11044 .flags
= GENL_ADMIN_PERM
,
11045 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11046 NL80211_FLAG_NEED_RTNL
,
11049 .cmd
= NL80211_CMD_SET_WIPHY_NETNS
,
11050 .doit
= nl80211_wiphy_netns
,
11051 .policy
= nl80211_policy
,
11052 .flags
= GENL_ADMIN_PERM
,
11053 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11054 NL80211_FLAG_NEED_RTNL
,
11057 .cmd
= NL80211_CMD_GET_SURVEY
,
11058 .policy
= nl80211_policy
,
11059 .dumpit
= nl80211_dump_survey
,
11062 .cmd
= NL80211_CMD_SET_PMKSA
,
11063 .doit
= nl80211_setdel_pmksa
,
11064 .policy
= nl80211_policy
,
11065 .flags
= GENL_ADMIN_PERM
,
11066 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11067 NL80211_FLAG_NEED_RTNL
,
11070 .cmd
= NL80211_CMD_DEL_PMKSA
,
11071 .doit
= nl80211_setdel_pmksa
,
11072 .policy
= nl80211_policy
,
11073 .flags
= GENL_ADMIN_PERM
,
11074 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11075 NL80211_FLAG_NEED_RTNL
,
11078 .cmd
= NL80211_CMD_FLUSH_PMKSA
,
11079 .doit
= nl80211_flush_pmksa
,
11080 .policy
= nl80211_policy
,
11081 .flags
= GENL_ADMIN_PERM
,
11082 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11083 NL80211_FLAG_NEED_RTNL
,
11086 .cmd
= NL80211_CMD_REMAIN_ON_CHANNEL
,
11087 .doit
= nl80211_remain_on_channel
,
11088 .policy
= nl80211_policy
,
11089 .flags
= GENL_ADMIN_PERM
,
11090 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11091 NL80211_FLAG_NEED_RTNL
,
11094 .cmd
= NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL
,
11095 .doit
= nl80211_cancel_remain_on_channel
,
11096 .policy
= nl80211_policy
,
11097 .flags
= GENL_ADMIN_PERM
,
11098 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11099 NL80211_FLAG_NEED_RTNL
,
11102 .cmd
= NL80211_CMD_SET_TX_BITRATE_MASK
,
11103 .doit
= nl80211_set_tx_bitrate_mask
,
11104 .policy
= nl80211_policy
,
11105 .flags
= GENL_ADMIN_PERM
,
11106 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11107 NL80211_FLAG_NEED_RTNL
,
11110 .cmd
= NL80211_CMD_REGISTER_FRAME
,
11111 .doit
= nl80211_register_mgmt
,
11112 .policy
= nl80211_policy
,
11113 .flags
= GENL_ADMIN_PERM
,
11114 .internal_flags
= NL80211_FLAG_NEED_WDEV
|
11115 NL80211_FLAG_NEED_RTNL
,
11118 .cmd
= NL80211_CMD_FRAME
,
11119 .doit
= nl80211_tx_mgmt
,
11120 .policy
= nl80211_policy
,
11121 .flags
= GENL_ADMIN_PERM
,
11122 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11123 NL80211_FLAG_NEED_RTNL
,
11126 .cmd
= NL80211_CMD_FRAME_WAIT_CANCEL
,
11127 .doit
= nl80211_tx_mgmt_cancel_wait
,
11128 .policy
= nl80211_policy
,
11129 .flags
= GENL_ADMIN_PERM
,
11130 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11131 NL80211_FLAG_NEED_RTNL
,
11134 .cmd
= NL80211_CMD_SET_POWER_SAVE
,
11135 .doit
= nl80211_set_power_save
,
11136 .policy
= nl80211_policy
,
11137 .flags
= GENL_ADMIN_PERM
,
11138 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11139 NL80211_FLAG_NEED_RTNL
,
11142 .cmd
= NL80211_CMD_GET_POWER_SAVE
,
11143 .doit
= nl80211_get_power_save
,
11144 .policy
= nl80211_policy
,
11145 /* can be retrieved by unprivileged users */
11146 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11147 NL80211_FLAG_NEED_RTNL
,
11150 .cmd
= NL80211_CMD_SET_CQM
,
11151 .doit
= nl80211_set_cqm
,
11152 .policy
= nl80211_policy
,
11153 .flags
= GENL_ADMIN_PERM
,
11154 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11155 NL80211_FLAG_NEED_RTNL
,
11158 .cmd
= NL80211_CMD_SET_CHANNEL
,
11159 .doit
= nl80211_set_channel
,
11160 .policy
= nl80211_policy
,
11161 .flags
= GENL_ADMIN_PERM
,
11162 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11163 NL80211_FLAG_NEED_RTNL
,
11166 .cmd
= NL80211_CMD_SET_WDS_PEER
,
11167 .doit
= nl80211_set_wds_peer
,
11168 .policy
= nl80211_policy
,
11169 .flags
= GENL_ADMIN_PERM
,
11170 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11171 NL80211_FLAG_NEED_RTNL
,
11174 .cmd
= NL80211_CMD_JOIN_MESH
,
11175 .doit
= nl80211_join_mesh
,
11176 .policy
= nl80211_policy
,
11177 .flags
= GENL_ADMIN_PERM
,
11178 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11179 NL80211_FLAG_NEED_RTNL
,
11182 .cmd
= NL80211_CMD_LEAVE_MESH
,
11183 .doit
= nl80211_leave_mesh
,
11184 .policy
= nl80211_policy
,
11185 .flags
= GENL_ADMIN_PERM
,
11186 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11187 NL80211_FLAG_NEED_RTNL
,
11190 .cmd
= NL80211_CMD_JOIN_OCB
,
11191 .doit
= nl80211_join_ocb
,
11192 .policy
= nl80211_policy
,
11193 .flags
= GENL_ADMIN_PERM
,
11194 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11195 NL80211_FLAG_NEED_RTNL
,
11198 .cmd
= NL80211_CMD_LEAVE_OCB
,
11199 .doit
= nl80211_leave_ocb
,
11200 .policy
= nl80211_policy
,
11201 .flags
= GENL_ADMIN_PERM
,
11202 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11203 NL80211_FLAG_NEED_RTNL
,
11207 .cmd
= NL80211_CMD_GET_WOWLAN
,
11208 .doit
= nl80211_get_wowlan
,
11209 .policy
= nl80211_policy
,
11210 /* can be retrieved by unprivileged users */
11211 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11212 NL80211_FLAG_NEED_RTNL
,
11215 .cmd
= NL80211_CMD_SET_WOWLAN
,
11216 .doit
= nl80211_set_wowlan
,
11217 .policy
= nl80211_policy
,
11218 .flags
= GENL_ADMIN_PERM
,
11219 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11220 NL80211_FLAG_NEED_RTNL
,
11224 .cmd
= NL80211_CMD_SET_REKEY_OFFLOAD
,
11225 .doit
= nl80211_set_rekey_data
,
11226 .policy
= nl80211_policy
,
11227 .flags
= GENL_ADMIN_PERM
,
11228 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11229 NL80211_FLAG_NEED_RTNL
|
11230 NL80211_FLAG_CLEAR_SKB
,
11233 .cmd
= NL80211_CMD_TDLS_MGMT
,
11234 .doit
= nl80211_tdls_mgmt
,
11235 .policy
= nl80211_policy
,
11236 .flags
= GENL_ADMIN_PERM
,
11237 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11238 NL80211_FLAG_NEED_RTNL
,
11241 .cmd
= NL80211_CMD_TDLS_OPER
,
11242 .doit
= nl80211_tdls_oper
,
11243 .policy
= nl80211_policy
,
11244 .flags
= GENL_ADMIN_PERM
,
11245 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11246 NL80211_FLAG_NEED_RTNL
,
11249 .cmd
= NL80211_CMD_UNEXPECTED_FRAME
,
11250 .doit
= nl80211_register_unexpected_frame
,
11251 .policy
= nl80211_policy
,
11252 .flags
= GENL_ADMIN_PERM
,
11253 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11254 NL80211_FLAG_NEED_RTNL
,
11257 .cmd
= NL80211_CMD_PROBE_CLIENT
,
11258 .doit
= nl80211_probe_client
,
11259 .policy
= nl80211_policy
,
11260 .flags
= GENL_ADMIN_PERM
,
11261 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11262 NL80211_FLAG_NEED_RTNL
,
11265 .cmd
= NL80211_CMD_REGISTER_BEACONS
,
11266 .doit
= nl80211_register_beacons
,
11267 .policy
= nl80211_policy
,
11268 .flags
= GENL_ADMIN_PERM
,
11269 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11270 NL80211_FLAG_NEED_RTNL
,
11273 .cmd
= NL80211_CMD_SET_NOACK_MAP
,
11274 .doit
= nl80211_set_noack_map
,
11275 .policy
= nl80211_policy
,
11276 .flags
= GENL_ADMIN_PERM
,
11277 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11278 NL80211_FLAG_NEED_RTNL
,
11281 .cmd
= NL80211_CMD_START_P2P_DEVICE
,
11282 .doit
= nl80211_start_p2p_device
,
11283 .policy
= nl80211_policy
,
11284 .flags
= GENL_ADMIN_PERM
,
11285 .internal_flags
= NL80211_FLAG_NEED_WDEV
|
11286 NL80211_FLAG_NEED_RTNL
,
11289 .cmd
= NL80211_CMD_STOP_P2P_DEVICE
,
11290 .doit
= nl80211_stop_p2p_device
,
11291 .policy
= nl80211_policy
,
11292 .flags
= GENL_ADMIN_PERM
,
11293 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11294 NL80211_FLAG_NEED_RTNL
,
11297 .cmd
= NL80211_CMD_SET_MCAST_RATE
,
11298 .doit
= nl80211_set_mcast_rate
,
11299 .policy
= nl80211_policy
,
11300 .flags
= GENL_ADMIN_PERM
,
11301 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11302 NL80211_FLAG_NEED_RTNL
,
11305 .cmd
= NL80211_CMD_SET_MAC_ACL
,
11306 .doit
= nl80211_set_mac_acl
,
11307 .policy
= nl80211_policy
,
11308 .flags
= GENL_ADMIN_PERM
,
11309 .internal_flags
= NL80211_FLAG_NEED_NETDEV
|
11310 NL80211_FLAG_NEED_RTNL
,
11313 .cmd
= NL80211_CMD_RADAR_DETECT
,
11314 .doit
= nl80211_start_radar_detection
,
11315 .policy
= nl80211_policy
,
11316 .flags
= GENL_ADMIN_PERM
,
11317 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11318 NL80211_FLAG_NEED_RTNL
,
11321 .cmd
= NL80211_CMD_GET_PROTOCOL_FEATURES
,
11322 .doit
= nl80211_get_protocol_features
,
11323 .policy
= nl80211_policy
,
11326 .cmd
= NL80211_CMD_UPDATE_FT_IES
,
11327 .doit
= nl80211_update_ft_ies
,
11328 .policy
= nl80211_policy
,
11329 .flags
= GENL_ADMIN_PERM
,
11330 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11331 NL80211_FLAG_NEED_RTNL
,
11334 .cmd
= NL80211_CMD_CRIT_PROTOCOL_START
,
11335 .doit
= nl80211_crit_protocol_start
,
11336 .policy
= nl80211_policy
,
11337 .flags
= GENL_ADMIN_PERM
,
11338 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11339 NL80211_FLAG_NEED_RTNL
,
11342 .cmd
= NL80211_CMD_CRIT_PROTOCOL_STOP
,
11343 .doit
= nl80211_crit_protocol_stop
,
11344 .policy
= nl80211_policy
,
11345 .flags
= GENL_ADMIN_PERM
,
11346 .internal_flags
= NL80211_FLAG_NEED_WDEV_UP
|
11347 NL80211_FLAG_NEED_RTNL
,
11350 .cmd
= NL80211_CMD_GET_COALESCE
,
11351 .doit
= nl80211_get_coalesce
,
11352 .policy
= nl80211_policy
,
11353 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11354 NL80211_FLAG_NEED_RTNL
,
11357 .cmd
= NL80211_CMD_SET_COALESCE
,
11358 .doit
= nl80211_set_coalesce
,
11359 .policy
= nl80211_policy
,
11360 .flags
= GENL_ADMIN_PERM
,
11361 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11362 NL80211_FLAG_NEED_RTNL
,
11365 .cmd
= NL80211_CMD_CHANNEL_SWITCH
,
11366 .doit
= nl80211_channel_switch
,
11367 .policy
= nl80211_policy
,
11368 .flags
= GENL_ADMIN_PERM
,
11369 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11370 NL80211_FLAG_NEED_RTNL
,
11373 .cmd
= NL80211_CMD_VENDOR
,
11374 .doit
= nl80211_vendor_cmd
,
11375 .dumpit
= nl80211_vendor_cmd_dump
,
11376 .policy
= nl80211_policy
,
11377 .flags
= GENL_ADMIN_PERM
,
11378 .internal_flags
= NL80211_FLAG_NEED_WIPHY
|
11379 NL80211_FLAG_NEED_RTNL
,
11382 .cmd
= NL80211_CMD_SET_QOS_MAP
,
11383 .doit
= nl80211_set_qos_map
,
11384 .policy
= nl80211_policy
,
11385 .flags
= GENL_ADMIN_PERM
,
11386 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11387 NL80211_FLAG_NEED_RTNL
,
11390 .cmd
= NL80211_CMD_ADD_TX_TS
,
11391 .doit
= nl80211_add_tx_ts
,
11392 .policy
= nl80211_policy
,
11393 .flags
= GENL_ADMIN_PERM
,
11394 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11395 NL80211_FLAG_NEED_RTNL
,
11398 .cmd
= NL80211_CMD_DEL_TX_TS
,
11399 .doit
= nl80211_del_tx_ts
,
11400 .policy
= nl80211_policy
,
11401 .flags
= GENL_ADMIN_PERM
,
11402 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11403 NL80211_FLAG_NEED_RTNL
,
11406 .cmd
= NL80211_CMD_TDLS_CHANNEL_SWITCH
,
11407 .doit
= nl80211_tdls_channel_switch
,
11408 .policy
= nl80211_policy
,
11409 .flags
= GENL_ADMIN_PERM
,
11410 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11411 NL80211_FLAG_NEED_RTNL
,
11414 .cmd
= NL80211_CMD_TDLS_CANCEL_CHANNEL_SWITCH
,
11415 .doit
= nl80211_tdls_cancel_channel_switch
,
11416 .policy
= nl80211_policy
,
11417 .flags
= GENL_ADMIN_PERM
,
11418 .internal_flags
= NL80211_FLAG_NEED_NETDEV_UP
|
11419 NL80211_FLAG_NEED_RTNL
,
11423 /* notification functions */
11425 void nl80211_notify_wiphy(struct cfg80211_registered_device
*rdev
,
11426 enum nl80211_commands cmd
)
11428 struct sk_buff
*msg
;
11429 struct nl80211_dump_wiphy_state state
= {};
11431 WARN_ON(cmd
!= NL80211_CMD_NEW_WIPHY
&&
11432 cmd
!= NL80211_CMD_DEL_WIPHY
);
11434 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11438 if (nl80211_send_wiphy(rdev
, cmd
, msg
, 0, 0, 0, &state
) < 0) {
11443 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11444 NL80211_MCGRP_CONFIG
, GFP_KERNEL
);
11447 static int nl80211_add_scan_req(struct sk_buff
*msg
,
11448 struct cfg80211_registered_device
*rdev
)
11450 struct cfg80211_scan_request
*req
= rdev
->scan_req
;
11451 struct nlattr
*nest
;
11457 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_SSIDS
);
11459 goto nla_put_failure
;
11460 for (i
= 0; i
< req
->n_ssids
; i
++) {
11461 if (nla_put(msg
, i
, req
->ssids
[i
].ssid_len
, req
->ssids
[i
].ssid
))
11462 goto nla_put_failure
;
11464 nla_nest_end(msg
, nest
);
11466 nest
= nla_nest_start(msg
, NL80211_ATTR_SCAN_FREQUENCIES
);
11468 goto nla_put_failure
;
11469 for (i
= 0; i
< req
->n_channels
; i
++) {
11470 if (nla_put_u32(msg
, i
, req
->channels
[i
]->center_freq
))
11471 goto nla_put_failure
;
11473 nla_nest_end(msg
, nest
);
11476 nla_put(msg
, NL80211_ATTR_IE
, req
->ie_len
, req
->ie
))
11477 goto nla_put_failure
;
11480 nla_put_u32(msg
, NL80211_ATTR_SCAN_FLAGS
, req
->flags
))
11481 goto nla_put_failure
;
11488 static int nl80211_send_scan_msg(struct sk_buff
*msg
,
11489 struct cfg80211_registered_device
*rdev
,
11490 struct wireless_dev
*wdev
,
11491 u32 portid
, u32 seq
, int flags
,
11496 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
, cmd
);
11500 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11501 (wdev
->netdev
&& nla_put_u32(msg
, NL80211_ATTR_IFINDEX
,
11502 wdev
->netdev
->ifindex
)) ||
11503 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)))
11504 goto nla_put_failure
;
11506 /* ignore errors and send incomplete event anyway */
11507 nl80211_add_scan_req(msg
, rdev
);
11509 genlmsg_end(msg
, hdr
);
11513 genlmsg_cancel(msg
, hdr
);
11518 nl80211_send_sched_scan_msg(struct sk_buff
*msg
,
11519 struct cfg80211_registered_device
*rdev
,
11520 struct net_device
*netdev
,
11521 u32 portid
, u32 seq
, int flags
, u32 cmd
)
11525 hdr
= nl80211hdr_put(msg
, portid
, seq
, flags
, cmd
);
11529 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11530 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
))
11531 goto nla_put_failure
;
11533 genlmsg_end(msg
, hdr
);
11537 genlmsg_cancel(msg
, hdr
);
11541 void nl80211_send_scan_start(struct cfg80211_registered_device
*rdev
,
11542 struct wireless_dev
*wdev
)
11544 struct sk_buff
*msg
;
11546 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11550 if (nl80211_send_scan_msg(msg
, rdev
, wdev
, 0, 0, 0,
11551 NL80211_CMD_TRIGGER_SCAN
) < 0) {
11556 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11557 NL80211_MCGRP_SCAN
, GFP_KERNEL
);
11560 struct sk_buff
*nl80211_build_scan_msg(struct cfg80211_registered_device
*rdev
,
11561 struct wireless_dev
*wdev
, bool aborted
)
11563 struct sk_buff
*msg
;
11565 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11569 if (nl80211_send_scan_msg(msg
, rdev
, wdev
, 0, 0, 0,
11570 aborted
? NL80211_CMD_SCAN_ABORTED
:
11571 NL80211_CMD_NEW_SCAN_RESULTS
) < 0) {
11579 void nl80211_send_scan_result(struct cfg80211_registered_device
*rdev
,
11580 struct sk_buff
*msg
)
11585 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11586 NL80211_MCGRP_SCAN
, GFP_KERNEL
);
11589 void nl80211_send_sched_scan_results(struct cfg80211_registered_device
*rdev
,
11590 struct net_device
*netdev
)
11592 struct sk_buff
*msg
;
11594 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11598 if (nl80211_send_sched_scan_msg(msg
, rdev
, netdev
, 0, 0, 0,
11599 NL80211_CMD_SCHED_SCAN_RESULTS
) < 0) {
11604 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11605 NL80211_MCGRP_SCAN
, GFP_KERNEL
);
11608 void nl80211_send_sched_scan(struct cfg80211_registered_device
*rdev
,
11609 struct net_device
*netdev
, u32 cmd
)
11611 struct sk_buff
*msg
;
11613 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11617 if (nl80211_send_sched_scan_msg(msg
, rdev
, netdev
, 0, 0, 0, cmd
) < 0) {
11622 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11623 NL80211_MCGRP_SCAN
, GFP_KERNEL
);
11626 static bool nl80211_reg_change_event_fill(struct sk_buff
*msg
,
11627 struct regulatory_request
*request
)
11629 /* Userspace can always count this one always being set */
11630 if (nla_put_u8(msg
, NL80211_ATTR_REG_INITIATOR
, request
->initiator
))
11631 goto nla_put_failure
;
11633 if (request
->alpha2
[0] == '0' && request
->alpha2
[1] == '0') {
11634 if (nla_put_u8(msg
, NL80211_ATTR_REG_TYPE
,
11635 NL80211_REGDOM_TYPE_WORLD
))
11636 goto nla_put_failure
;
11637 } else if (request
->alpha2
[0] == '9' && request
->alpha2
[1] == '9') {
11638 if (nla_put_u8(msg
, NL80211_ATTR_REG_TYPE
,
11639 NL80211_REGDOM_TYPE_CUSTOM_WORLD
))
11640 goto nla_put_failure
;
11641 } else if ((request
->alpha2
[0] == '9' && request
->alpha2
[1] == '8') ||
11642 request
->intersect
) {
11643 if (nla_put_u8(msg
, NL80211_ATTR_REG_TYPE
,
11644 NL80211_REGDOM_TYPE_INTERSECTION
))
11645 goto nla_put_failure
;
11647 if (nla_put_u8(msg
, NL80211_ATTR_REG_TYPE
,
11648 NL80211_REGDOM_TYPE_COUNTRY
) ||
11649 nla_put_string(msg
, NL80211_ATTR_REG_ALPHA2
,
11651 goto nla_put_failure
;
11654 if (request
->wiphy_idx
!= WIPHY_IDX_INVALID
) {
11655 struct wiphy
*wiphy
= wiphy_idx_to_wiphy(request
->wiphy_idx
);
11658 nla_put_u32(msg
, NL80211_ATTR_WIPHY
, request
->wiphy_idx
))
11659 goto nla_put_failure
;
11662 wiphy
->regulatory_flags
& REGULATORY_WIPHY_SELF_MANAGED
&&
11663 nla_put_flag(msg
, NL80211_ATTR_WIPHY_SELF_MANAGED_REG
))
11664 goto nla_put_failure
;
11674 * This can happen on global regulatory changes or device specific settings
11675 * based on custom regulatory domains.
11677 void nl80211_common_reg_change_event(enum nl80211_commands cmd_id
,
11678 struct regulatory_request
*request
)
11680 struct sk_buff
*msg
;
11683 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11687 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd_id
);
11693 if (nl80211_reg_change_event_fill(msg
, request
) == false)
11694 goto nla_put_failure
;
11696 genlmsg_end(msg
, hdr
);
11699 genlmsg_multicast_allns(&nl80211_fam
, msg
, 0,
11700 NL80211_MCGRP_REGULATORY
, GFP_ATOMIC
);
11706 genlmsg_cancel(msg
, hdr
);
11710 static void nl80211_send_mlme_event(struct cfg80211_registered_device
*rdev
,
11711 struct net_device
*netdev
,
11712 const u8
*buf
, size_t len
,
11713 enum nl80211_commands cmd
, gfp_t gfp
,
11716 struct sk_buff
*msg
;
11719 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
11723 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
11729 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11730 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
11731 nla_put(msg
, NL80211_ATTR_FRAME
, len
, buf
))
11732 goto nla_put_failure
;
11734 if (uapsd_queues
>= 0) {
11735 struct nlattr
*nla_wmm
=
11736 nla_nest_start(msg
, NL80211_ATTR_STA_WME
);
11738 goto nla_put_failure
;
11740 if (nla_put_u8(msg
, NL80211_STA_WME_UAPSD_QUEUES
,
11742 goto nla_put_failure
;
11744 nla_nest_end(msg
, nla_wmm
);
11747 genlmsg_end(msg
, hdr
);
11749 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11750 NL80211_MCGRP_MLME
, gfp
);
11754 genlmsg_cancel(msg
, hdr
);
11758 void nl80211_send_rx_auth(struct cfg80211_registered_device
*rdev
,
11759 struct net_device
*netdev
, const u8
*buf
,
11760 size_t len
, gfp_t gfp
)
11762 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
11763 NL80211_CMD_AUTHENTICATE
, gfp
, -1);
11766 void nl80211_send_rx_assoc(struct cfg80211_registered_device
*rdev
,
11767 struct net_device
*netdev
, const u8
*buf
,
11768 size_t len
, gfp_t gfp
, int uapsd_queues
)
11770 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
11771 NL80211_CMD_ASSOCIATE
, gfp
, uapsd_queues
);
11774 void nl80211_send_deauth(struct cfg80211_registered_device
*rdev
,
11775 struct net_device
*netdev
, const u8
*buf
,
11776 size_t len
, gfp_t gfp
)
11778 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
11779 NL80211_CMD_DEAUTHENTICATE
, gfp
, -1);
11782 void nl80211_send_disassoc(struct cfg80211_registered_device
*rdev
,
11783 struct net_device
*netdev
, const u8
*buf
,
11784 size_t len
, gfp_t gfp
)
11786 nl80211_send_mlme_event(rdev
, netdev
, buf
, len
,
11787 NL80211_CMD_DISASSOCIATE
, gfp
, -1);
11790 void cfg80211_rx_unprot_mlme_mgmt(struct net_device
*dev
, const u8
*buf
,
11793 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
11794 struct wiphy
*wiphy
= wdev
->wiphy
;
11795 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
11796 const struct ieee80211_mgmt
*mgmt
= (void *)buf
;
11799 if (WARN_ON(len
< 2))
11802 if (ieee80211_is_deauth(mgmt
->frame_control
))
11803 cmd
= NL80211_CMD_UNPROT_DEAUTHENTICATE
;
11805 cmd
= NL80211_CMD_UNPROT_DISASSOCIATE
;
11807 trace_cfg80211_rx_unprot_mlme_mgmt(dev
, buf
, len
);
11808 nl80211_send_mlme_event(rdev
, dev
, buf
, len
, cmd
, GFP_ATOMIC
, -1);
11810 EXPORT_SYMBOL(cfg80211_rx_unprot_mlme_mgmt
);
11812 static void nl80211_send_mlme_timeout(struct cfg80211_registered_device
*rdev
,
11813 struct net_device
*netdev
, int cmd
,
11814 const u8
*addr
, gfp_t gfp
)
11816 struct sk_buff
*msg
;
11819 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
11823 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
11829 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11830 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
11831 nla_put_flag(msg
, NL80211_ATTR_TIMED_OUT
) ||
11832 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
))
11833 goto nla_put_failure
;
11835 genlmsg_end(msg
, hdr
);
11837 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11838 NL80211_MCGRP_MLME
, gfp
);
11842 genlmsg_cancel(msg
, hdr
);
11846 void nl80211_send_auth_timeout(struct cfg80211_registered_device
*rdev
,
11847 struct net_device
*netdev
, const u8
*addr
,
11850 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_AUTHENTICATE
,
11854 void nl80211_send_assoc_timeout(struct cfg80211_registered_device
*rdev
,
11855 struct net_device
*netdev
, const u8
*addr
,
11858 nl80211_send_mlme_timeout(rdev
, netdev
, NL80211_CMD_ASSOCIATE
,
11862 void nl80211_send_connect_result(struct cfg80211_registered_device
*rdev
,
11863 struct net_device
*netdev
, const u8
*bssid
,
11864 const u8
*req_ie
, size_t req_ie_len
,
11865 const u8
*resp_ie
, size_t resp_ie_len
,
11866 u16 status
, gfp_t gfp
)
11868 struct sk_buff
*msg
;
11871 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
11875 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_CONNECT
);
11881 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11882 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
11883 (bssid
&& nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
)) ||
11884 nla_put_u16(msg
, NL80211_ATTR_STATUS_CODE
, status
) ||
11886 nla_put(msg
, NL80211_ATTR_REQ_IE
, req_ie_len
, req_ie
)) ||
11888 nla_put(msg
, NL80211_ATTR_RESP_IE
, resp_ie_len
, resp_ie
)))
11889 goto nla_put_failure
;
11891 genlmsg_end(msg
, hdr
);
11893 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11894 NL80211_MCGRP_MLME
, gfp
);
11898 genlmsg_cancel(msg
, hdr
);
11903 void nl80211_send_roamed(struct cfg80211_registered_device
*rdev
,
11904 struct net_device
*netdev
, const u8
*bssid
,
11905 const u8
*req_ie
, size_t req_ie_len
,
11906 const u8
*resp_ie
, size_t resp_ie_len
, gfp_t gfp
)
11908 struct sk_buff
*msg
;
11911 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
11915 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_ROAM
);
11921 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11922 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
11923 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
) ||
11925 nla_put(msg
, NL80211_ATTR_REQ_IE
, req_ie_len
, req_ie
)) ||
11927 nla_put(msg
, NL80211_ATTR_RESP_IE
, resp_ie_len
, resp_ie
)))
11928 goto nla_put_failure
;
11930 genlmsg_end(msg
, hdr
);
11932 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11933 NL80211_MCGRP_MLME
, gfp
);
11937 genlmsg_cancel(msg
, hdr
);
11942 void nl80211_send_disconnected(struct cfg80211_registered_device
*rdev
,
11943 struct net_device
*netdev
, u16 reason
,
11944 const u8
*ie
, size_t ie_len
, bool from_ap
)
11946 struct sk_buff
*msg
;
11949 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
11953 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_DISCONNECT
);
11959 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11960 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
11961 (from_ap
&& reason
&&
11962 nla_put_u16(msg
, NL80211_ATTR_REASON_CODE
, reason
)) ||
11964 nla_put_flag(msg
, NL80211_ATTR_DISCONNECTED_BY_AP
)) ||
11965 (ie
&& nla_put(msg
, NL80211_ATTR_IE
, ie_len
, ie
)))
11966 goto nla_put_failure
;
11968 genlmsg_end(msg
, hdr
);
11970 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
11971 NL80211_MCGRP_MLME
, GFP_KERNEL
);
11975 genlmsg_cancel(msg
, hdr
);
11980 void nl80211_send_ibss_bssid(struct cfg80211_registered_device
*rdev
,
11981 struct net_device
*netdev
, const u8
*bssid
,
11984 struct sk_buff
*msg
;
11987 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
11991 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_JOIN_IBSS
);
11997 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
11998 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
11999 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
))
12000 goto nla_put_failure
;
12002 genlmsg_end(msg
, hdr
);
12004 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12005 NL80211_MCGRP_MLME
, gfp
);
12009 genlmsg_cancel(msg
, hdr
);
12013 void cfg80211_notify_new_peer_candidate(struct net_device
*dev
, const u8
*addr
,
12014 const u8
* ie
, u8 ie_len
, gfp_t gfp
)
12016 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12017 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
12018 struct sk_buff
*msg
;
12021 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_MESH_POINT
))
12024 trace_cfg80211_notify_new_peer_candidate(dev
, addr
);
12026 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12030 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_NEW_PEER_CANDIDATE
);
12036 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12037 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
12038 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
) ||
12040 nla_put(msg
, NL80211_ATTR_IE
, ie_len
, ie
)))
12041 goto nla_put_failure
;
12043 genlmsg_end(msg
, hdr
);
12045 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12046 NL80211_MCGRP_MLME
, gfp
);
12050 genlmsg_cancel(msg
, hdr
);
12053 EXPORT_SYMBOL(cfg80211_notify_new_peer_candidate
);
12055 void nl80211_michael_mic_failure(struct cfg80211_registered_device
*rdev
,
12056 struct net_device
*netdev
, const u8
*addr
,
12057 enum nl80211_key_type key_type
, int key_id
,
12058 const u8
*tsc
, gfp_t gfp
)
12060 struct sk_buff
*msg
;
12063 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12067 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_MICHAEL_MIC_FAILURE
);
12073 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12074 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
12075 (addr
&& nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
)) ||
12076 nla_put_u32(msg
, NL80211_ATTR_KEY_TYPE
, key_type
) ||
12078 nla_put_u8(msg
, NL80211_ATTR_KEY_IDX
, key_id
)) ||
12079 (tsc
&& nla_put(msg
, NL80211_ATTR_KEY_SEQ
, 6, tsc
)))
12080 goto nla_put_failure
;
12082 genlmsg_end(msg
, hdr
);
12084 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12085 NL80211_MCGRP_MLME
, gfp
);
12089 genlmsg_cancel(msg
, hdr
);
12093 void nl80211_send_beacon_hint_event(struct wiphy
*wiphy
,
12094 struct ieee80211_channel
*channel_before
,
12095 struct ieee80211_channel
*channel_after
)
12097 struct sk_buff
*msg
;
12099 struct nlattr
*nl_freq
;
12101 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_ATOMIC
);
12105 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_REG_BEACON_HINT
);
12112 * Since we are applying the beacon hint to a wiphy we know its
12113 * wiphy_idx is valid
12115 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, get_wiphy_idx(wiphy
)))
12116 goto nla_put_failure
;
12119 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_BEFORE
);
12121 goto nla_put_failure
;
12122 if (nl80211_msg_put_channel(msg
, channel_before
, false))
12123 goto nla_put_failure
;
12124 nla_nest_end(msg
, nl_freq
);
12127 nl_freq
= nla_nest_start(msg
, NL80211_ATTR_FREQ_AFTER
);
12129 goto nla_put_failure
;
12130 if (nl80211_msg_put_channel(msg
, channel_after
, false))
12131 goto nla_put_failure
;
12132 nla_nest_end(msg
, nl_freq
);
12134 genlmsg_end(msg
, hdr
);
12137 genlmsg_multicast_allns(&nl80211_fam
, msg
, 0,
12138 NL80211_MCGRP_REGULATORY
, GFP_ATOMIC
);
12144 genlmsg_cancel(msg
, hdr
);
12148 static void nl80211_send_remain_on_chan_event(
12149 int cmd
, struct cfg80211_registered_device
*rdev
,
12150 struct wireless_dev
*wdev
, u64 cookie
,
12151 struct ieee80211_channel
*chan
,
12152 unsigned int duration
, gfp_t gfp
)
12154 struct sk_buff
*msg
;
12157 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12161 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
12167 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12168 (wdev
->netdev
&& nla_put_u32(msg
, NL80211_ATTR_IFINDEX
,
12169 wdev
->netdev
->ifindex
)) ||
12170 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)) ||
12171 nla_put_u32(msg
, NL80211_ATTR_WIPHY_FREQ
, chan
->center_freq
) ||
12172 nla_put_u32(msg
, NL80211_ATTR_WIPHY_CHANNEL_TYPE
,
12173 NL80211_CHAN_NO_HT
) ||
12174 nla_put_u64(msg
, NL80211_ATTR_COOKIE
, cookie
))
12175 goto nla_put_failure
;
12177 if (cmd
== NL80211_CMD_REMAIN_ON_CHANNEL
&&
12178 nla_put_u32(msg
, NL80211_ATTR_DURATION
, duration
))
12179 goto nla_put_failure
;
12181 genlmsg_end(msg
, hdr
);
12183 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12184 NL80211_MCGRP_MLME
, gfp
);
12188 genlmsg_cancel(msg
, hdr
);
12192 void cfg80211_ready_on_channel(struct wireless_dev
*wdev
, u64 cookie
,
12193 struct ieee80211_channel
*chan
,
12194 unsigned int duration
, gfp_t gfp
)
12196 struct wiphy
*wiphy
= wdev
->wiphy
;
12197 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12199 trace_cfg80211_ready_on_channel(wdev
, cookie
, chan
, duration
);
12200 nl80211_send_remain_on_chan_event(NL80211_CMD_REMAIN_ON_CHANNEL
,
12201 rdev
, wdev
, cookie
, chan
,
12204 EXPORT_SYMBOL(cfg80211_ready_on_channel
);
12206 void cfg80211_remain_on_channel_expired(struct wireless_dev
*wdev
, u64 cookie
,
12207 struct ieee80211_channel
*chan
,
12210 struct wiphy
*wiphy
= wdev
->wiphy
;
12211 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12213 trace_cfg80211_ready_on_channel_expired(wdev
, cookie
, chan
);
12214 nl80211_send_remain_on_chan_event(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL
,
12215 rdev
, wdev
, cookie
, chan
, 0, gfp
);
12217 EXPORT_SYMBOL(cfg80211_remain_on_channel_expired
);
12219 void cfg80211_new_sta(struct net_device
*dev
, const u8
*mac_addr
,
12220 struct station_info
*sinfo
, gfp_t gfp
)
12222 struct wiphy
*wiphy
= dev
->ieee80211_ptr
->wiphy
;
12223 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12224 struct sk_buff
*msg
;
12226 trace_cfg80211_new_sta(dev
, mac_addr
, sinfo
);
12228 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12232 if (nl80211_send_station(msg
, NL80211_CMD_NEW_STATION
, 0, 0, 0,
12233 rdev
, dev
, mac_addr
, sinfo
) < 0) {
12238 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12239 NL80211_MCGRP_MLME
, gfp
);
12241 EXPORT_SYMBOL(cfg80211_new_sta
);
12243 void cfg80211_del_sta_sinfo(struct net_device
*dev
, const u8
*mac_addr
,
12244 struct station_info
*sinfo
, gfp_t gfp
)
12246 struct wiphy
*wiphy
= dev
->ieee80211_ptr
->wiphy
;
12247 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12248 struct sk_buff
*msg
;
12249 struct station_info empty_sinfo
= {};
12252 sinfo
= &empty_sinfo
;
12254 trace_cfg80211_del_sta(dev
, mac_addr
);
12256 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12260 if (nl80211_send_station(msg
, NL80211_CMD_DEL_STATION
, 0, 0, 0,
12261 rdev
, dev
, mac_addr
, sinfo
) < 0) {
12266 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12267 NL80211_MCGRP_MLME
, gfp
);
12269 EXPORT_SYMBOL(cfg80211_del_sta_sinfo
);
12271 void cfg80211_conn_failed(struct net_device
*dev
, const u8
*mac_addr
,
12272 enum nl80211_connect_failed_reason reason
,
12275 struct wiphy
*wiphy
= dev
->ieee80211_ptr
->wiphy
;
12276 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12277 struct sk_buff
*msg
;
12280 msg
= nlmsg_new(NLMSG_GOODSIZE
, gfp
);
12284 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_CONN_FAILED
);
12290 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
12291 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac_addr
) ||
12292 nla_put_u32(msg
, NL80211_ATTR_CONN_FAILED_REASON
, reason
))
12293 goto nla_put_failure
;
12295 genlmsg_end(msg
, hdr
);
12297 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12298 NL80211_MCGRP_MLME
, gfp
);
12302 genlmsg_cancel(msg
, hdr
);
12305 EXPORT_SYMBOL(cfg80211_conn_failed
);
12307 static bool __nl80211_unexpected_frame(struct net_device
*dev
, u8 cmd
,
12308 const u8
*addr
, gfp_t gfp
)
12310 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12311 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
12312 struct sk_buff
*msg
;
12314 u32 nlportid
= ACCESS_ONCE(wdev
->ap_unexpected_nlportid
);
12319 msg
= nlmsg_new(100, gfp
);
12323 hdr
= nl80211hdr_put(msg
, 0, 0, 0, cmd
);
12329 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12330 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
12331 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
))
12332 goto nla_put_failure
;
12334 genlmsg_end(msg
, hdr
);
12335 genlmsg_unicast(wiphy_net(&rdev
->wiphy
), msg
, nlportid
);
12339 genlmsg_cancel(msg
, hdr
);
12344 bool cfg80211_rx_spurious_frame(struct net_device
*dev
,
12345 const u8
*addr
, gfp_t gfp
)
12347 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12350 trace_cfg80211_rx_spurious_frame(dev
, addr
);
12352 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_AP
&&
12353 wdev
->iftype
!= NL80211_IFTYPE_P2P_GO
)) {
12354 trace_cfg80211_return_bool(false);
12357 ret
= __nl80211_unexpected_frame(dev
, NL80211_CMD_UNEXPECTED_FRAME
,
12359 trace_cfg80211_return_bool(ret
);
12362 EXPORT_SYMBOL(cfg80211_rx_spurious_frame
);
12364 bool cfg80211_rx_unexpected_4addr_frame(struct net_device
*dev
,
12365 const u8
*addr
, gfp_t gfp
)
12367 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12370 trace_cfg80211_rx_unexpected_4addr_frame(dev
, addr
);
12372 if (WARN_ON(wdev
->iftype
!= NL80211_IFTYPE_AP
&&
12373 wdev
->iftype
!= NL80211_IFTYPE_P2P_GO
&&
12374 wdev
->iftype
!= NL80211_IFTYPE_AP_VLAN
)) {
12375 trace_cfg80211_return_bool(false);
12378 ret
= __nl80211_unexpected_frame(dev
,
12379 NL80211_CMD_UNEXPECTED_4ADDR_FRAME
,
12381 trace_cfg80211_return_bool(ret
);
12384 EXPORT_SYMBOL(cfg80211_rx_unexpected_4addr_frame
);
12386 int nl80211_send_mgmt(struct cfg80211_registered_device
*rdev
,
12387 struct wireless_dev
*wdev
, u32 nlportid
,
12388 int freq
, int sig_dbm
,
12389 const u8
*buf
, size_t len
, u32 flags
, gfp_t gfp
)
12391 struct net_device
*netdev
= wdev
->netdev
;
12392 struct sk_buff
*msg
;
12395 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12399 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_FRAME
);
12405 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12406 (netdev
&& nla_put_u32(msg
, NL80211_ATTR_IFINDEX
,
12407 netdev
->ifindex
)) ||
12408 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)) ||
12409 nla_put_u32(msg
, NL80211_ATTR_WIPHY_FREQ
, freq
) ||
12411 nla_put_u32(msg
, NL80211_ATTR_RX_SIGNAL_DBM
, sig_dbm
)) ||
12412 nla_put(msg
, NL80211_ATTR_FRAME
, len
, buf
) ||
12414 nla_put_u32(msg
, NL80211_ATTR_RXMGMT_FLAGS
, flags
)))
12415 goto nla_put_failure
;
12417 genlmsg_end(msg
, hdr
);
12419 return genlmsg_unicast(wiphy_net(&rdev
->wiphy
), msg
, nlportid
);
12422 genlmsg_cancel(msg
, hdr
);
12427 void cfg80211_mgmt_tx_status(struct wireless_dev
*wdev
, u64 cookie
,
12428 const u8
*buf
, size_t len
, bool ack
, gfp_t gfp
)
12430 struct wiphy
*wiphy
= wdev
->wiphy
;
12431 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12432 struct net_device
*netdev
= wdev
->netdev
;
12433 struct sk_buff
*msg
;
12436 trace_cfg80211_mgmt_tx_status(wdev
, cookie
, ack
);
12438 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12442 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_FRAME_TX_STATUS
);
12448 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12449 (netdev
&& nla_put_u32(msg
, NL80211_ATTR_IFINDEX
,
12450 netdev
->ifindex
)) ||
12451 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)) ||
12452 nla_put(msg
, NL80211_ATTR_FRAME
, len
, buf
) ||
12453 nla_put_u64(msg
, NL80211_ATTR_COOKIE
, cookie
) ||
12454 (ack
&& nla_put_flag(msg
, NL80211_ATTR_ACK
)))
12455 goto nla_put_failure
;
12457 genlmsg_end(msg
, hdr
);
12459 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12460 NL80211_MCGRP_MLME
, gfp
);
12464 genlmsg_cancel(msg
, hdr
);
12467 EXPORT_SYMBOL(cfg80211_mgmt_tx_status
);
12469 static struct sk_buff
*cfg80211_prepare_cqm(struct net_device
*dev
,
12470 const char *mac
, gfp_t gfp
)
12472 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12473 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
12474 struct sk_buff
*msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12480 cb
= (void **)msg
->cb
;
12482 cb
[0] = nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_NOTIFY_CQM
);
12488 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12489 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
))
12490 goto nla_put_failure
;
12492 if (mac
&& nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, mac
))
12493 goto nla_put_failure
;
12495 cb
[1] = nla_nest_start(msg
, NL80211_ATTR_CQM
);
12497 goto nla_put_failure
;
12507 static void cfg80211_send_cqm(struct sk_buff
*msg
, gfp_t gfp
)
12509 void **cb
= (void **)msg
->cb
;
12510 struct cfg80211_registered_device
*rdev
= cb
[2];
12512 nla_nest_end(msg
, cb
[1]);
12513 genlmsg_end(msg
, cb
[0]);
12515 memset(msg
->cb
, 0, sizeof(msg
->cb
));
12517 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12518 NL80211_MCGRP_MLME
, gfp
);
12521 void cfg80211_cqm_rssi_notify(struct net_device
*dev
,
12522 enum nl80211_cqm_rssi_threshold_event rssi_event
,
12525 struct sk_buff
*msg
;
12527 trace_cfg80211_cqm_rssi_notify(dev
, rssi_event
);
12529 if (WARN_ON(rssi_event
!= NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW
&&
12530 rssi_event
!= NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH
))
12533 msg
= cfg80211_prepare_cqm(dev
, NULL
, gfp
);
12537 if (nla_put_u32(msg
, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT
,
12539 goto nla_put_failure
;
12541 cfg80211_send_cqm(msg
, gfp
);
12548 EXPORT_SYMBOL(cfg80211_cqm_rssi_notify
);
12550 void cfg80211_cqm_txe_notify(struct net_device
*dev
,
12551 const u8
*peer
, u32 num_packets
,
12552 u32 rate
, u32 intvl
, gfp_t gfp
)
12554 struct sk_buff
*msg
;
12556 msg
= cfg80211_prepare_cqm(dev
, peer
, gfp
);
12560 if (nla_put_u32(msg
, NL80211_ATTR_CQM_TXE_PKTS
, num_packets
))
12561 goto nla_put_failure
;
12563 if (nla_put_u32(msg
, NL80211_ATTR_CQM_TXE_RATE
, rate
))
12564 goto nla_put_failure
;
12566 if (nla_put_u32(msg
, NL80211_ATTR_CQM_TXE_INTVL
, intvl
))
12567 goto nla_put_failure
;
12569 cfg80211_send_cqm(msg
, gfp
);
12575 EXPORT_SYMBOL(cfg80211_cqm_txe_notify
);
12577 void cfg80211_cqm_pktloss_notify(struct net_device
*dev
,
12578 const u8
*peer
, u32 num_packets
, gfp_t gfp
)
12580 struct sk_buff
*msg
;
12582 trace_cfg80211_cqm_pktloss_notify(dev
, peer
, num_packets
);
12584 msg
= cfg80211_prepare_cqm(dev
, peer
, gfp
);
12588 if (nla_put_u32(msg
, NL80211_ATTR_CQM_PKT_LOSS_EVENT
, num_packets
))
12589 goto nla_put_failure
;
12591 cfg80211_send_cqm(msg
, gfp
);
12597 EXPORT_SYMBOL(cfg80211_cqm_pktloss_notify
);
12599 void cfg80211_cqm_beacon_loss_notify(struct net_device
*dev
, gfp_t gfp
)
12601 struct sk_buff
*msg
;
12603 msg
= cfg80211_prepare_cqm(dev
, NULL
, gfp
);
12607 if (nla_put_flag(msg
, NL80211_ATTR_CQM_BEACON_LOSS_EVENT
))
12608 goto nla_put_failure
;
12610 cfg80211_send_cqm(msg
, gfp
);
12616 EXPORT_SYMBOL(cfg80211_cqm_beacon_loss_notify
);
12618 static void nl80211_gtk_rekey_notify(struct cfg80211_registered_device
*rdev
,
12619 struct net_device
*netdev
, const u8
*bssid
,
12620 const u8
*replay_ctr
, gfp_t gfp
)
12622 struct sk_buff
*msg
;
12623 struct nlattr
*rekey_attr
;
12626 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12630 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_SET_REKEY_OFFLOAD
);
12636 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12637 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
12638 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, bssid
))
12639 goto nla_put_failure
;
12641 rekey_attr
= nla_nest_start(msg
, NL80211_ATTR_REKEY_DATA
);
12643 goto nla_put_failure
;
12645 if (nla_put(msg
, NL80211_REKEY_DATA_REPLAY_CTR
,
12646 NL80211_REPLAY_CTR_LEN
, replay_ctr
))
12647 goto nla_put_failure
;
12649 nla_nest_end(msg
, rekey_attr
);
12651 genlmsg_end(msg
, hdr
);
12653 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12654 NL80211_MCGRP_MLME
, gfp
);
12658 genlmsg_cancel(msg
, hdr
);
12662 void cfg80211_gtk_rekey_notify(struct net_device
*dev
, const u8
*bssid
,
12663 const u8
*replay_ctr
, gfp_t gfp
)
12665 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12666 struct wiphy
*wiphy
= wdev
->wiphy
;
12667 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12669 trace_cfg80211_gtk_rekey_notify(dev
, bssid
);
12670 nl80211_gtk_rekey_notify(rdev
, dev
, bssid
, replay_ctr
, gfp
);
12672 EXPORT_SYMBOL(cfg80211_gtk_rekey_notify
);
12675 nl80211_pmksa_candidate_notify(struct cfg80211_registered_device
*rdev
,
12676 struct net_device
*netdev
, int index
,
12677 const u8
*bssid
, bool preauth
, gfp_t gfp
)
12679 struct sk_buff
*msg
;
12680 struct nlattr
*attr
;
12683 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12687 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_PMKSA_CANDIDATE
);
12693 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12694 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
))
12695 goto nla_put_failure
;
12697 attr
= nla_nest_start(msg
, NL80211_ATTR_PMKSA_CANDIDATE
);
12699 goto nla_put_failure
;
12701 if (nla_put_u32(msg
, NL80211_PMKSA_CANDIDATE_INDEX
, index
) ||
12702 nla_put(msg
, NL80211_PMKSA_CANDIDATE_BSSID
, ETH_ALEN
, bssid
) ||
12704 nla_put_flag(msg
, NL80211_PMKSA_CANDIDATE_PREAUTH
)))
12705 goto nla_put_failure
;
12707 nla_nest_end(msg
, attr
);
12709 genlmsg_end(msg
, hdr
);
12711 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12712 NL80211_MCGRP_MLME
, gfp
);
12716 genlmsg_cancel(msg
, hdr
);
12720 void cfg80211_pmksa_candidate_notify(struct net_device
*dev
, int index
,
12721 const u8
*bssid
, bool preauth
, gfp_t gfp
)
12723 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12724 struct wiphy
*wiphy
= wdev
->wiphy
;
12725 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12727 trace_cfg80211_pmksa_candidate_notify(dev
, index
, bssid
, preauth
);
12728 nl80211_pmksa_candidate_notify(rdev
, dev
, index
, bssid
, preauth
, gfp
);
12730 EXPORT_SYMBOL(cfg80211_pmksa_candidate_notify
);
12732 static void nl80211_ch_switch_notify(struct cfg80211_registered_device
*rdev
,
12733 struct net_device
*netdev
,
12734 struct cfg80211_chan_def
*chandef
,
12736 enum nl80211_commands notif
,
12739 struct sk_buff
*msg
;
12742 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12746 hdr
= nl80211hdr_put(msg
, 0, 0, 0, notif
);
12752 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
))
12753 goto nla_put_failure
;
12755 if (nl80211_send_chandef(msg
, chandef
))
12756 goto nla_put_failure
;
12758 if ((notif
== NL80211_CMD_CH_SWITCH_STARTED_NOTIFY
) &&
12759 (nla_put_u32(msg
, NL80211_ATTR_CH_SWITCH_COUNT
, count
)))
12760 goto nla_put_failure
;
12762 genlmsg_end(msg
, hdr
);
12764 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12765 NL80211_MCGRP_MLME
, gfp
);
12769 genlmsg_cancel(msg
, hdr
);
12773 void cfg80211_ch_switch_notify(struct net_device
*dev
,
12774 struct cfg80211_chan_def
*chandef
)
12776 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12777 struct wiphy
*wiphy
= wdev
->wiphy
;
12778 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12780 ASSERT_WDEV_LOCK(wdev
);
12782 trace_cfg80211_ch_switch_notify(dev
, chandef
);
12784 wdev
->chandef
= *chandef
;
12785 wdev
->preset_chandef
= *chandef
;
12786 nl80211_ch_switch_notify(rdev
, dev
, chandef
, GFP_KERNEL
,
12787 NL80211_CMD_CH_SWITCH_NOTIFY
, 0);
12789 EXPORT_SYMBOL(cfg80211_ch_switch_notify
);
12791 void cfg80211_ch_switch_started_notify(struct net_device
*dev
,
12792 struct cfg80211_chan_def
*chandef
,
12795 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12796 struct wiphy
*wiphy
= wdev
->wiphy
;
12797 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12799 trace_cfg80211_ch_switch_started_notify(dev
, chandef
);
12801 nl80211_ch_switch_notify(rdev
, dev
, chandef
, GFP_KERNEL
,
12802 NL80211_CMD_CH_SWITCH_STARTED_NOTIFY
, count
);
12804 EXPORT_SYMBOL(cfg80211_ch_switch_started_notify
);
12807 nl80211_radar_notify(struct cfg80211_registered_device
*rdev
,
12808 const struct cfg80211_chan_def
*chandef
,
12809 enum nl80211_radar_event event
,
12810 struct net_device
*netdev
, gfp_t gfp
)
12812 struct sk_buff
*msg
;
12815 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12819 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_RADAR_DETECT
);
12825 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
))
12826 goto nla_put_failure
;
12828 /* NOP and radar events don't need a netdev parameter */
12830 struct wireless_dev
*wdev
= netdev
->ieee80211_ptr
;
12832 if (nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
12833 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)))
12834 goto nla_put_failure
;
12837 if (nla_put_u32(msg
, NL80211_ATTR_RADAR_EVENT
, event
))
12838 goto nla_put_failure
;
12840 if (nl80211_send_chandef(msg
, chandef
))
12841 goto nla_put_failure
;
12843 genlmsg_end(msg
, hdr
);
12845 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12846 NL80211_MCGRP_MLME
, gfp
);
12850 genlmsg_cancel(msg
, hdr
);
12854 void cfg80211_probe_status(struct net_device
*dev
, const u8
*addr
,
12855 u64 cookie
, bool acked
, gfp_t gfp
)
12857 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
12858 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
12859 struct sk_buff
*msg
;
12862 trace_cfg80211_probe_status(dev
, addr
, cookie
, acked
);
12864 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
12869 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_PROBE_CLIENT
);
12875 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12876 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
12877 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, addr
) ||
12878 nla_put_u64(msg
, NL80211_ATTR_COOKIE
, cookie
) ||
12879 (acked
&& nla_put_flag(msg
, NL80211_ATTR_ACK
)))
12880 goto nla_put_failure
;
12882 genlmsg_end(msg
, hdr
);
12884 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
12885 NL80211_MCGRP_MLME
, gfp
);
12889 genlmsg_cancel(msg
, hdr
);
12892 EXPORT_SYMBOL(cfg80211_probe_status
);
12894 void cfg80211_report_obss_beacon(struct wiphy
*wiphy
,
12895 const u8
*frame
, size_t len
,
12896 int freq
, int sig_dbm
)
12898 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
12899 struct sk_buff
*msg
;
12901 struct cfg80211_beacon_registration
*reg
;
12903 trace_cfg80211_report_obss_beacon(wiphy
, frame
, len
, freq
, sig_dbm
);
12905 spin_lock_bh(&rdev
->beacon_registrations_lock
);
12906 list_for_each_entry(reg
, &rdev
->beacon_registrations
, list
) {
12907 msg
= nlmsg_new(len
+ 100, GFP_ATOMIC
);
12909 spin_unlock_bh(&rdev
->beacon_registrations_lock
);
12913 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_FRAME
);
12915 goto nla_put_failure
;
12917 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
12919 nla_put_u32(msg
, NL80211_ATTR_WIPHY_FREQ
, freq
)) ||
12921 nla_put_u32(msg
, NL80211_ATTR_RX_SIGNAL_DBM
, sig_dbm
)) ||
12922 nla_put(msg
, NL80211_ATTR_FRAME
, len
, frame
))
12923 goto nla_put_failure
;
12925 genlmsg_end(msg
, hdr
);
12927 genlmsg_unicast(wiphy_net(&rdev
->wiphy
), msg
, reg
->nlportid
);
12929 spin_unlock_bh(&rdev
->beacon_registrations_lock
);
12933 spin_unlock_bh(&rdev
->beacon_registrations_lock
);
12935 genlmsg_cancel(msg
, hdr
);
12938 EXPORT_SYMBOL(cfg80211_report_obss_beacon
);
12941 static int cfg80211_net_detect_results(struct sk_buff
*msg
,
12942 struct cfg80211_wowlan_wakeup
*wakeup
)
12944 struct cfg80211_wowlan_nd_info
*nd
= wakeup
->net_detect
;
12945 struct nlattr
*nl_results
, *nl_match
, *nl_freqs
;
12948 nl_results
= nla_nest_start(
12949 msg
, NL80211_WOWLAN_TRIG_NET_DETECT_RESULTS
);
12953 for (i
= 0; i
< nd
->n_matches
; i
++) {
12954 struct cfg80211_wowlan_nd_match
*match
= nd
->matches
[i
];
12956 nl_match
= nla_nest_start(msg
, i
);
12960 /* The SSID attribute is optional in nl80211, but for
12961 * simplicity reasons it's always present in the
12962 * cfg80211 structure. If a driver can't pass the
12963 * SSID, that needs to be changed. A zero length SSID
12964 * is still a valid SSID (wildcard), so it cannot be
12965 * used for this purpose.
12967 if (nla_put(msg
, NL80211_ATTR_SSID
, match
->ssid
.ssid_len
,
12968 match
->ssid
.ssid
)) {
12969 nla_nest_cancel(msg
, nl_match
);
12973 if (match
->n_channels
) {
12974 nl_freqs
= nla_nest_start(
12975 msg
, NL80211_ATTR_SCAN_FREQUENCIES
);
12977 nla_nest_cancel(msg
, nl_match
);
12981 for (j
= 0; j
< match
->n_channels
; j
++) {
12982 if (nla_put_u32(msg
, j
, match
->channels
[j
])) {
12983 nla_nest_cancel(msg
, nl_freqs
);
12984 nla_nest_cancel(msg
, nl_match
);
12989 nla_nest_end(msg
, nl_freqs
);
12992 nla_nest_end(msg
, nl_match
);
12996 nla_nest_end(msg
, nl_results
);
13000 void cfg80211_report_wowlan_wakeup(struct wireless_dev
*wdev
,
13001 struct cfg80211_wowlan_wakeup
*wakeup
,
13004 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
13005 struct sk_buff
*msg
;
13009 trace_cfg80211_report_wowlan_wakeup(wdev
->wiphy
, wdev
, wakeup
);
13012 size
+= wakeup
->packet_present_len
;
13014 msg
= nlmsg_new(size
, gfp
);
13018 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_SET_WOWLAN
);
13022 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
13023 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)))
13026 if (wdev
->netdev
&& nla_put_u32(msg
, NL80211_ATTR_IFINDEX
,
13027 wdev
->netdev
->ifindex
))
13031 struct nlattr
*reasons
;
13033 reasons
= nla_nest_start(msg
, NL80211_ATTR_WOWLAN_TRIGGERS
);
13037 if (wakeup
->disconnect
&&
13038 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_DISCONNECT
))
13040 if (wakeup
->magic_pkt
&&
13041 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_MAGIC_PKT
))
13043 if (wakeup
->gtk_rekey_failure
&&
13044 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_GTK_REKEY_FAILURE
))
13046 if (wakeup
->eap_identity_req
&&
13047 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_EAP_IDENT_REQUEST
))
13049 if (wakeup
->four_way_handshake
&&
13050 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_4WAY_HANDSHAKE
))
13052 if (wakeup
->rfkill_release
&&
13053 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_RFKILL_RELEASE
))
13056 if (wakeup
->pattern_idx
>= 0 &&
13057 nla_put_u32(msg
, NL80211_WOWLAN_TRIG_PKT_PATTERN
,
13058 wakeup
->pattern_idx
))
13061 if (wakeup
->tcp_match
&&
13062 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_WAKEUP_TCP_MATCH
))
13065 if (wakeup
->tcp_connlost
&&
13066 nla_put_flag(msg
, NL80211_WOWLAN_TRIG_WAKEUP_TCP_CONNLOST
))
13069 if (wakeup
->tcp_nomoretokens
&&
13071 NL80211_WOWLAN_TRIG_WAKEUP_TCP_NOMORETOKENS
))
13074 if (wakeup
->packet
) {
13075 u32 pkt_attr
= NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211
;
13076 u32 len_attr
= NL80211_WOWLAN_TRIG_WAKEUP_PKT_80211_LEN
;
13078 if (!wakeup
->packet_80211
) {
13080 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023
;
13082 NL80211_WOWLAN_TRIG_WAKEUP_PKT_8023_LEN
;
13085 if (wakeup
->packet_len
&&
13086 nla_put_u32(msg
, len_attr
, wakeup
->packet_len
))
13089 if (nla_put(msg
, pkt_attr
, wakeup
->packet_present_len
,
13094 if (wakeup
->net_detect
&&
13095 cfg80211_net_detect_results(msg
, wakeup
))
13098 nla_nest_end(msg
, reasons
);
13101 genlmsg_end(msg
, hdr
);
13103 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
13104 NL80211_MCGRP_MLME
, gfp
);
13110 EXPORT_SYMBOL(cfg80211_report_wowlan_wakeup
);
13113 void cfg80211_tdls_oper_request(struct net_device
*dev
, const u8
*peer
,
13114 enum nl80211_tdls_operation oper
,
13115 u16 reason_code
, gfp_t gfp
)
13117 struct wireless_dev
*wdev
= dev
->ieee80211_ptr
;
13118 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wdev
->wiphy
);
13119 struct sk_buff
*msg
;
13122 trace_cfg80211_tdls_oper_request(wdev
->wiphy
, dev
, peer
, oper
,
13125 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
13129 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_TDLS_OPER
);
13135 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
13136 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, dev
->ifindex
) ||
13137 nla_put_u8(msg
, NL80211_ATTR_TDLS_OPERATION
, oper
) ||
13138 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, peer
) ||
13139 (reason_code
> 0 &&
13140 nla_put_u16(msg
, NL80211_ATTR_REASON_CODE
, reason_code
)))
13141 goto nla_put_failure
;
13143 genlmsg_end(msg
, hdr
);
13145 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
13146 NL80211_MCGRP_MLME
, gfp
);
13150 genlmsg_cancel(msg
, hdr
);
13153 EXPORT_SYMBOL(cfg80211_tdls_oper_request
);
13155 static int nl80211_netlink_notify(struct notifier_block
* nb
,
13156 unsigned long state
,
13159 struct netlink_notify
*notify
= _notify
;
13160 struct cfg80211_registered_device
*rdev
;
13161 struct wireless_dev
*wdev
;
13162 struct cfg80211_beacon_registration
*reg
, *tmp
;
13164 if (state
!= NETLINK_URELEASE
)
13165 return NOTIFY_DONE
;
13169 list_for_each_entry_rcu(rdev
, &cfg80211_rdev_list
, list
) {
13170 bool schedule_destroy_work
= false;
13171 bool schedule_scan_stop
= false;
13172 struct cfg80211_sched_scan_request
*sched_scan_req
=
13173 rcu_dereference(rdev
->sched_scan_req
);
13175 if (sched_scan_req
&& notify
->portid
&&
13176 sched_scan_req
->owner_nlportid
== notify
->portid
)
13177 schedule_scan_stop
= true;
13179 list_for_each_entry_rcu(wdev
, &rdev
->wdev_list
, list
) {
13180 cfg80211_mlme_unregister_socket(wdev
, notify
->portid
);
13182 if (wdev
->owner_nlportid
== notify
->portid
)
13183 schedule_destroy_work
= true;
13186 spin_lock_bh(&rdev
->beacon_registrations_lock
);
13187 list_for_each_entry_safe(reg
, tmp
, &rdev
->beacon_registrations
,
13189 if (reg
->nlportid
== notify
->portid
) {
13190 list_del(®
->list
);
13195 spin_unlock_bh(&rdev
->beacon_registrations_lock
);
13197 if (schedule_destroy_work
) {
13198 struct cfg80211_iface_destroy
*destroy
;
13200 destroy
= kzalloc(sizeof(*destroy
), GFP_ATOMIC
);
13202 destroy
->nlportid
= notify
->portid
;
13203 spin_lock(&rdev
->destroy_list_lock
);
13204 list_add(&destroy
->list
, &rdev
->destroy_list
);
13205 spin_unlock(&rdev
->destroy_list_lock
);
13206 schedule_work(&rdev
->destroy_work
);
13208 } else if (schedule_scan_stop
) {
13209 sched_scan_req
->owner_nlportid
= 0;
13211 if (rdev
->ops
->sched_scan_stop
&&
13212 rdev
->wiphy
.flags
& WIPHY_FLAG_SUPPORTS_SCHED_SCAN
)
13213 schedule_work(&rdev
->sched_scan_stop_wk
);
13220 * It is possible that the user space process that is controlling the
13221 * indoor setting disappeared, so notify the regulatory core.
13223 regulatory_netlink_notify(notify
->portid
);
13227 static struct notifier_block nl80211_netlink_notifier
= {
13228 .notifier_call
= nl80211_netlink_notify
,
13231 void cfg80211_ft_event(struct net_device
*netdev
,
13232 struct cfg80211_ft_event_params
*ft_event
)
13234 struct wiphy
*wiphy
= netdev
->ieee80211_ptr
->wiphy
;
13235 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
13236 struct sk_buff
*msg
;
13239 trace_cfg80211_ft_event(wiphy
, netdev
, ft_event
);
13241 if (!ft_event
->target_ap
)
13244 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
13248 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_FT_EVENT
);
13252 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
13253 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, netdev
->ifindex
) ||
13254 nla_put(msg
, NL80211_ATTR_MAC
, ETH_ALEN
, ft_event
->target_ap
))
13257 if (ft_event
->ies
&&
13258 nla_put(msg
, NL80211_ATTR_IE
, ft_event
->ies_len
, ft_event
->ies
))
13260 if (ft_event
->ric_ies
&&
13261 nla_put(msg
, NL80211_ATTR_IE_RIC
, ft_event
->ric_ies_len
,
13262 ft_event
->ric_ies
))
13265 genlmsg_end(msg
, hdr
);
13267 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(&rdev
->wiphy
), msg
, 0,
13268 NL80211_MCGRP_MLME
, GFP_KERNEL
);
13273 EXPORT_SYMBOL(cfg80211_ft_event
);
13275 void cfg80211_crit_proto_stopped(struct wireless_dev
*wdev
, gfp_t gfp
)
13277 struct cfg80211_registered_device
*rdev
;
13278 struct sk_buff
*msg
;
13282 rdev
= wiphy_to_rdev(wdev
->wiphy
);
13283 if (!rdev
->crit_proto_nlportid
)
13286 nlportid
= rdev
->crit_proto_nlportid
;
13287 rdev
->crit_proto_nlportid
= 0;
13289 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, gfp
);
13293 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_CRIT_PROTOCOL_STOP
);
13295 goto nla_put_failure
;
13297 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
13298 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)))
13299 goto nla_put_failure
;
13301 genlmsg_end(msg
, hdr
);
13303 genlmsg_unicast(wiphy_net(&rdev
->wiphy
), msg
, nlportid
);
13308 genlmsg_cancel(msg
, hdr
);
13312 EXPORT_SYMBOL(cfg80211_crit_proto_stopped
);
13314 void nl80211_send_ap_stopped(struct wireless_dev
*wdev
)
13316 struct wiphy
*wiphy
= wdev
->wiphy
;
13317 struct cfg80211_registered_device
*rdev
= wiphy_to_rdev(wiphy
);
13318 struct sk_buff
*msg
;
13321 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
13325 hdr
= nl80211hdr_put(msg
, 0, 0, 0, NL80211_CMD_STOP_AP
);
13329 if (nla_put_u32(msg
, NL80211_ATTR_WIPHY
, rdev
->wiphy_idx
) ||
13330 nla_put_u32(msg
, NL80211_ATTR_IFINDEX
, wdev
->netdev
->ifindex
) ||
13331 nla_put_u64(msg
, NL80211_ATTR_WDEV
, wdev_id(wdev
)))
13334 genlmsg_end(msg
, hdr
);
13336 genlmsg_multicast_netns(&nl80211_fam
, wiphy_net(wiphy
), msg
, 0,
13337 NL80211_MCGRP_MLME
, GFP_KERNEL
);
13343 /* initialisation/exit functions */
13345 int nl80211_init(void)
13349 err
= genl_register_family_with_ops_groups(&nl80211_fam
, nl80211_ops
,
13354 err
= netlink_register_notifier(&nl80211_netlink_notifier
);
13360 genl_unregister_family(&nl80211_fam
);
13364 void nl80211_exit(void)
13366 netlink_unregister_notifier(&nl80211_netlink_notifier
);
13367 genl_unregister_family(&nl80211_fam
);