Branch data Line data Source code
1 : : /*
2 : : * Driver interaction with Linux nl80211/cfg80211
3 : : * Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi>
4 : : * Copyright (c) 2003-2004, Instant802 Networks, Inc.
5 : : * Copyright (c) 2005-2006, Devicescape Software, Inc.
6 : : * Copyright (c) 2007, Johannes Berg <johannes@sipsolutions.net>
7 : : * Copyright (c) 2009-2010, Atheros Communications
8 : : *
9 : : * This software may be distributed under the terms of the BSD license.
10 : : * See README for more details.
11 : : */
12 : :
13 : : #include "includes.h"
14 : : #include <sys/ioctl.h>
15 : : #include <sys/types.h>
16 : : #include <sys/stat.h>
17 : : #include <fcntl.h>
18 : : #include <net/if.h>
19 : : #include <netlink/genl/genl.h>
20 : : #include <netlink/genl/family.h>
21 : : #include <netlink/genl/ctrl.h>
22 : : #include <linux/rtnetlink.h>
23 : : #include <netpacket/packet.h>
24 : : #include <linux/filter.h>
25 : : #include <linux/errqueue.h>
26 : : #include "nl80211_copy.h"
27 : :
28 : : #include "common.h"
29 : : #include "eloop.h"
30 : : #include "utils/list.h"
31 : : #include "common/ieee802_11_defs.h"
32 : : #include "common/ieee802_11_common.h"
33 : : #include "l2_packet/l2_packet.h"
34 : : #include "netlink.h"
35 : : #include "linux_ioctl.h"
36 : : #include "radiotap.h"
37 : : #include "radiotap_iter.h"
38 : : #include "rfkill.h"
39 : : #include "driver.h"
40 : :
41 : : #ifndef SO_WIFI_STATUS
42 : : # if defined(__sparc__)
43 : : # define SO_WIFI_STATUS 0x0025
44 : : # elif defined(__parisc__)
45 : : # define SO_WIFI_STATUS 0x4022
46 : : # else
47 : : # define SO_WIFI_STATUS 41
48 : : # endif
49 : :
50 : : # define SCM_WIFI_STATUS SO_WIFI_STATUS
51 : : #endif
52 : :
53 : : #ifndef SO_EE_ORIGIN_TXSTATUS
54 : : #define SO_EE_ORIGIN_TXSTATUS 4
55 : : #endif
56 : :
57 : : #ifndef PACKET_TX_TIMESTAMP
58 : : #define PACKET_TX_TIMESTAMP 16
59 : : #endif
60 : :
61 : : #ifdef ANDROID
62 : : #include "android_drv.h"
63 : : #endif /* ANDROID */
64 : : #ifdef CONFIG_LIBNL20
65 : : /* libnl 2.0 compatibility code */
66 : : #define nl_handle nl_sock
67 : : #define nl80211_handle_alloc nl_socket_alloc_cb
68 : : #define nl80211_handle_destroy nl_socket_free
69 : : #else
70 : : /*
71 : : * libnl 1.1 has a bug, it tries to allocate socket numbers densely
72 : : * but when you free a socket again it will mess up its bitmap and
73 : : * and use the wrong number the next time it needs a socket ID.
74 : : * Therefore, we wrap the handle alloc/destroy and add our own pid
75 : : * accounting.
76 : : */
77 : : static uint32_t port_bitmap[32] = { 0 };
78 : :
79 : : static struct nl_handle *nl80211_handle_alloc(void *cb)
80 : : {
81 : : struct nl_handle *handle;
82 : : uint32_t pid = getpid() & 0x3FFFFF;
83 : : int i;
84 : :
85 : : handle = nl_handle_alloc_cb(cb);
86 : :
87 : : for (i = 0; i < 1024; i++) {
88 : : if (port_bitmap[i / 32] & (1 << (i % 32)))
89 : : continue;
90 : : port_bitmap[i / 32] |= 1 << (i % 32);
91 : : pid += i << 22;
92 : : break;
93 : : }
94 : :
95 : : nl_socket_set_local_port(handle, pid);
96 : :
97 : : return handle;
98 : : }
99 : :
100 : : static void nl80211_handle_destroy(struct nl_handle *handle)
101 : : {
102 : : uint32_t port = nl_socket_get_local_port(handle);
103 : :
104 : : port >>= 22;
105 : : port_bitmap[port / 32] &= ~(1 << (port % 32));
106 : :
107 : : nl_handle_destroy(handle);
108 : : }
109 : : #endif /* CONFIG_LIBNL20 */
110 : :
111 : :
112 : : #ifdef ANDROID
113 : : /* system/core/libnl_2 does not include nl_socket_set_nonblocking() */
114 : : static int android_nl_socket_set_nonblocking(struct nl_handle *handle)
115 : : {
116 : : return fcntl(nl_socket_get_fd(handle), F_SETFL, O_NONBLOCK);
117 : : }
118 : : #undef nl_socket_set_nonblocking
119 : : #define nl_socket_set_nonblocking(h) android_nl_socket_set_nonblocking(h)
120 : : #endif /* ANDROID */
121 : :
122 : :
123 : 846 : static struct nl_handle * nl_create_handle(struct nl_cb *cb, const char *dbg)
124 : : {
125 : : struct nl_handle *handle;
126 : :
127 : 846 : handle = nl80211_handle_alloc(cb);
128 [ - + ]: 846 : if (handle == NULL) {
129 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
130 : : "callbacks (%s)", dbg);
131 : 0 : return NULL;
132 : : }
133 : :
134 [ - + ]: 846 : if (genl_connect(handle)) {
135 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to connect to generic "
136 : : "netlink (%s)", dbg);
137 : 0 : nl80211_handle_destroy(handle);
138 : 0 : return NULL;
139 : : }
140 : :
141 : 846 : return handle;
142 : : }
143 : :
144 : :
145 : 846 : static void nl_destroy_handles(struct nl_handle **handle)
146 : : {
147 [ - + ]: 846 : if (*handle == NULL)
148 : 846 : return;
149 : 846 : nl80211_handle_destroy(*handle);
150 : 846 : *handle = NULL;
151 : : }
152 : :
153 : :
154 : : #if __WORDSIZE == 64
155 : : #define ELOOP_SOCKET_INVALID (intptr_t) 0x8888888888888889ULL
156 : : #else
157 : : #define ELOOP_SOCKET_INVALID (intptr_t) 0x88888889ULL
158 : : #endif
159 : :
160 : 842 : static void nl80211_register_eloop_read(struct nl_handle **handle,
161 : : eloop_sock_handler handler,
162 : : void *eloop_data)
163 : : {
164 : 842 : nl_socket_set_nonblocking(*handle);
165 : 842 : eloop_register_read_sock(nl_socket_get_fd(*handle), handler,
166 : : eloop_data, *handle);
167 : 842 : *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
168 : 842 : }
169 : :
170 : :
171 : 842 : static void nl80211_destroy_eloop_handle(struct nl_handle **handle)
172 : : {
173 : 842 : *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
174 : 842 : eloop_unregister_read_sock(nl_socket_get_fd(*handle));
175 : 842 : nl_destroy_handles(handle);
176 : 842 : }
177 : :
178 : :
179 : : #ifndef IFF_LOWER_UP
180 : : #define IFF_LOWER_UP 0x10000 /* driver signals L1 up */
181 : : #endif
182 : : #ifndef IFF_DORMANT
183 : : #define IFF_DORMANT 0x20000 /* driver signals dormant */
184 : : #endif
185 : :
186 : : #ifndef IF_OPER_DORMANT
187 : : #define IF_OPER_DORMANT 5
188 : : #endif
189 : : #ifndef IF_OPER_UP
190 : : #define IF_OPER_UP 6
191 : : #endif
192 : :
193 : : struct nl80211_global {
194 : : struct dl_list interfaces;
195 : : int if_add_ifindex;
196 : : u64 if_add_wdevid;
197 : : int if_add_wdevid_set;
198 : : struct netlink_data *netlink;
199 : : struct nl_cb *nl_cb;
200 : : struct nl_handle *nl;
201 : : int nl80211_id;
202 : : int ioctl_sock; /* socket for ioctl() use */
203 : :
204 : : struct nl_handle *nl_event;
205 : : };
206 : :
207 : : struct nl80211_wiphy_data {
208 : : struct dl_list list;
209 : : struct dl_list bsss;
210 : : struct dl_list drvs;
211 : :
212 : : struct nl_handle *nl_beacons;
213 : : struct nl_cb *nl_cb;
214 : :
215 : : int wiphy_idx;
216 : : };
217 : :
218 : : static void nl80211_global_deinit(void *priv);
219 : :
220 : : struct i802_bss {
221 : : struct wpa_driver_nl80211_data *drv;
222 : : struct i802_bss *next;
223 : : int ifindex;
224 : : u64 wdev_id;
225 : : char ifname[IFNAMSIZ + 1];
226 : : char brname[IFNAMSIZ];
227 : : unsigned int beacon_set:1;
228 : : unsigned int added_if_into_bridge:1;
229 : : unsigned int added_bridge:1;
230 : : unsigned int in_deinit:1;
231 : : unsigned int wdev_id_set:1;
232 : : unsigned int added_if:1;
233 : :
234 : : u8 addr[ETH_ALEN];
235 : :
236 : : int freq;
237 : : int if_dynamic;
238 : :
239 : : void *ctx;
240 : : struct nl_handle *nl_preq, *nl_mgmt;
241 : : struct nl_cb *nl_cb;
242 : :
243 : : struct nl80211_wiphy_data *wiphy_data;
244 : : struct dl_list wiphy_list;
245 : : };
246 : :
247 : : struct wpa_driver_nl80211_data {
248 : : struct nl80211_global *global;
249 : : struct dl_list list;
250 : : struct dl_list wiphy_list;
251 : : char phyname[32];
252 : : void *ctx;
253 : : int ifindex;
254 : : int if_removed;
255 : : int if_disabled;
256 : : int ignore_if_down_event;
257 : : struct rfkill_data *rfkill;
258 : : struct wpa_driver_capa capa;
259 : : u8 *extended_capa, *extended_capa_mask;
260 : : unsigned int extended_capa_len;
261 : : int has_capability;
262 : :
263 : : int operstate;
264 : :
265 : : int scan_complete_events;
266 : : enum scan_states {
267 : : NO_SCAN, SCAN_REQUESTED, SCAN_STARTED, SCAN_COMPLETED,
268 : : SCAN_ABORTED, SCHED_SCAN_STARTED, SCHED_SCAN_STOPPED,
269 : : SCHED_SCAN_RESULTS
270 : : } scan_state;
271 : :
272 : : struct nl_cb *nl_cb;
273 : :
274 : : u8 auth_bssid[ETH_ALEN];
275 : : u8 auth_attempt_bssid[ETH_ALEN];
276 : : u8 bssid[ETH_ALEN];
277 : : u8 prev_bssid[ETH_ALEN];
278 : : int associated;
279 : : u8 ssid[32];
280 : : size_t ssid_len;
281 : : enum nl80211_iftype nlmode;
282 : : enum nl80211_iftype ap_scan_as_station;
283 : : unsigned int assoc_freq;
284 : :
285 : : int monitor_sock;
286 : : int monitor_ifidx;
287 : : int monitor_refcount;
288 : :
289 : : unsigned int disabled_11b_rates:1;
290 : : unsigned int pending_remain_on_chan:1;
291 : : unsigned int in_interface_list:1;
292 : : unsigned int device_ap_sme:1;
293 : : unsigned int poll_command_supported:1;
294 : : unsigned int data_tx_status:1;
295 : : unsigned int scan_for_auth:1;
296 : : unsigned int retry_auth:1;
297 : : unsigned int use_monitor:1;
298 : : unsigned int ignore_next_local_disconnect:1;
299 : : unsigned int allow_p2p_device:1;
300 : : unsigned int hostapd:1;
301 : : unsigned int start_mode_ap:1;
302 : : unsigned int start_iface_up:1;
303 : : unsigned int channel_switch_supported:1;
304 : :
305 : : u64 remain_on_chan_cookie;
306 : : u64 send_action_cookie;
307 : :
308 : : unsigned int last_mgmt_freq;
309 : :
310 : : struct wpa_driver_scan_filter *filter_ssids;
311 : : size_t num_filter_ssids;
312 : :
313 : : struct i802_bss *first_bss;
314 : :
315 : : int eapol_tx_sock;
316 : :
317 : : int eapol_sock; /* socket for EAPOL frames */
318 : :
319 : : int default_if_indices[16];
320 : : int *if_indices;
321 : : int num_if_indices;
322 : :
323 : : /* From failed authentication command */
324 : : int auth_freq;
325 : : u8 auth_bssid_[ETH_ALEN];
326 : : u8 auth_ssid[32];
327 : : size_t auth_ssid_len;
328 : : int auth_alg;
329 : : u8 *auth_ie;
330 : : size_t auth_ie_len;
331 : : u8 auth_wep_key[4][16];
332 : : size_t auth_wep_key_len[4];
333 : : int auth_wep_tx_keyidx;
334 : : int auth_local_state_change;
335 : : int auth_p2p;
336 : : };
337 : :
338 : :
339 : : static void wpa_driver_nl80211_deinit(struct i802_bss *bss);
340 : : static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx,
341 : : void *timeout_ctx);
342 : : static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
343 : : enum nl80211_iftype nlmode);
344 : : static int
345 : : wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv,
346 : : const u8 *set_addr, int first);
347 : : static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
348 : : const u8 *addr, int cmd, u16 reason_code,
349 : : int local_state_change);
350 : : static void nl80211_remove_monitor_interface(
351 : : struct wpa_driver_nl80211_data *drv);
352 : : static int nl80211_send_frame_cmd(struct i802_bss *bss,
353 : : unsigned int freq, unsigned int wait,
354 : : const u8 *buf, size_t buf_len, u64 *cookie,
355 : : int no_cck, int no_ack, int offchanok);
356 : : static int nl80211_register_frame(struct i802_bss *bss,
357 : : struct nl_handle *hl_handle,
358 : : u16 type, const u8 *match, size_t match_len);
359 : : static int wpa_driver_nl80211_probe_req_report(struct i802_bss *bss,
360 : : int report);
361 : : #ifdef ANDROID
362 : : static int android_pno_start(struct i802_bss *bss,
363 : : struct wpa_driver_scan_params *params);
364 : : static int android_pno_stop(struct i802_bss *bss);
365 : : extern int wpa_driver_nl80211_driver_cmd(void *priv, char *cmd, char *buf,
366 : : size_t buf_len);
367 : : #endif /* ANDROID */
368 : : #ifdef ANDROID_P2P
369 : : int wpa_driver_set_p2p_noa(void *priv, u8 count, int start, int duration);
370 : : int wpa_driver_get_p2p_noa(void *priv, u8 *buf, size_t len);
371 : : int wpa_driver_set_p2p_ps(void *priv, int legacy_ps, int opp_ps, int ctwindow);
372 : : int wpa_driver_set_ap_wps_p2p_ie(void *priv, const struct wpabuf *beacon,
373 : : const struct wpabuf *proberesp,
374 : : const struct wpabuf *assocresp);
375 : : #endif /* ANDROID_P2P */
376 : :
377 : : static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
378 : : static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
379 : : static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx);
380 : : static int wpa_driver_nl80211_if_remove(struct i802_bss *bss,
381 : : enum wpa_driver_if_type type,
382 : : const char *ifname);
383 : :
384 : : static int wpa_driver_nl80211_set_freq(struct i802_bss *bss,
385 : : struct hostapd_freq_params *freq);
386 : : static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
387 : : int ifindex, int disabled);
388 : :
389 : : static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv);
390 : : static int wpa_driver_nl80211_authenticate_retry(
391 : : struct wpa_driver_nl80211_data *drv);
392 : :
393 : : static int i802_set_iface_flags(struct i802_bss *bss, int up);
394 : :
395 : :
396 : 12378 : static const char * nl80211_command_to_string(enum nl80211_commands cmd)
397 : : {
398 : : #define C2S(x) case x: return #x;
399 [ - - - - : 12378 : switch (cmd) {
- - - - -
- - - - -
- - - - -
+ + - - -
- - - - -
- - - - +
+ - + + +
+ - - - +
- - + - +
- - - - -
- + + - -
+ + - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- - ]
400 : 0 : C2S(NL80211_CMD_UNSPEC)
401 : 0 : C2S(NL80211_CMD_GET_WIPHY)
402 : 0 : C2S(NL80211_CMD_SET_WIPHY)
403 : 0 : C2S(NL80211_CMD_NEW_WIPHY)
404 : 0 : C2S(NL80211_CMD_DEL_WIPHY)
405 : 0 : C2S(NL80211_CMD_GET_INTERFACE)
406 : 0 : C2S(NL80211_CMD_SET_INTERFACE)
407 : 0 : C2S(NL80211_CMD_NEW_INTERFACE)
408 : 0 : C2S(NL80211_CMD_DEL_INTERFACE)
409 : 0 : C2S(NL80211_CMD_GET_KEY)
410 : 0 : C2S(NL80211_CMD_SET_KEY)
411 : 0 : C2S(NL80211_CMD_NEW_KEY)
412 : 0 : C2S(NL80211_CMD_DEL_KEY)
413 : 0 : C2S(NL80211_CMD_GET_BEACON)
414 : 0 : C2S(NL80211_CMD_SET_BEACON)
415 : 0 : C2S(NL80211_CMD_START_AP)
416 : 0 : C2S(NL80211_CMD_STOP_AP)
417 : 0 : C2S(NL80211_CMD_GET_STATION)
418 : 0 : C2S(NL80211_CMD_SET_STATION)
419 : 639 : C2S(NL80211_CMD_NEW_STATION)
420 : 623 : C2S(NL80211_CMD_DEL_STATION)
421 : 0 : C2S(NL80211_CMD_GET_MPATH)
422 : 0 : C2S(NL80211_CMD_SET_MPATH)
423 : 0 : C2S(NL80211_CMD_NEW_MPATH)
424 : 0 : C2S(NL80211_CMD_DEL_MPATH)
425 : 0 : C2S(NL80211_CMD_SET_BSS)
426 : 0 : C2S(NL80211_CMD_SET_REG)
427 : 0 : C2S(NL80211_CMD_REQ_SET_REG)
428 : 0 : C2S(NL80211_CMD_GET_MESH_CONFIG)
429 : 0 : C2S(NL80211_CMD_SET_MESH_CONFIG)
430 : 0 : C2S(NL80211_CMD_SET_MGMT_EXTRA_IE)
431 : 0 : C2S(NL80211_CMD_GET_REG)
432 : 0 : C2S(NL80211_CMD_GET_SCAN)
433 : 934 : C2S(NL80211_CMD_TRIGGER_SCAN)
434 : 934 : C2S(NL80211_CMD_NEW_SCAN_RESULTS)
435 : 0 : C2S(NL80211_CMD_SCAN_ABORTED)
436 : 1064 : C2S(NL80211_CMD_REG_CHANGE)
437 : 905 : C2S(NL80211_CMD_AUTHENTICATE)
438 : 874 : C2S(NL80211_CMD_ASSOCIATE)
439 : 862 : C2S(NL80211_CMD_DEAUTHENTICATE)
440 : 0 : C2S(NL80211_CMD_DISASSOCIATE)
441 : 0 : C2S(NL80211_CMD_MICHAEL_MIC_FAILURE)
442 : 0 : C2S(NL80211_CMD_REG_BEACON_HINT)
443 : 6 : C2S(NL80211_CMD_JOIN_IBSS)
444 : 0 : C2S(NL80211_CMD_LEAVE_IBSS)
445 : 0 : C2S(NL80211_CMD_TESTMODE)
446 : 437 : C2S(NL80211_CMD_CONNECT)
447 : 0 : C2S(NL80211_CMD_ROAM)
448 : 426 : C2S(NL80211_CMD_DISCONNECT)
449 : 0 : C2S(NL80211_CMD_SET_WIPHY_NETNS)
450 : 0 : C2S(NL80211_CMD_GET_SURVEY)
451 : 0 : C2S(NL80211_CMD_NEW_SURVEY_RESULTS)
452 : 0 : C2S(NL80211_CMD_SET_PMKSA)
453 : 0 : C2S(NL80211_CMD_DEL_PMKSA)
454 : 0 : C2S(NL80211_CMD_FLUSH_PMKSA)
455 : 530 : C2S(NL80211_CMD_REMAIN_ON_CHANNEL)
456 : 530 : C2S(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL)
457 : 0 : C2S(NL80211_CMD_SET_TX_BITRATE_MASK)
458 : 0 : C2S(NL80211_CMD_REGISTER_FRAME)
459 : 2090 : C2S(NL80211_CMD_FRAME)
460 : 1524 : C2S(NL80211_CMD_FRAME_TX_STATUS)
461 : 0 : C2S(NL80211_CMD_SET_POWER_SAVE)
462 : 0 : C2S(NL80211_CMD_GET_POWER_SAVE)
463 : 0 : C2S(NL80211_CMD_SET_CQM)
464 : 0 : C2S(NL80211_CMD_NOTIFY_CQM)
465 : 0 : C2S(NL80211_CMD_SET_CHANNEL)
466 : 0 : C2S(NL80211_CMD_SET_WDS_PEER)
467 : 0 : C2S(NL80211_CMD_FRAME_WAIT_CANCEL)
468 : 0 : C2S(NL80211_CMD_JOIN_MESH)
469 : 0 : C2S(NL80211_CMD_LEAVE_MESH)
470 : 0 : C2S(NL80211_CMD_UNPROT_DEAUTHENTICATE)
471 : 0 : C2S(NL80211_CMD_UNPROT_DISASSOCIATE)
472 : 0 : C2S(NL80211_CMD_NEW_PEER_CANDIDATE)
473 : 0 : C2S(NL80211_CMD_GET_WOWLAN)
474 : 0 : C2S(NL80211_CMD_SET_WOWLAN)
475 : 0 : C2S(NL80211_CMD_START_SCHED_SCAN)
476 : 0 : C2S(NL80211_CMD_STOP_SCHED_SCAN)
477 : 0 : C2S(NL80211_CMD_SCHED_SCAN_RESULTS)
478 : 0 : C2S(NL80211_CMD_SCHED_SCAN_STOPPED)
479 : 0 : C2S(NL80211_CMD_SET_REKEY_OFFLOAD)
480 : 0 : C2S(NL80211_CMD_PMKSA_CANDIDATE)
481 : 0 : C2S(NL80211_CMD_TDLS_OPER)
482 : 0 : C2S(NL80211_CMD_TDLS_MGMT)
483 : 0 : C2S(NL80211_CMD_UNEXPECTED_FRAME)
484 : 0 : C2S(NL80211_CMD_PROBE_CLIENT)
485 : 0 : C2S(NL80211_CMD_REGISTER_BEACONS)
486 : 0 : C2S(NL80211_CMD_UNEXPECTED_4ADDR_FRAME)
487 : 0 : C2S(NL80211_CMD_SET_NOACK_MAP)
488 : 0 : C2S(NL80211_CMD_CH_SWITCH_NOTIFY)
489 : 0 : C2S(NL80211_CMD_START_P2P_DEVICE)
490 : 0 : C2S(NL80211_CMD_STOP_P2P_DEVICE)
491 : 0 : C2S(NL80211_CMD_CONN_FAILED)
492 : 0 : C2S(NL80211_CMD_SET_MCAST_RATE)
493 : 0 : C2S(NL80211_CMD_SET_MAC_ACL)
494 : 0 : C2S(NL80211_CMD_RADAR_DETECT)
495 : 0 : C2S(NL80211_CMD_GET_PROTOCOL_FEATURES)
496 : 0 : C2S(NL80211_CMD_UPDATE_FT_IES)
497 : 0 : C2S(NL80211_CMD_FT_EVENT)
498 : 0 : C2S(NL80211_CMD_CRIT_PROTOCOL_START)
499 : 0 : C2S(NL80211_CMD_CRIT_PROTOCOL_STOP)
500 : 0 : C2S(NL80211_CMD_GET_COALESCE)
501 : 0 : C2S(NL80211_CMD_SET_COALESCE)
502 : 0 : C2S(NL80211_CMD_CHANNEL_SWITCH)
503 : 0 : C2S(NL80211_CMD_VENDOR)
504 : 0 : C2S(NL80211_CMD_SET_QOS_MAP)
505 : : default:
506 : 12378 : return "NL80211_CMD_UNKNOWN";
507 : : }
508 : : #undef C2S
509 : : }
510 : :
511 : :
512 : : /* Converts nl80211_chan_width to a common format */
513 : 0 : static enum chan_width convert2width(int width)
514 : : {
515 [ # # # # : 0 : switch (width) {
# # # ]
516 : : case NL80211_CHAN_WIDTH_20_NOHT:
517 : 0 : return CHAN_WIDTH_20_NOHT;
518 : : case NL80211_CHAN_WIDTH_20:
519 : 0 : return CHAN_WIDTH_20;
520 : : case NL80211_CHAN_WIDTH_40:
521 : 0 : return CHAN_WIDTH_40;
522 : : case NL80211_CHAN_WIDTH_80:
523 : 0 : return CHAN_WIDTH_80;
524 : : case NL80211_CHAN_WIDTH_80P80:
525 : 0 : return CHAN_WIDTH_80P80;
526 : : case NL80211_CHAN_WIDTH_160:
527 : 0 : return CHAN_WIDTH_160;
528 : : }
529 : 0 : return CHAN_WIDTH_UNKNOWN;
530 : : }
531 : :
532 : :
533 : 3758 : static int is_ap_interface(enum nl80211_iftype nlmode)
534 : : {
535 [ + + ][ + + ]: 3758 : return (nlmode == NL80211_IFTYPE_AP ||
536 : : nlmode == NL80211_IFTYPE_P2P_GO);
537 : : }
538 : :
539 : :
540 : 857 : static int is_sta_interface(enum nl80211_iftype nlmode)
541 : : {
542 [ + + ][ - + ]: 857 : return (nlmode == NL80211_IFTYPE_STATION ||
543 : : nlmode == NL80211_IFTYPE_P2P_CLIENT);
544 : : }
545 : :
546 : :
547 : 310 : static int is_p2p_net_interface(enum nl80211_iftype nlmode)
548 : : {
549 [ + + ][ + + ]: 310 : return (nlmode == NL80211_IFTYPE_P2P_CLIENT ||
550 : : nlmode == NL80211_IFTYPE_P2P_GO);
551 : : }
552 : :
553 : :
554 : 1730 : static void nl80211_mark_disconnected(struct wpa_driver_nl80211_data *drv)
555 : : {
556 [ + + ]: 1730 : if (drv->associated)
557 : 443 : os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
558 : 1730 : drv->associated = 0;
559 : 1730 : os_memset(drv->bssid, 0, ETH_ALEN);
560 : 1730 : }
561 : :
562 : :
563 : : struct nl80211_bss_info_arg {
564 : : struct wpa_driver_nl80211_data *drv;
565 : : struct wpa_scan_results *res;
566 : : unsigned int assoc_freq;
567 : : u8 assoc_bssid[ETH_ALEN];
568 : : };
569 : :
570 : : static int bss_info_handler(struct nl_msg *msg, void *arg);
571 : :
572 : :
573 : : /* nl80211 code */
574 : 15783 : static int ack_handler(struct nl_msg *msg, void *arg)
575 : : {
576 : 15783 : int *err = arg;
577 : 15783 : *err = 0;
578 : 15783 : return NL_STOP;
579 : : }
580 : :
581 : 3080 : static int finish_handler(struct nl_msg *msg, void *arg)
582 : : {
583 : 3080 : int *ret = arg;
584 : 3080 : *ret = 0;
585 : 3080 : return NL_SKIP;
586 : : }
587 : :
588 : 6901 : static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err,
589 : : void *arg)
590 : : {
591 : 6901 : int *ret = arg;
592 : 6901 : *ret = err->error;
593 : 6901 : return NL_SKIP;
594 : : }
595 : :
596 : :
597 : 134967 : static int no_seq_check(struct nl_msg *msg, void *arg)
598 : : {
599 : 134967 : return NL_OK;
600 : : }
601 : :
602 : :
603 : 25764 : static int send_and_recv(struct nl80211_global *global,
604 : : struct nl_handle *nl_handle, struct nl_msg *msg,
605 : : int (*valid_handler)(struct nl_msg *, void *),
606 : : void *valid_data)
607 : : {
608 : : struct nl_cb *cb;
609 : 25764 : int err = -ENOMEM;
610 : :
611 : 25764 : cb = nl_cb_clone(global->nl_cb);
612 [ - + ]: 25764 : if (!cb)
613 : 0 : goto out;
614 : :
615 : 25764 : err = nl_send_auto_complete(nl_handle, msg);
616 [ - + ]: 25764 : if (err < 0)
617 : 0 : goto out;
618 : :
619 : 25764 : err = 1;
620 : :
621 : 25764 : nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
622 : 25764 : nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
623 : 25764 : nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
624 : :
625 [ + + ]: 25764 : if (valid_handler)
626 : 7353 : nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
627 : : valid_handler, valid_data);
628 : :
629 [ + + ]: 55457 : while (err > 0) {
630 : 29693 : int res = nl_recvmsgs(nl_handle, cb);
631 [ - + ]: 29693 : if (res) {
632 : 0 : wpa_printf(MSG_INFO,
633 : : "nl80211: %s->nl_recvmsgs failed: %d",
634 : : __func__, res);
635 : : }
636 : : }
637 : : out:
638 : 25764 : nl_cb_put(cb);
639 : 25764 : nlmsg_free(msg);
640 : 25764 : return err;
641 : : }
642 : :
643 : :
644 : 16 : static int send_and_recv_msgs_global(struct nl80211_global *global,
645 : : struct nl_msg *msg,
646 : : int (*valid_handler)(struct nl_msg *, void *),
647 : : void *valid_data)
648 : : {
649 : 16 : return send_and_recv(global, global->nl, msg, valid_handler,
650 : : valid_data);
651 : : }
652 : :
653 : :
654 : 22378 : static int send_and_recv_msgs(struct wpa_driver_nl80211_data *drv,
655 : : struct nl_msg *msg,
656 : : int (*valid_handler)(struct nl_msg *, void *),
657 : : void *valid_data)
658 : : {
659 : 22378 : return send_and_recv(drv->global, drv->global->nl, msg,
660 : : valid_handler, valid_data);
661 : : }
662 : :
663 : :
664 : : struct family_data {
665 : : const char *group;
666 : : int id;
667 : : };
668 : :
669 : :
670 : 6652 : static int nl80211_set_iface_id(struct nl_msg *msg, struct i802_bss *bss)
671 : : {
672 [ - + ]: 6652 : if (bss->wdev_id_set)
673 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
674 : : else
675 [ + - ]: 6652 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
676 : 6652 : return 0;
677 : :
678 : : nla_put_failure:
679 : 6652 : return -1;
680 : : }
681 : :
682 : :
683 : 16 : static int family_handler(struct nl_msg *msg, void *arg)
684 : : {
685 : 16 : struct family_data *res = arg;
686 : : struct nlattr *tb[CTRL_ATTR_MAX + 1];
687 : 16 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
688 : : struct nlattr *mcgrp;
689 : : int i;
690 : :
691 : 16 : nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
692 : : genlmsg_attrlen(gnlh, 0), NULL);
693 [ - + ]: 16 : if (!tb[CTRL_ATTR_MCAST_GROUPS])
694 : 0 : return NL_SKIP;
695 : :
696 [ + - ]: 56 : nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
697 : : struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1];
698 : 56 : nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
699 : : nla_len(mcgrp), NULL);
700 [ + - ][ + - ]: 56 : if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
701 [ + + ]: 56 : !tb2[CTRL_ATTR_MCAST_GRP_ID] ||
702 : 56 : os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
703 : : res->group,
704 : : nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
705 : 40 : continue;
706 : 16 : res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
707 : 16 : break;
708 : : };
709 : :
710 : 16 : return NL_SKIP;
711 : : }
712 : :
713 : :
714 : 16 : static int nl_get_multicast_id(struct nl80211_global *global,
715 : : const char *family, const char *group)
716 : : {
717 : : struct nl_msg *msg;
718 : 16 : int ret = -1;
719 : 16 : struct family_data res = { group, -ENOENT };
720 : :
721 : 16 : msg = nlmsg_alloc();
722 [ - + ]: 16 : if (!msg)
723 : 0 : return -ENOMEM;
724 : 16 : genlmsg_put(msg, 0, 0, genl_ctrl_resolve(global->nl, "nlctrl"),
725 : : 0, 0, CTRL_CMD_GETFAMILY, 0);
726 [ + - ]: 16 : NLA_PUT_STRING(msg, CTRL_ATTR_FAMILY_NAME, family);
727 : :
728 : 16 : ret = send_and_recv_msgs_global(global, msg, family_handler, &res);
729 : 16 : msg = NULL;
730 [ + - ]: 16 : if (ret == 0)
731 : 16 : ret = res.id;
732 : :
733 : : nla_put_failure:
734 : 16 : nlmsg_free(msg);
735 : 16 : return ret;
736 : : }
737 : :
738 : :
739 : 25748 : static void * nl80211_cmd(struct wpa_driver_nl80211_data *drv,
740 : : struct nl_msg *msg, int flags, uint8_t cmd)
741 : : {
742 : 25748 : return genlmsg_put(msg, 0, 0, drv->global->nl80211_id,
743 : : 0, flags, cmd, 0);
744 : : }
745 : :
746 : :
747 : : struct wiphy_idx_data {
748 : : int wiphy_idx;
749 : : enum nl80211_iftype nlmode;
750 : : u8 *macaddr;
751 : : };
752 : :
753 : :
754 : 150 : static int netdev_info_handler(struct nl_msg *msg, void *arg)
755 : : {
756 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
757 : 150 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
758 : 150 : struct wiphy_idx_data *info = arg;
759 : :
760 : 150 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
761 : : genlmsg_attrlen(gnlh, 0), NULL);
762 : :
763 [ + - ]: 150 : if (tb[NL80211_ATTR_WIPHY])
764 : 150 : info->wiphy_idx = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
765 : :
766 [ + - ]: 150 : if (tb[NL80211_ATTR_IFTYPE])
767 : 150 : info->nlmode = nla_get_u32(tb[NL80211_ATTR_IFTYPE]);
768 : :
769 [ + - ][ - + ]: 150 : if (tb[NL80211_ATTR_MAC] && info->macaddr)
770 : 0 : os_memcpy(info->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
771 : : ETH_ALEN);
772 : :
773 : 150 : return NL_SKIP;
774 : : }
775 : :
776 : :
777 : 67 : static int nl80211_get_wiphy_index(struct i802_bss *bss)
778 : : {
779 : : struct nl_msg *msg;
780 : 67 : struct wiphy_idx_data data = {
781 : : .wiphy_idx = -1,
782 : : .macaddr = NULL,
783 : : };
784 : :
785 : 67 : msg = nlmsg_alloc();
786 [ - + ]: 67 : if (!msg)
787 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
788 : :
789 : 67 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
790 : :
791 [ - + ]: 67 : if (nl80211_set_iface_id(msg, bss) < 0)
792 : 0 : goto nla_put_failure;
793 : :
794 [ + - ]: 67 : if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
795 : 67 : return data.wiphy_idx;
796 : 0 : msg = NULL;
797 : : nla_put_failure:
798 : 0 : nlmsg_free(msg);
799 : 67 : return -1;
800 : : }
801 : :
802 : :
803 : 83 : static enum nl80211_iftype nl80211_get_ifmode(struct i802_bss *bss)
804 : : {
805 : : struct nl_msg *msg;
806 : 83 : struct wiphy_idx_data data = {
807 : : .nlmode = NL80211_IFTYPE_UNSPECIFIED,
808 : : .macaddr = NULL,
809 : : };
810 : :
811 : 83 : msg = nlmsg_alloc();
812 [ - + ]: 83 : if (!msg)
813 : 0 : return -1;
814 : :
815 : 83 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
816 : :
817 [ - + ]: 83 : if (nl80211_set_iface_id(msg, bss) < 0)
818 : 0 : goto nla_put_failure;
819 : :
820 [ + - ]: 83 : if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
821 : 83 : return data.nlmode;
822 : 0 : msg = NULL;
823 : : nla_put_failure:
824 : 0 : nlmsg_free(msg);
825 : 83 : return NL80211_IFTYPE_UNSPECIFIED;
826 : : }
827 : :
828 : :
829 : 0 : static int nl80211_get_macaddr(struct i802_bss *bss)
830 : : {
831 : : struct nl_msg *msg;
832 : 0 : struct wiphy_idx_data data = {
833 : 0 : .macaddr = bss->addr,
834 : : };
835 : :
836 : 0 : msg = nlmsg_alloc();
837 [ # # ]: 0 : if (!msg)
838 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
839 : :
840 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
841 [ # # ]: 0 : if (nl80211_set_iface_id(msg, bss) < 0)
842 : 0 : goto nla_put_failure;
843 : :
844 : 0 : return send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data);
845 : :
846 : : nla_put_failure:
847 : 0 : nlmsg_free(msg);
848 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
849 : : }
850 : :
851 : :
852 : 67 : static int nl80211_register_beacons(struct wpa_driver_nl80211_data *drv,
853 : : struct nl80211_wiphy_data *w)
854 : : {
855 : : struct nl_msg *msg;
856 : 67 : int ret = -1;
857 : :
858 : 67 : msg = nlmsg_alloc();
859 [ - + ]: 67 : if (!msg)
860 : 0 : return -1;
861 : :
862 : 67 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_BEACONS);
863 : :
864 [ + - ]: 67 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, w->wiphy_idx);
865 : :
866 : 67 : ret = send_and_recv(drv->global, w->nl_beacons, msg, NULL, NULL);
867 : 67 : msg = NULL;
868 [ - + ]: 67 : if (ret) {
869 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Register beacons command "
870 : : "failed: ret=%d (%s)",
871 : : ret, strerror(-ret));
872 : 0 : goto nla_put_failure;
873 : : }
874 : 67 : ret = 0;
875 : : nla_put_failure:
876 : 67 : nlmsg_free(msg);
877 : 67 : return ret;
878 : : }
879 : :
880 : :
881 : 196 : static void nl80211_recv_beacons(int sock, void *eloop_ctx, void *handle)
882 : : {
883 : 196 : struct nl80211_wiphy_data *w = eloop_ctx;
884 : : int res;
885 : :
886 : 196 : wpa_printf(MSG_EXCESSIVE, "nl80211: Beacon event message available");
887 : :
888 : 196 : res = nl_recvmsgs(handle, w->nl_cb);
889 [ - + ]: 196 : if (res) {
890 : 0 : wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
891 : : __func__, res);
892 : : }
893 : 196 : }
894 : :
895 : :
896 : 194 : static int process_beacon_event(struct nl_msg *msg, void *arg)
897 : : {
898 : 194 : struct nl80211_wiphy_data *w = arg;
899 : : struct wpa_driver_nl80211_data *drv;
900 : 194 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
901 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
902 : : union wpa_event_data event;
903 : :
904 : 194 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
905 : : genlmsg_attrlen(gnlh, 0), NULL);
906 : :
907 [ - + ]: 194 : if (gnlh->cmd != NL80211_CMD_FRAME) {
908 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unexpected beacon event? (%d)",
909 : 0 : gnlh->cmd);
910 : 0 : return NL_SKIP;
911 : : }
912 : :
913 [ - + ]: 194 : if (!tb[NL80211_ATTR_FRAME])
914 : 0 : return NL_SKIP;
915 : :
916 [ + + ]: 388 : dl_list_for_each(drv, &w->drvs, struct wpa_driver_nl80211_data,
917 : : wiphy_list) {
918 : 194 : os_memset(&event, 0, sizeof(event));
919 : 194 : event.rx_mgmt.frame = nla_data(tb[NL80211_ATTR_FRAME]);
920 : 194 : event.rx_mgmt.frame_len = nla_len(tb[NL80211_ATTR_FRAME]);
921 : 194 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
922 : : }
923 : :
924 : 194 : return NL_SKIP;
925 : : }
926 : :
927 : :
928 : : static struct nl80211_wiphy_data *
929 : 67 : nl80211_get_wiphy_data_ap(struct i802_bss *bss)
930 : : {
931 : : static DEFINE_DL_LIST(nl80211_wiphys);
932 : : struct nl80211_wiphy_data *w;
933 : 67 : int wiphy_idx, found = 0;
934 : : struct i802_bss *tmp_bss;
935 : :
936 [ - + ]: 67 : if (bss->wiphy_data != NULL)
937 : 0 : return bss->wiphy_data;
938 : :
939 : 67 : wiphy_idx = nl80211_get_wiphy_index(bss);
940 : :
941 [ - + ]: 67 : dl_list_for_each(w, &nl80211_wiphys, struct nl80211_wiphy_data, list) {
942 [ # # ]: 0 : if (w->wiphy_idx == wiphy_idx)
943 : 0 : goto add;
944 : : }
945 : :
946 : : /* alloc new one */
947 : 67 : w = os_zalloc(sizeof(*w));
948 [ - + ]: 67 : if (w == NULL)
949 : 0 : return NULL;
950 : 67 : w->wiphy_idx = wiphy_idx;
951 : 67 : dl_list_init(&w->bsss);
952 : 67 : dl_list_init(&w->drvs);
953 : :
954 : 67 : w->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
955 [ - + ]: 67 : if (!w->nl_cb) {
956 : 0 : os_free(w);
957 : 0 : return NULL;
958 : : }
959 : 67 : nl_cb_set(w->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
960 : 67 : nl_cb_set(w->nl_cb, NL_CB_VALID, NL_CB_CUSTOM, process_beacon_event,
961 : : w);
962 : :
963 : 67 : w->nl_beacons = nl_create_handle(bss->drv->global->nl_cb,
964 : : "wiphy beacons");
965 [ - + ]: 67 : if (w->nl_beacons == NULL) {
966 : 0 : os_free(w);
967 : 0 : return NULL;
968 : : }
969 : :
970 [ - + ]: 67 : if (nl80211_register_beacons(bss->drv, w)) {
971 : 0 : nl_destroy_handles(&w->nl_beacons);
972 : 0 : os_free(w);
973 : 0 : return NULL;
974 : : }
975 : :
976 : 67 : nl80211_register_eloop_read(&w->nl_beacons, nl80211_recv_beacons, w);
977 : :
978 : 67 : dl_list_add(&nl80211_wiphys, &w->list);
979 : :
980 : : add:
981 : : /* drv entry for this bss already there? */
982 [ - + ]: 67 : dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
983 [ # # ]: 0 : if (tmp_bss->drv == bss->drv) {
984 : 0 : found = 1;
985 : 0 : break;
986 : : }
987 : : }
988 : : /* if not add it */
989 [ + - ]: 67 : if (!found)
990 : 67 : dl_list_add(&w->drvs, &bss->drv->wiphy_list);
991 : :
992 : 67 : dl_list_add(&w->bsss, &bss->wiphy_list);
993 : 67 : bss->wiphy_data = w;
994 : 67 : return w;
995 : : }
996 : :
997 : :
998 : 254 : static void nl80211_put_wiphy_data_ap(struct i802_bss *bss)
999 : : {
1000 : 254 : struct nl80211_wiphy_data *w = bss->wiphy_data;
1001 : : struct i802_bss *tmp_bss;
1002 : 254 : int found = 0;
1003 : :
1004 [ + + ]: 254 : if (w == NULL)
1005 : 187 : return;
1006 : 67 : bss->wiphy_data = NULL;
1007 : 67 : dl_list_del(&bss->wiphy_list);
1008 : :
1009 : : /* still any for this drv present? */
1010 [ - + ]: 67 : dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
1011 [ # # ]: 0 : if (tmp_bss->drv == bss->drv) {
1012 : 0 : found = 1;
1013 : 0 : break;
1014 : : }
1015 : : }
1016 : : /* if not remove it */
1017 [ + - ]: 67 : if (!found)
1018 : 67 : dl_list_del(&bss->drv->wiphy_list);
1019 : :
1020 [ - + ]: 67 : if (!dl_list_empty(&w->bsss))
1021 : 0 : return;
1022 : :
1023 : 67 : nl80211_destroy_eloop_handle(&w->nl_beacons);
1024 : :
1025 : 67 : nl_cb_put(w->nl_cb);
1026 : 67 : dl_list_del(&w->list);
1027 : 254 : os_free(w);
1028 : : }
1029 : :
1030 : :
1031 : 752 : static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
1032 : : {
1033 : 752 : struct i802_bss *bss = priv;
1034 : 752 : struct wpa_driver_nl80211_data *drv = bss->drv;
1035 [ - + ]: 752 : if (!drv->associated)
1036 : 0 : return -1;
1037 : 752 : os_memcpy(bssid, drv->bssid, ETH_ALEN);
1038 : 752 : return 0;
1039 : : }
1040 : :
1041 : :
1042 : 284 : static int wpa_driver_nl80211_get_ssid(void *priv, u8 *ssid)
1043 : : {
1044 : 284 : struct i802_bss *bss = priv;
1045 : 284 : struct wpa_driver_nl80211_data *drv = bss->drv;
1046 [ - + ]: 284 : if (!drv->associated)
1047 : 0 : return -1;
1048 : 284 : os_memcpy(ssid, drv->ssid, drv->ssid_len);
1049 : 284 : return drv->ssid_len;
1050 : : }
1051 : :
1052 : :
1053 : 1575 : static void wpa_driver_nl80211_event_link(struct wpa_driver_nl80211_data *drv,
1054 : : char *buf, size_t len, int del)
1055 : : {
1056 : : union wpa_event_data event;
1057 : :
1058 : 1575 : os_memset(&event, 0, sizeof(event));
1059 [ - + ]: 1575 : if (len > sizeof(event.interface_status.ifname))
1060 : 0 : len = sizeof(event.interface_status.ifname) - 1;
1061 : 1575 : os_memcpy(event.interface_status.ifname, buf, len);
1062 : 1575 : event.interface_status.ievent = del ? EVENT_INTERFACE_REMOVED :
1063 : : EVENT_INTERFACE_ADDED;
1064 : :
1065 [ - + ][ - + ]: 1575 : wpa_printf(MSG_DEBUG, "RTM_%sLINK, IFLA_IFNAME: Interface '%s' %s",
1066 : : del ? "DEL" : "NEW",
1067 : : event.interface_status.ifname,
1068 : : del ? "removed" : "added");
1069 : :
1070 [ + + ]: 1575 : if (os_strcmp(drv->first_bss->ifname, event.interface_status.ifname) ==
1071 : : 0) {
1072 [ - + ]: 1573 : if (del) {
1073 [ # # ]: 0 : if (drv->if_removed) {
1074 : 0 : wpa_printf(MSG_DEBUG, "nl80211: if_removed "
1075 : : "already set - ignore event");
1076 : 0 : return;
1077 : : }
1078 : 0 : drv->if_removed = 1;
1079 : : } else {
1080 [ - + ]: 1573 : if (if_nametoindex(drv->first_bss->ifname) == 0) {
1081 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface %s "
1082 : : "does not exist - ignore "
1083 : : "RTM_NEWLINK",
1084 : 0 : drv->first_bss->ifname);
1085 : 0 : return;
1086 : : }
1087 [ + - ]: 1573 : if (!drv->if_removed) {
1088 : 1573 : wpa_printf(MSG_DEBUG, "nl80211: if_removed "
1089 : : "already cleared - ignore event");
1090 : 1573 : return;
1091 : : }
1092 : 0 : drv->if_removed = 0;
1093 : : }
1094 : : }
1095 : :
1096 : 1575 : wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_STATUS, &event);
1097 : : }
1098 : :
1099 : :
1100 : 0 : static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
1101 : : u8 *buf, size_t len)
1102 : : {
1103 : : int attrlen, rta_len;
1104 : : struct rtattr *attr;
1105 : :
1106 : 0 : attrlen = len;
1107 : 0 : attr = (struct rtattr *) buf;
1108 : :
1109 : 0 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1110 [ # # ][ # # ]: 0 : while (RTA_OK(attr, attrlen)) {
[ # # ]
1111 [ # # ]: 0 : if (attr->rta_type == IFLA_IFNAME) {
1112 [ # # ]: 0 : if (os_strcmp(((char *) attr) + rta_len,
1113 : : drv->first_bss->ifname) == 0)
1114 : 0 : return 1;
1115 : : else
1116 : 0 : break;
1117 : : }
1118 : 0 : attr = RTA_NEXT(attr, attrlen);
1119 : : }
1120 : :
1121 : 0 : return 0;
1122 : : }
1123 : :
1124 : :
1125 : 7501 : static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
1126 : : int ifindex, u8 *buf, size_t len)
1127 : : {
1128 [ + + ]: 7501 : if (drv->ifindex == ifindex)
1129 : 1579 : return 1;
1130 : :
1131 [ - + ][ # # ]: 5922 : if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, buf, len)) {
1132 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
1133 : : "interface");
1134 : 0 : wpa_driver_nl80211_finish_drv_init(drv, NULL, 0);
1135 : 0 : return 1;
1136 : : }
1137 : :
1138 : 7501 : return 0;
1139 : : }
1140 : :
1141 : :
1142 : : static struct wpa_driver_nl80211_data *
1143 : 9430 : nl80211_find_drv(struct nl80211_global *global, int idx, u8 *buf, size_t len)
1144 : : {
1145 : : struct wpa_driver_nl80211_data *drv;
1146 [ + + ]: 15333 : dl_list_for_each(drv, &global->interfaces,
1147 : : struct wpa_driver_nl80211_data, list) {
1148 [ + + + + ]: 13423 : if (wpa_driver_nl80211_own_ifindex(drv, idx, buf, len) ||
1149 : 5922 : have_ifidx(drv, idx))
1150 : 1598 : return drv;
1151 : : }
1152 : 9430 : return NULL;
1153 : : }
1154 : :
1155 : :
1156 : 9279 : static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
1157 : : struct ifinfomsg *ifi,
1158 : : u8 *buf, size_t len)
1159 : : {
1160 : 9279 : struct nl80211_global *global = ctx;
1161 : : struct wpa_driver_nl80211_data *drv;
1162 : : int attrlen, rta_len;
1163 : : struct rtattr *attr;
1164 : 9279 : u32 brid = 0;
1165 : : char namebuf[IFNAMSIZ];
1166 : :
1167 : 9279 : drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
1168 [ + + ]: 9279 : if (!drv) {
1169 : 7681 : wpa_printf(MSG_DEBUG, "nl80211: Ignore event for foreign "
1170 : : "ifindex %d", ifi->ifi_index);
1171 : 7681 : return;
1172 : : }
1173 : :
1174 [ - + ][ + + ]: 1598 : wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
[ + + ][ + + ]
1175 : : "(%s%s%s%s)",
1176 : : drv->operstate, ifi->ifi_flags,
1177 : 1598 : (ifi->ifi_flags & IFF_UP) ? "[UP]" : "",
1178 : 1598 : (ifi->ifi_flags & IFF_RUNNING) ? "[RUNNING]" : "",
1179 : 1598 : (ifi->ifi_flags & IFF_LOWER_UP) ? "[LOWER_UP]" : "",
1180 : 1598 : (ifi->ifi_flags & IFF_DORMANT) ? "[DORMANT]" : "");
1181 : :
1182 [ + - ][ + + ]: 1598 : if (!drv->if_disabled && !(ifi->ifi_flags & IFF_UP)) {
1183 [ + - + - ]: 46 : if (if_indextoname(ifi->ifi_index, namebuf) &&
1184 : 23 : linux_iface_up(drv->global->ioctl_sock,
1185 : 23 : drv->first_bss->ifname) > 0) {
1186 : 23 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
1187 : : "event since interface %s is up", namebuf);
1188 : 23 : return;
1189 : : }
1190 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface down");
1191 [ # # ]: 0 : if (drv->ignore_if_down_event) {
1192 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
1193 : : "event generated by mode change");
1194 : 0 : drv->ignore_if_down_event = 0;
1195 : : } else {
1196 : 0 : drv->if_disabled = 1;
1197 : 0 : wpa_supplicant_event(drv->ctx,
1198 : : EVENT_INTERFACE_DISABLED, NULL);
1199 : : }
1200 : : }
1201 : :
1202 [ - + ][ # # ]: 1575 : if (drv->if_disabled && (ifi->ifi_flags & IFF_UP)) {
1203 [ # # # # ]: 0 : if (if_indextoname(ifi->ifi_index, namebuf) &&
1204 : 0 : linux_iface_up(drv->global->ioctl_sock,
1205 : 0 : drv->first_bss->ifname) == 0) {
1206 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
1207 : : "event since interface %s is down",
1208 : : namebuf);
1209 [ # # ]: 0 : } else if (if_nametoindex(drv->first_bss->ifname) == 0) {
1210 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
1211 : : "event since interface %s does not exist",
1212 : 0 : drv->first_bss->ifname);
1213 [ # # ]: 0 : } else if (drv->if_removed) {
1214 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
1215 : : "event since interface %s is marked "
1216 : 0 : "removed", drv->first_bss->ifname);
1217 : : } else {
1218 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface up");
1219 : 0 : drv->if_disabled = 0;
1220 : 0 : wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_ENABLED,
1221 : : NULL);
1222 : : }
1223 : : }
1224 : :
1225 : : /*
1226 : : * Some drivers send the association event before the operup event--in
1227 : : * this case, lifting operstate in wpa_driver_nl80211_set_operstate()
1228 : : * fails. This will hit us when wpa_supplicant does not need to do
1229 : : * IEEE 802.1X authentication
1230 : : */
1231 [ + + ][ + + ]: 1575 : if (drv->operstate == 1 &&
1232 [ + + ]: 531 : (ifi->ifi_flags & (IFF_LOWER_UP | IFF_DORMANT)) == IFF_LOWER_UP &&
1233 : 531 : !(ifi->ifi_flags & IFF_RUNNING))
1234 : 85 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
1235 : : -1, IF_OPER_UP);
1236 : :
1237 : 1575 : attrlen = len;
1238 : 1575 : attr = (struct rtattr *) buf;
1239 : 1575 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1240 [ + + ][ + - ]: 28350 : while (RTA_OK(attr, attrlen)) {
[ + - ]
1241 [ + + ]: 26775 : if (attr->rta_type == IFLA_IFNAME) {
1242 : 1575 : wpa_driver_nl80211_event_link(
1243 : : drv,
1244 : 1575 : ((char *) attr) + rta_len,
1245 : 1575 : attr->rta_len - rta_len, 0);
1246 [ - + ]: 25200 : } else if (attr->rta_type == IFLA_MASTER)
1247 : 0 : brid = nla_get_u32((struct nlattr *) attr);
1248 : 26775 : attr = RTA_NEXT(attr, attrlen);
1249 : : }
1250 : :
1251 [ - + ][ # # ]: 1575 : if (ifi->ifi_family == AF_BRIDGE && brid) {
1252 : : /* device has been added to bridge */
1253 : 0 : if_indextoname(brid, namebuf);
1254 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Add ifindex %u for bridge %s",
1255 : : brid, namebuf);
1256 : 9279 : add_ifidx(drv, brid);
1257 : : }
1258 : : }
1259 : :
1260 : :
1261 : 151 : static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
1262 : : struct ifinfomsg *ifi,
1263 : : u8 *buf, size_t len)
1264 : : {
1265 : 151 : struct nl80211_global *global = ctx;
1266 : : struct wpa_driver_nl80211_data *drv;
1267 : : int attrlen, rta_len;
1268 : : struct rtattr *attr;
1269 : 151 : u32 brid = 0;
1270 : :
1271 : 151 : drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
1272 [ + - ]: 151 : if (!drv) {
1273 : 151 : wpa_printf(MSG_DEBUG, "nl80211: Ignore dellink event for "
1274 : : "foreign ifindex %d", ifi->ifi_index);
1275 : 151 : return;
1276 : : }
1277 : :
1278 : 0 : attrlen = len;
1279 : 0 : attr = (struct rtattr *) buf;
1280 : :
1281 : 0 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1282 [ # # ][ # # ]: 0 : while (RTA_OK(attr, attrlen)) {
[ # # ]
1283 [ # # ]: 0 : if (attr->rta_type == IFLA_IFNAME) {
1284 : 0 : wpa_driver_nl80211_event_link(
1285 : : drv,
1286 : 0 : ((char *) attr) + rta_len,
1287 : 0 : attr->rta_len - rta_len, 1);
1288 [ # # ]: 0 : } else if (attr->rta_type == IFLA_MASTER)
1289 : 0 : brid = nla_get_u32((struct nlattr *) attr);
1290 : 0 : attr = RTA_NEXT(attr, attrlen);
1291 : : }
1292 : :
1293 [ # # ][ # # ]: 0 : if (ifi->ifi_family == AF_BRIDGE && brid) {
1294 : : /* device has been removed from bridge */
1295 : : char namebuf[IFNAMSIZ];
1296 : 0 : if_indextoname(brid, namebuf);
1297 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Remove ifindex %u for bridge "
1298 : : "%s", brid, namebuf);
1299 : 0 : del_ifidx(drv, brid);
1300 : : }
1301 : : }
1302 : :
1303 : :
1304 : 451 : static void mlme_event_auth(struct wpa_driver_nl80211_data *drv,
1305 : : const u8 *frame, size_t len)
1306 : : {
1307 : : const struct ieee80211_mgmt *mgmt;
1308 : : union wpa_event_data event;
1309 : :
1310 : 451 : wpa_printf(MSG_DEBUG, "nl80211: Authenticate event");
1311 : 451 : mgmt = (const struct ieee80211_mgmt *) frame;
1312 [ - + ]: 451 : if (len < 24 + sizeof(mgmt->u.auth)) {
1313 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
1314 : : "frame");
1315 : 451 : return;
1316 : : }
1317 : :
1318 : 451 : os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN);
1319 : 451 : os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
1320 : 451 : os_memset(&event, 0, sizeof(event));
1321 : 451 : os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN);
1322 : 451 : event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg);
1323 : 451 : event.auth.auth_transaction =
1324 : 451 : le_to_host16(mgmt->u.auth.auth_transaction);
1325 : 451 : event.auth.status_code = le_to_host16(mgmt->u.auth.status_code);
1326 [ + + ]: 451 : if (len > 24 + sizeof(mgmt->u.auth)) {
1327 : 43 : event.auth.ies = mgmt->u.auth.variable;
1328 : 43 : event.auth.ies_len = len - 24 - sizeof(mgmt->u.auth);
1329 : : }
1330 : :
1331 : 451 : wpa_supplicant_event(drv->ctx, EVENT_AUTH, &event);
1332 : : }
1333 : :
1334 : :
1335 : 2 : static unsigned int nl80211_get_assoc_freq(struct wpa_driver_nl80211_data *drv)
1336 : : {
1337 : : struct nl_msg *msg;
1338 : : int ret;
1339 : : struct nl80211_bss_info_arg arg;
1340 : :
1341 : 2 : os_memset(&arg, 0, sizeof(arg));
1342 : 2 : msg = nlmsg_alloc();
1343 [ - + ]: 2 : if (!msg)
1344 : 0 : goto nla_put_failure;
1345 : :
1346 : 2 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
1347 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
1348 : :
1349 : 2 : arg.drv = drv;
1350 : 2 : ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
1351 : 2 : msg = NULL;
1352 [ + - ]: 2 : if (ret == 0) {
1353 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Operating frequency for the "
1354 : : "associated BSS from scan results: %u MHz",
1355 : : arg.assoc_freq);
1356 [ + - ]: 2 : if (arg.assoc_freq)
1357 : 2 : drv->assoc_freq = arg.assoc_freq;
1358 : 2 : return drv->assoc_freq;
1359 : : }
1360 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
1361 : : "(%s)", ret, strerror(-ret));
1362 : : nla_put_failure:
1363 : 0 : nlmsg_free(msg);
1364 : 2 : return drv->assoc_freq;
1365 : : }
1366 : :
1367 : :
1368 : 437 : static void mlme_event_assoc(struct wpa_driver_nl80211_data *drv,
1369 : : const u8 *frame, size_t len)
1370 : : {
1371 : : const struct ieee80211_mgmt *mgmt;
1372 : : union wpa_event_data event;
1373 : : u16 status;
1374 : :
1375 : 437 : wpa_printf(MSG_DEBUG, "nl80211: Associate event");
1376 : 437 : mgmt = (const struct ieee80211_mgmt *) frame;
1377 [ - + ]: 437 : if (len < 24 + sizeof(mgmt->u.assoc_resp)) {
1378 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
1379 : : "frame");
1380 : 0 : return;
1381 : : }
1382 : :
1383 : 437 : status = le_to_host16(mgmt->u.assoc_resp.status_code);
1384 [ - + ]: 437 : if (status != WLAN_STATUS_SUCCESS) {
1385 : 0 : os_memset(&event, 0, sizeof(event));
1386 : 0 : event.assoc_reject.bssid = mgmt->bssid;
1387 [ # # ]: 0 : if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
1388 : 0 : event.assoc_reject.resp_ies =
1389 : 0 : (u8 *) mgmt->u.assoc_resp.variable;
1390 : 0 : event.assoc_reject.resp_ies_len =
1391 : 0 : len - 24 - sizeof(mgmt->u.assoc_resp);
1392 : : }
1393 : 0 : event.assoc_reject.status_code = status;
1394 : :
1395 : 0 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
1396 : 0 : return;
1397 : : }
1398 : :
1399 : 437 : drv->associated = 1;
1400 : 437 : os_memcpy(drv->bssid, mgmt->sa, ETH_ALEN);
1401 : 437 : os_memcpy(drv->prev_bssid, mgmt->sa, ETH_ALEN);
1402 : :
1403 : 437 : os_memset(&event, 0, sizeof(event));
1404 [ + - ]: 437 : if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
1405 : 437 : event.assoc_info.resp_ies = (u8 *) mgmt->u.assoc_resp.variable;
1406 : 437 : event.assoc_info.resp_ies_len =
1407 : 437 : len - 24 - sizeof(mgmt->u.assoc_resp);
1408 : : }
1409 : :
1410 : 437 : event.assoc_info.freq = drv->assoc_freq;
1411 : :
1412 : 437 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
1413 : : }
1414 : :
1415 : :
1416 : 437 : static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
1417 : : enum nl80211_commands cmd, struct nlattr *status,
1418 : : struct nlattr *addr, struct nlattr *req_ie,
1419 : : struct nlattr *resp_ie)
1420 : : {
1421 : : union wpa_event_data event;
1422 : :
1423 [ + + ]: 437 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
1424 : : /*
1425 : : * Avoid reporting two association events that would confuse
1426 : : * the core code.
1427 : : */
1428 : 435 : wpa_printf(MSG_DEBUG, "nl80211: Ignore connect event (cmd=%d) "
1429 : : "when using userspace SME", cmd);
1430 : 435 : return;
1431 : : }
1432 : :
1433 [ + - ]: 2 : if (cmd == NL80211_CMD_CONNECT)
1434 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Connect event");
1435 [ # # ]: 0 : else if (cmd == NL80211_CMD_ROAM)
1436 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Roam event");
1437 : :
1438 : 2 : os_memset(&event, 0, sizeof(event));
1439 [ + - - + ]: 4 : if (cmd == NL80211_CMD_CONNECT &&
1440 : 2 : nla_get_u16(status) != WLAN_STATUS_SUCCESS) {
1441 [ # # ]: 0 : if (addr)
1442 : 0 : event.assoc_reject.bssid = nla_data(addr);
1443 [ # # ]: 0 : if (resp_ie) {
1444 : 0 : event.assoc_reject.resp_ies = nla_data(resp_ie);
1445 : 0 : event.assoc_reject.resp_ies_len = nla_len(resp_ie);
1446 : : }
1447 : 0 : event.assoc_reject.status_code = nla_get_u16(status);
1448 : 0 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
1449 : 0 : return;
1450 : : }
1451 : :
1452 : 2 : drv->associated = 1;
1453 [ + - ]: 2 : if (addr) {
1454 : 2 : os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN);
1455 : 2 : os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
1456 : : }
1457 : :
1458 [ - + ]: 2 : if (req_ie) {
1459 : 0 : event.assoc_info.req_ies = nla_data(req_ie);
1460 : 0 : event.assoc_info.req_ies_len = nla_len(req_ie);
1461 : : }
1462 [ + - ]: 2 : if (resp_ie) {
1463 : 2 : event.assoc_info.resp_ies = nla_data(resp_ie);
1464 : 2 : event.assoc_info.resp_ies_len = nla_len(resp_ie);
1465 : : }
1466 : :
1467 : 2 : event.assoc_info.freq = nl80211_get_assoc_freq(drv);
1468 : :
1469 : 437 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
1470 : : }
1471 : :
1472 : :
1473 : 426 : static void mlme_event_disconnect(struct wpa_driver_nl80211_data *drv,
1474 : : struct nlattr *reason, struct nlattr *addr,
1475 : : struct nlattr *by_ap)
1476 : : {
1477 : : union wpa_event_data data;
1478 : 426 : unsigned int locally_generated = by_ap == NULL;
1479 : :
1480 [ + + ]: 426 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
1481 : : /*
1482 : : * Avoid reporting two disassociation events that could
1483 : : * confuse the core code.
1484 : : */
1485 : 424 : wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
1486 : : "event when using userspace SME");
1487 : 424 : return;
1488 : : }
1489 : :
1490 [ + - ]: 2 : if (drv->ignore_next_local_disconnect) {
1491 : 2 : drv->ignore_next_local_disconnect = 0;
1492 [ + - ]: 2 : if (locally_generated) {
1493 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
1494 : : "event triggered during reassociation");
1495 : 2 : return;
1496 : : }
1497 : 0 : wpa_printf(MSG_WARNING, "nl80211: Was expecting local "
1498 : : "disconnect but got another disconnect "
1499 : : "event first");
1500 : : }
1501 : :
1502 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disconnect event");
1503 : 0 : nl80211_mark_disconnected(drv);
1504 : 0 : os_memset(&data, 0, sizeof(data));
1505 [ # # ]: 0 : if (reason)
1506 : 0 : data.deauth_info.reason_code = nla_get_u16(reason);
1507 : 0 : data.deauth_info.locally_generated = by_ap == NULL;
1508 : 426 : wpa_supplicant_event(drv->ctx, EVENT_DEAUTH, &data);
1509 : : }
1510 : :
1511 : :
1512 : 0 : static void mlme_event_ch_switch(struct wpa_driver_nl80211_data *drv,
1513 : : struct nlattr *ifindex, struct nlattr *freq,
1514 : : struct nlattr *type, struct nlattr *bw,
1515 : : struct nlattr *cf1, struct nlattr *cf2)
1516 : : {
1517 : : struct i802_bss *bss;
1518 : : union wpa_event_data data;
1519 : 0 : int ht_enabled = 1;
1520 : 0 : int chan_offset = 0;
1521 : : int ifidx;
1522 : :
1523 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Channel switch event");
1524 : :
1525 [ # # ]: 0 : if (!freq)
1526 : 0 : return;
1527 : :
1528 : 0 : ifidx = nla_get_u32(ifindex);
1529 [ # # ]: 0 : for (bss = drv->first_bss; bss; bss = bss->next)
1530 [ # # ]: 0 : if (bss->ifindex == ifidx)
1531 : 0 : break;
1532 : :
1533 [ # # ]: 0 : if (bss == NULL) {
1534 : 0 : wpa_printf(MSG_WARNING, "nl80211: Unknown ifindex (%d) for channel switch, ignoring",
1535 : : ifidx);
1536 : 0 : return;
1537 : : }
1538 : :
1539 [ # # ]: 0 : if (type) {
1540 [ # # # # : 0 : switch (nla_get_u32(type)) {
# ]
1541 : : case NL80211_CHAN_NO_HT:
1542 : 0 : ht_enabled = 0;
1543 : 0 : break;
1544 : : case NL80211_CHAN_HT20:
1545 : 0 : break;
1546 : : case NL80211_CHAN_HT40PLUS:
1547 : 0 : chan_offset = 1;
1548 : 0 : break;
1549 : : case NL80211_CHAN_HT40MINUS:
1550 : 0 : chan_offset = -1;
1551 : 0 : break;
1552 : : }
1553 : : }
1554 : :
1555 : 0 : os_memset(&data, 0, sizeof(data));
1556 : 0 : data.ch_switch.freq = nla_get_u32(freq);
1557 : 0 : data.ch_switch.ht_enabled = ht_enabled;
1558 : 0 : data.ch_switch.ch_offset = chan_offset;
1559 [ # # ]: 0 : if (bw)
1560 : 0 : data.ch_switch.ch_width = convert2width(nla_get_u32(bw));
1561 [ # # ]: 0 : if (cf1)
1562 : 0 : data.ch_switch.cf1 = nla_get_u32(cf1);
1563 [ # # ]: 0 : if (cf2)
1564 : 0 : data.ch_switch.cf2 = nla_get_u32(cf2);
1565 : :
1566 : 0 : bss->freq = data.ch_switch.freq;
1567 : :
1568 : 0 : wpa_supplicant_event(drv->ctx, EVENT_CH_SWITCH, &data);
1569 : : }
1570 : :
1571 : :
1572 : 3 : static void mlme_timeout_event(struct wpa_driver_nl80211_data *drv,
1573 : : enum nl80211_commands cmd, struct nlattr *addr)
1574 : : {
1575 : : union wpa_event_data event;
1576 : : enum wpa_event_type ev;
1577 : :
1578 [ - + ]: 3 : if (nla_len(addr) != ETH_ALEN)
1579 : 0 : return;
1580 : :
1581 : 3 : wpa_printf(MSG_DEBUG, "nl80211: MLME event %d; timeout with " MACSTR,
1582 : 3 : cmd, MAC2STR((u8 *) nla_data(addr)));
1583 : :
1584 [ + - ]: 3 : if (cmd == NL80211_CMD_AUTHENTICATE)
1585 : 3 : ev = EVENT_AUTH_TIMED_OUT;
1586 [ # # ]: 0 : else if (cmd == NL80211_CMD_ASSOCIATE)
1587 : 0 : ev = EVENT_ASSOC_TIMED_OUT;
1588 : : else
1589 : 0 : return;
1590 : :
1591 : 3 : os_memset(&event, 0, sizeof(event));
1592 : 3 : os_memcpy(event.timeout_event.addr, nla_data(addr), ETH_ALEN);
1593 : 3 : wpa_supplicant_event(drv->ctx, ev, &event);
1594 : : }
1595 : :
1596 : :
1597 : 1045 : static void mlme_event_mgmt(struct wpa_driver_nl80211_data *drv,
1598 : : struct nlattr *freq, struct nlattr *sig,
1599 : : const u8 *frame, size_t len)
1600 : : {
1601 : : const struct ieee80211_mgmt *mgmt;
1602 : : union wpa_event_data event;
1603 : : u16 fc, stype;
1604 : 1045 : int ssi_signal = 0;
1605 : 1045 : int rx_freq = 0;
1606 : :
1607 : 1045 : wpa_printf(MSG_MSGDUMP, "nl80211: Frame event");
1608 : 1045 : mgmt = (const struct ieee80211_mgmt *) frame;
1609 [ - + ]: 1045 : if (len < 24) {
1610 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short management frame");
1611 : 1045 : return;
1612 : : }
1613 : :
1614 : 1045 : fc = le_to_host16(mgmt->frame_control);
1615 : 1045 : stype = WLAN_FC_GET_STYPE(fc);
1616 : :
1617 [ + - ]: 1045 : if (sig)
1618 : 1045 : ssi_signal = (s32) nla_get_u32(sig);
1619 : :
1620 : 1045 : os_memset(&event, 0, sizeof(event));
1621 [ + - ]: 1045 : if (freq) {
1622 : 1045 : event.rx_mgmt.freq = nla_get_u32(freq);
1623 : 1045 : rx_freq = drv->last_mgmt_freq = event.rx_mgmt.freq;
1624 : : }
1625 : 1045 : wpa_printf(MSG_DEBUG,
1626 : : "nl80211: RX frame freq=%d ssi_signal=%d stype=%u len=%u",
1627 : : rx_freq, ssi_signal, stype, (unsigned int) len);
1628 : 1045 : event.rx_mgmt.frame = frame;
1629 : 1045 : event.rx_mgmt.frame_len = len;
1630 : 1045 : event.rx_mgmt.ssi_signal = ssi_signal;
1631 : 1045 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
1632 : : }
1633 : :
1634 : :
1635 : 762 : static void mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv,
1636 : : struct nlattr *cookie, const u8 *frame,
1637 : : size_t len, struct nlattr *ack)
1638 : : {
1639 : : union wpa_event_data event;
1640 : : const struct ieee80211_hdr *hdr;
1641 : : u16 fc;
1642 : :
1643 : 762 : wpa_printf(MSG_DEBUG, "nl80211: Frame TX status event");
1644 [ + + ]: 762 : if (!is_ap_interface(drv->nlmode)) {
1645 : : u64 cookie_val;
1646 : :
1647 [ - + ]: 377 : if (!cookie)
1648 : 0 : return;
1649 : :
1650 : 377 : cookie_val = nla_get_u64(cookie);
1651 [ + + ]: 377 : wpa_printf(MSG_DEBUG, "nl80211: Action TX status:"
1652 : : " cookie=0%llx%s (ack=%d)",
1653 : : (long long unsigned int) cookie_val,
1654 : 377 : cookie_val == drv->send_action_cookie ?
1655 : : " (match)" : " (unknown)", ack != NULL);
1656 [ + + ]: 377 : if (cookie_val != drv->send_action_cookie)
1657 : 54 : return;
1658 : : }
1659 : :
1660 : 708 : hdr = (const struct ieee80211_hdr *) frame;
1661 : 708 : fc = le_to_host16(hdr->frame_control);
1662 : :
1663 : 708 : os_memset(&event, 0, sizeof(event));
1664 : 708 : event.tx_status.type = WLAN_FC_GET_TYPE(fc);
1665 : 708 : event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
1666 : 708 : event.tx_status.dst = hdr->addr1;
1667 : 708 : event.tx_status.data = frame;
1668 : 708 : event.tx_status.data_len = len;
1669 : 708 : event.tx_status.ack = ack != NULL;
1670 : 762 : wpa_supplicant_event(drv->ctx, EVENT_TX_STATUS, &event);
1671 : : }
1672 : :
1673 : :
1674 : 431 : static void mlme_event_deauth_disassoc(struct wpa_driver_nl80211_data *drv,
1675 : : enum wpa_event_type type,
1676 : : const u8 *frame, size_t len)
1677 : : {
1678 : : const struct ieee80211_mgmt *mgmt;
1679 : : union wpa_event_data event;
1680 : 431 : const u8 *bssid = NULL;
1681 : 431 : u16 reason_code = 0;
1682 : :
1683 [ + - ]: 431 : if (type == EVENT_DEAUTH)
1684 : 431 : wpa_printf(MSG_DEBUG, "nl80211: Deauthenticate event");
1685 : : else
1686 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disassociate event");
1687 : :
1688 : 431 : mgmt = (const struct ieee80211_mgmt *) frame;
1689 [ + - ]: 431 : if (len >= 24) {
1690 : 431 : bssid = mgmt->bssid;
1691 : :
1692 [ + + ][ + + ]: 431 : if ((drv->capa.flags & WPA_DRIVER_FLAGS_SME) &&
1693 [ + + ]: 378 : !drv->associated &&
1694 [ + + ]: 106 : os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0 &&
1695 [ + - ]: 26 : os_memcmp(bssid, drv->auth_attempt_bssid, ETH_ALEN) != 0 &&
1696 : 26 : os_memcmp(bssid, drv->prev_bssid, ETH_ALEN) == 0) {
1697 : : /*
1698 : : * Avoid issues with some roaming cases where
1699 : : * disconnection event for the old AP may show up after
1700 : : * we have started connection with the new AP.
1701 : : */
1702 : 26 : wpa_printf(MSG_DEBUG, "nl80211: Ignore deauth/disassoc event from old AP " MACSTR " when already authenticating with " MACSTR,
1703 : 156 : MAC2STR(bssid),
1704 : 156 : MAC2STR(drv->auth_attempt_bssid));
1705 : 26 : return;
1706 : : }
1707 : :
1708 [ + + ][ - + ]: 405 : if (drv->associated != 0 &&
1709 [ # # ]: 0 : os_memcmp(bssid, drv->bssid, ETH_ALEN) != 0 &&
1710 : 0 : os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0) {
1711 : : /*
1712 : : * We have presumably received this deauth as a
1713 : : * response to a clear_state_mismatch() outgoing
1714 : : * deauth. Don't let it take us offline!
1715 : : */
1716 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Deauth received "
1717 : : "from Unknown BSSID " MACSTR " -- ignoring",
1718 : 0 : MAC2STR(bssid));
1719 : 0 : return;
1720 : : }
1721 : : }
1722 : :
1723 : 405 : nl80211_mark_disconnected(drv);
1724 : 405 : os_memset(&event, 0, sizeof(event));
1725 : :
1726 : : /* Note: Same offset for Reason Code in both frame subtypes */
1727 [ + - ]: 405 : if (len >= 24 + sizeof(mgmt->u.deauth))
1728 : 405 : reason_code = le_to_host16(mgmt->u.deauth.reason_code);
1729 : :
1730 [ - + ]: 405 : if (type == EVENT_DISASSOC) {
1731 : 0 : event.disassoc_info.locally_generated =
1732 : 0 : !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
1733 : 0 : event.disassoc_info.addr = bssid;
1734 : 0 : event.disassoc_info.reason_code = reason_code;
1735 [ # # ]: 0 : if (frame + len > mgmt->u.disassoc.variable) {
1736 : 0 : event.disassoc_info.ie = mgmt->u.disassoc.variable;
1737 : 0 : event.disassoc_info.ie_len = frame + len -
1738 : : mgmt->u.disassoc.variable;
1739 : : }
1740 : : } else {
1741 : 405 : event.deauth_info.locally_generated =
1742 : 405 : !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
1743 : 405 : event.deauth_info.addr = bssid;
1744 : 405 : event.deauth_info.reason_code = reason_code;
1745 [ - + ]: 405 : if (frame + len > mgmt->u.deauth.variable) {
1746 : 0 : event.deauth_info.ie = mgmt->u.deauth.variable;
1747 : 0 : event.deauth_info.ie_len = frame + len -
1748 : : mgmt->u.deauth.variable;
1749 : : }
1750 : : }
1751 : :
1752 : 431 : wpa_supplicant_event(drv->ctx, type, &event);
1753 : : }
1754 : :
1755 : :
1756 : 0 : static void mlme_event_unprot_disconnect(struct wpa_driver_nl80211_data *drv,
1757 : : enum wpa_event_type type,
1758 : : const u8 *frame, size_t len)
1759 : : {
1760 : : const struct ieee80211_mgmt *mgmt;
1761 : : union wpa_event_data event;
1762 : 0 : u16 reason_code = 0;
1763 : :
1764 [ # # ]: 0 : if (type == EVENT_UNPROT_DEAUTH)
1765 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unprot Deauthenticate event");
1766 : : else
1767 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unprot Disassociate event");
1768 : :
1769 [ # # ]: 0 : if (len < 24)
1770 : 0 : return;
1771 : :
1772 : 0 : mgmt = (const struct ieee80211_mgmt *) frame;
1773 : :
1774 : 0 : os_memset(&event, 0, sizeof(event));
1775 : : /* Note: Same offset for Reason Code in both frame subtypes */
1776 [ # # ]: 0 : if (len >= 24 + sizeof(mgmt->u.deauth))
1777 : 0 : reason_code = le_to_host16(mgmt->u.deauth.reason_code);
1778 : :
1779 [ # # ]: 0 : if (type == EVENT_UNPROT_DISASSOC) {
1780 : 0 : event.unprot_disassoc.sa = mgmt->sa;
1781 : 0 : event.unprot_disassoc.da = mgmt->da;
1782 : 0 : event.unprot_disassoc.reason_code = reason_code;
1783 : : } else {
1784 : 0 : event.unprot_deauth.sa = mgmt->sa;
1785 : 0 : event.unprot_deauth.da = mgmt->da;
1786 : 0 : event.unprot_deauth.reason_code = reason_code;
1787 : : }
1788 : :
1789 : 0 : wpa_supplicant_event(drv->ctx, type, &event);
1790 : : }
1791 : :
1792 : :
1793 : 3129 : static void mlme_event(struct i802_bss *bss,
1794 : : enum nl80211_commands cmd, struct nlattr *frame,
1795 : : struct nlattr *addr, struct nlattr *timed_out,
1796 : : struct nlattr *freq, struct nlattr *ack,
1797 : : struct nlattr *cookie, struct nlattr *sig)
1798 : : {
1799 : 3129 : struct wpa_driver_nl80211_data *drv = bss->drv;
1800 : : const u8 *data;
1801 : : size_t len;
1802 : :
1803 [ + + ][ + - ]: 3129 : if (timed_out && addr) {
1804 : 3 : mlme_timeout_event(drv, cmd, addr);
1805 : 3 : return;
1806 : : }
1807 : :
1808 [ - + ]: 3126 : if (frame == NULL) {
1809 : 0 : wpa_printf(MSG_DEBUG,
1810 : : "nl80211: MLME event %d (%s) without frame data",
1811 : : cmd, nl80211_command_to_string(cmd));
1812 : 0 : return;
1813 : : }
1814 : :
1815 : 3126 : data = nla_data(frame);
1816 : 3126 : len = nla_len(frame);
1817 [ - + ]: 3126 : if (len < 4 + 2 * ETH_ALEN) {
1818 : 0 : wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s("
1819 : : MACSTR ") - too short",
1820 : 0 : cmd, nl80211_command_to_string(cmd), bss->ifname,
1821 : 0 : MAC2STR(bss->addr));
1822 : 0 : return;
1823 : : }
1824 : 3126 : wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s(" MACSTR
1825 : : ") A1=" MACSTR " A2=" MACSTR, cmd,
1826 : 3126 : nl80211_command_to_string(cmd), bss->ifname,
1827 : 37512 : MAC2STR(bss->addr), MAC2STR(data + 4),
1828 : 18756 : MAC2STR(data + 4 + ETH_ALEN));
1829 [ + + ][ + + ]: 3126 : if (cmd != NL80211_CMD_FRAME_TX_STATUS && !(data[4] & 0x01) &&
[ + + ]
1830 [ - + ]: 376 : os_memcmp(bss->addr, data + 4, ETH_ALEN) != 0 &&
1831 : 376 : os_memcmp(bss->addr, data + 4 + ETH_ALEN, ETH_ALEN) != 0) {
1832 : 0 : wpa_printf(MSG_MSGDUMP, "nl80211: %s: Ignore MLME frame event "
1833 : 0 : "for foreign address", bss->ifname);
1834 : 0 : return;
1835 : : }
1836 : 3126 : wpa_hexdump(MSG_MSGDUMP, "nl80211: MLME event frame",
1837 : 3126 : nla_data(frame), nla_len(frame));
1838 : :
1839 [ + + + - : 3126 : switch (cmd) {
+ + - -
- ]
1840 : : case NL80211_CMD_AUTHENTICATE:
1841 : 451 : mlme_event_auth(drv, nla_data(frame), nla_len(frame));
1842 : 451 : break;
1843 : : case NL80211_CMD_ASSOCIATE:
1844 : 437 : mlme_event_assoc(drv, nla_data(frame), nla_len(frame));
1845 : 437 : break;
1846 : : case NL80211_CMD_DEAUTHENTICATE:
1847 : 431 : mlme_event_deauth_disassoc(drv, EVENT_DEAUTH,
1848 : 431 : nla_data(frame), nla_len(frame));
1849 : 431 : break;
1850 : : case NL80211_CMD_DISASSOCIATE:
1851 : 0 : mlme_event_deauth_disassoc(drv, EVENT_DISASSOC,
1852 : 0 : nla_data(frame), nla_len(frame));
1853 : 0 : break;
1854 : : case NL80211_CMD_FRAME:
1855 : 1045 : mlme_event_mgmt(drv, freq, sig, nla_data(frame),
1856 : 1045 : nla_len(frame));
1857 : 1045 : break;
1858 : : case NL80211_CMD_FRAME_TX_STATUS:
1859 : 762 : mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1860 : 762 : nla_len(frame), ack);
1861 : 762 : break;
1862 : : case NL80211_CMD_UNPROT_DEAUTHENTICATE:
1863 : 0 : mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DEAUTH,
1864 : 0 : nla_data(frame), nla_len(frame));
1865 : 0 : break;
1866 : : case NL80211_CMD_UNPROT_DISASSOCIATE:
1867 : 0 : mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DISASSOC,
1868 : 0 : nla_data(frame), nla_len(frame));
1869 : 0 : break;
1870 : : default:
1871 : 3129 : break;
1872 : : }
1873 : : }
1874 : :
1875 : :
1876 : 0 : static void mlme_event_michael_mic_failure(struct i802_bss *bss,
1877 : : struct nlattr *tb[])
1878 : : {
1879 : : union wpa_event_data data;
1880 : :
1881 : 0 : wpa_printf(MSG_DEBUG, "nl80211: MLME event Michael MIC failure");
1882 : 0 : os_memset(&data, 0, sizeof(data));
1883 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC]) {
1884 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Source MAC address",
1885 : 0 : nla_data(tb[NL80211_ATTR_MAC]),
1886 : 0 : nla_len(tb[NL80211_ATTR_MAC]));
1887 : 0 : data.michael_mic_failure.src = nla_data(tb[NL80211_ATTR_MAC]);
1888 : : }
1889 [ # # ]: 0 : if (tb[NL80211_ATTR_KEY_SEQ]) {
1890 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: TSC",
1891 : 0 : nla_data(tb[NL80211_ATTR_KEY_SEQ]),
1892 : 0 : nla_len(tb[NL80211_ATTR_KEY_SEQ]));
1893 : : }
1894 [ # # ]: 0 : if (tb[NL80211_ATTR_KEY_TYPE]) {
1895 : 0 : enum nl80211_key_type key_type =
1896 : 0 : nla_get_u32(tb[NL80211_ATTR_KEY_TYPE]);
1897 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Key Type %d", key_type);
1898 [ # # ]: 0 : if (key_type == NL80211_KEYTYPE_PAIRWISE)
1899 : 0 : data.michael_mic_failure.unicast = 1;
1900 : : } else
1901 : 0 : data.michael_mic_failure.unicast = 1;
1902 : :
1903 [ # # ]: 0 : if (tb[NL80211_ATTR_KEY_IDX]) {
1904 : 0 : u8 key_id = nla_get_u8(tb[NL80211_ATTR_KEY_IDX]);
1905 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Key Id %d", key_id);
1906 : : }
1907 : :
1908 : 0 : wpa_supplicant_event(bss->ctx, EVENT_MICHAEL_MIC_FAILURE, &data);
1909 : 0 : }
1910 : :
1911 : :
1912 : 6 : static void mlme_event_join_ibss(struct wpa_driver_nl80211_data *drv,
1913 : : struct nlattr *tb[])
1914 : : {
1915 [ - + ]: 6 : if (tb[NL80211_ATTR_MAC] == NULL) {
1916 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No address in IBSS joined "
1917 : : "event");
1918 : 6 : return;
1919 : : }
1920 : 6 : os_memcpy(drv->bssid, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
1921 : :
1922 : 6 : drv->associated = 1;
1923 : 6 : wpa_printf(MSG_DEBUG, "nl80211: IBSS " MACSTR " joined",
1924 : 36 : MAC2STR(drv->bssid));
1925 : :
1926 : 6 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, NULL);
1927 : : }
1928 : :
1929 : :
1930 : 1060 : static void mlme_event_remain_on_channel(struct wpa_driver_nl80211_data *drv,
1931 : : int cancel_event, struct nlattr *tb[])
1932 : : {
1933 : : unsigned int freq, chan_type, duration;
1934 : : union wpa_event_data data;
1935 : : u64 cookie;
1936 : :
1937 [ + - ]: 1060 : if (tb[NL80211_ATTR_WIPHY_FREQ])
1938 : 1060 : freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
1939 : : else
1940 : 0 : freq = 0;
1941 : :
1942 [ + - ]: 1060 : if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
1943 : 1060 : chan_type = nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1944 : : else
1945 : 0 : chan_type = 0;
1946 : :
1947 [ + + ]: 1060 : if (tb[NL80211_ATTR_DURATION])
1948 : 530 : duration = nla_get_u32(tb[NL80211_ATTR_DURATION]);
1949 : : else
1950 : 530 : duration = 0;
1951 : :
1952 [ + - ]: 1060 : if (tb[NL80211_ATTR_COOKIE])
1953 : 1060 : cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1954 : : else
1955 : 0 : cookie = 0;
1956 : :
1957 [ + + ]: 1060 : wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel event (cancel=%d "
1958 : : "freq=%u channel_type=%u duration=%u cookie=0x%llx (%s))",
1959 : : cancel_event, freq, chan_type, duration,
1960 : : (long long unsigned int) cookie,
1961 : 1060 : cookie == drv->remain_on_chan_cookie ? "match" : "unknown");
1962 : :
1963 [ + + ]: 1060 : if (cookie != drv->remain_on_chan_cookie)
1964 : 1060 : return; /* not for us */
1965 : :
1966 [ + + ]: 1053 : if (cancel_event)
1967 : 525 : drv->pending_remain_on_chan = 0;
1968 : :
1969 : 1053 : os_memset(&data, 0, sizeof(data));
1970 : 1053 : data.remain_on_channel.freq = freq;
1971 : 1053 : data.remain_on_channel.duration = duration;
1972 [ + + ]: 1053 : wpa_supplicant_event(drv->ctx, cancel_event ?
1973 : : EVENT_CANCEL_REMAIN_ON_CHANNEL :
1974 : : EVENT_REMAIN_ON_CHANNEL, &data);
1975 : : }
1976 : :
1977 : :
1978 : 0 : static void mlme_event_ft_event(struct wpa_driver_nl80211_data *drv,
1979 : : struct nlattr *tb[])
1980 : : {
1981 : : union wpa_event_data data;
1982 : :
1983 : 0 : os_memset(&data, 0, sizeof(data));
1984 : :
1985 [ # # ]: 0 : if (tb[NL80211_ATTR_IE]) {
1986 : 0 : data.ft_ies.ies = nla_data(tb[NL80211_ATTR_IE]);
1987 : 0 : data.ft_ies.ies_len = nla_len(tb[NL80211_ATTR_IE]);
1988 : : }
1989 : :
1990 [ # # ]: 0 : if (tb[NL80211_ATTR_IE_RIC]) {
1991 : 0 : data.ft_ies.ric_ies = nla_data(tb[NL80211_ATTR_IE_RIC]);
1992 : 0 : data.ft_ies.ric_ies_len = nla_len(tb[NL80211_ATTR_IE_RIC]);
1993 : : }
1994 : :
1995 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC])
1996 : 0 : os_memcpy(data.ft_ies.target_ap,
1997 : : nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
1998 : :
1999 : 0 : wpa_printf(MSG_DEBUG, "nl80211: FT event target_ap " MACSTR,
2000 : 0 : MAC2STR(data.ft_ies.target_ap));
2001 : :
2002 : 0 : wpa_supplicant_event(drv->ctx, EVENT_FT_RESPONSE, &data);
2003 : 0 : }
2004 : :
2005 : :
2006 : 934 : static void send_scan_event(struct wpa_driver_nl80211_data *drv, int aborted,
2007 : : struct nlattr *tb[])
2008 : : {
2009 : : union wpa_event_data event;
2010 : : struct nlattr *nl;
2011 : : int rem;
2012 : : struct scan_info *info;
2013 : : #define MAX_REPORT_FREQS 50
2014 : : int freqs[MAX_REPORT_FREQS];
2015 : 934 : int num_freqs = 0;
2016 : :
2017 [ - + ]: 934 : if (drv->scan_for_auth) {
2018 : 0 : drv->scan_for_auth = 0;
2019 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan results for missing "
2020 : : "cfg80211 BSS entry");
2021 : 0 : wpa_driver_nl80211_authenticate_retry(drv);
2022 : 934 : return;
2023 : : }
2024 : :
2025 : 934 : os_memset(&event, 0, sizeof(event));
2026 : 934 : info = &event.scan_info;
2027 : 934 : info->aborted = aborted;
2028 : :
2029 [ + - ]: 934 : if (tb[NL80211_ATTR_SCAN_SSIDS]) {
2030 [ + + ]: 1866 : nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
2031 : 932 : struct wpa_driver_scan_ssid *s =
2032 : 932 : &info->ssids[info->num_ssids];
2033 : 932 : s->ssid = nla_data(nl);
2034 : 932 : s->ssid_len = nla_len(nl);
2035 : 932 : wpa_printf(MSG_DEBUG, "nl80211: Scan probed for SSID '%s'",
2036 : : wpa_ssid_txt(s->ssid, s->ssid_len));
2037 : 932 : info->num_ssids++;
2038 [ - + ]: 932 : if (info->num_ssids == WPAS_MAX_SCAN_SSIDS)
2039 : 0 : break;
2040 : : }
2041 : : }
2042 [ + - ]: 934 : if (tb[NL80211_ATTR_SCAN_FREQUENCIES]) {
2043 : : char msg[200], *pos, *end;
2044 : : int res;
2045 : :
2046 : 934 : pos = msg;
2047 : 934 : end = pos + sizeof(msg);
2048 : 934 : *pos = '\0';
2049 : :
2050 [ + + ]: 6012 : nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
2051 : : {
2052 : 5078 : freqs[num_freqs] = nla_get_u32(nl);
2053 : 5078 : res = os_snprintf(pos, end - pos, " %d",
2054 : : freqs[num_freqs]);
2055 [ + - ][ + - ]: 5078 : if (res > 0 && end - pos > res)
2056 : 5078 : pos += res;
2057 : 5078 : num_freqs++;
2058 [ - + ]: 5078 : if (num_freqs == MAX_REPORT_FREQS - 1)
2059 : 0 : break;
2060 : : }
2061 : 934 : info->freqs = freqs;
2062 : 934 : info->num_freqs = num_freqs;
2063 : 934 : wpa_printf(MSG_DEBUG, "nl80211: Scan included frequencies:%s",
2064 : : msg);
2065 : : }
2066 : 934 : wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, &event);
2067 : : }
2068 : :
2069 : :
2070 : 0 : static int get_link_signal(struct nl_msg *msg, void *arg)
2071 : : {
2072 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2073 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2074 : : struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
2075 : : static struct nla_policy policy[NL80211_STA_INFO_MAX + 1] = {
2076 : : [NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
2077 : : [NL80211_STA_INFO_SIGNAL_AVG] = { .type = NLA_U8 },
2078 : : };
2079 : : struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1];
2080 : : static struct nla_policy rate_policy[NL80211_RATE_INFO_MAX + 1] = {
2081 : : [NL80211_RATE_INFO_BITRATE] = { .type = NLA_U16 },
2082 : : [NL80211_RATE_INFO_MCS] = { .type = NLA_U8 },
2083 : : [NL80211_RATE_INFO_40_MHZ_WIDTH] = { .type = NLA_FLAG },
2084 : : [NL80211_RATE_INFO_SHORT_GI] = { .type = NLA_FLAG },
2085 : : };
2086 : 0 : struct wpa_signal_info *sig_change = arg;
2087 : :
2088 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2089 : : genlmsg_attrlen(gnlh, 0), NULL);
2090 [ # # # # ]: 0 : if (!tb[NL80211_ATTR_STA_INFO] ||
2091 : 0 : nla_parse_nested(sinfo, NL80211_STA_INFO_MAX,
2092 : : tb[NL80211_ATTR_STA_INFO], policy))
2093 : 0 : return NL_SKIP;
2094 [ # # ]: 0 : if (!sinfo[NL80211_STA_INFO_SIGNAL])
2095 : 0 : return NL_SKIP;
2096 : :
2097 : 0 : sig_change->current_signal =
2098 : 0 : (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL]);
2099 : :
2100 [ # # ]: 0 : if (sinfo[NL80211_STA_INFO_SIGNAL_AVG])
2101 : 0 : sig_change->avg_signal =
2102 : 0 : (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL_AVG]);
2103 : : else
2104 : 0 : sig_change->avg_signal = 0;
2105 : :
2106 [ # # ]: 0 : if (sinfo[NL80211_STA_INFO_TX_BITRATE]) {
2107 [ # # ]: 0 : if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
2108 : : sinfo[NL80211_STA_INFO_TX_BITRATE],
2109 : : rate_policy)) {
2110 : 0 : sig_change->current_txrate = 0;
2111 : : } else {
2112 [ # # ]: 0 : if (rinfo[NL80211_RATE_INFO_BITRATE]) {
2113 : 0 : sig_change->current_txrate =
2114 : 0 : nla_get_u16(rinfo[
2115 : 0 : NL80211_RATE_INFO_BITRATE]) * 100;
2116 : : }
2117 : : }
2118 : : }
2119 : :
2120 : 0 : return NL_SKIP;
2121 : : }
2122 : :
2123 : :
2124 : 0 : static int nl80211_get_link_signal(struct wpa_driver_nl80211_data *drv,
2125 : : struct wpa_signal_info *sig)
2126 : : {
2127 : : struct nl_msg *msg;
2128 : :
2129 : 0 : sig->current_signal = -9999;
2130 : 0 : sig->current_txrate = 0;
2131 : :
2132 : 0 : msg = nlmsg_alloc();
2133 [ # # ]: 0 : if (!msg)
2134 : 0 : return -ENOMEM;
2135 : :
2136 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
2137 : :
2138 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2139 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
2140 : :
2141 : 0 : return send_and_recv_msgs(drv, msg, get_link_signal, sig);
2142 : : nla_put_failure:
2143 : 0 : nlmsg_free(msg);
2144 : 0 : return -ENOBUFS;
2145 : : }
2146 : :
2147 : :
2148 : 0 : static int get_link_noise(struct nl_msg *msg, void *arg)
2149 : : {
2150 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2151 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2152 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
2153 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
2154 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
2155 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
2156 : : };
2157 : 0 : struct wpa_signal_info *sig_change = arg;
2158 : :
2159 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2160 : : genlmsg_attrlen(gnlh, 0), NULL);
2161 : :
2162 [ # # ]: 0 : if (!tb[NL80211_ATTR_SURVEY_INFO]) {
2163 : 0 : wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
2164 : 0 : return NL_SKIP;
2165 : : }
2166 : :
2167 [ # # ]: 0 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
2168 : : tb[NL80211_ATTR_SURVEY_INFO],
2169 : : survey_policy)) {
2170 : 0 : wpa_printf(MSG_DEBUG, "nl80211: failed to parse nested "
2171 : : "attributes!");
2172 : 0 : return NL_SKIP;
2173 : : }
2174 : :
2175 [ # # ]: 0 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
2176 : 0 : return NL_SKIP;
2177 : :
2178 [ # # ]: 0 : if (nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
2179 : 0 : sig_change->frequency)
2180 : 0 : return NL_SKIP;
2181 : :
2182 [ # # ]: 0 : if (!sinfo[NL80211_SURVEY_INFO_NOISE])
2183 : 0 : return NL_SKIP;
2184 : :
2185 : 0 : sig_change->current_noise =
2186 : 0 : (s8) nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
2187 : :
2188 : 0 : return NL_SKIP;
2189 : : }
2190 : :
2191 : :
2192 : 0 : static int nl80211_get_link_noise(struct wpa_driver_nl80211_data *drv,
2193 : : struct wpa_signal_info *sig_change)
2194 : : {
2195 : : struct nl_msg *msg;
2196 : :
2197 : 0 : sig_change->current_noise = 9999;
2198 : 0 : sig_change->frequency = drv->assoc_freq;
2199 : :
2200 : 0 : msg = nlmsg_alloc();
2201 [ # # ]: 0 : if (!msg)
2202 : 0 : return -ENOMEM;
2203 : :
2204 : 0 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
2205 : :
2206 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2207 : :
2208 : 0 : return send_and_recv_msgs(drv, msg, get_link_noise, sig_change);
2209 : : nla_put_failure:
2210 : 0 : nlmsg_free(msg);
2211 : 0 : return -ENOBUFS;
2212 : : }
2213 : :
2214 : :
2215 : 938 : static int get_noise_for_scan_results(struct nl_msg *msg, void *arg)
2216 : : {
2217 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2218 : 938 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2219 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
2220 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
2221 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
2222 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
2223 : : };
2224 : 938 : struct wpa_scan_results *scan_results = arg;
2225 : : struct wpa_scan_res *scan_res;
2226 : : size_t i;
2227 : :
2228 : 938 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2229 : : genlmsg_attrlen(gnlh, 0), NULL);
2230 : :
2231 [ - + ]: 938 : if (!tb[NL80211_ATTR_SURVEY_INFO]) {
2232 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Survey data missing");
2233 : 0 : return NL_SKIP;
2234 : : }
2235 : :
2236 [ - + ]: 938 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
2237 : : tb[NL80211_ATTR_SURVEY_INFO],
2238 : : survey_policy)) {
2239 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to parse nested "
2240 : : "attributes");
2241 : 0 : return NL_SKIP;
2242 : : }
2243 : :
2244 [ - + ]: 938 : if (!sinfo[NL80211_SURVEY_INFO_NOISE])
2245 : 0 : return NL_SKIP;
2246 : :
2247 [ - + ]: 938 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
2248 : 0 : return NL_SKIP;
2249 : :
2250 [ + + ]: 4545 : for (i = 0; i < scan_results->num; ++i) {
2251 : 3607 : scan_res = scan_results->res[i];
2252 [ - + ]: 3607 : if (!scan_res)
2253 : 0 : continue;
2254 [ + + ]: 3607 : if ((int) nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
2255 : 3607 : scan_res->freq)
2256 : 1113 : continue;
2257 [ - + ]: 2494 : if (!(scan_res->flags & WPA_SCAN_NOISE_INVALID))
2258 : 0 : continue;
2259 : 2494 : scan_res->noise = (s8)
2260 : 2494 : nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
2261 : 2494 : scan_res->flags &= ~WPA_SCAN_NOISE_INVALID;
2262 : : }
2263 : :
2264 : 938 : return NL_SKIP;
2265 : : }
2266 : :
2267 : :
2268 : 938 : static int nl80211_get_noise_for_scan_results(
2269 : : struct wpa_driver_nl80211_data *drv,
2270 : : struct wpa_scan_results *scan_res)
2271 : : {
2272 : : struct nl_msg *msg;
2273 : :
2274 : 938 : msg = nlmsg_alloc();
2275 [ - + ]: 938 : if (!msg)
2276 : 0 : return -ENOMEM;
2277 : :
2278 : 938 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
2279 : :
2280 [ + - ]: 938 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2281 : :
2282 : 938 : return send_and_recv_msgs(drv, msg, get_noise_for_scan_results,
2283 : : scan_res);
2284 : : nla_put_failure:
2285 : 0 : nlmsg_free(msg);
2286 : 938 : return -ENOBUFS;
2287 : : }
2288 : :
2289 : :
2290 : 0 : static void nl80211_cqm_event(struct wpa_driver_nl80211_data *drv,
2291 : : struct nlattr *tb[])
2292 : : {
2293 : : static struct nla_policy cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
2294 : : [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
2295 : : [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U8 },
2296 : : [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
2297 : : [NL80211_ATTR_CQM_PKT_LOSS_EVENT] = { .type = NLA_U32 },
2298 : : };
2299 : : struct nlattr *cqm[NL80211_ATTR_CQM_MAX + 1];
2300 : : enum nl80211_cqm_rssi_threshold_event event;
2301 : : union wpa_event_data ed;
2302 : : struct wpa_signal_info sig;
2303 : : int res;
2304 : :
2305 [ # # # # ]: 0 : if (tb[NL80211_ATTR_CQM] == NULL ||
2306 : 0 : nla_parse_nested(cqm, NL80211_ATTR_CQM_MAX, tb[NL80211_ATTR_CQM],
2307 : : cqm_policy)) {
2308 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore invalid CQM event");
2309 : 0 : return;
2310 : : }
2311 : :
2312 : 0 : os_memset(&ed, 0, sizeof(ed));
2313 : :
2314 [ # # ]: 0 : if (cqm[NL80211_ATTR_CQM_PKT_LOSS_EVENT]) {
2315 [ # # ]: 0 : if (!tb[NL80211_ATTR_MAC])
2316 : 0 : return;
2317 : 0 : os_memcpy(ed.low_ack.addr, nla_data(tb[NL80211_ATTR_MAC]),
2318 : : ETH_ALEN);
2319 : 0 : wpa_supplicant_event(drv->ctx, EVENT_STATION_LOW_ACK, &ed);
2320 : 0 : return;
2321 : : }
2322 : :
2323 [ # # ]: 0 : if (cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] == NULL)
2324 : 0 : return;
2325 : 0 : event = nla_get_u32(cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT]);
2326 : :
2327 [ # # ]: 0 : if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH) {
2328 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
2329 : : "event: RSSI high");
2330 : 0 : ed.signal_change.above_threshold = 1;
2331 [ # # ]: 0 : } else if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW) {
2332 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
2333 : : "event: RSSI low");
2334 : 0 : ed.signal_change.above_threshold = 0;
2335 : : } else
2336 : 0 : return;
2337 : :
2338 : 0 : res = nl80211_get_link_signal(drv, &sig);
2339 [ # # ]: 0 : if (res == 0) {
2340 : 0 : ed.signal_change.current_signal = sig.current_signal;
2341 : 0 : ed.signal_change.current_txrate = sig.current_txrate;
2342 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Signal: %d dBm txrate: %d",
2343 : : sig.current_signal, sig.current_txrate);
2344 : : }
2345 : :
2346 : 0 : res = nl80211_get_link_noise(drv, &sig);
2347 [ # # ]: 0 : if (res == 0) {
2348 : 0 : ed.signal_change.current_noise = sig.current_noise;
2349 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Noise: %d dBm",
2350 : : sig.current_noise);
2351 : : }
2352 : :
2353 : 0 : wpa_supplicant_event(drv->ctx, EVENT_SIGNAL_CHANGE, &ed);
2354 : : }
2355 : :
2356 : :
2357 : 639 : static void nl80211_new_station_event(struct wpa_driver_nl80211_data *drv,
2358 : : struct nlattr **tb)
2359 : : {
2360 : : u8 *addr;
2361 : : union wpa_event_data data;
2362 : :
2363 [ - + ]: 639 : if (tb[NL80211_ATTR_MAC] == NULL)
2364 : 0 : return;
2365 : 639 : addr = nla_data(tb[NL80211_ATTR_MAC]);
2366 : 639 : wpa_printf(MSG_DEBUG, "nl80211: New station " MACSTR, MAC2STR(addr));
2367 : :
2368 [ + + ][ - + ]: 639 : if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
2369 : 0 : u8 *ies = NULL;
2370 : 0 : size_t ies_len = 0;
2371 [ # # ]: 0 : if (tb[NL80211_ATTR_IE]) {
2372 : 0 : ies = nla_data(tb[NL80211_ATTR_IE]);
2373 : 0 : ies_len = nla_len(tb[NL80211_ATTR_IE]);
2374 : : }
2375 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Assoc Req IEs", ies, ies_len);
2376 : 0 : drv_event_assoc(drv->ctx, addr, ies, ies_len, 0);
2377 : 0 : return;
2378 : : }
2379 : :
2380 [ + + ]: 639 : if (drv->nlmode != NL80211_IFTYPE_ADHOC)
2381 : 627 : return;
2382 : :
2383 : 12 : os_memset(&data, 0, sizeof(data));
2384 : 12 : os_memcpy(data.ibss_rsn_start.peer, addr, ETH_ALEN);
2385 : 639 : wpa_supplicant_event(drv->ctx, EVENT_IBSS_RSN_START, &data);
2386 : : }
2387 : :
2388 : :
2389 : 623 : static void nl80211_del_station_event(struct wpa_driver_nl80211_data *drv,
2390 : : struct nlattr **tb)
2391 : : {
2392 : : u8 *addr;
2393 : : union wpa_event_data data;
2394 : :
2395 [ - + ]: 623 : if (tb[NL80211_ATTR_MAC] == NULL)
2396 : 0 : return;
2397 : 623 : addr = nla_data(tb[NL80211_ATTR_MAC]);
2398 : 623 : wpa_printf(MSG_DEBUG, "nl80211: Delete station " MACSTR,
2399 : 3738 : MAC2STR(addr));
2400 : :
2401 [ + + ][ - + ]: 623 : if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
2402 : 0 : drv_event_disassoc(drv->ctx, addr);
2403 : 0 : return;
2404 : : }
2405 : :
2406 [ + - ]: 623 : if (drv->nlmode != NL80211_IFTYPE_ADHOC)
2407 : 623 : return;
2408 : :
2409 : 0 : os_memset(&data, 0, sizeof(data));
2410 : 0 : os_memcpy(data.ibss_peer_lost.peer, addr, ETH_ALEN);
2411 : 623 : wpa_supplicant_event(drv->ctx, EVENT_IBSS_PEER_LOST, &data);
2412 : : }
2413 : :
2414 : :
2415 : 0 : static void nl80211_rekey_offload_event(struct wpa_driver_nl80211_data *drv,
2416 : : struct nlattr **tb)
2417 : : {
2418 : : struct nlattr *rekey_info[NUM_NL80211_REKEY_DATA];
2419 : : static struct nla_policy rekey_policy[NUM_NL80211_REKEY_DATA] = {
2420 : : [NL80211_REKEY_DATA_KEK] = {
2421 : : .minlen = NL80211_KEK_LEN,
2422 : : .maxlen = NL80211_KEK_LEN,
2423 : : },
2424 : : [NL80211_REKEY_DATA_KCK] = {
2425 : : .minlen = NL80211_KCK_LEN,
2426 : : .maxlen = NL80211_KCK_LEN,
2427 : : },
2428 : : [NL80211_REKEY_DATA_REPLAY_CTR] = {
2429 : : .minlen = NL80211_REPLAY_CTR_LEN,
2430 : : .maxlen = NL80211_REPLAY_CTR_LEN,
2431 : : },
2432 : : };
2433 : : union wpa_event_data data;
2434 : :
2435 [ # # ]: 0 : if (!tb[NL80211_ATTR_MAC])
2436 : 0 : return;
2437 [ # # ]: 0 : if (!tb[NL80211_ATTR_REKEY_DATA])
2438 : 0 : return;
2439 [ # # ]: 0 : if (nla_parse_nested(rekey_info, MAX_NL80211_REKEY_DATA,
2440 : 0 : tb[NL80211_ATTR_REKEY_DATA], rekey_policy))
2441 : 0 : return;
2442 [ # # ]: 0 : if (!rekey_info[NL80211_REKEY_DATA_REPLAY_CTR])
2443 : 0 : return;
2444 : :
2445 : 0 : os_memset(&data, 0, sizeof(data));
2446 : 0 : data.driver_gtk_rekey.bssid = nla_data(tb[NL80211_ATTR_MAC]);
2447 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Rekey offload event for BSSID " MACSTR,
2448 : 0 : MAC2STR(data.driver_gtk_rekey.bssid));
2449 : 0 : data.driver_gtk_rekey.replay_ctr =
2450 : 0 : nla_data(rekey_info[NL80211_REKEY_DATA_REPLAY_CTR]);
2451 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Rekey offload - Replay Counter",
2452 : 0 : data.driver_gtk_rekey.replay_ctr, NL80211_REPLAY_CTR_LEN);
2453 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DRIVER_GTK_REKEY, &data);
2454 : : }
2455 : :
2456 : :
2457 : 0 : static void nl80211_pmksa_candidate_event(struct wpa_driver_nl80211_data *drv,
2458 : : struct nlattr **tb)
2459 : : {
2460 : : struct nlattr *cand[NUM_NL80211_PMKSA_CANDIDATE];
2461 : : static struct nla_policy cand_policy[NUM_NL80211_PMKSA_CANDIDATE] = {
2462 : : [NL80211_PMKSA_CANDIDATE_INDEX] = { .type = NLA_U32 },
2463 : : [NL80211_PMKSA_CANDIDATE_BSSID] = {
2464 : : .minlen = ETH_ALEN,
2465 : : .maxlen = ETH_ALEN,
2466 : : },
2467 : : [NL80211_PMKSA_CANDIDATE_PREAUTH] = { .type = NLA_FLAG },
2468 : : };
2469 : : union wpa_event_data data;
2470 : :
2471 : 0 : wpa_printf(MSG_DEBUG, "nl80211: PMKSA candidate event");
2472 : :
2473 [ # # ]: 0 : if (!tb[NL80211_ATTR_PMKSA_CANDIDATE])
2474 : 0 : return;
2475 [ # # ]: 0 : if (nla_parse_nested(cand, MAX_NL80211_PMKSA_CANDIDATE,
2476 : 0 : tb[NL80211_ATTR_PMKSA_CANDIDATE], cand_policy))
2477 : 0 : return;
2478 [ # # ][ # # ]: 0 : if (!cand[NL80211_PMKSA_CANDIDATE_INDEX] ||
2479 : 0 : !cand[NL80211_PMKSA_CANDIDATE_BSSID])
2480 : 0 : return;
2481 : :
2482 : 0 : os_memset(&data, 0, sizeof(data));
2483 : 0 : os_memcpy(data.pmkid_candidate.bssid,
2484 : : nla_data(cand[NL80211_PMKSA_CANDIDATE_BSSID]), ETH_ALEN);
2485 : 0 : data.pmkid_candidate.index =
2486 : 0 : nla_get_u32(cand[NL80211_PMKSA_CANDIDATE_INDEX]);
2487 : 0 : data.pmkid_candidate.preauth =
2488 : 0 : cand[NL80211_PMKSA_CANDIDATE_PREAUTH] != NULL;
2489 : 0 : wpa_supplicant_event(drv->ctx, EVENT_PMKID_CANDIDATE, &data);
2490 : : }
2491 : :
2492 : :
2493 : 0 : static void nl80211_client_probe_event(struct wpa_driver_nl80211_data *drv,
2494 : : struct nlattr **tb)
2495 : : {
2496 : : union wpa_event_data data;
2497 : :
2498 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Probe client event");
2499 : :
2500 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_ACK])
2501 : 0 : return;
2502 : :
2503 : 0 : os_memset(&data, 0, sizeof(data));
2504 : 0 : os_memcpy(data.client_poll.addr,
2505 : : nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2506 : :
2507 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DRIVER_CLIENT_POLL_OK, &data);
2508 : : }
2509 : :
2510 : :
2511 : 0 : static void nl80211_tdls_oper_event(struct wpa_driver_nl80211_data *drv,
2512 : : struct nlattr **tb)
2513 : : {
2514 : : union wpa_event_data data;
2515 : :
2516 : 0 : wpa_printf(MSG_DEBUG, "nl80211: TDLS operation event");
2517 : :
2518 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_TDLS_OPERATION])
2519 : 0 : return;
2520 : :
2521 : 0 : os_memset(&data, 0, sizeof(data));
2522 : 0 : os_memcpy(data.tdls.peer, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2523 [ # # # ]: 0 : switch (nla_get_u8(tb[NL80211_ATTR_TDLS_OPERATION])) {
2524 : : case NL80211_TDLS_SETUP:
2525 : 0 : wpa_printf(MSG_DEBUG, "nl80211: TDLS setup request for peer "
2526 : 0 : MACSTR, MAC2STR(data.tdls.peer));
2527 : 0 : data.tdls.oper = TDLS_REQUEST_SETUP;
2528 : 0 : break;
2529 : : case NL80211_TDLS_TEARDOWN:
2530 : 0 : wpa_printf(MSG_DEBUG, "nl80211: TDLS teardown request for peer "
2531 : 0 : MACSTR, MAC2STR(data.tdls.peer));
2532 : 0 : data.tdls.oper = TDLS_REQUEST_TEARDOWN;
2533 : 0 : break;
2534 : : default:
2535 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unsupported TDLS operatione "
2536 : : "event");
2537 : 0 : return;
2538 : : }
2539 [ # # ]: 0 : if (tb[NL80211_ATTR_REASON_CODE]) {
2540 : 0 : data.tdls.reason_code =
2541 : 0 : nla_get_u16(tb[NL80211_ATTR_REASON_CODE]);
2542 : : }
2543 : :
2544 : 0 : wpa_supplicant_event(drv->ctx, EVENT_TDLS, &data);
2545 : : }
2546 : :
2547 : :
2548 : 0 : static void nl80211_stop_ap(struct wpa_driver_nl80211_data *drv,
2549 : : struct nlattr **tb)
2550 : : {
2551 : 0 : wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_UNAVAILABLE, NULL);
2552 : 0 : }
2553 : :
2554 : :
2555 : 0 : static void nl80211_connect_failed_event(struct wpa_driver_nl80211_data *drv,
2556 : : struct nlattr **tb)
2557 : : {
2558 : : union wpa_event_data data;
2559 : : u32 reason;
2560 : :
2561 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connect failed event");
2562 : :
2563 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_CONN_FAILED_REASON])
2564 : 0 : return;
2565 : :
2566 : 0 : os_memset(&data, 0, sizeof(data));
2567 : 0 : os_memcpy(data.connect_failed_reason.addr,
2568 : : nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2569 : :
2570 : 0 : reason = nla_get_u32(tb[NL80211_ATTR_CONN_FAILED_REASON]);
2571 [ # # # ]: 0 : switch (reason) {
2572 : : case NL80211_CONN_FAIL_MAX_CLIENTS:
2573 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Max client reached");
2574 : 0 : data.connect_failed_reason.code = MAX_CLIENT_REACHED;
2575 : 0 : break;
2576 : : case NL80211_CONN_FAIL_BLOCKED_CLIENT:
2577 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Blocked client " MACSTR
2578 : : " tried to connect",
2579 : 0 : MAC2STR(data.connect_failed_reason.addr));
2580 : 0 : data.connect_failed_reason.code = BLOCKED_CLIENT;
2581 : 0 : break;
2582 : : default:
2583 : 0 : wpa_printf(MSG_DEBUG, "nl8021l: Unknown connect failed reason "
2584 : : "%u", reason);
2585 : 0 : return;
2586 : : }
2587 : :
2588 : 0 : wpa_supplicant_event(drv->ctx, EVENT_CONNECT_FAILED_REASON, &data);
2589 : : }
2590 : :
2591 : :
2592 : 0 : static void nl80211_radar_event(struct wpa_driver_nl80211_data *drv,
2593 : : struct nlattr **tb)
2594 : : {
2595 : : union wpa_event_data data;
2596 : : enum nl80211_radar_event event_type;
2597 : :
2598 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_WIPHY_FREQ] || !tb[NL80211_ATTR_RADAR_EVENT])
2599 : 0 : return;
2600 : :
2601 : 0 : os_memset(&data, 0, sizeof(data));
2602 : 0 : data.dfs_event.freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
2603 : 0 : event_type = nla_get_u32(tb[NL80211_ATTR_RADAR_EVENT]);
2604 : :
2605 : : /* Check HT params */
2606 [ # # ]: 0 : if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
2607 : 0 : data.dfs_event.ht_enabled = 1;
2608 : 0 : data.dfs_event.chan_offset = 0;
2609 : :
2610 [ # # # # : 0 : switch (nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])) {
# ]
2611 : : case NL80211_CHAN_NO_HT:
2612 : 0 : data.dfs_event.ht_enabled = 0;
2613 : 0 : break;
2614 : : case NL80211_CHAN_HT20:
2615 : 0 : break;
2616 : : case NL80211_CHAN_HT40PLUS:
2617 : 0 : data.dfs_event.chan_offset = 1;
2618 : 0 : break;
2619 : : case NL80211_CHAN_HT40MINUS:
2620 : 0 : data.dfs_event.chan_offset = -1;
2621 : 0 : break;
2622 : : }
2623 : : }
2624 : :
2625 : : /* Get VHT params */
2626 [ # # ]: 0 : if (tb[NL80211_ATTR_CHANNEL_WIDTH])
2627 : 0 : data.dfs_event.chan_width =
2628 : 0 : convert2width(nla_get_u32(
2629 : 0 : tb[NL80211_ATTR_CHANNEL_WIDTH]));
2630 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ1])
2631 : 0 : data.dfs_event.cf1 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
2632 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ2])
2633 : 0 : data.dfs_event.cf2 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
2634 : :
2635 : 0 : wpa_printf(MSG_DEBUG, "nl80211: DFS event on freq %d MHz, ht: %d, offset: %d, width: %d, cf1: %dMHz, cf2: %dMHz",
2636 : : data.dfs_event.freq, data.dfs_event.ht_enabled,
2637 : 0 : data.dfs_event.chan_offset, data.dfs_event.chan_width,
2638 : : data.dfs_event.cf1, data.dfs_event.cf2);
2639 : :
2640 [ # # # # : 0 : switch (event_type) {
# ]
2641 : : case NL80211_RADAR_DETECTED:
2642 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_RADAR_DETECTED, &data);
2643 : 0 : break;
2644 : : case NL80211_RADAR_CAC_FINISHED:
2645 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_CAC_FINISHED, &data);
2646 : 0 : break;
2647 : : case NL80211_RADAR_CAC_ABORTED:
2648 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_CAC_ABORTED, &data);
2649 : 0 : break;
2650 : : case NL80211_RADAR_NOP_FINISHED:
2651 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_NOP_FINISHED, &data);
2652 : 0 : break;
2653 : : default:
2654 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown radar event %d "
2655 : : "received", event_type);
2656 : 0 : break;
2657 : : }
2658 : : }
2659 : :
2660 : :
2661 : 0 : static void nl80211_spurious_frame(struct i802_bss *bss, struct nlattr **tb,
2662 : : int wds)
2663 : : {
2664 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
2665 : : union wpa_event_data event;
2666 : :
2667 [ # # ]: 0 : if (!tb[NL80211_ATTR_MAC])
2668 : 0 : return;
2669 : :
2670 : 0 : os_memset(&event, 0, sizeof(event));
2671 : 0 : event.rx_from_unknown.bssid = bss->addr;
2672 : 0 : event.rx_from_unknown.addr = nla_data(tb[NL80211_ATTR_MAC]);
2673 : 0 : event.rx_from_unknown.wds = wds;
2674 : :
2675 : 0 : wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
2676 : : }
2677 : :
2678 : :
2679 : 0 : static void nl80211_vendor_event(struct wpa_driver_nl80211_data *drv,
2680 : : struct nlattr **tb)
2681 : : {
2682 : 0 : u32 vendor_id, subcmd, wiphy = 0;
2683 : : int wiphy_idx;
2684 : 0 : u8 *data = NULL;
2685 : 0 : size_t len = 0;
2686 : :
2687 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_VENDOR_ID] ||
2688 : 0 : !tb[NL80211_ATTR_VENDOR_SUBCMD])
2689 : 0 : return;
2690 : :
2691 : 0 : vendor_id = nla_get_u32(tb[NL80211_ATTR_VENDOR_ID]);
2692 : 0 : subcmd = nla_get_u32(tb[NL80211_ATTR_VENDOR_SUBCMD]);
2693 : :
2694 [ # # ]: 0 : if (tb[NL80211_ATTR_WIPHY])
2695 : 0 : wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
2696 : :
2697 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Vendor event: wiphy=%u vendor_id=0x%x subcmd=%u",
2698 : : wiphy, vendor_id, subcmd);
2699 : :
2700 [ # # ]: 0 : if (tb[NL80211_ATTR_VENDOR_DATA]) {
2701 : 0 : data = nla_data(tb[NL80211_ATTR_VENDOR_DATA]);
2702 : 0 : len = nla_len(tb[NL80211_ATTR_VENDOR_DATA]);
2703 : 0 : wpa_hexdump(MSG_MSGDUMP, "nl80211: Vendor data", data, len);
2704 : : }
2705 : :
2706 : 0 : wiphy_idx = nl80211_get_wiphy_index(drv->first_bss);
2707 [ # # ][ # # ]: 0 : if (wiphy_idx >= 0 && wiphy_idx != (int) wiphy) {
2708 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore vendor event for foreign wiphy %u (own: %d)",
2709 : : wiphy, wiphy_idx);
2710 : 0 : return;
2711 : : }
2712 : :
2713 : : switch (vendor_id) {
2714 : : default:
2715 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore unsupported vendor event");
2716 : 0 : break;
2717 : : }
2718 : : }
2719 : :
2720 : :
2721 : 8207 : static void do_process_drv_event(struct i802_bss *bss, int cmd,
2722 : : struct nlattr **tb)
2723 : : {
2724 : 8207 : struct wpa_driver_nl80211_data *drv = bss->drv;
2725 : : union wpa_event_data data;
2726 : :
2727 : 8207 : wpa_printf(MSG_DEBUG, "nl80211: Drv Event %d (%s) received for %s",
2728 : 8207 : cmd, nl80211_command_to_string(cmd), bss->ifname);
2729 : :
2730 [ - + ][ # # ]: 8207 : if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED &&
2731 [ # # ]: 0 : (cmd == NL80211_CMD_NEW_SCAN_RESULTS ||
2732 : : cmd == NL80211_CMD_SCAN_ABORTED)) {
2733 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss,
2734 : : drv->ap_scan_as_station);
2735 : 0 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
2736 : : }
2737 : :
2738 [ + - - + : 8207 : switch (cmd) {
- - + + -
+ - + + +
- + - + +
- - - - -
- - - -
- ]
2739 : : case NL80211_CMD_TRIGGER_SCAN:
2740 : 934 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan trigger");
2741 : 934 : drv->scan_state = SCAN_STARTED;
2742 : 934 : wpa_supplicant_event(drv->ctx, EVENT_SCAN_STARTED, NULL);
2743 : 934 : break;
2744 : : case NL80211_CMD_START_SCHED_SCAN:
2745 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan started");
2746 : 0 : drv->scan_state = SCHED_SCAN_STARTED;
2747 : 0 : break;
2748 : : case NL80211_CMD_SCHED_SCAN_STOPPED:
2749 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan stopped");
2750 : 0 : drv->scan_state = SCHED_SCAN_STOPPED;
2751 : 0 : wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
2752 : 0 : break;
2753 : : case NL80211_CMD_NEW_SCAN_RESULTS:
2754 : 934 : wpa_dbg(drv->ctx, MSG_DEBUG,
2755 : : "nl80211: New scan results available");
2756 : 934 : drv->scan_state = SCAN_COMPLETED;
2757 : 934 : drv->scan_complete_events = 1;
2758 : 934 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
2759 : : drv->ctx);
2760 : 934 : send_scan_event(drv, 0, tb);
2761 : 934 : break;
2762 : : case NL80211_CMD_SCHED_SCAN_RESULTS:
2763 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
2764 : : "nl80211: New sched scan results available");
2765 : 0 : drv->scan_state = SCHED_SCAN_RESULTS;
2766 : 0 : send_scan_event(drv, 0, tb);
2767 : 0 : break;
2768 : : case NL80211_CMD_SCAN_ABORTED:
2769 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan aborted");
2770 : 0 : drv->scan_state = SCAN_ABORTED;
2771 : : /*
2772 : : * Need to indicate that scan results are available in order
2773 : : * not to make wpa_supplicant stop its scanning.
2774 : : */
2775 : 0 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
2776 : : drv->ctx);
2777 : 0 : send_scan_event(drv, 1, tb);
2778 : 0 : break;
2779 : : case NL80211_CMD_AUTHENTICATE:
2780 : : case NL80211_CMD_ASSOCIATE:
2781 : : case NL80211_CMD_DEAUTHENTICATE:
2782 : : case NL80211_CMD_DISASSOCIATE:
2783 : : case NL80211_CMD_FRAME_TX_STATUS:
2784 : : case NL80211_CMD_UNPROT_DEAUTHENTICATE:
2785 : : case NL80211_CMD_UNPROT_DISASSOCIATE:
2786 : 2084 : mlme_event(bss, cmd, tb[NL80211_ATTR_FRAME],
2787 : 4168 : tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
2788 : 4168 : tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
2789 : 2084 : tb[NL80211_ATTR_COOKIE],
2790 : 2084 : tb[NL80211_ATTR_RX_SIGNAL_DBM]);
2791 : 2084 : break;
2792 : : case NL80211_CMD_CONNECT:
2793 : : case NL80211_CMD_ROAM:
2794 : 437 : mlme_event_connect(drv, cmd,
2795 : 437 : tb[NL80211_ATTR_STATUS_CODE],
2796 : 437 : tb[NL80211_ATTR_MAC],
2797 : 437 : tb[NL80211_ATTR_REQ_IE],
2798 : 437 : tb[NL80211_ATTR_RESP_IE]);
2799 : 437 : break;
2800 : : case NL80211_CMD_CH_SWITCH_NOTIFY:
2801 : 0 : mlme_event_ch_switch(drv,
2802 : 0 : tb[NL80211_ATTR_IFINDEX],
2803 : 0 : tb[NL80211_ATTR_WIPHY_FREQ],
2804 : 0 : tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE],
2805 : 0 : tb[NL80211_ATTR_CHANNEL_WIDTH],
2806 : 0 : tb[NL80211_ATTR_CENTER_FREQ1],
2807 : 0 : tb[NL80211_ATTR_CENTER_FREQ2]);
2808 : 0 : break;
2809 : : case NL80211_CMD_DISCONNECT:
2810 : 426 : mlme_event_disconnect(drv, tb[NL80211_ATTR_REASON_CODE],
2811 : 426 : tb[NL80211_ATTR_MAC],
2812 : 426 : tb[NL80211_ATTR_DISCONNECTED_BY_AP]);
2813 : 426 : break;
2814 : : case NL80211_CMD_MICHAEL_MIC_FAILURE:
2815 : 0 : mlme_event_michael_mic_failure(bss, tb);
2816 : 0 : break;
2817 : : case NL80211_CMD_JOIN_IBSS:
2818 : 6 : mlme_event_join_ibss(drv, tb);
2819 : 6 : break;
2820 : : case NL80211_CMD_REMAIN_ON_CHANNEL:
2821 : 530 : mlme_event_remain_on_channel(drv, 0, tb);
2822 : 530 : break;
2823 : : case NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL:
2824 : 530 : mlme_event_remain_on_channel(drv, 1, tb);
2825 : 530 : break;
2826 : : case NL80211_CMD_NOTIFY_CQM:
2827 : 0 : nl80211_cqm_event(drv, tb);
2828 : 0 : break;
2829 : : case NL80211_CMD_REG_CHANGE:
2830 : 1064 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory domain change");
2831 [ - + ]: 1064 : if (tb[NL80211_ATTR_REG_INITIATOR] == NULL)
2832 : 0 : break;
2833 : 1064 : os_memset(&data, 0, sizeof(data));
2834 [ + - - - : 1064 : switch (nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR])) {
- ]
2835 : : case NL80211_REGDOM_SET_BY_CORE:
2836 : 1064 : data.channel_list_changed.initiator =
2837 : : REGDOM_SET_BY_CORE;
2838 : 1064 : break;
2839 : : case NL80211_REGDOM_SET_BY_USER:
2840 : 0 : data.channel_list_changed.initiator =
2841 : : REGDOM_SET_BY_USER;
2842 : 0 : break;
2843 : : case NL80211_REGDOM_SET_BY_DRIVER:
2844 : 0 : data.channel_list_changed.initiator =
2845 : : REGDOM_SET_BY_DRIVER;
2846 : 0 : break;
2847 : : case NL80211_REGDOM_SET_BY_COUNTRY_IE:
2848 : 0 : data.channel_list_changed.initiator =
2849 : : REGDOM_SET_BY_COUNTRY_IE;
2850 : 0 : break;
2851 : : default:
2852 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown reg change initiator %d received",
2853 : 0 : nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR]));
2854 : 0 : break;
2855 : : }
2856 : 1064 : wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
2857 : : &data);
2858 : 1064 : break;
2859 : : case NL80211_CMD_REG_BEACON_HINT:
2860 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory beacon hint");
2861 : 0 : wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
2862 : : NULL);
2863 : 0 : break;
2864 : : case NL80211_CMD_NEW_STATION:
2865 : 639 : nl80211_new_station_event(drv, tb);
2866 : 639 : break;
2867 : : case NL80211_CMD_DEL_STATION:
2868 : 623 : nl80211_del_station_event(drv, tb);
2869 : 623 : break;
2870 : : case NL80211_CMD_SET_REKEY_OFFLOAD:
2871 : 0 : nl80211_rekey_offload_event(drv, tb);
2872 : 0 : break;
2873 : : case NL80211_CMD_PMKSA_CANDIDATE:
2874 : 0 : nl80211_pmksa_candidate_event(drv, tb);
2875 : 0 : break;
2876 : : case NL80211_CMD_PROBE_CLIENT:
2877 : 0 : nl80211_client_probe_event(drv, tb);
2878 : 0 : break;
2879 : : case NL80211_CMD_TDLS_OPER:
2880 : 0 : nl80211_tdls_oper_event(drv, tb);
2881 : 0 : break;
2882 : : case NL80211_CMD_CONN_FAILED:
2883 : 0 : nl80211_connect_failed_event(drv, tb);
2884 : 0 : break;
2885 : : case NL80211_CMD_FT_EVENT:
2886 : 0 : mlme_event_ft_event(drv, tb);
2887 : 0 : break;
2888 : : case NL80211_CMD_RADAR_DETECT:
2889 : 0 : nl80211_radar_event(drv, tb);
2890 : 0 : break;
2891 : : case NL80211_CMD_STOP_AP:
2892 : 0 : nl80211_stop_ap(drv, tb);
2893 : 0 : break;
2894 : : case NL80211_CMD_VENDOR:
2895 : 0 : nl80211_vendor_event(drv, tb);
2896 : 0 : break;
2897 : : default:
2898 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Ignored unknown event "
2899 : : "(cmd=%d)", cmd);
2900 : 0 : break;
2901 : : }
2902 : 8207 : }
2903 : :
2904 : :
2905 : 0 : static int process_drv_event(struct nl_msg *msg, void *arg)
2906 : : {
2907 : 0 : struct wpa_driver_nl80211_data *drv = arg;
2908 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2909 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2910 : : struct i802_bss *bss;
2911 : 0 : int ifidx = -1;
2912 : :
2913 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2914 : : genlmsg_attrlen(gnlh, 0), NULL);
2915 : :
2916 [ # # ]: 0 : if (tb[NL80211_ATTR_IFINDEX]) {
2917 : 0 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
2918 : :
2919 [ # # ]: 0 : for (bss = drv->first_bss; bss; bss = bss->next)
2920 [ # # ][ # # ]: 0 : if (ifidx == -1 || ifidx == bss->ifindex) {
2921 : 0 : do_process_drv_event(bss, gnlh->cmd, tb);
2922 : 0 : return NL_SKIP;
2923 : : }
2924 : 0 : wpa_printf(MSG_DEBUG,
2925 : : "nl80211: Ignored event (cmd=%d) for foreign interface (ifindex %d)",
2926 : 0 : gnlh->cmd, ifidx);
2927 [ # # ]: 0 : } else if (tb[NL80211_ATTR_WDEV]) {
2928 : 0 : u64 wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
2929 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Process event on P2P device");
2930 [ # # ]: 0 : for (bss = drv->first_bss; bss; bss = bss->next) {
2931 [ # # ][ # # ]: 0 : if (bss->wdev_id_set && wdev_id == bss->wdev_id) {
2932 : 0 : do_process_drv_event(bss, gnlh->cmd, tb);
2933 : 0 : return NL_SKIP;
2934 : : }
2935 : : }
2936 : 0 : wpa_printf(MSG_DEBUG,
2937 : : "nl80211: Ignored event (cmd=%d) for foreign interface (wdev 0x%llx)",
2938 : 0 : gnlh->cmd, (long long unsigned int) wdev_id);
2939 : : }
2940 : :
2941 : 0 : return NL_SKIP;
2942 : : }
2943 : :
2944 : :
2945 : 35810 : static int process_global_event(struct nl_msg *msg, void *arg)
2946 : : {
2947 : 35810 : struct nl80211_global *global = arg;
2948 : 35810 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2949 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2950 : : struct wpa_driver_nl80211_data *drv, *tmp;
2951 : 35810 : int ifidx = -1;
2952 : : struct i802_bss *bss;
2953 : 35810 : u64 wdev_id = 0;
2954 : 35810 : int wdev_id_set = 0;
2955 : :
2956 : 35810 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2957 : : genlmsg_attrlen(gnlh, 0), NULL);
2958 : :
2959 [ + + ]: 35810 : if (tb[NL80211_ATTR_IFINDEX])
2960 : 34447 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
2961 [ - + ]: 1363 : else if (tb[NL80211_ATTR_WDEV]) {
2962 : 0 : wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
2963 : 0 : wdev_id_set = 1;
2964 : : }
2965 : :
2966 [ + + ]: 55910 : dl_list_for_each_safe(drv, tmp, &global->interfaces,
2967 : : struct wpa_driver_nl80211_data, list) {
2968 [ + + ]: 48407 : for (bss = drv->first_bss; bss; bss = bss->next) {
2969 [ + + ][ - + ]: 28307 : if ((ifidx == -1 && !wdev_id_set) ||
[ + + ]
2970 [ - + ]: 20100 : ifidx == bss->ifindex ||
2971 [ # # ][ # # ]: 0 : (wdev_id_set && bss->wdev_id_set &&
2972 : 0 : wdev_id == bss->wdev_id)) {
2973 : 8207 : do_process_drv_event(bss, gnlh->cmd, tb);
2974 : 8207 : return NL_SKIP;
2975 : : }
2976 : : }
2977 : : }
2978 : :
2979 : 35810 : return NL_SKIP;
2980 : : }
2981 : :
2982 : :
2983 : 1045 : static int process_bss_event(struct nl_msg *msg, void *arg)
2984 : : {
2985 : 1045 : struct i802_bss *bss = arg;
2986 : 1045 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2987 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2988 : :
2989 : 1045 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2990 : : genlmsg_attrlen(gnlh, 0), NULL);
2991 : :
2992 : 1045 : wpa_printf(MSG_DEBUG, "nl80211: BSS Event %d (%s) received for %s",
2993 : 2090 : gnlh->cmd, nl80211_command_to_string(gnlh->cmd),
2994 : 1045 : bss->ifname);
2995 : :
2996 [ + - - - ]: 1045 : switch (gnlh->cmd) {
2997 : : case NL80211_CMD_FRAME:
2998 : : case NL80211_CMD_FRAME_TX_STATUS:
2999 : 1045 : mlme_event(bss, gnlh->cmd, tb[NL80211_ATTR_FRAME],
3000 : : tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
3001 : : tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
3002 : : tb[NL80211_ATTR_COOKIE],
3003 : : tb[NL80211_ATTR_RX_SIGNAL_DBM]);
3004 : 1045 : break;
3005 : : case NL80211_CMD_UNEXPECTED_FRAME:
3006 : 0 : nl80211_spurious_frame(bss, tb, 0);
3007 : 0 : break;
3008 : : case NL80211_CMD_UNEXPECTED_4ADDR_FRAME:
3009 : 0 : nl80211_spurious_frame(bss, tb, 1);
3010 : 0 : break;
3011 : : default:
3012 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
3013 : 0 : "(cmd=%d)", gnlh->cmd);
3014 : 0 : break;
3015 : : }
3016 : :
3017 : 1045 : return NL_SKIP;
3018 : : }
3019 : :
3020 : :
3021 : 36832 : static void wpa_driver_nl80211_event_receive(int sock, void *eloop_ctx,
3022 : : void *handle)
3023 : : {
3024 : 36832 : struct nl_cb *cb = eloop_ctx;
3025 : : int res;
3026 : :
3027 : 36832 : wpa_printf(MSG_MSGDUMP, "nl80211: Event message available");
3028 : :
3029 : 36832 : res = nl_recvmsgs(handle, cb);
3030 [ - + ]: 36832 : if (res) {
3031 : 0 : wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
3032 : : __func__, res);
3033 : : }
3034 : 36832 : }
3035 : :
3036 : :
3037 : : /**
3038 : : * wpa_driver_nl80211_set_country - ask nl80211 to set the regulatory domain
3039 : : * @priv: driver_nl80211 private data
3040 : : * @alpha2_arg: country to which to switch to
3041 : : * Returns: 0 on success, -1 on failure
3042 : : *
3043 : : * This asks nl80211 to set the regulatory domain for given
3044 : : * country ISO / IEC alpha2.
3045 : : */
3046 : 0 : static int wpa_driver_nl80211_set_country(void *priv, const char *alpha2_arg)
3047 : : {
3048 : 0 : struct i802_bss *bss = priv;
3049 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
3050 : : char alpha2[3];
3051 : : struct nl_msg *msg;
3052 : :
3053 : 0 : msg = nlmsg_alloc();
3054 [ # # ]: 0 : if (!msg)
3055 : 0 : return -ENOMEM;
3056 : :
3057 : 0 : alpha2[0] = alpha2_arg[0];
3058 : 0 : alpha2[1] = alpha2_arg[1];
3059 : 0 : alpha2[2] = '\0';
3060 : :
3061 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REQ_SET_REG);
3062 : :
3063 [ # # ]: 0 : NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2, alpha2);
3064 [ # # ]: 0 : if (send_and_recv_msgs(drv, msg, NULL, NULL))
3065 : 0 : return -EINVAL;
3066 : 0 : return 0;
3067 : : nla_put_failure:
3068 : 0 : nlmsg_free(msg);
3069 : 0 : return -EINVAL;
3070 : : }
3071 : :
3072 : :
3073 : 0 : static int nl80211_get_country(struct nl_msg *msg, void *arg)
3074 : : {
3075 : 0 : char *alpha2 = arg;
3076 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
3077 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3078 : :
3079 : 0 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3080 : : genlmsg_attrlen(gnlh, 0), NULL);
3081 [ # # ]: 0 : if (!tb_msg[NL80211_ATTR_REG_ALPHA2]) {
3082 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No country information available");
3083 : 0 : return NL_SKIP;
3084 : : }
3085 : 0 : os_strlcpy(alpha2, nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]), 3);
3086 : 0 : return NL_SKIP;
3087 : : }
3088 : :
3089 : :
3090 : 0 : static int wpa_driver_nl80211_get_country(void *priv, char *alpha2)
3091 : : {
3092 : 0 : struct i802_bss *bss = priv;
3093 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
3094 : : struct nl_msg *msg;
3095 : : int ret;
3096 : :
3097 : 0 : msg = nlmsg_alloc();
3098 [ # # ]: 0 : if (!msg)
3099 : 0 : return -ENOMEM;
3100 : :
3101 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
3102 : 0 : alpha2[0] = '\0';
3103 : 0 : ret = send_and_recv_msgs(drv, msg, nl80211_get_country, alpha2);
3104 [ # # ]: 0 : if (!alpha2[0])
3105 : 0 : ret = -1;
3106 : :
3107 : 0 : return ret;
3108 : : }
3109 : :
3110 : :
3111 : 1202 : static int protocol_feature_handler(struct nl_msg *msg, void *arg)
3112 : : {
3113 : 1202 : u32 *feat = arg;
3114 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
3115 : 1202 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3116 : :
3117 : 1202 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3118 : : genlmsg_attrlen(gnlh, 0), NULL);
3119 : :
3120 [ + - ]: 1202 : if (tb_msg[NL80211_ATTR_PROTOCOL_FEATURES])
3121 : 1202 : *feat = nla_get_u32(tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]);
3122 : :
3123 : 1202 : return NL_SKIP;
3124 : : }
3125 : :
3126 : :
3127 : 1202 : static u32 get_nl80211_protocol_features(struct wpa_driver_nl80211_data *drv)
3128 : : {
3129 : 1202 : u32 feat = 0;
3130 : : struct nl_msg *msg;
3131 : :
3132 : 1202 : msg = nlmsg_alloc();
3133 [ - + ]: 1202 : if (!msg)
3134 : 0 : goto nla_put_failure;
3135 : :
3136 : 1202 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_PROTOCOL_FEATURES);
3137 [ + - ]: 1202 : if (send_and_recv_msgs(drv, msg, protocol_feature_handler, &feat) == 0)
3138 : 1202 : return feat;
3139 : :
3140 : 0 : msg = NULL;
3141 : : nla_put_failure:
3142 : 0 : nlmsg_free(msg);
3143 : 1202 : return 0;
3144 : : }
3145 : :
3146 : :
3147 : : struct wiphy_info_data {
3148 : : struct wpa_driver_nl80211_data *drv;
3149 : : struct wpa_driver_capa *capa;
3150 : :
3151 : : unsigned int num_multichan_concurrent;
3152 : :
3153 : : unsigned int error:1;
3154 : : unsigned int device_ap_sme:1;
3155 : : unsigned int poll_command_supported:1;
3156 : : unsigned int data_tx_status:1;
3157 : : unsigned int monitor_supported:1;
3158 : : unsigned int auth_supported:1;
3159 : : unsigned int connect_supported:1;
3160 : : unsigned int p2p_go_supported:1;
3161 : : unsigned int p2p_client_supported:1;
3162 : : unsigned int p2p_concurrent:1;
3163 : : unsigned int channel_switch_supported:1;
3164 : : unsigned int set_qos_map_supported:1;
3165 : : };
3166 : :
3167 : :
3168 : 0 : static unsigned int probe_resp_offload_support(int supp_protocols)
3169 : : {
3170 : 0 : unsigned int prot = 0;
3171 : :
3172 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS)
3173 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS;
3174 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2)
3175 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2;
3176 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P)
3177 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P;
3178 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U)
3179 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING;
3180 : :
3181 : 0 : return prot;
3182 : : }
3183 : :
3184 : :
3185 : 1643 : static void wiphy_info_supported_iftypes(struct wiphy_info_data *info,
3186 : : struct nlattr *tb)
3187 : : {
3188 : : struct nlattr *nl_mode;
3189 : : int i;
3190 : :
3191 [ + + ]: 1643 : if (tb == NULL)
3192 : 1643 : return;
3193 : :
3194 [ + + ]: 279 : nla_for_each_nested(nl_mode, tb, i) {
3195 [ + + + + : 248 : switch (nla_type(nl_mode)) {
+ + + ]
3196 : : case NL80211_IFTYPE_AP:
3197 : 31 : info->capa->flags |= WPA_DRIVER_FLAGS_AP;
3198 : 31 : break;
3199 : : case NL80211_IFTYPE_ADHOC:
3200 : 31 : info->capa->flags |= WPA_DRIVER_FLAGS_IBSS;
3201 : 31 : break;
3202 : : case NL80211_IFTYPE_P2P_DEVICE:
3203 : 31 : info->capa->flags |=
3204 : : WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
3205 : 31 : break;
3206 : : case NL80211_IFTYPE_P2P_GO:
3207 : 31 : info->p2p_go_supported = 1;
3208 : 31 : break;
3209 : : case NL80211_IFTYPE_P2P_CLIENT:
3210 : 31 : info->p2p_client_supported = 1;
3211 : 31 : break;
3212 : : case NL80211_IFTYPE_MONITOR:
3213 : 31 : info->monitor_supported = 1;
3214 : 31 : break;
3215 : : }
3216 : : }
3217 : : }
3218 : :
3219 : :
3220 : 31 : static int wiphy_info_iface_comb_process(struct wiphy_info_data *info,
3221 : : struct nlattr *nl_combi)
3222 : : {
3223 : : struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
3224 : : struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
3225 : : struct nlattr *nl_limit, *nl_mode;
3226 : : int err, rem_limit, rem_mode;
3227 : 31 : int combination_has_p2p = 0, combination_has_mgd = 0;
3228 : : static struct nla_policy
3229 : : iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
3230 : : [NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
3231 : : [NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
3232 : : [NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
3233 : : [NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
3234 : : [NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS] = { .type = NLA_U32 },
3235 : : },
3236 : : iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
3237 : : [NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
3238 : : [NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
3239 : : };
3240 : :
3241 : 31 : err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
3242 : : nl_combi, iface_combination_policy);
3243 [ + - ][ + - ]: 31 : if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
[ + - ]
3244 [ - + ]: 31 : !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
3245 : 31 : !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
3246 : 0 : return 0; /* broken combination */
3247 : :
3248 [ + - ]: 31 : if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS])
3249 : 31 : info->capa->flags |= WPA_DRIVER_FLAGS_RADAR;
3250 : :
3251 [ + - ]: 62 : nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS],
3252 : : rem_limit) {
3253 : 62 : err = nla_parse_nested(tb_limit, MAX_NL80211_IFACE_LIMIT,
3254 : : nl_limit, iface_limit_policy);
3255 [ + - ][ - + ]: 62 : if (err || !tb_limit[NL80211_IFACE_LIMIT_TYPES])
3256 : 0 : return 0; /* broken combination */
3257 : :
3258 [ + + ]: 217 : nla_for_each_nested(nl_mode,
3259 : : tb_limit[NL80211_IFACE_LIMIT_TYPES],
3260 : : rem_mode) {
3261 : 155 : int ift = nla_type(nl_mode);
3262 [ + + ][ + + ]: 155 : if (ift == NL80211_IFTYPE_P2P_GO ||
3263 : : ift == NL80211_IFTYPE_P2P_CLIENT)
3264 : 62 : combination_has_p2p = 1;
3265 [ + + ]: 155 : if (ift == NL80211_IFTYPE_STATION)
3266 : 31 : combination_has_mgd = 1;
3267 : : }
3268 [ + + ][ + - ]: 62 : if (combination_has_p2p && combination_has_mgd)
3269 : 31 : break;
3270 : : }
3271 : :
3272 [ + - ][ + - ]: 31 : if (combination_has_p2p && combination_has_mgd) {
3273 : 31 : info->p2p_concurrent = 1;
3274 : 31 : info->num_multichan_concurrent =
3275 : 31 : nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]);
3276 : 31 : return 1;
3277 : : }
3278 : :
3279 : 31 : return 0;
3280 : : }
3281 : :
3282 : :
3283 : 1643 : static void wiphy_info_iface_comb(struct wiphy_info_data *info,
3284 : : struct nlattr *tb)
3285 : : {
3286 : : struct nlattr *nl_combi;
3287 : : int rem_combi;
3288 : :
3289 [ + + ]: 1643 : if (tb == NULL)
3290 : 1643 : return;
3291 : :
3292 [ + - ]: 31 : nla_for_each_nested(nl_combi, tb, rem_combi) {
3293 [ + - ]: 31 : if (wiphy_info_iface_comb_process(info, nl_combi) > 0)
3294 : 31 : break;
3295 : : }
3296 : : }
3297 : :
3298 : :
3299 : 1643 : static void wiphy_info_supp_cmds(struct wiphy_info_data *info,
3300 : : struct nlattr *tb)
3301 : : {
3302 : : struct nlattr *nl_cmd;
3303 : : int i;
3304 : :
3305 [ + + ]: 1643 : if (tb == NULL)
3306 : 1643 : return;
3307 : :
3308 [ + + ]: 899 : nla_for_each_nested(nl_cmd, tb, i) {
3309 [ + + - + : 868 : switch (nla_get_u32(nl_cmd)) {
- + + ]
3310 : : case NL80211_CMD_AUTHENTICATE:
3311 : 31 : info->auth_supported = 1;
3312 : 31 : break;
3313 : : case NL80211_CMD_CONNECT:
3314 : 31 : info->connect_supported = 1;
3315 : 31 : break;
3316 : : case NL80211_CMD_START_SCHED_SCAN:
3317 : 0 : info->capa->sched_scan_supported = 1;
3318 : 0 : break;
3319 : : case NL80211_CMD_PROBE_CLIENT:
3320 : 31 : info->poll_command_supported = 1;
3321 : 31 : break;
3322 : : case NL80211_CMD_CHANNEL_SWITCH:
3323 : 0 : info->channel_switch_supported = 1;
3324 : 0 : break;
3325 : : case NL80211_CMD_SET_QOS_MAP:
3326 : 31 : info->set_qos_map_supported = 1;
3327 : 31 : break;
3328 : : }
3329 : : }
3330 : : }
3331 : :
3332 : :
3333 : 1643 : static void wiphy_info_cipher_suites(struct wiphy_info_data *info,
3334 : : struct nlattr *tb)
3335 : : {
3336 : : int i, num;
3337 : : u32 *ciphers;
3338 : :
3339 [ + + ]: 1643 : if (tb == NULL)
3340 : 1643 : return;
3341 : :
3342 : 31 : num = nla_len(tb) / sizeof(u32);
3343 : 31 : ciphers = nla_data(tb);
3344 [ + + ]: 186 : for (i = 0; i < num; i++) {
3345 : 155 : u32 c = ciphers[i];
3346 : :
3347 : 155 : wpa_printf(MSG_DEBUG, "nl80211: Supported cipher %02x-%02x-%02x:%d",
3348 : 155 : c >> 24, (c >> 16) & 0xff,
3349 : 155 : (c >> 8) & 0xff, c & 0xff);
3350 [ - - + - : 155 : switch (c) {
+ + + + -
- - - ]
3351 : : case WLAN_CIPHER_SUITE_CCMP_256:
3352 : 0 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP_256;
3353 : 0 : break;
3354 : : case WLAN_CIPHER_SUITE_GCMP_256:
3355 : 0 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP_256;
3356 : 0 : break;
3357 : : case WLAN_CIPHER_SUITE_CCMP:
3358 : 31 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP;
3359 : 31 : break;
3360 : : case WLAN_CIPHER_SUITE_GCMP:
3361 : 0 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP;
3362 : 0 : break;
3363 : : case WLAN_CIPHER_SUITE_TKIP:
3364 : 31 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_TKIP;
3365 : 31 : break;
3366 : : case WLAN_CIPHER_SUITE_WEP104:
3367 : 31 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP104;
3368 : 31 : break;
3369 : : case WLAN_CIPHER_SUITE_WEP40:
3370 : 31 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP40;
3371 : 31 : break;
3372 : : case WLAN_CIPHER_SUITE_AES_CMAC:
3373 : 31 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP;
3374 : 31 : break;
3375 : : case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3376 : 0 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_128;
3377 : 0 : break;
3378 : : case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3379 : 0 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_256;
3380 : 0 : break;
3381 : : case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3382 : 0 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_CMAC_256;
3383 : 0 : break;
3384 : : }
3385 : : }
3386 : : }
3387 : :
3388 : :
3389 : 1643 : static void wiphy_info_max_roc(struct wpa_driver_capa *capa,
3390 : : struct nlattr *tb)
3391 : : {
3392 [ + + ]: 1643 : if (tb)
3393 : 31 : capa->max_remain_on_chan = nla_get_u32(tb);
3394 : 1643 : }
3395 : :
3396 : :
3397 : 1643 : static void wiphy_info_tdls(struct wpa_driver_capa *capa, struct nlattr *tdls,
3398 : : struct nlattr *ext_setup)
3399 : : {
3400 [ + + ]: 1643 : if (tdls == NULL)
3401 : 1643 : return;
3402 : :
3403 : 31 : wpa_printf(MSG_DEBUG, "nl80211: TDLS supported");
3404 : 31 : capa->flags |= WPA_DRIVER_FLAGS_TDLS_SUPPORT;
3405 : :
3406 [ + - ]: 31 : if (ext_setup) {
3407 : 31 : wpa_printf(MSG_DEBUG, "nl80211: TDLS external setup");
3408 : 31 : capa->flags |= WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP;
3409 : : }
3410 : : }
3411 : :
3412 : :
3413 : 1643 : static void wiphy_info_feature_flags(struct wiphy_info_data *info,
3414 : : struct nlattr *tb)
3415 : : {
3416 : : u32 flags;
3417 : 1643 : struct wpa_driver_capa *capa = info->capa;
3418 : :
3419 [ + + ]: 1643 : if (tb == NULL)
3420 : 1643 : return;
3421 : :
3422 : 31 : flags = nla_get_u32(tb);
3423 : :
3424 [ + - ]: 31 : if (flags & NL80211_FEATURE_SK_TX_STATUS)
3425 : 31 : info->data_tx_status = 1;
3426 : :
3427 [ - + ]: 31 : if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
3428 : 0 : capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
3429 : :
3430 [ + - ]: 31 : if (flags & NL80211_FEATURE_SAE)
3431 : 31 : capa->flags |= WPA_DRIVER_FLAGS_SAE;
3432 : :
3433 [ - + ]: 31 : if (flags & NL80211_FEATURE_NEED_OBSS_SCAN)
3434 : 0 : capa->flags |= WPA_DRIVER_FLAGS_OBSS_SCAN;
3435 : : }
3436 : :
3437 : :
3438 : 1643 : static void wiphy_info_probe_resp_offload(struct wpa_driver_capa *capa,
3439 : : struct nlattr *tb)
3440 : : {
3441 : : u32 protocols;
3442 : :
3443 [ + - ]: 1643 : if (tb == NULL)
3444 : 1643 : return;
3445 : :
3446 : 0 : protocols = nla_get_u32(tb);
3447 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Supports Probe Response offload in AP "
3448 : : "mode");
3449 : 0 : capa->flags |= WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD;
3450 : 0 : capa->probe_resp_offloads = probe_resp_offload_support(protocols);
3451 : : }
3452 : :
3453 : :
3454 : 1643 : static int wiphy_info_handler(struct nl_msg *msg, void *arg)
3455 : : {
3456 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
3457 : 1643 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3458 : 1643 : struct wiphy_info_data *info = arg;
3459 : 1643 : struct wpa_driver_capa *capa = info->capa;
3460 : 1643 : struct wpa_driver_nl80211_data *drv = info->drv;
3461 : :
3462 : 1643 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3463 : : genlmsg_attrlen(gnlh, 0), NULL);
3464 : :
3465 [ + - ]: 1643 : if (tb[NL80211_ATTR_WIPHY_NAME])
3466 : 1643 : os_strlcpy(drv->phyname,
3467 : 1643 : nla_get_string(tb[NL80211_ATTR_WIPHY_NAME]),
3468 : : sizeof(drv->phyname));
3469 [ + + ]: 1643 : if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
3470 : 31 : capa->max_scan_ssids =
3471 : 31 : nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
3472 : :
3473 [ + + ]: 1643 : if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
3474 : 31 : capa->max_sched_scan_ssids =
3475 : 31 : nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
3476 : :
3477 [ + + ]: 1643 : if (tb[NL80211_ATTR_MAX_MATCH_SETS])
3478 : 31 : capa->max_match_sets =
3479 : 31 : nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
3480 : :
3481 [ - + ]: 1643 : if (tb[NL80211_ATTR_MAC_ACL_MAX])
3482 : 0 : capa->max_acl_mac_addrs =
3483 : 0 : nla_get_u8(tb[NL80211_ATTR_MAC_ACL_MAX]);
3484 : :
3485 : 1643 : wiphy_info_supported_iftypes(info, tb[NL80211_ATTR_SUPPORTED_IFTYPES]);
3486 : 1643 : wiphy_info_iface_comb(info, tb[NL80211_ATTR_INTERFACE_COMBINATIONS]);
3487 : 1643 : wiphy_info_supp_cmds(info, tb[NL80211_ATTR_SUPPORTED_COMMANDS]);
3488 : 1643 : wiphy_info_cipher_suites(info, tb[NL80211_ATTR_CIPHER_SUITES]);
3489 : :
3490 [ + + ]: 1643 : if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK]) {
3491 : 31 : wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
3492 : : "off-channel TX");
3493 : 31 : capa->flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
3494 : : }
3495 : :
3496 [ - + ]: 1643 : if (tb[NL80211_ATTR_ROAM_SUPPORT]) {
3497 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Using driver-based roaming");
3498 : 0 : capa->flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
3499 : : }
3500 : :
3501 : 1643 : wiphy_info_max_roc(capa,
3502 : : tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
3503 : :
3504 [ + + ]: 1643 : if (tb[NL80211_ATTR_SUPPORT_AP_UAPSD])
3505 : 31 : capa->flags |= WPA_DRIVER_FLAGS_AP_UAPSD;
3506 : :
3507 : 1643 : wiphy_info_tdls(capa, tb[NL80211_ATTR_TDLS_SUPPORT],
3508 : : tb[NL80211_ATTR_TDLS_EXTERNAL_SETUP]);
3509 : :
3510 [ - + ]: 1643 : if (tb[NL80211_ATTR_DEVICE_AP_SME])
3511 : 0 : info->device_ap_sme = 1;
3512 : :
3513 : 1643 : wiphy_info_feature_flags(info, tb[NL80211_ATTR_FEATURE_FLAGS]);
3514 : 1643 : wiphy_info_probe_resp_offload(capa,
3515 : : tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]);
3516 : :
3517 [ + + ][ + - ]: 1643 : if (tb[NL80211_ATTR_EXT_CAPA] && tb[NL80211_ATTR_EXT_CAPA_MASK] &&
[ + - ]
3518 : 31 : drv->extended_capa == NULL) {
3519 : 31 : drv->extended_capa =
3520 : 31 : os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3521 [ + - ]: 31 : if (drv->extended_capa) {
3522 : 31 : os_memcpy(drv->extended_capa,
3523 : : nla_data(tb[NL80211_ATTR_EXT_CAPA]),
3524 : : nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3525 : 31 : drv->extended_capa_len =
3526 : 31 : nla_len(tb[NL80211_ATTR_EXT_CAPA]);
3527 : : }
3528 : 31 : drv->extended_capa_mask =
3529 : 31 : os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3530 [ + - ]: 31 : if (drv->extended_capa_mask) {
3531 : 31 : os_memcpy(drv->extended_capa_mask,
3532 : : nla_data(tb[NL80211_ATTR_EXT_CAPA]),
3533 : : nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3534 : : } else {
3535 : 0 : os_free(drv->extended_capa);
3536 : 0 : drv->extended_capa = NULL;
3537 : 0 : drv->extended_capa_len = 0;
3538 : : }
3539 : : }
3540 : :
3541 [ + + ]: 1643 : if (tb[NL80211_ATTR_VENDOR_DATA]) {
3542 : : struct nlattr *nl;
3543 : : int rem;
3544 : :
3545 [ + + ]: 62 : nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_DATA], rem) {
3546 : : struct nl80211_vendor_cmd_info *vinfo;
3547 [ - + ]: 31 : if (nla_len(nl) != sizeof(vinfo)) {
3548 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
3549 : 0 : continue;
3550 : : }
3551 : 31 : vinfo = nla_data(nl);
3552 : 31 : wpa_printf(MSG_DEBUG, "nl80211: Supported vendor command: vendor_id=0x%x subcmd=%u",
3553 : : vinfo->vendor_id, vinfo->subcmd);
3554 : : }
3555 : : }
3556 : :
3557 [ + + ]: 1643 : if (tb[NL80211_ATTR_VENDOR_EVENTS]) {
3558 : : struct nlattr *nl;
3559 : : int rem;
3560 : :
3561 [ + + ]: 62 : nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_EVENTS], rem) {
3562 : : struct nl80211_vendor_cmd_info *vinfo;
3563 [ - + ]: 31 : if (nla_len(nl) != sizeof(vinfo)) {
3564 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
3565 : 0 : continue;
3566 : : }
3567 : 31 : vinfo = nla_data(nl);
3568 : 31 : wpa_printf(MSG_DEBUG, "nl80211: Supported vendor event: vendor_id=0x%x subcmd=%u",
3569 : : vinfo->vendor_id, vinfo->subcmd);
3570 : : }
3571 : : }
3572 : :
3573 : 1643 : return NL_SKIP;
3574 : : }
3575 : :
3576 : :
3577 : 31 : static int wpa_driver_nl80211_get_info(struct wpa_driver_nl80211_data *drv,
3578 : : struct wiphy_info_data *info)
3579 : : {
3580 : : u32 feat;
3581 : : struct nl_msg *msg;
3582 : :
3583 : 31 : os_memset(info, 0, sizeof(*info));
3584 : 31 : info->capa = &drv->capa;
3585 : 31 : info->drv = drv;
3586 : :
3587 : 31 : msg = nlmsg_alloc();
3588 [ - + ]: 31 : if (!msg)
3589 : 0 : return -1;
3590 : :
3591 : 31 : feat = get_nl80211_protocol_features(drv);
3592 [ + - ]: 31 : if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
3593 : 31 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
3594 : : else
3595 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
3596 : :
3597 [ + - ]: 31 : NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
3598 [ - + ]: 31 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
3599 : 0 : goto nla_put_failure;
3600 : :
3601 [ - + ]: 31 : if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info))
3602 : 0 : return -1;
3603 : :
3604 [ + - ]: 31 : if (info->auth_supported)
3605 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_SME;
3606 [ # # ]: 0 : else if (!info->connect_supported) {
3607 : 0 : wpa_printf(MSG_INFO, "nl80211: Driver does not support "
3608 : : "authentication/association or connect commands");
3609 : 0 : info->error = 1;
3610 : : }
3611 : :
3612 [ + - ][ + - ]: 31 : if (info->p2p_go_supported && info->p2p_client_supported)
3613 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
3614 [ + - ]: 31 : if (info->p2p_concurrent) {
3615 : 31 : wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
3616 : : "interface (driver advertised support)");
3617 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
3618 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
3619 : : }
3620 [ - + ]: 31 : if (info->num_multichan_concurrent > 1) {
3621 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Enable multi-channel "
3622 : : "concurrent (driver advertised support)");
3623 : 0 : drv->capa.num_multichan_concurrent =
3624 : 0 : info->num_multichan_concurrent;
3625 : : }
3626 : :
3627 : : /* default to 5000 since early versions of mac80211 don't set it */
3628 [ - + ]: 31 : if (!drv->capa.max_remain_on_chan)
3629 : 0 : drv->capa.max_remain_on_chan = 5000;
3630 : :
3631 : 31 : return 0;
3632 : : nla_put_failure:
3633 : 0 : nlmsg_free(msg);
3634 : 31 : return -1;
3635 : : }
3636 : :
3637 : :
3638 : 31 : static int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
3639 : : {
3640 : : struct wiphy_info_data info;
3641 [ - + ]: 31 : if (wpa_driver_nl80211_get_info(drv, &info))
3642 : 0 : return -1;
3643 : :
3644 [ - + ]: 31 : if (info.error)
3645 : 0 : return -1;
3646 : :
3647 : 31 : drv->has_capability = 1;
3648 : 31 : drv->capa.key_mgmt = WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3649 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
3650 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
3651 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK;
3652 : 31 : drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
3653 : : WPA_DRIVER_AUTH_SHARED |
3654 : : WPA_DRIVER_AUTH_LEAP;
3655 : :
3656 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
3657 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
3658 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3659 : :
3660 [ + - ]: 31 : if (!info.device_ap_sme) {
3661 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS;
3662 : :
3663 : : /*
3664 : : * No AP SME is currently assumed to also indicate no AP MLME
3665 : : * in the driver/firmware.
3666 : : */
3667 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_AP_MLME;
3668 : : }
3669 : :
3670 : 31 : drv->device_ap_sme = info.device_ap_sme;
3671 : 31 : drv->poll_command_supported = info.poll_command_supported;
3672 : 31 : drv->data_tx_status = info.data_tx_status;
3673 : 31 : drv->channel_switch_supported = info.channel_switch_supported;
3674 [ + - ]: 31 : if (info.set_qos_map_supported)
3675 : 31 : drv->capa.flags |= WPA_DRIVER_FLAGS_QOS_MAPPING;
3676 : :
3677 : : /*
3678 : : * If poll command and tx status are supported, mac80211 is new enough
3679 : : * to have everything we need to not need monitor interfaces.
3680 : : */
3681 [ + - ][ - + ]: 31 : drv->use_monitor = !info.poll_command_supported || !info.data_tx_status;
3682 : :
3683 [ - + ][ # # ]: 31 : if (drv->device_ap_sme && drv->use_monitor) {
3684 : : /*
3685 : : * Non-mac80211 drivers may not support monitor interface.
3686 : : * Make sure we do not get stuck with incorrect capability here
3687 : : * by explicitly testing this.
3688 : : */
3689 [ # # ]: 0 : if (!info.monitor_supported) {
3690 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disable use_monitor "
3691 : : "with device_ap_sme since no monitor mode "
3692 : : "support detected");
3693 : 0 : drv->use_monitor = 0;
3694 : : }
3695 : : }
3696 : :
3697 : : /*
3698 : : * If we aren't going to use monitor interfaces, but the
3699 : : * driver doesn't support data TX status, we won't get TX
3700 : : * status for EAPOL frames.
3701 : : */
3702 [ + - ][ - + ]: 31 : if (!drv->use_monitor && !info.data_tx_status)
3703 : 0 : drv->capa.flags &= ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3704 : :
3705 : 31 : return 0;
3706 : : }
3707 : :
3708 : :
3709 : : #ifdef ANDROID
3710 : : static int android_genl_ctrl_resolve(struct nl_handle *handle,
3711 : : const char *name)
3712 : : {
3713 : : /*
3714 : : * Android ICS has very minimal genl_ctrl_resolve() implementation, so
3715 : : * need to work around that.
3716 : : */
3717 : : struct nl_cache *cache = NULL;
3718 : : struct genl_family *nl80211 = NULL;
3719 : : int id = -1;
3720 : :
3721 : : if (genl_ctrl_alloc_cache(handle, &cache) < 0) {
3722 : : wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
3723 : : "netlink cache");
3724 : : goto fail;
3725 : : }
3726 : :
3727 : : nl80211 = genl_ctrl_search_by_name(cache, name);
3728 : : if (nl80211 == NULL)
3729 : : goto fail;
3730 : :
3731 : : id = genl_family_get_id(nl80211);
3732 : :
3733 : : fail:
3734 : : if (nl80211)
3735 : : genl_family_put(nl80211);
3736 : : if (cache)
3737 : : nl_cache_free(cache);
3738 : :
3739 : : return id;
3740 : : }
3741 : : #define genl_ctrl_resolve android_genl_ctrl_resolve
3742 : : #endif /* ANDROID */
3743 : :
3744 : :
3745 : 4 : static int wpa_driver_nl80211_init_nl_global(struct nl80211_global *global)
3746 : : {
3747 : : int ret;
3748 : :
3749 : 4 : global->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3750 [ - + ]: 4 : if (global->nl_cb == NULL) {
3751 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
3752 : : "callbacks");
3753 : 0 : return -1;
3754 : : }
3755 : :
3756 : 4 : global->nl = nl_create_handle(global->nl_cb, "nl");
3757 [ - + ]: 4 : if (global->nl == NULL)
3758 : 0 : goto err;
3759 : :
3760 : 4 : global->nl80211_id = genl_ctrl_resolve(global->nl, "nl80211");
3761 [ - + ]: 4 : if (global->nl80211_id < 0) {
3762 : 0 : wpa_printf(MSG_ERROR, "nl80211: 'nl80211' generic netlink not "
3763 : : "found");
3764 : 0 : goto err;
3765 : : }
3766 : :
3767 : 4 : global->nl_event = nl_create_handle(global->nl_cb, "event");
3768 [ - + ]: 4 : if (global->nl_event == NULL)
3769 : 0 : goto err;
3770 : :
3771 : 4 : ret = nl_get_multicast_id(global, "nl80211", "scan");
3772 [ + - ]: 4 : if (ret >= 0)
3773 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3774 [ - + ]: 4 : if (ret < 0) {
3775 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
3776 : : "membership for scan events: %d (%s)",
3777 : : ret, strerror(-ret));
3778 : 0 : goto err;
3779 : : }
3780 : :
3781 : 4 : ret = nl_get_multicast_id(global, "nl80211", "mlme");
3782 [ + - ]: 4 : if (ret >= 0)
3783 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3784 [ - + ]: 4 : if (ret < 0) {
3785 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
3786 : : "membership for mlme events: %d (%s)",
3787 : : ret, strerror(-ret));
3788 : 0 : goto err;
3789 : : }
3790 : :
3791 : 4 : ret = nl_get_multicast_id(global, "nl80211", "regulatory");
3792 [ + - ]: 4 : if (ret >= 0)
3793 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3794 [ - + ]: 4 : if (ret < 0) {
3795 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
3796 : : "membership for regulatory events: %d (%s)",
3797 : : ret, strerror(-ret));
3798 : : /* Continue without regulatory events */
3799 : : }
3800 : :
3801 : 4 : ret = nl_get_multicast_id(global, "nl80211", "vendor");
3802 [ + - ]: 4 : if (ret >= 0)
3803 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3804 [ - + ]: 4 : if (ret < 0) {
3805 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
3806 : : "membership for vendor events: %d (%s)",
3807 : : ret, strerror(-ret));
3808 : : /* Continue without vendor events */
3809 : : }
3810 : :
3811 : 4 : nl_cb_set(global->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3812 : : no_seq_check, NULL);
3813 : 4 : nl_cb_set(global->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3814 : : process_global_event, global);
3815 : :
3816 : 4 : nl80211_register_eloop_read(&global->nl_event,
3817 : : wpa_driver_nl80211_event_receive,
3818 : 4 : global->nl_cb);
3819 : :
3820 : 4 : return 0;
3821 : :
3822 : : err:
3823 : 0 : nl_destroy_handles(&global->nl_event);
3824 : 0 : nl_destroy_handles(&global->nl);
3825 : 0 : nl_cb_put(global->nl_cb);
3826 : 0 : global->nl_cb = NULL;
3827 : 4 : return -1;
3828 : : }
3829 : :
3830 : :
3831 : 31 : static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv)
3832 : : {
3833 : 31 : drv->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3834 [ - + ]: 31 : if (!drv->nl_cb) {
3835 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to alloc cb struct");
3836 : 0 : return -1;
3837 : : }
3838 : :
3839 : 31 : nl_cb_set(drv->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3840 : : no_seq_check, NULL);
3841 : 31 : nl_cb_set(drv->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3842 : : process_drv_event, drv);
3843 : :
3844 : 31 : return 0;
3845 : : }
3846 : :
3847 : :
3848 : 0 : static void wpa_driver_nl80211_rfkill_blocked(void *ctx)
3849 : : {
3850 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL blocked");
3851 : : /*
3852 : : * This may be for any interface; use ifdown event to disable
3853 : : * interface.
3854 : : */
3855 : 0 : }
3856 : :
3857 : :
3858 : 0 : static void wpa_driver_nl80211_rfkill_unblocked(void *ctx)
3859 : : {
3860 : 0 : struct wpa_driver_nl80211_data *drv = ctx;
3861 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL unblocked");
3862 [ # # ]: 0 : if (i802_set_iface_flags(drv->first_bss, 1)) {
3863 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not set interface UP "
3864 : : "after rfkill unblock");
3865 : 0 : return;
3866 : : }
3867 : : /* rtnetlink ifup handler will report interface as enabled */
3868 : : }
3869 : :
3870 : :
3871 : 524 : static void wpa_driver_nl80211_handle_eapol_tx_status(int sock,
3872 : : void *eloop_ctx,
3873 : : void *handle)
3874 : : {
3875 : 524 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
3876 : : u8 data[2048];
3877 : : struct msghdr msg;
3878 : : struct iovec entry;
3879 : : u8 control[512];
3880 : : struct cmsghdr *cmsg;
3881 : 524 : int res, found_ee = 0, found_wifi = 0, acked = 0;
3882 : : union wpa_event_data event;
3883 : :
3884 : 524 : memset(&msg, 0, sizeof(msg));
3885 : 524 : msg.msg_iov = &entry;
3886 : 524 : msg.msg_iovlen = 1;
3887 : 524 : entry.iov_base = data;
3888 : 524 : entry.iov_len = sizeof(data);
3889 : 524 : msg.msg_control = &control;
3890 : 524 : msg.msg_controllen = sizeof(control);
3891 : :
3892 : 524 : res = recvmsg(sock, &msg, MSG_ERRQUEUE);
3893 : : /* if error or not fitting 802.3 header, return */
3894 [ - + ]: 524 : if (res < 14)
3895 : 0 : return;
3896 : :
3897 [ + - ][ + + ]: 1572 : for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg))
3898 : : {
3899 [ + + ][ + - ]: 1048 : if (cmsg->cmsg_level == SOL_SOCKET &&
3900 : 524 : cmsg->cmsg_type == SCM_WIFI_STATUS) {
3901 : : int *ack;
3902 : :
3903 : 524 : found_wifi = 1;
3904 : 524 : ack = (void *)CMSG_DATA(cmsg);
3905 : 524 : acked = *ack;
3906 : : }
3907 : :
3908 [ + + ][ + - ]: 1048 : if (cmsg->cmsg_level == SOL_PACKET &&
3909 : 524 : cmsg->cmsg_type == PACKET_TX_TIMESTAMP) {
3910 : 524 : struct sock_extended_err *err =
3911 : : (struct sock_extended_err *)CMSG_DATA(cmsg);
3912 : :
3913 [ + - ]: 524 : if (err->ee_origin == SO_EE_ORIGIN_TXSTATUS)
3914 : 524 : found_ee = 1;
3915 : : }
3916 : : }
3917 : :
3918 [ + - ][ - + ]: 524 : if (!found_ee || !found_wifi)
3919 : 0 : return;
3920 : :
3921 : 524 : memset(&event, 0, sizeof(event));
3922 : 524 : event.eapol_tx_status.dst = data;
3923 : 524 : event.eapol_tx_status.data = data + 14;
3924 : 524 : event.eapol_tx_status.data_len = res - 14;
3925 : 524 : event.eapol_tx_status.ack = acked;
3926 : 524 : wpa_supplicant_event(drv->ctx, EVENT_EAPOL_TX_STATUS, &event);
3927 : : }
3928 : :
3929 : :
3930 : 31 : static int nl80211_init_bss(struct i802_bss *bss)
3931 : : {
3932 : 31 : bss->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3933 [ - + ]: 31 : if (!bss->nl_cb)
3934 : 0 : return -1;
3935 : :
3936 : 31 : nl_cb_set(bss->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3937 : : no_seq_check, NULL);
3938 : 31 : nl_cb_set(bss->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3939 : : process_bss_event, bss);
3940 : :
3941 : 31 : return 0;
3942 : : }
3943 : :
3944 : :
3945 : 31 : static void nl80211_destroy_bss(struct i802_bss *bss)
3946 : : {
3947 : 31 : nl_cb_put(bss->nl_cb);
3948 : 31 : bss->nl_cb = NULL;
3949 : 31 : }
3950 : :
3951 : :
3952 : 31 : static void * wpa_driver_nl80211_drv_init(void *ctx, const char *ifname,
3953 : : void *global_priv, int hostapd,
3954 : : const u8 *set_addr)
3955 : : {
3956 : : struct wpa_driver_nl80211_data *drv;
3957 : : struct rfkill_config *rcfg;
3958 : : struct i802_bss *bss;
3959 : :
3960 [ - + ]: 31 : if (global_priv == NULL)
3961 : 0 : return NULL;
3962 : 31 : drv = os_zalloc(sizeof(*drv));
3963 [ - + ]: 31 : if (drv == NULL)
3964 : 0 : return NULL;
3965 : 31 : drv->global = global_priv;
3966 : 31 : drv->ctx = ctx;
3967 : 31 : drv->hostapd = !!hostapd;
3968 : 31 : drv->eapol_sock = -1;
3969 : 31 : drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
3970 : 31 : drv->if_indices = drv->default_if_indices;
3971 : :
3972 : 31 : drv->first_bss = os_zalloc(sizeof(*drv->first_bss));
3973 [ - + ]: 31 : if (!drv->first_bss) {
3974 : 0 : os_free(drv);
3975 : 0 : return NULL;
3976 : : }
3977 : 31 : bss = drv->first_bss;
3978 : 31 : bss->drv = drv;
3979 : 31 : bss->ctx = ctx;
3980 : :
3981 : 31 : os_strlcpy(bss->ifname, ifname, sizeof(bss->ifname));
3982 : 31 : drv->monitor_ifidx = -1;
3983 : 31 : drv->monitor_sock = -1;
3984 : 31 : drv->eapol_tx_sock = -1;
3985 : 31 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
3986 : :
3987 [ - + ]: 31 : if (wpa_driver_nl80211_init_nl(drv)) {
3988 : 0 : os_free(drv);
3989 : 0 : return NULL;
3990 : : }
3991 : :
3992 [ - + ]: 31 : if (nl80211_init_bss(bss))
3993 : 0 : goto failed;
3994 : :
3995 : 31 : rcfg = os_zalloc(sizeof(*rcfg));
3996 [ - + ]: 31 : if (rcfg == NULL)
3997 : 0 : goto failed;
3998 : 31 : rcfg->ctx = drv;
3999 : 31 : os_strlcpy(rcfg->ifname, ifname, sizeof(rcfg->ifname));
4000 : 31 : rcfg->blocked_cb = wpa_driver_nl80211_rfkill_blocked;
4001 : 31 : rcfg->unblocked_cb = wpa_driver_nl80211_rfkill_unblocked;
4002 : 31 : drv->rfkill = rfkill_init(rcfg);
4003 [ - + ]: 31 : if (drv->rfkill == NULL) {
4004 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL status not available");
4005 : 0 : os_free(rcfg);
4006 : : }
4007 : :
4008 [ - + ]: 31 : if (linux_iface_up(drv->global->ioctl_sock, ifname) > 0)
4009 : 0 : drv->start_iface_up = 1;
4010 : :
4011 [ - + ]: 31 : if (wpa_driver_nl80211_finish_drv_init(drv, set_addr, 1))
4012 : 0 : goto failed;
4013 : :
4014 : 31 : drv->eapol_tx_sock = socket(PF_PACKET, SOCK_DGRAM, 0);
4015 [ - + ]: 31 : if (drv->eapol_tx_sock < 0)
4016 : 0 : goto failed;
4017 : :
4018 [ + - ]: 31 : if (drv->data_tx_status) {
4019 : 31 : int enabled = 1;
4020 : :
4021 [ - + ]: 31 : if (setsockopt(drv->eapol_tx_sock, SOL_SOCKET, SO_WIFI_STATUS,
4022 : : &enabled, sizeof(enabled)) < 0) {
4023 : 0 : wpa_printf(MSG_DEBUG,
4024 : : "nl80211: wifi status sockopt failed\n");
4025 : 0 : drv->data_tx_status = 0;
4026 [ # # ]: 0 : if (!drv->use_monitor)
4027 : 0 : drv->capa.flags &=
4028 : : ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
4029 : : } else {
4030 : 31 : eloop_register_read_sock(drv->eapol_tx_sock,
4031 : : wpa_driver_nl80211_handle_eapol_tx_status,
4032 : : drv, NULL);
4033 : : }
4034 : : }
4035 : :
4036 [ + - ]: 31 : if (drv->global) {
4037 : 31 : dl_list_add(&drv->global->interfaces, &drv->list);
4038 : 31 : drv->in_interface_list = 1;
4039 : : }
4040 : :
4041 : 31 : return bss;
4042 : :
4043 : : failed:
4044 : 0 : wpa_driver_nl80211_deinit(bss);
4045 : 31 : return NULL;
4046 : : }
4047 : :
4048 : :
4049 : : /**
4050 : : * wpa_driver_nl80211_init - Initialize nl80211 driver interface
4051 : : * @ctx: context to be used when calling wpa_supplicant functions,
4052 : : * e.g., wpa_supplicant_event()
4053 : : * @ifname: interface name, e.g., wlan0
4054 : : * @global_priv: private driver global data from global_init()
4055 : : * Returns: Pointer to private data, %NULL on failure
4056 : : */
4057 : 31 : static void * wpa_driver_nl80211_init(void *ctx, const char *ifname,
4058 : : void *global_priv)
4059 : : {
4060 : 31 : return wpa_driver_nl80211_drv_init(ctx, ifname, global_priv, 0, NULL);
4061 : : }
4062 : :
4063 : :
4064 : 3236 : static int nl80211_register_frame(struct i802_bss *bss,
4065 : : struct nl_handle *nl_handle,
4066 : : u16 type, const u8 *match, size_t match_len)
4067 : : {
4068 : 3236 : struct wpa_driver_nl80211_data *drv = bss->drv;
4069 : : struct nl_msg *msg;
4070 : 3236 : int ret = -1;
4071 : : char buf[30];
4072 : :
4073 : 3236 : msg = nlmsg_alloc();
4074 [ - + ]: 3236 : if (!msg)
4075 : 0 : return -1;
4076 : :
4077 : 3236 : buf[0] = '\0';
4078 : 3236 : wpa_snprintf_hex(buf, sizeof(buf), match, match_len);
4079 : 3236 : wpa_printf(MSG_DEBUG, "nl80211: Register frame type=0x%x nl_handle=%p match=%s",
4080 : : type, nl_handle, buf);
4081 : :
4082 : 3236 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_ACTION);
4083 : :
4084 [ - + ]: 3236 : if (nl80211_set_iface_id(msg, bss) < 0)
4085 : 0 : goto nla_put_failure;
4086 : :
4087 [ + - ]: 3236 : NLA_PUT_U16(msg, NL80211_ATTR_FRAME_TYPE, type);
4088 [ + - ]: 3236 : NLA_PUT(msg, NL80211_ATTR_FRAME_MATCH, match_len, match);
4089 : :
4090 : 3236 : ret = send_and_recv(drv->global, nl_handle, msg, NULL, NULL);
4091 : 3236 : msg = NULL;
4092 [ - + ]: 3236 : if (ret) {
4093 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Register frame command "
4094 : : "failed (type=%u): ret=%d (%s)",
4095 : : type, ret, strerror(-ret));
4096 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
4097 : : match, match_len);
4098 : 0 : goto nla_put_failure;
4099 : : }
4100 : 3236 : ret = 0;
4101 : : nla_put_failure:
4102 : 3236 : nlmsg_free(msg);
4103 : 3236 : return ret;
4104 : : }
4105 : :
4106 : :
4107 : 254 : static int nl80211_alloc_mgmt_handle(struct i802_bss *bss)
4108 : : {
4109 : 254 : struct wpa_driver_nl80211_data *drv = bss->drv;
4110 : :
4111 [ - + ]: 254 : if (bss->nl_mgmt) {
4112 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Mgmt reporting "
4113 : : "already on! (nl_mgmt=%p)", bss->nl_mgmt);
4114 : 0 : return -1;
4115 : : }
4116 : :
4117 : 254 : bss->nl_mgmt = nl_create_handle(drv->nl_cb, "mgmt");
4118 [ - + ]: 254 : if (bss->nl_mgmt == NULL)
4119 : 0 : return -1;
4120 : :
4121 : 254 : return 0;
4122 : : }
4123 : :
4124 : :
4125 : 254 : static void nl80211_mgmt_handle_register_eloop(struct i802_bss *bss)
4126 : : {
4127 : 254 : nl80211_register_eloop_read(&bss->nl_mgmt,
4128 : : wpa_driver_nl80211_event_receive,
4129 : 254 : bss->nl_cb);
4130 : 254 : }
4131 : :
4132 : :
4133 : 2244 : static int nl80211_register_action_frame(struct i802_bss *bss,
4134 : : const u8 *match, size_t match_len)
4135 : : {
4136 : 2244 : u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_ACTION << 4);
4137 : 2244 : return nl80211_register_frame(bss, bss->nl_mgmt,
4138 : : type, match, match_len);
4139 : : }
4140 : :
4141 : :
4142 : 187 : static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss)
4143 : : {
4144 : 187 : struct wpa_driver_nl80211_data *drv = bss->drv;
4145 : 187 : int ret = 0;
4146 : :
4147 [ - + ]: 187 : if (nl80211_alloc_mgmt_handle(bss))
4148 : 0 : return -1;
4149 : 187 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with non-AP "
4150 : : "handle %p", bss->nl_mgmt);
4151 : :
4152 [ + + ]: 187 : if (drv->nlmode == NL80211_IFTYPE_ADHOC) {
4153 : 6 : u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_AUTH << 4);
4154 : :
4155 : : /* register for any AUTH message */
4156 : 6 : nl80211_register_frame(bss, bss->nl_mgmt, type, NULL, 0);
4157 : : }
4158 : :
4159 : : #ifdef CONFIG_INTERWORKING
4160 : : /* QoS Map Configure */
4161 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x01\x04", 2) < 0)
4162 : 0 : ret = -1;
4163 : : #endif /* CONFIG_INTERWORKING */
4164 : : #if defined(CONFIG_P2P) || defined(CONFIG_INTERWORKING)
4165 : : /* GAS Initial Request */
4166 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0a", 2) < 0)
4167 : 0 : ret = -1;
4168 : : /* GAS Initial Response */
4169 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0b", 2) < 0)
4170 : 0 : ret = -1;
4171 : : /* GAS Comeback Request */
4172 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0c", 2) < 0)
4173 : 0 : ret = -1;
4174 : : /* GAS Comeback Response */
4175 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0d", 2) < 0)
4176 : 0 : ret = -1;
4177 : : #endif /* CONFIG_P2P || CONFIG_INTERWORKING */
4178 : : #ifdef CONFIG_P2P
4179 : : /* P2P Public Action */
4180 [ - + ]: 187 : if (nl80211_register_action_frame(bss,
4181 : : (u8 *) "\x04\x09\x50\x6f\x9a\x09",
4182 : : 6) < 0)
4183 : 0 : ret = -1;
4184 : : /* P2P Action */
4185 [ - + ]: 187 : if (nl80211_register_action_frame(bss,
4186 : : (u8 *) "\x7f\x50\x6f\x9a\x09",
4187 : : 5) < 0)
4188 : 0 : ret = -1;
4189 : : #endif /* CONFIG_P2P */
4190 : : #ifdef CONFIG_IEEE80211W
4191 : : /* SA Query Response */
4192 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x08\x01", 2) < 0)
4193 : 0 : ret = -1;
4194 : : #endif /* CONFIG_IEEE80211W */
4195 : : #ifdef CONFIG_TDLS
4196 [ + - ]: 187 : if ((drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT)) {
4197 : : /* TDLS Discovery Response */
4198 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0e", 2) <
4199 : : 0)
4200 : 0 : ret = -1;
4201 : : }
4202 : : #endif /* CONFIG_TDLS */
4203 : :
4204 : : /* FT Action frames */
4205 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x06", 1) < 0)
4206 : 0 : ret = -1;
4207 : : else
4208 : 187 : drv->capa.key_mgmt |= WPA_DRIVER_CAPA_KEY_MGMT_FT |
4209 : : WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK;
4210 : :
4211 : : /* WNM - BSS Transition Management Request */
4212 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x07", 2) < 0)
4213 : 0 : ret = -1;
4214 : : /* WNM-Sleep Mode Response */
4215 [ - + ]: 187 : if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x11", 2) < 0)
4216 : 0 : ret = -1;
4217 : :
4218 : 187 : nl80211_mgmt_handle_register_eloop(bss);
4219 : :
4220 : 187 : return ret;
4221 : : }
4222 : :
4223 : :
4224 : 67 : static int nl80211_register_spurious_class3(struct i802_bss *bss)
4225 : : {
4226 : 67 : struct wpa_driver_nl80211_data *drv = bss->drv;
4227 : : struct nl_msg *msg;
4228 : 67 : int ret = -1;
4229 : :
4230 : 67 : msg = nlmsg_alloc();
4231 [ - + ]: 67 : if (!msg)
4232 : 0 : return -1;
4233 : :
4234 : 67 : nl80211_cmd(drv, msg, 0, NL80211_CMD_UNEXPECTED_FRAME);
4235 : :
4236 [ + - ]: 67 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
4237 : :
4238 : 67 : ret = send_and_recv(drv->global, bss->nl_mgmt, msg, NULL, NULL);
4239 : 67 : msg = NULL;
4240 [ - + ]: 67 : if (ret) {
4241 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Register spurious class3 "
4242 : : "failed: ret=%d (%s)",
4243 : : ret, strerror(-ret));
4244 : 0 : goto nla_put_failure;
4245 : : }
4246 : 67 : ret = 0;
4247 : : nla_put_failure:
4248 : 67 : nlmsg_free(msg);
4249 : 67 : return ret;
4250 : : }
4251 : :
4252 : :
4253 : 67 : static int nl80211_mgmt_subscribe_ap(struct i802_bss *bss)
4254 : : {
4255 : : static const int stypes[] = {
4256 : : WLAN_FC_STYPE_AUTH,
4257 : : WLAN_FC_STYPE_ASSOC_REQ,
4258 : : WLAN_FC_STYPE_REASSOC_REQ,
4259 : : WLAN_FC_STYPE_DISASSOC,
4260 : : WLAN_FC_STYPE_DEAUTH,
4261 : : WLAN_FC_STYPE_ACTION,
4262 : : WLAN_FC_STYPE_PROBE_REQ,
4263 : : /* Beacon doesn't work as mac80211 doesn't currently allow
4264 : : * it, but it wouldn't really be the right thing anyway as
4265 : : * it isn't per interface ... maybe just dump the scan
4266 : : * results periodically for OLBC?
4267 : : */
4268 : : // WLAN_FC_STYPE_BEACON,
4269 : : };
4270 : : unsigned int i;
4271 : :
4272 [ - + ]: 67 : if (nl80211_alloc_mgmt_handle(bss))
4273 : 0 : return -1;
4274 : 67 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
4275 : : "handle %p", bss->nl_mgmt);
4276 : :
4277 [ + + ]: 536 : for (i = 0; i < ARRAY_SIZE(stypes); i++) {
4278 [ - + ]: 469 : if (nl80211_register_frame(bss, bss->nl_mgmt,
4279 : : (WLAN_FC_TYPE_MGMT << 2) |
4280 : 469 : (stypes[i] << 4),
4281 : : NULL, 0) < 0) {
4282 : 0 : goto out_err;
4283 : : }
4284 : : }
4285 : :
4286 [ - + ]: 67 : if (nl80211_register_spurious_class3(bss))
4287 : 0 : goto out_err;
4288 : :
4289 [ - + ]: 67 : if (nl80211_get_wiphy_data_ap(bss) == NULL)
4290 : 0 : goto out_err;
4291 : :
4292 : 67 : nl80211_mgmt_handle_register_eloop(bss);
4293 : 67 : return 0;
4294 : :
4295 : : out_err:
4296 : 0 : nl_destroy_handles(&bss->nl_mgmt);
4297 : 67 : return -1;
4298 : : }
4299 : :
4300 : :
4301 : 0 : static int nl80211_mgmt_subscribe_ap_dev_sme(struct i802_bss *bss)
4302 : : {
4303 [ # # ]: 0 : if (nl80211_alloc_mgmt_handle(bss))
4304 : 0 : return -1;
4305 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
4306 : : "handle %p (device SME)", bss->nl_mgmt);
4307 : :
4308 [ # # ]: 0 : if (nl80211_register_frame(bss, bss->nl_mgmt,
4309 : : (WLAN_FC_TYPE_MGMT << 2) |
4310 : : (WLAN_FC_STYPE_ACTION << 4),
4311 : : NULL, 0) < 0)
4312 : 0 : goto out_err;
4313 : :
4314 : 0 : nl80211_mgmt_handle_register_eloop(bss);
4315 : 0 : return 0;
4316 : :
4317 : : out_err:
4318 : 0 : nl_destroy_handles(&bss->nl_mgmt);
4319 : 0 : return -1;
4320 : : }
4321 : :
4322 : :
4323 : 316 : static void nl80211_mgmt_unsubscribe(struct i802_bss *bss, const char *reason)
4324 : : {
4325 [ + + ]: 316 : if (bss->nl_mgmt == NULL)
4326 : 316 : return;
4327 : 254 : wpa_printf(MSG_DEBUG, "nl80211: Unsubscribe mgmt frames handle %p "
4328 : : "(%s)", bss->nl_mgmt, reason);
4329 : 254 : nl80211_destroy_eloop_handle(&bss->nl_mgmt);
4330 : :
4331 : 254 : nl80211_put_wiphy_data_ap(bss);
4332 : : }
4333 : :
4334 : :
4335 : 0 : static void wpa_driver_nl80211_send_rfkill(void *eloop_ctx, void *timeout_ctx)
4336 : : {
4337 : 0 : wpa_supplicant_event(timeout_ctx, EVENT_INTERFACE_DISABLED, NULL);
4338 : 0 : }
4339 : :
4340 : :
4341 : 0 : static void nl80211_del_p2pdev(struct i802_bss *bss)
4342 : : {
4343 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4344 : : struct nl_msg *msg;
4345 : : int ret;
4346 : :
4347 : 0 : msg = nlmsg_alloc();
4348 [ # # ]: 0 : if (!msg)
4349 : 0 : return;
4350 : :
4351 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
4352 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
4353 : :
4354 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4355 : 0 : msg = NULL;
4356 : :
4357 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Delete P2P Device %s (0x%llx): %s",
4358 : 0 : bss->ifname, (long long unsigned int) bss->wdev_id,
4359 : : strerror(-ret));
4360 : :
4361 : : nla_put_failure:
4362 : 0 : nlmsg_free(msg);
4363 : : }
4364 : :
4365 : :
4366 : 0 : static int nl80211_set_p2pdev(struct i802_bss *bss, int start)
4367 : : {
4368 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4369 : : struct nl_msg *msg;
4370 : 0 : int ret = -1;
4371 : :
4372 : 0 : msg = nlmsg_alloc();
4373 [ # # ]: 0 : if (!msg)
4374 : 0 : return -1;
4375 : :
4376 [ # # ]: 0 : if (start)
4377 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_START_P2P_DEVICE);
4378 : : else
4379 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_P2P_DEVICE);
4380 : :
4381 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
4382 : :
4383 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4384 : 0 : msg = NULL;
4385 : :
4386 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: %s P2P Device %s (0x%llx): %s",
4387 : : start ? "Start" : "Stop",
4388 : 0 : bss->ifname, (long long unsigned int) bss->wdev_id,
4389 : : strerror(-ret));
4390 : :
4391 : : nla_put_failure:
4392 : 0 : nlmsg_free(msg);
4393 : 0 : return ret;
4394 : : }
4395 : :
4396 : :
4397 : 31 : static int i802_set_iface_flags(struct i802_bss *bss, int up)
4398 : : {
4399 : : enum nl80211_iftype nlmode;
4400 : :
4401 : 31 : nlmode = nl80211_get_ifmode(bss);
4402 [ + - ]: 31 : if (nlmode != NL80211_IFTYPE_P2P_DEVICE) {
4403 : 31 : return linux_set_iface_flags(bss->drv->global->ioctl_sock,
4404 : 31 : bss->ifname, up);
4405 : : }
4406 : :
4407 : : /* P2P Device has start/stop which is equivalent */
4408 : 31 : return nl80211_set_p2pdev(bss, up);
4409 : : }
4410 : :
4411 : :
4412 : : static int
4413 : 31 : wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv,
4414 : : const u8 *set_addr, int first)
4415 : : {
4416 : 31 : struct i802_bss *bss = drv->first_bss;
4417 : 31 : int send_rfkill_event = 0;
4418 : : enum nl80211_iftype nlmode;
4419 : :
4420 : 31 : drv->ifindex = if_nametoindex(bss->ifname);
4421 : 31 : bss->ifindex = drv->ifindex;
4422 : 31 : bss->wdev_id = drv->global->if_add_wdevid;
4423 : 31 : bss->wdev_id_set = drv->global->if_add_wdevid_set;
4424 : :
4425 : 31 : bss->if_dynamic = drv->ifindex == drv->global->if_add_ifindex;
4426 [ + + ][ - + ]: 31 : bss->if_dynamic = bss->if_dynamic || drv->global->if_add_wdevid_set;
4427 : 31 : drv->global->if_add_wdevid_set = 0;
4428 : :
4429 [ - + ]: 31 : if (wpa_driver_nl80211_capa(drv))
4430 : 0 : return -1;
4431 : :
4432 : 31 : wpa_printf(MSG_DEBUG, "nl80211: interface %s in phy %s",
4433 : 31 : bss->ifname, drv->phyname);
4434 : :
4435 [ - + # # ]: 31 : if (set_addr &&
4436 [ # # ]: 0 : (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0) ||
4437 : 0 : linux_set_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
4438 : : set_addr)))
4439 : 0 : return -1;
4440 : :
4441 [ + - ][ - + ]: 31 : if (first && nl80211_get_ifmode(bss) == NL80211_IFTYPE_AP)
4442 : 0 : drv->start_mode_ap = 1;
4443 : :
4444 [ - + ]: 31 : if (drv->hostapd)
4445 : 0 : nlmode = NL80211_IFTYPE_AP;
4446 [ + + ]: 31 : else if (bss->if_dynamic)
4447 : 21 : nlmode = nl80211_get_ifmode(bss);
4448 : : else
4449 : 10 : nlmode = NL80211_IFTYPE_STATION;
4450 : :
4451 [ - + ]: 31 : if (wpa_driver_nl80211_set_mode(bss, nlmode) < 0) {
4452 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not configure driver mode");
4453 : 0 : return -1;
4454 : : }
4455 : :
4456 [ - + ]: 31 : if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
4457 : 0 : int ret = nl80211_set_p2pdev(bss, 1);
4458 [ # # ]: 0 : if (ret < 0)
4459 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not start P2P device");
4460 : 0 : nl80211_get_macaddr(bss);
4461 : 0 : return ret;
4462 : : }
4463 : :
4464 [ - + ]: 31 : if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) {
4465 [ # # ]: 0 : if (rfkill_is_blocked(drv->rfkill)) {
4466 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable "
4467 : : "interface '%s' due to rfkill",
4468 : 0 : bss->ifname);
4469 : 0 : drv->if_disabled = 1;
4470 : 0 : send_rfkill_event = 1;
4471 : : } else {
4472 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not set "
4473 : 0 : "interface '%s' UP", bss->ifname);
4474 : 0 : return -1;
4475 : : }
4476 : : }
4477 : :
4478 [ + - ]: 31 : if (!drv->hostapd)
4479 : 31 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
4480 : : 1, IF_OPER_DORMANT);
4481 : :
4482 [ - + ]: 31 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
4483 : 31 : bss->addr))
4484 : 0 : return -1;
4485 : :
4486 [ - + ]: 31 : if (send_rfkill_event) {
4487 : 0 : eloop_register_timeout(0, 0, wpa_driver_nl80211_send_rfkill,
4488 : : drv, drv->ctx);
4489 : : }
4490 : :
4491 : 31 : return 0;
4492 : : }
4493 : :
4494 : :
4495 : 70 : static int wpa_driver_nl80211_del_beacon(struct wpa_driver_nl80211_data *drv)
4496 : : {
4497 : : struct nl_msg *msg;
4498 : :
4499 : 70 : msg = nlmsg_alloc();
4500 [ - + ]: 70 : if (!msg)
4501 : 0 : return -ENOMEM;
4502 : :
4503 : 70 : wpa_printf(MSG_DEBUG, "nl80211: Remove beacon (ifindex=%d)",
4504 : : drv->ifindex);
4505 : 70 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_BEACON);
4506 [ + - ]: 70 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4507 : :
4508 : 70 : return send_and_recv_msgs(drv, msg, NULL, NULL);
4509 : : nla_put_failure:
4510 : 0 : nlmsg_free(msg);
4511 : 70 : return -ENOBUFS;
4512 : : }
4513 : :
4514 : :
4515 : : /**
4516 : : * wpa_driver_nl80211_deinit - Deinitialize nl80211 driver interface
4517 : : * @bss: Pointer to private nl80211 data from wpa_driver_nl80211_init()
4518 : : *
4519 : : * Shut down driver interface and processing of driver events. Free
4520 : : * private data buffer if one was allocated in wpa_driver_nl80211_init().
4521 : : */
4522 : 31 : static void wpa_driver_nl80211_deinit(struct i802_bss *bss)
4523 : : {
4524 : 31 : struct wpa_driver_nl80211_data *drv = bss->drv;
4525 : :
4526 : 31 : bss->in_deinit = 1;
4527 [ + - ]: 31 : if (drv->data_tx_status)
4528 : 31 : eloop_unregister_read_sock(drv->eapol_tx_sock);
4529 [ + - ]: 31 : if (drv->eapol_tx_sock >= 0)
4530 : 31 : close(drv->eapol_tx_sock);
4531 : :
4532 [ - + ]: 31 : if (bss->nl_preq)
4533 : 0 : wpa_driver_nl80211_probe_req_report(bss, 0);
4534 [ - + ]: 31 : if (bss->added_if_into_bridge) {
4535 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
4536 : 0 : bss->ifname) < 0)
4537 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
4538 : : "interface %s from bridge %s: %s",
4539 : 0 : bss->ifname, bss->brname, strerror(errno));
4540 : : }
4541 [ - + ]: 31 : if (bss->added_bridge) {
4542 [ # # ]: 0 : if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
4543 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
4544 : : "bridge %s: %s",
4545 : 0 : bss->brname, strerror(errno));
4546 : : }
4547 : :
4548 : 31 : nl80211_remove_monitor_interface(drv);
4549 : :
4550 [ + + ]: 31 : if (is_ap_interface(drv->nlmode))
4551 : 11 : wpa_driver_nl80211_del_beacon(drv);
4552 : :
4553 [ - + ]: 31 : if (drv->eapol_sock >= 0) {
4554 : 0 : eloop_unregister_read_sock(drv->eapol_sock);
4555 : 0 : close(drv->eapol_sock);
4556 : : }
4557 : :
4558 [ - + ]: 31 : if (drv->if_indices != drv->default_if_indices)
4559 : 0 : os_free(drv->if_indices);
4560 : :
4561 [ + + ]: 31 : if (drv->disabled_11b_rates)
4562 : 11 : nl80211_disable_11b_rates(drv, drv->ifindex, 0);
4563 : :
4564 : 31 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, 0,
4565 : : IF_OPER_UP);
4566 : 31 : rfkill_deinit(drv->rfkill);
4567 : :
4568 : 31 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
4569 : :
4570 [ + - ]: 31 : if (!drv->start_iface_up)
4571 : 31 : (void) i802_set_iface_flags(bss, 0);
4572 [ + - ]: 31 : if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE) {
4573 [ - + ][ # # ]: 31 : if (!drv->hostapd || !drv->start_mode_ap)
4574 : 31 : wpa_driver_nl80211_set_mode(bss,
4575 : : NL80211_IFTYPE_STATION);
4576 : 31 : nl80211_mgmt_unsubscribe(bss, "deinit");
4577 : : } else {
4578 : 0 : nl80211_mgmt_unsubscribe(bss, "deinit");
4579 : 0 : nl80211_del_p2pdev(bss);
4580 : : }
4581 : 31 : nl_cb_put(drv->nl_cb);
4582 : :
4583 : 31 : nl80211_destroy_bss(drv->first_bss);
4584 : :
4585 : 31 : os_free(drv->filter_ssids);
4586 : :
4587 : 31 : os_free(drv->auth_ie);
4588 : :
4589 [ + - ]: 31 : if (drv->in_interface_list)
4590 : 31 : dl_list_del(&drv->list);
4591 : :
4592 : 31 : os_free(drv->extended_capa);
4593 : 31 : os_free(drv->extended_capa_mask);
4594 : 31 : os_free(drv->first_bss);
4595 : 31 : os_free(drv);
4596 : 31 : }
4597 : :
4598 : :
4599 : : /**
4600 : : * wpa_driver_nl80211_scan_timeout - Scan timeout to report scan completion
4601 : : * @eloop_ctx: Driver private data
4602 : : * @timeout_ctx: ctx argument given to wpa_driver_nl80211_init()
4603 : : *
4604 : : * This function can be used as registered timeout when starting a scan to
4605 : : * generate a scan completed event if the driver does not report this.
4606 : : */
4607 : 0 : static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx, void *timeout_ctx)
4608 : : {
4609 : 0 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
4610 [ # # ]: 0 : if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED) {
4611 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss,
4612 : : drv->ap_scan_as_station);
4613 : 0 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
4614 : : }
4615 : 0 : wpa_printf(MSG_DEBUG, "Scan timeout - try to get results");
4616 : 0 : wpa_supplicant_event(timeout_ctx, EVENT_SCAN_RESULTS, NULL);
4617 : 0 : }
4618 : :
4619 : :
4620 : : static struct nl_msg *
4621 : 940 : nl80211_scan_common(struct wpa_driver_nl80211_data *drv, u8 cmd,
4622 : : struct wpa_driver_scan_params *params, u64 *wdev_id)
4623 : : {
4624 : : struct nl_msg *msg;
4625 : : size_t i;
4626 : :
4627 : 940 : msg = nlmsg_alloc();
4628 [ - + ]: 940 : if (!msg)
4629 : 0 : return NULL;
4630 : :
4631 : 940 : nl80211_cmd(drv, msg, 0, cmd);
4632 : :
4633 [ + - ]: 940 : if (!wdev_id)
4634 [ + - ]: 940 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4635 : : else
4636 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, *wdev_id);
4637 : :
4638 [ + + ]: 940 : if (params->num_ssids) {
4639 : : struct nlattr *ssids;
4640 : :
4641 : 938 : ssids = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
4642 [ - + ]: 938 : if (ssids == NULL)
4643 : 0 : goto fail;
4644 [ + + ]: 1876 : for (i = 0; i < params->num_ssids; i++) {
4645 : 938 : wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan SSID",
4646 : 938 : params->ssids[i].ssid,
4647 : : params->ssids[i].ssid_len);
4648 [ - + ]: 938 : if (nla_put(msg, i + 1, params->ssids[i].ssid_len,
4649 : 938 : params->ssids[i].ssid) < 0)
4650 : 0 : goto fail;
4651 : : }
4652 : 938 : nla_nest_end(msg, ssids);
4653 : : }
4654 : :
4655 [ + + ]: 940 : if (params->extra_ies) {
4656 : 939 : wpa_hexdump(MSG_MSGDUMP, "nl80211: Scan extra IEs",
4657 : 939 : params->extra_ies, params->extra_ies_len);
4658 [ - + ]: 939 : if (nla_put(msg, NL80211_ATTR_IE, params->extra_ies_len,
4659 : 939 : params->extra_ies) < 0)
4660 : 0 : goto fail;
4661 : : }
4662 : :
4663 [ + + ]: 940 : if (params->freqs) {
4664 : : struct nlattr *freqs;
4665 : 792 : freqs = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
4666 [ - + ]: 792 : if (freqs == NULL)
4667 : 0 : goto fail;
4668 [ + + ]: 2504 : for (i = 0; params->freqs[i]; i++) {
4669 : 1712 : wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
4670 : 1712 : "MHz", params->freqs[i]);
4671 [ - + ]: 1712 : if (nla_put_u32(msg, i + 1, params->freqs[i]) < 0)
4672 : 0 : goto fail;
4673 : : }
4674 : 792 : nla_nest_end(msg, freqs);
4675 : : }
4676 : :
4677 : 940 : os_free(drv->filter_ssids);
4678 : 940 : drv->filter_ssids = params->filter_ssids;
4679 : 940 : params->filter_ssids = NULL;
4680 : 940 : drv->num_filter_ssids = params->num_filter_ssids;
4681 : :
4682 : 940 : return msg;
4683 : :
4684 : : fail:
4685 : : nla_put_failure:
4686 : 0 : nlmsg_free(msg);
4687 : 940 : return NULL;
4688 : : }
4689 : :
4690 : :
4691 : : /**
4692 : : * wpa_driver_nl80211_scan - Request the driver to initiate scan
4693 : : * @bss: Pointer to private driver data from wpa_driver_nl80211_init()
4694 : : * @params: Scan parameters
4695 : : * Returns: 0 on success, -1 on failure
4696 : : */
4697 : 940 : static int wpa_driver_nl80211_scan(struct i802_bss *bss,
4698 : : struct wpa_driver_scan_params *params)
4699 : : {
4700 : 940 : struct wpa_driver_nl80211_data *drv = bss->drv;
4701 : 940 : int ret = -1, timeout;
4702 : 940 : struct nl_msg *msg = NULL;
4703 : :
4704 : 940 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: scan request");
4705 : 940 : drv->scan_for_auth = 0;
4706 : :
4707 [ - + ]: 940 : msg = nl80211_scan_common(drv, NL80211_CMD_TRIGGER_SCAN, params,
4708 : 940 : bss->wdev_id_set ? &bss->wdev_id : NULL);
4709 [ - + ]: 940 : if (!msg)
4710 : 0 : return -1;
4711 : :
4712 [ + + ]: 940 : if (params->p2p_probe) {
4713 : : struct nlattr *rates;
4714 : :
4715 : 546 : wpa_printf(MSG_DEBUG, "nl80211: P2P probe - mask SuppRates");
4716 : :
4717 : 546 : rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES);
4718 [ - + ]: 546 : if (rates == NULL)
4719 : 0 : goto nla_put_failure;
4720 : :
4721 : : /*
4722 : : * Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
4723 : : * by masking out everything else apart from the OFDM rates 6,
4724 : : * 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
4725 : : * rates are left enabled.
4726 : : */
4727 [ + - ]: 546 : NLA_PUT(msg, NL80211_BAND_2GHZ, 8,
4728 : : "\x0c\x12\x18\x24\x30\x48\x60\x6c");
4729 : 546 : nla_nest_end(msg, rates);
4730 : :
4731 [ + - ]: 546 : NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
4732 : : }
4733 : :
4734 : 940 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4735 : 940 : msg = NULL;
4736 [ + + ]: 940 : if (ret) {
4737 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Scan trigger failed: ret=%d "
4738 : : "(%s)", ret, strerror(-ret));
4739 [ - + ][ # # ]: 6 : if (drv->hostapd && is_ap_interface(drv->nlmode)) {
4740 : : /*
4741 : : * mac80211 does not allow scan requests in AP mode, so
4742 : : * try to do this in station mode.
4743 : : */
4744 [ # # ]: 0 : if (wpa_driver_nl80211_set_mode(
4745 : : bss, NL80211_IFTYPE_STATION))
4746 : 0 : goto nla_put_failure;
4747 : :
4748 [ # # ]: 0 : if (wpa_driver_nl80211_scan(bss, params)) {
4749 : 0 : wpa_driver_nl80211_set_mode(bss, drv->nlmode);
4750 : 0 : goto nla_put_failure;
4751 : : }
4752 : :
4753 : : /* Restore AP mode when processing scan results */
4754 : 0 : drv->ap_scan_as_station = drv->nlmode;
4755 : 0 : ret = 0;
4756 : : } else
4757 : : goto nla_put_failure;
4758 : : }
4759 : :
4760 : 934 : drv->scan_state = SCAN_REQUESTED;
4761 : : /* Not all drivers generate "scan completed" wireless event, so try to
4762 : : * read results after a timeout. */
4763 : 934 : timeout = 10;
4764 [ + + ]: 934 : if (drv->scan_complete_events) {
4765 : : /*
4766 : : * The driver seems to deliver events to notify when scan is
4767 : : * complete, so use longer timeout to avoid race conditions
4768 : : * with scanning and following association request.
4769 : : */
4770 : 914 : timeout = 30;
4771 : : }
4772 : 934 : wpa_printf(MSG_DEBUG, "Scan requested (ret=%d) - scan timeout %d "
4773 : : "seconds", ret, timeout);
4774 : 934 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
4775 : 934 : eloop_register_timeout(timeout, 0, wpa_driver_nl80211_scan_timeout,
4776 : : drv, drv->ctx);
4777 : :
4778 : : nla_put_failure:
4779 : 940 : nlmsg_free(msg);
4780 : 940 : return ret;
4781 : : }
4782 : :
4783 : :
4784 : : /**
4785 : : * wpa_driver_nl80211_sched_scan - Initiate a scheduled scan
4786 : : * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
4787 : : * @params: Scan parameters
4788 : : * @interval: Interval between scan cycles in milliseconds
4789 : : * Returns: 0 on success, -1 on failure or if not supported
4790 : : */
4791 : 0 : static int wpa_driver_nl80211_sched_scan(void *priv,
4792 : : struct wpa_driver_scan_params *params,
4793 : : u32 interval)
4794 : : {
4795 : 0 : struct i802_bss *bss = priv;
4796 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4797 : 0 : int ret = -1;
4798 : : struct nl_msg *msg;
4799 : : size_t i;
4800 : :
4801 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: sched_scan request");
4802 : :
4803 : : #ifdef ANDROID
4804 : : if (!drv->capa.sched_scan_supported)
4805 : : return android_pno_start(bss, params);
4806 : : #endif /* ANDROID */
4807 : :
4808 [ # # ]: 0 : msg = nl80211_scan_common(drv, NL80211_CMD_START_SCHED_SCAN, params,
4809 : 0 : bss->wdev_id_set ? &bss->wdev_id : NULL);
4810 [ # # ]: 0 : if (!msg)
4811 : 0 : goto nla_put_failure;
4812 : :
4813 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, interval);
4814 : :
4815 [ # # ][ # # ]: 0 : if ((drv->num_filter_ssids &&
4816 [ # # ]: 0 : (int) drv->num_filter_ssids <= drv->capa.max_match_sets) ||
4817 : 0 : params->filter_rssi) {
4818 : : struct nlattr *match_sets;
4819 : 0 : match_sets = nla_nest_start(msg, NL80211_ATTR_SCHED_SCAN_MATCH);
4820 [ # # ]: 0 : if (match_sets == NULL)
4821 : 0 : goto nla_put_failure;
4822 : :
4823 [ # # ]: 0 : for (i = 0; i < drv->num_filter_ssids; i++) {
4824 : : struct nlattr *match_set_ssid;
4825 : 0 : wpa_hexdump_ascii(MSG_MSGDUMP,
4826 : : "nl80211: Sched scan filter SSID",
4827 : 0 : drv->filter_ssids[i].ssid,
4828 : 0 : drv->filter_ssids[i].ssid_len);
4829 : :
4830 : 0 : match_set_ssid = nla_nest_start(msg, i + 1);
4831 [ # # ]: 0 : if (match_set_ssid == NULL)
4832 : 0 : goto nla_put_failure;
4833 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_SCHED_SCAN_MATCH_SSID,
4834 : : drv->filter_ssids[i].ssid_len,
4835 : : drv->filter_ssids[i].ssid);
4836 : :
4837 : 0 : nla_nest_end(msg, match_set_ssid);
4838 : : }
4839 : :
4840 [ # # ]: 0 : if (params->filter_rssi) {
4841 : : struct nlattr *match_set_rssi;
4842 : 0 : match_set_rssi = nla_nest_start(msg, 0);
4843 [ # # ]: 0 : if (match_set_rssi == NULL)
4844 : 0 : goto nla_put_failure;
4845 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_SCHED_SCAN_MATCH_ATTR_RSSI,
4846 : : params->filter_rssi);
4847 : 0 : wpa_printf(MSG_MSGDUMP,
4848 : : "nl80211: Sched scan RSSI filter %d dBm",
4849 : : params->filter_rssi);
4850 : 0 : nla_nest_end(msg, match_set_rssi);
4851 : : }
4852 : :
4853 : 0 : nla_nest_end(msg, match_sets);
4854 : : }
4855 : :
4856 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4857 : :
4858 : : /* TODO: if we get an error here, we should fall back to normal scan */
4859 : :
4860 : 0 : msg = NULL;
4861 [ # # ]: 0 : if (ret) {
4862 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan start failed: "
4863 : : "ret=%d (%s)", ret, strerror(-ret));
4864 : 0 : goto nla_put_failure;
4865 : : }
4866 : :
4867 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan requested (ret=%d) - "
4868 : : "scan interval %d msec", ret, interval);
4869 : :
4870 : : nla_put_failure:
4871 : 0 : nlmsg_free(msg);
4872 : 0 : return ret;
4873 : : }
4874 : :
4875 : :
4876 : : /**
4877 : : * wpa_driver_nl80211_stop_sched_scan - Stop a scheduled scan
4878 : : * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
4879 : : * Returns: 0 on success, -1 on failure or if not supported
4880 : : */
4881 : 0 : static int wpa_driver_nl80211_stop_sched_scan(void *priv)
4882 : : {
4883 : 0 : struct i802_bss *bss = priv;
4884 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4885 : 0 : int ret = 0;
4886 : : struct nl_msg *msg;
4887 : :
4888 : : #ifdef ANDROID
4889 : : if (!drv->capa.sched_scan_supported)
4890 : : return android_pno_stop(bss);
4891 : : #endif /* ANDROID */
4892 : :
4893 : 0 : msg = nlmsg_alloc();
4894 [ # # ]: 0 : if (!msg)
4895 : 0 : return -1;
4896 : :
4897 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_SCHED_SCAN);
4898 : :
4899 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4900 : :
4901 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4902 : 0 : msg = NULL;
4903 [ # # ]: 0 : if (ret) {
4904 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop failed: "
4905 : : "ret=%d (%s)", ret, strerror(-ret));
4906 : 0 : goto nla_put_failure;
4907 : : }
4908 : :
4909 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop sent (ret=%d)", ret);
4910 : :
4911 : : nla_put_failure:
4912 : 0 : nlmsg_free(msg);
4913 : 0 : return ret;
4914 : : }
4915 : :
4916 : :
4917 : 7058 : static const u8 * nl80211_get_ie(const u8 *ies, size_t ies_len, u8 ie)
4918 : : {
4919 : : const u8 *end, *pos;
4920 : :
4921 [ - + ]: 7058 : if (ies == NULL)
4922 : 0 : return NULL;
4923 : :
4924 : 7058 : pos = ies;
4925 : 7058 : end = ies + ies_len;
4926 : :
4927 [ + - ]: 7058 : while (pos + 1 < end) {
4928 [ - + ]: 7058 : if (pos + 2 + pos[1] > end)
4929 : 0 : break;
4930 [ + - ]: 7058 : if (pos[0] == ie)
4931 : 7058 : return pos;
4932 : 0 : pos += 2 + pos[1];
4933 : : }
4934 : :
4935 : 7058 : return NULL;
4936 : : }
4937 : :
4938 : :
4939 : 3634 : static int nl80211_scan_filtered(struct wpa_driver_nl80211_data *drv,
4940 : : const u8 *ie, size_t ie_len)
4941 : : {
4942 : : const u8 *ssid;
4943 : : size_t i;
4944 : :
4945 [ + - ]: 3634 : if (drv->filter_ssids == NULL)
4946 : 3634 : return 0;
4947 : :
4948 : 0 : ssid = nl80211_get_ie(ie, ie_len, WLAN_EID_SSID);
4949 [ # # ]: 0 : if (ssid == NULL)
4950 : 0 : return 1;
4951 : :
4952 [ # # ]: 0 : for (i = 0; i < drv->num_filter_ssids; i++) {
4953 [ # # ][ # # ]: 0 : if (ssid[1] == drv->filter_ssids[i].ssid_len &&
4954 : 0 : os_memcmp(ssid + 2, drv->filter_ssids[i].ssid, ssid[1]) ==
4955 : : 0)
4956 : 0 : return 0;
4957 : : }
4958 : :
4959 : 3634 : return 1;
4960 : : }
4961 : :
4962 : :
4963 : 3636 : static int bss_info_handler(struct nl_msg *msg, void *arg)
4964 : : {
4965 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
4966 : 3636 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
4967 : : struct nlattr *bss[NL80211_BSS_MAX + 1];
4968 : : static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
4969 : : [NL80211_BSS_BSSID] = { .type = NLA_UNSPEC },
4970 : : [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
4971 : : [NL80211_BSS_TSF] = { .type = NLA_U64 },
4972 : : [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
4973 : : [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
4974 : : [NL80211_BSS_INFORMATION_ELEMENTS] = { .type = NLA_UNSPEC },
4975 : : [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
4976 : : [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
4977 : : [NL80211_BSS_STATUS] = { .type = NLA_U32 },
4978 : : [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
4979 : : [NL80211_BSS_BEACON_IES] = { .type = NLA_UNSPEC },
4980 : : };
4981 : 3636 : struct nl80211_bss_info_arg *_arg = arg;
4982 : 3636 : struct wpa_scan_results *res = _arg->res;
4983 : : struct wpa_scan_res **tmp;
4984 : : struct wpa_scan_res *r;
4985 : : const u8 *ie, *beacon_ie;
4986 : : size_t ie_len, beacon_ie_len;
4987 : : u8 *pos;
4988 : : size_t i;
4989 : :
4990 : 3636 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
4991 : : genlmsg_attrlen(gnlh, 0), NULL);
4992 [ - + ]: 3636 : if (!tb[NL80211_ATTR_BSS])
4993 : 0 : return NL_SKIP;
4994 [ - + ]: 3636 : if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
4995 : : bss_policy))
4996 : 0 : return NL_SKIP;
4997 [ + + ]: 3636 : if (bss[NL80211_BSS_STATUS]) {
4998 : : enum nl80211_bss_status status;
4999 : 25 : status = nla_get_u32(bss[NL80211_BSS_STATUS]);
5000 [ + + ][ + - ]: 25 : if (status == NL80211_BSS_STATUS_ASSOCIATED &&
5001 : 21 : bss[NL80211_BSS_FREQUENCY]) {
5002 : 21 : _arg->assoc_freq =
5003 : 21 : nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
5004 : 21 : wpa_printf(MSG_DEBUG, "nl80211: Associated on %u MHz",
5005 : : _arg->assoc_freq);
5006 : : }
5007 [ + + ][ + - ]: 25 : if (status == NL80211_BSS_STATUS_ASSOCIATED &&
5008 : 21 : bss[NL80211_BSS_BSSID]) {
5009 : 21 : os_memcpy(_arg->assoc_bssid,
5010 : : nla_data(bss[NL80211_BSS_BSSID]), ETH_ALEN);
5011 : 21 : wpa_printf(MSG_DEBUG, "nl80211: Associated with "
5012 : 126 : MACSTR, MAC2STR(_arg->assoc_bssid));
5013 : : }
5014 : : }
5015 [ + + ]: 3636 : if (!res)
5016 : 2 : return NL_SKIP;
5017 [ + - ]: 3634 : if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
5018 : 3634 : ie = nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
5019 : 3634 : ie_len = nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
5020 : : } else {
5021 : 0 : ie = NULL;
5022 : 0 : ie_len = 0;
5023 : : }
5024 [ + + ]: 3634 : if (bss[NL80211_BSS_BEACON_IES]) {
5025 : 2801 : beacon_ie = nla_data(bss[NL80211_BSS_BEACON_IES]);
5026 : 2801 : beacon_ie_len = nla_len(bss[NL80211_BSS_BEACON_IES]);
5027 : : } else {
5028 : 833 : beacon_ie = NULL;
5029 : 833 : beacon_ie_len = 0;
5030 : : }
5031 : :
5032 [ + - ][ + - ]: 3634 : if (nl80211_scan_filtered(_arg->drv, ie ? ie : beacon_ie,
[ - + ]
5033 : : ie ? ie_len : beacon_ie_len))
5034 : 0 : return NL_SKIP;
5035 : :
5036 : 3634 : r = os_zalloc(sizeof(*r) + ie_len + beacon_ie_len);
5037 [ - + ]: 3634 : if (r == NULL)
5038 : 0 : return NL_SKIP;
5039 [ + - ]: 3634 : if (bss[NL80211_BSS_BSSID])
5040 : 3634 : os_memcpy(r->bssid, nla_data(bss[NL80211_BSS_BSSID]),
5041 : : ETH_ALEN);
5042 [ + - ]: 3634 : if (bss[NL80211_BSS_FREQUENCY])
5043 : 3634 : r->freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
5044 [ + - ]: 3634 : if (bss[NL80211_BSS_BEACON_INTERVAL])
5045 : 3634 : r->beacon_int = nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]);
5046 [ + - ]: 3634 : if (bss[NL80211_BSS_CAPABILITY])
5047 : 3634 : r->caps = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
5048 : 3634 : r->flags |= WPA_SCAN_NOISE_INVALID;
5049 [ + - ]: 3634 : if (bss[NL80211_BSS_SIGNAL_MBM]) {
5050 : 3634 : r->level = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
5051 : 3634 : r->level /= 100; /* mBm to dBm */
5052 : 3634 : r->flags |= WPA_SCAN_LEVEL_DBM | WPA_SCAN_QUAL_INVALID;
5053 [ # # ]: 0 : } else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
5054 : 0 : r->level = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
5055 : 0 : r->flags |= WPA_SCAN_QUAL_INVALID;
5056 : : } else
5057 : 0 : r->flags |= WPA_SCAN_LEVEL_INVALID | WPA_SCAN_QUAL_INVALID;
5058 [ + - ]: 3634 : if (bss[NL80211_BSS_TSF])
5059 : 3634 : r->tsf = nla_get_u64(bss[NL80211_BSS_TSF]);
5060 [ + - ]: 3634 : if (bss[NL80211_BSS_SEEN_MS_AGO])
5061 : 3634 : r->age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
5062 : 3634 : r->ie_len = ie_len;
5063 : 3634 : pos = (u8 *) (r + 1);
5064 [ + - ]: 3634 : if (ie) {
5065 : 3634 : os_memcpy(pos, ie, ie_len);
5066 : 3634 : pos += ie_len;
5067 : : }
5068 : 3634 : r->beacon_ie_len = beacon_ie_len;
5069 [ + + ]: 3634 : if (beacon_ie)
5070 : 2801 : os_memcpy(pos, beacon_ie, beacon_ie_len);
5071 : :
5072 [ + + ]: 3634 : if (bss[NL80211_BSS_STATUS]) {
5073 : : enum nl80211_bss_status status;
5074 : 23 : status = nla_get_u32(bss[NL80211_BSS_STATUS]);
5075 [ - + + ]: 23 : switch (status) {
5076 : : case NL80211_BSS_STATUS_AUTHENTICATED:
5077 : 0 : r->flags |= WPA_SCAN_AUTHENTICATED;
5078 : 0 : break;
5079 : : case NL80211_BSS_STATUS_ASSOCIATED:
5080 : 19 : r->flags |= WPA_SCAN_ASSOCIATED;
5081 : 19 : break;
5082 : : default:
5083 : 4 : break;
5084 : : }
5085 : : }
5086 : :
5087 : : /*
5088 : : * cfg80211 maintains separate BSS table entries for APs if the same
5089 : : * BSSID,SSID pair is seen on multiple channels. wpa_supplicant does
5090 : : * not use frequency as a separate key in the BSS table, so filter out
5091 : : * duplicated entries. Prefer associated BSS entry in such a case in
5092 : : * order to get the correct frequency into the BSS table. Similarly,
5093 : : * prefer newer entries over older.
5094 : : */
5095 [ + + ]: 10729 : for (i = 0; i < res->num; i++) {
5096 : : const u8 *s1, *s2;
5097 [ + + ]: 7122 : if (os_memcmp(res->res[i]->bssid, r->bssid, ETH_ALEN) != 0)
5098 : 3593 : continue;
5099 : :
5100 : 3529 : s1 = nl80211_get_ie((u8 *) (res->res[i] + 1),
5101 : 3529 : res->res[i]->ie_len, WLAN_EID_SSID);
5102 : 3529 : s2 = nl80211_get_ie((u8 *) (r + 1), r->ie_len, WLAN_EID_SSID);
5103 [ + - ][ + - ]: 3529 : if (s1 == NULL || s2 == NULL || s1[1] != s2[1] ||
[ + + ][ + + ]
5104 : 940 : os_memcmp(s1, s2, 2 + s1[1]) != 0)
5105 : 3502 : continue;
5106 : :
5107 : : /* Same BSSID,SSID was already included in scan results */
5108 : 27 : wpa_printf(MSG_DEBUG, "nl80211: Remove duplicated scan result "
5109 : 162 : "for " MACSTR, MAC2STR(r->bssid));
5110 : :
5111 [ - + ][ # # ]: 27 : if (((r->flags & WPA_SCAN_ASSOCIATED) &&
5112 [ + - ]: 27 : !(res->res[i]->flags & WPA_SCAN_ASSOCIATED)) ||
5113 : 27 : r->age < res->res[i]->age) {
5114 : 27 : os_free(res->res[i]);
5115 : 27 : res->res[i] = r;
5116 : : } else
5117 : 0 : os_free(r);
5118 : 27 : return NL_SKIP;
5119 : : }
5120 : :
5121 : 3607 : tmp = os_realloc_array(res->res, res->num + 1,
5122 : : sizeof(struct wpa_scan_res *));
5123 [ - + ]: 3607 : if (tmp == NULL) {
5124 : 0 : os_free(r);
5125 : 0 : return NL_SKIP;
5126 : : }
5127 : 3607 : tmp[res->num++] = r;
5128 : 3607 : res->res = tmp;
5129 : :
5130 : 3636 : return NL_SKIP;
5131 : : }
5132 : :
5133 : :
5134 : 0 : static void clear_state_mismatch(struct wpa_driver_nl80211_data *drv,
5135 : : const u8 *addr)
5136 : : {
5137 [ # # ]: 0 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
5138 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Clear possible state "
5139 : 0 : "mismatch (" MACSTR ")", MAC2STR(addr));
5140 : 0 : wpa_driver_nl80211_mlme(drv, addr,
5141 : : NL80211_CMD_DEAUTHENTICATE,
5142 : : WLAN_REASON_PREV_AUTH_NOT_VALID, 1);
5143 : : }
5144 : 0 : }
5145 : :
5146 : :
5147 : 938 : static void wpa_driver_nl80211_check_bss_status(
5148 : : struct wpa_driver_nl80211_data *drv, struct wpa_scan_results *res)
5149 : : {
5150 : : size_t i;
5151 : :
5152 [ + + ]: 4545 : for (i = 0; i < res->num; i++) {
5153 : 3607 : struct wpa_scan_res *r = res->res[i];
5154 [ - + ]: 3607 : if (r->flags & WPA_SCAN_AUTHENTICATED) {
5155 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan results "
5156 : : "indicates BSS status with " MACSTR
5157 : : " as authenticated",
5158 : 0 : MAC2STR(r->bssid));
5159 [ # # ][ # # ]: 0 : if (is_sta_interface(drv->nlmode) &&
5160 [ # # ]: 0 : os_memcmp(r->bssid, drv->bssid, ETH_ALEN) != 0 &&
5161 : 0 : os_memcmp(r->bssid, drv->auth_bssid, ETH_ALEN) !=
5162 : : 0) {
5163 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown BSSID"
5164 : : " in local state (auth=" MACSTR
5165 : : " assoc=" MACSTR ")",
5166 : 0 : MAC2STR(drv->auth_bssid),
5167 : 0 : MAC2STR(drv->bssid));
5168 : 0 : clear_state_mismatch(drv, r->bssid);
5169 : : }
5170 : : }
5171 : :
5172 [ + + ]: 3607 : if (r->flags & WPA_SCAN_ASSOCIATED) {
5173 : 19 : wpa_printf(MSG_DEBUG, "nl80211: Scan results "
5174 : : "indicate BSS status with " MACSTR
5175 : : " as associated",
5176 : 114 : MAC2STR(r->bssid));
5177 [ + - ][ - + ]: 19 : if (is_sta_interface(drv->nlmode) &&
5178 : 19 : !drv->associated) {
5179 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Local state "
5180 : : "(not associated) does not match "
5181 : : "with BSS state");
5182 : 0 : clear_state_mismatch(drv, r->bssid);
5183 [ + - ][ - + ]: 19 : } else if (is_sta_interface(drv->nlmode) &&
5184 : 19 : os_memcmp(drv->bssid, r->bssid, ETH_ALEN) !=
5185 : : 0) {
5186 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Local state "
5187 : : "(associated with " MACSTR ") does "
5188 : : "not match with BSS state",
5189 : 0 : MAC2STR(drv->bssid));
5190 : 0 : clear_state_mismatch(drv, r->bssid);
5191 : 0 : clear_state_mismatch(drv, drv->bssid);
5192 : : }
5193 : : }
5194 : : }
5195 : 938 : }
5196 : :
5197 : :
5198 : : static struct wpa_scan_results *
5199 : 938 : nl80211_get_scan_results(struct wpa_driver_nl80211_data *drv)
5200 : : {
5201 : : struct nl_msg *msg;
5202 : : struct wpa_scan_results *res;
5203 : : int ret;
5204 : : struct nl80211_bss_info_arg arg;
5205 : :
5206 : 938 : res = os_zalloc(sizeof(*res));
5207 [ - + ]: 938 : if (res == NULL)
5208 : 0 : return NULL;
5209 : 938 : msg = nlmsg_alloc();
5210 [ - + ]: 938 : if (!msg)
5211 : 0 : goto nla_put_failure;
5212 : :
5213 : 938 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
5214 [ - + ]: 938 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
5215 : 0 : goto nla_put_failure;
5216 : :
5217 : 938 : arg.drv = drv;
5218 : 938 : arg.res = res;
5219 : 938 : ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
5220 : 938 : msg = NULL;
5221 [ + - ]: 938 : if (ret == 0) {
5222 : 938 : wpa_printf(MSG_DEBUG, "nl80211: Received scan results (%lu "
5223 : : "BSSes)", (unsigned long) res->num);
5224 : 938 : nl80211_get_noise_for_scan_results(drv, res);
5225 : 938 : return res;
5226 : : }
5227 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
5228 : : "(%s)", ret, strerror(-ret));
5229 : : nla_put_failure:
5230 : 0 : nlmsg_free(msg);
5231 : 0 : wpa_scan_results_free(res);
5232 : 938 : return NULL;
5233 : : }
5234 : :
5235 : :
5236 : : /**
5237 : : * wpa_driver_nl80211_get_scan_results - Fetch the latest scan results
5238 : : * @priv: Pointer to private wext data from wpa_driver_nl80211_init()
5239 : : * Returns: Scan results on success, -1 on failure
5240 : : */
5241 : : static struct wpa_scan_results *
5242 : 938 : wpa_driver_nl80211_get_scan_results(void *priv)
5243 : : {
5244 : 938 : struct i802_bss *bss = priv;
5245 : 938 : struct wpa_driver_nl80211_data *drv = bss->drv;
5246 : : struct wpa_scan_results *res;
5247 : :
5248 : 938 : res = nl80211_get_scan_results(drv);
5249 [ + - ]: 938 : if (res)
5250 : 938 : wpa_driver_nl80211_check_bss_status(drv, res);
5251 : 938 : return res;
5252 : : }
5253 : :
5254 : :
5255 : 0 : static void nl80211_dump_scan(struct wpa_driver_nl80211_data *drv)
5256 : : {
5257 : : struct wpa_scan_results *res;
5258 : : size_t i;
5259 : :
5260 : 0 : res = nl80211_get_scan_results(drv);
5261 [ # # ]: 0 : if (res == NULL) {
5262 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to get scan results");
5263 : 0 : return;
5264 : : }
5265 : :
5266 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result dump");
5267 [ # # ]: 0 : for (i = 0; i < res->num; i++) {
5268 : 0 : struct wpa_scan_res *r = res->res[i];
5269 [ # # ][ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: %d/%d " MACSTR "%s%s",
5270 : 0 : (int) i, (int) res->num, MAC2STR(r->bssid),
5271 : 0 : r->flags & WPA_SCAN_AUTHENTICATED ? " [auth]" : "",
5272 : 0 : r->flags & WPA_SCAN_ASSOCIATED ? " [assoc]" : "");
5273 : : }
5274 : :
5275 : 0 : wpa_scan_results_free(res);
5276 : : }
5277 : :
5278 : :
5279 : 857 : static u32 wpa_alg_to_cipher_suite(enum wpa_alg alg, size_t key_len)
5280 : : {
5281 [ + + + - : 857 : switch (alg) {
- - + - -
- - - -
+ ]
5282 : : case WPA_ALG_WEP:
5283 [ + + ]: 10 : if (key_len == 5)
5284 : 8 : return WLAN_CIPHER_SUITE_WEP40;
5285 : 2 : return WLAN_CIPHER_SUITE_WEP104;
5286 : : case WPA_ALG_TKIP:
5287 : 39 : return WLAN_CIPHER_SUITE_TKIP;
5288 : : case WPA_ALG_CCMP:
5289 : 790 : return WLAN_CIPHER_SUITE_CCMP;
5290 : : case WPA_ALG_GCMP:
5291 : 0 : return WLAN_CIPHER_SUITE_GCMP;
5292 : : case WPA_ALG_CCMP_256:
5293 : 0 : return WLAN_CIPHER_SUITE_CCMP_256;
5294 : : case WPA_ALG_GCMP_256:
5295 : 0 : return WLAN_CIPHER_SUITE_GCMP_256;
5296 : : case WPA_ALG_IGTK:
5297 : 16 : return WLAN_CIPHER_SUITE_AES_CMAC;
5298 : : case WPA_ALG_BIP_GMAC_128:
5299 : 0 : return WLAN_CIPHER_SUITE_BIP_GMAC_128;
5300 : : case WPA_ALG_BIP_GMAC_256:
5301 : 0 : return WLAN_CIPHER_SUITE_BIP_GMAC_256;
5302 : : case WPA_ALG_BIP_CMAC_256:
5303 : 0 : return WLAN_CIPHER_SUITE_BIP_CMAC_256;
5304 : : case WPA_ALG_SMS4:
5305 : 0 : return WLAN_CIPHER_SUITE_SMS4;
5306 : : case WPA_ALG_KRK:
5307 : 0 : return WLAN_CIPHER_SUITE_KRK;
5308 : : case WPA_ALG_NONE:
5309 : : case WPA_ALG_PMK:
5310 : 0 : wpa_printf(MSG_ERROR, "nl80211: Unexpected encryption algorithm %d",
5311 : : alg);
5312 : 0 : return 0;
5313 : : }
5314 : :
5315 : 2 : wpa_printf(MSG_ERROR, "nl80211: Unsupported encryption algorithm %d",
5316 : : alg);
5317 : 857 : return 0;
5318 : : }
5319 : :
5320 : :
5321 : 964 : static u32 wpa_cipher_to_cipher_suite(unsigned int cipher)
5322 : : {
5323 [ - - + - : 964 : switch (cipher) {
+ - + + ]
5324 : : case WPA_CIPHER_CCMP_256:
5325 : 0 : return WLAN_CIPHER_SUITE_CCMP_256;
5326 : : case WPA_CIPHER_GCMP_256:
5327 : 0 : return WLAN_CIPHER_SUITE_GCMP_256;
5328 : : case WPA_CIPHER_CCMP:
5329 : 931 : return WLAN_CIPHER_SUITE_CCMP;
5330 : : case WPA_CIPHER_GCMP:
5331 : 0 : return WLAN_CIPHER_SUITE_GCMP;
5332 : : case WPA_CIPHER_TKIP:
5333 : 28 : return WLAN_CIPHER_SUITE_TKIP;
5334 : : case WPA_CIPHER_WEP104:
5335 : 0 : return WLAN_CIPHER_SUITE_WEP104;
5336 : : case WPA_CIPHER_WEP40:
5337 : 4 : return WLAN_CIPHER_SUITE_WEP40;
5338 : : }
5339 : :
5340 : 964 : return 0;
5341 : : }
5342 : :
5343 : :
5344 : 444 : static int wpa_cipher_to_cipher_suites(unsigned int ciphers, u32 suites[],
5345 : : int max_suites)
5346 : : {
5347 : 444 : int num_suites = 0;
5348 : :
5349 [ + - ][ - + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_CCMP_256)
5350 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP_256;
5351 [ + - ][ - + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_GCMP_256)
5352 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP_256;
5353 [ + - ][ + + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_CCMP)
5354 : 443 : suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP;
5355 [ + - ][ - + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_GCMP)
5356 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP;
5357 [ + - ][ - + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_TKIP)
5358 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_TKIP;
5359 [ + - ][ - + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_WEP104)
5360 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_WEP104;
5361 [ + - ][ - + ]: 444 : if (num_suites < max_suites && ciphers & WPA_CIPHER_WEP40)
5362 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_WEP40;
5363 : :
5364 : 444 : return num_suites;
5365 : : }
5366 : :
5367 : :
5368 : 7061 : static int wpa_driver_nl80211_set_key(const char *ifname, struct i802_bss *bss,
5369 : : enum wpa_alg alg, const u8 *addr,
5370 : : int key_idx, int set_tx,
5371 : : const u8 *seq, size_t seq_len,
5372 : : const u8 *key, size_t key_len)
5373 : : {
5374 : 7061 : struct wpa_driver_nl80211_data *drv = bss->drv;
5375 : : int ifindex;
5376 : : struct nl_msg *msg;
5377 : : int ret;
5378 : 7061 : int tdls = 0;
5379 : :
5380 : : /* Ignore for P2P Device */
5381 [ - + ]: 7061 : if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
5382 : 0 : return 0;
5383 : :
5384 : 7061 : ifindex = if_nametoindex(ifname);
5385 : 7061 : wpa_printf(MSG_DEBUG, "%s: ifindex=%d (%s) alg=%d addr=%p key_idx=%d "
5386 : : "set_tx=%d seq_len=%lu key_len=%lu",
5387 : : __func__, ifindex, ifname, alg, addr, key_idx, set_tx,
5388 : : (unsigned long) seq_len, (unsigned long) key_len);
5389 : : #ifdef CONFIG_TDLS
5390 [ + + ]: 7061 : if (key_idx == -1) {
5391 : 68 : key_idx = 0;
5392 : 68 : tdls = 1;
5393 : : }
5394 : : #endif /* CONFIG_TDLS */
5395 : :
5396 : 7061 : msg = nlmsg_alloc();
5397 [ - + ]: 7061 : if (!msg)
5398 : 0 : return -ENOMEM;
5399 : :
5400 [ + + ]: 7061 : if (alg == WPA_ALG_NONE) {
5401 : 6206 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_KEY);
5402 : : } else {
5403 : 855 : nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_KEY);
5404 [ + - ]: 855 : NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
5405 [ + - ]: 855 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5406 : : wpa_alg_to_cipher_suite(alg, key_len));
5407 : : }
5408 : :
5409 [ + + ][ + - ]: 7061 : if (seq && seq_len)
5410 [ + - ]: 676 : NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, seq_len, seq);
5411 : :
5412 [ + + ][ + + ]: 7061 : if (addr && !is_broadcast_ether_addr(addr)) {
5413 : 1518 : wpa_printf(MSG_DEBUG, " addr=" MACSTR, MAC2STR(addr));
5414 [ + - ]: 1518 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
5415 : :
5416 [ + + ][ + + ]: 1524 : if (alg != WPA_ALG_WEP && key_idx && !set_tx) {
[ + - ]
5417 : 6 : wpa_printf(MSG_DEBUG, " RSN IBSS RX GTK");
5418 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE,
5419 : : NL80211_KEYTYPE_GROUP);
5420 : : }
5421 [ + + ][ + - ]: 5543 : } else if (addr && is_broadcast_ether_addr(addr)) {
5422 : : struct nlattr *types;
5423 : :
5424 : 406 : wpa_printf(MSG_DEBUG, " broadcast key");
5425 : :
5426 : 406 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5427 [ - + ]: 406 : if (!types)
5428 : 0 : goto nla_put_failure;
5429 [ + - ]: 406 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
5430 : 406 : nla_nest_end(msg, types);
5431 : : }
5432 [ + - ]: 7061 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
5433 [ + - ]: 7061 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
5434 : :
5435 : 7061 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5436 [ + + ][ + + ]: 7061 : if ((ret == -ENOENT || ret == -ENOLINK) && alg == WPA_ALG_NONE)
[ + + ]
5437 : 6068 : ret = 0;
5438 [ + + ]: 7061 : if (ret)
5439 : 60 : wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d %s)",
5440 : : ret, strerror(-ret));
5441 : :
5442 : : /*
5443 : : * If we failed or don't need to set the default TX key (below),
5444 : : * we're done here.
5445 : : */
5446 [ + + ][ + + ]: 7061 : if (ret || !set_tx || alg == WPA_ALG_NONE || tdls)
[ + + ][ + + ]
5447 : 6595 : return ret;
5448 [ + + ]: 643 : if (is_ap_interface(drv->nlmode) && addr &&
[ + - + + ]
5449 : 177 : !is_broadcast_ether_addr(addr))
5450 : 64 : return ret;
5451 : :
5452 : 402 : msg = nlmsg_alloc();
5453 [ - + ]: 402 : if (!msg)
5454 : 0 : return -ENOMEM;
5455 : :
5456 : 402 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_KEY);
5457 [ + - ]: 402 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
5458 [ + - ]: 402 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
5459 [ - + ]: 402 : if (alg == WPA_ALG_IGTK)
5460 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT_MGMT);
5461 : : else
5462 [ + - ]: 402 : NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
5463 [ + + ][ + + ]: 521 : if (addr && is_broadcast_ether_addr(addr)) {
5464 : : struct nlattr *types;
5465 : :
5466 : 119 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5467 [ - + ]: 119 : if (!types)
5468 : 0 : goto nla_put_failure;
5469 [ + - ]: 119 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
5470 : 119 : nla_nest_end(msg, types);
5471 [ + + ]: 283 : } else if (addr) {
5472 : : struct nlattr *types;
5473 : :
5474 : 278 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5475 [ - + ]: 278 : if (!types)
5476 : 0 : goto nla_put_failure;
5477 [ + - ]: 278 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_UNICAST);
5478 : 278 : nla_nest_end(msg, types);
5479 : : }
5480 : :
5481 : 402 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5482 [ - + ]: 402 : if (ret == -ENOENT)
5483 : 0 : ret = 0;
5484 [ - + ]: 402 : if (ret)
5485 : 0 : wpa_printf(MSG_DEBUG, "nl80211: set_key default failed; "
5486 : : "err=%d %s)", ret, strerror(-ret));
5487 : 402 : return ret;
5488 : :
5489 : : nla_put_failure:
5490 : 0 : nlmsg_free(msg);
5491 : 7061 : return -ENOBUFS;
5492 : : }
5493 : :
5494 : :
5495 : 2 : static int nl_add_key(struct nl_msg *msg, enum wpa_alg alg,
5496 : : int key_idx, int defkey,
5497 : : const u8 *seq, size_t seq_len,
5498 : : const u8 *key, size_t key_len)
5499 : : {
5500 : 2 : struct nlattr *key_attr = nla_nest_start(msg, NL80211_ATTR_KEY);
5501 [ - + ]: 2 : if (!key_attr)
5502 : 0 : return -1;
5503 : :
5504 [ + - ][ - + ]: 2 : if (defkey && alg == WPA_ALG_IGTK)
5505 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_MGMT);
5506 [ + - ]: 2 : else if (defkey)
5507 [ + - ]: 2 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
5508 : :
5509 [ + - ]: 2 : NLA_PUT_U8(msg, NL80211_KEY_IDX, key_idx);
5510 : :
5511 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5512 : : wpa_alg_to_cipher_suite(alg, key_len));
5513 : :
5514 [ - + ][ # # ]: 2 : if (seq && seq_len)
5515 [ # # ]: 0 : NLA_PUT(msg, NL80211_KEY_SEQ, seq_len, seq);
5516 : :
5517 [ + - ]: 2 : NLA_PUT(msg, NL80211_KEY_DATA, key_len, key);
5518 : :
5519 : 2 : nla_nest_end(msg, key_attr);
5520 : :
5521 : 2 : return 0;
5522 : : nla_put_failure:
5523 : 2 : return -1;
5524 : : }
5525 : :
5526 : :
5527 : 8 : static int nl80211_set_conn_keys(struct wpa_driver_associate_params *params,
5528 : : struct nl_msg *msg)
5529 : : {
5530 : 8 : int i, privacy = 0;
5531 : : struct nlattr *nl_keys, *nl_key;
5532 : :
5533 [ + + ]: 40 : for (i = 0; i < 4; i++) {
5534 [ + - ]: 32 : if (!params->wep_key[i])
5535 : 32 : continue;
5536 : 0 : privacy = 1;
5537 : 0 : break;
5538 : : }
5539 [ - + ]: 8 : if (params->wps == WPS_MODE_PRIVACY)
5540 : 0 : privacy = 1;
5541 [ + - ][ + + ]: 8 : if (params->pairwise_suite &&
5542 : 8 : params->pairwise_suite != WPA_CIPHER_NONE)
5543 : 7 : privacy = 1;
5544 : :
5545 [ + + ]: 8 : if (!privacy)
5546 : 1 : return 0;
5547 : :
5548 [ + - ]: 7 : NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
5549 : :
5550 : 7 : nl_keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
5551 [ - + ]: 7 : if (!nl_keys)
5552 : 0 : goto nla_put_failure;
5553 : :
5554 [ + + ]: 35 : for (i = 0; i < 4; i++) {
5555 [ + - ]: 28 : if (!params->wep_key[i])
5556 : 28 : continue;
5557 : :
5558 : 0 : nl_key = nla_nest_start(msg, i);
5559 [ # # ]: 0 : if (!nl_key)
5560 : 0 : goto nla_put_failure;
5561 : :
5562 [ # # ]: 0 : NLA_PUT(msg, NL80211_KEY_DATA, params->wep_key_len[i],
5563 : : params->wep_key[i]);
5564 [ # # ]: 0 : if (params->wep_key_len[i] == 5)
5565 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5566 : : WLAN_CIPHER_SUITE_WEP40);
5567 : : else
5568 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5569 : : WLAN_CIPHER_SUITE_WEP104);
5570 : :
5571 [ # # ]: 0 : NLA_PUT_U8(msg, NL80211_KEY_IDX, i);
5572 : :
5573 [ # # ]: 0 : if (i == params->wep_tx_keyidx)
5574 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
5575 : :
5576 : 0 : nla_nest_end(msg, nl_key);
5577 : : }
5578 : 7 : nla_nest_end(msg, nl_keys);
5579 : :
5580 : 7 : return 0;
5581 : :
5582 : : nla_put_failure:
5583 : 8 : return -ENOBUFS;
5584 : : }
5585 : :
5586 : :
5587 : 416 : static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
5588 : : const u8 *addr, int cmd, u16 reason_code,
5589 : : int local_state_change)
5590 : : {
5591 : 416 : int ret = -1;
5592 : : struct nl_msg *msg;
5593 : :
5594 : 416 : msg = nlmsg_alloc();
5595 [ - + ]: 416 : if (!msg)
5596 : 0 : return -1;
5597 : :
5598 : 416 : nl80211_cmd(drv, msg, 0, cmd);
5599 : :
5600 [ + - ]: 416 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
5601 [ + - ]: 416 : NLA_PUT_U16(msg, NL80211_ATTR_REASON_CODE, reason_code);
5602 [ + + ]: 416 : if (addr)
5603 [ + - ]: 414 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
5604 [ - + ]: 416 : if (local_state_change)
5605 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
5606 : :
5607 : 416 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5608 : 416 : msg = NULL;
5609 [ + + ]: 416 : if (ret) {
5610 : 13 : wpa_dbg(drv->ctx, MSG_DEBUG,
5611 : : "nl80211: MLME command failed: reason=%u ret=%d (%s)",
5612 : : reason_code, ret, strerror(-ret));
5613 : 13 : goto nla_put_failure;
5614 : : }
5615 : 403 : ret = 0;
5616 : :
5617 : : nla_put_failure:
5618 : 416 : nlmsg_free(msg);
5619 : 416 : return ret;
5620 : : }
5621 : :
5622 : :
5623 : 2 : static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
5624 : : int reason_code)
5625 : : {
5626 : : int ret;
5627 : :
5628 : 2 : wpa_printf(MSG_DEBUG, "%s(reason_code=%d)", __func__, reason_code);
5629 : 2 : nl80211_mark_disconnected(drv);
5630 : : /* Disconnect command doesn't need BSSID - it uses cached value */
5631 : 2 : ret = wpa_driver_nl80211_mlme(drv, NULL, NL80211_CMD_DISCONNECT,
5632 : : reason_code, 0);
5633 : : /*
5634 : : * For locally generated disconnect, supplicant already generates a
5635 : : * DEAUTH event, so ignore the event from NL80211.
5636 : : */
5637 : 2 : drv->ignore_next_local_disconnect = ret == 0;
5638 : :
5639 : 2 : return ret;
5640 : : }
5641 : :
5642 : :
5643 : 422 : static int wpa_driver_nl80211_deauthenticate(struct i802_bss *bss,
5644 : : const u8 *addr, int reason_code)
5645 : : {
5646 : 422 : struct wpa_driver_nl80211_data *drv = bss->drv;
5647 [ + + ]: 422 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
5648 : 2 : return wpa_driver_nl80211_disconnect(drv, reason_code);
5649 : 420 : wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
5650 : 2520 : __func__, MAC2STR(addr), reason_code);
5651 : 420 : nl80211_mark_disconnected(drv);
5652 [ + + ]: 420 : if (drv->nlmode == NL80211_IFTYPE_ADHOC)
5653 : 6 : return nl80211_leave_ibss(drv);
5654 : 422 : return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
5655 : : reason_code, 0);
5656 : : }
5657 : :
5658 : :
5659 : 0 : static void nl80211_copy_auth_params(struct wpa_driver_nl80211_data *drv,
5660 : : struct wpa_driver_auth_params *params)
5661 : : {
5662 : : int i;
5663 : :
5664 : 0 : drv->auth_freq = params->freq;
5665 : 0 : drv->auth_alg = params->auth_alg;
5666 : 0 : drv->auth_wep_tx_keyidx = params->wep_tx_keyidx;
5667 : 0 : drv->auth_local_state_change = params->local_state_change;
5668 : 0 : drv->auth_p2p = params->p2p;
5669 : :
5670 [ # # ]: 0 : if (params->bssid)
5671 : 0 : os_memcpy(drv->auth_bssid_, params->bssid, ETH_ALEN);
5672 : : else
5673 : 0 : os_memset(drv->auth_bssid_, 0, ETH_ALEN);
5674 : :
5675 [ # # ]: 0 : if (params->ssid) {
5676 : 0 : os_memcpy(drv->auth_ssid, params->ssid, params->ssid_len);
5677 : 0 : drv->auth_ssid_len = params->ssid_len;
5678 : : } else
5679 : 0 : drv->auth_ssid_len = 0;
5680 : :
5681 : :
5682 : 0 : os_free(drv->auth_ie);
5683 : 0 : drv->auth_ie = NULL;
5684 : 0 : drv->auth_ie_len = 0;
5685 [ # # ]: 0 : if (params->ie) {
5686 : 0 : drv->auth_ie = os_malloc(params->ie_len);
5687 [ # # ]: 0 : if (drv->auth_ie) {
5688 : 0 : os_memcpy(drv->auth_ie, params->ie, params->ie_len);
5689 : 0 : drv->auth_ie_len = params->ie_len;
5690 : : }
5691 : : }
5692 : :
5693 [ # # ]: 0 : for (i = 0; i < 4; i++) {
5694 [ # # ][ # # ]: 0 : if (params->wep_key[i] && params->wep_key_len[i] &&
[ # # ]
5695 : 0 : params->wep_key_len[i] <= 16) {
5696 : 0 : os_memcpy(drv->auth_wep_key[i], params->wep_key[i],
5697 : : params->wep_key_len[i]);
5698 : 0 : drv->auth_wep_key_len[i] = params->wep_key_len[i];
5699 : : } else
5700 : 0 : drv->auth_wep_key_len[i] = 0;
5701 : : }
5702 : 0 : }
5703 : :
5704 : :
5705 : 468 : static int wpa_driver_nl80211_authenticate(
5706 : : struct i802_bss *bss, struct wpa_driver_auth_params *params)
5707 : : {
5708 : 468 : struct wpa_driver_nl80211_data *drv = bss->drv;
5709 : 468 : int ret = -1, i;
5710 : : struct nl_msg *msg;
5711 : : enum nl80211_auth_type type;
5712 : : enum nl80211_iftype nlmode;
5713 : 468 : int count = 0;
5714 : : int is_retry;
5715 : :
5716 : 468 : is_retry = drv->retry_auth;
5717 : 468 : drv->retry_auth = 0;
5718 : :
5719 : 468 : nl80211_mark_disconnected(drv);
5720 : 468 : os_memset(drv->auth_bssid, 0, ETH_ALEN);
5721 [ + - ]: 468 : if (params->bssid)
5722 : 468 : os_memcpy(drv->auth_attempt_bssid, params->bssid, ETH_ALEN);
5723 : : else
5724 : 0 : os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
5725 : : /* FIX: IBSS mode */
5726 [ + + ]: 468 : nlmode = params->p2p ?
5727 : : NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
5728 [ + + - + ]: 521 : if (drv->nlmode != nlmode &&
5729 : 53 : wpa_driver_nl80211_set_mode(bss, nlmode) < 0)
5730 : 0 : return -1;
5731 : :
5732 : : retry:
5733 : 468 : msg = nlmsg_alloc();
5734 [ - + ]: 468 : if (!msg)
5735 : 0 : return -1;
5736 : :
5737 : 468 : wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
5738 : : drv->ifindex);
5739 : :
5740 : 468 : nl80211_cmd(drv, msg, 0, NL80211_CMD_AUTHENTICATE);
5741 : :
5742 [ + + ]: 2340 : for (i = 0; i < 4; i++) {
5743 [ + + ]: 1872 : if (!params->wep_key[i])
5744 : 1870 : continue;
5745 : 2 : wpa_driver_nl80211_set_key(bss->ifname, bss, WPA_ALG_WEP,
5746 : : NULL, i,
5747 : 2 : i == params->wep_tx_keyidx, NULL, 0,
5748 : : params->wep_key[i],
5749 : : params->wep_key_len[i]);
5750 [ - + ]: 2 : if (params->wep_tx_keyidx != i)
5751 : 0 : continue;
5752 [ - + ]: 2 : if (nl_add_key(msg, WPA_ALG_WEP, i, 1, NULL, 0,
5753 : : params->wep_key[i], params->wep_key_len[i])) {
5754 : 0 : nlmsg_free(msg);
5755 : 0 : return -1;
5756 : : }
5757 : : }
5758 : :
5759 [ + - ]: 468 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
5760 [ + - ]: 468 : if (params->bssid) {
5761 : 468 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
5762 : 2808 : MAC2STR(params->bssid));
5763 [ + - ]: 468 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
5764 : : }
5765 [ + - ]: 468 : if (params->freq) {
5766 : 468 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
5767 [ + - ]: 468 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
5768 : : }
5769 [ + - ]: 468 : if (params->ssid) {
5770 : 468 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
5771 : 468 : params->ssid, params->ssid_len);
5772 [ + - ]: 468 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
5773 : : params->ssid);
5774 : : }
5775 : 468 : wpa_hexdump(MSG_DEBUG, " * IEs", params->ie, params->ie_len);
5776 [ + + ]: 468 : if (params->ie)
5777 [ + - ]: 10 : NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
5778 [ + + ]: 468 : if (params->sae_data) {
5779 : 36 : wpa_hexdump(MSG_DEBUG, " * SAE data", params->sae_data,
5780 : : params->sae_data_len);
5781 [ + - ]: 36 : NLA_PUT(msg, NL80211_ATTR_SAE_DATA, params->sae_data_len,
5782 : : params->sae_data);
5783 : : }
5784 [ + + ]: 468 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
5785 : 406 : type = NL80211_AUTHTYPE_OPEN_SYSTEM;
5786 [ - + ]: 62 : else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
5787 : 0 : type = NL80211_AUTHTYPE_SHARED_KEY;
5788 [ - + ]: 62 : else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
5789 : 0 : type = NL80211_AUTHTYPE_NETWORK_EAP;
5790 [ + + ]: 62 : else if (params->auth_alg & WPA_AUTH_ALG_FT)
5791 : 26 : type = NL80211_AUTHTYPE_FT;
5792 [ + - ]: 36 : else if (params->auth_alg & WPA_AUTH_ALG_SAE)
5793 : 36 : type = NL80211_AUTHTYPE_SAE;
5794 : : else
5795 : 0 : goto nla_put_failure;
5796 : 468 : wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
5797 [ + - ]: 468 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
5798 [ + + ]: 468 : if (params->local_state_change) {
5799 : 16 : wpa_printf(MSG_DEBUG, " * Local state change only");
5800 [ + - ]: 16 : NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
5801 : : }
5802 : :
5803 : 468 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5804 : 468 : msg = NULL;
5805 [ - + ]: 468 : if (ret) {
5806 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
5807 : : "nl80211: MLME command failed (auth): ret=%d (%s)",
5808 : : ret, strerror(-ret));
5809 : 0 : count++;
5810 [ # # ][ # # ]: 0 : if (ret == -EALREADY && count == 1 && params->bssid &&
[ # # ][ # # ]
5811 : 0 : !params->local_state_change) {
5812 : : /*
5813 : : * mac80211 does not currently accept new
5814 : : * authentication if we are already authenticated. As a
5815 : : * workaround, force deauthentication and try again.
5816 : : */
5817 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Retry authentication "
5818 : : "after forced deauthentication");
5819 : 0 : wpa_driver_nl80211_deauthenticate(
5820 : : bss, params->bssid,
5821 : : WLAN_REASON_PREV_AUTH_NOT_VALID);
5822 : 0 : nlmsg_free(msg);
5823 : 0 : goto retry;
5824 : : }
5825 : :
5826 [ # # ][ # # ]: 0 : if (ret == -ENOENT && params->freq && !is_retry) {
[ # # ]
5827 : : /*
5828 : : * cfg80211 has likely expired the BSS entry even
5829 : : * though it was previously available in our internal
5830 : : * BSS table. To recover quickly, start a single
5831 : : * channel scan on the specified channel.
5832 : : */
5833 : : struct wpa_driver_scan_params scan;
5834 : : int freqs[2];
5835 : :
5836 : 0 : os_memset(&scan, 0, sizeof(scan));
5837 : 0 : scan.num_ssids = 1;
5838 [ # # ]: 0 : if (params->ssid) {
5839 : 0 : scan.ssids[0].ssid = params->ssid;
5840 : 0 : scan.ssids[0].ssid_len = params->ssid_len;
5841 : : }
5842 : 0 : freqs[0] = params->freq;
5843 : 0 : freqs[1] = 0;
5844 : 0 : scan.freqs = freqs;
5845 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Trigger single "
5846 : : "channel scan to refresh cfg80211 BSS "
5847 : : "entry");
5848 : 0 : ret = wpa_driver_nl80211_scan(bss, &scan);
5849 [ # # ]: 0 : if (ret == 0) {
5850 : 0 : nl80211_copy_auth_params(drv, params);
5851 : 0 : drv->scan_for_auth = 1;
5852 : : }
5853 [ # # ]: 0 : } else if (is_retry) {
5854 : : /*
5855 : : * Need to indicate this with an event since the return
5856 : : * value from the retry is not delivered to core code.
5857 : : */
5858 : : union wpa_event_data event;
5859 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Authentication retry "
5860 : : "failed");
5861 : 0 : os_memset(&event, 0, sizeof(event));
5862 : 0 : os_memcpy(event.timeout_event.addr, drv->auth_bssid_,
5863 : : ETH_ALEN);
5864 : 0 : wpa_supplicant_event(drv->ctx, EVENT_AUTH_TIMED_OUT,
5865 : : &event);
5866 : : }
5867 : :
5868 : 0 : goto nla_put_failure;
5869 : : }
5870 : 468 : ret = 0;
5871 : 468 : wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
5872 : : "successfully");
5873 : :
5874 : : nla_put_failure:
5875 : 468 : nlmsg_free(msg);
5876 : 468 : return ret;
5877 : : }
5878 : :
5879 : :
5880 : 0 : static int wpa_driver_nl80211_authenticate_retry(
5881 : : struct wpa_driver_nl80211_data *drv)
5882 : : {
5883 : : struct wpa_driver_auth_params params;
5884 : 0 : struct i802_bss *bss = drv->first_bss;
5885 : : int i;
5886 : :
5887 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Try to authenticate again");
5888 : :
5889 : 0 : os_memset(¶ms, 0, sizeof(params));
5890 : 0 : params.freq = drv->auth_freq;
5891 : 0 : params.auth_alg = drv->auth_alg;
5892 : 0 : params.wep_tx_keyidx = drv->auth_wep_tx_keyidx;
5893 : 0 : params.local_state_change = drv->auth_local_state_change;
5894 : 0 : params.p2p = drv->auth_p2p;
5895 : :
5896 [ # # ]: 0 : if (!is_zero_ether_addr(drv->auth_bssid_))
5897 : 0 : params.bssid = drv->auth_bssid_;
5898 : :
5899 [ # # ]: 0 : if (drv->auth_ssid_len) {
5900 : 0 : params.ssid = drv->auth_ssid;
5901 : 0 : params.ssid_len = drv->auth_ssid_len;
5902 : : }
5903 : :
5904 : 0 : params.ie = drv->auth_ie;
5905 : 0 : params.ie_len = drv->auth_ie_len;
5906 : :
5907 [ # # ]: 0 : for (i = 0; i < 4; i++) {
5908 [ # # ]: 0 : if (drv->auth_wep_key_len[i]) {
5909 : 0 : params.wep_key[i] = drv->auth_wep_key[i];
5910 : 0 : params.wep_key_len[i] = drv->auth_wep_key_len[i];
5911 : : }
5912 : : }
5913 : :
5914 : 0 : drv->retry_auth = 1;
5915 : 0 : return wpa_driver_nl80211_authenticate(bss, ¶ms);
5916 : : }
5917 : :
5918 : :
5919 : : struct phy_info_arg {
5920 : : u16 *num_modes;
5921 : : struct hostapd_hw_modes *modes;
5922 : : int last_mode, last_chan_idx;
5923 : : };
5924 : :
5925 : 49182 : static void phy_info_ht_capa(struct hostapd_hw_modes *mode, struct nlattr *capa,
5926 : : struct nlattr *ampdu_factor,
5927 : : struct nlattr *ampdu_density,
5928 : : struct nlattr *mcs_set)
5929 : : {
5930 [ + + ]: 49182 : if (capa)
5931 : 2342 : mode->ht_capab = nla_get_u16(capa);
5932 : :
5933 [ + + ]: 49182 : if (ampdu_factor)
5934 : 2342 : mode->a_mpdu_params |= nla_get_u8(ampdu_factor) & 0x03;
5935 : :
5936 [ + + ]: 49182 : if (ampdu_density)
5937 : 2342 : mode->a_mpdu_params |= nla_get_u8(ampdu_density) << 2;
5938 : :
5939 [ + + ][ + - ]: 49182 : if (mcs_set && nla_len(mcs_set) >= 16) {
5940 : : u8 *mcs;
5941 : 2342 : mcs = nla_data(mcs_set);
5942 : 2342 : os_memcpy(mode->mcs_set, mcs, 16);
5943 : : }
5944 : 49182 : }
5945 : :
5946 : :
5947 : 49182 : static void phy_info_vht_capa(struct hostapd_hw_modes *mode,
5948 : : struct nlattr *capa,
5949 : : struct nlattr *mcs_set)
5950 : : {
5951 [ + + ]: 49182 : if (capa)
5952 : 2342 : mode->vht_capab = nla_get_u32(capa);
5953 : :
5954 [ + + ][ + - ]: 49182 : if (mcs_set && nla_len(mcs_set) >= 8) {
5955 : : u8 *mcs;
5956 : 2342 : mcs = nla_data(mcs_set);
5957 : 2342 : os_memcpy(mode->vht_mcs_set, mcs, 8);
5958 : : }
5959 : 49182 : }
5960 : :
5961 : :
5962 : 44498 : static void phy_info_freq(struct hostapd_hw_modes *mode,
5963 : : struct hostapd_channel_data *chan,
5964 : : struct nlattr *tb_freq[])
5965 : : {
5966 : : u8 channel;
5967 : 44498 : chan->freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
5968 : 44498 : chan->flag = 0;
5969 [ + - ]: 44498 : if (ieee80211_freq_to_chan(chan->freq, &channel) != NUM_HOSTAPD_MODES)
5970 : 44498 : chan->chan = channel;
5971 : :
5972 [ + + ]: 44498 : if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
5973 : 17565 : chan->flag |= HOSTAPD_CHAN_DISABLED;
5974 [ + + ]: 44498 : if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IR])
5975 : 31617 : chan->flag |= HOSTAPD_CHAN_PASSIVE_SCAN | HOSTAPD_CHAN_NO_IBSS;
5976 [ + + ]: 44498 : if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
5977 : 17565 : chan->flag |= HOSTAPD_CHAN_RADAR;
5978 : :
5979 [ + + ]: 44498 : if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]) {
5980 : 17565 : enum nl80211_dfs_state state =
5981 : 17565 : nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]);
5982 : :
5983 [ + - - - ]: 17565 : switch (state) {
5984 : : case NL80211_DFS_USABLE:
5985 : 17565 : chan->flag |= HOSTAPD_CHAN_DFS_USABLE;
5986 : 17565 : break;
5987 : : case NL80211_DFS_AVAILABLE:
5988 : 0 : chan->flag |= HOSTAPD_CHAN_DFS_AVAILABLE;
5989 : 0 : break;
5990 : : case NL80211_DFS_UNAVAILABLE:
5991 : 0 : chan->flag |= HOSTAPD_CHAN_DFS_UNAVAILABLE;
5992 : 0 : break;
5993 : : }
5994 : : }
5995 : 44498 : }
5996 : :
5997 : :
5998 : 49182 : static int phy_info_freqs(struct phy_info_arg *phy_info,
5999 : : struct hostapd_hw_modes *mode, struct nlattr *tb)
6000 : : {
6001 : : static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
6002 : : [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
6003 : : [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
6004 : : [NL80211_FREQUENCY_ATTR_NO_IR] = { .type = NLA_FLAG },
6005 : : [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
6006 : : [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
6007 : : [NL80211_FREQUENCY_ATTR_DFS_STATE] = { .type = NLA_U32 },
6008 : : };
6009 : 49182 : int new_channels = 0;
6010 : : struct hostapd_channel_data *channel;
6011 : : struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
6012 : : struct nlattr *nl_freq;
6013 : : int rem_freq, idx;
6014 : :
6015 [ + + ]: 49182 : if (tb == NULL)
6016 : 2342 : return NL_OK;
6017 : :
6018 [ + + ]: 91338 : nla_for_each_nested(nl_freq, tb, rem_freq) {
6019 : 88996 : nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
6020 : 44498 : nla_data(nl_freq), nla_len(nl_freq), freq_policy);
6021 [ - + ]: 44498 : if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
6022 : 0 : continue;
6023 : 44498 : new_channels++;
6024 : : }
6025 : :
6026 : 46840 : channel = os_realloc_array(mode->channels,
6027 : 46840 : mode->num_channels + new_channels,
6028 : : sizeof(struct hostapd_channel_data));
6029 [ - + ]: 46840 : if (!channel)
6030 : 0 : return NL_SKIP;
6031 : :
6032 : 46840 : mode->channels = channel;
6033 : 46840 : mode->num_channels += new_channels;
6034 : :
6035 : 46840 : idx = phy_info->last_chan_idx;
6036 : :
6037 [ + + ]: 91338 : nla_for_each_nested(nl_freq, tb, rem_freq) {
6038 : 88996 : nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
6039 : 44498 : nla_data(nl_freq), nla_len(nl_freq), freq_policy);
6040 [ - + ]: 44498 : if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
6041 : 0 : continue;
6042 : 44498 : phy_info_freq(mode, &mode->channels[idx], tb_freq);
6043 : 44498 : idx++;
6044 : : }
6045 : 46840 : phy_info->last_chan_idx = idx;
6046 : :
6047 : 49182 : return NL_OK;
6048 : : }
6049 : :
6050 : :
6051 : 49182 : static int phy_info_rates(struct hostapd_hw_modes *mode, struct nlattr *tb)
6052 : : {
6053 : : static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
6054 : : [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
6055 : : [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] =
6056 : : { .type = NLA_FLAG },
6057 : : };
6058 : : struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
6059 : : struct nlattr *nl_rate;
6060 : : int rem_rate, idx;
6061 : :
6062 [ + + ]: 49182 : if (tb == NULL)
6063 : 46840 : return NL_OK;
6064 : :
6065 [ + + ]: 25762 : nla_for_each_nested(nl_rate, tb, rem_rate) {
6066 : 46840 : nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
6067 : 23420 : nla_data(nl_rate), nla_len(nl_rate),
6068 : : rate_policy);
6069 [ - + ]: 23420 : if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
6070 : 0 : continue;
6071 : 23420 : mode->num_rates++;
6072 : : }
6073 : :
6074 : 2342 : mode->rates = os_calloc(mode->num_rates, sizeof(int));
6075 [ - + ]: 2342 : if (!mode->rates)
6076 : 0 : return NL_SKIP;
6077 : :
6078 : 2342 : idx = 0;
6079 : :
6080 [ + + ]: 25762 : nla_for_each_nested(nl_rate, tb, rem_rate) {
6081 : 46840 : nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
6082 : 23420 : nla_data(nl_rate), nla_len(nl_rate),
6083 : : rate_policy);
6084 [ - + ]: 23420 : if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
6085 : 0 : continue;
6086 : 23420 : mode->rates[idx] = nla_get_u32(
6087 : : tb_rate[NL80211_BITRATE_ATTR_RATE]);
6088 : 23420 : idx++;
6089 : : }
6090 : :
6091 : 49182 : return NL_OK;
6092 : : }
6093 : :
6094 : :
6095 : 49182 : static int phy_info_band(struct phy_info_arg *phy_info, struct nlattr *nl_band)
6096 : : {
6097 : : struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
6098 : : struct hostapd_hw_modes *mode;
6099 : : int ret;
6100 : :
6101 [ + + ]: 49182 : if (phy_info->last_mode != nl_band->nla_type) {
6102 : 2342 : mode = os_realloc_array(phy_info->modes,
6103 : 2342 : *phy_info->num_modes + 1,
6104 : : sizeof(*mode));
6105 [ - + ]: 2342 : if (!mode)
6106 : 0 : return NL_SKIP;
6107 : 2342 : phy_info->modes = mode;
6108 : :
6109 : 2342 : mode = &phy_info->modes[*(phy_info->num_modes)];
6110 : 2342 : os_memset(mode, 0, sizeof(*mode));
6111 : 2342 : mode->mode = NUM_HOSTAPD_MODES;
6112 : 2342 : mode->flags = HOSTAPD_MODE_FLAG_HT_INFO_KNOWN |
6113 : : HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN;
6114 : :
6115 : : /*
6116 : : * Unsupported VHT MCS stream is defined as value 3, so the VHT
6117 : : * MCS RX/TX map must be initialized with 0xffff to mark all 8
6118 : : * possible streams as unsupported. This will be overridden if
6119 : : * driver advertises VHT support.
6120 : : */
6121 : 2342 : mode->vht_mcs_set[0] = 0xff;
6122 : 2342 : mode->vht_mcs_set[1] = 0xff;
6123 : 2342 : mode->vht_mcs_set[4] = 0xff;
6124 : 2342 : mode->vht_mcs_set[5] = 0xff;
6125 : :
6126 : 2342 : *(phy_info->num_modes) += 1;
6127 : 2342 : phy_info->last_mode = nl_band->nla_type;
6128 : 2342 : phy_info->last_chan_idx = 0;
6129 : : } else
6130 : 46840 : mode = &phy_info->modes[*(phy_info->num_modes) - 1];
6131 : :
6132 : 49182 : nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
6133 : : nla_len(nl_band), NULL);
6134 : :
6135 : 49182 : phy_info_ht_capa(mode, tb_band[NL80211_BAND_ATTR_HT_CAPA],
6136 : : tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR],
6137 : : tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY],
6138 : : tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
6139 : 49182 : phy_info_vht_capa(mode, tb_band[NL80211_BAND_ATTR_VHT_CAPA],
6140 : : tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]);
6141 : 49182 : ret = phy_info_freqs(phy_info, mode, tb_band[NL80211_BAND_ATTR_FREQS]);
6142 [ - + ]: 49182 : if (ret != NL_OK)
6143 : 0 : return ret;
6144 : 49182 : ret = phy_info_rates(mode, tb_band[NL80211_BAND_ATTR_RATES]);
6145 [ - + ]: 49182 : if (ret != NL_OK)
6146 : 0 : return ret;
6147 : :
6148 : 49182 : return NL_OK;
6149 : : }
6150 : :
6151 : :
6152 : 62063 : static int phy_info_handler(struct nl_msg *msg, void *arg)
6153 : : {
6154 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
6155 : 62063 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
6156 : 62063 : struct phy_info_arg *phy_info = arg;
6157 : : struct nlattr *nl_band;
6158 : : int rem_band;
6159 : :
6160 : 62063 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
6161 : : genlmsg_attrlen(gnlh, 0), NULL);
6162 : :
6163 [ + + ]: 62063 : if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
6164 : 11710 : return NL_SKIP;
6165 : :
6166 [ + + ]: 99535 : nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band)
6167 : : {
6168 : 49182 : int res = phy_info_band(phy_info, nl_band);
6169 [ - + ]: 49182 : if (res != NL_OK)
6170 : 0 : return res;
6171 : : }
6172 : :
6173 : 62063 : return NL_SKIP;
6174 : : }
6175 : :
6176 : :
6177 : : static struct hostapd_hw_modes *
6178 : 1171 : wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes,
6179 : : u16 *num_modes)
6180 : : {
6181 : : u16 m;
6182 : 1171 : struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
6183 : 1171 : int i, mode11g_idx = -1;
6184 : :
6185 : : /* heuristic to set up modes */
6186 [ + + ]: 3513 : for (m = 0; m < *num_modes; m++) {
6187 [ - + ]: 2342 : if (!modes[m].num_channels)
6188 : 0 : continue;
6189 [ + + ]: 2342 : if (modes[m].channels[0].freq < 4000) {
6190 : 1171 : modes[m].mode = HOSTAPD_MODE_IEEE80211B;
6191 [ + - ]: 11710 : for (i = 0; i < modes[m].num_rates; i++) {
6192 [ + + ]: 10539 : if (modes[m].rates[i] > 200) {
6193 : 1171 : modes[m].mode = HOSTAPD_MODE_IEEE80211G;
6194 : 1171 : break;
6195 : : }
6196 : : }
6197 [ - + ]: 1171 : } else if (modes[m].channels[0].freq > 50000)
6198 : 0 : modes[m].mode = HOSTAPD_MODE_IEEE80211AD;
6199 : : else
6200 : 1171 : modes[m].mode = HOSTAPD_MODE_IEEE80211A;
6201 : : }
6202 : :
6203 : : /* If only 802.11g mode is included, use it to construct matching
6204 : : * 802.11b mode data. */
6205 : :
6206 [ + + ]: 3513 : for (m = 0; m < *num_modes; m++) {
6207 [ - + ]: 2342 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
6208 : 0 : return modes; /* 802.11b already included */
6209 [ + + ]: 2342 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
6210 : 1171 : mode11g_idx = m;
6211 : : }
6212 : :
6213 [ - + ]: 1171 : if (mode11g_idx < 0)
6214 : 0 : return modes; /* 2.4 GHz band not supported at all */
6215 : :
6216 : 1171 : nmodes = os_realloc_array(modes, *num_modes + 1, sizeof(*nmodes));
6217 [ - + ]: 1171 : if (nmodes == NULL)
6218 : 0 : return modes; /* Could not add 802.11b mode */
6219 : :
6220 : 1171 : mode = &nmodes[*num_modes];
6221 : 1171 : os_memset(mode, 0, sizeof(*mode));
6222 : 1171 : (*num_modes)++;
6223 : 1171 : modes = nmodes;
6224 : :
6225 : 1171 : mode->mode = HOSTAPD_MODE_IEEE80211B;
6226 : :
6227 : 1171 : mode11g = &modes[mode11g_idx];
6228 : 1171 : mode->num_channels = mode11g->num_channels;
6229 : 1171 : mode->channels = os_malloc(mode11g->num_channels *
6230 : : sizeof(struct hostapd_channel_data));
6231 [ - + ]: 1171 : if (mode->channels == NULL) {
6232 : 0 : (*num_modes)--;
6233 : 0 : return modes; /* Could not add 802.11b mode */
6234 : : }
6235 : 1171 : os_memcpy(mode->channels, mode11g->channels,
6236 : : mode11g->num_channels * sizeof(struct hostapd_channel_data));
6237 : :
6238 : 1171 : mode->num_rates = 0;
6239 : 1171 : mode->rates = os_malloc(4 * sizeof(int));
6240 [ - + ]: 1171 : if (mode->rates == NULL) {
6241 : 0 : os_free(mode->channels);
6242 : 0 : (*num_modes)--;
6243 : 0 : return modes; /* Could not add 802.11b mode */
6244 : : }
6245 : :
6246 [ + - ]: 4684 : for (i = 0; i < mode11g->num_rates; i++) {
6247 [ + + ][ + + ]: 4684 : if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
[ + + ]
6248 [ - + ]: 1171 : mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
6249 : 0 : continue;
6250 : 4684 : mode->rates[mode->num_rates] = mode11g->rates[i];
6251 : 4684 : mode->num_rates++;
6252 [ + + ]: 4684 : if (mode->num_rates == 4)
6253 : 1171 : break;
6254 : : }
6255 : :
6256 [ - + ]: 1171 : if (mode->num_rates == 0) {
6257 : 0 : os_free(mode->channels);
6258 : 0 : os_free(mode->rates);
6259 : 0 : (*num_modes)--;
6260 : 0 : return modes; /* No 802.11b rates */
6261 : : }
6262 : :
6263 : 1171 : wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
6264 : : "information");
6265 : :
6266 : 1171 : return modes;
6267 : : }
6268 : :
6269 : :
6270 : 7026 : static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
6271 : : int end)
6272 : : {
6273 : : int c;
6274 : :
6275 [ + + ]: 140520 : for (c = 0; c < mode->num_channels; c++) {
6276 : 133494 : struct hostapd_channel_data *chan = &mode->channels[c];
6277 [ + + ][ + + ]: 133494 : if (chan->freq - 10 >= start && chan->freq + 10 <= end)
6278 : 23420 : chan->flag |= HOSTAPD_CHAN_HT40;
6279 : : }
6280 : 7026 : }
6281 : :
6282 : :
6283 : 11710 : static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
6284 : : int end)
6285 : : {
6286 : : int c;
6287 : :
6288 [ + + ]: 234200 : for (c = 0; c < mode->num_channels; c++) {
6289 : 222490 : struct hostapd_channel_data *chan = &mode->channels[c];
6290 [ + + ]: 222490 : if (!(chan->flag & HOSTAPD_CHAN_HT40))
6291 : 105390 : continue;
6292 [ + + ][ + + ]: 117100 : if (chan->freq - 30 >= start && chan->freq - 10 <= end)
6293 : 16394 : chan->flag |= HOSTAPD_CHAN_HT40MINUS;
6294 [ + + ][ + + ]: 117100 : if (chan->freq + 10 >= start && chan->freq + 30 <= end)
6295 : 18736 : chan->flag |= HOSTAPD_CHAN_HT40PLUS;
6296 : : }
6297 : 11710 : }
6298 : :
6299 : :
6300 : 5855 : static void nl80211_reg_rule_max_eirp(u32 start, u32 end, u32 max_eirp,
6301 : : struct phy_info_arg *results)
6302 : : {
6303 : : u16 m;
6304 : :
6305 [ + + ]: 17565 : for (m = 0; m < *results->num_modes; m++) {
6306 : : int c;
6307 : 11710 : struct hostapd_hw_modes *mode = &results->modes[m];
6308 : :
6309 [ + + ]: 234200 : for (c = 0; c < mode->num_channels; c++) {
6310 : 222490 : struct hostapd_channel_data *chan = &mode->channels[c];
6311 [ + + ][ + + ]: 222490 : if ((u32) chan->freq - 10 >= start &&
6312 : 139349 : (u32) chan->freq + 10 <= end)
6313 : 26933 : chan->max_tx_power = max_eirp;
6314 : : }
6315 : : }
6316 : 5855 : }
6317 : :
6318 : :
6319 : 3513 : static void nl80211_reg_rule_ht40(u32 start, u32 end,
6320 : : struct phy_info_arg *results)
6321 : : {
6322 : : u16 m;
6323 : :
6324 [ + + ]: 10539 : for (m = 0; m < *results->num_modes; m++) {
6325 [ - + ]: 7026 : if (!(results->modes[m].ht_capab &
6326 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6327 : 0 : continue;
6328 : 7026 : nl80211_set_ht40_mode(&results->modes[m], start, end);
6329 : : }
6330 : 3513 : }
6331 : :
6332 : :
6333 : 5855 : static void nl80211_reg_rule_sec(struct nlattr *tb[],
6334 : : struct phy_info_arg *results)
6335 : : {
6336 : : u32 start, end, max_bw;
6337 : : u16 m;
6338 : :
6339 [ + - ][ + - ]: 5855 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6340 [ - + ]: 5855 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6341 : 5855 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6342 : 0 : return;
6343 : :
6344 : 5855 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6345 : 5855 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6346 : 5855 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6347 : :
6348 [ - + ]: 5855 : if (max_bw < 20)
6349 : 0 : return;
6350 : :
6351 [ + + ]: 17565 : for (m = 0; m < *results->num_modes; m++) {
6352 [ - + ]: 11710 : if (!(results->modes[m].ht_capab &
6353 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6354 : 0 : continue;
6355 : 11710 : nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
6356 : : }
6357 : : }
6358 : :
6359 : :
6360 : 0 : static void nl80211_set_vht_mode(struct hostapd_hw_modes *mode, int start,
6361 : : int end)
6362 : : {
6363 : : int c;
6364 : :
6365 [ # # ]: 0 : for (c = 0; c < mode->num_channels; c++) {
6366 : 0 : struct hostapd_channel_data *chan = &mode->channels[c];
6367 [ # # ][ # # ]: 0 : if (chan->freq - 10 >= start && chan->freq + 70 <= end)
6368 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_10_70;
6369 : :
6370 [ # # ][ # # ]: 0 : if (chan->freq - 30 >= start && chan->freq + 50 <= end)
6371 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_30_50;
6372 : :
6373 [ # # ][ # # ]: 0 : if (chan->freq - 50 >= start && chan->freq + 30 <= end)
6374 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_50_30;
6375 : :
6376 [ # # ][ # # ]: 0 : if (chan->freq - 70 >= start && chan->freq + 10 <= end)
6377 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_70_10;
6378 : : }
6379 : 0 : }
6380 : :
6381 : :
6382 : 5855 : static void nl80211_reg_rule_vht(struct nlattr *tb[],
6383 : : struct phy_info_arg *results)
6384 : : {
6385 : : u32 start, end, max_bw;
6386 : : u16 m;
6387 : :
6388 [ + - ][ + - ]: 5855 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6389 [ - + ]: 5855 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6390 : 5855 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6391 : 0 : return;
6392 : :
6393 : 5855 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6394 : 5855 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6395 : 5855 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6396 : :
6397 [ + - ]: 5855 : if (max_bw < 80)
6398 : 5855 : return;
6399 : :
6400 [ # # ]: 5855 : for (m = 0; m < *results->num_modes; m++) {
6401 [ # # ]: 0 : if (!(results->modes[m].ht_capab &
6402 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6403 : 0 : continue;
6404 : : /* TODO: use a real VHT support indication */
6405 [ # # ]: 0 : if (!results->modes[m].vht_capab)
6406 : 0 : continue;
6407 : :
6408 : 0 : nl80211_set_vht_mode(&results->modes[m], start, end);
6409 : : }
6410 : : }
6411 : :
6412 : :
6413 : 1171 : static int nl80211_get_reg(struct nl_msg *msg, void *arg)
6414 : : {
6415 : 1171 : struct phy_info_arg *results = arg;
6416 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
6417 : 1171 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
6418 : : struct nlattr *nl_rule;
6419 : : struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
6420 : : int rem_rule;
6421 : : static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
6422 : : [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
6423 : : [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
6424 : : [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
6425 : : [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
6426 : : [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
6427 : : [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
6428 : : };
6429 : :
6430 : 1171 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
6431 : : genlmsg_attrlen(gnlh, 0), NULL);
6432 [ + - ][ - + ]: 1171 : if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
6433 : 1171 : !tb_msg[NL80211_ATTR_REG_RULES]) {
6434 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
6435 : : "available");
6436 : 0 : return NL_SKIP;
6437 : : }
6438 : :
6439 : 1171 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
6440 : 1171 : (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
6441 : :
6442 [ + + ]: 7026 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6443 : : {
6444 : 5855 : u32 start, end, max_eirp = 0, max_bw = 0;
6445 : 11710 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6446 : 5855 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6447 [ + - ][ - + ]: 5855 : if (tb_rule[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6448 : 5855 : tb_rule[NL80211_ATTR_FREQ_RANGE_END] == NULL)
6449 : 0 : continue;
6450 : 5855 : start = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6451 : 5855 : end = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6452 [ + - ]: 5855 : if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
6453 : 5855 : max_eirp = nla_get_u32(tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP]) / 100;
6454 [ + - ]: 5855 : if (tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW])
6455 : 5855 : max_bw = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6456 : :
6457 : 5855 : wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz %u mBm",
6458 : : start, end, max_bw, max_eirp);
6459 [ + + ]: 5855 : if (max_bw >= 40)
6460 : 3513 : nl80211_reg_rule_ht40(start, end, results);
6461 [ + - ]: 5855 : if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
6462 : 5855 : nl80211_reg_rule_max_eirp(start, end, max_eirp,
6463 : : results);
6464 : : }
6465 : :
6466 [ + + ]: 7026 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6467 : : {
6468 : 11710 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6469 : 5855 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6470 : 5855 : nl80211_reg_rule_sec(tb_rule, results);
6471 : : }
6472 : :
6473 [ + + ]: 7026 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6474 : : {
6475 : 11710 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6476 : 5855 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6477 : 5855 : nl80211_reg_rule_vht(tb_rule, results);
6478 : : }
6479 : :
6480 : 1171 : return NL_SKIP;
6481 : : }
6482 : :
6483 : :
6484 : 1171 : static int nl80211_set_regulatory_flags(struct wpa_driver_nl80211_data *drv,
6485 : : struct phy_info_arg *results)
6486 : : {
6487 : : struct nl_msg *msg;
6488 : :
6489 : 1171 : msg = nlmsg_alloc();
6490 [ - + ]: 1171 : if (!msg)
6491 : 0 : return -ENOMEM;
6492 : :
6493 : 1171 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
6494 : 1171 : return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
6495 : : }
6496 : :
6497 : :
6498 : : static struct hostapd_hw_modes *
6499 : 1171 : wpa_driver_nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
6500 : : {
6501 : : u32 feat;
6502 : 1171 : struct i802_bss *bss = priv;
6503 : 1171 : struct wpa_driver_nl80211_data *drv = bss->drv;
6504 : : struct nl_msg *msg;
6505 : 1171 : struct phy_info_arg result = {
6506 : : .num_modes = num_modes,
6507 : : .modes = NULL,
6508 : : .last_mode = -1,
6509 : : };
6510 : :
6511 : 1171 : *num_modes = 0;
6512 : 1171 : *flags = 0;
6513 : :
6514 : 1171 : msg = nlmsg_alloc();
6515 [ - + ]: 1171 : if (!msg)
6516 : 0 : return NULL;
6517 : :
6518 : 1171 : feat = get_nl80211_protocol_features(drv);
6519 [ + - ]: 1171 : if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
6520 : 1171 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
6521 : : else
6522 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
6523 : :
6524 [ + - ]: 1171 : NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
6525 [ + - ]: 1171 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
6526 : :
6527 [ + - ]: 1171 : if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
6528 : 1171 : nl80211_set_regulatory_flags(drv, &result);
6529 : 1171 : return wpa_driver_nl80211_postprocess_modes(result.modes,
6530 : : num_modes);
6531 : : }
6532 : 0 : msg = NULL;
6533 : : nla_put_failure:
6534 : 0 : nlmsg_free(msg);
6535 : 1171 : return NULL;
6536 : : }
6537 : :
6538 : :
6539 : 12 : static int wpa_driver_nl80211_send_mntr(struct wpa_driver_nl80211_data *drv,
6540 : : const void *data, size_t len,
6541 : : int encrypt, int noack)
6542 : : {
6543 : 12 : __u8 rtap_hdr[] = {
6544 : : 0x00, 0x00, /* radiotap version */
6545 : : 0x0e, 0x00, /* radiotap length */
6546 : : 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
6547 : : IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
6548 : : 0x00, /* padding */
6549 : : 0x00, 0x00, /* RX and TX flags to indicate that */
6550 : : 0x00, 0x00, /* this is the injected frame directly */
6551 : : };
6552 : 12 : struct iovec iov[2] = {
6553 : : {
6554 : : .iov_base = &rtap_hdr,
6555 : : .iov_len = sizeof(rtap_hdr),
6556 : : },
6557 : : {
6558 : : .iov_base = (void *) data,
6559 : : .iov_len = len,
6560 : : }
6561 : : };
6562 : 12 : struct msghdr msg = {
6563 : : .msg_name = NULL,
6564 : : .msg_namelen = 0,
6565 : : .msg_iov = iov,
6566 : : .msg_iovlen = 2,
6567 : : .msg_control = NULL,
6568 : : .msg_controllen = 0,
6569 : : .msg_flags = 0,
6570 : : };
6571 : : int res;
6572 : 12 : u16 txflags = 0;
6573 : :
6574 [ + + ]: 12 : if (encrypt)
6575 : 8 : rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
6576 : :
6577 [ - + ]: 12 : if (drv->monitor_sock < 0) {
6578 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No monitor socket available "
6579 : : "for %s", __func__);
6580 : 0 : return -1;
6581 : : }
6582 : :
6583 [ + + ]: 12 : if (noack)
6584 : 2 : txflags |= IEEE80211_RADIOTAP_F_TX_NOACK;
6585 : 12 : WPA_PUT_LE16(&rtap_hdr[12], txflags);
6586 : :
6587 : 12 : res = sendmsg(drv->monitor_sock, &msg, 0);
6588 [ - + ]: 12 : if (res < 0) {
6589 : 0 : wpa_printf(MSG_INFO, "nl80211: sendmsg: %s", strerror(errno));
6590 : 0 : return -1;
6591 : : }
6592 : 12 : return 0;
6593 : : }
6594 : :
6595 : :
6596 : 565 : static int wpa_driver_nl80211_send_frame(struct i802_bss *bss,
6597 : : const void *data, size_t len,
6598 : : int encrypt, int noack,
6599 : : unsigned int freq, int no_cck,
6600 : : int offchanok, unsigned int wait_time)
6601 : : {
6602 : 565 : struct wpa_driver_nl80211_data *drv = bss->drv;
6603 : : u64 cookie;
6604 : : int res;
6605 : :
6606 [ + + ]: 565 : if (freq == 0) {
6607 : 542 : wpa_printf(MSG_DEBUG, "nl80211: send_frame - Use bss->freq=%u",
6608 : : bss->freq);
6609 : 542 : freq = bss->freq;
6610 : : }
6611 : :
6612 [ + + ]: 565 : if (drv->use_monitor) {
6613 : 12 : wpa_printf(MSG_DEBUG, "nl80211: send_frame(freq=%u bss->freq=%u) -> send_mntr",
6614 : : freq, bss->freq);
6615 : 12 : return wpa_driver_nl80211_send_mntr(drv, data, len,
6616 : : encrypt, noack);
6617 : : }
6618 : :
6619 : 553 : wpa_printf(MSG_DEBUG, "nl80211: send_frame -> send_frame_cmd");
6620 : 553 : res = nl80211_send_frame_cmd(bss, freq, wait_time, data, len,
6621 : : &cookie, no_cck, noack, offchanok);
6622 [ + + ][ + + ]: 553 : if (res == 0 && !noack) {
6623 : : const struct ieee80211_mgmt *mgmt;
6624 : : u16 fc;
6625 : :
6626 : 448 : mgmt = (const struct ieee80211_mgmt *) data;
6627 : 448 : fc = le_to_host16(mgmt->frame_control);
6628 [ + - ][ + + ]: 448 : if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6629 : 448 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_ACTION) {
6630 : 23 : wpa_printf(MSG_MSGDUMP,
6631 : : "nl80211: Update send_action_cookie from 0x%llx to 0x%llx",
6632 : : (long long unsigned int)
6633 : 23 : drv->send_action_cookie,
6634 : : (long long unsigned int) cookie);
6635 : 23 : drv->send_action_cookie = cookie;
6636 : : }
6637 : : }
6638 : :
6639 : 565 : return res;
6640 : : }
6641 : :
6642 : :
6643 : 819 : static int wpa_driver_nl80211_send_mlme(struct i802_bss *bss, const u8 *data,
6644 : : size_t data_len, int noack,
6645 : : unsigned int freq, int no_cck,
6646 : : int offchanok,
6647 : : unsigned int wait_time)
6648 : : {
6649 : 819 : struct wpa_driver_nl80211_data *drv = bss->drv;
6650 : : struct ieee80211_mgmt *mgmt;
6651 : 819 : int encrypt = 1;
6652 : : u16 fc;
6653 : :
6654 : 819 : mgmt = (struct ieee80211_mgmt *) data;
6655 : 819 : fc = le_to_host16(mgmt->frame_control);
6656 : 819 : wpa_printf(MSG_DEBUG, "nl80211: send_mlme - noack=%d freq=%u no_cck=%d offchanok=%d wait_time=%u fc=0x%x nlmode=%d",
6657 : 819 : noack, freq, no_cck, offchanok, wait_time, fc, drv->nlmode);
6658 : :
6659 [ + + ][ - + ]: 819 : if ((is_sta_interface(drv->nlmode) ||
6660 [ + - ]: 262 : drv->nlmode == NL80211_IFTYPE_P2P_DEVICE) &&
6661 [ + - ]: 262 : WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6662 : 262 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
6663 : : /*
6664 : : * The use of last_mgmt_freq is a bit of a hack,
6665 : : * but it works due to the single-threaded nature
6666 : : * of wpa_supplicant.
6667 : : */
6668 [ + - ]: 262 : if (freq == 0) {
6669 : 262 : wpa_printf(MSG_DEBUG, "nl80211: Use last_mgmt_freq=%d",
6670 : : drv->last_mgmt_freq);
6671 : 262 : freq = drv->last_mgmt_freq;
6672 : : }
6673 : 262 : return nl80211_send_frame_cmd(bss, freq, 0,
6674 : : data, data_len, NULL, 1, noack,
6675 : : 1);
6676 : : }
6677 : :
6678 [ - + ][ # # ]: 557 : if (drv->device_ap_sme && is_ap_interface(drv->nlmode)) {
6679 [ # # ]: 0 : if (freq == 0) {
6680 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Use bss->freq=%d",
6681 : : bss->freq);
6682 : 0 : freq = bss->freq;
6683 : : }
6684 [ # # ]: 0 : return nl80211_send_frame_cmd(bss, freq,
6685 : 0 : (int) freq == bss->freq ? 0 :
6686 : : wait_time,
6687 : : data, data_len,
6688 : : &drv->send_action_cookie,
6689 : : no_cck, noack, offchanok);
6690 : : }
6691 : :
6692 [ + - ][ + + ]: 557 : if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6693 : 557 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_AUTH) {
6694 : : /*
6695 : : * Only one of the authentication frame types is encrypted.
6696 : : * In order for static WEP encryption to work properly (i.e.,
6697 : : * to not encrypt the frame), we need to tell mac80211 about
6698 : : * the frames that must not be encrypted.
6699 : : */
6700 : 124 : u16 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
6701 : 124 : u16 auth_trans = le_to_host16(mgmt->u.auth.auth_transaction);
6702 [ - + ][ # # ]: 124 : if (auth_alg != WLAN_AUTH_SHARED_KEY || auth_trans != 3)
6703 : 124 : encrypt = 0;
6704 : : }
6705 : :
6706 : 557 : wpa_printf(MSG_DEBUG, "nl80211: send_mlme -> send_frame");
6707 : 819 : return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt,
6708 : : noack, freq, no_cck, offchanok,
6709 : : wait_time);
6710 : : }
6711 : :
6712 : :
6713 : 444 : static int nl80211_set_bss(struct i802_bss *bss, int cts, int preamble,
6714 : : int slot, int ht_opmode, int ap_isolate,
6715 : : int *basic_rates)
6716 : : {
6717 : 444 : struct wpa_driver_nl80211_data *drv = bss->drv;
6718 : : struct nl_msg *msg;
6719 : :
6720 : 444 : msg = nlmsg_alloc();
6721 [ - + ]: 444 : if (!msg)
6722 : 0 : return -ENOMEM;
6723 : :
6724 : 444 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_BSS);
6725 : :
6726 [ + - ]: 444 : if (cts >= 0)
6727 [ + - ]: 444 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_CTS_PROT, cts);
6728 [ + - ]: 444 : if (preamble >= 0)
6729 [ + - ]: 444 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_PREAMBLE, preamble);
6730 [ + - ]: 444 : if (slot >= 0)
6731 [ + - ]: 444 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_SLOT_TIME, slot);
6732 [ + - ]: 444 : if (ht_opmode >= 0)
6733 [ + - ]: 444 : NLA_PUT_U16(msg, NL80211_ATTR_BSS_HT_OPMODE, ht_opmode);
6734 [ + - ]: 444 : if (ap_isolate >= 0)
6735 [ + - ]: 444 : NLA_PUT_U8(msg, NL80211_ATTR_AP_ISOLATE, ap_isolate);
6736 : :
6737 [ + - ]: 444 : if (basic_rates) {
6738 : : u8 rates[NL80211_MAX_SUPP_RATES];
6739 : 444 : u8 rates_len = 0;
6740 : : int i;
6741 : :
6742 [ + - ][ + + ]: 1778 : for (i = 0; i < NL80211_MAX_SUPP_RATES && basic_rates[i] >= 0;
6743 : 1334 : i++)
6744 : 1334 : rates[rates_len++] = basic_rates[i] / 5;
6745 : :
6746 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
6747 : : }
6748 : :
6749 [ + - ]: 444 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
6750 : :
6751 : 444 : return send_and_recv_msgs(drv, msg, NULL, NULL);
6752 : : nla_put_failure:
6753 : 0 : nlmsg_free(msg);
6754 : 444 : return -ENOBUFS;
6755 : : }
6756 : :
6757 : :
6758 : 0 : static int wpa_driver_nl80211_set_acl(void *priv,
6759 : : struct hostapd_acl_params *params)
6760 : : {
6761 : 0 : struct i802_bss *bss = priv;
6762 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
6763 : : struct nl_msg *msg;
6764 : : struct nlattr *acl;
6765 : : unsigned int i;
6766 : 0 : int ret = 0;
6767 : :
6768 [ # # ]: 0 : if (!(drv->capa.max_acl_mac_addrs))
6769 : 0 : return -ENOTSUP;
6770 : :
6771 [ # # ]: 0 : if (params->num_mac_acl > drv->capa.max_acl_mac_addrs)
6772 : 0 : return -ENOTSUP;
6773 : :
6774 : 0 : msg = nlmsg_alloc();
6775 [ # # ]: 0 : if (!msg)
6776 : 0 : return -ENOMEM;
6777 : :
6778 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: Set %s ACL (num_mac_acl=%u)",
6779 : 0 : params->acl_policy ? "Accept" : "Deny", params->num_mac_acl);
6780 : :
6781 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_MAC_ACL);
6782 : :
6783 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
6784 : :
6785 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_ACL_POLICY, params->acl_policy ?
6786 : : NL80211_ACL_POLICY_DENY_UNLESS_LISTED :
6787 : : NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED);
6788 : :
6789 : 0 : acl = nla_nest_start(msg, NL80211_ATTR_MAC_ADDRS);
6790 [ # # ]: 0 : if (acl == NULL)
6791 : 0 : goto nla_put_failure;
6792 : :
6793 [ # # ]: 0 : for (i = 0; i < params->num_mac_acl; i++)
6794 [ # # ]: 0 : NLA_PUT(msg, i + 1, ETH_ALEN, params->mac_acl[i].addr);
6795 : :
6796 : 0 : nla_nest_end(msg, acl);
6797 : :
6798 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
6799 : 0 : msg = NULL;
6800 [ # # ]: 0 : if (ret) {
6801 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set MAC ACL: %d (%s)",
6802 : : ret, strerror(-ret));
6803 : : }
6804 : :
6805 : : nla_put_failure:
6806 : 0 : nlmsg_free(msg);
6807 : :
6808 : 0 : return ret;
6809 : : }
6810 : :
6811 : :
6812 : 444 : static int wpa_driver_nl80211_set_ap(void *priv,
6813 : : struct wpa_driver_ap_params *params)
6814 : : {
6815 : 444 : struct i802_bss *bss = priv;
6816 : 444 : struct wpa_driver_nl80211_data *drv = bss->drv;
6817 : : struct nl_msg *msg;
6818 : 444 : u8 cmd = NL80211_CMD_NEW_BEACON;
6819 : : int ret;
6820 : : int beacon_set;
6821 : 444 : int ifindex = if_nametoindex(bss->ifname);
6822 : : int num_suites;
6823 : : u32 suites[10], suite;
6824 : : u32 ver;
6825 : :
6826 : 444 : beacon_set = bss->beacon_set;
6827 : :
6828 : 444 : msg = nlmsg_alloc();
6829 [ - + ]: 444 : if (!msg)
6830 : 0 : return -ENOMEM;
6831 : :
6832 : 444 : wpa_printf(MSG_DEBUG, "nl80211: Set beacon (beacon_set=%d)",
6833 : : beacon_set);
6834 [ + + ]: 444 : if (beacon_set)
6835 : 385 : cmd = NL80211_CMD_SET_BEACON;
6836 : :
6837 : 444 : nl80211_cmd(drv, msg, 0, cmd);
6838 : 444 : wpa_hexdump(MSG_DEBUG, "nl80211: Beacon head",
6839 : 444 : params->head, params->head_len);
6840 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD, params->head_len, params->head);
6841 : 444 : wpa_hexdump(MSG_DEBUG, "nl80211: Beacon tail",
6842 : 444 : params->tail, params->tail_len);
6843 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL, params->tail_len, params->tail);
6844 : 444 : wpa_printf(MSG_DEBUG, "nl80211: ifindex=%d", ifindex);
6845 [ + - ]: 444 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
6846 : 444 : wpa_printf(MSG_DEBUG, "nl80211: beacon_int=%d", params->beacon_int);
6847 [ + - ]: 444 : NLA_PUT_U32(msg, NL80211_ATTR_BEACON_INTERVAL, params->beacon_int);
6848 : 444 : wpa_printf(MSG_DEBUG, "nl80211: dtim_period=%d", params->dtim_period);
6849 [ + - ]: 444 : NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period);
6850 : 444 : wpa_hexdump_ascii(MSG_DEBUG, "nl80211: ssid",
6851 : 444 : params->ssid, params->ssid_len);
6852 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
6853 : : params->ssid);
6854 [ - + ][ # # ]: 444 : if (params->proberesp && params->proberesp_len) {
6855 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: proberesp (offload)",
6856 : 0 : params->proberesp, params->proberesp_len);
6857 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_PROBE_RESP, params->proberesp_len,
6858 : : params->proberesp);
6859 : : }
6860 [ + - - - ]: 444 : switch (params->hide_ssid) {
6861 : : case NO_SSID_HIDING:
6862 : 444 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID not in use");
6863 [ + - ]: 444 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6864 : : NL80211_HIDDEN_SSID_NOT_IN_USE);
6865 : 444 : break;
6866 : : case HIDDEN_SSID_ZERO_LEN:
6867 : 0 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero len");
6868 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6869 : : NL80211_HIDDEN_SSID_ZERO_LEN);
6870 : 0 : break;
6871 : : case HIDDEN_SSID_ZERO_CONTENTS:
6872 : 0 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero contents");
6873 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6874 : : NL80211_HIDDEN_SSID_ZERO_CONTENTS);
6875 : 0 : break;
6876 : : }
6877 : 444 : wpa_printf(MSG_DEBUG, "nl80211: privacy=%d", params->privacy);
6878 [ + + ]: 444 : if (params->privacy)
6879 [ + - ]: 443 : NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
6880 : 444 : wpa_printf(MSG_DEBUG, "nl80211: auth_algs=0x%x", params->auth_algs);
6881 [ + + ]: 444 : if ((params->auth_algs & (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) ==
6882 : : (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) {
6883 : : /* Leave out the attribute */
6884 [ - + ]: 442 : } else if (params->auth_algs & WPA_AUTH_ALG_SHARED)
6885 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
6886 : : NL80211_AUTHTYPE_SHARED_KEY);
6887 : : else
6888 [ + - ]: 442 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
6889 : : NL80211_AUTHTYPE_OPEN_SYSTEM);
6890 : :
6891 : 444 : wpa_printf(MSG_DEBUG, "nl80211: wpa_version=0x%x", params->wpa_version);
6892 : 444 : ver = 0;
6893 [ - + ]: 444 : if (params->wpa_version & WPA_PROTO_WPA)
6894 : 0 : ver |= NL80211_WPA_VERSION_1;
6895 [ + + ]: 444 : if (params->wpa_version & WPA_PROTO_RSN)
6896 : 443 : ver |= NL80211_WPA_VERSION_2;
6897 [ + + ]: 444 : if (ver)
6898 [ + - ]: 443 : NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
6899 : :
6900 : 444 : wpa_printf(MSG_DEBUG, "nl80211: key_mgmt_suites=0x%x",
6901 : : params->key_mgmt_suites);
6902 : 444 : num_suites = 0;
6903 [ - + ]: 444 : if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X)
6904 : 0 : suites[num_suites++] = WLAN_AKM_SUITE_8021X;
6905 [ + + ]: 444 : if (params->key_mgmt_suites & WPA_KEY_MGMT_PSK)
6906 : 443 : suites[num_suites++] = WLAN_AKM_SUITE_PSK;
6907 [ + + ]: 444 : if (num_suites) {
6908 [ + - ]: 443 : NLA_PUT(msg, NL80211_ATTR_AKM_SUITES,
6909 : : num_suites * sizeof(u32), suites);
6910 : : }
6911 : :
6912 [ - + ][ # # ]: 444 : if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X &&
6913 : 0 : params->pairwise_ciphers & (WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40))
6914 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT);
6915 : :
6916 : 444 : wpa_printf(MSG_DEBUG, "nl80211: pairwise_ciphers=0x%x",
6917 : : params->pairwise_ciphers);
6918 : 444 : num_suites = wpa_cipher_to_cipher_suites(params->pairwise_ciphers,
6919 : : suites, ARRAY_SIZE(suites));
6920 [ + + ]: 444 : if (num_suites) {
6921 [ + - ]: 443 : NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
6922 : : num_suites * sizeof(u32), suites);
6923 : : }
6924 : :
6925 : 444 : wpa_printf(MSG_DEBUG, "nl80211: group_cipher=0x%x",
6926 : : params->group_cipher);
6927 : 444 : suite = wpa_cipher_to_cipher_suite(params->group_cipher);
6928 [ + + ]: 444 : if (suite)
6929 [ + - ]: 443 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, suite);
6930 : :
6931 [ + - ]: 444 : if (params->beacon_ies) {
6932 : 444 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: beacon_ies",
6933 : : params->beacon_ies);
6934 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_IE, wpabuf_len(params->beacon_ies),
6935 : : wpabuf_head(params->beacon_ies));
6936 : : }
6937 [ + - ]: 444 : if (params->proberesp_ies) {
6938 : 444 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: proberesp_ies",
6939 : : params->proberesp_ies);
6940 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
6941 : : wpabuf_len(params->proberesp_ies),
6942 : : wpabuf_head(params->proberesp_ies));
6943 : : }
6944 [ + - ]: 444 : if (params->assocresp_ies) {
6945 : 444 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: assocresp_ies",
6946 : : params->assocresp_ies);
6947 [ + - ]: 444 : NLA_PUT(msg, NL80211_ATTR_IE_ASSOC_RESP,
6948 : : wpabuf_len(params->assocresp_ies),
6949 : : wpabuf_head(params->assocresp_ies));
6950 : : }
6951 : :
6952 [ - + ]: 444 : if (drv->capa.flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER) {
6953 : 0 : wpa_printf(MSG_DEBUG, "nl80211: ap_max_inactivity=%d",
6954 : : params->ap_max_inactivity);
6955 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_INACTIVITY_TIMEOUT,
6956 : : params->ap_max_inactivity);
6957 : : }
6958 : :
6959 : 444 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
6960 [ - + ]: 444 : if (ret) {
6961 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
6962 : : ret, strerror(-ret));
6963 : : } else {
6964 : 444 : bss->beacon_set = 1;
6965 : 444 : nl80211_set_bss(bss, params->cts_protect, params->preamble,
6966 : : params->short_slot_time, params->ht_opmode,
6967 : : params->isolate, params->basic_rates);
6968 : : }
6969 : 444 : return ret;
6970 : : nla_put_failure:
6971 : 0 : nlmsg_free(msg);
6972 : 444 : return -ENOBUFS;
6973 : : }
6974 : :
6975 : :
6976 : 118 : static int nl80211_put_freq_params(struct nl_msg *msg,
6977 : : struct hostapd_freq_params *freq)
6978 : : {
6979 [ + - ]: 118 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
6980 [ - + ]: 118 : if (freq->vht_enabled) {
6981 [ # # # # : 0 : switch (freq->bandwidth) {
# ]
6982 : : case 20:
6983 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6984 : : NL80211_CHAN_WIDTH_20);
6985 : 0 : break;
6986 : : case 40:
6987 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6988 : : NL80211_CHAN_WIDTH_40);
6989 : 0 : break;
6990 : : case 80:
6991 [ # # ]: 0 : if (freq->center_freq2)
6992 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6993 : : NL80211_CHAN_WIDTH_80P80);
6994 : : else
6995 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6996 : : NL80211_CHAN_WIDTH_80);
6997 : 0 : break;
6998 : : case 160:
6999 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
7000 : : NL80211_CHAN_WIDTH_160);
7001 : 0 : break;
7002 : : default:
7003 : 0 : return -EINVAL;
7004 : : }
7005 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
7006 [ # # ]: 0 : if (freq->center_freq2)
7007 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
7008 : : freq->center_freq2);
7009 [ + + ]: 118 : } else if (freq->ht_enabled) {
7010 [ - - + ]: 59 : switch (freq->sec_channel_offset) {
7011 : : case -1:
7012 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7013 : : NL80211_CHAN_HT40MINUS);
7014 : 0 : break;
7015 : : case 1:
7016 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7017 : : NL80211_CHAN_HT40PLUS);
7018 : 0 : break;
7019 : : default:
7020 [ + - ]: 59 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7021 : : NL80211_CHAN_HT20);
7022 : 59 : break;
7023 : : }
7024 : : }
7025 : 118 : return 0;
7026 : :
7027 : : nla_put_failure:
7028 : 118 : return -ENOBUFS;
7029 : : }
7030 : :
7031 : :
7032 : 118 : static int wpa_driver_nl80211_set_freq(struct i802_bss *bss,
7033 : : struct hostapd_freq_params *freq)
7034 : : {
7035 : 118 : struct wpa_driver_nl80211_data *drv = bss->drv;
7036 : : struct nl_msg *msg;
7037 : : int ret;
7038 : :
7039 : 118 : wpa_printf(MSG_DEBUG,
7040 : : "nl80211: Set freq %d (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
7041 : : freq->freq, freq->ht_enabled, freq->vht_enabled,
7042 : : freq->bandwidth, freq->center_freq1, freq->center_freq2);
7043 : 118 : msg = nlmsg_alloc();
7044 [ - + ]: 118 : if (!msg)
7045 : 0 : return -1;
7046 : :
7047 : 118 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
7048 : :
7049 [ + - ]: 118 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
7050 [ - + ]: 118 : if (nl80211_put_freq_params(msg, freq) < 0)
7051 : 0 : goto nla_put_failure;
7052 : :
7053 : 118 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7054 : 118 : msg = NULL;
7055 [ + - ]: 118 : if (ret == 0) {
7056 : 118 : bss->freq = freq->freq;
7057 : 118 : return 0;
7058 : : }
7059 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set channel (freq=%d): "
7060 : : "%d (%s)", freq->freq, ret, strerror(-ret));
7061 : : nla_put_failure:
7062 : 0 : nlmsg_free(msg);
7063 : 118 : return -1;
7064 : : }
7065 : :
7066 : :
7067 : 999 : static u32 sta_flags_nl80211(int flags)
7068 : : {
7069 : 999 : u32 f = 0;
7070 : :
7071 [ + + ]: 999 : if (flags & WPA_STA_AUTHORIZED)
7072 : 427 : f |= BIT(NL80211_STA_FLAG_AUTHORIZED);
7073 [ + + ]: 999 : if (flags & WPA_STA_WMM)
7074 : 372 : f |= BIT(NL80211_STA_FLAG_WME);
7075 [ + + ]: 999 : if (flags & WPA_STA_SHORT_PREAMBLE)
7076 : 372 : f |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
7077 [ + + ]: 999 : if (flags & WPA_STA_MFP)
7078 : 124 : f |= BIT(NL80211_STA_FLAG_MFP);
7079 [ + + ]: 999 : if (flags & WPA_STA_TDLS_PEER)
7080 : 81 : f |= BIT(NL80211_STA_FLAG_TDLS_PEER);
7081 : :
7082 : 999 : return f;
7083 : : }
7084 : :
7085 : :
7086 : 205 : static int wpa_driver_nl80211_sta_add(void *priv,
7087 : : struct hostapd_sta_add_params *params)
7088 : : {
7089 : 205 : struct i802_bss *bss = priv;
7090 : 205 : struct wpa_driver_nl80211_data *drv = bss->drv;
7091 : : struct nl_msg *msg;
7092 : : struct nl80211_sta_flag_update upd;
7093 : 205 : int ret = -ENOBUFS;
7094 : :
7095 [ + + ][ - + ]: 205 : if ((params->flags & WPA_STA_TDLS_PEER) &&
7096 : 81 : !(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
7097 : 0 : return -EOPNOTSUPP;
7098 : :
7099 : 205 : msg = nlmsg_alloc();
7100 [ - + ]: 205 : if (!msg)
7101 : 0 : return -ENOMEM;
7102 : :
7103 [ + + ]: 205 : wpa_printf(MSG_DEBUG, "nl80211: %s STA " MACSTR,
7104 : 1435 : params->set ? "Set" : "Add", MAC2STR(params->addr));
7105 [ + + ]: 205 : nl80211_cmd(drv, msg, 0, params->set ? NL80211_CMD_SET_STATION :
7106 : : NL80211_CMD_NEW_STATION);
7107 : :
7108 [ + - ]: 205 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
7109 [ + - ]: 205 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->addr);
7110 [ + - ]: 205 : NLA_PUT(msg, NL80211_ATTR_STA_SUPPORTED_RATES, params->supp_rates_len,
7111 : : params->supp_rates);
7112 : 205 : wpa_hexdump(MSG_DEBUG, " * supported rates", params->supp_rates,
7113 : : params->supp_rates_len);
7114 [ + + ]: 205 : if (!params->set) {
7115 [ + + ]: 167 : if (params->aid) {
7116 : 124 : wpa_printf(MSG_DEBUG, " * aid=%u", params->aid);
7117 [ + - ]: 124 : NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, params->aid);
7118 : : } else {
7119 : : /*
7120 : : * cfg80211 validates that AID is non-zero, so we have
7121 : : * to make this a non-zero value for the TDLS case where
7122 : : * a dummy STA entry is used for now.
7123 : : */
7124 : 43 : wpa_printf(MSG_DEBUG, " * aid=1 (TDLS workaround)");
7125 [ + - ]: 43 : NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, 1);
7126 : : }
7127 : 167 : wpa_printf(MSG_DEBUG, " * listen_interval=%u",
7128 : 167 : params->listen_interval);
7129 [ + - ]: 167 : NLA_PUT_U16(msg, NL80211_ATTR_STA_LISTEN_INTERVAL,
7130 : : params->listen_interval);
7131 [ - + ][ # # ]: 38 : } else if (params->aid && (params->flags & WPA_STA_TDLS_PEER)) {
7132 : 0 : wpa_printf(MSG_DEBUG, " * peer_aid=%u", params->aid);
7133 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_PEER_AID, params->aid);
7134 : : }
7135 [ + + ]: 205 : if (params->ht_capabilities) {
7136 : 124 : wpa_hexdump(MSG_DEBUG, " * ht_capabilities",
7137 : 124 : (u8 *) params->ht_capabilities,
7138 : : sizeof(*params->ht_capabilities));
7139 [ + - ]: 124 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY,
7140 : : sizeof(*params->ht_capabilities),
7141 : : params->ht_capabilities);
7142 : : }
7143 : :
7144 [ - + ]: 205 : if (params->vht_capabilities) {
7145 : 0 : wpa_hexdump(MSG_DEBUG, " * vht_capabilities",
7146 : 0 : (u8 *) params->vht_capabilities,
7147 : : sizeof(*params->vht_capabilities));
7148 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY,
7149 : : sizeof(*params->vht_capabilities),
7150 : : params->vht_capabilities);
7151 : : }
7152 : :
7153 : 205 : wpa_printf(MSG_DEBUG, " * capability=0x%x", params->capability);
7154 [ + - ]: 205 : NLA_PUT_U16(msg, NL80211_ATTR_STA_CAPABILITY, params->capability);
7155 : :
7156 [ + + ]: 205 : if (params->ext_capab) {
7157 : 38 : wpa_hexdump(MSG_DEBUG, " * ext_capab",
7158 : 38 : params->ext_capab, params->ext_capab_len);
7159 [ + - ]: 38 : NLA_PUT(msg, NL80211_ATTR_STA_EXT_CAPABILITY,
7160 : : params->ext_capab_len, params->ext_capab);
7161 : : }
7162 : :
7163 : 205 : os_memset(&upd, 0, sizeof(upd));
7164 : 205 : upd.mask = sta_flags_nl80211(params->flags);
7165 : 205 : upd.set = upd.mask;
7166 : 205 : wpa_printf(MSG_DEBUG, " * flags set=0x%x mask=0x%x",
7167 : : upd.set, upd.mask);
7168 [ + - ]: 205 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
7169 : :
7170 [ + + ]: 205 : if (params->flags & WPA_STA_WMM) {
7171 : 124 : struct nlattr *wme = nla_nest_start(msg, NL80211_ATTR_STA_WME);
7172 : :
7173 [ - + ]: 124 : if (!wme)
7174 : 0 : goto nla_put_failure;
7175 : :
7176 : 124 : wpa_printf(MSG_DEBUG, " * qosinfo=0x%x", params->qosinfo);
7177 [ + - ]: 124 : NLA_PUT_U8(msg, NL80211_STA_WME_UAPSD_QUEUES,
7178 : : params->qosinfo & WMM_QOSINFO_STA_AC_MASK);
7179 [ + - ]: 124 : NLA_PUT_U8(msg, NL80211_STA_WME_MAX_SP,
7180 : : (params->qosinfo >> WMM_QOSINFO_STA_SP_SHIFT) &
7181 : : WMM_QOSINFO_STA_SP_MASK);
7182 : 124 : nla_nest_end(msg, wme);
7183 : : }
7184 : :
7185 : 205 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7186 : 205 : msg = NULL;
7187 [ - + ]: 205 : if (ret)
7188 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: NL80211_CMD_%s_STATION "
7189 : 0 : "result: %d (%s)", params->set ? "SET" : "NEW", ret,
7190 : : strerror(-ret));
7191 [ - + ]: 205 : if (ret == -EEXIST)
7192 : 0 : ret = 0;
7193 : : nla_put_failure:
7194 : 205 : nlmsg_free(msg);
7195 : 205 : return ret;
7196 : : }
7197 : :
7198 : :
7199 : 253 : static int wpa_driver_nl80211_sta_remove(struct i802_bss *bss, const u8 *addr)
7200 : : {
7201 : 253 : struct wpa_driver_nl80211_data *drv = bss->drv;
7202 : : struct nl_msg *msg;
7203 : : int ret;
7204 : :
7205 : 253 : msg = nlmsg_alloc();
7206 [ - + ]: 253 : if (!msg)
7207 : 0 : return -ENOMEM;
7208 : :
7209 : 253 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
7210 : :
7211 [ + - ]: 253 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
7212 : : if_nametoindex(bss->ifname));
7213 [ + - ]: 253 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
7214 : :
7215 : 253 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7216 : 253 : wpa_printf(MSG_DEBUG, "nl80211: sta_remove -> DEL_STATION %s " MACSTR
7217 : : " --> %d (%s)",
7218 : 1771 : bss->ifname, MAC2STR(addr), ret, strerror(-ret));
7219 [ + + ]: 253 : if (ret == -ENOENT)
7220 : 129 : return 0;
7221 : 124 : return ret;
7222 : : nla_put_failure:
7223 : 0 : nlmsg_free(msg);
7224 : 253 : return -ENOBUFS;
7225 : : }
7226 : :
7227 : :
7228 : 23 : static void nl80211_remove_iface(struct wpa_driver_nl80211_data *drv,
7229 : : int ifidx)
7230 : : {
7231 : : struct nl_msg *msg;
7232 : :
7233 : 23 : wpa_printf(MSG_DEBUG, "nl80211: Remove interface ifindex=%d", ifidx);
7234 : :
7235 : : /* stop listening for EAPOL on this interface */
7236 : 23 : del_ifidx(drv, ifidx);
7237 : :
7238 : 23 : msg = nlmsg_alloc();
7239 [ - + ]: 23 : if (!msg)
7240 : 0 : goto nla_put_failure;
7241 : :
7242 : 23 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
7243 [ + - ]: 23 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifidx);
7244 : :
7245 [ + - ]: 23 : if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
7246 : 23 : return;
7247 : 0 : msg = NULL;
7248 : : nla_put_failure:
7249 : 0 : nlmsg_free(msg);
7250 : 0 : wpa_printf(MSG_ERROR, "Failed to remove interface (ifidx=%d)", ifidx);
7251 : : }
7252 : :
7253 : :
7254 : 310 : static const char * nl80211_iftype_str(enum nl80211_iftype mode)
7255 : : {
7256 [ + + + - : 310 : switch (mode) {
- + - + +
- - ]
7257 : : case NL80211_IFTYPE_ADHOC:
7258 : 6 : return "ADHOC";
7259 : : case NL80211_IFTYPE_STATION:
7260 : 149 : return "STATION";
7261 : : case NL80211_IFTYPE_AP:
7262 : 2 : return "AP";
7263 : : case NL80211_IFTYPE_AP_VLAN:
7264 : 0 : return "AP_VLAN";
7265 : : case NL80211_IFTYPE_WDS:
7266 : 0 : return "WDS";
7267 : : case NL80211_IFTYPE_MONITOR:
7268 : 2 : return "MONITOR";
7269 : : case NL80211_IFTYPE_MESH_POINT:
7270 : 0 : return "MESH_POINT";
7271 : : case NL80211_IFTYPE_P2P_CLIENT:
7272 : 74 : return "P2P_CLIENT";
7273 : : case NL80211_IFTYPE_P2P_GO:
7274 : 77 : return "P2P_GO";
7275 : : case NL80211_IFTYPE_P2P_DEVICE:
7276 : 0 : return "P2P_DEVICE";
7277 : : default:
7278 : 310 : return "unknown";
7279 : : }
7280 : : }
7281 : :
7282 : :
7283 : 23 : static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
7284 : : const char *ifname,
7285 : : enum nl80211_iftype iftype,
7286 : : const u8 *addr, int wds,
7287 : : int (*handler)(struct nl_msg *, void *),
7288 : : void *arg)
7289 : : {
7290 : : struct nl_msg *msg;
7291 : : int ifidx;
7292 : 23 : int ret = -ENOBUFS;
7293 : :
7294 : 23 : wpa_printf(MSG_DEBUG, "nl80211: Create interface iftype %d (%s)",
7295 : : iftype, nl80211_iftype_str(iftype));
7296 : :
7297 : 23 : msg = nlmsg_alloc();
7298 [ - + ]: 23 : if (!msg)
7299 : 0 : return -1;
7300 : :
7301 : 23 : nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_INTERFACE);
7302 [ - + ]: 23 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
7303 : 0 : goto nla_put_failure;
7304 [ + - ]: 23 : NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, ifname);
7305 [ + - ]: 23 : NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, iftype);
7306 : :
7307 [ + + ]: 23 : if (iftype == NL80211_IFTYPE_MONITOR) {
7308 : : struct nlattr *flags;
7309 : :
7310 : 2 : flags = nla_nest_start(msg, NL80211_ATTR_MNTR_FLAGS);
7311 [ - + ]: 2 : if (!flags)
7312 : 0 : goto nla_put_failure;
7313 : :
7314 [ + - ]: 2 : NLA_PUT_FLAG(msg, NL80211_MNTR_FLAG_COOK_FRAMES);
7315 : :
7316 : 2 : nla_nest_end(msg, flags);
7317 [ - + ]: 21 : } else if (wds) {
7318 [ # # ]: 0 : NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
7319 : : }
7320 : :
7321 : 23 : ret = send_and_recv_msgs(drv, msg, handler, arg);
7322 : 23 : msg = NULL;
7323 [ - + ]: 23 : if (ret) {
7324 : : nla_put_failure:
7325 : 0 : nlmsg_free(msg);
7326 : 0 : wpa_printf(MSG_ERROR, "Failed to create interface %s: %d (%s)",
7327 : : ifname, ret, strerror(-ret));
7328 : 0 : return ret;
7329 : : }
7330 : :
7331 [ - + ]: 23 : if (iftype == NL80211_IFTYPE_P2P_DEVICE)
7332 : 0 : return 0;
7333 : :
7334 : 23 : ifidx = if_nametoindex(ifname);
7335 : 23 : wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
7336 : : ifname, ifidx);
7337 : :
7338 [ - + ]: 23 : if (ifidx <= 0)
7339 : 0 : return -1;
7340 : :
7341 : : /* start listening for EAPOL on this interface */
7342 : 23 : add_ifidx(drv, ifidx);
7343 : :
7344 [ - + ]: 23 : if (addr && iftype != NL80211_IFTYPE_MONITOR &&
[ # # # # ]
7345 : 0 : linux_set_ifhwaddr(drv->global->ioctl_sock, ifname, addr)) {
7346 : 0 : nl80211_remove_iface(drv, ifidx);
7347 : 0 : return -1;
7348 : : }
7349 : :
7350 : 23 : return ifidx;
7351 : : }
7352 : :
7353 : :
7354 : 23 : static int nl80211_create_iface(struct wpa_driver_nl80211_data *drv,
7355 : : const char *ifname, enum nl80211_iftype iftype,
7356 : : const u8 *addr, int wds,
7357 : : int (*handler)(struct nl_msg *, void *),
7358 : : void *arg, int use_existing)
7359 : : {
7360 : : int ret;
7361 : :
7362 : 23 : ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds, handler,
7363 : : arg);
7364 : :
7365 : : /* if error occurred and interface exists already */
7366 [ - + ][ # # ]: 23 : if (ret == -ENFILE && if_nametoindex(ifname)) {
7367 [ # # ]: 0 : if (use_existing) {
7368 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Continue using existing interface %s",
7369 : : ifname);
7370 : 0 : return -ENFILE;
7371 : : }
7372 : 0 : wpa_printf(MSG_INFO, "Try to remove and re-create %s", ifname);
7373 : :
7374 : : /* Try to remove the interface that was already there. */
7375 : 0 : nl80211_remove_iface(drv, if_nametoindex(ifname));
7376 : :
7377 : : /* Try to create the interface again */
7378 : 0 : ret = nl80211_create_iface_once(drv, ifname, iftype, addr,
7379 : : wds, handler, arg);
7380 : : }
7381 : :
7382 [ + - ][ + + ]: 23 : if (ret >= 0 && is_p2p_net_interface(iftype))
7383 : 21 : nl80211_disable_11b_rates(drv, ret, 1);
7384 : :
7385 : 23 : return ret;
7386 : : }
7387 : :
7388 : :
7389 : 8 : static void handle_tx_callback(void *ctx, u8 *buf, size_t len, int ok)
7390 : : {
7391 : : struct ieee80211_hdr *hdr;
7392 : : u16 fc;
7393 : : union wpa_event_data event;
7394 : :
7395 : 8 : hdr = (struct ieee80211_hdr *) buf;
7396 : 8 : fc = le_to_host16(hdr->frame_control);
7397 : :
7398 : 8 : os_memset(&event, 0, sizeof(event));
7399 : 8 : event.tx_status.type = WLAN_FC_GET_TYPE(fc);
7400 : 8 : event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
7401 : 8 : event.tx_status.dst = hdr->addr1;
7402 : 8 : event.tx_status.data = buf;
7403 : 8 : event.tx_status.data_len = len;
7404 : 8 : event.tx_status.ack = ok;
7405 : 8 : wpa_supplicant_event(ctx, EVENT_TX_STATUS, &event);
7406 : 8 : }
7407 : :
7408 : :
7409 : 0 : static void from_unknown_sta(struct wpa_driver_nl80211_data *drv,
7410 : : u8 *buf, size_t len)
7411 : : {
7412 : 0 : struct ieee80211_hdr *hdr = (void *)buf;
7413 : : u16 fc;
7414 : : union wpa_event_data event;
7415 : :
7416 [ # # ]: 0 : if (len < sizeof(*hdr))
7417 : 0 : return;
7418 : :
7419 : 0 : fc = le_to_host16(hdr->frame_control);
7420 : :
7421 : 0 : os_memset(&event, 0, sizeof(event));
7422 : 0 : event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
7423 : 0 : event.rx_from_unknown.addr = hdr->addr2;
7424 : 0 : event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) ==
7425 : : (WLAN_FC_FROMDS | WLAN_FC_TODS);
7426 : 0 : wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
7427 : : }
7428 : :
7429 : :
7430 : 8 : static void handle_frame(struct wpa_driver_nl80211_data *drv,
7431 : : u8 *buf, size_t len, int datarate, int ssi_signal)
7432 : : {
7433 : : struct ieee80211_hdr *hdr;
7434 : : u16 fc;
7435 : : union wpa_event_data event;
7436 : :
7437 : 8 : hdr = (struct ieee80211_hdr *) buf;
7438 : 8 : fc = le_to_host16(hdr->frame_control);
7439 : :
7440 [ + - - - ]: 8 : switch (WLAN_FC_GET_TYPE(fc)) {
7441 : : case WLAN_FC_TYPE_MGMT:
7442 : 8 : os_memset(&event, 0, sizeof(event));
7443 : 8 : event.rx_mgmt.frame = buf;
7444 : 8 : event.rx_mgmt.frame_len = len;
7445 : 8 : event.rx_mgmt.datarate = datarate;
7446 : 8 : event.rx_mgmt.ssi_signal = ssi_signal;
7447 : 8 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
7448 : 8 : break;
7449 : : case WLAN_FC_TYPE_CTRL:
7450 : : /* can only get here with PS-Poll frames */
7451 : 0 : wpa_printf(MSG_DEBUG, "CTRL");
7452 : 0 : from_unknown_sta(drv, buf, len);
7453 : 0 : break;
7454 : : case WLAN_FC_TYPE_DATA:
7455 : 0 : from_unknown_sta(drv, buf, len);
7456 : 0 : break;
7457 : : }
7458 : 8 : }
7459 : :
7460 : :
7461 : 16 : static void handle_monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
7462 : : {
7463 : 16 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
7464 : : int len;
7465 : : unsigned char buf[3000];
7466 : : struct ieee80211_radiotap_iterator iter;
7467 : : int ret;
7468 : 16 : int datarate = 0, ssi_signal = 0;
7469 : 16 : int injected = 0, failed = 0, rxflags = 0;
7470 : :
7471 : 16 : len = recv(sock, buf, sizeof(buf), 0);
7472 [ - + ]: 16 : if (len < 0) {
7473 : 0 : wpa_printf(MSG_ERROR, "nl80211: Monitor socket recv failed: %s",
7474 : 0 : strerror(errno));
7475 : 0 : return;
7476 : : }
7477 : :
7478 [ - + ]: 16 : if (ieee80211_radiotap_iterator_init(&iter, (void*)buf, len)) {
7479 : 0 : wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame");
7480 : 0 : return;
7481 : : }
7482 : :
7483 : : while (1) {
7484 : 94 : ret = ieee80211_radiotap_iterator_next(&iter);
7485 [ + + ]: 94 : if (ret == -ENOENT)
7486 : 16 : break;
7487 [ - + ]: 78 : if (ret) {
7488 : 0 : wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame (%d)",
7489 : : ret);
7490 : 0 : return;
7491 : : }
7492 [ + + + + : 78 : switch (iter.this_arg_index) {
+ + + + ]
7493 : : case IEEE80211_RADIOTAP_FLAGS:
7494 [ - + ]: 8 : if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
7495 : 0 : len -= 4;
7496 : 8 : break;
7497 : : case IEEE80211_RADIOTAP_RX_FLAGS:
7498 : 8 : rxflags = 1;
7499 : 8 : break;
7500 : : case IEEE80211_RADIOTAP_TX_FLAGS:
7501 : 8 : injected = 1;
7502 : 8 : failed = le_to_host16((*(uint16_t *) iter.this_arg)) &
7503 : : IEEE80211_RADIOTAP_F_TX_FAIL;
7504 : 8 : break;
7505 : : case IEEE80211_RADIOTAP_DATA_RETRIES:
7506 : 8 : break;
7507 : : case IEEE80211_RADIOTAP_CHANNEL:
7508 : : /* TODO: convert from freq/flags to channel number */
7509 : 8 : break;
7510 : : case IEEE80211_RADIOTAP_RATE:
7511 : 14 : datarate = *iter.this_arg * 5;
7512 : 14 : break;
7513 : : case IEEE80211_RADIOTAP_DBM_ANTSIGNAL:
7514 : 8 : ssi_signal = (s8) *iter.this_arg;
7515 : 8 : break;
7516 : : }
7517 : 78 : }
7518 : :
7519 [ + + ][ - + ]: 16 : if (rxflags && injected)
7520 : 0 : return;
7521 : :
7522 [ + + ]: 16 : if (!injected)
7523 : 8 : handle_frame(drv, buf + iter.max_length,
7524 : 8 : len - iter.max_length, datarate, ssi_signal);
7525 : : else
7526 : 16 : handle_tx_callback(drv->ctx, buf + iter.max_length,
7527 : 8 : len - iter.max_length, !failed);
7528 : : }
7529 : :
7530 : :
7531 : : /*
7532 : : * we post-process the filter code later and rewrite
7533 : : * this to the offset to the last instruction
7534 : : */
7535 : : #define PASS 0xFF
7536 : : #define FAIL 0xFE
7537 : :
7538 : : static struct sock_filter msock_filter_insns[] = {
7539 : : /*
7540 : : * do a little-endian load of the radiotap length field
7541 : : */
7542 : : /* load lower byte into A */
7543 : : BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 2),
7544 : : /* put it into X (== index register) */
7545 : : BPF_STMT(BPF_MISC| BPF_TAX, 0),
7546 : : /* load upper byte into A */
7547 : : BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 3),
7548 : : /* left-shift it by 8 */
7549 : : BPF_STMT(BPF_ALU | BPF_LSH | BPF_K, 8),
7550 : : /* or with X */
7551 : : BPF_STMT(BPF_ALU | BPF_OR | BPF_X, 0),
7552 : : /* put result into X */
7553 : : BPF_STMT(BPF_MISC| BPF_TAX, 0),
7554 : :
7555 : : /*
7556 : : * Allow management frames through, this also gives us those
7557 : : * management frames that we sent ourselves with status
7558 : : */
7559 : : /* load the lower byte of the IEEE 802.11 frame control field */
7560 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7561 : : /* mask off frame type and version */
7562 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0xF),
7563 : : /* accept frame if it's both 0, fall through otherwise */
7564 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0, PASS, 0),
7565 : :
7566 : : /*
7567 : : * TODO: add a bit to radiotap RX flags that indicates
7568 : : * that the sending station is not associated, then
7569 : : * add a filter here that filters on our DA and that flag
7570 : : * to allow us to deauth frames to that bad station.
7571 : : *
7572 : : * For now allow all To DS data frames through.
7573 : : */
7574 : : /* load the IEEE 802.11 frame control field */
7575 : : BPF_STMT(BPF_LD | BPF_H | BPF_IND, 0),
7576 : : /* mask off frame type, version and DS status */
7577 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0F03),
7578 : : /* accept frame if version 0, type 2 and To DS, fall through otherwise
7579 : : */
7580 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0801, PASS, 0),
7581 : :
7582 : : #if 0
7583 : : /*
7584 : : * drop non-data frames
7585 : : */
7586 : : /* load the lower byte of the frame control field */
7587 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7588 : : /* mask off QoS bit */
7589 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0c),
7590 : : /* drop non-data frames */
7591 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 8, 0, FAIL),
7592 : : #endif
7593 : : /* load the upper byte of the frame control field */
7594 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 1),
7595 : : /* mask off toDS/fromDS */
7596 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x03),
7597 : : /* accept WDS frames */
7598 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 3, PASS, 0),
7599 : :
7600 : : /*
7601 : : * add header length to index
7602 : : */
7603 : : /* load the lower byte of the frame control field */
7604 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7605 : : /* mask off QoS bit */
7606 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x80),
7607 : : /* right shift it by 6 to give 0 or 2 */
7608 : : BPF_STMT(BPF_ALU | BPF_RSH | BPF_K, 6),
7609 : : /* add data frame header length */
7610 : : BPF_STMT(BPF_ALU | BPF_ADD | BPF_K, 24),
7611 : : /* add index, was start of 802.11 header */
7612 : : BPF_STMT(BPF_ALU | BPF_ADD | BPF_X, 0),
7613 : : /* move to index, now start of LL header */
7614 : : BPF_STMT(BPF_MISC | BPF_TAX, 0),
7615 : :
7616 : : /*
7617 : : * Accept empty data frames, we use those for
7618 : : * polling activity.
7619 : : */
7620 : : BPF_STMT(BPF_LD | BPF_W | BPF_LEN, 0),
7621 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_X, 0, PASS, 0),
7622 : :
7623 : : /*
7624 : : * Accept EAPOL frames
7625 : : */
7626 : : BPF_STMT(BPF_LD | BPF_W | BPF_IND, 0),
7627 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0xAAAA0300, 0, FAIL),
7628 : : BPF_STMT(BPF_LD | BPF_W | BPF_IND, 4),
7629 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0000888E, PASS, FAIL),
7630 : :
7631 : : /* keep these last two statements or change the code below */
7632 : : /* return 0 == "DROP" */
7633 : : BPF_STMT(BPF_RET | BPF_K, 0),
7634 : : /* return ~0 == "keep all" */
7635 : : BPF_STMT(BPF_RET | BPF_K, ~0),
7636 : : };
7637 : :
7638 : : static struct sock_fprog msock_filter = {
7639 : : .len = ARRAY_SIZE(msock_filter_insns),
7640 : : .filter = msock_filter_insns,
7641 : : };
7642 : :
7643 : :
7644 : 2 : static int add_monitor_filter(int s)
7645 : : {
7646 : : int idx;
7647 : :
7648 : : /* rewrite all PASS/FAIL jump offsets */
7649 [ + + ]: 60 : for (idx = 0; idx < msock_filter.len; idx++) {
7650 : 58 : struct sock_filter *insn = &msock_filter_insns[idx];
7651 : :
7652 [ + + ]: 58 : if (BPF_CLASS(insn->code) == BPF_JMP) {
7653 [ - + ]: 12 : if (insn->code == (BPF_JMP|BPF_JA)) {
7654 [ # # ]: 0 : if (insn->k == PASS)
7655 : 0 : insn->k = msock_filter.len - idx - 2;
7656 [ # # ]: 0 : else if (insn->k == FAIL)
7657 : 0 : insn->k = msock_filter.len - idx - 3;
7658 : : }
7659 : :
7660 [ + + ]: 12 : if (insn->jt == PASS)
7661 : 5 : insn->jt = msock_filter.len - idx - 2;
7662 [ - + ]: 7 : else if (insn->jt == FAIL)
7663 : 0 : insn->jt = msock_filter.len - idx - 3;
7664 : :
7665 [ - + ]: 12 : if (insn->jf == PASS)
7666 : 0 : insn->jf = msock_filter.len - idx - 2;
7667 [ + + ]: 12 : else if (insn->jf == FAIL)
7668 : 2 : insn->jf = msock_filter.len - idx - 3;
7669 : : }
7670 : : }
7671 : :
7672 [ - + ]: 2 : if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER,
7673 : : &msock_filter, sizeof(msock_filter))) {
7674 : 0 : wpa_printf(MSG_ERROR, "nl80211: setsockopt(SO_ATTACH_FILTER) failed: %s",
7675 : 0 : strerror(errno));
7676 : 0 : return -1;
7677 : : }
7678 : :
7679 : 2 : return 0;
7680 : : }
7681 : :
7682 : :
7683 : 33 : static void nl80211_remove_monitor_interface(
7684 : : struct wpa_driver_nl80211_data *drv)
7685 : : {
7686 [ + + ]: 33 : if (drv->monitor_refcount > 0)
7687 : 2 : drv->monitor_refcount--;
7688 : 33 : wpa_printf(MSG_DEBUG, "nl80211: Remove monitor interface: refcount=%d",
7689 : : drv->monitor_refcount);
7690 [ - + ]: 33 : if (drv->monitor_refcount > 0)
7691 : 33 : return;
7692 : :
7693 [ + + ]: 33 : if (drv->monitor_ifidx >= 0) {
7694 : 2 : nl80211_remove_iface(drv, drv->monitor_ifidx);
7695 : 2 : drv->monitor_ifidx = -1;
7696 : : }
7697 [ + + ]: 33 : if (drv->monitor_sock >= 0) {
7698 : 2 : eloop_unregister_read_sock(drv->monitor_sock);
7699 : 2 : close(drv->monitor_sock);
7700 : 2 : drv->monitor_sock = -1;
7701 : : }
7702 : : }
7703 : :
7704 : :
7705 : : static int
7706 : 2 : nl80211_create_monitor_interface(struct wpa_driver_nl80211_data *drv)
7707 : : {
7708 : : char buf[IFNAMSIZ];
7709 : : struct sockaddr_ll ll;
7710 : : int optval;
7711 : : socklen_t optlen;
7712 : :
7713 [ - + ]: 2 : if (drv->monitor_ifidx >= 0) {
7714 : 0 : drv->monitor_refcount++;
7715 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Re-use existing monitor interface: refcount=%d",
7716 : : drv->monitor_refcount);
7717 : 0 : return 0;
7718 : : }
7719 : :
7720 [ - + ]: 2 : if (os_strncmp(drv->first_bss->ifname, "p2p-", 4) == 0) {
7721 : : /*
7722 : : * P2P interface name is of the format p2p-%s-%d. For monitor
7723 : : * interface name corresponding to P2P GO, replace "p2p-" with
7724 : : * "mon-" to retain the same interface name length and to
7725 : : * indicate that it is a monitor interface.
7726 : : */
7727 : 0 : snprintf(buf, IFNAMSIZ, "mon-%s", drv->first_bss->ifname + 4);
7728 : : } else {
7729 : : /* Non-P2P interface with AP functionality. */
7730 : 2 : snprintf(buf, IFNAMSIZ, "mon.%s", drv->first_bss->ifname);
7731 : : }
7732 : :
7733 : 2 : buf[IFNAMSIZ - 1] = '\0';
7734 : :
7735 : 2 : drv->monitor_ifidx =
7736 : 2 : nl80211_create_iface(drv, buf, NL80211_IFTYPE_MONITOR, NULL,
7737 : : 0, NULL, NULL, 0);
7738 : :
7739 [ - + ]: 2 : if (drv->monitor_ifidx == -EOPNOTSUPP) {
7740 : : /*
7741 : : * This is backward compatibility for a few versions of
7742 : : * the kernel only that didn't advertise the right
7743 : : * attributes for the only driver that then supported
7744 : : * AP mode w/o monitor -- ath6kl.
7745 : : */
7746 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support "
7747 : : "monitor interface type - try to run without it");
7748 : 0 : drv->device_ap_sme = 1;
7749 : : }
7750 : :
7751 [ - + ]: 2 : if (drv->monitor_ifidx < 0)
7752 : 0 : return -1;
7753 : :
7754 [ - + ]: 2 : if (linux_set_iface_flags(drv->global->ioctl_sock, buf, 1))
7755 : 0 : goto error;
7756 : :
7757 : 2 : memset(&ll, 0, sizeof(ll));
7758 : 2 : ll.sll_family = AF_PACKET;
7759 : 2 : ll.sll_ifindex = drv->monitor_ifidx;
7760 : 2 : drv->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
7761 [ - + ]: 2 : if (drv->monitor_sock < 0) {
7762 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket[PF_PACKET,SOCK_RAW] failed: %s",
7763 : 0 : strerror(errno));
7764 : 0 : goto error;
7765 : : }
7766 : :
7767 [ - + ]: 2 : if (add_monitor_filter(drv->monitor_sock)) {
7768 : 0 : wpa_printf(MSG_INFO, "Failed to set socket filter for monitor "
7769 : : "interface; do filtering in user space");
7770 : : /* This works, but will cost in performance. */
7771 : : }
7772 : :
7773 [ - + ]: 2 : if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
7774 : 0 : wpa_printf(MSG_ERROR, "nl80211: monitor socket bind failed: %s",
7775 : 0 : strerror(errno));
7776 : 0 : goto error;
7777 : : }
7778 : :
7779 : 2 : optlen = sizeof(optval);
7780 : 2 : optval = 20;
7781 [ - + ]: 2 : if (setsockopt
7782 : 2 : (drv->monitor_sock, SOL_SOCKET, SO_PRIORITY, &optval, optlen)) {
7783 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to set socket priority: %s",
7784 : 0 : strerror(errno));
7785 : 0 : goto error;
7786 : : }
7787 : :
7788 [ - + ]: 2 : if (eloop_register_read_sock(drv->monitor_sock, handle_monitor_read,
7789 : : drv, NULL)) {
7790 : 0 : wpa_printf(MSG_INFO, "nl80211: Could not register monitor read socket");
7791 : 0 : goto error;
7792 : : }
7793 : :
7794 : 2 : drv->monitor_refcount++;
7795 : 2 : return 0;
7796 : : error:
7797 : 0 : nl80211_remove_monitor_interface(drv);
7798 : 2 : return -1;
7799 : : }
7800 : :
7801 : :
7802 : 69 : static int nl80211_setup_ap(struct i802_bss *bss)
7803 : : {
7804 : 69 : struct wpa_driver_nl80211_data *drv = bss->drv;
7805 : :
7806 : 69 : wpa_printf(MSG_DEBUG, "nl80211: Setup AP(%s) - device_ap_sme=%d use_monitor=%d",
7807 : 207 : bss->ifname, drv->device_ap_sme, drv->use_monitor);
7808 : :
7809 : : /*
7810 : : * Disable Probe Request reporting unless we need it in this way for
7811 : : * devices that include the AP SME, in the other case (unless using
7812 : : * monitor iface) we'll get it through the nl_mgmt socket instead.
7813 : : */
7814 [ + - ]: 69 : if (!drv->device_ap_sme)
7815 : 69 : wpa_driver_nl80211_probe_req_report(bss, 0);
7816 : :
7817 [ + - ][ + + ]: 69 : if (!drv->device_ap_sme && !drv->use_monitor)
7818 [ - + ]: 67 : if (nl80211_mgmt_subscribe_ap(bss))
7819 : 0 : return -1;
7820 : :
7821 [ - + ][ # # ]: 69 : if (drv->device_ap_sme && !drv->use_monitor)
7822 [ # # ]: 0 : if (nl80211_mgmt_subscribe_ap_dev_sme(bss))
7823 : 0 : return -1;
7824 : :
7825 [ + - ]: 71 : if (!drv->device_ap_sme && drv->use_monitor &&
[ + + - + ]
7826 [ # # ]: 2 : nl80211_create_monitor_interface(drv) &&
7827 : 0 : !drv->device_ap_sme)
7828 : 0 : return -1;
7829 : :
7830 [ - + # # ]: 69 : if (drv->device_ap_sme &&
7831 : 0 : wpa_driver_nl80211_probe_req_report(bss, 1) < 0) {
7832 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to enable "
7833 : : "Probe Request frame reporting in AP mode");
7834 : : /* Try to survive without this */
7835 : : }
7836 : :
7837 : 69 : return 0;
7838 : : }
7839 : :
7840 : :
7841 : 59 : static void nl80211_teardown_ap(struct i802_bss *bss)
7842 : : {
7843 : 59 : struct wpa_driver_nl80211_data *drv = bss->drv;
7844 : :
7845 : 59 : wpa_printf(MSG_DEBUG, "nl80211: Teardown AP(%s) - device_ap_sme=%d use_monitor=%d",
7846 : 177 : bss->ifname, drv->device_ap_sme, drv->use_monitor);
7847 [ - + ]: 59 : if (drv->device_ap_sme) {
7848 : 0 : wpa_driver_nl80211_probe_req_report(bss, 0);
7849 [ # # ]: 0 : if (!drv->use_monitor)
7850 : 0 : nl80211_mgmt_unsubscribe(bss, "AP teardown (dev SME)");
7851 [ + + ]: 59 : } else if (drv->use_monitor)
7852 : 2 : nl80211_remove_monitor_interface(drv);
7853 : : else
7854 : 57 : nl80211_mgmt_unsubscribe(bss, "AP teardown");
7855 : :
7856 : 59 : bss->beacon_set = 0;
7857 : 59 : }
7858 : :
7859 : :
7860 : 524 : static int nl80211_send_eapol_data(struct i802_bss *bss,
7861 : : const u8 *addr, const u8 *data,
7862 : : size_t data_len)
7863 : : {
7864 : : struct sockaddr_ll ll;
7865 : : int ret;
7866 : :
7867 [ - + ]: 524 : if (bss->drv->eapol_tx_sock < 0) {
7868 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No socket to send EAPOL");
7869 : 0 : return -1;
7870 : : }
7871 : :
7872 : 524 : os_memset(&ll, 0, sizeof(ll));
7873 : 524 : ll.sll_family = AF_PACKET;
7874 : 524 : ll.sll_ifindex = bss->ifindex;
7875 : 524 : ll.sll_protocol = htons(ETH_P_PAE);
7876 : 524 : ll.sll_halen = ETH_ALEN;
7877 : 524 : os_memcpy(ll.sll_addr, addr, ETH_ALEN);
7878 : 524 : ret = sendto(bss->drv->eapol_tx_sock, data, data_len, 0,
7879 : : (struct sockaddr *) &ll, sizeof(ll));
7880 [ - + ]: 524 : if (ret < 0)
7881 : 0 : wpa_printf(MSG_ERROR, "nl80211: EAPOL TX: %s",
7882 : 0 : strerror(errno));
7883 : :
7884 : 524 : return ret;
7885 : : }
7886 : :
7887 : :
7888 : : static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
7889 : :
7890 : 526 : static int wpa_driver_nl80211_hapd_send_eapol(
7891 : : void *priv, const u8 *addr, const u8 *data,
7892 : : size_t data_len, int encrypt, const u8 *own_addr, u32 flags)
7893 : : {
7894 : 526 : struct i802_bss *bss = priv;
7895 : 526 : struct wpa_driver_nl80211_data *drv = bss->drv;
7896 : : struct ieee80211_hdr *hdr;
7897 : : size_t len;
7898 : : u8 *pos;
7899 : : int res;
7900 : 526 : int qos = flags & WPA_STA_WMM;
7901 : :
7902 [ + - ][ + + ]: 526 : if (drv->device_ap_sme || !drv->use_monitor)
7903 : 524 : return nl80211_send_eapol_data(bss, addr, data, data_len);
7904 : :
7905 [ + - ]: 2 : len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 +
7906 : : data_len;
7907 : 2 : hdr = os_zalloc(len);
7908 [ - + ]: 2 : if (hdr == NULL) {
7909 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to allocate EAPOL buffer(len=%lu)",
7910 : : (unsigned long) len);
7911 : 0 : return -1;
7912 : : }
7913 : :
7914 : 2 : hdr->frame_control =
7915 : : IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
7916 : 2 : hdr->frame_control |= host_to_le16(WLAN_FC_FROMDS);
7917 [ - + ]: 2 : if (encrypt)
7918 : 0 : hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
7919 [ + - ]: 2 : if (qos) {
7920 : 2 : hdr->frame_control |=
7921 : : host_to_le16(WLAN_FC_STYPE_QOS_DATA << 4);
7922 : : }
7923 : :
7924 : 2 : memcpy(hdr->IEEE80211_DA_FROMDS, addr, ETH_ALEN);
7925 : 2 : memcpy(hdr->IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
7926 : 2 : memcpy(hdr->IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
7927 : 2 : pos = (u8 *) (hdr + 1);
7928 : :
7929 [ + - ]: 2 : if (qos) {
7930 : : /* Set highest priority in QoS header */
7931 : 2 : pos[0] = 7;
7932 : 2 : pos[1] = 0;
7933 : 2 : pos += 2;
7934 : : }
7935 : :
7936 : 2 : memcpy(pos, rfc1042_header, sizeof(rfc1042_header));
7937 : 2 : pos += sizeof(rfc1042_header);
7938 : 2 : WPA_PUT_BE16(pos, ETH_P_PAE);
7939 : 2 : pos += 2;
7940 : 2 : memcpy(pos, data, data_len);
7941 : :
7942 : 2 : res = wpa_driver_nl80211_send_frame(bss, (u8 *) hdr, len, encrypt, 0,
7943 : : 0, 0, 0, 0);
7944 [ - + ]: 2 : if (res < 0) {
7945 : 0 : wpa_printf(MSG_ERROR, "i802_send_eapol - packet len: %lu - "
7946 : : "failed: %d (%s)",
7947 : 0 : (unsigned long) len, errno, strerror(errno));
7948 : : }
7949 : 2 : os_free(hdr);
7950 : :
7951 : 526 : return res;
7952 : : }
7953 : :
7954 : :
7955 : 397 : static int wpa_driver_nl80211_sta_set_flags(void *priv, const u8 *addr,
7956 : : int total_flags,
7957 : : int flags_or, int flags_and)
7958 : : {
7959 : 397 : struct i802_bss *bss = priv;
7960 : 397 : struct wpa_driver_nl80211_data *drv = bss->drv;
7961 : : struct nl_msg *msg;
7962 : : struct nlattr *flags;
7963 : : struct nl80211_sta_flag_update upd;
7964 : :
7965 : 397 : msg = nlmsg_alloc();
7966 [ - + ]: 397 : if (!msg)
7967 : 0 : return -ENOMEM;
7968 : :
7969 : 397 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
7970 : :
7971 [ + - ]: 397 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
7972 : : if_nametoindex(bss->ifname));
7973 [ + - ]: 397 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
7974 : :
7975 : : /*
7976 : : * Backwards compatibility version using NL80211_ATTR_STA_FLAGS. This
7977 : : * can be removed eventually.
7978 : : */
7979 : 397 : flags = nla_nest_start(msg, NL80211_ATTR_STA_FLAGS);
7980 [ - + ]: 397 : if (!flags)
7981 : 0 : goto nla_put_failure;
7982 [ + + ]: 397 : if (total_flags & WPA_STA_AUTHORIZED)
7983 [ + - ]: 71 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_AUTHORIZED);
7984 : :
7985 [ + + ]: 397 : if (total_flags & WPA_STA_WMM)
7986 [ + - ]: 385 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_WME);
7987 : :
7988 [ + + ]: 397 : if (total_flags & WPA_STA_SHORT_PREAMBLE)
7989 [ + - ]: 385 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_SHORT_PREAMBLE);
7990 : :
7991 [ - + ]: 397 : if (total_flags & WPA_STA_MFP)
7992 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_MFP);
7993 : :
7994 [ - + ]: 397 : if (total_flags & WPA_STA_TDLS_PEER)
7995 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_TDLS_PEER);
7996 : :
7997 : 397 : nla_nest_end(msg, flags);
7998 : :
7999 : 397 : os_memset(&upd, 0, sizeof(upd));
8000 : 397 : upd.mask = sta_flags_nl80211(flags_or | ~flags_and);
8001 : 397 : upd.set = sta_flags_nl80211(flags_or);
8002 [ + - ]: 397 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
8003 : :
8004 : 397 : return send_and_recv_msgs(drv, msg, NULL, NULL);
8005 : : nla_put_failure:
8006 : 0 : nlmsg_free(msg);
8007 : 397 : return -ENOBUFS;
8008 : : }
8009 : :
8010 : :
8011 : 59 : static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
8012 : : struct wpa_driver_associate_params *params)
8013 : : {
8014 : : enum nl80211_iftype nlmode, old_mode;
8015 : 118 : struct hostapd_freq_params freq = {
8016 : 59 : .freq = params->freq,
8017 : : };
8018 : :
8019 [ + + ]: 59 : if (params->p2p) {
8020 : 57 : wpa_printf(MSG_DEBUG, "nl80211: Setup AP operations for P2P "
8021 : : "group (GO)");
8022 : 57 : nlmode = NL80211_IFTYPE_P2P_GO;
8023 : : } else
8024 : 2 : nlmode = NL80211_IFTYPE_AP;
8025 : :
8026 : 59 : old_mode = drv->nlmode;
8027 [ - + ]: 59 : if (wpa_driver_nl80211_set_mode(drv->first_bss, nlmode)) {
8028 : 0 : nl80211_remove_monitor_interface(drv);
8029 : 0 : return -1;
8030 : : }
8031 : :
8032 [ - + ]: 59 : if (wpa_driver_nl80211_set_freq(drv->first_bss, &freq)) {
8033 [ # # ]: 0 : if (old_mode != nlmode)
8034 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss, old_mode);
8035 : 0 : nl80211_remove_monitor_interface(drv);
8036 : 0 : return -1;
8037 : : }
8038 : :
8039 : 59 : return 0;
8040 : : }
8041 : :
8042 : :
8043 : 6 : static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv)
8044 : : {
8045 : : struct nl_msg *msg;
8046 : 6 : int ret = -1;
8047 : :
8048 : 6 : msg = nlmsg_alloc();
8049 [ - + ]: 6 : if (!msg)
8050 : 0 : return -1;
8051 : :
8052 : 6 : nl80211_cmd(drv, msg, 0, NL80211_CMD_LEAVE_IBSS);
8053 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8054 : 6 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8055 : 6 : msg = NULL;
8056 [ - + ]: 6 : if (ret) {
8057 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS failed: ret=%d "
8058 : : "(%s)", ret, strerror(-ret));
8059 : 0 : goto nla_put_failure;
8060 : : }
8061 : :
8062 : 6 : ret = 0;
8063 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS request sent successfully");
8064 : :
8065 : : nla_put_failure:
8066 [ - + ]: 6 : if (wpa_driver_nl80211_set_mode(drv->first_bss,
8067 : : NL80211_IFTYPE_STATION)) {
8068 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
8069 : : "station mode");
8070 : : }
8071 : :
8072 : 6 : nlmsg_free(msg);
8073 : 6 : return ret;
8074 : : }
8075 : :
8076 : :
8077 : 6 : static int wpa_driver_nl80211_ibss(struct wpa_driver_nl80211_data *drv,
8078 : : struct wpa_driver_associate_params *params)
8079 : : {
8080 : : struct nl_msg *msg;
8081 : 6 : int ret = -1;
8082 : 6 : int count = 0;
8083 : :
8084 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS (ifindex=%d)", drv->ifindex);
8085 : :
8086 [ - + ]: 6 : if (wpa_driver_nl80211_set_mode(drv->first_bss,
8087 : : NL80211_IFTYPE_ADHOC)) {
8088 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
8089 : : "IBSS mode");
8090 : 0 : return -1;
8091 : : }
8092 : :
8093 : : retry:
8094 : 6 : msg = nlmsg_alloc();
8095 [ - + ]: 6 : if (!msg)
8096 : 0 : return -1;
8097 : :
8098 : 6 : nl80211_cmd(drv, msg, 0, NL80211_CMD_JOIN_IBSS);
8099 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8100 : :
8101 [ + - ][ + - ]: 6 : if (params->ssid == NULL || params->ssid_len > sizeof(drv->ssid))
8102 : : goto nla_put_failure;
8103 : :
8104 : 6 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8105 : 6 : params->ssid, params->ssid_len);
8106 [ + - ]: 6 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8107 : : params->ssid);
8108 : 6 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8109 : 6 : drv->ssid_len = params->ssid_len;
8110 : :
8111 : 6 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8112 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8113 : :
8114 : 6 : ret = nl80211_set_conn_keys(params, msg);
8115 [ - + ]: 6 : if (ret)
8116 : 0 : goto nla_put_failure;
8117 : :
8118 [ - + ][ # # ]: 6 : if (params->bssid && params->fixed_bssid) {
8119 : 0 : wpa_printf(MSG_DEBUG, " * BSSID=" MACSTR,
8120 : 0 : MAC2STR(params->bssid));
8121 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8122 : : }
8123 : :
8124 [ + - ][ + + ]: 6 : if (params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
8125 [ + - ]: 3 : params->key_mgmt_suite == WPA_KEY_MGMT_PSK ||
8126 [ - + ]: 3 : params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X_SHA256 ||
8127 : 3 : params->key_mgmt_suite == WPA_KEY_MGMT_PSK_SHA256) {
8128 : 3 : wpa_printf(MSG_DEBUG, " * control port");
8129 [ + - ]: 3 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
8130 : : }
8131 : :
8132 [ + - ]: 6 : if (params->wpa_ie) {
8133 : 6 : wpa_hexdump(MSG_DEBUG,
8134 : : " * Extra IEs for Beacon/Probe Response frames",
8135 : 6 : params->wpa_ie, params->wpa_ie_len);
8136 [ + - ]: 6 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8137 : : params->wpa_ie);
8138 : : }
8139 : :
8140 : 6 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8141 : 6 : msg = NULL;
8142 [ - + ]: 6 : if (ret) {
8143 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS failed: ret=%d (%s)",
8144 : : ret, strerror(-ret));
8145 : 0 : count++;
8146 [ # # ][ # # ]: 0 : if (ret == -EALREADY && count == 1) {
8147 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Retry IBSS join after "
8148 : : "forced leave");
8149 : 0 : nl80211_leave_ibss(drv);
8150 : 0 : nlmsg_free(msg);
8151 : 0 : goto retry;
8152 : : }
8153 : :
8154 : 0 : goto nla_put_failure;
8155 : : }
8156 : 6 : ret = 0;
8157 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS request sent successfully");
8158 : :
8159 : : nla_put_failure:
8160 : 6 : nlmsg_free(msg);
8161 : 6 : return ret;
8162 : : }
8163 : :
8164 : :
8165 : 437 : static int nl80211_connect_common(struct wpa_driver_nl80211_data *drv,
8166 : : struct wpa_driver_associate_params *params,
8167 : : struct nl_msg *msg)
8168 : : {
8169 [ + - ]: 437 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8170 : :
8171 [ + - ]: 437 : if (params->bssid) {
8172 : 437 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
8173 : 2622 : MAC2STR(params->bssid));
8174 [ + - ]: 437 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8175 : : }
8176 : :
8177 [ + - ]: 437 : if (params->freq) {
8178 : 437 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8179 [ + - ]: 437 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8180 : 437 : drv->assoc_freq = params->freq;
8181 : : } else
8182 : 0 : drv->assoc_freq = 0;
8183 : :
8184 [ - + ]: 437 : if (params->bg_scan_period >= 0) {
8185 : 0 : wpa_printf(MSG_DEBUG, " * bg scan period=%d",
8186 : : params->bg_scan_period);
8187 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
8188 : : params->bg_scan_period);
8189 : : }
8190 : :
8191 [ + - ]: 437 : if (params->ssid) {
8192 : 437 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8193 : 437 : params->ssid, params->ssid_len);
8194 [ + - ]: 437 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8195 : : params->ssid);
8196 [ - + ]: 437 : if (params->ssid_len > sizeof(drv->ssid))
8197 : 0 : goto nla_put_failure;
8198 : 437 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8199 : 437 : drv->ssid_len = params->ssid_len;
8200 : : }
8201 : :
8202 : 437 : wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
8203 [ + - ]: 437 : if (params->wpa_ie)
8204 [ + - ]: 437 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8205 : : params->wpa_ie);
8206 : :
8207 [ + + ]: 437 : if (params->wpa_proto) {
8208 : 258 : enum nl80211_wpa_versions ver = 0;
8209 : :
8210 [ + + ]: 258 : if (params->wpa_proto & WPA_PROTO_WPA)
8211 : 7 : ver |= NL80211_WPA_VERSION_1;
8212 [ + + ]: 258 : if (params->wpa_proto & WPA_PROTO_RSN)
8213 : 251 : ver |= NL80211_WPA_VERSION_2;
8214 : :
8215 : 258 : wpa_printf(MSG_DEBUG, " * WPA Versions 0x%x", ver);
8216 [ + - ]: 258 : NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
8217 : : }
8218 : :
8219 [ + + ]: 437 : if (params->pairwise_suite != WPA_CIPHER_NONE) {
8220 : 260 : u32 cipher = wpa_cipher_to_cipher_suite(params->pairwise_suite);
8221 : 260 : wpa_printf(MSG_DEBUG, " * pairwise=0x%x", cipher);
8222 [ + - ]: 260 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
8223 : : }
8224 : :
8225 [ + + ]: 437 : if (params->group_suite != WPA_CIPHER_NONE) {
8226 : 260 : u32 cipher = wpa_cipher_to_cipher_suite(params->group_suite);
8227 : 260 : wpa_printf(MSG_DEBUG, " * group=0x%x", cipher);
8228 [ + - ]: 260 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
8229 : : }
8230 : :
8231 [ + - ][ + + ]: 437 : if (params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
8232 [ + - ]: 436 : params->key_mgmt_suite == WPA_KEY_MGMT_PSK ||
8233 [ + - ]: 436 : params->key_mgmt_suite == WPA_KEY_MGMT_FT_IEEE8021X ||
8234 [ - + ]: 436 : params->key_mgmt_suite == WPA_KEY_MGMT_FT_PSK ||
8235 : 436 : params->key_mgmt_suite == WPA_KEY_MGMT_CCKM) {
8236 : 1 : int mgmt = WLAN_AKM_SUITE_PSK;
8237 : :
8238 [ - - - - : 1 : switch (params->key_mgmt_suite) {
+ ]
8239 : : case WPA_KEY_MGMT_CCKM:
8240 : 0 : mgmt = WLAN_AKM_SUITE_CCKM;
8241 : 0 : break;
8242 : : case WPA_KEY_MGMT_IEEE8021X:
8243 : 0 : mgmt = WLAN_AKM_SUITE_8021X;
8244 : 0 : break;
8245 : : case WPA_KEY_MGMT_FT_IEEE8021X:
8246 : 0 : mgmt = WLAN_AKM_SUITE_FT_8021X;
8247 : 0 : break;
8248 : : case WPA_KEY_MGMT_FT_PSK:
8249 : 0 : mgmt = WLAN_AKM_SUITE_FT_PSK;
8250 : 0 : break;
8251 : : case WPA_KEY_MGMT_PSK:
8252 : : default:
8253 : 1 : mgmt = WLAN_AKM_SUITE_PSK;
8254 : 1 : break;
8255 : : }
8256 [ + - ]: 1 : NLA_PUT_U32(msg, NL80211_ATTR_AKM_SUITES, mgmt);
8257 : : }
8258 : :
8259 [ + - ]: 437 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
8260 : :
8261 [ + + ]: 437 : if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
8262 [ + - ]: 15 : NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
8263 : :
8264 [ - + ]: 437 : if (params->disable_ht)
8265 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
8266 : :
8267 [ - + ][ # # ]: 437 : if (params->htcaps && params->htcaps_mask) {
8268 : 0 : int sz = sizeof(struct ieee80211_ht_capabilities);
8269 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
8270 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
8271 : : params->htcaps_mask);
8272 : : }
8273 : :
8274 : : #ifdef CONFIG_VHT_OVERRIDES
8275 : : if (params->disable_vht) {
8276 : : wpa_printf(MSG_DEBUG, " * VHT disabled");
8277 : : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_VHT);
8278 : : }
8279 : :
8280 : : if (params->vhtcaps && params->vhtcaps_mask) {
8281 : : int sz = sizeof(struct ieee80211_vht_capabilities);
8282 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY, sz, params->vhtcaps);
8283 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY_MASK, sz,
8284 : : params->vhtcaps_mask);
8285 : : }
8286 : : #endif /* CONFIG_VHT_OVERRIDES */
8287 : :
8288 [ + + ]: 437 : if (params->p2p)
8289 : 117 : wpa_printf(MSG_DEBUG, " * P2P group");
8290 : :
8291 : 437 : return 0;
8292 : : nla_put_failure:
8293 : 437 : return -1;
8294 : : }
8295 : :
8296 : :
8297 : 2 : static int wpa_driver_nl80211_try_connect(
8298 : : struct wpa_driver_nl80211_data *drv,
8299 : : struct wpa_driver_associate_params *params)
8300 : : {
8301 : : struct nl_msg *msg;
8302 : : enum nl80211_auth_type type;
8303 : : int ret;
8304 : : int algs;
8305 : :
8306 : 2 : msg = nlmsg_alloc();
8307 [ - + ]: 2 : if (!msg)
8308 : 0 : return -1;
8309 : :
8310 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Connect (ifindex=%d)", drv->ifindex);
8311 : 2 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CONNECT);
8312 : :
8313 : 2 : ret = nl80211_connect_common(drv, params, msg);
8314 [ - + ]: 2 : if (ret)
8315 : 0 : goto nla_put_failure;
8316 : :
8317 : 2 : algs = 0;
8318 [ + - ]: 2 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
8319 : 2 : algs++;
8320 [ - + ]: 2 : if (params->auth_alg & WPA_AUTH_ALG_SHARED)
8321 : 0 : algs++;
8322 [ - + ]: 2 : if (params->auth_alg & WPA_AUTH_ALG_LEAP)
8323 : 0 : algs++;
8324 [ - + ]: 2 : if (algs > 1) {
8325 : 0 : wpa_printf(MSG_DEBUG, " * Leave out Auth Type for automatic "
8326 : : "selection");
8327 : 0 : goto skip_auth_type;
8328 : : }
8329 : :
8330 [ + - ]: 2 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
8331 : 2 : type = NL80211_AUTHTYPE_OPEN_SYSTEM;
8332 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
8333 : 0 : type = NL80211_AUTHTYPE_SHARED_KEY;
8334 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
8335 : 0 : type = NL80211_AUTHTYPE_NETWORK_EAP;
8336 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_FT)
8337 : 0 : type = NL80211_AUTHTYPE_FT;
8338 : : else
8339 : 0 : goto nla_put_failure;
8340 : :
8341 : 2 : wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
8342 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
8343 : :
8344 : : skip_auth_type:
8345 : 2 : ret = nl80211_set_conn_keys(params, msg);
8346 [ - + ]: 2 : if (ret)
8347 : 0 : goto nla_put_failure;
8348 : :
8349 : 2 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8350 : 2 : msg = NULL;
8351 [ - + ]: 2 : if (ret) {
8352 : 0 : wpa_printf(MSG_DEBUG, "nl80211: MLME connect failed: ret=%d "
8353 : : "(%s)", ret, strerror(-ret));
8354 : 0 : goto nla_put_failure;
8355 : : }
8356 : 2 : ret = 0;
8357 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Connect request send successfully");
8358 : :
8359 : : nla_put_failure:
8360 : 2 : nlmsg_free(msg);
8361 : 2 : return ret;
8362 : :
8363 : : }
8364 : :
8365 : :
8366 : 2 : static int wpa_driver_nl80211_connect(
8367 : : struct wpa_driver_nl80211_data *drv,
8368 : : struct wpa_driver_associate_params *params)
8369 : : {
8370 : 2 : int ret = wpa_driver_nl80211_try_connect(drv, params);
8371 [ - + ]: 2 : if (ret == -EALREADY) {
8372 : : /*
8373 : : * cfg80211 does not currently accept new connections if
8374 : : * we are already connected. As a workaround, force
8375 : : * disconnection and try again.
8376 : : */
8377 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Explicitly "
8378 : : "disconnecting before reassociation "
8379 : : "attempt");
8380 [ # # ]: 0 : if (wpa_driver_nl80211_disconnect(
8381 : : drv, WLAN_REASON_PREV_AUTH_NOT_VALID))
8382 : 0 : return -1;
8383 : 0 : ret = wpa_driver_nl80211_try_connect(drv, params);
8384 : : }
8385 : 2 : return ret;
8386 : : }
8387 : :
8388 : :
8389 : 502 : static int wpa_driver_nl80211_associate(
8390 : : void *priv, struct wpa_driver_associate_params *params)
8391 : : {
8392 : 502 : struct i802_bss *bss = priv;
8393 : 502 : struct wpa_driver_nl80211_data *drv = bss->drv;
8394 : : int ret;
8395 : : struct nl_msg *msg;
8396 : :
8397 [ + + ]: 502 : if (params->mode == IEEE80211_MODE_AP)
8398 : 59 : return wpa_driver_nl80211_ap(drv, params);
8399 : :
8400 [ + + ]: 443 : if (params->mode == IEEE80211_MODE_IBSS)
8401 : 6 : return wpa_driver_nl80211_ibss(drv, params);
8402 : :
8403 [ + + ]: 437 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
8404 [ - + ]: 2 : enum nl80211_iftype nlmode = params->p2p ?
8405 : : NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
8406 : :
8407 [ - + ]: 2 : if (wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
8408 : 0 : return -1;
8409 : 2 : return wpa_driver_nl80211_connect(drv, params);
8410 : : }
8411 : :
8412 : 435 : nl80211_mark_disconnected(drv);
8413 : :
8414 : 435 : msg = nlmsg_alloc();
8415 [ - + ]: 435 : if (!msg)
8416 : 0 : return -1;
8417 : :
8418 : 435 : wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
8419 : : drv->ifindex);
8420 : 435 : nl80211_cmd(drv, msg, 0, NL80211_CMD_ASSOCIATE);
8421 : :
8422 : 435 : ret = nl80211_connect_common(drv, params, msg);
8423 [ - + ]: 435 : if (ret)
8424 : 0 : goto nla_put_failure;
8425 : :
8426 [ + + ]: 435 : if (params->prev_bssid) {
8427 : 26 : wpa_printf(MSG_DEBUG, " * prev_bssid=" MACSTR,
8428 : 156 : MAC2STR(params->prev_bssid));
8429 [ + - ]: 26 : NLA_PUT(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
8430 : : params->prev_bssid);
8431 : : }
8432 : :
8433 : 435 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8434 : 435 : msg = NULL;
8435 [ - + ]: 435 : if (ret) {
8436 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
8437 : : "nl80211: MLME command failed (assoc): ret=%d (%s)",
8438 : : ret, strerror(-ret));
8439 : 0 : nl80211_dump_scan(drv);
8440 : 0 : goto nla_put_failure;
8441 : : }
8442 : 435 : ret = 0;
8443 : 435 : wpa_printf(MSG_DEBUG, "nl80211: Association request send "
8444 : : "successfully");
8445 : :
8446 : : nla_put_failure:
8447 : 435 : nlmsg_free(msg);
8448 : 502 : return ret;
8449 : : }
8450 : :
8451 : :
8452 : 287 : static int nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
8453 : : int ifindex, enum nl80211_iftype mode)
8454 : : {
8455 : : struct nl_msg *msg;
8456 : 287 : int ret = -ENOBUFS;
8457 : :
8458 : 287 : wpa_printf(MSG_DEBUG, "nl80211: Set mode ifindex %d iftype %d (%s)",
8459 : : ifindex, mode, nl80211_iftype_str(mode));
8460 : :
8461 : 287 : msg = nlmsg_alloc();
8462 [ - + ]: 287 : if (!msg)
8463 : 0 : return -ENOMEM;
8464 : :
8465 : 287 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_INTERFACE);
8466 [ - + ]: 287 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
8467 : 0 : goto nla_put_failure;
8468 [ + - ]: 287 : NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, mode);
8469 : :
8470 : 287 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8471 : 287 : msg = NULL;
8472 [ + - ]: 287 : if (!ret)
8473 : 287 : return 0;
8474 : : nla_put_failure:
8475 : 0 : nlmsg_free(msg);
8476 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface %d to mode %d:"
8477 : : " %d (%s)", ifindex, mode, ret, strerror(-ret));
8478 : 287 : return ret;
8479 : : }
8480 : :
8481 : :
8482 : 287 : static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
8483 : : enum nl80211_iftype nlmode)
8484 : : {
8485 : 287 : struct wpa_driver_nl80211_data *drv = bss->drv;
8486 : 287 : int ret = -1;
8487 : : int i;
8488 : 287 : int was_ap = is_ap_interface(drv->nlmode);
8489 : : int res;
8490 : :
8491 : 287 : res = nl80211_set_mode(drv, drv->ifindex, nlmode);
8492 [ - + ][ # # ]: 287 : if (res && nlmode == nl80211_get_ifmode(bss))
8493 : 0 : res = 0;
8494 : :
8495 [ + - ]: 287 : if (res == 0) {
8496 : 287 : drv->nlmode = nlmode;
8497 : 287 : ret = 0;
8498 : 287 : goto done;
8499 : : }
8500 : :
8501 [ # # ]: 0 : if (res == -ENODEV)
8502 : 0 : return -1;
8503 : :
8504 [ # # ]: 0 : if (nlmode == drv->nlmode) {
8505 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface already in "
8506 : : "requested mode - ignore error");
8507 : 0 : ret = 0;
8508 : 0 : goto done; /* Already in the requested mode */
8509 : : }
8510 : :
8511 : : /* mac80211 doesn't allow mode changes while the device is up, so
8512 : : * take the device down, try to set the mode again, and bring the
8513 : : * device back up.
8514 : : */
8515 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Try mode change after setting "
8516 : : "interface down");
8517 [ # # ]: 0 : for (i = 0; i < 10; i++) {
8518 : 0 : res = i802_set_iface_flags(bss, 0);
8519 [ # # ][ # # ]: 0 : if (res == -EACCES || res == -ENODEV)
8520 : : break;
8521 [ # # ]: 0 : if (res == 0) {
8522 : : /* Try to set the mode again while the interface is
8523 : : * down */
8524 : 0 : ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
8525 [ # # ]: 0 : if (ret == -EACCES)
8526 : 0 : break;
8527 : 0 : res = i802_set_iface_flags(bss, 1);
8528 [ # # ][ # # ]: 0 : if (res && !ret)
8529 : 0 : ret = -1;
8530 [ # # ]: 0 : else if (ret != -EBUSY)
8531 : 0 : break;
8532 : : } else
8533 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set "
8534 : : "interface down");
8535 : 0 : os_sleep(0, 100000);
8536 : : }
8537 : :
8538 [ # # ]: 0 : if (!ret) {
8539 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
8540 : : "interface is down");
8541 : 0 : drv->nlmode = nlmode;
8542 : 0 : drv->ignore_if_down_event = 1;
8543 : : }
8544 : :
8545 : : done:
8546 [ - + ]: 287 : if (ret) {
8547 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
8548 : 0 : "from %d failed", nlmode, drv->nlmode);
8549 : 0 : return ret;
8550 : : }
8551 : :
8552 [ + + ]: 287 : if (is_p2p_net_interface(nlmode))
8553 : 130 : nl80211_disable_11b_rates(drv, drv->ifindex, 1);
8554 [ + + ]: 157 : else if (drv->disabled_11b_rates)
8555 : 98 : nl80211_disable_11b_rates(drv, drv->ifindex, 0);
8556 : :
8557 [ + + ]: 287 : if (is_ap_interface(nlmode)) {
8558 : 69 : nl80211_mgmt_unsubscribe(bss, "start AP");
8559 : : /* Setup additional AP mode functionality if needed */
8560 [ - + ]: 69 : if (nl80211_setup_ap(bss))
8561 : 0 : return -1;
8562 [ + + ]: 218 : } else if (was_ap) {
8563 : : /* Remove additional AP mode functionality */
8564 : 59 : nl80211_teardown_ap(bss);
8565 : : } else {
8566 : 159 : nl80211_mgmt_unsubscribe(bss, "mode change");
8567 : : }
8568 : :
8569 [ + + ]: 474 : if (!bss->in_deinit && !is_ap_interface(nlmode) &&
[ + + - + ]
8570 : 187 : nl80211_mgmt_subscribe_non_ap(bss) < 0)
8571 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to register Action "
8572 : : "frame processing - ignore for now");
8573 : :
8574 : 287 : return 0;
8575 : : }
8576 : :
8577 : :
8578 : 119 : static int wpa_driver_nl80211_get_capa(void *priv,
8579 : : struct wpa_driver_capa *capa)
8580 : : {
8581 : 119 : struct i802_bss *bss = priv;
8582 : 119 : struct wpa_driver_nl80211_data *drv = bss->drv;
8583 [ - + ]: 119 : if (!drv->has_capability)
8584 : 0 : return -1;
8585 : 119 : os_memcpy(capa, &drv->capa, sizeof(*capa));
8586 [ + - ][ + - ]: 119 : if (drv->extended_capa && drv->extended_capa_mask) {
8587 : 119 : capa->extended_capa = drv->extended_capa;
8588 : 119 : capa->extended_capa_mask = drv->extended_capa_mask;
8589 : 119 : capa->extended_capa_len = drv->extended_capa_len;
8590 : : }
8591 : :
8592 [ + - ][ + - ]: 119 : if ((capa->flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
8593 : 119 : !drv->allow_p2p_device) {
8594 : 119 : wpa_printf(MSG_DEBUG, "nl80211: Do not indicate P2P_DEVICE support (p2p_device=1 driver param not specified)");
8595 : 119 : capa->flags &= ~WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
8596 : : }
8597 : :
8598 : 119 : return 0;
8599 : : }
8600 : :
8601 : :
8602 : 2777 : static int wpa_driver_nl80211_set_operstate(void *priv, int state)
8603 : : {
8604 : 2777 : struct i802_bss *bss = priv;
8605 : 2777 : struct wpa_driver_nl80211_data *drv = bss->drv;
8606 : :
8607 [ + + ]: 2777 : wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
8608 : : __func__, drv->operstate, state, state ? "UP" : "DORMANT");
8609 : 2777 : drv->operstate = state;
8610 [ + + ]: 2777 : return netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, -1,
8611 : : state ? IF_OPER_UP : IF_OPER_DORMANT);
8612 : : }
8613 : :
8614 : :
8615 : 6962 : static int wpa_driver_nl80211_set_supp_port(void *priv, int authorized)
8616 : : {
8617 : 6962 : struct i802_bss *bss = priv;
8618 : 6962 : struct wpa_driver_nl80211_data *drv = bss->drv;
8619 : : struct nl_msg *msg;
8620 : : struct nl80211_sta_flag_update upd;
8621 : 6962 : int ret = -ENOBUFS;
8622 : :
8623 [ + + ][ + - ]: 6962 : if (!drv->associated && is_zero_ether_addr(drv->bssid) && !authorized) {
[ + - ]
8624 : 5507 : wpa_printf(MSG_DEBUG, "nl80211: Skip set_supp_port(unauthorized) while not associated");
8625 : 5507 : return 0;
8626 : : }
8627 : :
8628 [ + + ]: 1455 : wpa_printf(MSG_DEBUG, "nl80211: Set supplicant port %sauthorized for "
8629 : 8730 : MACSTR, authorized ? "" : "un", MAC2STR(drv->bssid));
8630 : :
8631 : 1455 : msg = nlmsg_alloc();
8632 [ - + ]: 1455 : if (!msg)
8633 : 0 : return -ENOMEM;
8634 : :
8635 : 1455 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
8636 : :
8637 [ + - ]: 1455 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8638 : : if_nametoindex(bss->ifname));
8639 [ + - ]: 1455 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
8640 : :
8641 : 1455 : os_memset(&upd, 0, sizeof(upd));
8642 : 1455 : upd.mask = BIT(NL80211_STA_FLAG_AUTHORIZED);
8643 [ + + ]: 1455 : if (authorized)
8644 : 364 : upd.set = BIT(NL80211_STA_FLAG_AUTHORIZED);
8645 [ + - ]: 1455 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
8646 : :
8647 : 1455 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8648 : 1455 : msg = NULL;
8649 [ + + ]: 1455 : if (!ret)
8650 : 1434 : return 0;
8651 : : nla_put_failure:
8652 : 21 : nlmsg_free(msg);
8653 : 21 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set STA flag: %d (%s)",
8654 : : ret, strerror(-ret));
8655 : 6962 : return ret;
8656 : : }
8657 : :
8658 : :
8659 : : /* Set kernel driver on given frequency (MHz) */
8660 : 59 : static int i802_set_freq(void *priv, struct hostapd_freq_params *freq)
8661 : : {
8662 : 59 : struct i802_bss *bss = priv;
8663 : 59 : return wpa_driver_nl80211_set_freq(bss, freq);
8664 : : }
8665 : :
8666 : :
8667 : 64 : static inline int min_int(int a, int b)
8668 : : {
8669 [ - + ]: 64 : if (a < b)
8670 : 0 : return a;
8671 : 64 : return b;
8672 : : }
8673 : :
8674 : :
8675 : 64 : static int get_key_handler(struct nl_msg *msg, void *arg)
8676 : : {
8677 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
8678 : 64 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
8679 : :
8680 : 64 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
8681 : : genlmsg_attrlen(gnlh, 0), NULL);
8682 : :
8683 : : /*
8684 : : * TODO: validate the key index and mac address!
8685 : : * Otherwise, there's a race condition as soon as
8686 : : * the kernel starts sending key notifications.
8687 : : */
8688 : :
8689 [ + - ]: 64 : if (tb[NL80211_ATTR_KEY_SEQ])
8690 : 64 : memcpy(arg, nla_data(tb[NL80211_ATTR_KEY_SEQ]),
8691 : 64 : min_int(nla_len(tb[NL80211_ATTR_KEY_SEQ]), 6));
8692 : 64 : return NL_SKIP;
8693 : : }
8694 : :
8695 : :
8696 : 64 : static int i802_get_seqnum(const char *iface, void *priv, const u8 *addr,
8697 : : int idx, u8 *seq)
8698 : : {
8699 : 64 : struct i802_bss *bss = priv;
8700 : 64 : struct wpa_driver_nl80211_data *drv = bss->drv;
8701 : : struct nl_msg *msg;
8702 : :
8703 : 64 : msg = nlmsg_alloc();
8704 [ - + ]: 64 : if (!msg)
8705 : 0 : return -ENOMEM;
8706 : :
8707 : 64 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_KEY);
8708 : :
8709 [ - + ]: 64 : if (addr)
8710 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8711 [ + - ]: 64 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, idx);
8712 [ + - ]: 64 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(iface));
8713 : :
8714 : 64 : memset(seq, 0, 6);
8715 : :
8716 : 64 : return send_and_recv_msgs(drv, msg, get_key_handler, seq);
8717 : : nla_put_failure:
8718 : 0 : nlmsg_free(msg);
8719 : 64 : return -ENOBUFS;
8720 : : }
8721 : :
8722 : :
8723 : 0 : static int i802_set_rts(void *priv, int rts)
8724 : : {
8725 : 0 : struct i802_bss *bss = priv;
8726 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8727 : : struct nl_msg *msg;
8728 : 0 : int ret = -ENOBUFS;
8729 : : u32 val;
8730 : :
8731 : 0 : msg = nlmsg_alloc();
8732 [ # # ]: 0 : if (!msg)
8733 : 0 : return -ENOMEM;
8734 : :
8735 [ # # ]: 0 : if (rts >= 2347)
8736 : 0 : val = (u32) -1;
8737 : : else
8738 : 0 : val = rts;
8739 : :
8740 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8741 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8742 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val);
8743 : :
8744 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8745 : 0 : msg = NULL;
8746 [ # # ]: 0 : if (!ret)
8747 : 0 : return 0;
8748 : : nla_put_failure:
8749 : 0 : nlmsg_free(msg);
8750 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set RTS threshold %d: "
8751 : : "%d (%s)", rts, ret, strerror(-ret));
8752 : 0 : return ret;
8753 : : }
8754 : :
8755 : :
8756 : 0 : static int i802_set_frag(void *priv, int frag)
8757 : : {
8758 : 0 : struct i802_bss *bss = priv;
8759 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8760 : : struct nl_msg *msg;
8761 : 0 : int ret = -ENOBUFS;
8762 : : u32 val;
8763 : :
8764 : 0 : msg = nlmsg_alloc();
8765 [ # # ]: 0 : if (!msg)
8766 : 0 : return -ENOMEM;
8767 : :
8768 [ # # ]: 0 : if (frag >= 2346)
8769 : 0 : val = (u32) -1;
8770 : : else
8771 : 0 : val = frag;
8772 : :
8773 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8774 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8775 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, val);
8776 : :
8777 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8778 : 0 : msg = NULL;
8779 [ # # ]: 0 : if (!ret)
8780 : 0 : return 0;
8781 : : nla_put_failure:
8782 : 0 : nlmsg_free(msg);
8783 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set fragmentation threshold "
8784 : : "%d: %d (%s)", frag, ret, strerror(-ret));
8785 : 0 : return ret;
8786 : : }
8787 : :
8788 : :
8789 : 118 : static int i802_flush(void *priv)
8790 : : {
8791 : 118 : struct i802_bss *bss = priv;
8792 : 118 : struct wpa_driver_nl80211_data *drv = bss->drv;
8793 : : struct nl_msg *msg;
8794 : : int res;
8795 : :
8796 : 118 : msg = nlmsg_alloc();
8797 [ - + ]: 118 : if (!msg)
8798 : 0 : return -1;
8799 : :
8800 : 118 : wpa_printf(MSG_DEBUG, "nl80211: flush -> DEL_STATION %s (all)",
8801 : 118 : bss->ifname);
8802 : 118 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
8803 : :
8804 : : /*
8805 : : * XXX: FIX! this needs to flush all VLANs too
8806 : : */
8807 [ + - ]: 118 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8808 : : if_nametoindex(bss->ifname));
8809 : :
8810 : 118 : res = send_and_recv_msgs(drv, msg, NULL, NULL);
8811 [ - + ]: 118 : if (res) {
8812 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Station flush failed: ret=%d "
8813 : : "(%s)", res, strerror(-res));
8814 : : }
8815 : 118 : return res;
8816 : : nla_put_failure:
8817 : 0 : nlmsg_free(msg);
8818 : 118 : return -ENOBUFS;
8819 : : }
8820 : :
8821 : :
8822 : 0 : static int get_sta_handler(struct nl_msg *msg, void *arg)
8823 : : {
8824 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
8825 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
8826 : 0 : struct hostap_sta_driver_data *data = arg;
8827 : : struct nlattr *stats[NL80211_STA_INFO_MAX + 1];
8828 : : static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
8829 : : [NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
8830 : : [NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
8831 : : [NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
8832 : : [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
8833 : : [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
8834 : : [NL80211_STA_INFO_TX_FAILED] = { .type = NLA_U32 },
8835 : : };
8836 : :
8837 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
8838 : : genlmsg_attrlen(gnlh, 0), NULL);
8839 : :
8840 : : /*
8841 : : * TODO: validate the interface and mac address!
8842 : : * Otherwise, there's a race condition as soon as
8843 : : * the kernel starts sending station notifications.
8844 : : */
8845 : :
8846 [ # # ]: 0 : if (!tb[NL80211_ATTR_STA_INFO]) {
8847 : 0 : wpa_printf(MSG_DEBUG, "sta stats missing!");
8848 : 0 : return NL_SKIP;
8849 : : }
8850 [ # # ]: 0 : if (nla_parse_nested(stats, NL80211_STA_INFO_MAX,
8851 : : tb[NL80211_ATTR_STA_INFO],
8852 : : stats_policy)) {
8853 : 0 : wpa_printf(MSG_DEBUG, "failed to parse nested attributes!");
8854 : 0 : return NL_SKIP;
8855 : : }
8856 : :
8857 [ # # ]: 0 : if (stats[NL80211_STA_INFO_INACTIVE_TIME])
8858 : 0 : data->inactive_msec =
8859 : 0 : nla_get_u32(stats[NL80211_STA_INFO_INACTIVE_TIME]);
8860 [ # # ]: 0 : if (stats[NL80211_STA_INFO_RX_BYTES])
8861 : 0 : data->rx_bytes = nla_get_u32(stats[NL80211_STA_INFO_RX_BYTES]);
8862 [ # # ]: 0 : if (stats[NL80211_STA_INFO_TX_BYTES])
8863 : 0 : data->tx_bytes = nla_get_u32(stats[NL80211_STA_INFO_TX_BYTES]);
8864 [ # # ]: 0 : if (stats[NL80211_STA_INFO_RX_PACKETS])
8865 : 0 : data->rx_packets =
8866 : 0 : nla_get_u32(stats[NL80211_STA_INFO_RX_PACKETS]);
8867 [ # # ]: 0 : if (stats[NL80211_STA_INFO_TX_PACKETS])
8868 : 0 : data->tx_packets =
8869 : 0 : nla_get_u32(stats[NL80211_STA_INFO_TX_PACKETS]);
8870 [ # # ]: 0 : if (stats[NL80211_STA_INFO_TX_FAILED])
8871 : 0 : data->tx_retry_failed =
8872 : 0 : nla_get_u32(stats[NL80211_STA_INFO_TX_FAILED]);
8873 : :
8874 : 0 : return NL_SKIP;
8875 : : }
8876 : :
8877 : 0 : static int i802_read_sta_data(struct i802_bss *bss,
8878 : : struct hostap_sta_driver_data *data,
8879 : : const u8 *addr)
8880 : : {
8881 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8882 : : struct nl_msg *msg;
8883 : :
8884 : 0 : os_memset(data, 0, sizeof(*data));
8885 : 0 : msg = nlmsg_alloc();
8886 [ # # ]: 0 : if (!msg)
8887 : 0 : return -ENOMEM;
8888 : :
8889 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
8890 : :
8891 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8892 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
8893 : :
8894 : 0 : return send_and_recv_msgs(drv, msg, get_sta_handler, data);
8895 : : nla_put_failure:
8896 : 0 : nlmsg_free(msg);
8897 : 0 : return -ENOBUFS;
8898 : : }
8899 : :
8900 : :
8901 : 236 : static int i802_set_tx_queue_params(void *priv, int queue, int aifs,
8902 : : int cw_min, int cw_max, int burst_time)
8903 : : {
8904 : 236 : struct i802_bss *bss = priv;
8905 : 236 : struct wpa_driver_nl80211_data *drv = bss->drv;
8906 : : struct nl_msg *msg;
8907 : : struct nlattr *txq, *params;
8908 : :
8909 : 236 : msg = nlmsg_alloc();
8910 [ - + ]: 236 : if (!msg)
8911 : 0 : return -1;
8912 : :
8913 : 236 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8914 : :
8915 [ + - ]: 236 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
8916 : :
8917 : 236 : txq = nla_nest_start(msg, NL80211_ATTR_WIPHY_TXQ_PARAMS);
8918 [ - + ]: 236 : if (!txq)
8919 : 0 : goto nla_put_failure;
8920 : :
8921 : : /* We are only sending parameters for a single TXQ at a time */
8922 : 236 : params = nla_nest_start(msg, 1);
8923 [ - + ]: 236 : if (!params)
8924 : 0 : goto nla_put_failure;
8925 : :
8926 [ + + + + : 236 : switch (queue) {
- ]
8927 : : case 0:
8928 [ + - ]: 59 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VO);
8929 : 59 : break;
8930 : : case 1:
8931 [ + - ]: 59 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VI);
8932 : 59 : break;
8933 : : case 2:
8934 [ + - ]: 59 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BE);
8935 : 59 : break;
8936 : : case 3:
8937 [ + - ]: 59 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BK);
8938 : 59 : break;
8939 : : }
8940 : : /* Burst time is configured in units of 0.1 msec and TXOP parameter in
8941 : : * 32 usec, so need to convert the value here. */
8942 [ + - ]: 236 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_TXOP, (burst_time * 100 + 16) / 32);
8943 [ + - ]: 236 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMIN, cw_min);
8944 [ + - ]: 236 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMAX, cw_max);
8945 [ + - ]: 236 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_AIFS, aifs);
8946 : :
8947 : 236 : nla_nest_end(msg, params);
8948 : :
8949 : 236 : nla_nest_end(msg, txq);
8950 : :
8951 [ + - ]: 236 : if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
8952 : 236 : return 0;
8953 : 0 : msg = NULL;
8954 : : nla_put_failure:
8955 : 0 : nlmsg_free(msg);
8956 : 236 : return -1;
8957 : : }
8958 : :
8959 : :
8960 : 0 : static int i802_set_sta_vlan(struct i802_bss *bss, const u8 *addr,
8961 : : const char *ifname, int vlan_id)
8962 : : {
8963 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8964 : : struct nl_msg *msg;
8965 : 0 : int ret = -ENOBUFS;
8966 : :
8967 : 0 : msg = nlmsg_alloc();
8968 [ # # ]: 0 : if (!msg)
8969 : 0 : return -ENOMEM;
8970 : :
8971 : 0 : wpa_printf(MSG_DEBUG, "nl80211: %s[%d]: set_sta_vlan(" MACSTR
8972 : : ", ifname=%s[%d], vlan_id=%d)",
8973 : 0 : bss->ifname, if_nametoindex(bss->ifname),
8974 : 0 : MAC2STR(addr), ifname, if_nametoindex(ifname), vlan_id);
8975 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
8976 : :
8977 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8978 : : if_nametoindex(bss->ifname));
8979 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8980 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN,
8981 : : if_nametoindex(ifname));
8982 : :
8983 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8984 : 0 : msg = NULL;
8985 [ # # ]: 0 : if (ret < 0) {
8986 : 0 : wpa_printf(MSG_ERROR, "nl80211: NL80211_ATTR_STA_VLAN (addr="
8987 : : MACSTR " ifname=%s vlan_id=%d) failed: %d (%s)",
8988 : 0 : MAC2STR(addr), ifname, vlan_id, ret,
8989 : : strerror(-ret));
8990 : : }
8991 : : nla_put_failure:
8992 : 0 : nlmsg_free(msg);
8993 : 0 : return ret;
8994 : : }
8995 : :
8996 : :
8997 : 0 : static int i802_get_inact_sec(void *priv, const u8 *addr)
8998 : : {
8999 : : struct hostap_sta_driver_data data;
9000 : : int ret;
9001 : :
9002 : 0 : data.inactive_msec = (unsigned long) -1;
9003 : 0 : ret = i802_read_sta_data(priv, &data, addr);
9004 [ # # ][ # # ]: 0 : if (ret || data.inactive_msec == (unsigned long) -1)
9005 : 0 : return -1;
9006 : 0 : return data.inactive_msec / 1000;
9007 : : }
9008 : :
9009 : :
9010 : 0 : static int i802_sta_clear_stats(void *priv, const u8 *addr)
9011 : : {
9012 : : #if 0
9013 : : /* TODO */
9014 : : #endif
9015 : 0 : return 0;
9016 : : }
9017 : :
9018 : :
9019 : 181 : static int i802_sta_deauth(void *priv, const u8 *own_addr, const u8 *addr,
9020 : : int reason)
9021 : : {
9022 : 181 : struct i802_bss *bss = priv;
9023 : 181 : struct wpa_driver_nl80211_data *drv = bss->drv;
9024 : : struct ieee80211_mgmt mgmt;
9025 : :
9026 [ - + ]: 181 : if (drv->device_ap_sme)
9027 : 0 : return wpa_driver_nl80211_sta_remove(bss, addr);
9028 : :
9029 : 181 : memset(&mgmt, 0, sizeof(mgmt));
9030 : 181 : mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
9031 : : WLAN_FC_STYPE_DEAUTH);
9032 : 181 : memcpy(mgmt.da, addr, ETH_ALEN);
9033 : 181 : memcpy(mgmt.sa, own_addr, ETH_ALEN);
9034 : 181 : memcpy(mgmt.bssid, own_addr, ETH_ALEN);
9035 : 181 : mgmt.u.deauth.reason_code = host_to_le16(reason);
9036 : 181 : return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
9037 : : IEEE80211_HDRLEN +
9038 : : sizeof(mgmt.u.deauth), 0, 0, 0, 0,
9039 : : 0);
9040 : : }
9041 : :
9042 : :
9043 : 0 : static int i802_sta_disassoc(void *priv, const u8 *own_addr, const u8 *addr,
9044 : : int reason)
9045 : : {
9046 : 0 : struct i802_bss *bss = priv;
9047 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9048 : : struct ieee80211_mgmt mgmt;
9049 : :
9050 [ # # ]: 0 : if (drv->device_ap_sme)
9051 : 0 : return wpa_driver_nl80211_sta_remove(bss, addr);
9052 : :
9053 : 0 : memset(&mgmt, 0, sizeof(mgmt));
9054 : 0 : mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
9055 : : WLAN_FC_STYPE_DISASSOC);
9056 : 0 : memcpy(mgmt.da, addr, ETH_ALEN);
9057 : 0 : memcpy(mgmt.sa, own_addr, ETH_ALEN);
9058 : 0 : memcpy(mgmt.bssid, own_addr, ETH_ALEN);
9059 : 0 : mgmt.u.disassoc.reason_code = host_to_le16(reason);
9060 : 0 : return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
9061 : : IEEE80211_HDRLEN +
9062 : : sizeof(mgmt.u.disassoc), 0, 0, 0, 0,
9063 : : 0);
9064 : : }
9065 : :
9066 : :
9067 : 23 : static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9068 : : {
9069 : : int i;
9070 : : int *old;
9071 : :
9072 : 23 : wpa_printf(MSG_DEBUG, "nl80211: Add own interface ifindex %d",
9073 : : ifidx);
9074 [ + - ]: 23 : for (i = 0; i < drv->num_if_indices; i++) {
9075 [ + - ]: 23 : if (drv->if_indices[i] == 0) {
9076 : 23 : drv->if_indices[i] = ifidx;
9077 : 23 : return;
9078 : : }
9079 : : }
9080 : :
9081 [ # # ]: 0 : if (drv->if_indices != drv->default_if_indices)
9082 : 0 : old = drv->if_indices;
9083 : : else
9084 : 0 : old = NULL;
9085 : :
9086 : 0 : drv->if_indices = os_realloc_array(old, drv->num_if_indices + 1,
9087 : : sizeof(int));
9088 [ # # ]: 0 : if (!drv->if_indices) {
9089 [ # # ]: 0 : if (!old)
9090 : 0 : drv->if_indices = drv->default_if_indices;
9091 : : else
9092 : 0 : drv->if_indices = old;
9093 : 0 : wpa_printf(MSG_ERROR, "Failed to reallocate memory for "
9094 : : "interfaces");
9095 : 0 : wpa_printf(MSG_ERROR, "Ignoring EAPOL on interface %d", ifidx);
9096 : 0 : return;
9097 [ # # ]: 0 : } else if (!old)
9098 : 0 : os_memcpy(drv->if_indices, drv->default_if_indices,
9099 : : sizeof(drv->default_if_indices));
9100 : 0 : drv->if_indices[drv->num_if_indices] = ifidx;
9101 : 23 : drv->num_if_indices++;
9102 : : }
9103 : :
9104 : :
9105 : 23 : static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9106 : : {
9107 : : int i;
9108 : :
9109 [ + - ]: 23 : for (i = 0; i < drv->num_if_indices; i++) {
9110 [ + - ]: 23 : if (drv->if_indices[i] == ifidx) {
9111 : 23 : drv->if_indices[i] = 0;
9112 : 23 : break;
9113 : : }
9114 : : }
9115 : 23 : }
9116 : :
9117 : :
9118 : 5922 : static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9119 : : {
9120 : : int i;
9121 : :
9122 [ + + ]: 100370 : for (i = 0; i < drv->num_if_indices; i++)
9123 [ + + ]: 94467 : if (drv->if_indices[i] == ifidx)
9124 : 19 : return 1;
9125 : :
9126 : 5922 : return 0;
9127 : : }
9128 : :
9129 : :
9130 : 0 : static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val,
9131 : : const char *bridge_ifname, char *ifname_wds)
9132 : : {
9133 : 0 : struct i802_bss *bss = priv;
9134 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9135 : : char name[IFNAMSIZ + 1];
9136 : :
9137 : 0 : os_snprintf(name, sizeof(name), "%s.sta%d", bss->ifname, aid);
9138 [ # # ]: 0 : if (ifname_wds)
9139 : 0 : os_strlcpy(ifname_wds, name, IFNAMSIZ + 1);
9140 : :
9141 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
9142 : 0 : " aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
9143 [ # # ]: 0 : if (val) {
9144 [ # # ]: 0 : if (!if_nametoindex(name)) {
9145 [ # # ]: 0 : if (nl80211_create_iface(drv, name,
9146 : : NL80211_IFTYPE_AP_VLAN,
9147 : 0 : bss->addr, 1, NULL, NULL, 0) <
9148 : : 0)
9149 : 0 : return -1;
9150 [ # # # # ]: 0 : if (bridge_ifname &&
9151 : 0 : linux_br_add_if(drv->global->ioctl_sock,
9152 : : bridge_ifname, name) < 0)
9153 : 0 : return -1;
9154 : : }
9155 [ # # ]: 0 : if (linux_set_iface_flags(drv->global->ioctl_sock, name, 1)) {
9156 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to set WDS STA "
9157 : : "interface %s up", name);
9158 : : }
9159 : 0 : return i802_set_sta_vlan(priv, addr, name, 0);
9160 : : } else {
9161 [ # # ]: 0 : if (bridge_ifname)
9162 : 0 : linux_br_del_if(drv->global->ioctl_sock, bridge_ifname,
9163 : : name);
9164 : :
9165 : 0 : i802_set_sta_vlan(priv, addr, bss->ifname, 0);
9166 : 0 : return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
9167 : : name);
9168 : : }
9169 : : }
9170 : :
9171 : :
9172 : 0 : static void handle_eapol(int sock, void *eloop_ctx, void *sock_ctx)
9173 : : {
9174 : 0 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
9175 : : struct sockaddr_ll lladdr;
9176 : : unsigned char buf[3000];
9177 : : int len;
9178 : 0 : socklen_t fromlen = sizeof(lladdr);
9179 : :
9180 : 0 : len = recvfrom(sock, buf, sizeof(buf), 0,
9181 : : (struct sockaddr *)&lladdr, &fromlen);
9182 [ # # ]: 0 : if (len < 0) {
9183 : 0 : wpa_printf(MSG_ERROR, "nl80211: EAPOL recv failed: %s",
9184 : 0 : strerror(errno));
9185 : 0 : return;
9186 : : }
9187 : :
9188 [ # # ]: 0 : if (have_ifidx(drv, lladdr.sll_ifindex))
9189 : 0 : drv_event_eapol_rx(drv->ctx, lladdr.sll_addr, buf, len);
9190 : : }
9191 : :
9192 : :
9193 : 0 : static int i802_check_bridge(struct wpa_driver_nl80211_data *drv,
9194 : : struct i802_bss *bss,
9195 : : const char *brname, const char *ifname)
9196 : : {
9197 : : int ifindex;
9198 : : char in_br[IFNAMSIZ];
9199 : :
9200 : 0 : os_strlcpy(bss->brname, brname, IFNAMSIZ);
9201 : 0 : ifindex = if_nametoindex(brname);
9202 [ # # ]: 0 : if (ifindex == 0) {
9203 : : /*
9204 : : * Bridge was configured, but the bridge device does
9205 : : * not exist. Try to add it now.
9206 : : */
9207 [ # # ]: 0 : if (linux_br_add(drv->global->ioctl_sock, brname) < 0) {
9208 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add the "
9209 : : "bridge interface %s: %s",
9210 : 0 : brname, strerror(errno));
9211 : 0 : return -1;
9212 : : }
9213 : 0 : bss->added_bridge = 1;
9214 : 0 : add_ifidx(drv, if_nametoindex(brname));
9215 : : }
9216 : :
9217 [ # # ]: 0 : if (linux_br_get(in_br, ifname) == 0) {
9218 [ # # ]: 0 : if (os_strcmp(in_br, brname) == 0)
9219 : 0 : return 0; /* already in the bridge */
9220 : :
9221 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Removing interface %s from "
9222 : : "bridge %s", ifname, in_br);
9223 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, in_br, ifname) <
9224 : : 0) {
9225 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to "
9226 : : "remove interface %s from bridge "
9227 : : "%s: %s",
9228 : 0 : ifname, brname, strerror(errno));
9229 : 0 : return -1;
9230 : : }
9231 : : }
9232 : :
9233 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Adding interface %s into bridge %s",
9234 : : ifname, brname);
9235 [ # # ]: 0 : if (linux_br_add_if(drv->global->ioctl_sock, brname, ifname) < 0) {
9236 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add interface %s "
9237 : : "into bridge %s: %s",
9238 : 0 : ifname, brname, strerror(errno));
9239 : 0 : return -1;
9240 : : }
9241 : 0 : bss->added_if_into_bridge = 1;
9242 : :
9243 : 0 : return 0;
9244 : : }
9245 : :
9246 : :
9247 : 0 : static void *i802_init(struct hostapd_data *hapd,
9248 : : struct wpa_init_params *params)
9249 : : {
9250 : : struct wpa_driver_nl80211_data *drv;
9251 : : struct i802_bss *bss;
9252 : : size_t i;
9253 : : char brname[IFNAMSIZ];
9254 : : int ifindex, br_ifindex;
9255 : 0 : int br_added = 0;
9256 : :
9257 : 0 : bss = wpa_driver_nl80211_drv_init(hapd, params->ifname,
9258 : : params->global_priv, 1,
9259 : : params->bssid);
9260 [ # # ]: 0 : if (bss == NULL)
9261 : 0 : return NULL;
9262 : :
9263 : 0 : drv = bss->drv;
9264 : :
9265 [ # # ]: 0 : if (linux_br_get(brname, params->ifname) == 0) {
9266 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface %s is in bridge %s",
9267 : : params->ifname, brname);
9268 : 0 : br_ifindex = if_nametoindex(brname);
9269 : : } else {
9270 : 0 : brname[0] = '\0';
9271 : 0 : br_ifindex = 0;
9272 : : }
9273 : :
9274 [ # # ]: 0 : for (i = 0; i < params->num_bridge; i++) {
9275 [ # # ]: 0 : if (params->bridge[i]) {
9276 : 0 : ifindex = if_nametoindex(params->bridge[i]);
9277 [ # # ]: 0 : if (ifindex)
9278 : 0 : add_ifidx(drv, ifindex);
9279 [ # # ]: 0 : if (ifindex == br_ifindex)
9280 : 0 : br_added = 1;
9281 : : }
9282 : : }
9283 [ # # ][ # # ]: 0 : if (!br_added && br_ifindex &&
[ # # ]
9284 [ # # ]: 0 : (params->num_bridge == 0 || !params->bridge[0]))
9285 : 0 : add_ifidx(drv, br_ifindex);
9286 : :
9287 : : /* start listening for EAPOL on the default AP interface */
9288 : 0 : add_ifidx(drv, drv->ifindex);
9289 : :
9290 [ # # ]: 0 : if (params->num_bridge && params->bridge[0] &&
[ # # # # ]
9291 : 0 : i802_check_bridge(drv, bss, params->bridge[0], params->ifname) < 0)
9292 : 0 : goto failed;
9293 : :
9294 : 0 : drv->eapol_sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_PAE));
9295 [ # # ]: 0 : if (drv->eapol_sock < 0) {
9296 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket(PF_PACKET, SOCK_DGRAM, ETH_P_PAE) failed: %s",
9297 : 0 : strerror(errno));
9298 : 0 : goto failed;
9299 : : }
9300 : :
9301 [ # # ]: 0 : if (eloop_register_read_sock(drv->eapol_sock, handle_eapol, drv, NULL))
9302 : : {
9303 : 0 : wpa_printf(MSG_INFO, "nl80211: Could not register read socket for eapol");
9304 : 0 : goto failed;
9305 : : }
9306 : :
9307 [ # # ]: 0 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
9308 : : params->own_addr))
9309 : 0 : goto failed;
9310 : :
9311 : 0 : memcpy(bss->addr, params->own_addr, ETH_ALEN);
9312 : :
9313 : 0 : return bss;
9314 : :
9315 : : failed:
9316 : 0 : wpa_driver_nl80211_deinit(bss);
9317 : 0 : return NULL;
9318 : : }
9319 : :
9320 : :
9321 : 0 : static void i802_deinit(void *priv)
9322 : : {
9323 : 0 : struct i802_bss *bss = priv;
9324 : 0 : wpa_driver_nl80211_deinit(bss);
9325 : 0 : }
9326 : :
9327 : :
9328 : 21 : static enum nl80211_iftype wpa_driver_nl80211_if_type(
9329 : : enum wpa_driver_if_type type)
9330 : : {
9331 [ - + - - : 21 : switch (type) {
+ - - ]
9332 : : case WPA_IF_STATION:
9333 : 0 : return NL80211_IFTYPE_STATION;
9334 : : case WPA_IF_P2P_CLIENT:
9335 : : case WPA_IF_P2P_GROUP:
9336 : 11 : return NL80211_IFTYPE_P2P_CLIENT;
9337 : : case WPA_IF_AP_VLAN:
9338 : 0 : return NL80211_IFTYPE_AP_VLAN;
9339 : : case WPA_IF_AP_BSS:
9340 : 0 : return NL80211_IFTYPE_AP;
9341 : : case WPA_IF_P2P_GO:
9342 : 10 : return NL80211_IFTYPE_P2P_GO;
9343 : : case WPA_IF_P2P_DEVICE:
9344 : 0 : return NL80211_IFTYPE_P2P_DEVICE;
9345 : : }
9346 : 21 : return -1;
9347 : : }
9348 : :
9349 : :
9350 : : #ifdef CONFIG_P2P
9351 : :
9352 : 21 : static int nl80211_addr_in_use(struct nl80211_global *global, const u8 *addr)
9353 : : {
9354 : : struct wpa_driver_nl80211_data *drv;
9355 [ + + ]: 42 : dl_list_for_each(drv, &global->interfaces,
9356 : : struct wpa_driver_nl80211_data, list) {
9357 [ - + ]: 21 : if (os_memcmp(addr, drv->first_bss->addr, ETH_ALEN) == 0)
9358 : 0 : return 1;
9359 : : }
9360 : 21 : return 0;
9361 : : }
9362 : :
9363 : :
9364 : 0 : static int nl80211_p2p_interface_addr(struct wpa_driver_nl80211_data *drv,
9365 : : u8 *new_addr)
9366 : : {
9367 : : unsigned int idx;
9368 : :
9369 [ # # ]: 0 : if (!drv->global)
9370 : 0 : return -1;
9371 : :
9372 : 0 : os_memcpy(new_addr, drv->first_bss->addr, ETH_ALEN);
9373 [ # # ]: 0 : for (idx = 0; idx < 64; idx++) {
9374 : 0 : new_addr[0] = drv->first_bss->addr[0] | 0x02;
9375 : 0 : new_addr[0] ^= idx << 2;
9376 [ # # ]: 0 : if (!nl80211_addr_in_use(drv->global, new_addr))
9377 : 0 : break;
9378 : : }
9379 [ # # ]: 0 : if (idx == 64)
9380 : 0 : return -1;
9381 : :
9382 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Assigned new P2P Interface Address "
9383 : 0 : MACSTR, MAC2STR(new_addr));
9384 : :
9385 : 0 : return 0;
9386 : : }
9387 : :
9388 : : #endif /* CONFIG_P2P */
9389 : :
9390 : :
9391 : : struct wdev_info {
9392 : : u64 wdev_id;
9393 : : int wdev_id_set;
9394 : : u8 macaddr[ETH_ALEN];
9395 : : };
9396 : :
9397 : 0 : static int nl80211_wdev_handler(struct nl_msg *msg, void *arg)
9398 : : {
9399 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
9400 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
9401 : 0 : struct wdev_info *wi = arg;
9402 : :
9403 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
9404 : : genlmsg_attrlen(gnlh, 0), NULL);
9405 [ # # ]: 0 : if (tb[NL80211_ATTR_WDEV]) {
9406 : 0 : wi->wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
9407 : 0 : wi->wdev_id_set = 1;
9408 : : }
9409 : :
9410 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC])
9411 : 0 : os_memcpy(wi->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
9412 : : ETH_ALEN);
9413 : :
9414 : 0 : return NL_SKIP;
9415 : : }
9416 : :
9417 : :
9418 : 21 : static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type,
9419 : : const char *ifname, const u8 *addr,
9420 : : void *bss_ctx, void **drv_priv,
9421 : : char *force_ifname, u8 *if_addr,
9422 : : const char *bridge, int use_existing)
9423 : : {
9424 : : enum nl80211_iftype nlmode;
9425 : 21 : struct i802_bss *bss = priv;
9426 : 21 : struct wpa_driver_nl80211_data *drv = bss->drv;
9427 : : int ifidx;
9428 : 21 : int added = 1;
9429 : :
9430 [ - + ]: 21 : if (addr)
9431 : 0 : os_memcpy(if_addr, addr, ETH_ALEN);
9432 : 21 : nlmode = wpa_driver_nl80211_if_type(type);
9433 [ - + ]: 21 : if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
9434 : : struct wdev_info p2pdev_info;
9435 : :
9436 : 0 : os_memset(&p2pdev_info, 0, sizeof(p2pdev_info));
9437 : 0 : ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
9438 : : 0, nl80211_wdev_handler,
9439 : : &p2pdev_info, use_existing);
9440 [ # # ][ # # ]: 0 : if (!p2pdev_info.wdev_id_set || ifidx != 0) {
9441 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to create a P2P Device interface %s",
9442 : : ifname);
9443 : 0 : return -1;
9444 : : }
9445 : :
9446 : 0 : drv->global->if_add_wdevid = p2pdev_info.wdev_id;
9447 : 0 : drv->global->if_add_wdevid_set = p2pdev_info.wdev_id_set;
9448 [ # # ]: 0 : if (!is_zero_ether_addr(p2pdev_info.macaddr))
9449 : 0 : os_memcpy(if_addr, p2pdev_info.macaddr, ETH_ALEN);
9450 : 0 : wpa_printf(MSG_DEBUG, "nl80211: New P2P Device interface %s (0x%llx) created",
9451 : : ifname,
9452 : 0 : (long long unsigned int) p2pdev_info.wdev_id);
9453 : : } else {
9454 : 21 : ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
9455 : : 0, NULL, NULL, use_existing);
9456 [ - + ][ # # ]: 21 : if (use_existing && ifidx == -ENFILE) {
9457 : 0 : added = 0;
9458 : 0 : ifidx = if_nametoindex(ifname);
9459 [ - + ]: 21 : } else if (ifidx < 0) {
9460 : 0 : return -1;
9461 : : }
9462 : : }
9463 : :
9464 [ + - ]: 21 : if (!addr) {
9465 [ - + ]: 21 : if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
9466 : 0 : os_memcpy(if_addr, bss->addr, ETH_ALEN);
9467 [ - + ]: 21 : else if (linux_get_ifhwaddr(drv->global->ioctl_sock,
9468 : 21 : bss->ifname, if_addr) < 0) {
9469 [ # # ]: 0 : if (added)
9470 : 0 : nl80211_remove_iface(drv, ifidx);
9471 : 0 : return -1;
9472 : : }
9473 : : }
9474 : :
9475 : : #ifdef CONFIG_P2P
9476 [ + - ][ + + ]: 21 : if (!addr &&
9477 [ + + ][ + - ]: 18 : (type == WPA_IF_P2P_CLIENT || type == WPA_IF_P2P_GROUP ||
9478 : : type == WPA_IF_P2P_GO)) {
9479 : : /* Enforce unique P2P Interface Address */
9480 : : u8 new_addr[ETH_ALEN];
9481 : :
9482 [ - + ]: 21 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, ifname,
9483 : : new_addr) < 0) {
9484 : 0 : nl80211_remove_iface(drv, ifidx);
9485 : 0 : return -1;
9486 : : }
9487 [ - + ]: 21 : if (nl80211_addr_in_use(drv->global, new_addr)) {
9488 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Allocate new address "
9489 : : "for P2P group interface");
9490 [ # # ]: 0 : if (nl80211_p2p_interface_addr(drv, new_addr) < 0) {
9491 : 0 : nl80211_remove_iface(drv, ifidx);
9492 : 0 : return -1;
9493 : : }
9494 [ # # ]: 0 : if (linux_set_ifhwaddr(drv->global->ioctl_sock, ifname,
9495 : : new_addr) < 0) {
9496 : 0 : nl80211_remove_iface(drv, ifidx);
9497 : 0 : return -1;
9498 : : }
9499 : : }
9500 : 21 : os_memcpy(if_addr, new_addr, ETH_ALEN);
9501 : : }
9502 : : #endif /* CONFIG_P2P */
9503 : :
9504 [ - + ]: 21 : if (type == WPA_IF_AP_BSS) {
9505 : 0 : struct i802_bss *new_bss = os_zalloc(sizeof(*new_bss));
9506 [ # # ]: 0 : if (new_bss == NULL) {
9507 [ # # ]: 0 : if (added)
9508 : 0 : nl80211_remove_iface(drv, ifidx);
9509 : 0 : return -1;
9510 : : }
9511 : :
9512 [ # # # # ]: 0 : if (bridge &&
9513 : 0 : i802_check_bridge(drv, new_bss, bridge, ifname) < 0) {
9514 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add the new "
9515 : : "interface %s to a bridge %s",
9516 : : ifname, bridge);
9517 [ # # ]: 0 : if (added)
9518 : 0 : nl80211_remove_iface(drv, ifidx);
9519 : 0 : os_free(new_bss);
9520 : 0 : return -1;
9521 : : }
9522 : :
9523 [ # # ]: 0 : if (linux_set_iface_flags(drv->global->ioctl_sock, ifname, 1))
9524 : : {
9525 : 0 : nl80211_remove_iface(drv, ifidx);
9526 : 0 : os_free(new_bss);
9527 : 0 : return -1;
9528 : : }
9529 : 0 : os_strlcpy(new_bss->ifname, ifname, IFNAMSIZ);
9530 : 0 : os_memcpy(new_bss->addr, if_addr, ETH_ALEN);
9531 : 0 : new_bss->ifindex = ifidx;
9532 : 0 : new_bss->drv = drv;
9533 : 0 : new_bss->next = drv->first_bss->next;
9534 : 0 : new_bss->freq = drv->first_bss->freq;
9535 : 0 : new_bss->ctx = bss_ctx;
9536 : 0 : new_bss->added_if = added;
9537 : 0 : drv->first_bss->next = new_bss;
9538 [ # # ]: 0 : if (drv_priv)
9539 : 0 : *drv_priv = new_bss;
9540 : 0 : nl80211_init_bss(new_bss);
9541 : :
9542 : : /* Subscribe management frames for this WPA_IF_AP_BSS */
9543 [ # # ]: 0 : if (nl80211_setup_ap(new_bss))
9544 : 0 : return -1;
9545 : : }
9546 : :
9547 [ + - ]: 21 : if (drv->global)
9548 : 21 : drv->global->if_add_ifindex = ifidx;
9549 : :
9550 : 21 : return 0;
9551 : : }
9552 : :
9553 : :
9554 : 21 : static int wpa_driver_nl80211_if_remove(struct i802_bss *bss,
9555 : : enum wpa_driver_if_type type,
9556 : : const char *ifname)
9557 : : {
9558 : 21 : struct wpa_driver_nl80211_data *drv = bss->drv;
9559 : 21 : int ifindex = if_nametoindex(ifname);
9560 : :
9561 : 21 : wpa_printf(MSG_DEBUG, "nl80211: %s(type=%d ifname=%s) ifindex=%d added_if=%d",
9562 : 21 : __func__, type, ifname, ifindex, bss->added_if);
9563 [ + - ][ + - ]: 21 : if (ifindex > 0 && (bss->added_if || bss->ifindex != ifindex))
[ + - ]
9564 : 21 : nl80211_remove_iface(drv, ifindex);
9565 : :
9566 [ + - ]: 21 : if (type != WPA_IF_AP_BSS)
9567 : 21 : return 0;
9568 : :
9569 [ # # ]: 0 : if (bss->added_if_into_bridge) {
9570 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
9571 : 0 : bss->ifname) < 0)
9572 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
9573 : : "interface %s from bridge %s: %s",
9574 : 0 : bss->ifname, bss->brname, strerror(errno));
9575 : : }
9576 [ # # ]: 0 : if (bss->added_bridge) {
9577 [ # # ]: 0 : if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
9578 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
9579 : : "bridge %s: %s",
9580 : 0 : bss->brname, strerror(errno));
9581 : : }
9582 : :
9583 [ # # ]: 0 : if (bss != drv->first_bss) {
9584 : : struct i802_bss *tbss;
9585 : :
9586 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Not the first BSS - remove it");
9587 [ # # ]: 0 : for (tbss = drv->first_bss; tbss; tbss = tbss->next) {
9588 [ # # ]: 0 : if (tbss->next == bss) {
9589 : 0 : tbss->next = bss->next;
9590 : : /* Unsubscribe management frames */
9591 : 0 : nl80211_teardown_ap(bss);
9592 : 0 : nl80211_destroy_bss(bss);
9593 : 0 : os_free(bss);
9594 : 0 : bss = NULL;
9595 : 0 : break;
9596 : : }
9597 : : }
9598 [ # # ]: 0 : if (bss)
9599 : 0 : wpa_printf(MSG_INFO, "nl80211: %s - could not find "
9600 : : "BSS %p in the list", __func__, bss);
9601 : : } else {
9602 : 0 : wpa_printf(MSG_DEBUG, "nl80211: First BSS - reassign context");
9603 : 0 : nl80211_teardown_ap(bss);
9604 [ # # ][ # # ]: 0 : if (!bss->added_if && !drv->first_bss->next)
9605 : 0 : wpa_driver_nl80211_del_beacon(drv);
9606 : 0 : nl80211_destroy_bss(bss);
9607 [ # # ]: 0 : if (!bss->added_if)
9608 : 0 : i802_set_iface_flags(bss, 0);
9609 [ # # ]: 0 : if (drv->first_bss->next) {
9610 : 0 : drv->first_bss = drv->first_bss->next;
9611 : 0 : drv->ctx = drv->first_bss->ctx;
9612 : 0 : os_free(bss);
9613 : : } else {
9614 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No second BSS to reassign context to");
9615 : : }
9616 : : }
9617 : :
9618 : 21 : return 0;
9619 : : }
9620 : :
9621 : :
9622 : 1303 : static int cookie_handler(struct nl_msg *msg, void *arg)
9623 : : {
9624 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
9625 : 1303 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
9626 : 1303 : u64 *cookie = arg;
9627 : 1303 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
9628 : : genlmsg_attrlen(gnlh, 0), NULL);
9629 [ + - ]: 1303 : if (tb[NL80211_ATTR_COOKIE])
9630 : 1303 : *cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
9631 : 1303 : return NL_SKIP;
9632 : : }
9633 : :
9634 : :
9635 : 1140 : static int nl80211_send_frame_cmd(struct i802_bss *bss,
9636 : : unsigned int freq, unsigned int wait,
9637 : : const u8 *buf, size_t buf_len,
9638 : : u64 *cookie_out, int no_cck, int no_ack,
9639 : : int offchanok)
9640 : : {
9641 : 1140 : struct wpa_driver_nl80211_data *drv = bss->drv;
9642 : : struct nl_msg *msg;
9643 : : u64 cookie;
9644 : 1140 : int ret = -1;
9645 : :
9646 : 1140 : msg = nlmsg_alloc();
9647 [ - + ]: 1140 : if (!msg)
9648 : 0 : return -1;
9649 : :
9650 : 1140 : wpa_printf(MSG_MSGDUMP, "nl80211: CMD_FRAME freq=%u wait=%u no_cck=%d "
9651 : : "no_ack=%d offchanok=%d",
9652 : : freq, wait, no_cck, no_ack, offchanok);
9653 : 1140 : wpa_hexdump(MSG_MSGDUMP, "CMD_FRAME", buf, buf_len);
9654 : 1140 : nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME);
9655 : :
9656 [ - + ]: 1140 : if (nl80211_set_iface_id(msg, bss) < 0)
9657 : 0 : goto nla_put_failure;
9658 [ + + ]: 1140 : if (freq)
9659 [ + - ]: 1134 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
9660 [ + + ]: 1140 : if (wait)
9661 [ + - ]: 295 : NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait);
9662 [ + + ][ + - ]: 1140 : if (offchanok && (drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX))
9663 [ + - ]: 610 : NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK);
9664 [ + + ]: 1140 : if (no_cck)
9665 [ + - ]: 521 : NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
9666 [ + + ]: 1140 : if (no_ack)
9667 [ + - ]: 310 : NLA_PUT_FLAG(msg, NL80211_ATTR_DONT_WAIT_FOR_ACK);
9668 : :
9669 [ + - ]: 1140 : NLA_PUT(msg, NL80211_ATTR_FRAME, buf_len, buf);
9670 : :
9671 : 1140 : cookie = 0;
9672 : 1140 : ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
9673 : 1140 : msg = NULL;
9674 [ + + ]: 1140 : if (ret) {
9675 : 57 : wpa_printf(MSG_DEBUG, "nl80211: Frame command failed: ret=%d "
9676 : : "(%s) (freq=%u wait=%u)", ret, strerror(-ret),
9677 : : freq, wait);
9678 : 57 : goto nla_put_failure;
9679 : : }
9680 [ + + ]: 1083 : wpa_printf(MSG_MSGDUMP, "nl80211: Frame TX command accepted%s; "
9681 : : "cookie 0x%llx", no_ack ? " (no ACK)" : "",
9682 : : (long long unsigned int) cookie);
9683 : :
9684 [ + + ]: 1083 : if (cookie_out)
9685 [ + + ]: 821 : *cookie_out = no_ack ? (u64) -1 : cookie;
9686 : :
9687 : : nla_put_failure:
9688 : 1140 : nlmsg_free(msg);
9689 : 1140 : return ret;
9690 : : }
9691 : :
9692 : :
9693 : 348 : static int wpa_driver_nl80211_send_action(struct i802_bss *bss,
9694 : : unsigned int freq,
9695 : : unsigned int wait_time,
9696 : : const u8 *dst, const u8 *src,
9697 : : const u8 *bssid,
9698 : : const u8 *data, size_t data_len,
9699 : : int no_cck)
9700 : : {
9701 : 348 : struct wpa_driver_nl80211_data *drv = bss->drv;
9702 : 348 : int ret = -1;
9703 : : u8 *buf;
9704 : : struct ieee80211_hdr *hdr;
9705 : :
9706 : 348 : wpa_printf(MSG_DEBUG, "nl80211: Send Action frame (ifindex=%d, "
9707 : : "freq=%u MHz wait=%d ms no_cck=%d)",
9708 : : drv->ifindex, freq, wait_time, no_cck);
9709 : :
9710 : 348 : buf = os_zalloc(24 + data_len);
9711 [ - + ]: 348 : if (buf == NULL)
9712 : 0 : return ret;
9713 : 348 : os_memcpy(buf + 24, data, data_len);
9714 : 348 : hdr = (struct ieee80211_hdr *) buf;
9715 : 348 : hdr->frame_control =
9716 : : IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_ACTION);
9717 : 348 : os_memcpy(hdr->addr1, dst, ETH_ALEN);
9718 : 348 : os_memcpy(hdr->addr2, src, ETH_ALEN);
9719 : 348 : os_memcpy(hdr->addr3, bssid, ETH_ALEN);
9720 : :
9721 [ + + ][ + - ]: 348 : if (is_ap_interface(drv->nlmode) &&
9722 [ + + ]: 23 : (!(drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) ||
9723 [ + - ][ + - ]: 4 : (int) freq == bss->freq || drv->device_ap_sme ||
9724 : 4 : !drv->use_monitor))
9725 : 23 : ret = wpa_driver_nl80211_send_mlme(bss, buf, 24 + data_len,
9726 : : 0, freq, no_cck, 1,
9727 : : wait_time);
9728 : : else
9729 : 325 : ret = nl80211_send_frame_cmd(bss, freq, wait_time, buf,
9730 : : 24 + data_len,
9731 : : &drv->send_action_cookie,
9732 : : no_cck, 0, 1);
9733 : :
9734 : 348 : os_free(buf);
9735 : 348 : return ret;
9736 : : }
9737 : :
9738 : :
9739 : 149 : static void wpa_driver_nl80211_send_action_cancel_wait(void *priv)
9740 : : {
9741 : 149 : struct i802_bss *bss = priv;
9742 : 149 : struct wpa_driver_nl80211_data *drv = bss->drv;
9743 : : struct nl_msg *msg;
9744 : : int ret;
9745 : :
9746 : 149 : msg = nlmsg_alloc();
9747 [ - + ]: 149 : if (!msg)
9748 : 149 : return;
9749 : :
9750 : 149 : wpa_printf(MSG_DEBUG, "nl80211: Cancel TX frame wait: cookie=0x%llx",
9751 : 149 : (long long unsigned int) drv->send_action_cookie);
9752 : 149 : nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME_WAIT_CANCEL);
9753 : :
9754 [ - + ]: 149 : if (nl80211_set_iface_id(msg, bss) < 0)
9755 : 0 : goto nla_put_failure;
9756 [ + - ]: 149 : NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->send_action_cookie);
9757 : :
9758 : 149 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9759 : 149 : msg = NULL;
9760 [ + + ]: 149 : if (ret)
9761 : 10 : wpa_printf(MSG_DEBUG, "nl80211: wait cancel failed: ret=%d "
9762 : : "(%s)", ret, strerror(-ret));
9763 : :
9764 : : nla_put_failure:
9765 : 149 : nlmsg_free(msg);
9766 : : }
9767 : :
9768 : :
9769 : 530 : static int wpa_driver_nl80211_remain_on_channel(void *priv, unsigned int freq,
9770 : : unsigned int duration)
9771 : : {
9772 : 530 : struct i802_bss *bss = priv;
9773 : 530 : struct wpa_driver_nl80211_data *drv = bss->drv;
9774 : : struct nl_msg *msg;
9775 : : int ret;
9776 : : u64 cookie;
9777 : :
9778 : 530 : msg = nlmsg_alloc();
9779 [ - + ]: 530 : if (!msg)
9780 : 0 : return -1;
9781 : :
9782 : 530 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REMAIN_ON_CHANNEL);
9783 : :
9784 [ - + ]: 530 : if (nl80211_set_iface_id(msg, bss) < 0)
9785 : 0 : goto nla_put_failure;
9786 : :
9787 [ + - ]: 530 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
9788 [ + - ]: 530 : NLA_PUT_U32(msg, NL80211_ATTR_DURATION, duration);
9789 : :
9790 : 530 : cookie = 0;
9791 : 530 : ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
9792 : 530 : msg = NULL;
9793 [ + - ]: 530 : if (ret == 0) {
9794 : 530 : wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel cookie "
9795 : : "0x%llx for freq=%u MHz duration=%u",
9796 : : (long long unsigned int) cookie, freq, duration);
9797 : 530 : drv->remain_on_chan_cookie = cookie;
9798 : 530 : drv->pending_remain_on_chan = 1;
9799 : 530 : return 0;
9800 : : }
9801 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to request remain-on-channel "
9802 : : "(freq=%d duration=%u): %d (%s)",
9803 : : freq, duration, ret, strerror(-ret));
9804 : : nla_put_failure:
9805 : 0 : nlmsg_free(msg);
9806 : 530 : return -1;
9807 : : }
9808 : :
9809 : :
9810 : 170 : static int wpa_driver_nl80211_cancel_remain_on_channel(void *priv)
9811 : : {
9812 : 170 : struct i802_bss *bss = priv;
9813 : 170 : struct wpa_driver_nl80211_data *drv = bss->drv;
9814 : : struct nl_msg *msg;
9815 : : int ret;
9816 : :
9817 [ + + ]: 170 : if (!drv->pending_remain_on_chan) {
9818 : 2 : wpa_printf(MSG_DEBUG, "nl80211: No pending remain-on-channel "
9819 : : "to cancel");
9820 : 2 : return -1;
9821 : : }
9822 : :
9823 : 168 : wpa_printf(MSG_DEBUG, "nl80211: Cancel remain-on-channel with cookie "
9824 : : "0x%llx",
9825 : 168 : (long long unsigned int) drv->remain_on_chan_cookie);
9826 : :
9827 : 168 : msg = nlmsg_alloc();
9828 [ - + ]: 168 : if (!msg)
9829 : 0 : return -1;
9830 : :
9831 : 168 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL);
9832 : :
9833 [ - + ]: 168 : if (nl80211_set_iface_id(msg, bss) < 0)
9834 : 0 : goto nla_put_failure;
9835 : :
9836 [ + - ]: 168 : NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->remain_on_chan_cookie);
9837 : :
9838 : 168 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9839 : 168 : msg = NULL;
9840 [ + + ]: 168 : if (ret == 0)
9841 : 166 : return 0;
9842 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Failed to cancel remain-on-channel: "
9843 : : "%d (%s)", ret, strerror(-ret));
9844 : : nla_put_failure:
9845 : 2 : nlmsg_free(msg);
9846 : 170 : return -1;
9847 : : }
9848 : :
9849 : :
9850 : 2776 : static int wpa_driver_nl80211_probe_req_report(struct i802_bss *bss, int report)
9851 : : {
9852 : 2776 : struct wpa_driver_nl80211_data *drv = bss->drv;
9853 : :
9854 [ + + ]: 2776 : if (!report) {
9855 [ + + ]: 2246 : if (bss->nl_preq && drv->device_ap_sme &&
[ - + # # ]
9856 : 0 : is_ap_interface(drv->nlmode)) {
9857 : : /*
9858 : : * Do not disable Probe Request reporting that was
9859 : : * enabled in nl80211_setup_ap().
9860 : : */
9861 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Skip disabling of "
9862 : : "Probe Request reporting nl_preq=%p while "
9863 : : "in AP mode", bss->nl_preq);
9864 [ + + ]: 2246 : } else if (bss->nl_preq) {
9865 : 517 : wpa_printf(MSG_DEBUG, "nl80211: Disable Probe Request "
9866 : : "reporting nl_preq=%p", bss->nl_preq);
9867 : 517 : nl80211_destroy_eloop_handle(&bss->nl_preq);
9868 : : }
9869 : 2246 : return 0;
9870 : : }
9871 : :
9872 [ + + ]: 530 : if (bss->nl_preq) {
9873 : 13 : wpa_printf(MSG_DEBUG, "nl80211: Probe Request reporting "
9874 : : "already on! nl_preq=%p", bss->nl_preq);
9875 : 13 : return 0;
9876 : : }
9877 : :
9878 : 517 : bss->nl_preq = nl_create_handle(drv->global->nl_cb, "preq");
9879 [ - + ]: 517 : if (bss->nl_preq == NULL)
9880 : 0 : return -1;
9881 : 517 : wpa_printf(MSG_DEBUG, "nl80211: Enable Probe Request "
9882 : : "reporting nl_preq=%p", bss->nl_preq);
9883 : :
9884 [ - + ]: 517 : if (nl80211_register_frame(bss, bss->nl_preq,
9885 : : (WLAN_FC_TYPE_MGMT << 2) |
9886 : : (WLAN_FC_STYPE_PROBE_REQ << 4),
9887 : : NULL, 0) < 0)
9888 : 0 : goto out_err;
9889 : :
9890 : 517 : nl80211_register_eloop_read(&bss->nl_preq,
9891 : : wpa_driver_nl80211_event_receive,
9892 : 517 : bss->nl_cb);
9893 : :
9894 : 517 : return 0;
9895 : :
9896 : : out_err:
9897 : 0 : nl_destroy_handles(&bss->nl_preq);
9898 : 2776 : return -1;
9899 : : }
9900 : :
9901 : :
9902 : 260 : static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
9903 : : int ifindex, int disabled)
9904 : : {
9905 : : struct nl_msg *msg;
9906 : : struct nlattr *bands, *band;
9907 : : int ret;
9908 : :
9909 : 260 : msg = nlmsg_alloc();
9910 [ - + ]: 260 : if (!msg)
9911 : 0 : return -1;
9912 : :
9913 : 260 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_TX_BITRATE_MASK);
9914 [ + - ]: 260 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
9915 : :
9916 : 260 : bands = nla_nest_start(msg, NL80211_ATTR_TX_RATES);
9917 [ - + ]: 260 : if (!bands)
9918 : 0 : goto nla_put_failure;
9919 : :
9920 : : /*
9921 : : * Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
9922 : : * else apart from 6, 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS
9923 : : * rates. All 5 GHz rates are left enabled.
9924 : : */
9925 : 260 : band = nla_nest_start(msg, NL80211_BAND_2GHZ);
9926 [ - + ]: 260 : if (!band)
9927 : 0 : goto nla_put_failure;
9928 [ + + ]: 260 : if (disabled) {
9929 [ + - ]: 151 : NLA_PUT(msg, NL80211_TXRATE_LEGACY, 8,
9930 : : "\x0c\x12\x18\x24\x30\x48\x60\x6c");
9931 : : }
9932 : 260 : nla_nest_end(msg, band);
9933 : :
9934 : 260 : nla_nest_end(msg, bands);
9935 : :
9936 : 260 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9937 : 260 : msg = NULL;
9938 [ + + ]: 260 : if (ret) {
9939 : 42 : wpa_printf(MSG_DEBUG, "nl80211: Set TX rates failed: ret=%d "
9940 : : "(%s)", ret, strerror(-ret));
9941 : : } else
9942 : 218 : drv->disabled_11b_rates = disabled;
9943 : :
9944 : 260 : return ret;
9945 : :
9946 : : nla_put_failure:
9947 : 0 : nlmsg_free(msg);
9948 : 260 : return -1;
9949 : : }
9950 : :
9951 : :
9952 : 59 : static int wpa_driver_nl80211_deinit_ap(void *priv)
9953 : : {
9954 : 59 : struct i802_bss *bss = priv;
9955 : 59 : struct wpa_driver_nl80211_data *drv = bss->drv;
9956 [ - + ]: 59 : if (!is_ap_interface(drv->nlmode))
9957 : 0 : return -1;
9958 : 59 : wpa_driver_nl80211_del_beacon(drv);
9959 : :
9960 : : /*
9961 : : * If the P2P GO interface was dynamically added, then it is
9962 : : * possible that the interface change to station is not possible.
9963 : : */
9964 [ + + ][ + + ]: 59 : if (drv->nlmode == NL80211_IFTYPE_P2P_GO && bss->if_dynamic)
9965 : 11 : return 0;
9966 : :
9967 : 59 : return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
9968 : : }
9969 : :
9970 : :
9971 : 0 : static int wpa_driver_nl80211_stop_ap(void *priv)
9972 : : {
9973 : 0 : struct i802_bss *bss = priv;
9974 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9975 [ # # ]: 0 : if (!is_ap_interface(drv->nlmode))
9976 : 0 : return -1;
9977 : 0 : wpa_driver_nl80211_del_beacon(drv);
9978 : 0 : bss->beacon_set = 0;
9979 : 0 : return 0;
9980 : : }
9981 : :
9982 : :
9983 : 51 : static int wpa_driver_nl80211_deinit_p2p_cli(void *priv)
9984 : : {
9985 : 51 : struct i802_bss *bss = priv;
9986 : 51 : struct wpa_driver_nl80211_data *drv = bss->drv;
9987 [ - + ]: 51 : if (drv->nlmode != NL80211_IFTYPE_P2P_CLIENT)
9988 : 0 : return -1;
9989 : :
9990 : : /*
9991 : : * If the P2P Client interface was dynamically added, then it is
9992 : : * possible that the interface change to station is not possible.
9993 : : */
9994 [ - + ]: 51 : if (bss->if_dynamic)
9995 : 0 : return 0;
9996 : :
9997 : 51 : return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
9998 : : }
9999 : :
10000 : :
10001 : 0 : static void wpa_driver_nl80211_resume(void *priv)
10002 : : {
10003 : 0 : struct i802_bss *bss = priv;
10004 : :
10005 [ # # ]: 0 : if (i802_set_iface_flags(bss, 1))
10006 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface up on resume event");
10007 : 0 : }
10008 : :
10009 : :
10010 : 6 : static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
10011 : : const u8 *ies, size_t ies_len)
10012 : : {
10013 : 6 : struct i802_bss *bss = priv;
10014 : 6 : struct wpa_driver_nl80211_data *drv = bss->drv;
10015 : : int ret;
10016 : : u8 *data, *pos;
10017 : : size_t data_len;
10018 : 6 : const u8 *own_addr = bss->addr;
10019 : :
10020 [ - + ]: 6 : if (action != 1) {
10021 : 0 : wpa_printf(MSG_ERROR, "nl80211: Unsupported send_ft_action "
10022 : : "action %d", action);
10023 : 0 : return -1;
10024 : : }
10025 : :
10026 : : /*
10027 : : * Action frame payload:
10028 : : * Category[1] = 6 (Fast BSS Transition)
10029 : : * Action[1] = 1 (Fast BSS Transition Request)
10030 : : * STA Address
10031 : : * Target AP Address
10032 : : * FT IEs
10033 : : */
10034 : :
10035 : 6 : data_len = 2 + 2 * ETH_ALEN + ies_len;
10036 : 6 : data = os_malloc(data_len);
10037 [ - + ]: 6 : if (data == NULL)
10038 : 0 : return -1;
10039 : 6 : pos = data;
10040 : 6 : *pos++ = 0x06; /* FT Action category */
10041 : 6 : *pos++ = action;
10042 : 6 : os_memcpy(pos, own_addr, ETH_ALEN);
10043 : 6 : pos += ETH_ALEN;
10044 : 6 : os_memcpy(pos, target_ap, ETH_ALEN);
10045 : 6 : pos += ETH_ALEN;
10046 : 6 : os_memcpy(pos, ies, ies_len);
10047 : :
10048 : 6 : ret = wpa_driver_nl80211_send_action(bss, drv->assoc_freq, 0,
10049 : 6 : drv->bssid, own_addr, drv->bssid,
10050 : : data, data_len, 0);
10051 : 6 : os_free(data);
10052 : :
10053 : 6 : return ret;
10054 : : }
10055 : :
10056 : :
10057 : 0 : static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis)
10058 : : {
10059 : 0 : struct i802_bss *bss = priv;
10060 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10061 : : struct nl_msg *msg;
10062 : : struct nlattr *cqm;
10063 : 0 : int ret = -1;
10064 : :
10065 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Signal monitor threshold=%d "
10066 : : "hysteresis=%d", threshold, hysteresis);
10067 : :
10068 : 0 : msg = nlmsg_alloc();
10069 [ # # ]: 0 : if (!msg)
10070 : 0 : return -1;
10071 : :
10072 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_CQM);
10073 : :
10074 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10075 : :
10076 : 0 : cqm = nla_nest_start(msg, NL80211_ATTR_CQM);
10077 [ # # ]: 0 : if (cqm == NULL)
10078 : 0 : goto nla_put_failure;
10079 : :
10080 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_THOLD, threshold);
10081 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
10082 : 0 : nla_nest_end(msg, cqm);
10083 : :
10084 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10085 : 0 : msg = NULL;
10086 : :
10087 : : nla_put_failure:
10088 : 0 : nlmsg_free(msg);
10089 : 0 : return ret;
10090 : : }
10091 : :
10092 : :
10093 : 0 : static int get_channel_width(struct nl_msg *msg, void *arg)
10094 : : {
10095 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
10096 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
10097 : 0 : struct wpa_signal_info *sig_change = arg;
10098 : :
10099 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
10100 : : genlmsg_attrlen(gnlh, 0), NULL);
10101 : :
10102 : 0 : sig_change->center_frq1 = -1;
10103 : 0 : sig_change->center_frq2 = -1;
10104 : 0 : sig_change->chanwidth = CHAN_WIDTH_UNKNOWN;
10105 : :
10106 [ # # ]: 0 : if (tb[NL80211_ATTR_CHANNEL_WIDTH]) {
10107 : 0 : sig_change->chanwidth = convert2width(
10108 : 0 : nla_get_u32(tb[NL80211_ATTR_CHANNEL_WIDTH]));
10109 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ1])
10110 : 0 : sig_change->center_frq1 =
10111 : 0 : nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
10112 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ2])
10113 : 0 : sig_change->center_frq2 =
10114 : 0 : nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
10115 : : }
10116 : :
10117 : 0 : return NL_SKIP;
10118 : : }
10119 : :
10120 : :
10121 : 0 : static int nl80211_get_channel_width(struct wpa_driver_nl80211_data *drv,
10122 : : struct wpa_signal_info *sig)
10123 : : {
10124 : : struct nl_msg *msg;
10125 : :
10126 : 0 : msg = nlmsg_alloc();
10127 [ # # ]: 0 : if (!msg)
10128 : 0 : return -ENOMEM;
10129 : :
10130 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_INTERFACE);
10131 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10132 : :
10133 : 0 : return send_and_recv_msgs(drv, msg, get_channel_width, sig);
10134 : :
10135 : : nla_put_failure:
10136 : 0 : nlmsg_free(msg);
10137 : 0 : return -ENOBUFS;
10138 : : }
10139 : :
10140 : :
10141 : 0 : static int nl80211_signal_poll(void *priv, struct wpa_signal_info *si)
10142 : : {
10143 : 0 : struct i802_bss *bss = priv;
10144 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10145 : : int res;
10146 : :
10147 : 0 : os_memset(si, 0, sizeof(*si));
10148 : 0 : res = nl80211_get_link_signal(drv, si);
10149 [ # # ]: 0 : if (res != 0)
10150 : 0 : return res;
10151 : :
10152 : 0 : res = nl80211_get_channel_width(drv, si);
10153 [ # # ]: 0 : if (res != 0)
10154 : 0 : return res;
10155 : :
10156 : 0 : return nl80211_get_link_noise(drv, si);
10157 : : }
10158 : :
10159 : :
10160 : 8 : static int wpa_driver_nl80211_shared_freq(void *priv)
10161 : : {
10162 : 8 : struct i802_bss *bss = priv;
10163 : 8 : struct wpa_driver_nl80211_data *drv = bss->drv;
10164 : : struct wpa_driver_nl80211_data *driver;
10165 : 8 : int freq = 0;
10166 : :
10167 : : /*
10168 : : * If the same PHY is in connected state with some other interface,
10169 : : * then retrieve the assoc freq.
10170 : : */
10171 : 8 : wpa_printf(MSG_DEBUG, "nl80211: Get shared freq for PHY %s",
10172 : 8 : drv->phyname);
10173 : :
10174 [ + + ]: 16 : dl_list_for_each(driver, &drv->global->interfaces,
10175 : : struct wpa_driver_nl80211_data, list) {
10176 [ - + ][ # # ]: 8 : if (drv == driver ||
10177 [ # # ]: 0 : os_strcmp(drv->phyname, driver->phyname) != 0 ||
10178 : 0 : !driver->associated)
10179 : 8 : continue;
10180 : :
10181 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Found a match for PHY %s - %s "
10182 : : MACSTR,
10183 : 0 : driver->phyname, driver->first_bss->ifname,
10184 : 0 : MAC2STR(driver->first_bss->addr));
10185 [ # # ]: 0 : if (is_ap_interface(driver->nlmode))
10186 : 0 : freq = driver->first_bss->freq;
10187 : : else
10188 : 0 : freq = nl80211_get_assoc_freq(driver);
10189 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Shared freq for PHY %s: %d",
10190 : 0 : drv->phyname, freq);
10191 : : }
10192 : :
10193 [ + - ]: 8 : if (!freq)
10194 : 8 : wpa_printf(MSG_DEBUG, "nl80211: No shared interface for "
10195 : 8 : "PHY (%s) in associated state", drv->phyname);
10196 : :
10197 : 8 : return freq;
10198 : : }
10199 : :
10200 : :
10201 : 6 : static int nl80211_send_frame(void *priv, const u8 *data, size_t data_len,
10202 : : int encrypt)
10203 : : {
10204 : 6 : struct i802_bss *bss = priv;
10205 : 6 : return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt, 0,
10206 : : 0, 0, 0, 0);
10207 : : }
10208 : :
10209 : :
10210 : 31 : static int nl80211_set_param(void *priv, const char *param)
10211 : : {
10212 : 31 : wpa_printf(MSG_DEBUG, "nl80211: driver param='%s'", param);
10213 [ + + ]: 31 : if (param == NULL)
10214 : 27 : return 0;
10215 : :
10216 : : #ifdef CONFIG_P2P
10217 [ - + ]: 4 : if (os_strstr(param, "use_p2p_group_interface=1")) {
10218 : 0 : struct i802_bss *bss = priv;
10219 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10220 : :
10221 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
10222 : : "interface");
10223 : 0 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
10224 : 0 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
10225 : : }
10226 : :
10227 [ - + ]: 4 : if (os_strstr(param, "p2p_device=1")) {
10228 : 0 : struct i802_bss *bss = priv;
10229 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10230 : 0 : drv->allow_p2p_device = 1;
10231 : : }
10232 : : #endif /* CONFIG_P2P */
10233 : :
10234 [ + + ]: 4 : if (os_strstr(param, "use_monitor=1")) {
10235 : 2 : struct i802_bss *bss = priv;
10236 : 2 : struct wpa_driver_nl80211_data *drv = bss->drv;
10237 : 2 : drv->use_monitor = 1;
10238 : : }
10239 : :
10240 [ + + ]: 4 : if (os_strstr(param, "force_connect_cmd=1")) {
10241 : 2 : struct i802_bss *bss = priv;
10242 : 2 : struct wpa_driver_nl80211_data *drv = bss->drv;
10243 : 2 : drv->capa.flags &= ~WPA_DRIVER_FLAGS_SME;
10244 : : }
10245 : :
10246 : 31 : return 0;
10247 : : }
10248 : :
10249 : :
10250 : 4 : static void * nl80211_global_init(void)
10251 : : {
10252 : : struct nl80211_global *global;
10253 : : struct netlink_config *cfg;
10254 : :
10255 : 4 : global = os_zalloc(sizeof(*global));
10256 [ - + ]: 4 : if (global == NULL)
10257 : 0 : return NULL;
10258 : 4 : global->ioctl_sock = -1;
10259 : 4 : dl_list_init(&global->interfaces);
10260 : 4 : global->if_add_ifindex = -1;
10261 : :
10262 : 4 : cfg = os_zalloc(sizeof(*cfg));
10263 [ - + ]: 4 : if (cfg == NULL)
10264 : 0 : goto err;
10265 : :
10266 : 4 : cfg->ctx = global;
10267 : 4 : cfg->newlink_cb = wpa_driver_nl80211_event_rtm_newlink;
10268 : 4 : cfg->dellink_cb = wpa_driver_nl80211_event_rtm_dellink;
10269 : 4 : global->netlink = netlink_init(cfg);
10270 [ - + ]: 4 : if (global->netlink == NULL) {
10271 : 0 : os_free(cfg);
10272 : 0 : goto err;
10273 : : }
10274 : :
10275 [ - + ]: 4 : if (wpa_driver_nl80211_init_nl_global(global) < 0)
10276 : 0 : goto err;
10277 : :
10278 : 4 : global->ioctl_sock = socket(PF_INET, SOCK_DGRAM, 0);
10279 [ - + ]: 4 : if (global->ioctl_sock < 0) {
10280 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket(PF_INET,SOCK_DGRAM) failed: %s",
10281 : 0 : strerror(errno));
10282 : 0 : goto err;
10283 : : }
10284 : :
10285 : 4 : return global;
10286 : :
10287 : : err:
10288 : 0 : nl80211_global_deinit(global);
10289 : 4 : return NULL;
10290 : : }
10291 : :
10292 : :
10293 : 4 : static void nl80211_global_deinit(void *priv)
10294 : : {
10295 : 4 : struct nl80211_global *global = priv;
10296 [ - + ]: 4 : if (global == NULL)
10297 : 4 : return;
10298 [ - + ]: 4 : if (!dl_list_empty(&global->interfaces)) {
10299 : 0 : wpa_printf(MSG_ERROR, "nl80211: %u interface(s) remain at "
10300 : : "nl80211_global_deinit",
10301 : : dl_list_len(&global->interfaces));
10302 : : }
10303 : :
10304 [ + - ]: 4 : if (global->netlink)
10305 : 4 : netlink_deinit(global->netlink);
10306 : :
10307 : 4 : nl_destroy_handles(&global->nl);
10308 : :
10309 [ + - ]: 4 : if (global->nl_event)
10310 : 4 : nl80211_destroy_eloop_handle(&global->nl_event);
10311 : :
10312 : 4 : nl_cb_put(global->nl_cb);
10313 : :
10314 [ + - ]: 4 : if (global->ioctl_sock >= 0)
10315 : 4 : close(global->ioctl_sock);
10316 : :
10317 : 4 : os_free(global);
10318 : : }
10319 : :
10320 : :
10321 : 90 : static const char * nl80211_get_radio_name(void *priv)
10322 : : {
10323 : 90 : struct i802_bss *bss = priv;
10324 : 90 : struct wpa_driver_nl80211_data *drv = bss->drv;
10325 : 90 : return drv->phyname;
10326 : : }
10327 : :
10328 : :
10329 : 195 : static int nl80211_pmkid(struct i802_bss *bss, int cmd, const u8 *bssid,
10330 : : const u8 *pmkid)
10331 : : {
10332 : : struct nl_msg *msg;
10333 : :
10334 : 195 : msg = nlmsg_alloc();
10335 [ - + ]: 195 : if (!msg)
10336 : 0 : return -ENOMEM;
10337 : :
10338 : 195 : nl80211_cmd(bss->drv, msg, 0, cmd);
10339 : :
10340 [ + - ]: 195 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
10341 [ + + ]: 195 : if (pmkid)
10342 [ + - ]: 164 : NLA_PUT(msg, NL80211_ATTR_PMKID, 16, pmkid);
10343 [ + + ]: 195 : if (bssid)
10344 [ + - ]: 164 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
10345 : :
10346 : 195 : return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
10347 : : nla_put_failure:
10348 : 0 : nlmsg_free(msg);
10349 : 195 : return -ENOBUFS;
10350 : : }
10351 : :
10352 : :
10353 : 82 : static int nl80211_add_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
10354 : : {
10355 : 82 : struct i802_bss *bss = priv;
10356 : 82 : wpa_printf(MSG_DEBUG, "nl80211: Add PMKID for " MACSTR, MAC2STR(bssid));
10357 : 82 : return nl80211_pmkid(bss, NL80211_CMD_SET_PMKSA, bssid, pmkid);
10358 : : }
10359 : :
10360 : :
10361 : 82 : static int nl80211_remove_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
10362 : : {
10363 : 82 : struct i802_bss *bss = priv;
10364 : 82 : wpa_printf(MSG_DEBUG, "nl80211: Delete PMKID for " MACSTR,
10365 : 492 : MAC2STR(bssid));
10366 : 82 : return nl80211_pmkid(bss, NL80211_CMD_DEL_PMKSA, bssid, pmkid);
10367 : : }
10368 : :
10369 : :
10370 : 31 : static int nl80211_flush_pmkid(void *priv)
10371 : : {
10372 : 31 : struct i802_bss *bss = priv;
10373 : 31 : wpa_printf(MSG_DEBUG, "nl80211: Flush PMKIDs");
10374 : 31 : return nl80211_pmkid(bss, NL80211_CMD_FLUSH_PMKSA, NULL, NULL);
10375 : : }
10376 : :
10377 : :
10378 : 0 : static void clean_survey_results(struct survey_results *survey_results)
10379 : : {
10380 : : struct freq_survey *survey, *tmp;
10381 : :
10382 [ # # ]: 0 : if (dl_list_empty(&survey_results->survey_list))
10383 : 0 : return;
10384 : :
10385 [ # # ]: 0 : dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
10386 : : struct freq_survey, list) {
10387 : 0 : dl_list_del(&survey->list);
10388 : 0 : os_free(survey);
10389 : : }
10390 : : }
10391 : :
10392 : :
10393 : 0 : static void add_survey(struct nlattr **sinfo, u32 ifidx,
10394 : : struct dl_list *survey_list)
10395 : : {
10396 : : struct freq_survey *survey;
10397 : :
10398 : 0 : survey = os_zalloc(sizeof(struct freq_survey));
10399 [ # # ]: 0 : if (!survey)
10400 : 0 : return;
10401 : :
10402 : 0 : survey->ifidx = ifidx;
10403 : 0 : survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10404 : 0 : survey->filled = 0;
10405 : :
10406 [ # # ]: 0 : if (sinfo[NL80211_SURVEY_INFO_NOISE]) {
10407 : 0 : survey->nf = (int8_t)
10408 : 0 : nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
10409 : 0 : survey->filled |= SURVEY_HAS_NF;
10410 : : }
10411 : :
10412 [ # # ]: 0 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]) {
10413 : 0 : survey->channel_time =
10414 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]);
10415 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME;
10416 : : }
10417 : :
10418 [ # # ]: 0 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]) {
10419 : 0 : survey->channel_time_busy =
10420 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]);
10421 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
10422 : : }
10423 : :
10424 [ # # ]: 0 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]) {
10425 : 0 : survey->channel_time_rx =
10426 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]);
10427 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
10428 : : }
10429 : :
10430 [ # # ]: 0 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]) {
10431 : 0 : survey->channel_time_tx =
10432 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]);
10433 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
10434 : : }
10435 : :
10436 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Freq survey dump event (freq=%d MHz noise=%d channel_time=%ld busy_time=%ld tx_time=%ld rx_time=%ld filled=%04x)",
10437 : : survey->freq,
10438 : 0 : survey->nf,
10439 : : (unsigned long int) survey->channel_time,
10440 : : (unsigned long int) survey->channel_time_busy,
10441 : : (unsigned long int) survey->channel_time_tx,
10442 : : (unsigned long int) survey->channel_time_rx,
10443 : : survey->filled);
10444 : :
10445 : 0 : dl_list_add_tail(survey_list, &survey->list);
10446 : : }
10447 : :
10448 : :
10449 : 0 : static int check_survey_ok(struct nlattr **sinfo, u32 surveyed_freq,
10450 : : unsigned int freq_filter)
10451 : : {
10452 [ # # ]: 0 : if (!freq_filter)
10453 : 0 : return 1;
10454 : :
10455 : 0 : return freq_filter == surveyed_freq;
10456 : : }
10457 : :
10458 : :
10459 : 0 : static int survey_handler(struct nl_msg *msg, void *arg)
10460 : : {
10461 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
10462 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
10463 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
10464 : : struct survey_results *survey_results;
10465 : 0 : u32 surveyed_freq = 0;
10466 : : u32 ifidx;
10467 : :
10468 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
10469 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
10470 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
10471 : : };
10472 : :
10473 : 0 : survey_results = (struct survey_results *) arg;
10474 : :
10475 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
10476 : : genlmsg_attrlen(gnlh, 0), NULL);
10477 : :
10478 : 0 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
10479 : :
10480 [ # # ]: 0 : if (!tb[NL80211_ATTR_SURVEY_INFO])
10481 : 0 : return NL_SKIP;
10482 : :
10483 [ # # ]: 0 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
10484 : : tb[NL80211_ATTR_SURVEY_INFO],
10485 : : survey_policy))
10486 : 0 : return NL_SKIP;
10487 : :
10488 [ # # ]: 0 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY]) {
10489 : 0 : wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
10490 : 0 : return NL_SKIP;
10491 : : }
10492 : :
10493 : 0 : surveyed_freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10494 : :
10495 [ # # ]: 0 : if (!check_survey_ok(sinfo, surveyed_freq,
10496 : : survey_results->freq_filter))
10497 : 0 : return NL_SKIP;
10498 : :
10499 [ # # ][ # # ]: 0 : if (survey_results->freq_filter &&
10500 : 0 : survey_results->freq_filter != surveyed_freq) {
10501 : 0 : wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
10502 : : surveyed_freq);
10503 : 0 : return NL_SKIP;
10504 : : }
10505 : :
10506 : 0 : add_survey(sinfo, ifidx, &survey_results->survey_list);
10507 : :
10508 : 0 : return NL_SKIP;
10509 : : }
10510 : :
10511 : :
10512 : 0 : static int wpa_driver_nl80211_get_survey(void *priv, unsigned int freq)
10513 : : {
10514 : 0 : struct i802_bss *bss = priv;
10515 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10516 : : struct nl_msg *msg;
10517 : 0 : int err = -ENOBUFS;
10518 : : union wpa_event_data data;
10519 : : struct survey_results *survey_results;
10520 : :
10521 : 0 : os_memset(&data, 0, sizeof(data));
10522 : 0 : survey_results = &data.survey_results;
10523 : :
10524 : 0 : dl_list_init(&survey_results->survey_list);
10525 : :
10526 : 0 : msg = nlmsg_alloc();
10527 [ # # ]: 0 : if (!msg)
10528 : 0 : goto nla_put_failure;
10529 : :
10530 : 0 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
10531 : :
10532 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10533 : :
10534 [ # # ]: 0 : if (freq)
10535 : 0 : data.survey_results.freq_filter = freq;
10536 : :
10537 : : do {
10538 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
10539 : 0 : err = send_and_recv_msgs(drv, msg, survey_handler,
10540 : : survey_results);
10541 [ # # ]: 0 : } while (err > 0);
10542 : :
10543 [ # # ]: 0 : if (err) {
10544 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");
10545 : 0 : goto out_clean;
10546 : : }
10547 : :
10548 : 0 : wpa_supplicant_event(drv->ctx, EVENT_SURVEY, &data);
10549 : :
10550 : : out_clean:
10551 : 0 : clean_survey_results(survey_results);
10552 : : nla_put_failure:
10553 : 0 : return err;
10554 : : }
10555 : :
10556 : :
10557 : 255 : static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck,
10558 : : const u8 *replay_ctr)
10559 : : {
10560 : 255 : struct i802_bss *bss = priv;
10561 : 255 : struct wpa_driver_nl80211_data *drv = bss->drv;
10562 : : struct nlattr *replay_nested;
10563 : : struct nl_msg *msg;
10564 : :
10565 : 255 : msg = nlmsg_alloc();
10566 [ - + ]: 255 : if (!msg)
10567 : 0 : return;
10568 : :
10569 : 255 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10570 : :
10571 [ + - ]: 255 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10572 : :
10573 : 255 : replay_nested = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10574 [ - + ]: 255 : if (!replay_nested)
10575 : 0 : goto nla_put_failure;
10576 : :
10577 [ + - ]: 255 : NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
10578 [ + - ]: 255 : NLA_PUT(msg, NL80211_REKEY_DATA_KCK, NL80211_KCK_LEN, kck);
10579 [ + - ]: 255 : NLA_PUT(msg, NL80211_REKEY_DATA_REPLAY_CTR, NL80211_REPLAY_CTR_LEN,
10580 : : replay_ctr);
10581 : :
10582 : 255 : nla_nest_end(msg, replay_nested);
10583 : :
10584 : 255 : send_and_recv_msgs(drv, msg, NULL, NULL);
10585 : 255 : return;
10586 : : nla_put_failure:
10587 : 255 : nlmsg_free(msg);
10588 : : }
10589 : :
10590 : :
10591 : 0 : static void nl80211_send_null_frame(struct i802_bss *bss, const u8 *own_addr,
10592 : : const u8 *addr, int qos)
10593 : : {
10594 : : /* send data frame to poll STA and check whether
10595 : : * this frame is ACKed */
10596 : : struct {
10597 : : struct ieee80211_hdr hdr;
10598 : : u16 qos_ctl;
10599 : : } STRUCT_PACKED nulldata;
10600 : : size_t size;
10601 : :
10602 : : /* Send data frame to poll STA and check whether this frame is ACKed */
10603 : :
10604 : 0 : os_memset(&nulldata, 0, sizeof(nulldata));
10605 : :
10606 [ # # ]: 0 : if (qos) {
10607 : 0 : nulldata.hdr.frame_control =
10608 : : IEEE80211_FC(WLAN_FC_TYPE_DATA,
10609 : : WLAN_FC_STYPE_QOS_NULL);
10610 : 0 : size = sizeof(nulldata);
10611 : : } else {
10612 : 0 : nulldata.hdr.frame_control =
10613 : : IEEE80211_FC(WLAN_FC_TYPE_DATA,
10614 : : WLAN_FC_STYPE_NULLFUNC);
10615 : 0 : size = sizeof(struct ieee80211_hdr);
10616 : : }
10617 : :
10618 : 0 : nulldata.hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
10619 : 0 : os_memcpy(nulldata.hdr.IEEE80211_DA_FROMDS, addr, ETH_ALEN);
10620 : 0 : os_memcpy(nulldata.hdr.IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
10621 : 0 : os_memcpy(nulldata.hdr.IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
10622 : :
10623 [ # # ]: 0 : if (wpa_driver_nl80211_send_mlme(bss, (u8 *) &nulldata, size, 0, 0, 0,
10624 : : 0, 0) < 0)
10625 : 0 : wpa_printf(MSG_DEBUG, "nl80211_send_null_frame: Failed to "
10626 : : "send poll frame");
10627 : 0 : }
10628 : :
10629 : 0 : static void nl80211_poll_client(void *priv, const u8 *own_addr, const u8 *addr,
10630 : : int qos)
10631 : : {
10632 : 0 : struct i802_bss *bss = priv;
10633 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10634 : : struct nl_msg *msg;
10635 : :
10636 [ # # ]: 0 : if (!drv->poll_command_supported) {
10637 : 0 : nl80211_send_null_frame(bss, own_addr, addr, qos);
10638 : 0 : return;
10639 : : }
10640 : :
10641 : 0 : msg = nlmsg_alloc();
10642 [ # # ]: 0 : if (!msg)
10643 : 0 : return;
10644 : :
10645 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_PROBE_CLIENT);
10646 : :
10647 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10648 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
10649 : :
10650 : 0 : send_and_recv_msgs(drv, msg, NULL, NULL);
10651 : 0 : return;
10652 : : nla_put_failure:
10653 : 0 : nlmsg_free(msg);
10654 : : }
10655 : :
10656 : :
10657 : 0 : static int nl80211_set_power_save(struct i802_bss *bss, int enabled)
10658 : : {
10659 : : struct nl_msg *msg;
10660 : :
10661 : 0 : msg = nlmsg_alloc();
10662 [ # # ]: 0 : if (!msg)
10663 : 0 : return -ENOMEM;
10664 : :
10665 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_SET_POWER_SAVE);
10666 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10667 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_PS_STATE,
10668 : : enabled ? NL80211_PS_ENABLED : NL80211_PS_DISABLED);
10669 : 0 : return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
10670 : : nla_put_failure:
10671 : 0 : nlmsg_free(msg);
10672 : 0 : return -ENOBUFS;
10673 : : }
10674 : :
10675 : :
10676 : 0 : static int nl80211_set_p2p_powersave(void *priv, int legacy_ps, int opp_ps,
10677 : : int ctwindow)
10678 : : {
10679 : 0 : struct i802_bss *bss = priv;
10680 : :
10681 : 0 : wpa_printf(MSG_DEBUG, "nl80211: set_p2p_powersave (legacy_ps=%d "
10682 : : "opp_ps=%d ctwindow=%d)", legacy_ps, opp_ps, ctwindow);
10683 : :
10684 [ # # ][ # # ]: 0 : if (opp_ps != -1 || ctwindow != -1) {
10685 : : #ifdef ANDROID_P2P
10686 : : wpa_driver_set_p2p_ps(priv, legacy_ps, opp_ps, ctwindow);
10687 : : #else /* ANDROID_P2P */
10688 : 0 : return -1; /* Not yet supported */
10689 : : #endif /* ANDROID_P2P */
10690 : : }
10691 : :
10692 [ # # ]: 0 : if (legacy_ps == -1)
10693 : 0 : return 0;
10694 [ # # ][ # # ]: 0 : if (legacy_ps != 0 && legacy_ps != 1)
10695 : 0 : return -1; /* Not yet supported */
10696 : :
10697 : 0 : return nl80211_set_power_save(bss, legacy_ps);
10698 : : }
10699 : :
10700 : :
10701 : 0 : static int nl80211_start_radar_detection(void *priv,
10702 : : struct hostapd_freq_params *freq)
10703 : : {
10704 : 0 : struct i802_bss *bss = priv;
10705 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10706 : : struct nl_msg *msg;
10707 : : int ret;
10708 : :
10709 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Start radar detection (CAC) %d MHz (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
10710 : : freq->freq, freq->ht_enabled, freq->vht_enabled,
10711 : : freq->bandwidth, freq->center_freq1, freq->center_freq2);
10712 : :
10713 [ # # ]: 0 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_RADAR)) {
10714 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support radar "
10715 : : "detection");
10716 : 0 : return -1;
10717 : : }
10718 : :
10719 : 0 : msg = nlmsg_alloc();
10720 [ # # ]: 0 : if (!msg)
10721 : 0 : return -1;
10722 : :
10723 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_RADAR_DETECT);
10724 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10725 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
10726 : :
10727 [ # # ]: 0 : if (freq->vht_enabled) {
10728 [ # # # # : 0 : switch (freq->bandwidth) {
# ]
10729 : : case 20:
10730 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10731 : : NL80211_CHAN_WIDTH_20);
10732 : 0 : break;
10733 : : case 40:
10734 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10735 : : NL80211_CHAN_WIDTH_40);
10736 : 0 : break;
10737 : : case 80:
10738 [ # # ]: 0 : if (freq->center_freq2)
10739 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10740 : : NL80211_CHAN_WIDTH_80P80);
10741 : : else
10742 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10743 : : NL80211_CHAN_WIDTH_80);
10744 : 0 : break;
10745 : : case 160:
10746 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10747 : : NL80211_CHAN_WIDTH_160);
10748 : 0 : break;
10749 : : default:
10750 : 0 : return -1;
10751 : : }
10752 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
10753 [ # # ]: 0 : if (freq->center_freq2)
10754 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
10755 : : freq->center_freq2);
10756 [ # # ]: 0 : } else if (freq->ht_enabled) {
10757 [ # # # ]: 0 : switch (freq->sec_channel_offset) {
10758 : : case -1:
10759 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10760 : : NL80211_CHAN_HT40MINUS);
10761 : 0 : break;
10762 : : case 1:
10763 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10764 : : NL80211_CHAN_HT40PLUS);
10765 : 0 : break;
10766 : : default:
10767 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10768 : : NL80211_CHAN_HT20);
10769 : 0 : break;
10770 : : }
10771 : : }
10772 : :
10773 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10774 [ # # ]: 0 : if (ret == 0)
10775 : 0 : return 0;
10776 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to start radar detection: "
10777 : : "%d (%s)", ret, strerror(-ret));
10778 : : nla_put_failure:
10779 : 0 : return -1;
10780 : : }
10781 : :
10782 : : #ifdef CONFIG_TDLS
10783 : :
10784 : 105 : static int nl80211_send_tdls_mgmt(void *priv, const u8 *dst, u8 action_code,
10785 : : u8 dialog_token, u16 status_code,
10786 : : const u8 *buf, size_t len)
10787 : : {
10788 : 105 : struct i802_bss *bss = priv;
10789 : 105 : struct wpa_driver_nl80211_data *drv = bss->drv;
10790 : : struct nl_msg *msg;
10791 : :
10792 [ - + ]: 105 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
10793 : 0 : return -EOPNOTSUPP;
10794 : :
10795 [ - + ]: 105 : if (!dst)
10796 : 0 : return -EINVAL;
10797 : :
10798 : 105 : msg = nlmsg_alloc();
10799 [ - + ]: 105 : if (!msg)
10800 : 0 : return -ENOMEM;
10801 : :
10802 : 105 : nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_MGMT);
10803 [ + - ]: 105 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10804 [ + - ]: 105 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst);
10805 [ + - ]: 105 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_ACTION, action_code);
10806 [ + - ]: 105 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_DIALOG_TOKEN, dialog_token);
10807 [ + - ]: 105 : NLA_PUT_U16(msg, NL80211_ATTR_STATUS_CODE, status_code);
10808 [ + - ]: 105 : NLA_PUT(msg, NL80211_ATTR_IE, len, buf);
10809 : :
10810 : 105 : return send_and_recv_msgs(drv, msg, NULL, NULL);
10811 : :
10812 : : nla_put_failure:
10813 : 0 : nlmsg_free(msg);
10814 : 105 : return -ENOBUFS;
10815 : : }
10816 : :
10817 : :
10818 : 822 : static int nl80211_tdls_oper(void *priv, enum tdls_oper oper, const u8 *peer)
10819 : : {
10820 : 822 : struct i802_bss *bss = priv;
10821 : 822 : struct wpa_driver_nl80211_data *drv = bss->drv;
10822 : : struct nl_msg *msg;
10823 : : enum nl80211_tdls_operation nl80211_oper;
10824 : :
10825 [ - + ]: 822 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
10826 : 0 : return -EOPNOTSUPP;
10827 : :
10828 [ - - - + : 822 : switch (oper) {
+ + - - ]
10829 : : case TDLS_DISCOVERY_REQ:
10830 : 0 : nl80211_oper = NL80211_TDLS_DISCOVERY_REQ;
10831 : 0 : break;
10832 : : case TDLS_SETUP:
10833 : 0 : nl80211_oper = NL80211_TDLS_SETUP;
10834 : 0 : break;
10835 : : case TDLS_TEARDOWN:
10836 : 0 : nl80211_oper = NL80211_TDLS_TEARDOWN;
10837 : 0 : break;
10838 : : case TDLS_ENABLE_LINK:
10839 : 38 : nl80211_oper = NL80211_TDLS_ENABLE_LINK;
10840 : 38 : break;
10841 : : case TDLS_DISABLE_LINK:
10842 : 60 : nl80211_oper = NL80211_TDLS_DISABLE_LINK;
10843 : 60 : break;
10844 : : case TDLS_ENABLE:
10845 : 724 : return 0;
10846 : : case TDLS_DISABLE:
10847 : 0 : return 0;
10848 : : default:
10849 : 0 : return -EINVAL;
10850 : : }
10851 : :
10852 : 98 : msg = nlmsg_alloc();
10853 [ - + ]: 98 : if (!msg)
10854 : 0 : return -ENOMEM;
10855 : :
10856 : 98 : nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_OPER);
10857 [ + - ]: 98 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_OPERATION, nl80211_oper);
10858 [ + - ]: 98 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10859 [ + - ]: 98 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, peer);
10860 : :
10861 : 98 : return send_and_recv_msgs(drv, msg, NULL, NULL);
10862 : :
10863 : : nla_put_failure:
10864 : 0 : nlmsg_free(msg);
10865 : 822 : return -ENOBUFS;
10866 : : }
10867 : :
10868 : : #endif /* CONFIG TDLS */
10869 : :
10870 : :
10871 : : #ifdef ANDROID
10872 : :
10873 : : typedef struct android_wifi_priv_cmd {
10874 : : char *buf;
10875 : : int used_len;
10876 : : int total_len;
10877 : : } android_wifi_priv_cmd;
10878 : :
10879 : : static int drv_errors = 0;
10880 : :
10881 : : static void wpa_driver_send_hang_msg(struct wpa_driver_nl80211_data *drv)
10882 : : {
10883 : : drv_errors++;
10884 : : if (drv_errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
10885 : : drv_errors = 0;
10886 : : wpa_msg(drv->ctx, MSG_INFO, WPA_EVENT_DRIVER_STATE "HANGED");
10887 : : }
10888 : : }
10889 : :
10890 : :
10891 : : static int android_priv_cmd(struct i802_bss *bss, const char *cmd)
10892 : : {
10893 : : struct wpa_driver_nl80211_data *drv = bss->drv;
10894 : : struct ifreq ifr;
10895 : : android_wifi_priv_cmd priv_cmd;
10896 : : char buf[MAX_DRV_CMD_SIZE];
10897 : : int ret;
10898 : :
10899 : : os_memset(&ifr, 0, sizeof(ifr));
10900 : : os_memset(&priv_cmd, 0, sizeof(priv_cmd));
10901 : : os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
10902 : :
10903 : : os_memset(buf, 0, sizeof(buf));
10904 : : os_strlcpy(buf, cmd, sizeof(buf));
10905 : :
10906 : : priv_cmd.buf = buf;
10907 : : priv_cmd.used_len = sizeof(buf);
10908 : : priv_cmd.total_len = sizeof(buf);
10909 : : ifr.ifr_data = &priv_cmd;
10910 : :
10911 : : ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
10912 : : if (ret < 0) {
10913 : : wpa_printf(MSG_ERROR, "%s: failed to issue private commands",
10914 : : __func__);
10915 : : wpa_driver_send_hang_msg(drv);
10916 : : return ret;
10917 : : }
10918 : :
10919 : : drv_errors = 0;
10920 : : return 0;
10921 : : }
10922 : :
10923 : :
10924 : : static int android_pno_start(struct i802_bss *bss,
10925 : : struct wpa_driver_scan_params *params)
10926 : : {
10927 : : struct wpa_driver_nl80211_data *drv = bss->drv;
10928 : : struct ifreq ifr;
10929 : : android_wifi_priv_cmd priv_cmd;
10930 : : int ret = 0, i = 0, bp;
10931 : : char buf[WEXT_PNO_MAX_COMMAND_SIZE];
10932 : :
10933 : : bp = WEXT_PNOSETUP_HEADER_SIZE;
10934 : : os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp);
10935 : : buf[bp++] = WEXT_PNO_TLV_PREFIX;
10936 : : buf[bp++] = WEXT_PNO_TLV_VERSION;
10937 : : buf[bp++] = WEXT_PNO_TLV_SUBVERSION;
10938 : : buf[bp++] = WEXT_PNO_TLV_RESERVED;
10939 : :
10940 : : while (i < WEXT_PNO_AMOUNT && (size_t) i < params->num_ssids) {
10941 : : /* Check that there is enough space needed for 1 more SSID, the
10942 : : * other sections and null termination */
10943 : : if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN +
10944 : : WEXT_PNO_NONSSID_SECTIONS_SIZE + 1) >= (int) sizeof(buf))
10945 : : break;
10946 : : wpa_hexdump_ascii(MSG_DEBUG, "For PNO Scan",
10947 : : params->ssids[i].ssid,
10948 : : params->ssids[i].ssid_len);
10949 : : buf[bp++] = WEXT_PNO_SSID_SECTION;
10950 : : buf[bp++] = params->ssids[i].ssid_len;
10951 : : os_memcpy(&buf[bp], params->ssids[i].ssid,
10952 : : params->ssids[i].ssid_len);
10953 : : bp += params->ssids[i].ssid_len;
10954 : : i++;
10955 : : }
10956 : :
10957 : : buf[bp++] = WEXT_PNO_SCAN_INTERVAL_SECTION;
10958 : : os_snprintf(&buf[bp], WEXT_PNO_SCAN_INTERVAL_LENGTH + 1, "%x",
10959 : : WEXT_PNO_SCAN_INTERVAL);
10960 : : bp += WEXT_PNO_SCAN_INTERVAL_LENGTH;
10961 : :
10962 : : buf[bp++] = WEXT_PNO_REPEAT_SECTION;
10963 : : os_snprintf(&buf[bp], WEXT_PNO_REPEAT_LENGTH + 1, "%x",
10964 : : WEXT_PNO_REPEAT);
10965 : : bp += WEXT_PNO_REPEAT_LENGTH;
10966 : :
10967 : : buf[bp++] = WEXT_PNO_MAX_REPEAT_SECTION;
10968 : : os_snprintf(&buf[bp], WEXT_PNO_MAX_REPEAT_LENGTH + 1, "%x",
10969 : : WEXT_PNO_MAX_REPEAT);
10970 : : bp += WEXT_PNO_MAX_REPEAT_LENGTH + 1;
10971 : :
10972 : : memset(&ifr, 0, sizeof(ifr));
10973 : : memset(&priv_cmd, 0, sizeof(priv_cmd));
10974 : : os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
10975 : :
10976 : : priv_cmd.buf = buf;
10977 : : priv_cmd.used_len = bp;
10978 : : priv_cmd.total_len = bp;
10979 : : ifr.ifr_data = &priv_cmd;
10980 : :
10981 : : ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
10982 : :
10983 : : if (ret < 0) {
10984 : : wpa_printf(MSG_ERROR, "ioctl[SIOCSIWPRIV] (pnosetup): %d",
10985 : : ret);
10986 : : wpa_driver_send_hang_msg(drv);
10987 : : return ret;
10988 : : }
10989 : :
10990 : : drv_errors = 0;
10991 : :
10992 : : return android_priv_cmd(bss, "PNOFORCE 1");
10993 : : }
10994 : :
10995 : :
10996 : : static int android_pno_stop(struct i802_bss *bss)
10997 : : {
10998 : : return android_priv_cmd(bss, "PNOFORCE 0");
10999 : : }
11000 : :
11001 : : #endif /* ANDROID */
11002 : :
11003 : :
11004 : 7059 : static int driver_nl80211_set_key(const char *ifname, void *priv,
11005 : : enum wpa_alg alg, const u8 *addr,
11006 : : int key_idx, int set_tx,
11007 : : const u8 *seq, size_t seq_len,
11008 : : const u8 *key, size_t key_len)
11009 : : {
11010 : 7059 : struct i802_bss *bss = priv;
11011 : 7059 : return wpa_driver_nl80211_set_key(ifname, bss, alg, addr, key_idx,
11012 : : set_tx, seq, seq_len, key, key_len);
11013 : : }
11014 : :
11015 : :
11016 : 940 : static int driver_nl80211_scan2(void *priv,
11017 : : struct wpa_driver_scan_params *params)
11018 : : {
11019 : 940 : struct i802_bss *bss = priv;
11020 : 940 : return wpa_driver_nl80211_scan(bss, params);
11021 : : }
11022 : :
11023 : :
11024 : 422 : static int driver_nl80211_deauthenticate(void *priv, const u8 *addr,
11025 : : int reason_code)
11026 : : {
11027 : 422 : struct i802_bss *bss = priv;
11028 : 422 : return wpa_driver_nl80211_deauthenticate(bss, addr, reason_code);
11029 : : }
11030 : :
11031 : :
11032 : 468 : static int driver_nl80211_authenticate(void *priv,
11033 : : struct wpa_driver_auth_params *params)
11034 : : {
11035 : 468 : struct i802_bss *bss = priv;
11036 : 468 : return wpa_driver_nl80211_authenticate(bss, params);
11037 : : }
11038 : :
11039 : :
11040 : 31 : static void driver_nl80211_deinit(void *priv)
11041 : : {
11042 : 31 : struct i802_bss *bss = priv;
11043 : 31 : wpa_driver_nl80211_deinit(bss);
11044 : 31 : }
11045 : :
11046 : :
11047 : 21 : static int driver_nl80211_if_remove(void *priv, enum wpa_driver_if_type type,
11048 : : const char *ifname)
11049 : : {
11050 : 21 : struct i802_bss *bss = priv;
11051 : 21 : return wpa_driver_nl80211_if_remove(bss, type, ifname);
11052 : : }
11053 : :
11054 : :
11055 : 615 : static int driver_nl80211_send_mlme(void *priv, const u8 *data,
11056 : : size_t data_len, int noack)
11057 : : {
11058 : 615 : struct i802_bss *bss = priv;
11059 : 615 : return wpa_driver_nl80211_send_mlme(bss, data, data_len, noack,
11060 : : 0, 0, 0, 0);
11061 : : }
11062 : :
11063 : :
11064 : 253 : static int driver_nl80211_sta_remove(void *priv, const u8 *addr)
11065 : : {
11066 : 253 : struct i802_bss *bss = priv;
11067 : 253 : return wpa_driver_nl80211_sta_remove(bss, addr);
11068 : : }
11069 : :
11070 : :
11071 : 0 : static int driver_nl80211_set_sta_vlan(void *priv, const u8 *addr,
11072 : : const char *ifname, int vlan_id)
11073 : : {
11074 : 0 : struct i802_bss *bss = priv;
11075 : 0 : return i802_set_sta_vlan(bss, addr, ifname, vlan_id);
11076 : : }
11077 : :
11078 : :
11079 : 0 : static int driver_nl80211_read_sta_data(void *priv,
11080 : : struct hostap_sta_driver_data *data,
11081 : : const u8 *addr)
11082 : : {
11083 : 0 : struct i802_bss *bss = priv;
11084 : 0 : return i802_read_sta_data(bss, data, addr);
11085 : : }
11086 : :
11087 : :
11088 : 342 : static int driver_nl80211_send_action(void *priv, unsigned int freq,
11089 : : unsigned int wait_time,
11090 : : const u8 *dst, const u8 *src,
11091 : : const u8 *bssid,
11092 : : const u8 *data, size_t data_len,
11093 : : int no_cck)
11094 : : {
11095 : 342 : struct i802_bss *bss = priv;
11096 : 342 : return wpa_driver_nl80211_send_action(bss, freq, wait_time, dst, src,
11097 : : bssid, data, data_len, no_cck);
11098 : : }
11099 : :
11100 : :
11101 : 2707 : static int driver_nl80211_probe_req_report(void *priv, int report)
11102 : : {
11103 : 2707 : struct i802_bss *bss = priv;
11104 : 2707 : return wpa_driver_nl80211_probe_req_report(bss, report);
11105 : : }
11106 : :
11107 : :
11108 : 0 : static int wpa_driver_nl80211_update_ft_ies(void *priv, const u8 *md,
11109 : : const u8 *ies, size_t ies_len)
11110 : : {
11111 : : int ret;
11112 : : struct nl_msg *msg;
11113 : 0 : struct i802_bss *bss = priv;
11114 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
11115 : 0 : u16 mdid = WPA_GET_LE16(md);
11116 : :
11117 : 0 : msg = nlmsg_alloc();
11118 [ # # ]: 0 : if (!msg)
11119 : 0 : return -ENOMEM;
11120 : :
11121 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Updating FT IEs");
11122 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_UPDATE_FT_IES);
11123 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11124 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE, ies_len, ies);
11125 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_MDID, mdid);
11126 : :
11127 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11128 [ # # ]: 0 : if (ret) {
11129 : 0 : wpa_printf(MSG_DEBUG, "nl80211: update_ft_ies failed "
11130 : : "err=%d (%s)", ret, strerror(-ret));
11131 : : }
11132 : :
11133 : 0 : return ret;
11134 : :
11135 : : nla_put_failure:
11136 : 0 : nlmsg_free(msg);
11137 : 0 : return -ENOBUFS;
11138 : : }
11139 : :
11140 : :
11141 : 31 : const u8 * wpa_driver_nl80211_get_macaddr(void *priv)
11142 : : {
11143 : 31 : struct i802_bss *bss = priv;
11144 : 31 : struct wpa_driver_nl80211_data *drv = bss->drv;
11145 : :
11146 [ + - ]: 31 : if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE)
11147 : 31 : return NULL;
11148 : :
11149 : 31 : return bss->addr;
11150 : : }
11151 : :
11152 : :
11153 : 733 : static const char * scan_state_str(enum scan_states scan_state)
11154 : : {
11155 [ + - + + : 733 : switch (scan_state) {
- - - -
- ]
11156 : : case NO_SCAN:
11157 : 6 : return "NO_SCAN";
11158 : : case SCAN_REQUESTED:
11159 : 0 : return "SCAN_REQUESTED";
11160 : : case SCAN_STARTED:
11161 : 9 : return "SCAN_STARTED";
11162 : : case SCAN_COMPLETED:
11163 : 718 : return "SCAN_COMPLETED";
11164 : : case SCAN_ABORTED:
11165 : 0 : return "SCAN_ABORTED";
11166 : : case SCHED_SCAN_STARTED:
11167 : 0 : return "SCHED_SCAN_STARTED";
11168 : : case SCHED_SCAN_STOPPED:
11169 : 0 : return "SCHED_SCAN_STOPPED";
11170 : : case SCHED_SCAN_RESULTS:
11171 : 0 : return "SCHED_SCAN_RESULTS";
11172 : : }
11173 : :
11174 : 733 : return "??";
11175 : : }
11176 : :
11177 : :
11178 : 733 : static int wpa_driver_nl80211_status(void *priv, char *buf, size_t buflen)
11179 : : {
11180 : 733 : struct i802_bss *bss = priv;
11181 : 733 : struct wpa_driver_nl80211_data *drv = bss->drv;
11182 : : int res;
11183 : : char *pos, *end;
11184 : :
11185 : 733 : pos = buf;
11186 : 733 : end = buf + buflen;
11187 : :
11188 [ - + ][ - + ]: 733 : res = os_snprintf(pos, end - pos,
[ - + ][ - + ]
[ - + ]
11189 : : "ifindex=%d\n"
11190 : : "ifname=%s\n"
11191 : : "brname=%s\n"
11192 : : "addr=" MACSTR "\n"
11193 : : "freq=%d\n"
11194 : : "%s%s%s%s%s",
11195 : : bss->ifindex,
11196 : 733 : bss->ifname,
11197 : 733 : bss->brname,
11198 : 4398 : MAC2STR(bss->addr),
11199 : : bss->freq,
11200 : 733 : bss->beacon_set ? "beacon_set=1\n" : "",
11201 : 733 : bss->added_if_into_bridge ?
11202 : : "added_if_into_bridge=1\n" : "",
11203 : 733 : bss->added_bridge ? "added_bridge=1\n" : "",
11204 : 733 : bss->in_deinit ? "in_deinit=1\n" : "",
11205 : 733 : bss->if_dynamic ? "if_dynamic=1\n" : "");
11206 [ + - ][ - + ]: 733 : if (res < 0 || res >= end - pos)
11207 : 0 : return pos - buf;
11208 : 733 : pos += res;
11209 : :
11210 [ - + ]: 733 : if (bss->wdev_id_set) {
11211 : 0 : res = os_snprintf(pos, end - pos, "wdev_id=%llu\n",
11212 : 0 : (unsigned long long) bss->wdev_id);
11213 [ # # ][ # # ]: 0 : if (res < 0 || res >= end - pos)
11214 : 0 : return pos - buf;
11215 : 0 : pos += res;
11216 : : }
11217 : :
11218 [ - + ][ - + ]: 733 : res = os_snprintf(pos, end - pos,
[ - + ][ - + ]
[ - + ][ + - ]
[ + - ][ - + ]
[ + - ][ - + ]
[ + + ][ + + ]
[ - + ]
11219 : : "phyname=%s\n"
11220 : : "drv_ifindex=%d\n"
11221 : : "operstate=%d\n"
11222 : : "scan_state=%s\n"
11223 : : "auth_bssid=" MACSTR "\n"
11224 : : "auth_attempt_bssid=" MACSTR "\n"
11225 : : "bssid=" MACSTR "\n"
11226 : : "prev_bssid=" MACSTR "\n"
11227 : : "associated=%d\n"
11228 : : "assoc_freq=%u\n"
11229 : : "monitor_sock=%d\n"
11230 : : "monitor_ifidx=%d\n"
11231 : : "monitor_refcount=%d\n"
11232 : : "last_mgmt_freq=%u\n"
11233 : : "eapol_tx_sock=%d\n"
11234 : : "%s%s%s%s%s%s%s%s%s%s%s%s%s",
11235 : 733 : drv->phyname,
11236 : : drv->ifindex,
11237 : : drv->operstate,
11238 : : scan_state_str(drv->scan_state),
11239 : 4398 : MAC2STR(drv->auth_bssid),
11240 : 4398 : MAC2STR(drv->auth_attempt_bssid),
11241 : 4398 : MAC2STR(drv->bssid),
11242 : 4398 : MAC2STR(drv->prev_bssid),
11243 : : drv->associated,
11244 : : drv->assoc_freq,
11245 : : drv->monitor_sock,
11246 : : drv->monitor_ifidx,
11247 : : drv->monitor_refcount,
11248 : : drv->last_mgmt_freq,
11249 : : drv->eapol_tx_sock,
11250 : 733 : drv->ignore_if_down_event ?
11251 : : "ignore_if_down_event=1\n" : "",
11252 : 733 : drv->scan_complete_events ?
11253 : : "scan_complete_events=1\n" : "",
11254 : 733 : drv->disabled_11b_rates ?
11255 : : "disabled_11b_rates=1\n" : "",
11256 : 733 : drv->pending_remain_on_chan ?
11257 : : "pending_remain_on_chan=1\n" : "",
11258 : 733 : drv->in_interface_list ? "in_interface_list=1\n" : "",
11259 : 733 : drv->device_ap_sme ? "device_ap_sme=1\n" : "",
11260 : 733 : drv->poll_command_supported ?
11261 : : "poll_command_supported=1\n" : "",
11262 : 733 : drv->data_tx_status ? "data_tx_status=1\n" : "",
11263 : 733 : drv->scan_for_auth ? "scan_for_auth=1\n" : "",
11264 : 733 : drv->retry_auth ? "retry_auth=1\n" : "",
11265 : 733 : drv->use_monitor ? "use_monitor=1\n" : "",
11266 : 733 : drv->ignore_next_local_disconnect ?
11267 : : "ignore_next_local_disconnect=1\n" : "",
11268 : 733 : drv->allow_p2p_device ? "allow_p2p_device=1\n" : "");
11269 [ + - ][ - + ]: 733 : if (res < 0 || res >= end - pos)
11270 : 0 : return pos - buf;
11271 : 733 : pos += res;
11272 : :
11273 [ + - ]: 733 : if (drv->has_capability) {
11274 : 733 : res = os_snprintf(pos, end - pos,
11275 : : "capa.key_mgmt=0x%x\n"
11276 : : "capa.enc=0x%x\n"
11277 : : "capa.auth=0x%x\n"
11278 : : "capa.flags=0x%x\n"
11279 : : "capa.max_scan_ssids=%d\n"
11280 : : "capa.max_sched_scan_ssids=%d\n"
11281 : : "capa.sched_scan_supported=%d\n"
11282 : : "capa.max_match_sets=%d\n"
11283 : : "capa.max_remain_on_chan=%u\n"
11284 : : "capa.max_stations=%u\n"
11285 : : "capa.probe_resp_offloads=0x%x\n"
11286 : : "capa.max_acl_mac_addrs=%u\n"
11287 : : "capa.num_multichan_concurrent=%u\n",
11288 : : drv->capa.key_mgmt,
11289 : : drv->capa.enc,
11290 : : drv->capa.auth,
11291 : : drv->capa.flags,
11292 : : drv->capa.max_scan_ssids,
11293 : : drv->capa.max_sched_scan_ssids,
11294 : : drv->capa.sched_scan_supported,
11295 : : drv->capa.max_match_sets,
11296 : : drv->capa.max_remain_on_chan,
11297 : : drv->capa.max_stations,
11298 : : drv->capa.probe_resp_offloads,
11299 : : drv->capa.max_acl_mac_addrs,
11300 : : drv->capa.num_multichan_concurrent);
11301 [ + - ][ - + ]: 733 : if (res < 0 || res >= end - pos)
11302 : 0 : return pos - buf;
11303 : 733 : pos += res;
11304 : : }
11305 : :
11306 : 733 : return pos - buf;
11307 : : }
11308 : :
11309 : :
11310 : 0 : static int set_beacon_data(struct nl_msg *msg, struct beacon_data *settings)
11311 : : {
11312 [ # # ]: 0 : if (settings->head)
11313 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD,
11314 : : settings->head_len, settings->head);
11315 : :
11316 [ # # ]: 0 : if (settings->tail)
11317 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL,
11318 : : settings->tail_len, settings->tail);
11319 : :
11320 [ # # ]: 0 : if (settings->beacon_ies)
11321 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE,
11322 : : settings->beacon_ies_len, settings->beacon_ies);
11323 : :
11324 [ # # ]: 0 : if (settings->proberesp_ies)
11325 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
11326 : : settings->proberesp_ies_len, settings->proberesp_ies);
11327 : :
11328 [ # # ]: 0 : if (settings->assocresp_ies)
11329 [ # # ]: 0 : NLA_PUT(msg,
11330 : : NL80211_ATTR_IE_ASSOC_RESP,
11331 : : settings->assocresp_ies_len, settings->assocresp_ies);
11332 : :
11333 [ # # ]: 0 : if (settings->probe_resp)
11334 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_PROBE_RESP,
11335 : : settings->probe_resp_len, settings->probe_resp);
11336 : :
11337 : 0 : return 0;
11338 : :
11339 : : nla_put_failure:
11340 : 0 : return -ENOBUFS;
11341 : : }
11342 : :
11343 : :
11344 : 1 : static int nl80211_switch_channel(void *priv, struct csa_settings *settings)
11345 : : {
11346 : : struct nl_msg *msg;
11347 : 1 : struct i802_bss *bss = priv;
11348 : 1 : struct wpa_driver_nl80211_data *drv = bss->drv;
11349 : : struct nlattr *beacon_csa;
11350 : 1 : int ret = -ENOBUFS;
11351 : :
11352 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Channel switch request (cs_count=%u block_tx=%u freq=%d width=%d cf1=%d cf2=%d)",
11353 : 2 : settings->cs_count, settings->block_tx,
11354 : : settings->freq_params.freq, settings->freq_params.bandwidth,
11355 : : settings->freq_params.center_freq1,
11356 : : settings->freq_params.center_freq2);
11357 : :
11358 [ + - ]: 1 : if (!drv->channel_switch_supported) {
11359 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support channel switch command");
11360 : 1 : return -EOPNOTSUPP;
11361 : : }
11362 : :
11363 [ # # ][ # # ]: 0 : if ((drv->nlmode != NL80211_IFTYPE_AP) &&
11364 : 0 : (drv->nlmode != NL80211_IFTYPE_P2P_GO))
11365 : 0 : return -EOPNOTSUPP;
11366 : :
11367 : : /* check settings validity */
11368 [ # # ][ # # ]: 0 : if (!settings->beacon_csa.tail ||
11369 : 0 : ((settings->beacon_csa.tail_len <=
11370 [ # # ]: 0 : settings->counter_offset_beacon) ||
11371 : 0 : (settings->beacon_csa.tail[settings->counter_offset_beacon] !=
11372 : 0 : settings->cs_count)))
11373 : 0 : return -EINVAL;
11374 : :
11375 [ # # ][ # # ]: 0 : if (settings->beacon_csa.probe_resp &&
11376 : 0 : ((settings->beacon_csa.probe_resp_len <=
11377 [ # # ]: 0 : settings->counter_offset_presp) ||
11378 : 0 : (settings->beacon_csa.probe_resp[settings->counter_offset_presp] !=
11379 : 0 : settings->cs_count)))
11380 : 0 : return -EINVAL;
11381 : :
11382 : 0 : msg = nlmsg_alloc();
11383 [ # # ]: 0 : if (!msg)
11384 : 0 : return -ENOMEM;
11385 : :
11386 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CHANNEL_SWITCH);
11387 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11388 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CH_SWITCH_COUNT, settings->cs_count);
11389 : 0 : ret = nl80211_put_freq_params(msg, &settings->freq_params);
11390 [ # # ]: 0 : if (ret)
11391 : 0 : goto error;
11392 : :
11393 [ # # ]: 0 : if (settings->block_tx)
11394 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_CH_SWITCH_BLOCK_TX);
11395 : :
11396 : : /* beacon_after params */
11397 : 0 : ret = set_beacon_data(msg, &settings->beacon_after);
11398 [ # # ]: 0 : if (ret)
11399 : 0 : goto error;
11400 : :
11401 : : /* beacon_csa params */
11402 : 0 : beacon_csa = nla_nest_start(msg, NL80211_ATTR_CSA_IES);
11403 [ # # ]: 0 : if (!beacon_csa)
11404 : 0 : goto nla_put_failure;
11405 : :
11406 : 0 : ret = set_beacon_data(msg, &settings->beacon_csa);
11407 [ # # ]: 0 : if (ret)
11408 : 0 : goto error;
11409 : :
11410 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_BEACON,
11411 : : settings->counter_offset_beacon);
11412 : :
11413 [ # # ]: 0 : if (settings->beacon_csa.probe_resp)
11414 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_PRESP,
11415 : : settings->counter_offset_presp);
11416 : :
11417 : 0 : nla_nest_end(msg, beacon_csa);
11418 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11419 [ # # ]: 0 : if (ret) {
11420 : 0 : wpa_printf(MSG_DEBUG, "nl80211: switch_channel failed err=%d (%s)",
11421 : : ret, strerror(-ret));
11422 : : }
11423 : 0 : return ret;
11424 : :
11425 : : nla_put_failure:
11426 : 0 : ret = -ENOBUFS;
11427 : : error:
11428 : 0 : nlmsg_free(msg);
11429 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not build channel switch request");
11430 : 1 : return ret;
11431 : : }
11432 : :
11433 : :
11434 : 2 : static int nl80211_set_qos_map(void *priv, const u8 *qos_map_set,
11435 : : u8 qos_map_set_len)
11436 : : {
11437 : 2 : struct i802_bss *bss = priv;
11438 : 2 : struct wpa_driver_nl80211_data *drv = bss->drv;
11439 : : struct nl_msg *msg;
11440 : : int ret;
11441 : :
11442 : 2 : msg = nlmsg_alloc();
11443 [ - + ]: 2 : if (!msg)
11444 : 0 : return -ENOMEM;
11445 : :
11446 : 2 : wpa_hexdump(MSG_DEBUG, "nl80211: Setting QoS Map",
11447 : : qos_map_set, qos_map_set_len);
11448 : :
11449 : 2 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_QOS_MAP);
11450 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11451 [ + - ]: 2 : NLA_PUT(msg, NL80211_ATTR_QOS_MAP, qos_map_set_len, qos_map_set);
11452 : :
11453 : 2 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11454 [ - + ]: 2 : if (ret)
11455 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Setting QoS Map failed");
11456 : :
11457 : 2 : return ret;
11458 : :
11459 : : nla_put_failure:
11460 : 0 : nlmsg_free(msg);
11461 : 2 : return -ENOBUFS;
11462 : : }
11463 : :
11464 : :
11465 : : const struct wpa_driver_ops wpa_driver_nl80211_ops = {
11466 : : .name = "nl80211",
11467 : : .desc = "Linux nl80211/cfg80211",
11468 : : .get_bssid = wpa_driver_nl80211_get_bssid,
11469 : : .get_ssid = wpa_driver_nl80211_get_ssid,
11470 : : .set_key = driver_nl80211_set_key,
11471 : : .scan2 = driver_nl80211_scan2,
11472 : : .sched_scan = wpa_driver_nl80211_sched_scan,
11473 : : .stop_sched_scan = wpa_driver_nl80211_stop_sched_scan,
11474 : : .get_scan_results2 = wpa_driver_nl80211_get_scan_results,
11475 : : .deauthenticate = driver_nl80211_deauthenticate,
11476 : : .authenticate = driver_nl80211_authenticate,
11477 : : .associate = wpa_driver_nl80211_associate,
11478 : : .global_init = nl80211_global_init,
11479 : : .global_deinit = nl80211_global_deinit,
11480 : : .init2 = wpa_driver_nl80211_init,
11481 : : .deinit = driver_nl80211_deinit,
11482 : : .get_capa = wpa_driver_nl80211_get_capa,
11483 : : .set_operstate = wpa_driver_nl80211_set_operstate,
11484 : : .set_supp_port = wpa_driver_nl80211_set_supp_port,
11485 : : .set_country = wpa_driver_nl80211_set_country,
11486 : : .get_country = wpa_driver_nl80211_get_country,
11487 : : .set_ap = wpa_driver_nl80211_set_ap,
11488 : : .set_acl = wpa_driver_nl80211_set_acl,
11489 : : .if_add = wpa_driver_nl80211_if_add,
11490 : : .if_remove = driver_nl80211_if_remove,
11491 : : .send_mlme = driver_nl80211_send_mlme,
11492 : : .get_hw_feature_data = wpa_driver_nl80211_get_hw_feature_data,
11493 : : .sta_add = wpa_driver_nl80211_sta_add,
11494 : : .sta_remove = driver_nl80211_sta_remove,
11495 : : .hapd_send_eapol = wpa_driver_nl80211_hapd_send_eapol,
11496 : : .sta_set_flags = wpa_driver_nl80211_sta_set_flags,
11497 : : .hapd_init = i802_init,
11498 : : .hapd_deinit = i802_deinit,
11499 : : .set_wds_sta = i802_set_wds_sta,
11500 : : .get_seqnum = i802_get_seqnum,
11501 : : .flush = i802_flush,
11502 : : .get_inact_sec = i802_get_inact_sec,
11503 : : .sta_clear_stats = i802_sta_clear_stats,
11504 : : .set_rts = i802_set_rts,
11505 : : .set_frag = i802_set_frag,
11506 : : .set_tx_queue_params = i802_set_tx_queue_params,
11507 : : .set_sta_vlan = driver_nl80211_set_sta_vlan,
11508 : : .sta_deauth = i802_sta_deauth,
11509 : : .sta_disassoc = i802_sta_disassoc,
11510 : : .read_sta_data = driver_nl80211_read_sta_data,
11511 : : .set_freq = i802_set_freq,
11512 : : .send_action = driver_nl80211_send_action,
11513 : : .send_action_cancel_wait = wpa_driver_nl80211_send_action_cancel_wait,
11514 : : .remain_on_channel = wpa_driver_nl80211_remain_on_channel,
11515 : : .cancel_remain_on_channel =
11516 : : wpa_driver_nl80211_cancel_remain_on_channel,
11517 : : .probe_req_report = driver_nl80211_probe_req_report,
11518 : : .deinit_ap = wpa_driver_nl80211_deinit_ap,
11519 : : .deinit_p2p_cli = wpa_driver_nl80211_deinit_p2p_cli,
11520 : : .resume = wpa_driver_nl80211_resume,
11521 : : .send_ft_action = nl80211_send_ft_action,
11522 : : .signal_monitor = nl80211_signal_monitor,
11523 : : .signal_poll = nl80211_signal_poll,
11524 : : .send_frame = nl80211_send_frame,
11525 : : .shared_freq = wpa_driver_nl80211_shared_freq,
11526 : : .set_param = nl80211_set_param,
11527 : : .get_radio_name = nl80211_get_radio_name,
11528 : : .add_pmkid = nl80211_add_pmkid,
11529 : : .remove_pmkid = nl80211_remove_pmkid,
11530 : : .flush_pmkid = nl80211_flush_pmkid,
11531 : : .set_rekey_info = nl80211_set_rekey_info,
11532 : : .poll_client = nl80211_poll_client,
11533 : : .set_p2p_powersave = nl80211_set_p2p_powersave,
11534 : : .start_dfs_cac = nl80211_start_radar_detection,
11535 : : .stop_ap = wpa_driver_nl80211_stop_ap,
11536 : : #ifdef CONFIG_TDLS
11537 : : .send_tdls_mgmt = nl80211_send_tdls_mgmt,
11538 : : .tdls_oper = nl80211_tdls_oper,
11539 : : #endif /* CONFIG_TDLS */
11540 : : .update_ft_ies = wpa_driver_nl80211_update_ft_ies,
11541 : : .get_mac_addr = wpa_driver_nl80211_get_macaddr,
11542 : : .get_survey = wpa_driver_nl80211_get_survey,
11543 : : .status = wpa_driver_nl80211_status,
11544 : : .switch_channel = nl80211_switch_channel,
11545 : : #ifdef ANDROID_P2P
11546 : : .set_noa = wpa_driver_set_p2p_noa,
11547 : : .get_noa = wpa_driver_get_p2p_noa,
11548 : : .set_ap_wps_ie = wpa_driver_set_ap_wps_p2p_ie,
11549 : : #endif /* ANDROID_P2P */
11550 : : #ifdef ANDROID
11551 : : .driver_cmd = wpa_driver_nl80211_driver_cmd,
11552 : : #endif /* ANDROID */
11553 : : .set_qos_map = nl80211_set_qos_map,
11554 : : };
|