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 : 1272 : static struct nl_handle * nl_create_handle(struct nl_cb *cb, const char *dbg)
124 : : {
125 : : struct nl_handle *handle;
126 : :
127 : 1272 : handle = nl80211_handle_alloc(cb);
128 [ - + ]: 1272 : 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 [ - + ]: 1272 : 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 : 1272 : return handle;
142 : : }
143 : :
144 : :
145 : 1272 : static void nl_destroy_handles(struct nl_handle **handle)
146 : : {
147 [ - + ]: 1272 : if (*handle == NULL)
148 : 1272 : return;
149 : 1272 : nl80211_handle_destroy(*handle);
150 : 1272 : *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 : 1267 : static void nl80211_register_eloop_read(struct nl_handle **handle,
161 : : eloop_sock_handler handler,
162 : : void *eloop_data)
163 : : {
164 : 1267 : nl_socket_set_nonblocking(*handle);
165 : 1267 : eloop_register_read_sock(nl_socket_get_fd(*handle), handler,
166 : : eloop_data, *handle);
167 : 1267 : *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
168 : 1267 : }
169 : :
170 : :
171 : 1267 : static void nl80211_destroy_eloop_handle(struct nl_handle **handle)
172 : : {
173 : 1267 : *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
174 : 1267 : eloop_unregister_read_sock(nl_socket_get_fd(*handle));
175 : 1267 : nl_destroy_handles(handle);
176 : 1267 : }
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 : 18665 : static const char * nl80211_command_to_string(enum nl80211_commands cmd)
397 : : {
398 : : #define C2S(x) case x: return #x;
399 [ - - - - : 18665 : 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 : 1000 : C2S(NL80211_CMD_NEW_STATION)
420 : 968 : 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 : 939 : C2S(NL80211_CMD_TRIGGER_SCAN)
434 : 934 : C2S(NL80211_CMD_NEW_SCAN_RESULTS)
435 : 0 : C2S(NL80211_CMD_SCAN_ABORTED)
436 : 1391 : C2S(NL80211_CMD_REG_CHANGE)
437 : 953 : C2S(NL80211_CMD_AUTHENTICATE)
438 : 922 : C2S(NL80211_CMD_ASSOCIATE)
439 : 904 : 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 : 461 : C2S(NL80211_CMD_CONNECT)
447 : 0 : C2S(NL80211_CMD_ROAM)
448 : 447 : 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 : 521 : C2S(NL80211_CMD_REMAIN_ON_CHANNEL)
456 : 521 : C2S(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL)
457 : 0 : C2S(NL80211_CMD_SET_TX_BITRATE_MASK)
458 : 0 : C2S(NL80211_CMD_REGISTER_FRAME)
459 : 5374 : C2S(NL80211_CMD_FRAME)
460 : 3324 : 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 : 18665 : 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 : 7329 : static int is_ap_interface(enum nl80211_iftype nlmode)
534 : : {
535 [ + + ][ + + ]: 7329 : return (nlmode == NL80211_IFTYPE_AP ||
536 : : nlmode == NL80211_IFTYPE_P2P_GO);
537 : : }
538 : :
539 : :
540 : 2859 : static int is_sta_interface(enum nl80211_iftype nlmode)
541 : : {
542 [ + + ][ - + ]: 2859 : return (nlmode == NL80211_IFTYPE_STATION ||
543 : : nlmode == NL80211_IFTYPE_P2P_CLIENT);
544 : : }
545 : :
546 : :
547 : 742 : static int is_p2p_net_interface(enum nl80211_iftype nlmode)
548 : : {
549 [ + + ][ + + ]: 742 : return (nlmode == NL80211_IFTYPE_P2P_CLIENT ||
550 : : nlmode == NL80211_IFTYPE_P2P_GO);
551 : : }
552 : :
553 : :
554 : 1804 : static void nl80211_mark_disconnected(struct wpa_driver_nl80211_data *drv)
555 : : {
556 [ + + ]: 1804 : if (drv->associated)
557 : 467 : os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
558 : 1804 : drv->associated = 0;
559 : 1804 : os_memset(drv->bssid, 0, ETH_ALEN);
560 : 1804 : }
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 : 26999 : static int ack_handler(struct nl_msg *msg, void *arg)
575 : : {
576 : 26999 : int *err = arg;
577 : 26999 : *err = 0;
578 : 26999 : return NL_STOP;
579 : : }
580 : :
581 : 3549 : static int finish_handler(struct nl_msg *msg, void *arg)
582 : : {
583 : 3549 : int *ret = arg;
584 : 3549 : *ret = 0;
585 : 3549 : return NL_SKIP;
586 : : }
587 : :
588 : 6046 : static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err,
589 : : void *arg)
590 : : {
591 : 6046 : int *ret = arg;
592 : 6046 : *ret = err->error;
593 : 6046 : return NL_SKIP;
594 : : }
595 : :
596 : :
597 : 184683 : static int no_seq_check(struct nl_msg *msg, void *arg)
598 : : {
599 : 184683 : return NL_OK;
600 : : }
601 : :
602 : :
603 : 36594 : 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 : 36594 : int err = -ENOMEM;
610 : :
611 : 36594 : cb = nl_cb_clone(global->nl_cb);
612 [ - + ]: 36594 : if (!cb)
613 : 0 : goto out;
614 : :
615 : 36594 : err = nl_send_auto_complete(nl_handle, msg);
616 [ - + ]: 36594 : if (err < 0)
617 : 0 : goto out;
618 : :
619 : 36594 : err = 1;
620 : :
621 : 36594 : nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
622 : 36594 : nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
623 : 36594 : nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
624 : :
625 [ + + ]: 36594 : if (valid_handler)
626 : 11452 : nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
627 : : valid_handler, valid_data);
628 : :
629 [ + + ]: 79884 : while (err > 0) {
630 : 43290 : int res = nl_recvmsgs(nl_handle, cb);
631 [ - + ]: 43290 : if (res) {
632 : 0 : wpa_printf(MSG_INFO,
633 : : "nl80211: %s->nl_recvmsgs failed: %d",
634 : : __func__, res);
635 : : }
636 : : }
637 : : out:
638 : 36594 : nl_cb_put(cb);
639 : 36594 : nlmsg_free(msg);
640 : 36594 : return err;
641 : : }
642 : :
643 : :
644 : 20 : 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 : 20 : return send_and_recv(global, global->nl, msg, valid_handler,
650 : : valid_data);
651 : : }
652 : :
653 : :
654 : 31178 : 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 : 31178 : 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 : 11490 : static int nl80211_set_iface_id(struct nl_msg *msg, struct i802_bss *bss)
671 : : {
672 [ - + ]: 11490 : if (bss->wdev_id_set)
673 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
674 : : else
675 [ + - ]: 11490 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
676 : 11490 : return 0;
677 : :
678 : : nla_put_failure:
679 : 11490 : return -1;
680 : : }
681 : :
682 : :
683 : 20 : static int family_handler(struct nl_msg *msg, void *arg)
684 : : {
685 : 20 : struct family_data *res = arg;
686 : : struct nlattr *tb[CTRL_ATTR_MAX + 1];
687 : 20 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
688 : : struct nlattr *mcgrp;
689 : : int i;
690 : :
691 : 20 : nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
692 : : genlmsg_attrlen(gnlh, 0), NULL);
693 [ - + ]: 20 : if (!tb[CTRL_ATTR_MCAST_GROUPS])
694 : 0 : return NL_SKIP;
695 : :
696 [ + - ]: 70 : nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
697 : : struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1];
698 : 70 : nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
699 : : nla_len(mcgrp), NULL);
700 [ + - ][ + - ]: 70 : if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
701 [ + + ]: 70 : !tb2[CTRL_ATTR_MCAST_GRP_ID] ||
702 : 70 : os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
703 : : res->group,
704 : : nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
705 : 50 : continue;
706 : 20 : res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
707 : 20 : break;
708 : : };
709 : :
710 : 20 : return NL_SKIP;
711 : : }
712 : :
713 : :
714 : 20 : static int nl_get_multicast_id(struct nl80211_global *global,
715 : : const char *family, const char *group)
716 : : {
717 : : struct nl_msg *msg;
718 : 20 : int ret = -1;
719 : 20 : struct family_data res = { group, -ENOENT };
720 : :
721 : 20 : msg = nlmsg_alloc();
722 [ - + ]: 20 : if (!msg)
723 : 0 : return -ENOMEM;
724 : 20 : genlmsg_put(msg, 0, 0, genl_ctrl_resolve(global->nl, "nlctrl"),
725 : : 0, 0, CTRL_CMD_GETFAMILY, 0);
726 [ + - ]: 20 : NLA_PUT_STRING(msg, CTRL_ATTR_FAMILY_NAME, family);
727 : :
728 : 20 : ret = send_and_recv_msgs_global(global, msg, family_handler, &res);
729 : 20 : msg = NULL;
730 [ + - ]: 20 : if (ret == 0)
731 : 20 : ret = res.id;
732 : :
733 : : nla_put_failure:
734 : 20 : nlmsg_free(msg);
735 : 20 : return ret;
736 : : }
737 : :
738 : :
739 : 36574 : static void * nl80211_cmd(struct wpa_driver_nl80211_data *drv,
740 : : struct nl_msg *msg, int flags, uint8_t cmd)
741 : : {
742 : 36574 : 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 : 782 : static int netdev_info_handler(struct nl_msg *msg, void *arg)
755 : : {
756 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
757 : 782 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
758 : 782 : struct wiphy_idx_data *info = arg;
759 : :
760 : 782 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
761 : : genlmsg_attrlen(gnlh, 0), NULL);
762 : :
763 [ + - ]: 782 : if (tb[NL80211_ATTR_WIPHY])
764 : 782 : info->wiphy_idx = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
765 : :
766 [ + - ]: 782 : if (tb[NL80211_ATTR_IFTYPE])
767 : 782 : info->nlmode = nla_get_u32(tb[NL80211_ATTR_IFTYPE]);
768 : :
769 [ + - ][ - + ]: 782 : if (tb[NL80211_ATTR_MAC] && info->macaddr)
770 : 0 : os_memcpy(info->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
771 : : ETH_ALEN);
772 : :
773 : 782 : return NL_SKIP;
774 : : }
775 : :
776 : :
777 : 288 : static int nl80211_get_wiphy_index(struct i802_bss *bss)
778 : : {
779 : : struct nl_msg *msg;
780 : 288 : struct wiphy_idx_data data = {
781 : : .wiphy_idx = -1,
782 : : .macaddr = NULL,
783 : : };
784 : :
785 : 288 : msg = nlmsg_alloc();
786 [ - + ]: 288 : if (!msg)
787 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
788 : :
789 : 288 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
790 : :
791 [ - + ]: 288 : if (nl80211_set_iface_id(msg, bss) < 0)
792 : 0 : goto nla_put_failure;
793 : :
794 [ + - ]: 288 : if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
795 : 288 : return data.wiphy_idx;
796 : 0 : msg = NULL;
797 : : nla_put_failure:
798 : 0 : nlmsg_free(msg);
799 : 288 : return -1;
800 : : }
801 : :
802 : :
803 : 494 : static enum nl80211_iftype nl80211_get_ifmode(struct i802_bss *bss)
804 : : {
805 : : struct nl_msg *msg;
806 : 494 : struct wiphy_idx_data data = {
807 : : .nlmode = NL80211_IFTYPE_UNSPECIFIED,
808 : : .macaddr = NULL,
809 : : };
810 : :
811 : 494 : msg = nlmsg_alloc();
812 [ - + ]: 494 : if (!msg)
813 : 0 : return -1;
814 : :
815 : 494 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
816 : :
817 [ - + ]: 494 : if (nl80211_set_iface_id(msg, bss) < 0)
818 : 0 : goto nla_put_failure;
819 : :
820 [ + - ]: 494 : if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
821 : 494 : return data.nlmode;
822 : 0 : msg = NULL;
823 : : nla_put_failure:
824 : 0 : nlmsg_free(msg);
825 : 494 : 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 : 271 : static int nl80211_register_beacons(struct wpa_driver_nl80211_data *drv,
853 : : struct nl80211_wiphy_data *w)
854 : : {
855 : : struct nl_msg *msg;
856 : 271 : int ret = -1;
857 : :
858 : 271 : msg = nlmsg_alloc();
859 [ - + ]: 271 : if (!msg)
860 : 0 : return -1;
861 : :
862 : 271 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_BEACONS);
863 : :
864 [ + - ]: 271 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, w->wiphy_idx);
865 : :
866 : 271 : ret = send_and_recv(drv->global, w->nl_beacons, msg, NULL, NULL);
867 : 271 : msg = NULL;
868 [ - + ]: 271 : 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 : 271 : ret = 0;
875 : : nla_put_failure:
876 : 271 : nlmsg_free(msg);
877 : 271 : return ret;
878 : : }
879 : :
880 : :
881 : 1019 : static void nl80211_recv_beacons(int sock, void *eloop_ctx, void *handle)
882 : : {
883 : 1019 : struct nl80211_wiphy_data *w = eloop_ctx;
884 : : int res;
885 : :
886 : 1019 : wpa_printf(MSG_EXCESSIVE, "nl80211: Beacon event message available");
887 : :
888 : 1019 : res = nl_recvmsgs(handle, w->nl_cb);
889 [ - + ]: 1019 : if (res) {
890 : 0 : wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
891 : : __func__, res);
892 : : }
893 : 1019 : }
894 : :
895 : :
896 : 1018 : static int process_beacon_event(struct nl_msg *msg, void *arg)
897 : : {
898 : 1018 : struct nl80211_wiphy_data *w = arg;
899 : : struct wpa_driver_nl80211_data *drv;
900 : 1018 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
901 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
902 : : union wpa_event_data event;
903 : :
904 : 1018 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
905 : : genlmsg_attrlen(gnlh, 0), NULL);
906 : :
907 [ - + ]: 1018 : 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 [ - + ]: 1018 : if (!tb[NL80211_ATTR_FRAME])
914 : 0 : return NL_SKIP;
915 : :
916 [ + + ]: 2036 : dl_list_for_each(drv, &w->drvs, struct wpa_driver_nl80211_data,
917 : : wiphy_list) {
918 : 1018 : os_memset(&event, 0, sizeof(event));
919 : 1018 : event.rx_mgmt.frame = nla_data(tb[NL80211_ATTR_FRAME]);
920 : 1018 : event.rx_mgmt.frame_len = nla_len(tb[NL80211_ATTR_FRAME]);
921 : 1018 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
922 : : }
923 : :
924 : 1018 : return NL_SKIP;
925 : : }
926 : :
927 : :
928 : : static struct nl80211_wiphy_data *
929 : 288 : nl80211_get_wiphy_data_ap(struct i802_bss *bss)
930 : : {
931 : : static DEFINE_DL_LIST(nl80211_wiphys);
932 : : struct nl80211_wiphy_data *w;
933 : 288 : int wiphy_idx, found = 0;
934 : : struct i802_bss *tmp_bss;
935 : :
936 [ - + ]: 288 : if (bss->wiphy_data != NULL)
937 : 0 : return bss->wiphy_data;
938 : :
939 : 288 : wiphy_idx = nl80211_get_wiphy_index(bss);
940 : :
941 [ + + ]: 308 : dl_list_for_each(w, &nl80211_wiphys, struct nl80211_wiphy_data, list) {
942 [ + + ]: 37 : if (w->wiphy_idx == wiphy_idx)
943 : 17 : goto add;
944 : : }
945 : :
946 : : /* alloc new one */
947 : 271 : w = os_zalloc(sizeof(*w));
948 [ - + ]: 271 : if (w == NULL)
949 : 0 : return NULL;
950 : 271 : w->wiphy_idx = wiphy_idx;
951 : 271 : dl_list_init(&w->bsss);
952 : 271 : dl_list_init(&w->drvs);
953 : :
954 : 271 : w->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
955 [ - + ]: 271 : if (!w->nl_cb) {
956 : 0 : os_free(w);
957 : 0 : return NULL;
958 : : }
959 : 271 : nl_cb_set(w->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
960 : 271 : nl_cb_set(w->nl_cb, NL_CB_VALID, NL_CB_CUSTOM, process_beacon_event,
961 : : w);
962 : :
963 : 271 : w->nl_beacons = nl_create_handle(bss->drv->global->nl_cb,
964 : : "wiphy beacons");
965 [ - + ]: 271 : if (w->nl_beacons == NULL) {
966 : 0 : os_free(w);
967 : 0 : return NULL;
968 : : }
969 : :
970 [ - + ]: 271 : 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 : 271 : nl80211_register_eloop_read(&w->nl_beacons, nl80211_recv_beacons, w);
977 : :
978 : 271 : dl_list_add(&nl80211_wiphys, &w->list);
979 : :
980 : : add:
981 : : /* drv entry for this bss already there? */
982 [ + + ]: 288 : dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
983 [ + - ]: 17 : if (tmp_bss->drv == bss->drv) {
984 : 17 : found = 1;
985 : 17 : break;
986 : : }
987 : : }
988 : : /* if not add it */
989 [ + + ]: 288 : if (!found)
990 : 271 : dl_list_add(&w->drvs, &bss->drv->wiphy_list);
991 : :
992 : 288 : dl_list_add(&w->bsss, &bss->wiphy_list);
993 : 288 : bss->wiphy_data = w;
994 : 288 : return w;
995 : : }
996 : :
997 : :
998 : 480 : static void nl80211_put_wiphy_data_ap(struct i802_bss *bss)
999 : : {
1000 : 480 : struct nl80211_wiphy_data *w = bss->wiphy_data;
1001 : : struct i802_bss *tmp_bss;
1002 : 480 : int found = 0;
1003 : :
1004 [ + + ]: 480 : if (w == NULL)
1005 : 192 : return;
1006 : 288 : bss->wiphy_data = NULL;
1007 : 288 : dl_list_del(&bss->wiphy_list);
1008 : :
1009 : : /* still any for this drv present? */
1010 [ + + ]: 288 : dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
1011 [ + - ]: 17 : if (tmp_bss->drv == bss->drv) {
1012 : 17 : found = 1;
1013 : 17 : break;
1014 : : }
1015 : : }
1016 : : /* if not remove it */
1017 [ + + ]: 288 : if (!found)
1018 : 271 : dl_list_del(&bss->drv->wiphy_list);
1019 : :
1020 [ + + ]: 288 : if (!dl_list_empty(&w->bsss))
1021 : 17 : return;
1022 : :
1023 : 271 : nl80211_destroy_eloop_handle(&w->nl_beacons);
1024 : :
1025 : 271 : nl_cb_put(w->nl_cb);
1026 : 271 : dl_list_del(&w->list);
1027 : 480 : os_free(w);
1028 : : }
1029 : :
1030 : :
1031 : 802 : static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
1032 : : {
1033 : 802 : struct i802_bss *bss = priv;
1034 : 802 : struct wpa_driver_nl80211_data *drv = bss->drv;
1035 [ - + ]: 802 : if (!drv->associated)
1036 : 0 : return -1;
1037 : 802 : os_memcpy(bssid, drv->bssid, ETH_ALEN);
1038 : 802 : return 0;
1039 : : }
1040 : :
1041 : :
1042 : 304 : static int wpa_driver_nl80211_get_ssid(void *priv, u8 *ssid)
1043 : : {
1044 : 304 : struct i802_bss *bss = priv;
1045 : 304 : struct wpa_driver_nl80211_data *drv = bss->drv;
1046 [ - + ]: 304 : if (!drv->associated)
1047 : 0 : return -1;
1048 : 304 : os_memcpy(ssid, drv->ssid, drv->ssid_len);
1049 : 304 : return drv->ssid_len;
1050 : : }
1051 : :
1052 : :
1053 : 2016 : 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 : 2016 : os_memset(&event, 0, sizeof(event));
1059 [ - + ]: 2016 : if (len > sizeof(event.interface_status.ifname))
1060 : 0 : len = sizeof(event.interface_status.ifname) - 1;
1061 : 2016 : os_memcpy(event.interface_status.ifname, buf, len);
1062 : 2016 : event.interface_status.ievent = del ? EVENT_INTERFACE_REMOVED :
1063 : : EVENT_INTERFACE_ADDED;
1064 : :
1065 [ - + ][ - + ]: 2016 : 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 [ + + ]: 2016 : if (os_strcmp(drv->first_bss->ifname, event.interface_status.ifname) ==
1071 : : 0) {
1072 [ - + ]: 1980 : 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 [ - + ]: 1980 : 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 [ + - ]: 1980 : if (!drv->if_removed) {
1088 : 1980 : wpa_printf(MSG_DEBUG, "nl80211: if_removed "
1089 : : "already cleared - ignore event");
1090 : 1980 : return;
1091 : : }
1092 : 0 : drv->if_removed = 0;
1093 : : }
1094 : : }
1095 : :
1096 : 2016 : 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 : 9163 : static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
1126 : : int ifindex, u8 *buf, size_t len)
1127 : : {
1128 [ + + ]: 9163 : if (drv->ifindex == ifindex)
1129 : 1992 : return 1;
1130 : :
1131 [ - + ][ # # ]: 7171 : 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 : 9163 : return 0;
1139 : : }
1140 : :
1141 : :
1142 : : static struct wpa_driver_nl80211_data *
1143 : 11808 : nl80211_find_drv(struct nl80211_global *global, int idx, u8 *buf, size_t len)
1144 : : {
1145 : : struct wpa_driver_nl80211_data *drv;
1146 [ + + ]: 18891 : dl_list_for_each(drv, &global->interfaces,
1147 : : struct wpa_driver_nl80211_data, list) {
1148 [ + + + + ]: 16334 : if (wpa_driver_nl80211_own_ifindex(drv, idx, buf, len) ||
1149 : 7171 : have_ifidx(drv, idx))
1150 : 2080 : return drv;
1151 : : }
1152 : 11808 : return NULL;
1153 : : }
1154 : :
1155 : :
1156 : 11612 : static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
1157 : : struct ifinfomsg *ifi,
1158 : : u8 *buf, size_t len)
1159 : : {
1160 : 11612 : struct nl80211_global *global = ctx;
1161 : : struct wpa_driver_nl80211_data *drv;
1162 : : int attrlen, rta_len;
1163 : : struct rtattr *attr;
1164 : 11612 : u32 brid = 0;
1165 : : char namebuf[IFNAMSIZ];
1166 : :
1167 : 11612 : drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
1168 [ + + ]: 11612 : if (!drv) {
1169 : 9532 : wpa_printf(MSG_DEBUG, "nl80211: Ignore event for foreign "
1170 : : "ifindex %d", ifi->ifi_index);
1171 : 9532 : return;
1172 : : }
1173 : :
1174 [ - + ][ + + ]: 2080 : wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
[ + + ][ + + ]
1175 : : "(%s%s%s%s)",
1176 : : drv->operstate, ifi->ifi_flags,
1177 : 2080 : (ifi->ifi_flags & IFF_UP) ? "[UP]" : "",
1178 : 2080 : (ifi->ifi_flags & IFF_RUNNING) ? "[RUNNING]" : "",
1179 : 2080 : (ifi->ifi_flags & IFF_LOWER_UP) ? "[LOWER_UP]" : "",
1180 : 2080 : (ifi->ifi_flags & IFF_DORMANT) ? "[DORMANT]" : "");
1181 : :
1182 [ + + ][ + - ]: 2080 : if (!drv->if_disabled && !(ifi->ifi_flags & IFF_UP)) {
1183 [ + - + - ]: 128 : if (if_indextoname(ifi->ifi_index, namebuf) &&
1184 : 64 : linux_iface_up(drv->global->ioctl_sock,
1185 : 64 : drv->first_bss->ifname) > 0) {
1186 : 64 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
1187 : : "event since interface %s is up", namebuf);
1188 : 64 : 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 [ - + ][ # # ]: 2016 : 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 [ + + ][ + + ]: 2016 : if (drv->operstate == 1 &&
1232 [ + + ]: 752 : (ifi->ifi_flags & (IFF_LOWER_UP | IFF_DORMANT)) == IFF_LOWER_UP &&
1233 : 752 : !(ifi->ifi_flags & IFF_RUNNING))
1234 : 87 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
1235 : : -1, IF_OPER_UP);
1236 : :
1237 : 2016 : attrlen = len;
1238 : 2016 : attr = (struct rtattr *) buf;
1239 : 2016 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1240 [ + + ][ + - ]: 36288 : while (RTA_OK(attr, attrlen)) {
[ + - ]
1241 [ + + ]: 34272 : if (attr->rta_type == IFLA_IFNAME) {
1242 : 2016 : wpa_driver_nl80211_event_link(
1243 : : drv,
1244 : 2016 : ((char *) attr) + rta_len,
1245 : 2016 : attr->rta_len - rta_len, 0);
1246 [ - + ]: 32256 : } else if (attr->rta_type == IFLA_MASTER)
1247 : 0 : brid = nla_get_u32((struct nlattr *) attr);
1248 : 34272 : attr = RTA_NEXT(attr, attrlen);
1249 : : }
1250 : :
1251 [ - + ][ # # ]: 2016 : 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 : 11612 : add_ifidx(drv, brid);
1257 : : }
1258 : : }
1259 : :
1260 : :
1261 : 196 : static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
1262 : : struct ifinfomsg *ifi,
1263 : : u8 *buf, size_t len)
1264 : : {
1265 : 196 : struct nl80211_global *global = ctx;
1266 : : struct wpa_driver_nl80211_data *drv;
1267 : : int attrlen, rta_len;
1268 : : struct rtattr *attr;
1269 : 196 : u32 brid = 0;
1270 : :
1271 : 196 : drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
1272 [ + - ]: 196 : if (!drv) {
1273 : 196 : wpa_printf(MSG_DEBUG, "nl80211: Ignore dellink event for "
1274 : : "foreign ifindex %d", ifi->ifi_index);
1275 : 196 : 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 : 475 : 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 : 475 : wpa_printf(MSG_DEBUG, "nl80211: Authenticate event");
1311 : 475 : mgmt = (const struct ieee80211_mgmt *) frame;
1312 [ - + ]: 475 : if (len < 24 + sizeof(mgmt->u.auth)) {
1313 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
1314 : : "frame");
1315 : 475 : return;
1316 : : }
1317 : :
1318 : 475 : os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN);
1319 : 475 : os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
1320 : 475 : os_memset(&event, 0, sizeof(event));
1321 : 475 : os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN);
1322 : 475 : event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg);
1323 : 475 : event.auth.auth_transaction =
1324 : 475 : le_to_host16(mgmt->u.auth.auth_transaction);
1325 : 475 : event.auth.status_code = le_to_host16(mgmt->u.auth.status_code);
1326 [ + + ]: 475 : 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 : 475 : wpa_supplicant_event(drv->ctx, EVENT_AUTH, &event);
1332 : : }
1333 : :
1334 : :
1335 : 7 : 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 : 7 : os_memset(&arg, 0, sizeof(arg));
1342 : 7 : msg = nlmsg_alloc();
1343 [ - + ]: 7 : if (!msg)
1344 : 0 : goto nla_put_failure;
1345 : :
1346 : 7 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
1347 [ + - ]: 7 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
1348 : :
1349 : 7 : arg.drv = drv;
1350 : 7 : ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
1351 : 7 : msg = NULL;
1352 [ + - ]: 7 : if (ret == 0) {
1353 : 7 : wpa_printf(MSG_DEBUG, "nl80211: Operating frequency for the "
1354 : : "associated BSS from scan results: %u MHz",
1355 : : arg.assoc_freq);
1356 [ + - ]: 7 : if (arg.assoc_freq)
1357 : 7 : drv->assoc_freq = arg.assoc_freq;
1358 : 7 : 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 : 7 : return drv->assoc_freq;
1365 : : }
1366 : :
1367 : :
1368 : 461 : 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 : 461 : wpa_printf(MSG_DEBUG, "nl80211: Associate event");
1376 : 461 : mgmt = (const struct ieee80211_mgmt *) frame;
1377 [ - + ]: 461 : 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 : 461 : status = le_to_host16(mgmt->u.assoc_resp.status_code);
1384 [ - + ]: 461 : 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 : 461 : drv->associated = 1;
1400 : 461 : os_memcpy(drv->bssid, mgmt->sa, ETH_ALEN);
1401 : 461 : os_memcpy(drv->prev_bssid, mgmt->sa, ETH_ALEN);
1402 : :
1403 : 461 : os_memset(&event, 0, sizeof(event));
1404 [ + - ]: 461 : if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
1405 : 461 : event.assoc_info.resp_ies = (u8 *) mgmt->u.assoc_resp.variable;
1406 : 461 : event.assoc_info.resp_ies_len =
1407 : 461 : len - 24 - sizeof(mgmt->u.assoc_resp);
1408 : : }
1409 : :
1410 : 461 : event.assoc_info.freq = drv->assoc_freq;
1411 : :
1412 : 461 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
1413 : : }
1414 : :
1415 : :
1416 : 461 : 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 [ + + ]: 461 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
1424 : : /*
1425 : : * Avoid reporting two association events that would confuse
1426 : : * the core code.
1427 : : */
1428 : 456 : wpa_printf(MSG_DEBUG, "nl80211: Ignore connect event (cmd=%d) "
1429 : : "when using userspace SME", cmd);
1430 : 456 : return;
1431 : : }
1432 : :
1433 [ + - ]: 5 : if (cmd == NL80211_CMD_CONNECT)
1434 : 5 : 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 : 5 : os_memset(&event, 0, sizeof(event));
1439 [ + - - + ]: 10 : if (cmd == NL80211_CMD_CONNECT &&
1440 : 5 : 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 : 5 : drv->associated = 1;
1453 [ + - ]: 5 : if (addr) {
1454 : 5 : os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN);
1455 : 5 : os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
1456 : : }
1457 : :
1458 [ - + ]: 5 : 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 [ + - ]: 5 : if (resp_ie) {
1463 : 5 : event.assoc_info.resp_ies = nla_data(resp_ie);
1464 : 5 : event.assoc_info.resp_ies_len = nla_len(resp_ie);
1465 : : }
1466 : :
1467 : 5 : event.assoc_info.freq = nl80211_get_assoc_freq(drv);
1468 : :
1469 : 461 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
1470 : : }
1471 : :
1472 : :
1473 : 447 : 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 : 447 : unsigned int locally_generated = by_ap == NULL;
1479 : :
1480 [ + + ]: 447 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
1481 : : /*
1482 : : * Avoid reporting two disassociation events that could
1483 : : * confuse the core code.
1484 : : */
1485 : 444 : wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
1486 : : "event when using userspace SME");
1487 : 444 : return;
1488 : : }
1489 : :
1490 [ + - ]: 3 : if (drv->ignore_next_local_disconnect) {
1491 : 3 : drv->ignore_next_local_disconnect = 0;
1492 [ + - ]: 3 : if (locally_generated) {
1493 : 3 : wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
1494 : : "event triggered during reassociation");
1495 : 3 : 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 : 447 : 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 : 2687 : 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 : 2687 : int ssi_signal = 0;
1605 : 2687 : int rx_freq = 0;
1606 : :
1607 : 2687 : wpa_printf(MSG_MSGDUMP, "nl80211: Frame event");
1608 : 2687 : mgmt = (const struct ieee80211_mgmt *) frame;
1609 [ - + ]: 2687 : if (len < 24) {
1610 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short management frame");
1611 : 2687 : return;
1612 : : }
1613 : :
1614 : 2687 : fc = le_to_host16(mgmt->frame_control);
1615 : 2687 : stype = WLAN_FC_GET_STYPE(fc);
1616 : :
1617 [ + - ]: 2687 : if (sig)
1618 : 2687 : ssi_signal = (s32) nla_get_u32(sig);
1619 : :
1620 : 2687 : os_memset(&event, 0, sizeof(event));
1621 [ + - ]: 2687 : if (freq) {
1622 : 2687 : event.rx_mgmt.freq = nla_get_u32(freq);
1623 : 2687 : rx_freq = drv->last_mgmt_freq = event.rx_mgmt.freq;
1624 : : }
1625 : 2687 : 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 : 2687 : event.rx_mgmt.frame = frame;
1629 : 2687 : event.rx_mgmt.frame_len = len;
1630 : 2687 : event.rx_mgmt.ssi_signal = ssi_signal;
1631 : 2687 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
1632 : : }
1633 : :
1634 : :
1635 : 1662 : 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 : 1662 : wpa_printf(MSG_DEBUG, "nl80211: Frame TX status event");
1644 [ + + ]: 1662 : if (!is_ap_interface(drv->nlmode)) {
1645 : : u64 cookie_val;
1646 : :
1647 [ - + ]: 386 : if (!cookie)
1648 : 0 : return;
1649 : :
1650 : 386 : cookie_val = nla_get_u64(cookie);
1651 [ + + ]: 386 : wpa_printf(MSG_DEBUG, "nl80211: Action TX status:"
1652 : : " cookie=0%llx%s (ack=%d)",
1653 : : (long long unsigned int) cookie_val,
1654 : 386 : cookie_val == drv->send_action_cookie ?
1655 : : " (match)" : " (unknown)", ack != NULL);
1656 [ + + ]: 386 : if (cookie_val != drv->send_action_cookie)
1657 : 57 : return;
1658 : : }
1659 : :
1660 : 1605 : hdr = (const struct ieee80211_hdr *) frame;
1661 : 1605 : fc = le_to_host16(hdr->frame_control);
1662 : :
1663 : 1605 : os_memset(&event, 0, sizeof(event));
1664 : 1605 : event.tx_status.type = WLAN_FC_GET_TYPE(fc);
1665 : 1605 : event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
1666 : 1605 : event.tx_status.dst = hdr->addr1;
1667 : 1605 : event.tx_status.data = frame;
1668 : 1605 : event.tx_status.data_len = len;
1669 : 1605 : event.tx_status.ack = ack != NULL;
1670 : 1662 : wpa_supplicant_event(drv->ctx, EVENT_TX_STATUS, &event);
1671 : : }
1672 : :
1673 : :
1674 : 452 : 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 : 452 : const u8 *bssid = NULL;
1681 : 452 : u16 reason_code = 0;
1682 : :
1683 [ + - ]: 452 : if (type == EVENT_DEAUTH)
1684 : 452 : wpa_printf(MSG_DEBUG, "nl80211: Deauthenticate event");
1685 : : else
1686 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disassociate event");
1687 : :
1688 : 452 : mgmt = (const struct ieee80211_mgmt *) frame;
1689 [ + - ]: 452 : if (len >= 24) {
1690 : 452 : bssid = mgmt->bssid;
1691 : :
1692 [ + + ][ + + ]: 452 : if ((drv->capa.flags & WPA_DRIVER_FLAGS_SME) &&
1693 [ + + ]: 384 : !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 [ + + ][ - + ]: 426 : 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 : 426 : nl80211_mark_disconnected(drv);
1724 : 426 : os_memset(&event, 0, sizeof(event));
1725 : :
1726 : : /* Note: Same offset for Reason Code in both frame subtypes */
1727 [ + - ]: 426 : if (len >= 24 + sizeof(mgmt->u.deauth))
1728 : 426 : reason_code = le_to_host16(mgmt->u.deauth.reason_code);
1729 : :
1730 [ - + ]: 426 : 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 : 426 : event.deauth_info.locally_generated =
1742 : 426 : !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
1743 : 426 : event.deauth_info.addr = bssid;
1744 : 426 : event.deauth_info.reason_code = reason_code;
1745 [ - + ]: 426 : 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 : 452 : 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 : 5740 : 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 : 5740 : struct wpa_driver_nl80211_data *drv = bss->drv;
1800 : : const u8 *data;
1801 : : size_t len;
1802 : :
1803 [ + + ][ + - ]: 5740 : if (timed_out && addr) {
1804 : 3 : mlme_timeout_event(drv, cmd, addr);
1805 : 3 : return;
1806 : : }
1807 : :
1808 [ - + ]: 5737 : 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 : 5737 : data = nla_data(frame);
1816 : 5737 : len = nla_len(frame);
1817 [ - + ]: 5737 : 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 : 5737 : wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s(" MACSTR
1825 : : ") A1=" MACSTR " A2=" MACSTR, cmd,
1826 : 5737 : nl80211_command_to_string(cmd), bss->ifname,
1827 : 68844 : MAC2STR(bss->addr), MAC2STR(data + 4),
1828 : 34422 : MAC2STR(data + 4 + ETH_ALEN));
1829 [ + + ][ + + ]: 5737 : if (cmd != NL80211_CMD_FRAME_TX_STATUS && !(data[4] & 0x01) &&
[ + + ]
1830 [ - + ]: 387 : os_memcmp(bss->addr, data + 4, ETH_ALEN) != 0 &&
1831 : 387 : 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 : 5737 : wpa_hexdump(MSG_MSGDUMP, "nl80211: MLME event frame",
1837 : 5737 : nla_data(frame), nla_len(frame));
1838 : :
1839 [ + + + - : 5737 : switch (cmd) {
+ + - -
- ]
1840 : : case NL80211_CMD_AUTHENTICATE:
1841 : 475 : mlme_event_auth(drv, nla_data(frame), nla_len(frame));
1842 : 475 : break;
1843 : : case NL80211_CMD_ASSOCIATE:
1844 : 461 : mlme_event_assoc(drv, nla_data(frame), nla_len(frame));
1845 : 461 : break;
1846 : : case NL80211_CMD_DEAUTHENTICATE:
1847 : 452 : mlme_event_deauth_disassoc(drv, EVENT_DEAUTH,
1848 : 452 : nla_data(frame), nla_len(frame));
1849 : 452 : 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 : 2687 : mlme_event_mgmt(drv, freq, sig, nla_data(frame),
1856 : 2687 : nla_len(frame));
1857 : 2687 : break;
1858 : : case NL80211_CMD_FRAME_TX_STATUS:
1859 : 1662 : mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1860 : 1662 : nla_len(frame), ack);
1861 : 1662 : 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 : 5740 : 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 : 1042 : 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 [ + - ]: 1042 : if (tb[NL80211_ATTR_WIPHY_FREQ])
1938 : 1042 : freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
1939 : : else
1940 : 0 : freq = 0;
1941 : :
1942 [ + - ]: 1042 : if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
1943 : 1042 : chan_type = nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1944 : : else
1945 : 0 : chan_type = 0;
1946 : :
1947 [ + + ]: 1042 : if (tb[NL80211_ATTR_DURATION])
1948 : 521 : duration = nla_get_u32(tb[NL80211_ATTR_DURATION]);
1949 : : else
1950 : 521 : duration = 0;
1951 : :
1952 [ + - ]: 1042 : if (tb[NL80211_ATTR_COOKIE])
1953 : 1042 : cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1954 : : else
1955 : 0 : cookie = 0;
1956 : :
1957 [ + + ]: 1042 : 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 : 1042 : cookie == drv->remain_on_chan_cookie ? "match" : "unknown");
1962 : :
1963 [ + + ]: 1042 : if (cookie != drv->remain_on_chan_cookie)
1964 : 1042 : return; /* not for us */
1965 : :
1966 [ + + ]: 1037 : if (cancel_event)
1967 : 518 : drv->pending_remain_on_chan = 0;
1968 : :
1969 : 1037 : os_memset(&data, 0, sizeof(data));
1970 : 1037 : data.remain_on_channel.freq = freq;
1971 : 1037 : data.remain_on_channel.duration = duration;
1972 [ + + ]: 1037 : 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 [ + + ]: 1847 : nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
2031 : 913 : struct wpa_driver_scan_ssid *s =
2032 : 913 : &info->ssids[info->num_ssids];
2033 : 913 : s->ssid = nla_data(nl);
2034 : 913 : s->ssid_len = nla_len(nl);
2035 : 913 : wpa_printf(MSG_DEBUG, "nl80211: Scan probed for SSID '%s'",
2036 : : wpa_ssid_txt(s->ssid, s->ssid_len));
2037 : 913 : info->num_ssids++;
2038 [ - + ]: 913 : 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 [ + + ]: 5392 : nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
2051 : : {
2052 : 4458 : freqs[num_freqs] = nla_get_u32(nl);
2053 : 4458 : res = os_snprintf(pos, end - pos, " %d",
2054 : : freqs[num_freqs]);
2055 [ + - ][ + - ]: 4458 : if (res > 0 && end - pos > res)
2056 : 4458 : pos += res;
2057 : 4458 : num_freqs++;
2058 [ - + ]: 4458 : 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 : 925 : static int get_noise_for_scan_results(struct nl_msg *msg, void *arg)
2216 : : {
2217 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2218 : 925 : 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 : 925 : struct wpa_scan_results *scan_results = arg;
2225 : : struct wpa_scan_res *scan_res;
2226 : : size_t i;
2227 : :
2228 : 925 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2229 : : genlmsg_attrlen(gnlh, 0), NULL);
2230 : :
2231 [ - + ]: 925 : if (!tb[NL80211_ATTR_SURVEY_INFO]) {
2232 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Survey data missing");
2233 : 0 : return NL_SKIP;
2234 : : }
2235 : :
2236 [ - + ]: 925 : 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 [ - + ]: 925 : if (!sinfo[NL80211_SURVEY_INFO_NOISE])
2245 : 0 : return NL_SKIP;
2246 : :
2247 [ - + ]: 925 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
2248 : 0 : return NL_SKIP;
2249 : :
2250 [ + + ]: 2497 : for (i = 0; i < scan_results->num; ++i) {
2251 : 1572 : scan_res = scan_results->res[i];
2252 [ - + ]: 1572 : if (!scan_res)
2253 : 0 : continue;
2254 [ + + ]: 1572 : if ((int) nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
2255 : 1572 : scan_res->freq)
2256 : 345 : continue;
2257 [ - + ]: 1227 : if (!(scan_res->flags & WPA_SCAN_NOISE_INVALID))
2258 : 0 : continue;
2259 : 1227 : scan_res->noise = (s8)
2260 : 1227 : nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
2261 : 1227 : scan_res->flags &= ~WPA_SCAN_NOISE_INVALID;
2262 : : }
2263 : :
2264 : 925 : return NL_SKIP;
2265 : : }
2266 : :
2267 : :
2268 : 925 : 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 : 925 : msg = nlmsg_alloc();
2275 [ - + ]: 925 : if (!msg)
2276 : 0 : return -ENOMEM;
2277 : :
2278 : 925 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
2279 : :
2280 [ + - ]: 925 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2281 : :
2282 : 925 : 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 : 925 : 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 : 1000 : 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 [ - + ]: 1000 : if (tb[NL80211_ATTR_MAC] == NULL)
2364 : 0 : return;
2365 : 1000 : addr = nla_data(tb[NL80211_ATTR_MAC]);
2366 : 1000 : wpa_printf(MSG_DEBUG, "nl80211: New station " MACSTR, MAC2STR(addr));
2367 : :
2368 [ - + ][ + + ]: 1000 : 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 [ + + ]: 1000 : if (drv->nlmode != NL80211_IFTYPE_ADHOC)
2381 : 988 : return;
2382 : :
2383 : 12 : os_memset(&data, 0, sizeof(data));
2384 : 12 : os_memcpy(data.ibss_rsn_start.peer, addr, ETH_ALEN);
2385 : 1000 : wpa_supplicant_event(drv->ctx, EVENT_IBSS_RSN_START, &data);
2386 : : }
2387 : :
2388 : :
2389 : 968 : 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 [ - + ]: 968 : if (tb[NL80211_ATTR_MAC] == NULL)
2396 : 0 : return;
2397 : 968 : addr = nla_data(tb[NL80211_ATTR_MAC]);
2398 : 968 : wpa_printf(MSG_DEBUG, "nl80211: Delete station " MACSTR,
2399 : 5808 : MAC2STR(addr));
2400 : :
2401 [ - + ][ + + ]: 968 : if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
2402 : 0 : drv_event_disassoc(drv->ctx, addr);
2403 : 0 : return;
2404 : : }
2405 : :
2406 [ + - ]: 968 : if (drv->nlmode != NL80211_IFTYPE_ADHOC)
2407 : 968 : return;
2408 : :
2409 : 0 : os_memset(&data, 0, sizeof(data));
2410 : 0 : os_memcpy(data.ibss_peer_lost.peer, addr, ETH_ALEN);
2411 : 968 : 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 : 10241 : static void do_process_drv_event(struct i802_bss *bss, int cmd,
2722 : : struct nlattr **tb)
2723 : : {
2724 : 10241 : struct wpa_driver_nl80211_data *drv = bss->drv;
2725 : : union wpa_event_data data;
2726 : :
2727 : 10241 : wpa_printf(MSG_DEBUG, "nl80211: Drv Event %d (%s) received for %s",
2728 : 10241 : cmd, nl80211_command_to_string(cmd), bss->ifname);
2729 : :
2730 [ # # ][ - + ]: 10241 : 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 [ + - - + : 10241 : switch (cmd) {
- - + + -
+ - + + +
- + - + +
- - - - -
- - - -
- ]
2739 : : case NL80211_CMD_TRIGGER_SCAN:
2740 : 939 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan trigger");
2741 : 939 : drv->scan_state = SCAN_STARTED;
2742 : 939 : wpa_supplicant_event(drv->ctx, EVENT_SCAN_STARTED, NULL);
2743 : 939 : 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 : 3053 : mlme_event(bss, cmd, tb[NL80211_ATTR_FRAME],
2787 : 6106 : tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
2788 : 6106 : tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
2789 : 3053 : tb[NL80211_ATTR_COOKIE],
2790 : 3053 : tb[NL80211_ATTR_RX_SIGNAL_DBM]);
2791 : 3053 : break;
2792 : : case NL80211_CMD_CONNECT:
2793 : : case NL80211_CMD_ROAM:
2794 : 461 : mlme_event_connect(drv, cmd,
2795 : 461 : tb[NL80211_ATTR_STATUS_CODE],
2796 : 461 : tb[NL80211_ATTR_MAC],
2797 : 461 : tb[NL80211_ATTR_REQ_IE],
2798 : 461 : tb[NL80211_ATTR_RESP_IE]);
2799 : 461 : 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 : 447 : mlme_event_disconnect(drv, tb[NL80211_ATTR_REASON_CODE],
2811 : 447 : tb[NL80211_ATTR_MAC],
2812 : 447 : tb[NL80211_ATTR_DISCONNECTED_BY_AP]);
2813 : 447 : 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 : 521 : mlme_event_remain_on_channel(drv, 0, tb);
2822 : 521 : break;
2823 : : case NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL:
2824 : 521 : mlme_event_remain_on_channel(drv, 1, tb);
2825 : 521 : break;
2826 : : case NL80211_CMD_NOTIFY_CQM:
2827 : 0 : nl80211_cqm_event(drv, tb);
2828 : 0 : break;
2829 : : case NL80211_CMD_REG_CHANGE:
2830 : 1391 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory domain change");
2831 [ - + ]: 1391 : if (tb[NL80211_ATTR_REG_INITIATOR] == NULL)
2832 : 0 : break;
2833 : 1391 : os_memset(&data, 0, sizeof(data));
2834 [ + - - - : 1391 : switch (nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR])) {
- ]
2835 : : case NL80211_REGDOM_SET_BY_CORE:
2836 : 1391 : data.channel_list_changed.initiator =
2837 : : REGDOM_SET_BY_CORE;
2838 : 1391 : 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 : 1391 : wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
2857 : : &data);
2858 : 1391 : 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 : 1000 : nl80211_new_station_event(drv, tb);
2866 : 1000 : break;
2867 : : case NL80211_CMD_DEL_STATION:
2868 : 968 : nl80211_del_station_event(drv, tb);
2869 : 968 : 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 : 10241 : }
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 : 46346 : static int process_global_event(struct nl_msg *msg, void *arg)
2946 : : {
2947 : 46346 : struct nl80211_global *global = arg;
2948 : 46346 : 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 : 46346 : int ifidx = -1;
2952 : : struct i802_bss *bss;
2953 : 46346 : u64 wdev_id = 0;
2954 : 46346 : int wdev_id_set = 0;
2955 : :
2956 : 46346 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2957 : : genlmsg_attrlen(gnlh, 0), NULL);
2958 : :
2959 [ + + ]: 46346 : if (tb[NL80211_ATTR_IFINDEX])
2960 : 44517 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
2961 [ - + ]: 1829 : 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 [ + + ]: 71492 : dl_list_for_each_safe(drv, tmp, &global->interfaces,
2967 : : struct wpa_driver_nl80211_data, list) {
2968 [ + + ]: 61357 : for (bss = drv->first_bss; bss; bss = bss->next) {
2969 [ + + ][ - + ]: 36211 : if ((ifidx == -1 && !wdev_id_set) ||
[ + + ]
2970 [ - + ]: 25970 : ifidx == bss->ifindex ||
2971 [ # # ][ # # ]: 0 : (wdev_id_set && bss->wdev_id_set &&
2972 : 0 : wdev_id == bss->wdev_id)) {
2973 : 10241 : do_process_drv_event(bss, gnlh->cmd, tb);
2974 : 10241 : return NL_SKIP;
2975 : : }
2976 : : }
2977 : : }
2978 : :
2979 : 46346 : return NL_SKIP;
2980 : : }
2981 : :
2982 : :
2983 : 2687 : static int process_bss_event(struct nl_msg *msg, void *arg)
2984 : : {
2985 : 2687 : struct i802_bss *bss = arg;
2986 : 2687 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2987 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2988 : :
2989 : 2687 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2990 : : genlmsg_attrlen(gnlh, 0), NULL);
2991 : :
2992 : 2687 : wpa_printf(MSG_DEBUG, "nl80211: BSS Event %d (%s) received for %s",
2993 : 5374 : gnlh->cmd, nl80211_command_to_string(gnlh->cmd),
2994 : 2687 : bss->ifname);
2995 : :
2996 [ + - - - ]: 2687 : switch (gnlh->cmd) {
2997 : : case NL80211_CMD_FRAME:
2998 : : case NL80211_CMD_FRAME_TX_STATUS:
2999 : 2687 : 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 : 2687 : 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 : 2687 : return NL_SKIP;
3018 : : }
3019 : :
3020 : :
3021 : 48996 : static void wpa_driver_nl80211_event_receive(int sock, void *eloop_ctx,
3022 : : void *handle)
3023 : : {
3024 : 48996 : struct nl_cb *cb = eloop_ctx;
3025 : : int res;
3026 : :
3027 : 48996 : wpa_printf(MSG_MSGDUMP, "nl80211: Event message available");
3028 : :
3029 : 48996 : res = nl_recvmsgs(handle, cb);
3030 [ - + ]: 48996 : if (res) {
3031 : 0 : wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
3032 : : __func__, res);
3033 : : }
3034 : 48996 : }
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 : 1677 : static int protocol_feature_handler(struct nl_msg *msg, void *arg)
3112 : : {
3113 : 1677 : u32 *feat = arg;
3114 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
3115 : 1677 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3116 : :
3117 : 1677 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3118 : : genlmsg_attrlen(gnlh, 0), NULL);
3119 : :
3120 [ + - ]: 1677 : if (tb_msg[NL80211_ATTR_PROTOCOL_FEATURES])
3121 : 1677 : *feat = nla_get_u32(tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]);
3122 : :
3123 : 1677 : return NL_SKIP;
3124 : : }
3125 : :
3126 : :
3127 : 1677 : static u32 get_nl80211_protocol_features(struct wpa_driver_nl80211_data *drv)
3128 : : {
3129 : 1677 : u32 feat = 0;
3130 : : struct nl_msg *msg;
3131 : :
3132 : 1677 : msg = nlmsg_alloc();
3133 [ - + ]: 1677 : if (!msg)
3134 : 0 : goto nla_put_failure;
3135 : :
3136 : 1677 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_PROTOCOL_FEATURES);
3137 [ + - ]: 1677 : if (send_and_recv_msgs(drv, msg, protocol_feature_handler, &feat) == 0)
3138 : 1677 : return feat;
3139 : :
3140 : 0 : msg = NULL;
3141 : : nla_put_failure:
3142 : 0 : nlmsg_free(msg);
3143 : 1677 : 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 : 12508 : 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 [ + + ]: 12508 : if (tb == NULL)
3192 : 12508 : return;
3193 : :
3194 [ + + ]: 2124 : nla_for_each_nested(nl_mode, tb, i) {
3195 [ + + + + : 1888 : switch (nla_type(nl_mode)) {
+ + + ]
3196 : : case NL80211_IFTYPE_AP:
3197 : 236 : info->capa->flags |= WPA_DRIVER_FLAGS_AP;
3198 : 236 : break;
3199 : : case NL80211_IFTYPE_ADHOC:
3200 : 236 : info->capa->flags |= WPA_DRIVER_FLAGS_IBSS;
3201 : 236 : break;
3202 : : case NL80211_IFTYPE_P2P_DEVICE:
3203 : 236 : info->capa->flags |=
3204 : : WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
3205 : 236 : break;
3206 : : case NL80211_IFTYPE_P2P_GO:
3207 : 236 : info->p2p_go_supported = 1;
3208 : 236 : break;
3209 : : case NL80211_IFTYPE_P2P_CLIENT:
3210 : 236 : info->p2p_client_supported = 1;
3211 : 236 : break;
3212 : : case NL80211_IFTYPE_MONITOR:
3213 : 236 : info->monitor_supported = 1;
3214 : 236 : break;
3215 : : }
3216 : : }
3217 : : }
3218 : :
3219 : :
3220 : 236 : 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 : 236 : 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 : 236 : err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
3242 : : nl_combi, iface_combination_policy);
3243 [ + - ][ + - ]: 236 : if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
[ + - ]
3244 [ - + ]: 236 : !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
3245 : 236 : !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
3246 : 0 : return 0; /* broken combination */
3247 : :
3248 [ + - ]: 236 : if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS])
3249 : 236 : info->capa->flags |= WPA_DRIVER_FLAGS_RADAR;
3250 : :
3251 [ + - ]: 472 : nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS],
3252 : : rem_limit) {
3253 : 472 : err = nla_parse_nested(tb_limit, MAX_NL80211_IFACE_LIMIT,
3254 : : nl_limit, iface_limit_policy);
3255 [ - + ][ + - ]: 472 : if (err || !tb_limit[NL80211_IFACE_LIMIT_TYPES])
3256 : 0 : return 0; /* broken combination */
3257 : :
3258 [ + + ]: 1652 : nla_for_each_nested(nl_mode,
3259 : : tb_limit[NL80211_IFACE_LIMIT_TYPES],
3260 : : rem_mode) {
3261 : 1180 : int ift = nla_type(nl_mode);
3262 [ + + ][ + + ]: 1180 : if (ift == NL80211_IFTYPE_P2P_GO ||
3263 : : ift == NL80211_IFTYPE_P2P_CLIENT)
3264 : 472 : combination_has_p2p = 1;
3265 [ + + ]: 1180 : if (ift == NL80211_IFTYPE_STATION)
3266 : 236 : combination_has_mgd = 1;
3267 : : }
3268 [ + + ][ + - ]: 472 : if (combination_has_p2p && combination_has_mgd)
3269 : 236 : break;
3270 : : }
3271 : :
3272 [ + - ][ + - ]: 236 : if (combination_has_p2p && combination_has_mgd) {
3273 : 236 : info->p2p_concurrent = 1;
3274 : 236 : info->num_multichan_concurrent =
3275 : 236 : nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]);
3276 : 236 : return 1;
3277 : : }
3278 : :
3279 : 236 : return 0;
3280 : : }
3281 : :
3282 : :
3283 : 12508 : 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 [ + + ]: 12508 : if (tb == NULL)
3290 : 12508 : return;
3291 : :
3292 [ + - ]: 236 : nla_for_each_nested(nl_combi, tb, rem_combi) {
3293 [ + - ]: 236 : if (wiphy_info_iface_comb_process(info, nl_combi) > 0)
3294 : 236 : break;
3295 : : }
3296 : : }
3297 : :
3298 : :
3299 : 12508 : 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 [ + + ]: 12508 : if (tb == NULL)
3306 : 12508 : return;
3307 : :
3308 [ + + ]: 6844 : nla_for_each_nested(nl_cmd, tb, i) {
3309 [ + + - + : 6608 : switch (nla_get_u32(nl_cmd)) {
- + + ]
3310 : : case NL80211_CMD_AUTHENTICATE:
3311 : 236 : info->auth_supported = 1;
3312 : 236 : break;
3313 : : case NL80211_CMD_CONNECT:
3314 : 236 : info->connect_supported = 1;
3315 : 236 : 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 : 236 : info->poll_command_supported = 1;
3321 : 236 : 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 : 236 : info->set_qos_map_supported = 1;
3327 : 236 : break;
3328 : : }
3329 : : }
3330 : : }
3331 : :
3332 : :
3333 : 12508 : 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 [ + + ]: 12508 : if (tb == NULL)
3340 : 12508 : return;
3341 : :
3342 : 236 : num = nla_len(tb) / sizeof(u32);
3343 : 236 : ciphers = nla_data(tb);
3344 [ + + ]: 1416 : for (i = 0; i < num; i++) {
3345 : 1180 : u32 c = ciphers[i];
3346 : :
3347 : 1180 : wpa_printf(MSG_DEBUG, "nl80211: Supported cipher %02x-%02x-%02x:%d",
3348 : 1180 : c >> 24, (c >> 16) & 0xff,
3349 : 1180 : (c >> 8) & 0xff, c & 0xff);
3350 [ - - + - : 1180 : 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 : 236 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP;
3359 : 236 : 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 : 236 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_TKIP;
3365 : 236 : break;
3366 : : case WLAN_CIPHER_SUITE_WEP104:
3367 : 236 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP104;
3368 : 236 : break;
3369 : : case WLAN_CIPHER_SUITE_WEP40:
3370 : 236 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP40;
3371 : 236 : break;
3372 : : case WLAN_CIPHER_SUITE_AES_CMAC:
3373 : 236 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP;
3374 : 236 : 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 : 12508 : static void wiphy_info_max_roc(struct wpa_driver_capa *capa,
3390 : : struct nlattr *tb)
3391 : : {
3392 [ + + ]: 12508 : if (tb)
3393 : 236 : capa->max_remain_on_chan = nla_get_u32(tb);
3394 : 12508 : }
3395 : :
3396 : :
3397 : 12508 : static void wiphy_info_tdls(struct wpa_driver_capa *capa, struct nlattr *tdls,
3398 : : struct nlattr *ext_setup)
3399 : : {
3400 [ + + ]: 12508 : if (tdls == NULL)
3401 : 12508 : return;
3402 : :
3403 : 236 : wpa_printf(MSG_DEBUG, "nl80211: TDLS supported");
3404 : 236 : capa->flags |= WPA_DRIVER_FLAGS_TDLS_SUPPORT;
3405 : :
3406 [ + - ]: 236 : if (ext_setup) {
3407 : 236 : wpa_printf(MSG_DEBUG, "nl80211: TDLS external setup");
3408 : 236 : capa->flags |= WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP;
3409 : : }
3410 : : }
3411 : :
3412 : :
3413 : 12508 : static void wiphy_info_feature_flags(struct wiphy_info_data *info,
3414 : : struct nlattr *tb)
3415 : : {
3416 : : u32 flags;
3417 : 12508 : struct wpa_driver_capa *capa = info->capa;
3418 : :
3419 [ + + ]: 12508 : if (tb == NULL)
3420 : 12508 : return;
3421 : :
3422 : 236 : flags = nla_get_u32(tb);
3423 : :
3424 [ + - ]: 236 : if (flags & NL80211_FEATURE_SK_TX_STATUS)
3425 : 236 : info->data_tx_status = 1;
3426 : :
3427 [ - + ]: 236 : if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
3428 : 0 : capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
3429 : :
3430 [ + - ]: 236 : if (flags & NL80211_FEATURE_SAE)
3431 : 236 : capa->flags |= WPA_DRIVER_FLAGS_SAE;
3432 : :
3433 [ - + ]: 236 : if (flags & NL80211_FEATURE_NEED_OBSS_SCAN)
3434 : 0 : capa->flags |= WPA_DRIVER_FLAGS_OBSS_SCAN;
3435 : : }
3436 : :
3437 : :
3438 : 12508 : static void wiphy_info_probe_resp_offload(struct wpa_driver_capa *capa,
3439 : : struct nlattr *tb)
3440 : : {
3441 : : u32 protocols;
3442 : :
3443 [ + - ]: 12508 : if (tb == NULL)
3444 : 12508 : 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 : 12508 : static int wiphy_info_handler(struct nl_msg *msg, void *arg)
3455 : : {
3456 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
3457 : 12508 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3458 : 12508 : struct wiphy_info_data *info = arg;
3459 : 12508 : struct wpa_driver_capa *capa = info->capa;
3460 : 12508 : struct wpa_driver_nl80211_data *drv = info->drv;
3461 : :
3462 : 12508 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3463 : : genlmsg_attrlen(gnlh, 0), NULL);
3464 : :
3465 [ + - ]: 12508 : if (tb[NL80211_ATTR_WIPHY_NAME])
3466 : 12508 : os_strlcpy(drv->phyname,
3467 : 12508 : nla_get_string(tb[NL80211_ATTR_WIPHY_NAME]),
3468 : : sizeof(drv->phyname));
3469 [ + + ]: 12508 : if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
3470 : 236 : capa->max_scan_ssids =
3471 : 236 : nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
3472 : :
3473 [ + + ]: 12508 : if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
3474 : 236 : capa->max_sched_scan_ssids =
3475 : 236 : nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
3476 : :
3477 [ + + ]: 12508 : if (tb[NL80211_ATTR_MAX_MATCH_SETS])
3478 : 236 : capa->max_match_sets =
3479 : 236 : nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
3480 : :
3481 [ - + ]: 12508 : 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 : 12508 : wiphy_info_supported_iftypes(info, tb[NL80211_ATTR_SUPPORTED_IFTYPES]);
3486 : 12508 : wiphy_info_iface_comb(info, tb[NL80211_ATTR_INTERFACE_COMBINATIONS]);
3487 : 12508 : wiphy_info_supp_cmds(info, tb[NL80211_ATTR_SUPPORTED_COMMANDS]);
3488 : 12508 : wiphy_info_cipher_suites(info, tb[NL80211_ATTR_CIPHER_SUITES]);
3489 : :
3490 [ + + ]: 12508 : if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK]) {
3491 : 236 : wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
3492 : : "off-channel TX");
3493 : 236 : capa->flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
3494 : : }
3495 : :
3496 [ - + ]: 12508 : 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 : 12508 : wiphy_info_max_roc(capa,
3502 : : tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
3503 : :
3504 [ + + ]: 12508 : if (tb[NL80211_ATTR_SUPPORT_AP_UAPSD])
3505 : 236 : capa->flags |= WPA_DRIVER_FLAGS_AP_UAPSD;
3506 : :
3507 : 12508 : wiphy_info_tdls(capa, tb[NL80211_ATTR_TDLS_SUPPORT],
3508 : : tb[NL80211_ATTR_TDLS_EXTERNAL_SETUP]);
3509 : :
3510 [ - + ]: 12508 : if (tb[NL80211_ATTR_DEVICE_AP_SME])
3511 : 0 : info->device_ap_sme = 1;
3512 : :
3513 : 12508 : wiphy_info_feature_flags(info, tb[NL80211_ATTR_FEATURE_FLAGS]);
3514 : 12508 : wiphy_info_probe_resp_offload(capa,
3515 : : tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]);
3516 : :
3517 [ + - ][ + - ]: 12508 : if (tb[NL80211_ATTR_EXT_CAPA] && tb[NL80211_ATTR_EXT_CAPA_MASK] &&
[ + + ]
3518 : 236 : drv->extended_capa == NULL) {
3519 : 236 : drv->extended_capa =
3520 : 236 : os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3521 [ + - ]: 236 : if (drv->extended_capa) {
3522 : 236 : os_memcpy(drv->extended_capa,
3523 : : nla_data(tb[NL80211_ATTR_EXT_CAPA]),
3524 : : nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3525 : 236 : drv->extended_capa_len =
3526 : 236 : nla_len(tb[NL80211_ATTR_EXT_CAPA]);
3527 : : }
3528 : 236 : drv->extended_capa_mask =
3529 : 236 : os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3530 [ + - ]: 236 : if (drv->extended_capa_mask) {
3531 : 236 : 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 [ + + ]: 12508 : if (tb[NL80211_ATTR_VENDOR_DATA]) {
3542 : : struct nlattr *nl;
3543 : : int rem;
3544 : :
3545 [ + + ]: 472 : nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_DATA], rem) {
3546 : : struct nl80211_vendor_cmd_info *vinfo;
3547 [ - + ]: 236 : if (nla_len(nl) != sizeof(vinfo)) {
3548 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
3549 : 0 : continue;
3550 : : }
3551 : 236 : vinfo = nla_data(nl);
3552 : 236 : wpa_printf(MSG_DEBUG, "nl80211: Supported vendor command: vendor_id=0x%x subcmd=%u",
3553 : : vinfo->vendor_id, vinfo->subcmd);
3554 : : }
3555 : : }
3556 : :
3557 [ + + ]: 12508 : if (tb[NL80211_ATTR_VENDOR_EVENTS]) {
3558 : : struct nlattr *nl;
3559 : : int rem;
3560 : :
3561 [ + + ]: 472 : nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_EVENTS], rem) {
3562 : : struct nl80211_vendor_cmd_info *vinfo;
3563 [ - + ]: 236 : if (nla_len(nl) != sizeof(vinfo)) {
3564 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
3565 : 0 : continue;
3566 : : }
3567 : 236 : vinfo = nla_data(nl);
3568 : 236 : wpa_printf(MSG_DEBUG, "nl80211: Supported vendor event: vendor_id=0x%x subcmd=%u",
3569 : : vinfo->vendor_id, vinfo->subcmd);
3570 : : }
3571 : : }
3572 : :
3573 : 12508 : return NL_SKIP;
3574 : : }
3575 : :
3576 : :
3577 : 236 : 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 : 236 : os_memset(info, 0, sizeof(*info));
3584 : 236 : info->capa = &drv->capa;
3585 : 236 : info->drv = drv;
3586 : :
3587 : 236 : msg = nlmsg_alloc();
3588 [ - + ]: 236 : if (!msg)
3589 : 0 : return -1;
3590 : :
3591 : 236 : feat = get_nl80211_protocol_features(drv);
3592 [ + - ]: 236 : if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
3593 : 236 : 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 [ + - ]: 236 : NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
3598 [ - + ]: 236 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
3599 : 0 : goto nla_put_failure;
3600 : :
3601 [ - + ]: 236 : if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info))
3602 : 0 : return -1;
3603 : :
3604 [ + - ]: 236 : if (info->auth_supported)
3605 : 236 : 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 [ + - ][ + - ]: 236 : if (info->p2p_go_supported && info->p2p_client_supported)
3613 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
3614 [ + - ]: 236 : if (info->p2p_concurrent) {
3615 : 236 : wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
3616 : : "interface (driver advertised support)");
3617 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
3618 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
3619 : : }
3620 [ - + ]: 236 : 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 [ - + ]: 236 : if (!drv->capa.max_remain_on_chan)
3629 : 0 : drv->capa.max_remain_on_chan = 5000;
3630 : :
3631 : 236 : return 0;
3632 : : nla_put_failure:
3633 : 0 : nlmsg_free(msg);
3634 : 236 : return -1;
3635 : : }
3636 : :
3637 : :
3638 : 236 : static int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
3639 : : {
3640 : : struct wiphy_info_data info;
3641 [ - + ]: 236 : if (wpa_driver_nl80211_get_info(drv, &info))
3642 : 0 : return -1;
3643 : :
3644 [ - + ]: 236 : if (info.error)
3645 : 0 : return -1;
3646 : :
3647 : 236 : drv->has_capability = 1;
3648 : 236 : 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 : 236 : drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
3653 : : WPA_DRIVER_AUTH_SHARED |
3654 : : WPA_DRIVER_AUTH_LEAP;
3655 : :
3656 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
3657 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
3658 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3659 : :
3660 [ + - ]: 236 : if (!info.device_ap_sme) {
3661 : 236 : 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 : 236 : drv->capa.flags |= WPA_DRIVER_FLAGS_AP_MLME;
3668 : : }
3669 : :
3670 : 236 : drv->device_ap_sme = info.device_ap_sme;
3671 : 236 : drv->poll_command_supported = info.poll_command_supported;
3672 : 236 : drv->data_tx_status = info.data_tx_status;
3673 : 236 : drv->channel_switch_supported = info.channel_switch_supported;
3674 [ + - ]: 236 : if (info.set_qos_map_supported)
3675 : 236 : 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 [ + - ][ - + ]: 236 : drv->use_monitor = !info.poll_command_supported || !info.data_tx_status;
3682 : :
3683 [ - + ][ # # ]: 236 : 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 [ + - ][ - + ]: 236 : if (!drv->use_monitor && !info.data_tx_status)
3703 : 0 : drv->capa.flags &= ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3704 : :
3705 : 236 : 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 : 5 : static int wpa_driver_nl80211_init_nl_global(struct nl80211_global *global)
3746 : : {
3747 : : int ret;
3748 : :
3749 : 5 : global->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3750 [ - + ]: 5 : 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 : 5 : global->nl = nl_create_handle(global->nl_cb, "nl");
3757 [ - + ]: 5 : if (global->nl == NULL)
3758 : 0 : goto err;
3759 : :
3760 : 5 : global->nl80211_id = genl_ctrl_resolve(global->nl, "nl80211");
3761 [ - + ]: 5 : 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 : 5 : global->nl_event = nl_create_handle(global->nl_cb, "event");
3768 [ - + ]: 5 : if (global->nl_event == NULL)
3769 : 0 : goto err;
3770 : :
3771 : 5 : ret = nl_get_multicast_id(global, "nl80211", "scan");
3772 [ + - ]: 5 : if (ret >= 0)
3773 : 5 : ret = nl_socket_add_membership(global->nl_event, ret);
3774 [ - + ]: 5 : 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 : 5 : ret = nl_get_multicast_id(global, "nl80211", "mlme");
3782 [ + - ]: 5 : if (ret >= 0)
3783 : 5 : ret = nl_socket_add_membership(global->nl_event, ret);
3784 [ - + ]: 5 : 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 : 5 : ret = nl_get_multicast_id(global, "nl80211", "regulatory");
3792 [ + - ]: 5 : if (ret >= 0)
3793 : 5 : ret = nl_socket_add_membership(global->nl_event, ret);
3794 [ - + ]: 5 : 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 : 5 : ret = nl_get_multicast_id(global, "nl80211", "vendor");
3802 [ + - ]: 5 : if (ret >= 0)
3803 : 5 : ret = nl_socket_add_membership(global->nl_event, ret);
3804 [ - + ]: 5 : 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 : 5 : nl_cb_set(global->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3812 : : no_seq_check, NULL);
3813 : 5 : nl_cb_set(global->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3814 : : process_global_event, global);
3815 : :
3816 : 5 : nl80211_register_eloop_read(&global->nl_event,
3817 : : wpa_driver_nl80211_event_receive,
3818 : 5 : global->nl_cb);
3819 : :
3820 : 5 : 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 : 5 : return -1;
3828 : : }
3829 : :
3830 : :
3831 : 236 : static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv)
3832 : : {
3833 : 236 : drv->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3834 [ - + ]: 236 : if (!drv->nl_cb) {
3835 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to alloc cb struct");
3836 : 0 : return -1;
3837 : : }
3838 : :
3839 : 236 : nl_cb_set(drv->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3840 : : no_seq_check, NULL);
3841 : 236 : nl_cb_set(drv->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3842 : : process_drv_event, drv);
3843 : :
3844 : 236 : 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 : 1989 : static void wpa_driver_nl80211_handle_eapol_tx_status(int sock,
3872 : : void *eloop_ctx,
3873 : : void *handle)
3874 : : {
3875 : 1989 : 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 : 1989 : int res, found_ee = 0, found_wifi = 0, acked = 0;
3882 : : union wpa_event_data event;
3883 : :
3884 : 1989 : memset(&msg, 0, sizeof(msg));
3885 : 1989 : msg.msg_iov = &entry;
3886 : 1989 : msg.msg_iovlen = 1;
3887 : 1989 : entry.iov_base = data;
3888 : 1989 : entry.iov_len = sizeof(data);
3889 : 1989 : msg.msg_control = &control;
3890 : 1989 : msg.msg_controllen = sizeof(control);
3891 : :
3892 : 1989 : res = recvmsg(sock, &msg, MSG_ERRQUEUE);
3893 : : /* if error or not fitting 802.3 header, return */
3894 [ - + ]: 1989 : if (res < 14)
3895 : 0 : return;
3896 : :
3897 [ + - ][ + + ]: 5967 : for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg))
3898 : : {
3899 [ + + ][ + - ]: 3978 : if (cmsg->cmsg_level == SOL_SOCKET &&
3900 : 1989 : cmsg->cmsg_type == SCM_WIFI_STATUS) {
3901 : : int *ack;
3902 : :
3903 : 1989 : found_wifi = 1;
3904 : 1989 : ack = (void *)CMSG_DATA(cmsg);
3905 : 1989 : acked = *ack;
3906 : : }
3907 : :
3908 [ + + ][ + - ]: 3978 : if (cmsg->cmsg_level == SOL_PACKET &&
3909 : 1989 : cmsg->cmsg_type == PACKET_TX_TIMESTAMP) {
3910 : 1989 : struct sock_extended_err *err =
3911 : : (struct sock_extended_err *)CMSG_DATA(cmsg);
3912 : :
3913 [ + - ]: 1989 : if (err->ee_origin == SO_EE_ORIGIN_TXSTATUS)
3914 : 1989 : found_ee = 1;
3915 : : }
3916 : : }
3917 : :
3918 [ + - ][ - + ]: 1989 : if (!found_ee || !found_wifi)
3919 : 0 : return;
3920 : :
3921 : 1989 : memset(&event, 0, sizeof(event));
3922 : 1989 : event.eapol_tx_status.dst = data;
3923 : 1989 : event.eapol_tx_status.data = data + 14;
3924 : 1989 : event.eapol_tx_status.data_len = res - 14;
3925 : 1989 : event.eapol_tx_status.ack = acked;
3926 : 1989 : wpa_supplicant_event(drv->ctx, EVENT_EAPOL_TX_STATUS, &event);
3927 : : }
3928 : :
3929 : :
3930 : 253 : static int nl80211_init_bss(struct i802_bss *bss)
3931 : : {
3932 : 253 : bss->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3933 [ - + ]: 253 : if (!bss->nl_cb)
3934 : 0 : return -1;
3935 : :
3936 : 253 : nl_cb_set(bss->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3937 : : no_seq_check, NULL);
3938 : 253 : nl_cb_set(bss->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3939 : : process_bss_event, bss);
3940 : :
3941 : 253 : return 0;
3942 : : }
3943 : :
3944 : :
3945 : 253 : static void nl80211_destroy_bss(struct i802_bss *bss)
3946 : : {
3947 : 253 : nl_cb_put(bss->nl_cb);
3948 : 253 : bss->nl_cb = NULL;
3949 : 253 : }
3950 : :
3951 : :
3952 : 236 : 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 [ - + ]: 236 : if (global_priv == NULL)
3961 : 0 : return NULL;
3962 : 236 : drv = os_zalloc(sizeof(*drv));
3963 [ - + ]: 236 : if (drv == NULL)
3964 : 0 : return NULL;
3965 : 236 : drv->global = global_priv;
3966 : 236 : drv->ctx = ctx;
3967 : 236 : drv->hostapd = !!hostapd;
3968 : 236 : drv->eapol_sock = -1;
3969 : 236 : drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
3970 : 236 : drv->if_indices = drv->default_if_indices;
3971 : :
3972 : 236 : drv->first_bss = os_zalloc(sizeof(*drv->first_bss));
3973 [ - + ]: 236 : if (!drv->first_bss) {
3974 : 0 : os_free(drv);
3975 : 0 : return NULL;
3976 : : }
3977 : 236 : bss = drv->first_bss;
3978 : 236 : bss->drv = drv;
3979 : 236 : bss->ctx = ctx;
3980 : :
3981 : 236 : os_strlcpy(bss->ifname, ifname, sizeof(bss->ifname));
3982 : 236 : drv->monitor_ifidx = -1;
3983 : 236 : drv->monitor_sock = -1;
3984 : 236 : drv->eapol_tx_sock = -1;
3985 : 236 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
3986 : :
3987 [ - + ]: 236 : if (wpa_driver_nl80211_init_nl(drv)) {
3988 : 0 : os_free(drv);
3989 : 0 : return NULL;
3990 : : }
3991 : :
3992 [ - + ]: 236 : if (nl80211_init_bss(bss))
3993 : 0 : goto failed;
3994 : :
3995 : 236 : rcfg = os_zalloc(sizeof(*rcfg));
3996 [ - + ]: 236 : if (rcfg == NULL)
3997 : 0 : goto failed;
3998 : 236 : rcfg->ctx = drv;
3999 : 236 : os_strlcpy(rcfg->ifname, ifname, sizeof(rcfg->ifname));
4000 : 236 : rcfg->blocked_cb = wpa_driver_nl80211_rfkill_blocked;
4001 : 236 : rcfg->unblocked_cb = wpa_driver_nl80211_rfkill_unblocked;
4002 : 236 : drv->rfkill = rfkill_init(rcfg);
4003 [ - + ]: 236 : if (drv->rfkill == NULL) {
4004 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL status not available");
4005 : 0 : os_free(rcfg);
4006 : : }
4007 : :
4008 [ - + ]: 236 : if (linux_iface_up(drv->global->ioctl_sock, ifname) > 0)
4009 : 0 : drv->start_iface_up = 1;
4010 : :
4011 [ - + ]: 236 : if (wpa_driver_nl80211_finish_drv_init(drv, set_addr, 1))
4012 : 0 : goto failed;
4013 : :
4014 : 236 : drv->eapol_tx_sock = socket(PF_PACKET, SOCK_DGRAM, 0);
4015 [ - + ]: 236 : if (drv->eapol_tx_sock < 0)
4016 : 0 : goto failed;
4017 : :
4018 [ + - ]: 236 : if (drv->data_tx_status) {
4019 : 236 : int enabled = 1;
4020 : :
4021 [ - + ]: 236 : 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 : 236 : eloop_register_read_sock(drv->eapol_tx_sock,
4031 : : wpa_driver_nl80211_handle_eapol_tx_status,
4032 : : drv, NULL);
4033 : : }
4034 : : }
4035 : :
4036 [ + - ]: 236 : if (drv->global) {
4037 : 236 : dl_list_add(&drv->global->interfaces, &drv->list);
4038 : 236 : drv->in_interface_list = 1;
4039 : : }
4040 : :
4041 : 236 : return bss;
4042 : :
4043 : : failed:
4044 : 0 : wpa_driver_nl80211_deinit(bss);
4045 : 236 : 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 : 33 : static void * wpa_driver_nl80211_init(void *ctx, const char *ifname,
4058 : : void *global_priv)
4059 : : {
4060 : 33 : return wpa_driver_nl80211_drv_init(ctx, ifname, global_priv, 0, NULL);
4061 : : }
4062 : :
4063 : :
4064 : 4837 : 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 : 4837 : struct wpa_driver_nl80211_data *drv = bss->drv;
4069 : : struct nl_msg *msg;
4070 : 4837 : int ret = -1;
4071 : : char buf[30];
4072 : :
4073 : 4837 : msg = nlmsg_alloc();
4074 [ - + ]: 4837 : if (!msg)
4075 : 0 : return -1;
4076 : :
4077 : 4837 : buf[0] = '\0';
4078 : 4837 : wpa_snprintf_hex(buf, sizeof(buf), match, match_len);
4079 : 4837 : wpa_printf(MSG_DEBUG, "nl80211: Register frame type=0x%x nl_handle=%p match=%s",
4080 : : type, nl_handle, buf);
4081 : :
4082 : 4837 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_ACTION);
4083 : :
4084 [ - + ]: 4837 : if (nl80211_set_iface_id(msg, bss) < 0)
4085 : 0 : goto nla_put_failure;
4086 : :
4087 [ + - ]: 4837 : NLA_PUT_U16(msg, NL80211_ATTR_FRAME_TYPE, type);
4088 [ + - ]: 4837 : NLA_PUT(msg, NL80211_ATTR_FRAME_MATCH, match_len, match);
4089 : :
4090 : 4837 : ret = send_and_recv(drv->global, nl_handle, msg, NULL, NULL);
4091 : 4837 : msg = NULL;
4092 [ - + ]: 4837 : 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 : 4837 : ret = 0;
4101 : : nla_put_failure:
4102 : 4837 : nlmsg_free(msg);
4103 : 4837 : return ret;
4104 : : }
4105 : :
4106 : :
4107 : 480 : static int nl80211_alloc_mgmt_handle(struct i802_bss *bss)
4108 : : {
4109 : 480 : struct wpa_driver_nl80211_data *drv = bss->drv;
4110 : :
4111 [ - + ]: 480 : 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 : 480 : bss->nl_mgmt = nl_create_handle(drv->nl_cb, "mgmt");
4118 [ - + ]: 480 : if (bss->nl_mgmt == NULL)
4119 : 0 : return -1;
4120 : :
4121 : 480 : return 0;
4122 : : }
4123 : :
4124 : :
4125 : 480 : static void nl80211_mgmt_handle_register_eloop(struct i802_bss *bss)
4126 : : {
4127 : 480 : nl80211_register_eloop_read(&bss->nl_mgmt,
4128 : : wpa_driver_nl80211_event_receive,
4129 : 480 : bss->nl_cb);
4130 : 480 : }
4131 : :
4132 : :
4133 : 2304 : static int nl80211_register_action_frame(struct i802_bss *bss,
4134 : : const u8 *match, size_t match_len)
4135 : : {
4136 : 2304 : u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_ACTION << 4);
4137 : 2304 : return nl80211_register_frame(bss, bss->nl_mgmt,
4138 : : type, match, match_len);
4139 : : }
4140 : :
4141 : :
4142 : 192 : static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss)
4143 : : {
4144 : 192 : struct wpa_driver_nl80211_data *drv = bss->drv;
4145 : 192 : int ret = 0;
4146 : :
4147 [ - + ]: 192 : if (nl80211_alloc_mgmt_handle(bss))
4148 : 0 : return -1;
4149 : 192 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with non-AP "
4150 : : "handle %p", bss->nl_mgmt);
4151 : :
4152 [ + + ]: 192 : 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 [ - + ]: 192 : 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 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0a", 2) < 0)
4167 : 0 : ret = -1;
4168 : : /* GAS Initial Response */
4169 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0b", 2) < 0)
4170 : 0 : ret = -1;
4171 : : /* GAS Comeback Request */
4172 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0c", 2) < 0)
4173 : 0 : ret = -1;
4174 : : /* GAS Comeback Response */
4175 [ - + ]: 192 : 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 [ - + ]: 192 : 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 [ - + ]: 192 : 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 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x08\x01", 2) < 0)
4193 : 0 : ret = -1;
4194 : : #endif /* CONFIG_IEEE80211W */
4195 : : #ifdef CONFIG_TDLS
4196 [ + - ]: 192 : if ((drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT)) {
4197 : : /* TDLS Discovery Response */
4198 [ - + ]: 192 : 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 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x06", 1) < 0)
4206 : 0 : ret = -1;
4207 : : else
4208 : 192 : 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 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x07", 2) < 0)
4213 : 0 : ret = -1;
4214 : : /* WNM-Sleep Mode Response */
4215 [ - + ]: 192 : if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x11", 2) < 0)
4216 : 0 : ret = -1;
4217 : :
4218 : 192 : nl80211_mgmt_handle_register_eloop(bss);
4219 : :
4220 : 192 : return ret;
4221 : : }
4222 : :
4223 : :
4224 : 288 : static int nl80211_register_spurious_class3(struct i802_bss *bss)
4225 : : {
4226 : 288 : struct wpa_driver_nl80211_data *drv = bss->drv;
4227 : : struct nl_msg *msg;
4228 : 288 : int ret = -1;
4229 : :
4230 : 288 : msg = nlmsg_alloc();
4231 [ - + ]: 288 : if (!msg)
4232 : 0 : return -1;
4233 : :
4234 : 288 : nl80211_cmd(drv, msg, 0, NL80211_CMD_UNEXPECTED_FRAME);
4235 : :
4236 [ + - ]: 288 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
4237 : :
4238 : 288 : ret = send_and_recv(drv->global, bss->nl_mgmt, msg, NULL, NULL);
4239 : 288 : msg = NULL;
4240 [ - + ]: 288 : 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 : 288 : ret = 0;
4247 : : nla_put_failure:
4248 : 288 : nlmsg_free(msg);
4249 : 288 : return ret;
4250 : : }
4251 : :
4252 : :
4253 : 288 : 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 [ - + ]: 288 : if (nl80211_alloc_mgmt_handle(bss))
4273 : 0 : return -1;
4274 : 288 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
4275 : : "handle %p", bss->nl_mgmt);
4276 : :
4277 [ + + ]: 2304 : for (i = 0; i < ARRAY_SIZE(stypes); i++) {
4278 [ - + ]: 2016 : if (nl80211_register_frame(bss, bss->nl_mgmt,
4279 : : (WLAN_FC_TYPE_MGMT << 2) |
4280 : 2016 : (stypes[i] << 4),
4281 : : NULL, 0) < 0) {
4282 : 0 : goto out_err;
4283 : : }
4284 : : }
4285 : :
4286 [ - + ]: 288 : if (nl80211_register_spurious_class3(bss))
4287 : 0 : goto out_err;
4288 : :
4289 [ - + ]: 288 : if (nl80211_get_wiphy_data_ap(bss) == NULL)
4290 : 0 : goto out_err;
4291 : :
4292 : 288 : nl80211_mgmt_handle_register_eloop(bss);
4293 : 288 : return 0;
4294 : :
4295 : : out_err:
4296 : 0 : nl_destroy_handles(&bss->nl_mgmt);
4297 : 288 : 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 : 952 : static void nl80211_mgmt_unsubscribe(struct i802_bss *bss, const char *reason)
4324 : : {
4325 [ + + ]: 952 : if (bss->nl_mgmt == NULL)
4326 : 952 : return;
4327 : 480 : wpa_printf(MSG_DEBUG, "nl80211: Unsubscribe mgmt frames handle %p "
4328 : : "(%s)", bss->nl_mgmt, reason);
4329 : 480 : nl80211_destroy_eloop_handle(&bss->nl_mgmt);
4330 : :
4331 : 480 : 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 : 236 : static int i802_set_iface_flags(struct i802_bss *bss, int up)
4398 : : {
4399 : : enum nl80211_iftype nlmode;
4400 : :
4401 : 236 : nlmode = nl80211_get_ifmode(bss);
4402 [ + - ]: 236 : if (nlmode != NL80211_IFTYPE_P2P_DEVICE) {
4403 : 236 : return linux_set_iface_flags(bss->drv->global->ioctl_sock,
4404 : 236 : bss->ifname, up);
4405 : : }
4406 : :
4407 : : /* P2P Device has start/stop which is equivalent */
4408 : 236 : return nl80211_set_p2pdev(bss, up);
4409 : : }
4410 : :
4411 : :
4412 : : static int
4413 : 236 : wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv,
4414 : : const u8 *set_addr, int first)
4415 : : {
4416 : 236 : struct i802_bss *bss = drv->first_bss;
4417 : 236 : int send_rfkill_event = 0;
4418 : : enum nl80211_iftype nlmode;
4419 : :
4420 : 236 : drv->ifindex = if_nametoindex(bss->ifname);
4421 : 236 : bss->ifindex = drv->ifindex;
4422 : 236 : bss->wdev_id = drv->global->if_add_wdevid;
4423 : 236 : bss->wdev_id_set = drv->global->if_add_wdevid_set;
4424 : :
4425 : 236 : bss->if_dynamic = drv->ifindex == drv->global->if_add_ifindex;
4426 [ - + ][ + + ]: 236 : bss->if_dynamic = bss->if_dynamic || drv->global->if_add_wdevid_set;
4427 : 236 : drv->global->if_add_wdevid_set = 0;
4428 : :
4429 [ - + ]: 236 : if (wpa_driver_nl80211_capa(drv))
4430 : 0 : return -1;
4431 : :
4432 : 236 : wpa_printf(MSG_DEBUG, "nl80211: interface %s in phy %s",
4433 : 236 : bss->ifname, drv->phyname);
4434 : :
4435 [ + + + - ]: 242 : if (set_addr &&
4436 [ - + ]: 12 : (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0) ||
4437 : 6 : linux_set_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
4438 : : set_addr)))
4439 : 0 : return -1;
4440 : :
4441 [ + - ][ - + ]: 236 : if (first && nl80211_get_ifmode(bss) == NL80211_IFTYPE_AP)
4442 : 0 : drv->start_mode_ap = 1;
4443 : :
4444 [ + + ]: 236 : if (drv->hostapd)
4445 : 203 : nlmode = NL80211_IFTYPE_AP;
4446 [ + + ]: 33 : else if (bss->if_dynamic)
4447 : 22 : nlmode = nl80211_get_ifmode(bss);
4448 : : else
4449 : 11 : nlmode = NL80211_IFTYPE_STATION;
4450 : :
4451 [ - + ]: 236 : 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 [ - + ]: 236 : 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 [ - + ]: 236 : 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 [ + + ]: 236 : if (!drv->hostapd)
4479 : 33 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
4480 : : 1, IF_OPER_DORMANT);
4481 : :
4482 [ - + ]: 236 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
4483 : 236 : bss->addr))
4484 : 0 : return -1;
4485 : :
4486 [ - + ]: 236 : if (send_rfkill_event) {
4487 : 0 : eloop_register_timeout(0, 0, wpa_driver_nl80211_send_rfkill,
4488 : : drv, drv->ctx);
4489 : : }
4490 : :
4491 : 236 : return 0;
4492 : : }
4493 : :
4494 : :
4495 : 273 : static int wpa_driver_nl80211_del_beacon(struct wpa_driver_nl80211_data *drv)
4496 : : {
4497 : : struct nl_msg *msg;
4498 : :
4499 : 273 : msg = nlmsg_alloc();
4500 [ - + ]: 273 : if (!msg)
4501 : 0 : return -ENOMEM;
4502 : :
4503 : 273 : wpa_printf(MSG_DEBUG, "nl80211: Remove beacon (ifindex=%d)",
4504 : : drv->ifindex);
4505 : 273 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_BEACON);
4506 [ + - ]: 273 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4507 : :
4508 : 273 : return send_and_recv_msgs(drv, msg, NULL, NULL);
4509 : : nla_put_failure:
4510 : 0 : nlmsg_free(msg);
4511 : 273 : 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 : 236 : static void wpa_driver_nl80211_deinit(struct i802_bss *bss)
4523 : : {
4524 : 236 : struct wpa_driver_nl80211_data *drv = bss->drv;
4525 : :
4526 : 236 : bss->in_deinit = 1;
4527 [ + - ]: 236 : if (drv->data_tx_status)
4528 : 236 : eloop_unregister_read_sock(drv->eapol_tx_sock);
4529 [ + - ]: 236 : if (drv->eapol_tx_sock >= 0)
4530 : 236 : close(drv->eapol_tx_sock);
4531 : :
4532 [ - + ]: 236 : if (bss->nl_preq)
4533 : 0 : wpa_driver_nl80211_probe_req_report(bss, 0);
4534 [ - + ]: 236 : 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 [ - + ]: 236 : 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 : 236 : nl80211_remove_monitor_interface(drv);
4549 : :
4550 [ + + ]: 236 : if (is_ap_interface(drv->nlmode))
4551 : 213 : wpa_driver_nl80211_del_beacon(drv);
4552 : :
4553 [ + + ]: 236 : if (drv->eapol_sock >= 0) {
4554 : 203 : eloop_unregister_read_sock(drv->eapol_sock);
4555 : 203 : close(drv->eapol_sock);
4556 : : }
4557 : :
4558 [ - + ]: 236 : if (drv->if_indices != drv->default_if_indices)
4559 : 0 : os_free(drv->if_indices);
4560 : :
4561 [ + + ]: 236 : if (drv->disabled_11b_rates)
4562 : 11 : nl80211_disable_11b_rates(drv, drv->ifindex, 0);
4563 : :
4564 : 236 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, 0,
4565 : : IF_OPER_UP);
4566 : 236 : rfkill_deinit(drv->rfkill);
4567 : :
4568 : 236 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
4569 : :
4570 [ + - ]: 236 : if (!drv->start_iface_up)
4571 : 236 : (void) i802_set_iface_flags(bss, 0);
4572 [ + - ]: 236 : if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE) {
4573 [ + + ][ + - ]: 236 : if (!drv->hostapd || !drv->start_mode_ap)
4574 : 236 : wpa_driver_nl80211_set_mode(bss,
4575 : : NL80211_IFTYPE_STATION);
4576 : 236 : nl80211_mgmt_unsubscribe(bss, "deinit");
4577 : : } else {
4578 : 0 : nl80211_mgmt_unsubscribe(bss, "deinit");
4579 : 0 : nl80211_del_p2pdev(bss);
4580 : : }
4581 : 236 : nl_cb_put(drv->nl_cb);
4582 : :
4583 : 236 : nl80211_destroy_bss(drv->first_bss);
4584 : :
4585 : 236 : os_free(drv->filter_ssids);
4586 : :
4587 : 236 : os_free(drv->auth_ie);
4588 : :
4589 [ + - ]: 236 : if (drv->in_interface_list)
4590 : 236 : dl_list_del(&drv->list);
4591 : :
4592 : 236 : os_free(drv->extended_capa);
4593 : 236 : os_free(drv->extended_capa_mask);
4594 : 236 : os_free(drv->first_bss);
4595 : 236 : os_free(drv);
4596 : 236 : }
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 : 938 : 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 : 938 : msg = nlmsg_alloc();
4628 [ - + ]: 938 : if (!msg)
4629 : 0 : return NULL;
4630 : :
4631 : 938 : nl80211_cmd(drv, msg, 0, cmd);
4632 : :
4633 [ + - ]: 938 : if (!wdev_id)
4634 [ + - ]: 938 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4635 : : else
4636 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, *wdev_id);
4637 : :
4638 [ + + ]: 938 : if (params->num_ssids) {
4639 : : struct nlattr *ssids;
4640 : :
4641 : 912 : ssids = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
4642 [ - + ]: 912 : if (ssids == NULL)
4643 : 0 : goto fail;
4644 [ + + ]: 1824 : for (i = 0; i < params->num_ssids; i++) {
4645 : 912 : wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan SSID",
4646 : 912 : params->ssids[i].ssid,
4647 : : params->ssids[i].ssid_len);
4648 [ - + ]: 912 : if (nla_put(msg, i + 1, params->ssids[i].ssid_len,
4649 : 912 : params->ssids[i].ssid) < 0)
4650 : 0 : goto fail;
4651 : : }
4652 : 912 : nla_nest_end(msg, ssids);
4653 : : }
4654 : :
4655 [ + + ]: 938 : if (params->extra_ies) {
4656 : 913 : wpa_hexdump(MSG_MSGDUMP, "nl80211: Scan extra IEs",
4657 : 913 : params->extra_ies, params->extra_ies_len);
4658 [ - + ]: 913 : if (nla_put(msg, NL80211_ATTR_IE, params->extra_ies_len,
4659 : 913 : params->extra_ies) < 0)
4660 : 0 : goto fail;
4661 : : }
4662 : :
4663 [ + + ]: 938 : if (params->freqs) {
4664 : : struct nlattr *freqs;
4665 : 827 : freqs = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
4666 [ - + ]: 827 : if (freqs == NULL)
4667 : 0 : goto fail;
4668 [ + + ]: 2755 : for (i = 0; params->freqs[i]; i++) {
4669 : 1928 : wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
4670 : 1928 : "MHz", params->freqs[i]);
4671 [ - + ]: 1928 : if (nla_put_u32(msg, i + 1, params->freqs[i]) < 0)
4672 : 0 : goto fail;
4673 : : }
4674 : 827 : nla_nest_end(msg, freqs);
4675 : : }
4676 : :
4677 : 938 : os_free(drv->filter_ssids);
4678 : 938 : drv->filter_ssids = params->filter_ssids;
4679 : 938 : params->filter_ssids = NULL;
4680 : 938 : drv->num_filter_ssids = params->num_filter_ssids;
4681 : :
4682 [ + + ]: 938 : if (params->only_new_results) {
4683 : 323 : wpa_printf(MSG_DEBUG, "nl80211: Add NL80211_SCAN_FLAG_FLUSH");
4684 [ + - ]: 323 : NLA_PUT_U32(msg, NL80211_ATTR_SCAN_FLAGS,
4685 : : NL80211_SCAN_FLAG_FLUSH);
4686 : : }
4687 : :
4688 : 938 : return msg;
4689 : :
4690 : : fail:
4691 : : nla_put_failure:
4692 : 0 : nlmsg_free(msg);
4693 : 938 : return NULL;
4694 : : }
4695 : :
4696 : :
4697 : : /**
4698 : : * wpa_driver_nl80211_scan - Request the driver to initiate scan
4699 : : * @bss: Pointer to private driver data from wpa_driver_nl80211_init()
4700 : : * @params: Scan parameters
4701 : : * Returns: 0 on success, -1 on failure
4702 : : */
4703 : 938 : static int wpa_driver_nl80211_scan(struct i802_bss *bss,
4704 : : struct wpa_driver_scan_params *params)
4705 : : {
4706 : 938 : struct wpa_driver_nl80211_data *drv = bss->drv;
4707 : 938 : int ret = -1, timeout;
4708 : 938 : struct nl_msg *msg = NULL;
4709 : :
4710 : 938 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: scan request");
4711 : 938 : drv->scan_for_auth = 0;
4712 : :
4713 [ - + ]: 938 : msg = nl80211_scan_common(drv, NL80211_CMD_TRIGGER_SCAN, params,
4714 : 938 : bss->wdev_id_set ? &bss->wdev_id : NULL);
4715 [ - + ]: 938 : if (!msg)
4716 : 0 : return -1;
4717 : :
4718 [ + + ]: 938 : if (params->p2p_probe) {
4719 : : struct nlattr *rates;
4720 : :
4721 : 526 : wpa_printf(MSG_DEBUG, "nl80211: P2P probe - mask SuppRates");
4722 : :
4723 : 526 : rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES);
4724 [ - + ]: 526 : if (rates == NULL)
4725 : 0 : goto nla_put_failure;
4726 : :
4727 : : /*
4728 : : * Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
4729 : : * by masking out everything else apart from the OFDM rates 6,
4730 : : * 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
4731 : : * rates are left enabled.
4732 : : */
4733 [ + - ]: 526 : NLA_PUT(msg, NL80211_BAND_2GHZ, 8,
4734 : : "\x0c\x12\x18\x24\x30\x48\x60\x6c");
4735 : 526 : nla_nest_end(msg, rates);
4736 : :
4737 [ + - ]: 526 : NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
4738 : : }
4739 : :
4740 : 938 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4741 : 938 : msg = NULL;
4742 [ - + ]: 938 : if (ret) {
4743 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan trigger failed: ret=%d "
4744 : : "(%s)", ret, strerror(-ret));
4745 [ # # ][ # # ]: 0 : if (drv->hostapd && is_ap_interface(drv->nlmode)) {
4746 : : /*
4747 : : * mac80211 does not allow scan requests in AP mode, so
4748 : : * try to do this in station mode.
4749 : : */
4750 [ # # ]: 0 : if (wpa_driver_nl80211_set_mode(
4751 : : bss, NL80211_IFTYPE_STATION))
4752 : 0 : goto nla_put_failure;
4753 : :
4754 [ # # ]: 0 : if (wpa_driver_nl80211_scan(bss, params)) {
4755 : 0 : wpa_driver_nl80211_set_mode(bss, drv->nlmode);
4756 : 0 : goto nla_put_failure;
4757 : : }
4758 : :
4759 : : /* Restore AP mode when processing scan results */
4760 : 0 : drv->ap_scan_as_station = drv->nlmode;
4761 : 0 : ret = 0;
4762 : : } else
4763 : : goto nla_put_failure;
4764 : : }
4765 : :
4766 : 938 : drv->scan_state = SCAN_REQUESTED;
4767 : : /* Not all drivers generate "scan completed" wireless event, so try to
4768 : : * read results after a timeout. */
4769 : 938 : timeout = 10;
4770 [ + + ]: 938 : if (drv->scan_complete_events) {
4771 : : /*
4772 : : * The driver seems to deliver events to notify when scan is
4773 : : * complete, so use longer timeout to avoid race conditions
4774 : : * with scanning and following association request.
4775 : : */
4776 : 903 : timeout = 30;
4777 : : }
4778 : 938 : wpa_printf(MSG_DEBUG, "Scan requested (ret=%d) - scan timeout %d "
4779 : : "seconds", ret, timeout);
4780 : 938 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
4781 : 938 : eloop_register_timeout(timeout, 0, wpa_driver_nl80211_scan_timeout,
4782 : : drv, drv->ctx);
4783 : :
4784 : : nla_put_failure:
4785 : 938 : nlmsg_free(msg);
4786 : 938 : return ret;
4787 : : }
4788 : :
4789 : :
4790 : : /**
4791 : : * wpa_driver_nl80211_sched_scan - Initiate a scheduled scan
4792 : : * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
4793 : : * @params: Scan parameters
4794 : : * @interval: Interval between scan cycles in milliseconds
4795 : : * Returns: 0 on success, -1 on failure or if not supported
4796 : : */
4797 : 0 : static int wpa_driver_nl80211_sched_scan(void *priv,
4798 : : struct wpa_driver_scan_params *params,
4799 : : u32 interval)
4800 : : {
4801 : 0 : struct i802_bss *bss = priv;
4802 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4803 : 0 : int ret = -1;
4804 : : struct nl_msg *msg;
4805 : : size_t i;
4806 : :
4807 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: sched_scan request");
4808 : :
4809 : : #ifdef ANDROID
4810 : : if (!drv->capa.sched_scan_supported)
4811 : : return android_pno_start(bss, params);
4812 : : #endif /* ANDROID */
4813 : :
4814 [ # # ]: 0 : msg = nl80211_scan_common(drv, NL80211_CMD_START_SCHED_SCAN, params,
4815 : 0 : bss->wdev_id_set ? &bss->wdev_id : NULL);
4816 [ # # ]: 0 : if (!msg)
4817 : 0 : goto nla_put_failure;
4818 : :
4819 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, interval);
4820 : :
4821 [ # # ][ # # ]: 0 : if ((drv->num_filter_ssids &&
4822 [ # # ]: 0 : (int) drv->num_filter_ssids <= drv->capa.max_match_sets) ||
4823 : 0 : params->filter_rssi) {
4824 : : struct nlattr *match_sets;
4825 : 0 : match_sets = nla_nest_start(msg, NL80211_ATTR_SCHED_SCAN_MATCH);
4826 [ # # ]: 0 : if (match_sets == NULL)
4827 : 0 : goto nla_put_failure;
4828 : :
4829 [ # # ]: 0 : for (i = 0; i < drv->num_filter_ssids; i++) {
4830 : : struct nlattr *match_set_ssid;
4831 : 0 : wpa_hexdump_ascii(MSG_MSGDUMP,
4832 : : "nl80211: Sched scan filter SSID",
4833 : 0 : drv->filter_ssids[i].ssid,
4834 : 0 : drv->filter_ssids[i].ssid_len);
4835 : :
4836 : 0 : match_set_ssid = nla_nest_start(msg, i + 1);
4837 [ # # ]: 0 : if (match_set_ssid == NULL)
4838 : 0 : goto nla_put_failure;
4839 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_SCHED_SCAN_MATCH_SSID,
4840 : : drv->filter_ssids[i].ssid_len,
4841 : : drv->filter_ssids[i].ssid);
4842 : :
4843 : 0 : nla_nest_end(msg, match_set_ssid);
4844 : : }
4845 : :
4846 [ # # ]: 0 : if (params->filter_rssi) {
4847 : : struct nlattr *match_set_rssi;
4848 : 0 : match_set_rssi = nla_nest_start(msg, 0);
4849 [ # # ]: 0 : if (match_set_rssi == NULL)
4850 : 0 : goto nla_put_failure;
4851 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_SCHED_SCAN_MATCH_ATTR_RSSI,
4852 : : params->filter_rssi);
4853 : 0 : wpa_printf(MSG_MSGDUMP,
4854 : : "nl80211: Sched scan RSSI filter %d dBm",
4855 : : params->filter_rssi);
4856 : 0 : nla_nest_end(msg, match_set_rssi);
4857 : : }
4858 : :
4859 : 0 : nla_nest_end(msg, match_sets);
4860 : : }
4861 : :
4862 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4863 : :
4864 : : /* TODO: if we get an error here, we should fall back to normal scan */
4865 : :
4866 : 0 : msg = NULL;
4867 [ # # ]: 0 : if (ret) {
4868 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan start failed: "
4869 : : "ret=%d (%s)", ret, strerror(-ret));
4870 : 0 : goto nla_put_failure;
4871 : : }
4872 : :
4873 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan requested (ret=%d) - "
4874 : : "scan interval %d msec", ret, interval);
4875 : :
4876 : : nla_put_failure:
4877 : 0 : nlmsg_free(msg);
4878 : 0 : return ret;
4879 : : }
4880 : :
4881 : :
4882 : : /**
4883 : : * wpa_driver_nl80211_stop_sched_scan - Stop a scheduled scan
4884 : : * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
4885 : : * Returns: 0 on success, -1 on failure or if not supported
4886 : : */
4887 : 0 : static int wpa_driver_nl80211_stop_sched_scan(void *priv)
4888 : : {
4889 : 0 : struct i802_bss *bss = priv;
4890 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4891 : 0 : int ret = 0;
4892 : : struct nl_msg *msg;
4893 : :
4894 : : #ifdef ANDROID
4895 : : if (!drv->capa.sched_scan_supported)
4896 : : return android_pno_stop(bss);
4897 : : #endif /* ANDROID */
4898 : :
4899 : 0 : msg = nlmsg_alloc();
4900 [ # # ]: 0 : if (!msg)
4901 : 0 : return -1;
4902 : :
4903 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_SCHED_SCAN);
4904 : :
4905 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4906 : :
4907 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4908 : 0 : msg = NULL;
4909 [ # # ]: 0 : if (ret) {
4910 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop failed: "
4911 : : "ret=%d (%s)", ret, strerror(-ret));
4912 : 0 : goto nla_put_failure;
4913 : : }
4914 : :
4915 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop sent (ret=%d)", ret);
4916 : :
4917 : : nla_put_failure:
4918 : 0 : nlmsg_free(msg);
4919 : 0 : return ret;
4920 : : }
4921 : :
4922 : :
4923 : 584 : static const u8 * nl80211_get_ie(const u8 *ies, size_t ies_len, u8 ie)
4924 : : {
4925 : : const u8 *end, *pos;
4926 : :
4927 [ - + ]: 584 : if (ies == NULL)
4928 : 0 : return NULL;
4929 : :
4930 : 584 : pos = ies;
4931 : 584 : end = ies + ies_len;
4932 : :
4933 [ + - ]: 584 : while (pos + 1 < end) {
4934 [ - + ]: 584 : if (pos + 2 + pos[1] > end)
4935 : 0 : break;
4936 [ + - ]: 584 : if (pos[0] == ie)
4937 : 584 : return pos;
4938 : 0 : pos += 2 + pos[1];
4939 : : }
4940 : :
4941 : 584 : return NULL;
4942 : : }
4943 : :
4944 : :
4945 : 1581 : static int nl80211_scan_filtered(struct wpa_driver_nl80211_data *drv,
4946 : : const u8 *ie, size_t ie_len)
4947 : : {
4948 : : const u8 *ssid;
4949 : : size_t i;
4950 : :
4951 [ + - ]: 1581 : if (drv->filter_ssids == NULL)
4952 : 1581 : return 0;
4953 : :
4954 : 0 : ssid = nl80211_get_ie(ie, ie_len, WLAN_EID_SSID);
4955 [ # # ]: 0 : if (ssid == NULL)
4956 : 0 : return 1;
4957 : :
4958 [ # # ]: 0 : for (i = 0; i < drv->num_filter_ssids; i++) {
4959 [ # # ][ # # ]: 0 : if (ssid[1] == drv->filter_ssids[i].ssid_len &&
4960 : 0 : os_memcmp(ssid + 2, drv->filter_ssids[i].ssid, ssid[1]) ==
4961 : : 0)
4962 : 0 : return 0;
4963 : : }
4964 : :
4965 : 1581 : return 1;
4966 : : }
4967 : :
4968 : :
4969 : 1602 : static int bss_info_handler(struct nl_msg *msg, void *arg)
4970 : : {
4971 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
4972 : 1602 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
4973 : : struct nlattr *bss[NL80211_BSS_MAX + 1];
4974 : : static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
4975 : : [NL80211_BSS_BSSID] = { .type = NLA_UNSPEC },
4976 : : [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
4977 : : [NL80211_BSS_TSF] = { .type = NLA_U64 },
4978 : : [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
4979 : : [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
4980 : : [NL80211_BSS_INFORMATION_ELEMENTS] = { .type = NLA_UNSPEC },
4981 : : [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
4982 : : [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
4983 : : [NL80211_BSS_STATUS] = { .type = NLA_U32 },
4984 : : [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
4985 : : [NL80211_BSS_BEACON_IES] = { .type = NLA_UNSPEC },
4986 : : };
4987 : 1602 : struct nl80211_bss_info_arg *_arg = arg;
4988 : 1602 : struct wpa_scan_results *res = _arg->res;
4989 : : struct wpa_scan_res **tmp;
4990 : : struct wpa_scan_res *r;
4991 : : const u8 *ie, *beacon_ie;
4992 : : size_t ie_len, beacon_ie_len;
4993 : : u8 *pos;
4994 : : size_t i;
4995 : :
4996 : 1602 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
4997 : : genlmsg_attrlen(gnlh, 0), NULL);
4998 [ - + ]: 1602 : if (!tb[NL80211_ATTR_BSS])
4999 : 0 : return NL_SKIP;
5000 [ - + ]: 1602 : if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
5001 : : bss_policy))
5002 : 0 : return NL_SKIP;
5003 [ + + ]: 1602 : if (bss[NL80211_BSS_STATUS]) {
5004 : : enum nl80211_bss_status status;
5005 : 39 : status = nla_get_u32(bss[NL80211_BSS_STATUS]);
5006 [ + - ][ + + ]: 39 : if (status == NL80211_BSS_STATUS_ASSOCIATED &&
5007 : 34 : bss[NL80211_BSS_FREQUENCY]) {
5008 : 34 : _arg->assoc_freq =
5009 : 34 : nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
5010 : 34 : wpa_printf(MSG_DEBUG, "nl80211: Associated on %u MHz",
5011 : : _arg->assoc_freq);
5012 : : }
5013 [ + + ][ + - ]: 39 : if (status == NL80211_BSS_STATUS_ASSOCIATED &&
5014 : 34 : bss[NL80211_BSS_BSSID]) {
5015 : 34 : os_memcpy(_arg->assoc_bssid,
5016 : : nla_data(bss[NL80211_BSS_BSSID]), ETH_ALEN);
5017 : 34 : wpa_printf(MSG_DEBUG, "nl80211: Associated with "
5018 : 204 : MACSTR, MAC2STR(_arg->assoc_bssid));
5019 : : }
5020 : : }
5021 [ + + ]: 1602 : if (!res)
5022 : 21 : return NL_SKIP;
5023 [ + - ]: 1581 : if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
5024 : 1581 : ie = nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
5025 : 1581 : ie_len = nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
5026 : : } else {
5027 : 0 : ie = NULL;
5028 : 0 : ie_len = 0;
5029 : : }
5030 [ + + ]: 1581 : if (bss[NL80211_BSS_BEACON_IES]) {
5031 : 950 : beacon_ie = nla_data(bss[NL80211_BSS_BEACON_IES]);
5032 : 950 : beacon_ie_len = nla_len(bss[NL80211_BSS_BEACON_IES]);
5033 : : } else {
5034 : 631 : beacon_ie = NULL;
5035 : 631 : beacon_ie_len = 0;
5036 : : }
5037 : :
5038 [ + - ][ + - ]: 1581 : if (nl80211_scan_filtered(_arg->drv, ie ? ie : beacon_ie,
[ - + ]
5039 : : ie ? ie_len : beacon_ie_len))
5040 : 0 : return NL_SKIP;
5041 : :
5042 : 1581 : r = os_zalloc(sizeof(*r) + ie_len + beacon_ie_len);
5043 [ - + ]: 1581 : if (r == NULL)
5044 : 0 : return NL_SKIP;
5045 [ + - ]: 1581 : if (bss[NL80211_BSS_BSSID])
5046 : 1581 : os_memcpy(r->bssid, nla_data(bss[NL80211_BSS_BSSID]),
5047 : : ETH_ALEN);
5048 [ + - ]: 1581 : if (bss[NL80211_BSS_FREQUENCY])
5049 : 1581 : r->freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
5050 [ + - ]: 1581 : if (bss[NL80211_BSS_BEACON_INTERVAL])
5051 : 1581 : r->beacon_int = nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]);
5052 [ + - ]: 1581 : if (bss[NL80211_BSS_CAPABILITY])
5053 : 1581 : r->caps = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
5054 : 1581 : r->flags |= WPA_SCAN_NOISE_INVALID;
5055 [ + - ]: 1581 : if (bss[NL80211_BSS_SIGNAL_MBM]) {
5056 : 1581 : r->level = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
5057 : 1581 : r->level /= 100; /* mBm to dBm */
5058 : 1581 : r->flags |= WPA_SCAN_LEVEL_DBM | WPA_SCAN_QUAL_INVALID;
5059 [ # # ]: 0 : } else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
5060 : 0 : r->level = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
5061 : 0 : r->flags |= WPA_SCAN_QUAL_INVALID;
5062 : : } else
5063 : 0 : r->flags |= WPA_SCAN_LEVEL_INVALID | WPA_SCAN_QUAL_INVALID;
5064 [ + - ]: 1581 : if (bss[NL80211_BSS_TSF])
5065 : 1581 : r->tsf = nla_get_u64(bss[NL80211_BSS_TSF]);
5066 [ + - ]: 1581 : if (bss[NL80211_BSS_SEEN_MS_AGO])
5067 : 1581 : r->age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
5068 : 1581 : r->ie_len = ie_len;
5069 : 1581 : pos = (u8 *) (r + 1);
5070 [ + - ]: 1581 : if (ie) {
5071 : 1581 : os_memcpy(pos, ie, ie_len);
5072 : 1581 : pos += ie_len;
5073 : : }
5074 : 1581 : r->beacon_ie_len = beacon_ie_len;
5075 [ + + ]: 1581 : if (beacon_ie)
5076 : 950 : os_memcpy(pos, beacon_ie, beacon_ie_len);
5077 : :
5078 [ + + ]: 1581 : if (bss[NL80211_BSS_STATUS]) {
5079 : : enum nl80211_bss_status status;
5080 : 32 : status = nla_get_u32(bss[NL80211_BSS_STATUS]);
5081 [ - + + ]: 32 : switch (status) {
5082 : : case NL80211_BSS_STATUS_AUTHENTICATED:
5083 : 0 : r->flags |= WPA_SCAN_AUTHENTICATED;
5084 : 0 : break;
5085 : : case NL80211_BSS_STATUS_ASSOCIATED:
5086 : 27 : r->flags |= WPA_SCAN_ASSOCIATED;
5087 : 27 : break;
5088 : : default:
5089 : 5 : break;
5090 : : }
5091 : : }
5092 : :
5093 : : /*
5094 : : * cfg80211 maintains separate BSS table entries for APs if the same
5095 : : * BSSID,SSID pair is seen on multiple channels. wpa_supplicant does
5096 : : * not use frequency as a separate key in the BSS table, so filter out
5097 : : * duplicated entries. Prefer associated BSS entry in such a case in
5098 : : * order to get the correct frequency into the BSS table. Similarly,
5099 : : * prefer newer entries over older.
5100 : : */
5101 [ + + ]: 2475 : for (i = 0; i < res->num; i++) {
5102 : : const u8 *s1, *s2;
5103 [ + + ]: 903 : if (os_memcmp(res->res[i]->bssid, r->bssid, ETH_ALEN) != 0)
5104 : 611 : continue;
5105 : :
5106 : 292 : s1 = nl80211_get_ie((u8 *) (res->res[i] + 1),
5107 : 292 : res->res[i]->ie_len, WLAN_EID_SSID);
5108 : 292 : s2 = nl80211_get_ie((u8 *) (r + 1), r->ie_len, WLAN_EID_SSID);
5109 [ + - ][ + + ]: 292 : if (s1 == NULL || s2 == NULL || s1[1] != s2[1] ||
[ + + ][ + - ]
5110 : 38 : os_memcmp(s1, s2, 2 + s1[1]) != 0)
5111 : 283 : continue;
5112 : :
5113 : : /* Same BSSID,SSID was already included in scan results */
5114 : 9 : wpa_printf(MSG_DEBUG, "nl80211: Remove duplicated scan result "
5115 : 54 : "for " MACSTR, MAC2STR(r->bssid));
5116 : :
5117 [ # # ][ - + ]: 9 : if (((r->flags & WPA_SCAN_ASSOCIATED) &&
5118 [ + - ]: 9 : !(res->res[i]->flags & WPA_SCAN_ASSOCIATED)) ||
5119 : 9 : r->age < res->res[i]->age) {
5120 : 9 : os_free(res->res[i]);
5121 : 9 : res->res[i] = r;
5122 : : } else
5123 : 0 : os_free(r);
5124 : 9 : return NL_SKIP;
5125 : : }
5126 : :
5127 : 1572 : tmp = os_realloc_array(res->res, res->num + 1,
5128 : : sizeof(struct wpa_scan_res *));
5129 [ - + ]: 1572 : if (tmp == NULL) {
5130 : 0 : os_free(r);
5131 : 0 : return NL_SKIP;
5132 : : }
5133 : 1572 : tmp[res->num++] = r;
5134 : 1572 : res->res = tmp;
5135 : :
5136 : 1602 : return NL_SKIP;
5137 : : }
5138 : :
5139 : :
5140 : 0 : static void clear_state_mismatch(struct wpa_driver_nl80211_data *drv,
5141 : : const u8 *addr)
5142 : : {
5143 [ # # ]: 0 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
5144 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Clear possible state "
5145 : 0 : "mismatch (" MACSTR ")", MAC2STR(addr));
5146 : 0 : wpa_driver_nl80211_mlme(drv, addr,
5147 : : NL80211_CMD_DEAUTHENTICATE,
5148 : : WLAN_REASON_PREV_AUTH_NOT_VALID, 1);
5149 : : }
5150 : 0 : }
5151 : :
5152 : :
5153 : 925 : static void wpa_driver_nl80211_check_bss_status(
5154 : : struct wpa_driver_nl80211_data *drv, struct wpa_scan_results *res)
5155 : : {
5156 : : size_t i;
5157 : :
5158 [ + + ]: 2497 : for (i = 0; i < res->num; i++) {
5159 : 1572 : struct wpa_scan_res *r = res->res[i];
5160 [ - + ]: 1572 : if (r->flags & WPA_SCAN_AUTHENTICATED) {
5161 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan results "
5162 : : "indicates BSS status with " MACSTR
5163 : : " as authenticated",
5164 : 0 : MAC2STR(r->bssid));
5165 [ # # ][ # # ]: 0 : if (is_sta_interface(drv->nlmode) &&
5166 [ # # ]: 0 : os_memcmp(r->bssid, drv->bssid, ETH_ALEN) != 0 &&
5167 : 0 : os_memcmp(r->bssid, drv->auth_bssid, ETH_ALEN) !=
5168 : : 0) {
5169 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown BSSID"
5170 : : " in local state (auth=" MACSTR
5171 : : " assoc=" MACSTR ")",
5172 : 0 : MAC2STR(drv->auth_bssid),
5173 : 0 : MAC2STR(drv->bssid));
5174 : 0 : clear_state_mismatch(drv, r->bssid);
5175 : : }
5176 : : }
5177 : :
5178 [ + + ]: 1572 : if (r->flags & WPA_SCAN_ASSOCIATED) {
5179 : 27 : wpa_printf(MSG_DEBUG, "nl80211: Scan results "
5180 : : "indicate BSS status with " MACSTR
5181 : : " as associated",
5182 : 162 : MAC2STR(r->bssid));
5183 [ - + ][ + - ]: 27 : if (is_sta_interface(drv->nlmode) &&
5184 : 27 : !drv->associated) {
5185 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Local state "
5186 : : "(not associated) does not match "
5187 : : "with BSS state");
5188 : 0 : clear_state_mismatch(drv, r->bssid);
5189 [ + - ][ - + ]: 27 : } else if (is_sta_interface(drv->nlmode) &&
5190 : 27 : os_memcmp(drv->bssid, r->bssid, ETH_ALEN) !=
5191 : : 0) {
5192 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Local state "
5193 : : "(associated with " MACSTR ") does "
5194 : : "not match with BSS state",
5195 : 0 : MAC2STR(drv->bssid));
5196 : 0 : clear_state_mismatch(drv, r->bssid);
5197 : 0 : clear_state_mismatch(drv, drv->bssid);
5198 : : }
5199 : : }
5200 : : }
5201 : 925 : }
5202 : :
5203 : :
5204 : : static struct wpa_scan_results *
5205 : 925 : nl80211_get_scan_results(struct wpa_driver_nl80211_data *drv)
5206 : : {
5207 : : struct nl_msg *msg;
5208 : : struct wpa_scan_results *res;
5209 : : int ret;
5210 : : struct nl80211_bss_info_arg arg;
5211 : :
5212 : 925 : res = os_zalloc(sizeof(*res));
5213 [ - + ]: 925 : if (res == NULL)
5214 : 0 : return NULL;
5215 : 925 : msg = nlmsg_alloc();
5216 [ - + ]: 925 : if (!msg)
5217 : 0 : goto nla_put_failure;
5218 : :
5219 : 925 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
5220 [ - + ]: 925 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
5221 : 0 : goto nla_put_failure;
5222 : :
5223 : 925 : arg.drv = drv;
5224 : 925 : arg.res = res;
5225 : 925 : ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
5226 : 925 : msg = NULL;
5227 [ + - ]: 925 : if (ret == 0) {
5228 : 925 : wpa_printf(MSG_DEBUG, "nl80211: Received scan results (%lu "
5229 : : "BSSes)", (unsigned long) res->num);
5230 : 925 : nl80211_get_noise_for_scan_results(drv, res);
5231 : 925 : return res;
5232 : : }
5233 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
5234 : : "(%s)", ret, strerror(-ret));
5235 : : nla_put_failure:
5236 : 0 : nlmsg_free(msg);
5237 : 0 : wpa_scan_results_free(res);
5238 : 925 : return NULL;
5239 : : }
5240 : :
5241 : :
5242 : : /**
5243 : : * wpa_driver_nl80211_get_scan_results - Fetch the latest scan results
5244 : : * @priv: Pointer to private wext data from wpa_driver_nl80211_init()
5245 : : * Returns: Scan results on success, -1 on failure
5246 : : */
5247 : : static struct wpa_scan_results *
5248 : 925 : wpa_driver_nl80211_get_scan_results(void *priv)
5249 : : {
5250 : 925 : struct i802_bss *bss = priv;
5251 : 925 : struct wpa_driver_nl80211_data *drv = bss->drv;
5252 : : struct wpa_scan_results *res;
5253 : :
5254 : 925 : res = nl80211_get_scan_results(drv);
5255 [ + - ]: 925 : if (res)
5256 : 925 : wpa_driver_nl80211_check_bss_status(drv, res);
5257 : 925 : return res;
5258 : : }
5259 : :
5260 : :
5261 : 0 : static void nl80211_dump_scan(struct wpa_driver_nl80211_data *drv)
5262 : : {
5263 : : struct wpa_scan_results *res;
5264 : : size_t i;
5265 : :
5266 : 0 : res = nl80211_get_scan_results(drv);
5267 [ # # ]: 0 : if (res == NULL) {
5268 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to get scan results");
5269 : 0 : return;
5270 : : }
5271 : :
5272 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result dump");
5273 [ # # ]: 0 : for (i = 0; i < res->num; i++) {
5274 : 0 : struct wpa_scan_res *r = res->res[i];
5275 [ # # ][ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: %d/%d " MACSTR "%s%s",
5276 : 0 : (int) i, (int) res->num, MAC2STR(r->bssid),
5277 : 0 : r->flags & WPA_SCAN_AUTHENTICATED ? " [auth]" : "",
5278 : 0 : r->flags & WPA_SCAN_ASSOCIATED ? " [assoc]" : "");
5279 : : }
5280 : :
5281 : 0 : wpa_scan_results_free(res);
5282 : : }
5283 : :
5284 : :
5285 : 1525 : static u32 wpa_alg_to_cipher_suite(enum wpa_alg alg, size_t key_len)
5286 : : {
5287 [ + + + - : 1525 : switch (alg) {
- - + - -
- - - -
+ ]
5288 : : case WPA_ALG_WEP:
5289 [ + + ]: 17 : if (key_len == 5)
5290 : 11 : return WLAN_CIPHER_SUITE_WEP40;
5291 : 6 : return WLAN_CIPHER_SUITE_WEP104;
5292 : : case WPA_ALG_TKIP:
5293 : 79 : return WLAN_CIPHER_SUITE_TKIP;
5294 : : case WPA_ALG_CCMP:
5295 : 1325 : return WLAN_CIPHER_SUITE_CCMP;
5296 : : case WPA_ALG_GCMP:
5297 : 0 : return WLAN_CIPHER_SUITE_GCMP;
5298 : : case WPA_ALG_CCMP_256:
5299 : 0 : return WLAN_CIPHER_SUITE_CCMP_256;
5300 : : case WPA_ALG_GCMP_256:
5301 : 0 : return WLAN_CIPHER_SUITE_GCMP_256;
5302 : : case WPA_ALG_IGTK:
5303 : 102 : return WLAN_CIPHER_SUITE_AES_CMAC;
5304 : : case WPA_ALG_BIP_GMAC_128:
5305 : 0 : return WLAN_CIPHER_SUITE_BIP_GMAC_128;
5306 : : case WPA_ALG_BIP_GMAC_256:
5307 : 0 : return WLAN_CIPHER_SUITE_BIP_GMAC_256;
5308 : : case WPA_ALG_BIP_CMAC_256:
5309 : 0 : return WLAN_CIPHER_SUITE_BIP_CMAC_256;
5310 : : case WPA_ALG_SMS4:
5311 : 0 : return WLAN_CIPHER_SUITE_SMS4;
5312 : : case WPA_ALG_KRK:
5313 : 0 : return WLAN_CIPHER_SUITE_KRK;
5314 : : case WPA_ALG_NONE:
5315 : : case WPA_ALG_PMK:
5316 : 0 : wpa_printf(MSG_ERROR, "nl80211: Unexpected encryption algorithm %d",
5317 : : alg);
5318 : 0 : return 0;
5319 : : }
5320 : :
5321 : 2 : wpa_printf(MSG_ERROR, "nl80211: Unsupported encryption algorithm %d",
5322 : : alg);
5323 : 1525 : return 0;
5324 : : }
5325 : :
5326 : :
5327 : 1777 : static u32 wpa_cipher_to_cipher_suite(unsigned int cipher)
5328 : : {
5329 [ - - + - : 1777 : switch (cipher) {
+ + + + ]
5330 : : case WPA_CIPHER_CCMP_256:
5331 : 0 : return WLAN_CIPHER_SUITE_CCMP_256;
5332 : : case WPA_CIPHER_GCMP_256:
5333 : 0 : return WLAN_CIPHER_SUITE_GCMP_256;
5334 : : case WPA_CIPHER_CCMP:
5335 : 1611 : return WLAN_CIPHER_SUITE_CCMP;
5336 : : case WPA_CIPHER_GCMP:
5337 : 0 : return WLAN_CIPHER_SUITE_GCMP;
5338 : : case WPA_CIPHER_TKIP:
5339 : 87 : return WLAN_CIPHER_SUITE_TKIP;
5340 : : case WPA_CIPHER_WEP104:
5341 : 1 : return WLAN_CIPHER_SUITE_WEP104;
5342 : : case WPA_CIPHER_WEP40:
5343 : 8 : return WLAN_CIPHER_SUITE_WEP40;
5344 : : }
5345 : :
5346 : 1777 : return 0;
5347 : : }
5348 : :
5349 : :
5350 : 1195 : static int wpa_cipher_to_cipher_suites(unsigned int ciphers, u32 suites[],
5351 : : int max_suites)
5352 : : {
5353 : 1195 : int num_suites = 0;
5354 : :
5355 [ + - ][ - + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_CCMP_256)
5356 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP_256;
5357 [ + - ][ - + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_GCMP_256)
5358 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP_256;
5359 [ + - ][ + + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_CCMP)
5360 : 1108 : suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP;
5361 [ + - ][ - + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_GCMP)
5362 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP;
5363 [ + - ][ + + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_TKIP)
5364 : 32 : suites[num_suites++] = WLAN_CIPHER_SUITE_TKIP;
5365 [ + - ][ + + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_WEP104)
5366 : 1 : suites[num_suites++] = WLAN_CIPHER_SUITE_WEP104;
5367 [ + - ][ + + ]: 1195 : if (num_suites < max_suites && ciphers & WPA_CIPHER_WEP40)
5368 : 4 : suites[num_suites++] = WLAN_CIPHER_SUITE_WEP40;
5369 : :
5370 : 1195 : return num_suites;
5371 : : }
5372 : :
5373 : :
5374 : 6658 : static int wpa_driver_nl80211_set_key(const char *ifname, struct i802_bss *bss,
5375 : : enum wpa_alg alg, const u8 *addr,
5376 : : int key_idx, int set_tx,
5377 : : const u8 *seq, size_t seq_len,
5378 : : const u8 *key, size_t key_len)
5379 : : {
5380 : 6658 : struct wpa_driver_nl80211_data *drv = bss->drv;
5381 : : int ifindex;
5382 : : struct nl_msg *msg;
5383 : : int ret;
5384 : 6658 : int tdls = 0;
5385 : :
5386 : : /* Ignore for P2P Device */
5387 [ - + ]: 6658 : if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
5388 : 0 : return 0;
5389 : :
5390 : 6658 : ifindex = if_nametoindex(ifname);
5391 : 6658 : wpa_printf(MSG_DEBUG, "%s: ifindex=%d (%s) alg=%d addr=%p key_idx=%d "
5392 : : "set_tx=%d seq_len=%lu key_len=%lu",
5393 : : __func__, ifindex, ifname, alg, addr, key_idx, set_tx,
5394 : : (unsigned long) seq_len, (unsigned long) key_len);
5395 : : #ifdef CONFIG_TDLS
5396 [ + + ]: 2823 : if (key_idx == -1) {
5397 : 68 : key_idx = 0;
5398 : 68 : tdls = 1;
5399 : : }
5400 : : #endif /* CONFIG_TDLS */
5401 : :
5402 : 6658 : msg = nlmsg_alloc();
5403 [ - + ]: 6658 : if (!msg)
5404 : 0 : return -ENOMEM;
5405 : :
5406 [ + + ]: 6658 : if (alg == WPA_ALG_NONE) {
5407 : 5135 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_KEY);
5408 : : } else {
5409 : 1523 : nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_KEY);
5410 [ + - ]: 1523 : NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
5411 [ + - ]: 1523 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5412 : : wpa_alg_to_cipher_suite(alg, key_len));
5413 : : }
5414 : :
5415 [ + + ][ + - ]: 6658 : if (seq && seq_len)
5416 [ + - ]: 714 : NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, seq_len, seq);
5417 : :
5418 [ + + ][ + + ]: 6658 : if (addr && !is_broadcast_ether_addr(addr)) {
5419 : 2517 : wpa_printf(MSG_DEBUG, " addr=" MACSTR, MAC2STR(addr));
5420 [ + - ]: 2517 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
5421 : :
5422 [ + + ][ + + ]: 2523 : if (alg != WPA_ALG_WEP && key_idx && !set_tx) {
[ + - ]
5423 : 6 : wpa_printf(MSG_DEBUG, " RSN IBSS RX GTK");
5424 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE,
5425 : : NL80211_KEYTYPE_GROUP);
5426 : : }
5427 [ + + ][ + - ]: 4141 : } else if (addr && is_broadcast_ether_addr(addr)) {
5428 : : struct nlattr *types;
5429 : :
5430 : 811 : wpa_printf(MSG_DEBUG, " broadcast key");
5431 : :
5432 : 811 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5433 [ - + ]: 811 : if (!types)
5434 : 0 : goto nla_put_failure;
5435 [ + - ]: 811 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
5436 : 811 : nla_nest_end(msg, types);
5437 : : }
5438 [ + - ]: 6658 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
5439 [ + - ]: 6658 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
5440 : :
5441 : 6658 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5442 [ + + ][ + + ]: 6658 : if ((ret == -ENOENT || ret == -ENOLINK) && alg == WPA_ALG_NONE)
[ + + ]
5443 : 4581 : ret = 0;
5444 [ + + ]: 6658 : if (ret)
5445 : 78 : wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d %s)",
5446 : : ret, strerror(-ret));
5447 : :
5448 : : /*
5449 : : * If we failed or don't need to set the default TX key (below),
5450 : : * we're done here.
5451 : : */
5452 [ + + ][ + + ]: 6658 : if (ret || !set_tx || alg == WPA_ALG_NONE || tdls)
[ + + ][ + + ]
5453 : 5553 : return ret;
5454 [ + + ]: 1901 : if (is_ap_interface(drv->nlmode) && addr &&
[ + + + + ]
5455 : 796 : !is_broadcast_ether_addr(addr))
5456 : 299 : return ret;
5457 : :
5458 : 806 : msg = nlmsg_alloc();
5459 [ - + ]: 806 : if (!msg)
5460 : 0 : return -ENOMEM;
5461 : :
5462 : 806 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_KEY);
5463 [ + - ]: 806 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
5464 [ + - ]: 806 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
5465 [ + + ]: 806 : if (alg == WPA_ALG_IGTK)
5466 [ + - ]: 86 : NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT_MGMT);
5467 : : else
5468 [ + - ]: 720 : NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
5469 [ + + ][ + + ]: 1309 : if (addr && is_broadcast_ether_addr(addr)) {
5470 : : struct nlattr *types;
5471 : :
5472 : 503 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5473 [ - + ]: 503 : if (!types)
5474 : 0 : goto nla_put_failure;
5475 [ + - ]: 503 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
5476 : 503 : nla_nest_end(msg, types);
5477 [ + + ]: 303 : } else if (addr) {
5478 : : struct nlattr *types;
5479 : :
5480 : 297 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5481 [ - + ]: 297 : if (!types)
5482 : 0 : goto nla_put_failure;
5483 [ + - ]: 297 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_UNICAST);
5484 : 297 : nla_nest_end(msg, types);
5485 : : }
5486 : :
5487 : 806 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5488 [ - + ]: 806 : if (ret == -ENOENT)
5489 : 0 : ret = 0;
5490 [ - + ]: 806 : if (ret)
5491 : 0 : wpa_printf(MSG_DEBUG, "nl80211: set_key default failed; "
5492 : : "err=%d %s)", ret, strerror(-ret));
5493 : 806 : return ret;
5494 : :
5495 : : nla_put_failure:
5496 : 0 : nlmsg_free(msg);
5497 : 6658 : return -ENOBUFS;
5498 : : }
5499 : :
5500 : :
5501 : 2 : static int nl_add_key(struct nl_msg *msg, enum wpa_alg alg,
5502 : : int key_idx, int defkey,
5503 : : const u8 *seq, size_t seq_len,
5504 : : const u8 *key, size_t key_len)
5505 : : {
5506 : 2 : struct nlattr *key_attr = nla_nest_start(msg, NL80211_ATTR_KEY);
5507 [ - + ]: 2 : if (!key_attr)
5508 : 0 : return -1;
5509 : :
5510 [ + - ][ - + ]: 2 : if (defkey && alg == WPA_ALG_IGTK)
5511 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_MGMT);
5512 [ + - ]: 2 : else if (defkey)
5513 [ + - ]: 2 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
5514 : :
5515 [ + - ]: 2 : NLA_PUT_U8(msg, NL80211_KEY_IDX, key_idx);
5516 : :
5517 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5518 : : wpa_alg_to_cipher_suite(alg, key_len));
5519 : :
5520 [ - + ][ # # ]: 2 : if (seq && seq_len)
5521 [ # # ]: 0 : NLA_PUT(msg, NL80211_KEY_SEQ, seq_len, seq);
5522 : :
5523 [ + - ]: 2 : NLA_PUT(msg, NL80211_KEY_DATA, key_len, key);
5524 : :
5525 : 2 : nla_nest_end(msg, key_attr);
5526 : :
5527 : 2 : return 0;
5528 : : nla_put_failure:
5529 : 2 : return -1;
5530 : : }
5531 : :
5532 : :
5533 : 11 : static int nl80211_set_conn_keys(struct wpa_driver_associate_params *params,
5534 : : struct nl_msg *msg)
5535 : : {
5536 : 11 : int i, privacy = 0;
5537 : : struct nlattr *nl_keys, *nl_key;
5538 : :
5539 [ + + ]: 55 : for (i = 0; i < 4; i++) {
5540 [ + - ]: 44 : if (!params->wep_key[i])
5541 : 44 : continue;
5542 : 0 : privacy = 1;
5543 : 0 : break;
5544 : : }
5545 [ + + ]: 11 : if (params->wps == WPS_MODE_PRIVACY)
5546 : 1 : privacy = 1;
5547 [ + - ][ + + ]: 11 : if (params->pairwise_suite &&
5548 : 11 : params->pairwise_suite != WPA_CIPHER_NONE)
5549 : 8 : privacy = 1;
5550 : :
5551 [ + + ]: 11 : if (!privacy)
5552 : 2 : return 0;
5553 : :
5554 [ + - ]: 9 : NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
5555 : :
5556 : 9 : nl_keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
5557 [ - + ]: 9 : if (!nl_keys)
5558 : 0 : goto nla_put_failure;
5559 : :
5560 [ + + ]: 45 : for (i = 0; i < 4; i++) {
5561 [ + - ]: 36 : if (!params->wep_key[i])
5562 : 36 : continue;
5563 : :
5564 : 0 : nl_key = nla_nest_start(msg, i);
5565 [ # # ]: 0 : if (!nl_key)
5566 : 0 : goto nla_put_failure;
5567 : :
5568 [ # # ]: 0 : NLA_PUT(msg, NL80211_KEY_DATA, params->wep_key_len[i],
5569 : : params->wep_key[i]);
5570 [ # # ]: 0 : if (params->wep_key_len[i] == 5)
5571 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5572 : : WLAN_CIPHER_SUITE_WEP40);
5573 : : else
5574 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5575 : : WLAN_CIPHER_SUITE_WEP104);
5576 : :
5577 [ # # ]: 0 : NLA_PUT_U8(msg, NL80211_KEY_IDX, i);
5578 : :
5579 [ # # ]: 0 : if (i == params->wep_tx_keyidx)
5580 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
5581 : :
5582 : 0 : nla_nest_end(msg, nl_key);
5583 : : }
5584 : 9 : nla_nest_end(msg, nl_keys);
5585 : :
5586 : 9 : return 0;
5587 : :
5588 : : nla_put_failure:
5589 : 11 : return -ENOBUFS;
5590 : : }
5591 : :
5592 : :
5593 : 427 : static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
5594 : : const u8 *addr, int cmd, u16 reason_code,
5595 : : int local_state_change)
5596 : : {
5597 : 427 : int ret = -1;
5598 : : struct nl_msg *msg;
5599 : :
5600 : 427 : msg = nlmsg_alloc();
5601 [ - + ]: 427 : if (!msg)
5602 : 0 : return -1;
5603 : :
5604 : 427 : nl80211_cmd(drv, msg, 0, cmd);
5605 : :
5606 [ + - ]: 427 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
5607 [ + - ]: 427 : NLA_PUT_U16(msg, NL80211_ATTR_REASON_CODE, reason_code);
5608 [ + + ]: 427 : if (addr)
5609 [ + - ]: 422 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
5610 [ - + ]: 427 : if (local_state_change)
5611 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
5612 : :
5613 : 427 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5614 : 427 : msg = NULL;
5615 [ + + ]: 427 : if (ret) {
5616 : 12 : wpa_dbg(drv->ctx, MSG_DEBUG,
5617 : : "nl80211: MLME command failed: reason=%u ret=%d (%s)",
5618 : : reason_code, ret, strerror(-ret));
5619 : 12 : goto nla_put_failure;
5620 : : }
5621 : 415 : ret = 0;
5622 : :
5623 : : nla_put_failure:
5624 : 427 : nlmsg_free(msg);
5625 : 427 : return ret;
5626 : : }
5627 : :
5628 : :
5629 : 5 : static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
5630 : : int reason_code)
5631 : : {
5632 : : int ret;
5633 : :
5634 : 5 : wpa_printf(MSG_DEBUG, "%s(reason_code=%d)", __func__, reason_code);
5635 : 5 : nl80211_mark_disconnected(drv);
5636 : : /* Disconnect command doesn't need BSSID - it uses cached value */
5637 : 5 : ret = wpa_driver_nl80211_mlme(drv, NULL, NL80211_CMD_DISCONNECT,
5638 : : reason_code, 0);
5639 : : /*
5640 : : * For locally generated disconnect, supplicant already generates a
5641 : : * DEAUTH event, so ignore the event from NL80211.
5642 : : */
5643 : 5 : drv->ignore_next_local_disconnect = ret == 0;
5644 : :
5645 : 5 : return ret;
5646 : : }
5647 : :
5648 : :
5649 : 433 : static int wpa_driver_nl80211_deauthenticate(struct i802_bss *bss,
5650 : : const u8 *addr, int reason_code)
5651 : : {
5652 : 433 : struct wpa_driver_nl80211_data *drv = bss->drv;
5653 [ + + ]: 433 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
5654 : 5 : return wpa_driver_nl80211_disconnect(drv, reason_code);
5655 : 428 : wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
5656 : 2568 : __func__, MAC2STR(addr), reason_code);
5657 : 428 : nl80211_mark_disconnected(drv);
5658 [ + + ]: 428 : if (drv->nlmode == NL80211_IFTYPE_ADHOC)
5659 : 6 : return nl80211_leave_ibss(drv);
5660 : 433 : return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
5661 : : reason_code, 0);
5662 : : }
5663 : :
5664 : :
5665 : 0 : static void nl80211_copy_auth_params(struct wpa_driver_nl80211_data *drv,
5666 : : struct wpa_driver_auth_params *params)
5667 : : {
5668 : : int i;
5669 : :
5670 : 0 : drv->auth_freq = params->freq;
5671 : 0 : drv->auth_alg = params->auth_alg;
5672 : 0 : drv->auth_wep_tx_keyidx = params->wep_tx_keyidx;
5673 : 0 : drv->auth_local_state_change = params->local_state_change;
5674 : 0 : drv->auth_p2p = params->p2p;
5675 : :
5676 [ # # ]: 0 : if (params->bssid)
5677 : 0 : os_memcpy(drv->auth_bssid_, params->bssid, ETH_ALEN);
5678 : : else
5679 : 0 : os_memset(drv->auth_bssid_, 0, ETH_ALEN);
5680 : :
5681 [ # # ]: 0 : if (params->ssid) {
5682 : 0 : os_memcpy(drv->auth_ssid, params->ssid, params->ssid_len);
5683 : 0 : drv->auth_ssid_len = params->ssid_len;
5684 : : } else
5685 : 0 : drv->auth_ssid_len = 0;
5686 : :
5687 : :
5688 : 0 : os_free(drv->auth_ie);
5689 : 0 : drv->auth_ie = NULL;
5690 : 0 : drv->auth_ie_len = 0;
5691 [ # # ]: 0 : if (params->ie) {
5692 : 0 : drv->auth_ie = os_malloc(params->ie_len);
5693 [ # # ]: 0 : if (drv->auth_ie) {
5694 : 0 : os_memcpy(drv->auth_ie, params->ie, params->ie_len);
5695 : 0 : drv->auth_ie_len = params->ie_len;
5696 : : }
5697 : : }
5698 : :
5699 [ # # ]: 0 : for (i = 0; i < 4; i++) {
5700 [ # # ][ # # ]: 0 : if (params->wep_key[i] && params->wep_key_len[i] &&
[ # # ]
5701 : 0 : params->wep_key_len[i] <= 16) {
5702 : 0 : os_memcpy(drv->auth_wep_key[i], params->wep_key[i],
5703 : : params->wep_key_len[i]);
5704 : 0 : drv->auth_wep_key_len[i] = params->wep_key_len[i];
5705 : : } else
5706 : 0 : drv->auth_wep_key_len[i] = 0;
5707 : : }
5708 : 0 : }
5709 : :
5710 : :
5711 : 489 : static int wpa_driver_nl80211_authenticate(
5712 : : struct i802_bss *bss, struct wpa_driver_auth_params *params)
5713 : : {
5714 : 489 : struct wpa_driver_nl80211_data *drv = bss->drv;
5715 : 489 : int ret = -1, i;
5716 : : struct nl_msg *msg;
5717 : : enum nl80211_auth_type type;
5718 : : enum nl80211_iftype nlmode;
5719 : 489 : int count = 0;
5720 : : int is_retry;
5721 : :
5722 : 489 : is_retry = drv->retry_auth;
5723 : 489 : drv->retry_auth = 0;
5724 : :
5725 : 489 : nl80211_mark_disconnected(drv);
5726 : 489 : os_memset(drv->auth_bssid, 0, ETH_ALEN);
5727 [ + - ]: 489 : if (params->bssid)
5728 : 489 : os_memcpy(drv->auth_attempt_bssid, params->bssid, ETH_ALEN);
5729 : : else
5730 : 0 : os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
5731 : : /* FIX: IBSS mode */
5732 [ + + ]: 489 : nlmode = params->p2p ?
5733 : : NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
5734 [ + + - + ]: 541 : if (drv->nlmode != nlmode &&
5735 : 52 : wpa_driver_nl80211_set_mode(bss, nlmode) < 0)
5736 : 0 : return -1;
5737 : :
5738 : : retry:
5739 : 489 : msg = nlmsg_alloc();
5740 [ - + ]: 489 : if (!msg)
5741 : 0 : return -1;
5742 : :
5743 : 489 : wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
5744 : : drv->ifindex);
5745 : :
5746 : 489 : nl80211_cmd(drv, msg, 0, NL80211_CMD_AUTHENTICATE);
5747 : :
5748 [ + + ]: 2445 : for (i = 0; i < 4; i++) {
5749 [ + + ]: 1956 : if (!params->wep_key[i])
5750 : 1954 : continue;
5751 : 2 : wpa_driver_nl80211_set_key(bss->ifname, bss, WPA_ALG_WEP,
5752 : : NULL, i,
5753 : 2 : i == params->wep_tx_keyidx, NULL, 0,
5754 : : params->wep_key[i],
5755 : : params->wep_key_len[i]);
5756 [ - + ]: 2 : if (params->wep_tx_keyidx != i)
5757 : 0 : continue;
5758 [ - + ]: 2 : if (nl_add_key(msg, WPA_ALG_WEP, i, 1, NULL, 0,
5759 : : params->wep_key[i], params->wep_key_len[i])) {
5760 : 0 : nlmsg_free(msg);
5761 : 0 : return -1;
5762 : : }
5763 : : }
5764 : :
5765 [ + - ]: 489 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
5766 [ + - ]: 489 : if (params->bssid) {
5767 : 489 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
5768 : 2934 : MAC2STR(params->bssid));
5769 [ + - ]: 489 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
5770 : : }
5771 [ + - ]: 489 : if (params->freq) {
5772 : 489 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
5773 [ + - ]: 489 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
5774 : : }
5775 [ + - ]: 489 : if (params->ssid) {
5776 : 489 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
5777 : 489 : params->ssid, params->ssid_len);
5778 [ + - ]: 489 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
5779 : : params->ssid);
5780 : : }
5781 : 489 : wpa_hexdump(MSG_DEBUG, " * IEs", params->ie, params->ie_len);
5782 [ + + ]: 489 : if (params->ie)
5783 [ + - ]: 10 : NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
5784 [ + + ]: 489 : if (params->sae_data) {
5785 : 36 : wpa_hexdump(MSG_DEBUG, " * SAE data", params->sae_data,
5786 : : params->sae_data_len);
5787 [ + - ]: 36 : NLA_PUT(msg, NL80211_ATTR_SAE_DATA, params->sae_data_len,
5788 : : params->sae_data);
5789 : : }
5790 [ + + ]: 489 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
5791 : 427 : type = NL80211_AUTHTYPE_OPEN_SYSTEM;
5792 [ - + ]: 62 : else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
5793 : 0 : type = NL80211_AUTHTYPE_SHARED_KEY;
5794 [ - + ]: 62 : else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
5795 : 0 : type = NL80211_AUTHTYPE_NETWORK_EAP;
5796 [ + + ]: 62 : else if (params->auth_alg & WPA_AUTH_ALG_FT)
5797 : 26 : type = NL80211_AUTHTYPE_FT;
5798 [ + - ]: 36 : else if (params->auth_alg & WPA_AUTH_ALG_SAE)
5799 : 36 : type = NL80211_AUTHTYPE_SAE;
5800 : : else
5801 : 0 : goto nla_put_failure;
5802 : 489 : wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
5803 [ + - ]: 489 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
5804 [ + + ]: 489 : if (params->local_state_change) {
5805 : 16 : wpa_printf(MSG_DEBUG, " * Local state change only");
5806 [ + - ]: 16 : NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
5807 : : }
5808 : :
5809 : 489 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5810 : 489 : msg = NULL;
5811 [ - + ]: 489 : if (ret) {
5812 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
5813 : : "nl80211: MLME command failed (auth): ret=%d (%s)",
5814 : : ret, strerror(-ret));
5815 : 0 : count++;
5816 [ # # ][ # # ]: 0 : if (ret == -EALREADY && count == 1 && params->bssid &&
[ # # ][ # # ]
5817 : 0 : !params->local_state_change) {
5818 : : /*
5819 : : * mac80211 does not currently accept new
5820 : : * authentication if we are already authenticated. As a
5821 : : * workaround, force deauthentication and try again.
5822 : : */
5823 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Retry authentication "
5824 : : "after forced deauthentication");
5825 : 0 : wpa_driver_nl80211_deauthenticate(
5826 : : bss, params->bssid,
5827 : : WLAN_REASON_PREV_AUTH_NOT_VALID);
5828 : 0 : nlmsg_free(msg);
5829 : 0 : goto retry;
5830 : : }
5831 : :
5832 [ # # ][ # # ]: 0 : if (ret == -ENOENT && params->freq && !is_retry) {
[ # # ]
5833 : : /*
5834 : : * cfg80211 has likely expired the BSS entry even
5835 : : * though it was previously available in our internal
5836 : : * BSS table. To recover quickly, start a single
5837 : : * channel scan on the specified channel.
5838 : : */
5839 : : struct wpa_driver_scan_params scan;
5840 : : int freqs[2];
5841 : :
5842 : 0 : os_memset(&scan, 0, sizeof(scan));
5843 : 0 : scan.num_ssids = 1;
5844 [ # # ]: 0 : if (params->ssid) {
5845 : 0 : scan.ssids[0].ssid = params->ssid;
5846 : 0 : scan.ssids[0].ssid_len = params->ssid_len;
5847 : : }
5848 : 0 : freqs[0] = params->freq;
5849 : 0 : freqs[1] = 0;
5850 : 0 : scan.freqs = freqs;
5851 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Trigger single "
5852 : : "channel scan to refresh cfg80211 BSS "
5853 : : "entry");
5854 : 0 : ret = wpa_driver_nl80211_scan(bss, &scan);
5855 [ # # ]: 0 : if (ret == 0) {
5856 : 0 : nl80211_copy_auth_params(drv, params);
5857 : 0 : drv->scan_for_auth = 1;
5858 : : }
5859 [ # # ]: 0 : } else if (is_retry) {
5860 : : /*
5861 : : * Need to indicate this with an event since the return
5862 : : * value from the retry is not delivered to core code.
5863 : : */
5864 : : union wpa_event_data event;
5865 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Authentication retry "
5866 : : "failed");
5867 : 0 : os_memset(&event, 0, sizeof(event));
5868 : 0 : os_memcpy(event.timeout_event.addr, drv->auth_bssid_,
5869 : : ETH_ALEN);
5870 : 0 : wpa_supplicant_event(drv->ctx, EVENT_AUTH_TIMED_OUT,
5871 : : &event);
5872 : : }
5873 : :
5874 : 0 : goto nla_put_failure;
5875 : : }
5876 : 489 : ret = 0;
5877 : 489 : wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
5878 : : "successfully");
5879 : :
5880 : : nla_put_failure:
5881 : 489 : nlmsg_free(msg);
5882 : 489 : return ret;
5883 : : }
5884 : :
5885 : :
5886 : 0 : static int wpa_driver_nl80211_authenticate_retry(
5887 : : struct wpa_driver_nl80211_data *drv)
5888 : : {
5889 : : struct wpa_driver_auth_params params;
5890 : 0 : struct i802_bss *bss = drv->first_bss;
5891 : : int i;
5892 : :
5893 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Try to authenticate again");
5894 : :
5895 : 0 : os_memset(¶ms, 0, sizeof(params));
5896 : 0 : params.freq = drv->auth_freq;
5897 : 0 : params.auth_alg = drv->auth_alg;
5898 : 0 : params.wep_tx_keyidx = drv->auth_wep_tx_keyidx;
5899 : 0 : params.local_state_change = drv->auth_local_state_change;
5900 : 0 : params.p2p = drv->auth_p2p;
5901 : :
5902 [ # # ]: 0 : if (!is_zero_ether_addr(drv->auth_bssid_))
5903 : 0 : params.bssid = drv->auth_bssid_;
5904 : :
5905 [ # # ]: 0 : if (drv->auth_ssid_len) {
5906 : 0 : params.ssid = drv->auth_ssid;
5907 : 0 : params.ssid_len = drv->auth_ssid_len;
5908 : : }
5909 : :
5910 : 0 : params.ie = drv->auth_ie;
5911 : 0 : params.ie_len = drv->auth_ie_len;
5912 : :
5913 [ # # ]: 0 : for (i = 0; i < 4; i++) {
5914 [ # # ]: 0 : if (drv->auth_wep_key_len[i]) {
5915 : 0 : params.wep_key[i] = drv->auth_wep_key[i];
5916 : 0 : params.wep_key_len[i] = drv->auth_wep_key_len[i];
5917 : : }
5918 : : }
5919 : :
5920 : 0 : drv->retry_auth = 1;
5921 : 0 : return wpa_driver_nl80211_authenticate(bss, ¶ms);
5922 : : }
5923 : :
5924 : :
5925 : : struct phy_info_arg {
5926 : : u16 *num_modes;
5927 : : struct hostapd_hw_modes *modes;
5928 : : int last_mode, last_chan_idx;
5929 : : };
5930 : :
5931 : 60522 : static void phy_info_ht_capa(struct hostapd_hw_modes *mode, struct nlattr *capa,
5932 : : struct nlattr *ampdu_factor,
5933 : : struct nlattr *ampdu_density,
5934 : : struct nlattr *mcs_set)
5935 : : {
5936 [ + + ]: 60522 : if (capa)
5937 : 2882 : mode->ht_capab = nla_get_u16(capa);
5938 : :
5939 [ + + ]: 60522 : if (ampdu_factor)
5940 : 2882 : mode->a_mpdu_params |= nla_get_u8(ampdu_factor) & 0x03;
5941 : :
5942 [ + + ]: 60522 : if (ampdu_density)
5943 : 2882 : mode->a_mpdu_params |= nla_get_u8(ampdu_density) << 2;
5944 : :
5945 [ + + ][ + - ]: 60522 : if (mcs_set && nla_len(mcs_set) >= 16) {
5946 : : u8 *mcs;
5947 : 2882 : mcs = nla_data(mcs_set);
5948 : 2882 : os_memcpy(mode->mcs_set, mcs, 16);
5949 : : }
5950 : 60522 : }
5951 : :
5952 : :
5953 : 60522 : static void phy_info_vht_capa(struct hostapd_hw_modes *mode,
5954 : : struct nlattr *capa,
5955 : : struct nlattr *mcs_set)
5956 : : {
5957 [ + + ]: 60522 : if (capa)
5958 : 2882 : mode->vht_capab = nla_get_u32(capa);
5959 : :
5960 [ + + ][ + - ]: 60522 : if (mcs_set && nla_len(mcs_set) >= 8) {
5961 : : u8 *mcs;
5962 : 2882 : mcs = nla_data(mcs_set);
5963 : 2882 : os_memcpy(mode->vht_mcs_set, mcs, 8);
5964 : : }
5965 : 60522 : }
5966 : :
5967 : :
5968 : 54758 : static void phy_info_freq(struct hostapd_hw_modes *mode,
5969 : : struct hostapd_channel_data *chan,
5970 : : struct nlattr *tb_freq[])
5971 : : {
5972 : : u8 channel;
5973 : 54758 : chan->freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
5974 : 54758 : chan->flag = 0;
5975 [ + - ]: 54758 : if (ieee80211_freq_to_chan(chan->freq, &channel) != NUM_HOSTAPD_MODES)
5976 : 54758 : chan->chan = channel;
5977 : :
5978 [ + + ]: 54758 : if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
5979 : 21615 : chan->flag |= HOSTAPD_CHAN_DISABLED;
5980 [ + + ]: 54758 : if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IR])
5981 : 38907 : chan->flag |= HOSTAPD_CHAN_PASSIVE_SCAN | HOSTAPD_CHAN_NO_IBSS;
5982 [ + + ]: 54758 : if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
5983 : 21615 : chan->flag |= HOSTAPD_CHAN_RADAR;
5984 : :
5985 [ + + ]: 54758 : if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]) {
5986 : 21615 : enum nl80211_dfs_state state =
5987 : 21615 : nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]);
5988 : :
5989 [ + - - - ]: 21615 : switch (state) {
5990 : : case NL80211_DFS_USABLE:
5991 : 21615 : chan->flag |= HOSTAPD_CHAN_DFS_USABLE;
5992 : 21615 : break;
5993 : : case NL80211_DFS_AVAILABLE:
5994 : 0 : chan->flag |= HOSTAPD_CHAN_DFS_AVAILABLE;
5995 : 0 : break;
5996 : : case NL80211_DFS_UNAVAILABLE:
5997 : 0 : chan->flag |= HOSTAPD_CHAN_DFS_UNAVAILABLE;
5998 : 0 : break;
5999 : : }
6000 : : }
6001 : 54758 : }
6002 : :
6003 : :
6004 : 60522 : static int phy_info_freqs(struct phy_info_arg *phy_info,
6005 : : struct hostapd_hw_modes *mode, struct nlattr *tb)
6006 : : {
6007 : : static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
6008 : : [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
6009 : : [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
6010 : : [NL80211_FREQUENCY_ATTR_NO_IR] = { .type = NLA_FLAG },
6011 : : [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
6012 : : [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
6013 : : [NL80211_FREQUENCY_ATTR_DFS_STATE] = { .type = NLA_U32 },
6014 : : };
6015 : 60522 : int new_channels = 0;
6016 : : struct hostapd_channel_data *channel;
6017 : : struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
6018 : : struct nlattr *nl_freq;
6019 : : int rem_freq, idx;
6020 : :
6021 [ + + ]: 60522 : if (tb == NULL)
6022 : 2882 : return NL_OK;
6023 : :
6024 [ + + ]: 112398 : nla_for_each_nested(nl_freq, tb, rem_freq) {
6025 : 109516 : nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
6026 : 54758 : nla_data(nl_freq), nla_len(nl_freq), freq_policy);
6027 [ - + ]: 54758 : if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
6028 : 0 : continue;
6029 : 54758 : new_channels++;
6030 : : }
6031 : :
6032 : 57640 : channel = os_realloc_array(mode->channels,
6033 : 57640 : mode->num_channels + new_channels,
6034 : : sizeof(struct hostapd_channel_data));
6035 [ - + ]: 57640 : if (!channel)
6036 : 0 : return NL_SKIP;
6037 : :
6038 : 57640 : mode->channels = channel;
6039 : 57640 : mode->num_channels += new_channels;
6040 : :
6041 : 57640 : idx = phy_info->last_chan_idx;
6042 : :
6043 [ + + ]: 112398 : nla_for_each_nested(nl_freq, tb, rem_freq) {
6044 : 109516 : nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
6045 : 54758 : nla_data(nl_freq), nla_len(nl_freq), freq_policy);
6046 [ - + ]: 54758 : if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
6047 : 0 : continue;
6048 : 54758 : phy_info_freq(mode, &mode->channels[idx], tb_freq);
6049 : 54758 : idx++;
6050 : : }
6051 : 57640 : phy_info->last_chan_idx = idx;
6052 : :
6053 : 60522 : return NL_OK;
6054 : : }
6055 : :
6056 : :
6057 : 60522 : static int phy_info_rates(struct hostapd_hw_modes *mode, struct nlattr *tb)
6058 : : {
6059 : : static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
6060 : : [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
6061 : : [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] =
6062 : : { .type = NLA_FLAG },
6063 : : };
6064 : : struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
6065 : : struct nlattr *nl_rate;
6066 : : int rem_rate, idx;
6067 : :
6068 [ + + ]: 60522 : if (tb == NULL)
6069 : 57640 : return NL_OK;
6070 : :
6071 [ + + ]: 31702 : nla_for_each_nested(nl_rate, tb, rem_rate) {
6072 : 57640 : nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
6073 : 28820 : nla_data(nl_rate), nla_len(nl_rate),
6074 : : rate_policy);
6075 [ - + ]: 28820 : if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
6076 : 0 : continue;
6077 : 28820 : mode->num_rates++;
6078 : : }
6079 : :
6080 : 2882 : mode->rates = os_calloc(mode->num_rates, sizeof(int));
6081 [ - + ]: 2882 : if (!mode->rates)
6082 : 0 : return NL_SKIP;
6083 : :
6084 : 2882 : idx = 0;
6085 : :
6086 [ + + ]: 31702 : nla_for_each_nested(nl_rate, tb, rem_rate) {
6087 : 57640 : nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
6088 : 28820 : nla_data(nl_rate), nla_len(nl_rate),
6089 : : rate_policy);
6090 [ - + ]: 28820 : if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
6091 : 0 : continue;
6092 : 28820 : mode->rates[idx] = nla_get_u32(
6093 : : tb_rate[NL80211_BITRATE_ATTR_RATE]);
6094 : 28820 : idx++;
6095 : : }
6096 : :
6097 : 60522 : return NL_OK;
6098 : : }
6099 : :
6100 : :
6101 : 60522 : static int phy_info_band(struct phy_info_arg *phy_info, struct nlattr *nl_band)
6102 : : {
6103 : : struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
6104 : : struct hostapd_hw_modes *mode;
6105 : : int ret;
6106 : :
6107 [ + + ]: 60522 : if (phy_info->last_mode != nl_band->nla_type) {
6108 : 2882 : mode = os_realloc_array(phy_info->modes,
6109 : 2882 : *phy_info->num_modes + 1,
6110 : : sizeof(*mode));
6111 [ - + ]: 2882 : if (!mode)
6112 : 0 : return NL_SKIP;
6113 : 2882 : phy_info->modes = mode;
6114 : :
6115 : 2882 : mode = &phy_info->modes[*(phy_info->num_modes)];
6116 : 2882 : os_memset(mode, 0, sizeof(*mode));
6117 : 2882 : mode->mode = NUM_HOSTAPD_MODES;
6118 : 2882 : mode->flags = HOSTAPD_MODE_FLAG_HT_INFO_KNOWN |
6119 : : HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN;
6120 : :
6121 : : /*
6122 : : * Unsupported VHT MCS stream is defined as value 3, so the VHT
6123 : : * MCS RX/TX map must be initialized with 0xffff to mark all 8
6124 : : * possible streams as unsupported. This will be overridden if
6125 : : * driver advertises VHT support.
6126 : : */
6127 : 2882 : mode->vht_mcs_set[0] = 0xff;
6128 : 2882 : mode->vht_mcs_set[1] = 0xff;
6129 : 2882 : mode->vht_mcs_set[4] = 0xff;
6130 : 2882 : mode->vht_mcs_set[5] = 0xff;
6131 : :
6132 : 2882 : *(phy_info->num_modes) += 1;
6133 : 2882 : phy_info->last_mode = nl_band->nla_type;
6134 : 2882 : phy_info->last_chan_idx = 0;
6135 : : } else
6136 : 57640 : mode = &phy_info->modes[*(phy_info->num_modes) - 1];
6137 : :
6138 : 60522 : nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
6139 : : nla_len(nl_band), NULL);
6140 : :
6141 : 60522 : phy_info_ht_capa(mode, tb_band[NL80211_BAND_ATTR_HT_CAPA],
6142 : : tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR],
6143 : : tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY],
6144 : : tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
6145 : 60522 : phy_info_vht_capa(mode, tb_band[NL80211_BAND_ATTR_VHT_CAPA],
6146 : : tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]);
6147 : 60522 : ret = phy_info_freqs(phy_info, mode, tb_band[NL80211_BAND_ATTR_FREQS]);
6148 [ - + ]: 60522 : if (ret != NL_OK)
6149 : 0 : return ret;
6150 : 60522 : ret = phy_info_rates(mode, tb_band[NL80211_BAND_ATTR_RATES]);
6151 [ - + ]: 60522 : if (ret != NL_OK)
6152 : 0 : return ret;
6153 : :
6154 : 60522 : return NL_OK;
6155 : : }
6156 : :
6157 : :
6158 : 76373 : static int phy_info_handler(struct nl_msg *msg, void *arg)
6159 : : {
6160 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
6161 : 76373 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
6162 : 76373 : struct phy_info_arg *phy_info = arg;
6163 : : struct nlattr *nl_band;
6164 : : int rem_band;
6165 : :
6166 : 76373 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
6167 : : genlmsg_attrlen(gnlh, 0), NULL);
6168 : :
6169 [ + + ]: 76373 : if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
6170 : 14410 : return NL_SKIP;
6171 : :
6172 [ + + ]: 122485 : nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band)
6173 : : {
6174 : 60522 : int res = phy_info_band(phy_info, nl_band);
6175 [ - + ]: 60522 : if (res != NL_OK)
6176 : 0 : return res;
6177 : : }
6178 : :
6179 : 76373 : return NL_SKIP;
6180 : : }
6181 : :
6182 : :
6183 : : static struct hostapd_hw_modes *
6184 : 1441 : wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes,
6185 : : u16 *num_modes)
6186 : : {
6187 : : u16 m;
6188 : 1441 : struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
6189 : 1441 : int i, mode11g_idx = -1;
6190 : :
6191 : : /* heuristic to set up modes */
6192 [ + + ]: 4323 : for (m = 0; m < *num_modes; m++) {
6193 [ - + ]: 2882 : if (!modes[m].num_channels)
6194 : 0 : continue;
6195 [ + + ]: 2882 : if (modes[m].channels[0].freq < 4000) {
6196 : 1441 : modes[m].mode = HOSTAPD_MODE_IEEE80211B;
6197 [ + - ]: 14410 : for (i = 0; i < modes[m].num_rates; i++) {
6198 [ + + ]: 12969 : if (modes[m].rates[i] > 200) {
6199 : 1441 : modes[m].mode = HOSTAPD_MODE_IEEE80211G;
6200 : 1441 : break;
6201 : : }
6202 : : }
6203 [ - + ]: 1441 : } else if (modes[m].channels[0].freq > 50000)
6204 : 0 : modes[m].mode = HOSTAPD_MODE_IEEE80211AD;
6205 : : else
6206 : 1441 : modes[m].mode = HOSTAPD_MODE_IEEE80211A;
6207 : : }
6208 : :
6209 : : /* If only 802.11g mode is included, use it to construct matching
6210 : : * 802.11b mode data. */
6211 : :
6212 [ + + ]: 4323 : for (m = 0; m < *num_modes; m++) {
6213 [ - + ]: 2882 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
6214 : 0 : return modes; /* 802.11b already included */
6215 [ + + ]: 2882 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
6216 : 1441 : mode11g_idx = m;
6217 : : }
6218 : :
6219 [ - + ]: 1441 : if (mode11g_idx < 0)
6220 : 0 : return modes; /* 2.4 GHz band not supported at all */
6221 : :
6222 : 1441 : nmodes = os_realloc_array(modes, *num_modes + 1, sizeof(*nmodes));
6223 [ - + ]: 1441 : if (nmodes == NULL)
6224 : 0 : return modes; /* Could not add 802.11b mode */
6225 : :
6226 : 1441 : mode = &nmodes[*num_modes];
6227 : 1441 : os_memset(mode, 0, sizeof(*mode));
6228 : 1441 : (*num_modes)++;
6229 : 1441 : modes = nmodes;
6230 : :
6231 : 1441 : mode->mode = HOSTAPD_MODE_IEEE80211B;
6232 : :
6233 : 1441 : mode11g = &modes[mode11g_idx];
6234 : 1441 : mode->num_channels = mode11g->num_channels;
6235 : 1441 : mode->channels = os_malloc(mode11g->num_channels *
6236 : : sizeof(struct hostapd_channel_data));
6237 [ - + ]: 1441 : if (mode->channels == NULL) {
6238 : 0 : (*num_modes)--;
6239 : 0 : return modes; /* Could not add 802.11b mode */
6240 : : }
6241 : 1441 : os_memcpy(mode->channels, mode11g->channels,
6242 : : mode11g->num_channels * sizeof(struct hostapd_channel_data));
6243 : :
6244 : 1441 : mode->num_rates = 0;
6245 : 1441 : mode->rates = os_malloc(4 * sizeof(int));
6246 [ - + ]: 1441 : if (mode->rates == NULL) {
6247 : 0 : os_free(mode->channels);
6248 : 0 : (*num_modes)--;
6249 : 0 : return modes; /* Could not add 802.11b mode */
6250 : : }
6251 : :
6252 [ + - ]: 5764 : for (i = 0; i < mode11g->num_rates; i++) {
6253 [ + + ][ + + ]: 5764 : if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
[ + + ]
6254 [ - + ]: 1441 : mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
6255 : 0 : continue;
6256 : 5764 : mode->rates[mode->num_rates] = mode11g->rates[i];
6257 : 5764 : mode->num_rates++;
6258 [ + + ]: 5764 : if (mode->num_rates == 4)
6259 : 1441 : break;
6260 : : }
6261 : :
6262 [ - + ]: 1441 : if (mode->num_rates == 0) {
6263 : 0 : os_free(mode->channels);
6264 : 0 : os_free(mode->rates);
6265 : 0 : (*num_modes)--;
6266 : 0 : return modes; /* No 802.11b rates */
6267 : : }
6268 : :
6269 : 1441 : wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
6270 : : "information");
6271 : :
6272 : 1441 : return modes;
6273 : : }
6274 : :
6275 : :
6276 : 8646 : static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
6277 : : int end)
6278 : : {
6279 : : int c;
6280 : :
6281 [ + + ]: 172920 : for (c = 0; c < mode->num_channels; c++) {
6282 : 164274 : struct hostapd_channel_data *chan = &mode->channels[c];
6283 [ + + ][ + + ]: 164274 : if (chan->freq - 10 >= start && chan->freq + 10 <= end)
6284 : 28820 : chan->flag |= HOSTAPD_CHAN_HT40;
6285 : : }
6286 : 8646 : }
6287 : :
6288 : :
6289 : 14410 : static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
6290 : : int end)
6291 : : {
6292 : : int c;
6293 : :
6294 [ + + ]: 288200 : for (c = 0; c < mode->num_channels; c++) {
6295 : 273790 : struct hostapd_channel_data *chan = &mode->channels[c];
6296 [ + + ]: 273790 : if (!(chan->flag & HOSTAPD_CHAN_HT40))
6297 : 129690 : continue;
6298 [ + + ][ + + ]: 144100 : if (chan->freq - 30 >= start && chan->freq - 10 <= end)
6299 : 20174 : chan->flag |= HOSTAPD_CHAN_HT40MINUS;
6300 [ + + ][ + + ]: 144100 : if (chan->freq + 10 >= start && chan->freq + 30 <= end)
6301 : 23056 : chan->flag |= HOSTAPD_CHAN_HT40PLUS;
6302 : : }
6303 : 14410 : }
6304 : :
6305 : :
6306 : 7205 : static void nl80211_reg_rule_max_eirp(u32 start, u32 end, u32 max_eirp,
6307 : : struct phy_info_arg *results)
6308 : : {
6309 : : u16 m;
6310 : :
6311 [ + + ]: 21615 : for (m = 0; m < *results->num_modes; m++) {
6312 : : int c;
6313 : 14410 : struct hostapd_hw_modes *mode = &results->modes[m];
6314 : :
6315 [ + + ]: 288200 : for (c = 0; c < mode->num_channels; c++) {
6316 : 273790 : struct hostapd_channel_data *chan = &mode->channels[c];
6317 [ + + ][ + + ]: 273790 : if ((u32) chan->freq - 10 >= start &&
6318 : 171479 : (u32) chan->freq + 10 <= end)
6319 : 33143 : chan->max_tx_power = max_eirp;
6320 : : }
6321 : : }
6322 : 7205 : }
6323 : :
6324 : :
6325 : 4323 : static void nl80211_reg_rule_ht40(u32 start, u32 end,
6326 : : struct phy_info_arg *results)
6327 : : {
6328 : : u16 m;
6329 : :
6330 [ + + ]: 12969 : for (m = 0; m < *results->num_modes; m++) {
6331 [ - + ]: 8646 : if (!(results->modes[m].ht_capab &
6332 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6333 : 0 : continue;
6334 : 8646 : nl80211_set_ht40_mode(&results->modes[m], start, end);
6335 : : }
6336 : 4323 : }
6337 : :
6338 : :
6339 : 7205 : static void nl80211_reg_rule_sec(struct nlattr *tb[],
6340 : : struct phy_info_arg *results)
6341 : : {
6342 : : u32 start, end, max_bw;
6343 : : u16 m;
6344 : :
6345 [ + - ][ + - ]: 7205 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6346 [ - + ]: 7205 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6347 : 7205 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6348 : 0 : return;
6349 : :
6350 : 7205 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6351 : 7205 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6352 : 7205 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6353 : :
6354 [ - + ]: 7205 : if (max_bw < 20)
6355 : 0 : return;
6356 : :
6357 [ + + ]: 21615 : for (m = 0; m < *results->num_modes; m++) {
6358 [ - + ]: 14410 : if (!(results->modes[m].ht_capab &
6359 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6360 : 0 : continue;
6361 : 14410 : nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
6362 : : }
6363 : : }
6364 : :
6365 : :
6366 : 0 : static void nl80211_set_vht_mode(struct hostapd_hw_modes *mode, int start,
6367 : : int end)
6368 : : {
6369 : : int c;
6370 : :
6371 [ # # ]: 0 : for (c = 0; c < mode->num_channels; c++) {
6372 : 0 : struct hostapd_channel_data *chan = &mode->channels[c];
6373 [ # # ][ # # ]: 0 : if (chan->freq - 10 >= start && chan->freq + 70 <= end)
6374 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_10_70;
6375 : :
6376 [ # # ][ # # ]: 0 : if (chan->freq - 30 >= start && chan->freq + 50 <= end)
6377 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_30_50;
6378 : :
6379 [ # # ][ # # ]: 0 : if (chan->freq - 50 >= start && chan->freq + 30 <= end)
6380 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_50_30;
6381 : :
6382 [ # # ][ # # ]: 0 : if (chan->freq - 70 >= start && chan->freq + 10 <= end)
6383 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_70_10;
6384 : : }
6385 : 0 : }
6386 : :
6387 : :
6388 : 7205 : static void nl80211_reg_rule_vht(struct nlattr *tb[],
6389 : : struct phy_info_arg *results)
6390 : : {
6391 : : u32 start, end, max_bw;
6392 : : u16 m;
6393 : :
6394 [ + - ][ + - ]: 7205 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6395 [ - + ]: 7205 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6396 : 7205 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6397 : 0 : return;
6398 : :
6399 : 7205 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6400 : 7205 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6401 : 7205 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6402 : :
6403 [ + - ]: 7205 : if (max_bw < 80)
6404 : 7205 : return;
6405 : :
6406 [ # # ]: 7205 : for (m = 0; m < *results->num_modes; m++) {
6407 [ # # ]: 0 : if (!(results->modes[m].ht_capab &
6408 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6409 : 0 : continue;
6410 : : /* TODO: use a real VHT support indication */
6411 [ # # ]: 0 : if (!results->modes[m].vht_capab)
6412 : 0 : continue;
6413 : :
6414 : 0 : nl80211_set_vht_mode(&results->modes[m], start, end);
6415 : : }
6416 : : }
6417 : :
6418 : :
6419 : 1441 : static int nl80211_get_reg(struct nl_msg *msg, void *arg)
6420 : : {
6421 : 1441 : struct phy_info_arg *results = arg;
6422 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
6423 : 1441 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
6424 : : struct nlattr *nl_rule;
6425 : : struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
6426 : : int rem_rule;
6427 : : static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
6428 : : [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
6429 : : [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
6430 : : [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
6431 : : [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
6432 : : [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
6433 : : [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
6434 : : };
6435 : :
6436 : 1441 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
6437 : : genlmsg_attrlen(gnlh, 0), NULL);
6438 [ - + ][ + - ]: 1441 : if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
6439 : 1441 : !tb_msg[NL80211_ATTR_REG_RULES]) {
6440 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
6441 : : "available");
6442 : 0 : return NL_SKIP;
6443 : : }
6444 : :
6445 : 1441 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
6446 : 1441 : (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
6447 : :
6448 [ + + ]: 8646 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6449 : : {
6450 : 7205 : u32 start, end, max_eirp = 0, max_bw = 0;
6451 : 14410 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6452 : 7205 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6453 [ - + ][ + - ]: 7205 : if (tb_rule[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6454 : 7205 : tb_rule[NL80211_ATTR_FREQ_RANGE_END] == NULL)
6455 : 0 : continue;
6456 : 7205 : start = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6457 : 7205 : end = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6458 [ + - ]: 7205 : if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
6459 : 7205 : max_eirp = nla_get_u32(tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP]) / 100;
6460 [ + - ]: 7205 : if (tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW])
6461 : 7205 : max_bw = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6462 : :
6463 : 7205 : wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz %u mBm",
6464 : : start, end, max_bw, max_eirp);
6465 [ + + ]: 7205 : if (max_bw >= 40)
6466 : 4323 : nl80211_reg_rule_ht40(start, end, results);
6467 [ + - ]: 7205 : if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
6468 : 7205 : nl80211_reg_rule_max_eirp(start, end, max_eirp,
6469 : : results);
6470 : : }
6471 : :
6472 [ + + ]: 8646 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6473 : : {
6474 : 14410 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6475 : 7205 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6476 : 7205 : nl80211_reg_rule_sec(tb_rule, results);
6477 : : }
6478 : :
6479 [ + + ]: 8646 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6480 : : {
6481 : 14410 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6482 : 7205 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6483 : 7205 : nl80211_reg_rule_vht(tb_rule, results);
6484 : : }
6485 : :
6486 : 1441 : return NL_SKIP;
6487 : : }
6488 : :
6489 : :
6490 : 1441 : static int nl80211_set_regulatory_flags(struct wpa_driver_nl80211_data *drv,
6491 : : struct phy_info_arg *results)
6492 : : {
6493 : : struct nl_msg *msg;
6494 : :
6495 : 1441 : msg = nlmsg_alloc();
6496 [ - + ]: 1441 : if (!msg)
6497 : 0 : return -ENOMEM;
6498 : :
6499 : 1441 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
6500 : 1441 : return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
6501 : : }
6502 : :
6503 : :
6504 : : static struct hostapd_hw_modes *
6505 : 1441 : wpa_driver_nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
6506 : : {
6507 : : u32 feat;
6508 : 1441 : struct i802_bss *bss = priv;
6509 : 1441 : struct wpa_driver_nl80211_data *drv = bss->drv;
6510 : : struct nl_msg *msg;
6511 : 1441 : struct phy_info_arg result = {
6512 : : .num_modes = num_modes,
6513 : : .modes = NULL,
6514 : : .last_mode = -1,
6515 : : };
6516 : :
6517 : 1441 : *num_modes = 0;
6518 : 1441 : *flags = 0;
6519 : :
6520 : 1441 : msg = nlmsg_alloc();
6521 [ - + ]: 1441 : if (!msg)
6522 : 0 : return NULL;
6523 : :
6524 : 1441 : feat = get_nl80211_protocol_features(drv);
6525 [ + - ]: 1441 : if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
6526 : 1441 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
6527 : : else
6528 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
6529 : :
6530 [ + - ]: 1441 : NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
6531 [ + - ]: 1441 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
6532 : :
6533 [ + - ]: 1441 : if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
6534 : 1441 : nl80211_set_regulatory_flags(drv, &result);
6535 : 1441 : return wpa_driver_nl80211_postprocess_modes(result.modes,
6536 : : num_modes);
6537 : : }
6538 : 0 : msg = NULL;
6539 : : nla_put_failure:
6540 : 0 : nlmsg_free(msg);
6541 : 1441 : return NULL;
6542 : : }
6543 : :
6544 : :
6545 : 12 : static int wpa_driver_nl80211_send_mntr(struct wpa_driver_nl80211_data *drv,
6546 : : const void *data, size_t len,
6547 : : int encrypt, int noack)
6548 : : {
6549 : 12 : __u8 rtap_hdr[] = {
6550 : : 0x00, 0x00, /* radiotap version */
6551 : : 0x0e, 0x00, /* radiotap length */
6552 : : 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
6553 : : IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
6554 : : 0x00, /* padding */
6555 : : 0x00, 0x00, /* RX and TX flags to indicate that */
6556 : : 0x00, 0x00, /* this is the injected frame directly */
6557 : : };
6558 : 12 : struct iovec iov[2] = {
6559 : : {
6560 : : .iov_base = &rtap_hdr,
6561 : : .iov_len = sizeof(rtap_hdr),
6562 : : },
6563 : : {
6564 : : .iov_base = (void *) data,
6565 : : .iov_len = len,
6566 : : }
6567 : : };
6568 : 12 : struct msghdr msg = {
6569 : : .msg_name = NULL,
6570 : : .msg_namelen = 0,
6571 : : .msg_iov = iov,
6572 : : .msg_iovlen = 2,
6573 : : .msg_control = NULL,
6574 : : .msg_controllen = 0,
6575 : : .msg_flags = 0,
6576 : : };
6577 : : int res;
6578 : 12 : u16 txflags = 0;
6579 : :
6580 [ + + ]: 12 : if (encrypt)
6581 : 8 : rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
6582 : :
6583 [ - + ]: 12 : if (drv->monitor_sock < 0) {
6584 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No monitor socket available "
6585 : : "for %s", __func__);
6586 : 0 : return -1;
6587 : : }
6588 : :
6589 [ + + ]: 12 : if (noack)
6590 : 2 : txflags |= IEEE80211_RADIOTAP_F_TX_NOACK;
6591 : 12 : WPA_PUT_LE16(&rtap_hdr[12], txflags);
6592 : :
6593 : 12 : res = sendmsg(drv->monitor_sock, &msg, 0);
6594 [ - + ]: 12 : if (res < 0) {
6595 : 0 : wpa_printf(MSG_INFO, "nl80211: sendmsg: %s", strerror(errno));
6596 : 0 : return -1;
6597 : : }
6598 : 12 : return 0;
6599 : : }
6600 : :
6601 : :
6602 : 2567 : static int wpa_driver_nl80211_send_frame(struct i802_bss *bss,
6603 : : const void *data, size_t len,
6604 : : int encrypt, int noack,
6605 : : unsigned int freq, int no_cck,
6606 : : int offchanok, unsigned int wait_time)
6607 : : {
6608 : 2567 : struct wpa_driver_nl80211_data *drv = bss->drv;
6609 : : u64 cookie;
6610 : : int res;
6611 : :
6612 [ + + ]: 2567 : if (freq == 0) {
6613 : 2468 : wpa_printf(MSG_DEBUG, "nl80211: send_frame - Use bss->freq=%u",
6614 : : bss->freq);
6615 : 2468 : freq = bss->freq;
6616 : : }
6617 : :
6618 [ + + ]: 2567 : if (drv->use_monitor) {
6619 : 12 : wpa_printf(MSG_DEBUG, "nl80211: send_frame(freq=%u bss->freq=%u) -> send_mntr",
6620 : : freq, bss->freq);
6621 : 12 : return wpa_driver_nl80211_send_mntr(drv, data, len,
6622 : : encrypt, noack);
6623 : : }
6624 : :
6625 : 2555 : wpa_printf(MSG_DEBUG, "nl80211: send_frame -> send_frame_cmd");
6626 : 2555 : res = nl80211_send_frame_cmd(bss, freq, wait_time, data, len,
6627 : : &cookie, no_cck, noack, offchanok);
6628 [ + + ][ + + ]: 2555 : if (res == 0 && !noack) {
6629 : : const struct ieee80211_mgmt *mgmt;
6630 : : u16 fc;
6631 : :
6632 : 1555 : mgmt = (const struct ieee80211_mgmt *) data;
6633 : 1555 : fc = le_to_host16(mgmt->frame_control);
6634 [ + - ][ + + ]: 1555 : if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6635 : 1555 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_ACTION) {
6636 : 125 : wpa_printf(MSG_MSGDUMP,
6637 : : "nl80211: Update send_action_cookie from 0x%llx to 0x%llx",
6638 : : (long long unsigned int)
6639 : 125 : drv->send_action_cookie,
6640 : : (long long unsigned int) cookie);
6641 : 125 : drv->send_action_cookie = cookie;
6642 : : }
6643 : : }
6644 : :
6645 : 2567 : return res;
6646 : : }
6647 : :
6648 : :
6649 : 2805 : static int wpa_driver_nl80211_send_mlme(struct i802_bss *bss, const u8 *data,
6650 : : size_t data_len, int noack,
6651 : : unsigned int freq, int no_cck,
6652 : : int offchanok,
6653 : : unsigned int wait_time)
6654 : : {
6655 : 2805 : struct wpa_driver_nl80211_data *drv = bss->drv;
6656 : : struct ieee80211_mgmt *mgmt;
6657 : 2805 : int encrypt = 1;
6658 : : u16 fc;
6659 : :
6660 : 2805 : mgmt = (struct ieee80211_mgmt *) data;
6661 : 2805 : fc = le_to_host16(mgmt->frame_control);
6662 : 2805 : wpa_printf(MSG_DEBUG, "nl80211: send_mlme - noack=%d freq=%u no_cck=%d offchanok=%d wait_time=%u fc=0x%x nlmode=%d",
6663 : 2805 : noack, freq, no_cck, offchanok, wait_time, fc, drv->nlmode);
6664 : :
6665 [ - + ][ + + ]: 2805 : if ((is_sta_interface(drv->nlmode) ||
6666 [ + - ]: 248 : drv->nlmode == NL80211_IFTYPE_P2P_DEVICE) &&
6667 [ + - ]: 248 : WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6668 : 248 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
6669 : : /*
6670 : : * The use of last_mgmt_freq is a bit of a hack,
6671 : : * but it works due to the single-threaded nature
6672 : : * of wpa_supplicant.
6673 : : */
6674 [ + - ]: 248 : if (freq == 0) {
6675 : 248 : wpa_printf(MSG_DEBUG, "nl80211: Use last_mgmt_freq=%d",
6676 : : drv->last_mgmt_freq);
6677 : 248 : freq = drv->last_mgmt_freq;
6678 : : }
6679 : 248 : return nl80211_send_frame_cmd(bss, freq, 0,
6680 : : data, data_len, NULL, 1, noack,
6681 : : 1);
6682 : : }
6683 : :
6684 [ - + ][ # # ]: 2557 : if (drv->device_ap_sme && is_ap_interface(drv->nlmode)) {
6685 [ # # ]: 0 : if (freq == 0) {
6686 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Use bss->freq=%d",
6687 : : bss->freq);
6688 : 0 : freq = bss->freq;
6689 : : }
6690 [ # # ]: 0 : return nl80211_send_frame_cmd(bss, freq,
6691 : 0 : (int) freq == bss->freq ? 0 :
6692 : : wait_time,
6693 : : data, data_len,
6694 : : &drv->send_action_cookie,
6695 : : no_cck, noack, offchanok);
6696 : : }
6697 : :
6698 [ + - ][ + + ]: 2557 : if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6699 : 2557 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_AUTH) {
6700 : : /*
6701 : : * Only one of the authentication frame types is encrypted.
6702 : : * In order for static WEP encryption to work properly (i.e.,
6703 : : * to not encrypt the frame), we need to tell mac80211 about
6704 : : * the frames that must not be encrypted.
6705 : : */
6706 : 475 : u16 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
6707 : 475 : u16 auth_trans = le_to_host16(mgmt->u.auth.auth_transaction);
6708 [ - + ][ # # ]: 475 : if (auth_alg != WLAN_AUTH_SHARED_KEY || auth_trans != 3)
6709 : 475 : encrypt = 0;
6710 : : }
6711 : :
6712 : 2557 : wpa_printf(MSG_DEBUG, "nl80211: send_mlme -> send_frame");
6713 : 2805 : return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt,
6714 : : noack, freq, no_cck, offchanok,
6715 : : wait_time);
6716 : : }
6717 : :
6718 : :
6719 : 1195 : static int nl80211_set_bss(struct i802_bss *bss, int cts, int preamble,
6720 : : int slot, int ht_opmode, int ap_isolate,
6721 : : int *basic_rates)
6722 : : {
6723 : 1195 : struct wpa_driver_nl80211_data *drv = bss->drv;
6724 : : struct nl_msg *msg;
6725 : :
6726 : 1195 : msg = nlmsg_alloc();
6727 [ - + ]: 1195 : if (!msg)
6728 : 0 : return -ENOMEM;
6729 : :
6730 : 1195 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_BSS);
6731 : :
6732 [ + - ]: 1195 : if (cts >= 0)
6733 [ + - ]: 1195 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_CTS_PROT, cts);
6734 [ + - ]: 1195 : if (preamble >= 0)
6735 [ + - ]: 1195 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_PREAMBLE, preamble);
6736 [ + - ]: 1195 : if (slot >= 0)
6737 [ + - ]: 1195 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_SLOT_TIME, slot);
6738 [ + + ]: 1195 : if (ht_opmode >= 0)
6739 [ + - ]: 565 : NLA_PUT_U16(msg, NL80211_ATTR_BSS_HT_OPMODE, ht_opmode);
6740 [ + - ]: 1195 : if (ap_isolate >= 0)
6741 [ + - ]: 1195 : NLA_PUT_U8(msg, NL80211_ATTR_AP_ISOLATE, ap_isolate);
6742 : :
6743 [ + - ]: 1195 : if (basic_rates) {
6744 : : u8 rates[NL80211_MAX_SUPP_RATES];
6745 : 1195 : u8 rates_len = 0;
6746 : : int i;
6747 : :
6748 [ + - ][ + + ]: 5524 : for (i = 0; i < NL80211_MAX_SUPP_RATES && basic_rates[i] >= 0;
6749 : 4329 : i++)
6750 : 4329 : rates[rates_len++] = basic_rates[i] / 5;
6751 : :
6752 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
6753 : : }
6754 : :
6755 [ + - ]: 1195 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
6756 : :
6757 : 1195 : return send_and_recv_msgs(drv, msg, NULL, NULL);
6758 : : nla_put_failure:
6759 : 0 : nlmsg_free(msg);
6760 : 1195 : return -ENOBUFS;
6761 : : }
6762 : :
6763 : :
6764 : 0 : static int wpa_driver_nl80211_set_acl(void *priv,
6765 : : struct hostapd_acl_params *params)
6766 : : {
6767 : 0 : struct i802_bss *bss = priv;
6768 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
6769 : : struct nl_msg *msg;
6770 : : struct nlattr *acl;
6771 : : unsigned int i;
6772 : 0 : int ret = 0;
6773 : :
6774 [ # # ]: 0 : if (!(drv->capa.max_acl_mac_addrs))
6775 : 0 : return -ENOTSUP;
6776 : :
6777 [ # # ]: 0 : if (params->num_mac_acl > drv->capa.max_acl_mac_addrs)
6778 : 0 : return -ENOTSUP;
6779 : :
6780 : 0 : msg = nlmsg_alloc();
6781 [ # # ]: 0 : if (!msg)
6782 : 0 : return -ENOMEM;
6783 : :
6784 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: Set %s ACL (num_mac_acl=%u)",
6785 : 0 : params->acl_policy ? "Accept" : "Deny", params->num_mac_acl);
6786 : :
6787 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_MAC_ACL);
6788 : :
6789 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
6790 : :
6791 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_ACL_POLICY, params->acl_policy ?
6792 : : NL80211_ACL_POLICY_DENY_UNLESS_LISTED :
6793 : : NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED);
6794 : :
6795 : 0 : acl = nla_nest_start(msg, NL80211_ATTR_MAC_ADDRS);
6796 [ # # ]: 0 : if (acl == NULL)
6797 : 0 : goto nla_put_failure;
6798 : :
6799 [ # # ]: 0 : for (i = 0; i < params->num_mac_acl; i++)
6800 [ # # ]: 0 : NLA_PUT(msg, i + 1, ETH_ALEN, params->mac_acl[i].addr);
6801 : :
6802 : 0 : nla_nest_end(msg, acl);
6803 : :
6804 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
6805 : 0 : msg = NULL;
6806 [ # # ]: 0 : if (ret) {
6807 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set MAC ACL: %d (%s)",
6808 : : ret, strerror(-ret));
6809 : : }
6810 : :
6811 : : nla_put_failure:
6812 : 0 : nlmsg_free(msg);
6813 : :
6814 : 0 : return ret;
6815 : : }
6816 : :
6817 : :
6818 : 1195 : static int wpa_driver_nl80211_set_ap(void *priv,
6819 : : struct wpa_driver_ap_params *params)
6820 : : {
6821 : 1195 : struct i802_bss *bss = priv;
6822 : 1195 : struct wpa_driver_nl80211_data *drv = bss->drv;
6823 : : struct nl_msg *msg;
6824 : 1195 : u8 cmd = NL80211_CMD_NEW_BEACON;
6825 : : int ret;
6826 : : int beacon_set;
6827 : 1195 : int ifindex = if_nametoindex(bss->ifname);
6828 : : int num_suites;
6829 : : u32 suites[10], suite;
6830 : : u32 ver;
6831 : :
6832 : 1195 : beacon_set = bss->beacon_set;
6833 : :
6834 : 1195 : msg = nlmsg_alloc();
6835 [ - + ]: 1195 : if (!msg)
6836 : 0 : return -ENOMEM;
6837 : :
6838 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: Set beacon (beacon_set=%d)",
6839 : : beacon_set);
6840 [ + + ]: 1195 : if (beacon_set)
6841 : 922 : cmd = NL80211_CMD_SET_BEACON;
6842 : :
6843 : 1195 : nl80211_cmd(drv, msg, 0, cmd);
6844 : 1195 : wpa_hexdump(MSG_DEBUG, "nl80211: Beacon head",
6845 : 1195 : params->head, params->head_len);
6846 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD, params->head_len, params->head);
6847 : 1195 : wpa_hexdump(MSG_DEBUG, "nl80211: Beacon tail",
6848 : 1195 : params->tail, params->tail_len);
6849 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL, params->tail_len, params->tail);
6850 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: ifindex=%d", ifindex);
6851 [ + - ]: 1195 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
6852 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: beacon_int=%d", params->beacon_int);
6853 [ + - ]: 1195 : NLA_PUT_U32(msg, NL80211_ATTR_BEACON_INTERVAL, params->beacon_int);
6854 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: dtim_period=%d", params->dtim_period);
6855 [ + - ]: 1195 : NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period);
6856 : 1195 : wpa_hexdump_ascii(MSG_DEBUG, "nl80211: ssid",
6857 : 1195 : params->ssid, params->ssid_len);
6858 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
6859 : : params->ssid);
6860 [ - + ][ # # ]: 1195 : if (params->proberesp && params->proberesp_len) {
6861 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: proberesp (offload)",
6862 : 0 : params->proberesp, params->proberesp_len);
6863 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_PROBE_RESP, params->proberesp_len,
6864 : : params->proberesp);
6865 : : }
6866 [ + - - - ]: 1195 : switch (params->hide_ssid) {
6867 : : case NO_SSID_HIDING:
6868 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID not in use");
6869 [ + - ]: 1195 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6870 : : NL80211_HIDDEN_SSID_NOT_IN_USE);
6871 : 1195 : break;
6872 : : case HIDDEN_SSID_ZERO_LEN:
6873 : 0 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero len");
6874 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6875 : : NL80211_HIDDEN_SSID_ZERO_LEN);
6876 : 0 : break;
6877 : : case HIDDEN_SSID_ZERO_CONTENTS:
6878 : 0 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero contents");
6879 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6880 : : NL80211_HIDDEN_SSID_ZERO_CONTENTS);
6881 : 0 : break;
6882 : : }
6883 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: privacy=%d", params->privacy);
6884 [ + + ]: 1195 : if (params->privacy)
6885 [ + - ]: 1125 : NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
6886 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: auth_algs=0x%x", params->auth_algs);
6887 [ + + ]: 1195 : if ((params->auth_algs & (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) ==
6888 : : (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) {
6889 : : /* Leave out the attribute */
6890 [ - + ]: 497 : } else if (params->auth_algs & WPA_AUTH_ALG_SHARED)
6891 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
6892 : : NL80211_AUTHTYPE_SHARED_KEY);
6893 : : else
6894 [ + - ]: 497 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
6895 : : NL80211_AUTHTYPE_OPEN_SYSTEM);
6896 : :
6897 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: wpa_version=0x%x", params->wpa_version);
6898 : 1195 : ver = 0;
6899 [ + + ]: 1195 : if (params->wpa_version & WPA_PROTO_WPA)
6900 : 56 : ver |= NL80211_WPA_VERSION_1;
6901 [ + + ]: 1195 : if (params->wpa_version & WPA_PROTO_RSN)
6902 : 1111 : ver |= NL80211_WPA_VERSION_2;
6903 [ + + ]: 1195 : if (ver)
6904 [ + - ]: 1120 : NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
6905 : :
6906 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: key_mgmt_suites=0x%x",
6907 : : params->key_mgmt_suites);
6908 : 1195 : num_suites = 0;
6909 [ + + ]: 1195 : if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X)
6910 : 277 : suites[num_suites++] = WLAN_AKM_SUITE_8021X;
6911 [ + + ]: 1195 : if (params->key_mgmt_suites & WPA_KEY_MGMT_PSK)
6912 : 817 : suites[num_suites++] = WLAN_AKM_SUITE_PSK;
6913 [ + + ]: 1195 : if (num_suites) {
6914 [ + - ]: 1094 : NLA_PUT(msg, NL80211_ATTR_AKM_SUITES,
6915 : : num_suites * sizeof(u32), suites);
6916 : : }
6917 : :
6918 [ + + ][ - + ]: 1195 : if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X &&
6919 : 277 : params->pairwise_ciphers & (WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40))
6920 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT);
6921 : :
6922 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: pairwise_ciphers=0x%x",
6923 : : params->pairwise_ciphers);
6924 : 1195 : num_suites = wpa_cipher_to_cipher_suites(params->pairwise_ciphers,
6925 : : suites, ARRAY_SIZE(suites));
6926 [ + + ]: 1195 : if (num_suites) {
6927 [ + - ]: 1119 : NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
6928 : : num_suites * sizeof(u32), suites);
6929 : : }
6930 : :
6931 : 1195 : wpa_printf(MSG_DEBUG, "nl80211: group_cipher=0x%x",
6932 : : params->group_cipher);
6933 : 1195 : suite = wpa_cipher_to_cipher_suite(params->group_cipher);
6934 [ + + ]: 1195 : if (suite)
6935 [ + - ]: 1125 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, suite);
6936 : :
6937 [ + - ]: 1195 : if (params->beacon_ies) {
6938 : 1195 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: beacon_ies",
6939 : : params->beacon_ies);
6940 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_IE, wpabuf_len(params->beacon_ies),
6941 : : wpabuf_head(params->beacon_ies));
6942 : : }
6943 [ + - ]: 1195 : if (params->proberesp_ies) {
6944 : 1195 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: proberesp_ies",
6945 : : params->proberesp_ies);
6946 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
6947 : : wpabuf_len(params->proberesp_ies),
6948 : : wpabuf_head(params->proberesp_ies));
6949 : : }
6950 [ + - ]: 1195 : if (params->assocresp_ies) {
6951 : 1195 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: assocresp_ies",
6952 : : params->assocresp_ies);
6953 [ + - ]: 1195 : NLA_PUT(msg, NL80211_ATTR_IE_ASSOC_RESP,
6954 : : wpabuf_len(params->assocresp_ies),
6955 : : wpabuf_head(params->assocresp_ies));
6956 : : }
6957 : :
6958 [ - + ]: 1195 : if (drv->capa.flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER) {
6959 : 0 : wpa_printf(MSG_DEBUG, "nl80211: ap_max_inactivity=%d",
6960 : : params->ap_max_inactivity);
6961 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_INACTIVITY_TIMEOUT,
6962 : : params->ap_max_inactivity);
6963 : : }
6964 : :
6965 : 1195 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
6966 [ - + ]: 1195 : if (ret) {
6967 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
6968 : : ret, strerror(-ret));
6969 : : } else {
6970 : 1195 : bss->beacon_set = 1;
6971 : 1195 : nl80211_set_bss(bss, params->cts_protect, params->preamble,
6972 : : params->short_slot_time, params->ht_opmode,
6973 : : params->isolate, params->basic_rates);
6974 : : }
6975 : 1195 : return ret;
6976 : : nla_put_failure:
6977 : 0 : nlmsg_free(msg);
6978 : 1195 : return -ENOBUFS;
6979 : : }
6980 : :
6981 : :
6982 : 316 : static int nl80211_put_freq_params(struct nl_msg *msg,
6983 : : struct hostapd_freq_params *freq)
6984 : : {
6985 [ + - ]: 316 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
6986 [ - + ]: 316 : if (freq->vht_enabled) {
6987 [ # # # # : 0 : switch (freq->bandwidth) {
# ]
6988 : : case 20:
6989 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6990 : : NL80211_CHAN_WIDTH_20);
6991 : 0 : break;
6992 : : case 40:
6993 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6994 : : NL80211_CHAN_WIDTH_40);
6995 : 0 : break;
6996 : : case 80:
6997 [ # # ]: 0 : if (freq->center_freq2)
6998 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6999 : : NL80211_CHAN_WIDTH_80P80);
7000 : : else
7001 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
7002 : : NL80211_CHAN_WIDTH_80);
7003 : 0 : break;
7004 : : case 160:
7005 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
7006 : : NL80211_CHAN_WIDTH_160);
7007 : 0 : break;
7008 : : default:
7009 : 0 : return -EINVAL;
7010 : : }
7011 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
7012 [ # # ]: 0 : if (freq->center_freq2)
7013 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
7014 : : freq->center_freq2);
7015 [ + + ]: 316 : } else if (freq->ht_enabled) {
7016 [ + + + ]: 256 : switch (freq->sec_channel_offset) {
7017 : : case -1:
7018 [ + - ]: 1 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7019 : : NL80211_CHAN_HT40MINUS);
7020 : 1 : break;
7021 : : case 1:
7022 [ + - ]: 3 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7023 : : NL80211_CHAN_HT40PLUS);
7024 : 3 : break;
7025 : : default:
7026 [ + - ]: 252 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7027 : : NL80211_CHAN_HT20);
7028 : 252 : break;
7029 : : }
7030 : : }
7031 : 316 : return 0;
7032 : :
7033 : : nla_put_failure:
7034 : 316 : return -ENOBUFS;
7035 : : }
7036 : :
7037 : :
7038 : 316 : static int wpa_driver_nl80211_set_freq(struct i802_bss *bss,
7039 : : struct hostapd_freq_params *freq)
7040 : : {
7041 : 316 : struct wpa_driver_nl80211_data *drv = bss->drv;
7042 : : struct nl_msg *msg;
7043 : : int ret;
7044 : :
7045 : 316 : wpa_printf(MSG_DEBUG,
7046 : : "nl80211: Set freq %d (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
7047 : : freq->freq, freq->ht_enabled, freq->vht_enabled,
7048 : : freq->bandwidth, freq->center_freq1, freq->center_freq2);
7049 : 316 : msg = nlmsg_alloc();
7050 [ - + ]: 316 : if (!msg)
7051 : 0 : return -1;
7052 : :
7053 : 316 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
7054 : :
7055 [ + - ]: 316 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
7056 [ - + ]: 316 : if (nl80211_put_freq_params(msg, freq) < 0)
7057 : 0 : goto nla_put_failure;
7058 : :
7059 : 316 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7060 : 316 : msg = NULL;
7061 [ + - ]: 316 : if (ret == 0) {
7062 : 316 : bss->freq = freq->freq;
7063 : 316 : return 0;
7064 : : }
7065 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set channel (freq=%d): "
7066 : : "%d (%s)", freq->freq, ret, strerror(-ret));
7067 : : nla_put_failure:
7068 : 0 : nlmsg_free(msg);
7069 : 316 : return -1;
7070 : : }
7071 : :
7072 : :
7073 : 3228 : static u32 sta_flags_nl80211(int flags)
7074 : : {
7075 : 3228 : u32 f = 0;
7076 : :
7077 [ + + ]: 3228 : if (flags & WPA_STA_AUTHORIZED)
7078 : 1543 : f |= BIT(NL80211_STA_FLAG_AUTHORIZED);
7079 [ + + ]: 3228 : if (flags & WPA_STA_WMM)
7080 : 1383 : f |= BIT(NL80211_STA_FLAG_WME);
7081 [ + + ]: 3228 : if (flags & WPA_STA_SHORT_PREAMBLE)
7082 : 1383 : f |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
7083 [ + + ]: 3228 : if (flags & WPA_STA_MFP)
7084 : 493 : f |= BIT(NL80211_STA_FLAG_MFP);
7085 [ + + ]: 3228 : if (flags & WPA_STA_TDLS_PEER)
7086 : 81 : f |= BIT(NL80211_STA_FLAG_TDLS_PEER);
7087 : :
7088 : 3228 : return f;
7089 : : }
7090 : :
7091 : :
7092 : 542 : static int wpa_driver_nl80211_sta_add(void *priv,
7093 : : struct hostapd_sta_add_params *params)
7094 : : {
7095 : 542 : struct i802_bss *bss = priv;
7096 : 542 : struct wpa_driver_nl80211_data *drv = bss->drv;
7097 : : struct nl_msg *msg;
7098 : : struct nl80211_sta_flag_update upd;
7099 : 542 : int ret = -ENOBUFS;
7100 : :
7101 [ + + ][ - + ]: 542 : if ((params->flags & WPA_STA_TDLS_PEER) &&
7102 : 81 : !(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
7103 : 0 : return -EOPNOTSUPP;
7104 : :
7105 : 542 : msg = nlmsg_alloc();
7106 [ - + ]: 542 : if (!msg)
7107 : 0 : return -ENOMEM;
7108 : :
7109 [ + + ]: 542 : wpa_printf(MSG_DEBUG, "nl80211: %s STA " MACSTR,
7110 : 3794 : params->set ? "Set" : "Add", MAC2STR(params->addr));
7111 [ + + ]: 542 : nl80211_cmd(drv, msg, 0, params->set ? NL80211_CMD_SET_STATION :
7112 : : NL80211_CMD_NEW_STATION);
7113 : :
7114 [ + - ]: 542 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
7115 [ + - ]: 542 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->addr);
7116 [ + - ]: 542 : NLA_PUT(msg, NL80211_ATTR_STA_SUPPORTED_RATES, params->supp_rates_len,
7117 : : params->supp_rates);
7118 : 542 : wpa_hexdump(MSG_DEBUG, " * supported rates", params->supp_rates,
7119 : : params->supp_rates_len);
7120 [ + + ]: 542 : if (!params->set) {
7121 [ + + ]: 504 : if (params->aid) {
7122 : 461 : wpa_printf(MSG_DEBUG, " * aid=%u", params->aid);
7123 [ + - ]: 461 : NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, params->aid);
7124 : : } else {
7125 : : /*
7126 : : * cfg80211 validates that AID is non-zero, so we have
7127 : : * to make this a non-zero value for the TDLS case where
7128 : : * a dummy STA entry is used for now.
7129 : : */
7130 : 43 : wpa_printf(MSG_DEBUG, " * aid=1 (TDLS workaround)");
7131 [ + - ]: 43 : NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, 1);
7132 : : }
7133 : 504 : wpa_printf(MSG_DEBUG, " * listen_interval=%u",
7134 : 504 : params->listen_interval);
7135 [ + - ]: 504 : NLA_PUT_U16(msg, NL80211_ATTR_STA_LISTEN_INTERVAL,
7136 : : params->listen_interval);
7137 [ - + ][ # # ]: 38 : } else if (params->aid && (params->flags & WPA_STA_TDLS_PEER)) {
7138 : 0 : wpa_printf(MSG_DEBUG, " * peer_aid=%u", params->aid);
7139 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_PEER_AID, params->aid);
7140 : : }
7141 [ + + ]: 542 : if (params->ht_capabilities) {
7142 : 223 : wpa_hexdump(MSG_DEBUG, " * ht_capabilities",
7143 : 223 : (u8 *) params->ht_capabilities,
7144 : : sizeof(*params->ht_capabilities));
7145 [ + - ]: 223 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY,
7146 : : sizeof(*params->ht_capabilities),
7147 : : params->ht_capabilities);
7148 : : }
7149 : :
7150 [ - + ]: 542 : if (params->vht_capabilities) {
7151 : 0 : wpa_hexdump(MSG_DEBUG, " * vht_capabilities",
7152 : 0 : (u8 *) params->vht_capabilities,
7153 : : sizeof(*params->vht_capabilities));
7154 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY,
7155 : : sizeof(*params->vht_capabilities),
7156 : : params->vht_capabilities);
7157 : : }
7158 : :
7159 : 542 : wpa_printf(MSG_DEBUG, " * capability=0x%x", params->capability);
7160 [ + - ]: 542 : NLA_PUT_U16(msg, NL80211_ATTR_STA_CAPABILITY, params->capability);
7161 : :
7162 [ + + ]: 542 : if (params->ext_capab) {
7163 : 38 : wpa_hexdump(MSG_DEBUG, " * ext_capab",
7164 : 38 : params->ext_capab, params->ext_capab_len);
7165 [ + - ]: 38 : NLA_PUT(msg, NL80211_ATTR_STA_EXT_CAPABILITY,
7166 : : params->ext_capab_len, params->ext_capab);
7167 : : }
7168 : :
7169 : 542 : os_memset(&upd, 0, sizeof(upd));
7170 : 542 : upd.mask = sta_flags_nl80211(params->flags);
7171 : 542 : upd.set = upd.mask;
7172 : 542 : wpa_printf(MSG_DEBUG, " * flags set=0x%x mask=0x%x",
7173 : : upd.set, upd.mask);
7174 [ + - ]: 542 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
7175 : :
7176 [ + + ]: 542 : if (params->flags & WPA_STA_WMM) {
7177 : 461 : struct nlattr *wme = nla_nest_start(msg, NL80211_ATTR_STA_WME);
7178 : :
7179 [ - + ]: 461 : if (!wme)
7180 : 0 : goto nla_put_failure;
7181 : :
7182 : 461 : wpa_printf(MSG_DEBUG, " * qosinfo=0x%x", params->qosinfo);
7183 [ + - ]: 461 : NLA_PUT_U8(msg, NL80211_STA_WME_UAPSD_QUEUES,
7184 : : params->qosinfo & WMM_QOSINFO_STA_AC_MASK);
7185 [ + - ]: 461 : NLA_PUT_U8(msg, NL80211_STA_WME_MAX_SP,
7186 : : (params->qosinfo >> WMM_QOSINFO_STA_SP_SHIFT) &
7187 : : WMM_QOSINFO_STA_SP_MASK);
7188 : 461 : nla_nest_end(msg, wme);
7189 : : }
7190 : :
7191 : 542 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7192 : 542 : msg = NULL;
7193 [ - + ]: 542 : if (ret)
7194 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: NL80211_CMD_%s_STATION "
7195 : 0 : "result: %d (%s)", params->set ? "SET" : "NEW", ret,
7196 : : strerror(-ret));
7197 [ - + ]: 542 : if (ret == -EEXIST)
7198 : 0 : ret = 0;
7199 : : nla_put_failure:
7200 : 542 : nlmsg_free(msg);
7201 : 542 : return ret;
7202 : : }
7203 : :
7204 : :
7205 : 930 : static int wpa_driver_nl80211_sta_remove(struct i802_bss *bss, const u8 *addr)
7206 : : {
7207 : 930 : struct wpa_driver_nl80211_data *drv = bss->drv;
7208 : : struct nl_msg *msg;
7209 : : int ret;
7210 : :
7211 : 930 : msg = nlmsg_alloc();
7212 [ - + ]: 930 : if (!msg)
7213 : 0 : return -ENOMEM;
7214 : :
7215 : 930 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
7216 : :
7217 [ + - ]: 930 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
7218 : : if_nametoindex(bss->ifname));
7219 [ + - ]: 930 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
7220 : :
7221 : 930 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7222 : 930 : wpa_printf(MSG_DEBUG, "nl80211: sta_remove -> DEL_STATION %s " MACSTR
7223 : : " --> %d (%s)",
7224 : 6510 : bss->ifname, MAC2STR(addr), ret, strerror(-ret));
7225 [ + + ]: 930 : if (ret == -ENOENT)
7226 : 470 : return 0;
7227 : 460 : return ret;
7228 : : nla_put_failure:
7229 : 0 : nlmsg_free(msg);
7230 : 930 : return -ENOBUFS;
7231 : : }
7232 : :
7233 : :
7234 : 41 : static void nl80211_remove_iface(struct wpa_driver_nl80211_data *drv,
7235 : : int ifidx)
7236 : : {
7237 : : struct nl_msg *msg;
7238 : :
7239 : 41 : wpa_printf(MSG_DEBUG, "nl80211: Remove interface ifindex=%d", ifidx);
7240 : :
7241 : : /* stop listening for EAPOL on this interface */
7242 : 41 : del_ifidx(drv, ifidx);
7243 : :
7244 : 41 : msg = nlmsg_alloc();
7245 [ - + ]: 41 : if (!msg)
7246 : 0 : goto nla_put_failure;
7247 : :
7248 : 41 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
7249 [ + - ]: 41 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifidx);
7250 : :
7251 [ + - ]: 41 : if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
7252 : 41 : return;
7253 : 0 : msg = NULL;
7254 : : nla_put_failure:
7255 : 0 : nlmsg_free(msg);
7256 : 0 : wpa_printf(MSG_ERROR, "Failed to remove interface (ifidx=%d)", ifidx);
7257 : : }
7258 : :
7259 : :
7260 : 742 : static const char * nl80211_iftype_str(enum nl80211_iftype mode)
7261 : : {
7262 [ + + + - : 742 : switch (mode) {
- + - + +
- - ]
7263 : : case NL80211_IFTYPE_ADHOC:
7264 : 6 : return "ADHOC";
7265 : : case NL80211_IFTYPE_STATION:
7266 : 357 : return "STATION";
7267 : : case NL80211_IFTYPE_AP:
7268 : 222 : return "AP";
7269 : : case NL80211_IFTYPE_AP_VLAN:
7270 : 0 : return "AP_VLAN";
7271 : : case NL80211_IFTYPE_WDS:
7272 : 0 : return "WDS";
7273 : : case NL80211_IFTYPE_MONITOR:
7274 : 2 : return "MONITOR";
7275 : : case NL80211_IFTYPE_MESH_POINT:
7276 : 0 : return "MESH_POINT";
7277 : : case NL80211_IFTYPE_P2P_CLIENT:
7278 : 77 : return "P2P_CLIENT";
7279 : : case NL80211_IFTYPE_P2P_GO:
7280 : 78 : return "P2P_GO";
7281 : : case NL80211_IFTYPE_P2P_DEVICE:
7282 : 0 : return "P2P_DEVICE";
7283 : : default:
7284 : 742 : return "unknown";
7285 : : }
7286 : : }
7287 : :
7288 : :
7289 : 41 : static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
7290 : : const char *ifname,
7291 : : enum nl80211_iftype iftype,
7292 : : const u8 *addr, int wds,
7293 : : int (*handler)(struct nl_msg *, void *),
7294 : : void *arg)
7295 : : {
7296 : : struct nl_msg *msg;
7297 : : int ifidx;
7298 : 41 : int ret = -ENOBUFS;
7299 : :
7300 : 41 : wpa_printf(MSG_DEBUG, "nl80211: Create interface iftype %d (%s)",
7301 : : iftype, nl80211_iftype_str(iftype));
7302 : :
7303 : 41 : msg = nlmsg_alloc();
7304 [ - + ]: 41 : if (!msg)
7305 : 0 : return -1;
7306 : :
7307 : 41 : nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_INTERFACE);
7308 [ - + ]: 41 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
7309 : 0 : goto nla_put_failure;
7310 [ + - ]: 41 : NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, ifname);
7311 [ + - ]: 41 : NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, iftype);
7312 : :
7313 [ + + ]: 41 : if (iftype == NL80211_IFTYPE_MONITOR) {
7314 : : struct nlattr *flags;
7315 : :
7316 : 2 : flags = nla_nest_start(msg, NL80211_ATTR_MNTR_FLAGS);
7317 [ - + ]: 2 : if (!flags)
7318 : 0 : goto nla_put_failure;
7319 : :
7320 [ + - ]: 2 : NLA_PUT_FLAG(msg, NL80211_MNTR_FLAG_COOK_FRAMES);
7321 : :
7322 : 2 : nla_nest_end(msg, flags);
7323 [ - + ]: 39 : } else if (wds) {
7324 [ # # ]: 0 : NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
7325 : : }
7326 : :
7327 : 41 : ret = send_and_recv_msgs(drv, msg, handler, arg);
7328 : 41 : msg = NULL;
7329 [ - + ]: 41 : if (ret) {
7330 : : nla_put_failure:
7331 : 0 : nlmsg_free(msg);
7332 : 0 : wpa_printf(MSG_ERROR, "Failed to create interface %s: %d (%s)",
7333 : : ifname, ret, strerror(-ret));
7334 : 0 : return ret;
7335 : : }
7336 : :
7337 [ - + ]: 41 : if (iftype == NL80211_IFTYPE_P2P_DEVICE)
7338 : 0 : return 0;
7339 : :
7340 : 41 : ifidx = if_nametoindex(ifname);
7341 : 41 : wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
7342 : : ifname, ifidx);
7343 : :
7344 [ - + ]: 41 : if (ifidx <= 0)
7345 : 0 : return -1;
7346 : :
7347 : : /* start listening for EAPOL on this interface */
7348 : 41 : add_ifidx(drv, ifidx);
7349 : :
7350 [ + - - + ]: 58 : if (addr && iftype != NL80211_IFTYPE_MONITOR &&
[ + + ]
7351 : 17 : linux_set_ifhwaddr(drv->global->ioctl_sock, ifname, addr)) {
7352 : 0 : nl80211_remove_iface(drv, ifidx);
7353 : 0 : return -1;
7354 : : }
7355 : :
7356 : 41 : return ifidx;
7357 : : }
7358 : :
7359 : :
7360 : 41 : static int nl80211_create_iface(struct wpa_driver_nl80211_data *drv,
7361 : : const char *ifname, enum nl80211_iftype iftype,
7362 : : const u8 *addr, int wds,
7363 : : int (*handler)(struct nl_msg *, void *),
7364 : : void *arg, int use_existing)
7365 : : {
7366 : : int ret;
7367 : :
7368 : 41 : ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds, handler,
7369 : : arg);
7370 : :
7371 : : /* if error occurred and interface exists already */
7372 [ # # ][ - + ]: 41 : if (ret == -ENFILE && if_nametoindex(ifname)) {
7373 [ # # ]: 0 : if (use_existing) {
7374 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Continue using existing interface %s",
7375 : : ifname);
7376 : 0 : return -ENFILE;
7377 : : }
7378 : 0 : wpa_printf(MSG_INFO, "Try to remove and re-create %s", ifname);
7379 : :
7380 : : /* Try to remove the interface that was already there. */
7381 : 0 : nl80211_remove_iface(drv, if_nametoindex(ifname));
7382 : :
7383 : : /* Try to create the interface again */
7384 : 0 : ret = nl80211_create_iface_once(drv, ifname, iftype, addr,
7385 : : wds, handler, arg);
7386 : : }
7387 : :
7388 [ + - ][ + + ]: 41 : if (ret >= 0 && is_p2p_net_interface(iftype))
7389 : 22 : nl80211_disable_11b_rates(drv, ret, 1);
7390 : :
7391 : 41 : return ret;
7392 : : }
7393 : :
7394 : :
7395 : 8 : static void handle_tx_callback(void *ctx, u8 *buf, size_t len, int ok)
7396 : : {
7397 : : struct ieee80211_hdr *hdr;
7398 : : u16 fc;
7399 : : union wpa_event_data event;
7400 : :
7401 : 8 : hdr = (struct ieee80211_hdr *) buf;
7402 : 8 : fc = le_to_host16(hdr->frame_control);
7403 : :
7404 : 8 : os_memset(&event, 0, sizeof(event));
7405 : 8 : event.tx_status.type = WLAN_FC_GET_TYPE(fc);
7406 : 8 : event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
7407 : 8 : event.tx_status.dst = hdr->addr1;
7408 : 8 : event.tx_status.data = buf;
7409 : 8 : event.tx_status.data_len = len;
7410 : 8 : event.tx_status.ack = ok;
7411 : 8 : wpa_supplicant_event(ctx, EVENT_TX_STATUS, &event);
7412 : 8 : }
7413 : :
7414 : :
7415 : 0 : static void from_unknown_sta(struct wpa_driver_nl80211_data *drv,
7416 : : u8 *buf, size_t len)
7417 : : {
7418 : 0 : struct ieee80211_hdr *hdr = (void *)buf;
7419 : : u16 fc;
7420 : : union wpa_event_data event;
7421 : :
7422 [ # # ]: 0 : if (len < sizeof(*hdr))
7423 : 0 : return;
7424 : :
7425 : 0 : fc = le_to_host16(hdr->frame_control);
7426 : :
7427 : 0 : os_memset(&event, 0, sizeof(event));
7428 : 0 : event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
7429 : 0 : event.rx_from_unknown.addr = hdr->addr2;
7430 : 0 : event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) ==
7431 : : (WLAN_FC_FROMDS | WLAN_FC_TODS);
7432 : 0 : wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
7433 : : }
7434 : :
7435 : :
7436 : 8 : static void handle_frame(struct wpa_driver_nl80211_data *drv,
7437 : : u8 *buf, size_t len, int datarate, int ssi_signal)
7438 : : {
7439 : : struct ieee80211_hdr *hdr;
7440 : : u16 fc;
7441 : : union wpa_event_data event;
7442 : :
7443 : 8 : hdr = (struct ieee80211_hdr *) buf;
7444 : 8 : fc = le_to_host16(hdr->frame_control);
7445 : :
7446 [ + - - - ]: 8 : switch (WLAN_FC_GET_TYPE(fc)) {
7447 : : case WLAN_FC_TYPE_MGMT:
7448 : 8 : os_memset(&event, 0, sizeof(event));
7449 : 8 : event.rx_mgmt.frame = buf;
7450 : 8 : event.rx_mgmt.frame_len = len;
7451 : 8 : event.rx_mgmt.datarate = datarate;
7452 : 8 : event.rx_mgmt.ssi_signal = ssi_signal;
7453 : 8 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
7454 : 8 : break;
7455 : : case WLAN_FC_TYPE_CTRL:
7456 : : /* can only get here with PS-Poll frames */
7457 : 0 : wpa_printf(MSG_DEBUG, "CTRL");
7458 : 0 : from_unknown_sta(drv, buf, len);
7459 : 0 : break;
7460 : : case WLAN_FC_TYPE_DATA:
7461 : 0 : from_unknown_sta(drv, buf, len);
7462 : 0 : break;
7463 : : }
7464 : 8 : }
7465 : :
7466 : :
7467 : 16 : static void handle_monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
7468 : : {
7469 : 16 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
7470 : : int len;
7471 : : unsigned char buf[3000];
7472 : : struct ieee80211_radiotap_iterator iter;
7473 : : int ret;
7474 : 16 : int datarate = 0, ssi_signal = 0;
7475 : 16 : int injected = 0, failed = 0, rxflags = 0;
7476 : :
7477 : 16 : len = recv(sock, buf, sizeof(buf), 0);
7478 [ - + ]: 16 : if (len < 0) {
7479 : 0 : wpa_printf(MSG_ERROR, "nl80211: Monitor socket recv failed: %s",
7480 : 0 : strerror(errno));
7481 : 0 : return;
7482 : : }
7483 : :
7484 [ - + ]: 16 : if (ieee80211_radiotap_iterator_init(&iter, (void*)buf, len)) {
7485 : 0 : wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame");
7486 : 0 : return;
7487 : : }
7488 : :
7489 : : while (1) {
7490 : 94 : ret = ieee80211_radiotap_iterator_next(&iter);
7491 [ + + ]: 94 : if (ret == -ENOENT)
7492 : 16 : break;
7493 [ - + ]: 78 : if (ret) {
7494 : 0 : wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame (%d)",
7495 : : ret);
7496 : 0 : return;
7497 : : }
7498 [ + + + + : 78 : switch (iter.this_arg_index) {
+ + + + ]
7499 : : case IEEE80211_RADIOTAP_FLAGS:
7500 [ - + ]: 8 : if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
7501 : 0 : len -= 4;
7502 : 8 : break;
7503 : : case IEEE80211_RADIOTAP_RX_FLAGS:
7504 : 8 : rxflags = 1;
7505 : 8 : break;
7506 : : case IEEE80211_RADIOTAP_TX_FLAGS:
7507 : 8 : injected = 1;
7508 : 8 : failed = le_to_host16((*(uint16_t *) iter.this_arg)) &
7509 : : IEEE80211_RADIOTAP_F_TX_FAIL;
7510 : 8 : break;
7511 : : case IEEE80211_RADIOTAP_DATA_RETRIES:
7512 : 8 : break;
7513 : : case IEEE80211_RADIOTAP_CHANNEL:
7514 : : /* TODO: convert from freq/flags to channel number */
7515 : 8 : break;
7516 : : case IEEE80211_RADIOTAP_RATE:
7517 : 14 : datarate = *iter.this_arg * 5;
7518 : 14 : break;
7519 : : case IEEE80211_RADIOTAP_DBM_ANTSIGNAL:
7520 : 8 : ssi_signal = (s8) *iter.this_arg;
7521 : 8 : break;
7522 : : }
7523 : 78 : }
7524 : :
7525 [ + + ][ - + ]: 16 : if (rxflags && injected)
7526 : 0 : return;
7527 : :
7528 [ + + ]: 16 : if (!injected)
7529 : 8 : handle_frame(drv, buf + iter.max_length,
7530 : 8 : len - iter.max_length, datarate, ssi_signal);
7531 : : else
7532 : 16 : handle_tx_callback(drv->ctx, buf + iter.max_length,
7533 : 8 : len - iter.max_length, !failed);
7534 : : }
7535 : :
7536 : :
7537 : : /*
7538 : : * we post-process the filter code later and rewrite
7539 : : * this to the offset to the last instruction
7540 : : */
7541 : : #define PASS 0xFF
7542 : : #define FAIL 0xFE
7543 : :
7544 : : static struct sock_filter msock_filter_insns[] = {
7545 : : /*
7546 : : * do a little-endian load of the radiotap length field
7547 : : */
7548 : : /* load lower byte into A */
7549 : : BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 2),
7550 : : /* put it into X (== index register) */
7551 : : BPF_STMT(BPF_MISC| BPF_TAX, 0),
7552 : : /* load upper byte into A */
7553 : : BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 3),
7554 : : /* left-shift it by 8 */
7555 : : BPF_STMT(BPF_ALU | BPF_LSH | BPF_K, 8),
7556 : : /* or with X */
7557 : : BPF_STMT(BPF_ALU | BPF_OR | BPF_X, 0),
7558 : : /* put result into X */
7559 : : BPF_STMT(BPF_MISC| BPF_TAX, 0),
7560 : :
7561 : : /*
7562 : : * Allow management frames through, this also gives us those
7563 : : * management frames that we sent ourselves with status
7564 : : */
7565 : : /* load the lower byte of the IEEE 802.11 frame control field */
7566 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7567 : : /* mask off frame type and version */
7568 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0xF),
7569 : : /* accept frame if it's both 0, fall through otherwise */
7570 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0, PASS, 0),
7571 : :
7572 : : /*
7573 : : * TODO: add a bit to radiotap RX flags that indicates
7574 : : * that the sending station is not associated, then
7575 : : * add a filter here that filters on our DA and that flag
7576 : : * to allow us to deauth frames to that bad station.
7577 : : *
7578 : : * For now allow all To DS data frames through.
7579 : : */
7580 : : /* load the IEEE 802.11 frame control field */
7581 : : BPF_STMT(BPF_LD | BPF_H | BPF_IND, 0),
7582 : : /* mask off frame type, version and DS status */
7583 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0F03),
7584 : : /* accept frame if version 0, type 2 and To DS, fall through otherwise
7585 : : */
7586 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0801, PASS, 0),
7587 : :
7588 : : #if 0
7589 : : /*
7590 : : * drop non-data frames
7591 : : */
7592 : : /* load the lower byte of the frame control field */
7593 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7594 : : /* mask off QoS bit */
7595 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0c),
7596 : : /* drop non-data frames */
7597 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 8, 0, FAIL),
7598 : : #endif
7599 : : /* load the upper byte of the frame control field */
7600 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 1),
7601 : : /* mask off toDS/fromDS */
7602 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x03),
7603 : : /* accept WDS frames */
7604 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 3, PASS, 0),
7605 : :
7606 : : /*
7607 : : * add header length to index
7608 : : */
7609 : : /* load the lower byte of the frame control field */
7610 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7611 : : /* mask off QoS bit */
7612 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x80),
7613 : : /* right shift it by 6 to give 0 or 2 */
7614 : : BPF_STMT(BPF_ALU | BPF_RSH | BPF_K, 6),
7615 : : /* add data frame header length */
7616 : : BPF_STMT(BPF_ALU | BPF_ADD | BPF_K, 24),
7617 : : /* add index, was start of 802.11 header */
7618 : : BPF_STMT(BPF_ALU | BPF_ADD | BPF_X, 0),
7619 : : /* move to index, now start of LL header */
7620 : : BPF_STMT(BPF_MISC | BPF_TAX, 0),
7621 : :
7622 : : /*
7623 : : * Accept empty data frames, we use those for
7624 : : * polling activity.
7625 : : */
7626 : : BPF_STMT(BPF_LD | BPF_W | BPF_LEN, 0),
7627 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_X, 0, PASS, 0),
7628 : :
7629 : : /*
7630 : : * Accept EAPOL frames
7631 : : */
7632 : : BPF_STMT(BPF_LD | BPF_W | BPF_IND, 0),
7633 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0xAAAA0300, 0, FAIL),
7634 : : BPF_STMT(BPF_LD | BPF_W | BPF_IND, 4),
7635 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0000888E, PASS, FAIL),
7636 : :
7637 : : /* keep these last two statements or change the code below */
7638 : : /* return 0 == "DROP" */
7639 : : BPF_STMT(BPF_RET | BPF_K, 0),
7640 : : /* return ~0 == "keep all" */
7641 : : BPF_STMT(BPF_RET | BPF_K, ~0),
7642 : : };
7643 : :
7644 : : static struct sock_fprog msock_filter = {
7645 : : .len = ARRAY_SIZE(msock_filter_insns),
7646 : : .filter = msock_filter_insns,
7647 : : };
7648 : :
7649 : :
7650 : 2 : static int add_monitor_filter(int s)
7651 : : {
7652 : : int idx;
7653 : :
7654 : : /* rewrite all PASS/FAIL jump offsets */
7655 [ + + ]: 60 : for (idx = 0; idx < msock_filter.len; idx++) {
7656 : 58 : struct sock_filter *insn = &msock_filter_insns[idx];
7657 : :
7658 [ + + ]: 58 : if (BPF_CLASS(insn->code) == BPF_JMP) {
7659 [ - + ]: 12 : if (insn->code == (BPF_JMP|BPF_JA)) {
7660 [ # # ]: 0 : if (insn->k == PASS)
7661 : 0 : insn->k = msock_filter.len - idx - 2;
7662 [ # # ]: 0 : else if (insn->k == FAIL)
7663 : 0 : insn->k = msock_filter.len - idx - 3;
7664 : : }
7665 : :
7666 [ + + ]: 12 : if (insn->jt == PASS)
7667 : 5 : insn->jt = msock_filter.len - idx - 2;
7668 [ - + ]: 7 : else if (insn->jt == FAIL)
7669 : 0 : insn->jt = msock_filter.len - idx - 3;
7670 : :
7671 [ - + ]: 12 : if (insn->jf == PASS)
7672 : 0 : insn->jf = msock_filter.len - idx - 2;
7673 [ + + ]: 12 : else if (insn->jf == FAIL)
7674 : 2 : insn->jf = msock_filter.len - idx - 3;
7675 : : }
7676 : : }
7677 : :
7678 [ - + ]: 2 : if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER,
7679 : : &msock_filter, sizeof(msock_filter))) {
7680 : 0 : wpa_printf(MSG_ERROR, "nl80211: setsockopt(SO_ATTACH_FILTER) failed: %s",
7681 : 0 : strerror(errno));
7682 : 0 : return -1;
7683 : : }
7684 : :
7685 : 2 : return 0;
7686 : : }
7687 : :
7688 : :
7689 : 238 : static void nl80211_remove_monitor_interface(
7690 : : struct wpa_driver_nl80211_data *drv)
7691 : : {
7692 [ + + ]: 238 : if (drv->monitor_refcount > 0)
7693 : 2 : drv->monitor_refcount--;
7694 : 238 : wpa_printf(MSG_DEBUG, "nl80211: Remove monitor interface: refcount=%d",
7695 : : drv->monitor_refcount);
7696 [ - + ]: 238 : if (drv->monitor_refcount > 0)
7697 : 238 : return;
7698 : :
7699 [ + + ]: 238 : if (drv->monitor_ifidx >= 0) {
7700 : 2 : nl80211_remove_iface(drv, drv->monitor_ifidx);
7701 : 2 : drv->monitor_ifidx = -1;
7702 : : }
7703 [ + + ]: 238 : if (drv->monitor_sock >= 0) {
7704 : 2 : eloop_unregister_read_sock(drv->monitor_sock);
7705 : 2 : close(drv->monitor_sock);
7706 : 2 : drv->monitor_sock = -1;
7707 : : }
7708 : : }
7709 : :
7710 : :
7711 : : static int
7712 : 2 : nl80211_create_monitor_interface(struct wpa_driver_nl80211_data *drv)
7713 : : {
7714 : : char buf[IFNAMSIZ];
7715 : : struct sockaddr_ll ll;
7716 : : int optval;
7717 : : socklen_t optlen;
7718 : :
7719 [ - + ]: 2 : if (drv->monitor_ifidx >= 0) {
7720 : 0 : drv->monitor_refcount++;
7721 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Re-use existing monitor interface: refcount=%d",
7722 : : drv->monitor_refcount);
7723 : 0 : return 0;
7724 : : }
7725 : :
7726 [ - + ]: 2 : if (os_strncmp(drv->first_bss->ifname, "p2p-", 4) == 0) {
7727 : : /*
7728 : : * P2P interface name is of the format p2p-%s-%d. For monitor
7729 : : * interface name corresponding to P2P GO, replace "p2p-" with
7730 : : * "mon-" to retain the same interface name length and to
7731 : : * indicate that it is a monitor interface.
7732 : : */
7733 : 0 : snprintf(buf, IFNAMSIZ, "mon-%s", drv->first_bss->ifname + 4);
7734 : : } else {
7735 : : /* Non-P2P interface with AP functionality. */
7736 : 2 : snprintf(buf, IFNAMSIZ, "mon.%s", drv->first_bss->ifname);
7737 : : }
7738 : :
7739 : 2 : buf[IFNAMSIZ - 1] = '\0';
7740 : :
7741 : 2 : drv->monitor_ifidx =
7742 : 2 : nl80211_create_iface(drv, buf, NL80211_IFTYPE_MONITOR, NULL,
7743 : : 0, NULL, NULL, 0);
7744 : :
7745 [ - + ]: 2 : if (drv->monitor_ifidx == -EOPNOTSUPP) {
7746 : : /*
7747 : : * This is backward compatibility for a few versions of
7748 : : * the kernel only that didn't advertise the right
7749 : : * attributes for the only driver that then supported
7750 : : * AP mode w/o monitor -- ath6kl.
7751 : : */
7752 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support "
7753 : : "monitor interface type - try to run without it");
7754 : 0 : drv->device_ap_sme = 1;
7755 : : }
7756 : :
7757 [ - + ]: 2 : if (drv->monitor_ifidx < 0)
7758 : 0 : return -1;
7759 : :
7760 [ - + ]: 2 : if (linux_set_iface_flags(drv->global->ioctl_sock, buf, 1))
7761 : 0 : goto error;
7762 : :
7763 : 2 : memset(&ll, 0, sizeof(ll));
7764 : 2 : ll.sll_family = AF_PACKET;
7765 : 2 : ll.sll_ifindex = drv->monitor_ifidx;
7766 : 2 : drv->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
7767 [ - + ]: 2 : if (drv->monitor_sock < 0) {
7768 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket[PF_PACKET,SOCK_RAW] failed: %s",
7769 : 0 : strerror(errno));
7770 : 0 : goto error;
7771 : : }
7772 : :
7773 [ - + ]: 2 : if (add_monitor_filter(drv->monitor_sock)) {
7774 : 0 : wpa_printf(MSG_INFO, "Failed to set socket filter for monitor "
7775 : : "interface; do filtering in user space");
7776 : : /* This works, but will cost in performance. */
7777 : : }
7778 : :
7779 [ - + ]: 2 : if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
7780 : 0 : wpa_printf(MSG_ERROR, "nl80211: monitor socket bind failed: %s",
7781 : 0 : strerror(errno));
7782 : 0 : goto error;
7783 : : }
7784 : :
7785 : 2 : optlen = sizeof(optval);
7786 : 2 : optval = 20;
7787 [ - + ]: 2 : if (setsockopt
7788 : 2 : (drv->monitor_sock, SOL_SOCKET, SO_PRIORITY, &optval, optlen)) {
7789 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to set socket priority: %s",
7790 : 0 : strerror(errno));
7791 : 0 : goto error;
7792 : : }
7793 : :
7794 [ - + ]: 2 : if (eloop_register_read_sock(drv->monitor_sock, handle_monitor_read,
7795 : : drv, NULL)) {
7796 : 0 : wpa_printf(MSG_INFO, "nl80211: Could not register monitor read socket");
7797 : 0 : goto error;
7798 : : }
7799 : :
7800 : 2 : drv->monitor_refcount++;
7801 : 2 : return 0;
7802 : : error:
7803 : 0 : nl80211_remove_monitor_interface(drv);
7804 : 2 : return -1;
7805 : : }
7806 : :
7807 : :
7808 : 290 : static int nl80211_setup_ap(struct i802_bss *bss)
7809 : : {
7810 : 290 : struct wpa_driver_nl80211_data *drv = bss->drv;
7811 : :
7812 : 290 : wpa_printf(MSG_DEBUG, "nl80211: Setup AP(%s) - device_ap_sme=%d use_monitor=%d",
7813 : 870 : bss->ifname, drv->device_ap_sme, drv->use_monitor);
7814 : :
7815 : : /*
7816 : : * Disable Probe Request reporting unless we need it in this way for
7817 : : * devices that include the AP SME, in the other case (unless using
7818 : : * monitor iface) we'll get it through the nl_mgmt socket instead.
7819 : : */
7820 [ + - ]: 290 : if (!drv->device_ap_sme)
7821 : 290 : wpa_driver_nl80211_probe_req_report(bss, 0);
7822 : :
7823 [ + - ][ + + ]: 290 : if (!drv->device_ap_sme && !drv->use_monitor)
7824 [ - + ]: 288 : if (nl80211_mgmt_subscribe_ap(bss))
7825 : 0 : return -1;
7826 : :
7827 [ - + ][ # # ]: 290 : if (drv->device_ap_sme && !drv->use_monitor)
7828 [ # # ]: 0 : if (nl80211_mgmt_subscribe_ap_dev_sme(bss))
7829 : 0 : return -1;
7830 : :
7831 [ + - ]: 292 : if (!drv->device_ap_sme && drv->use_monitor &&
[ + + - + ]
7832 [ # # ]: 2 : nl80211_create_monitor_interface(drv) &&
7833 : 0 : !drv->device_ap_sme)
7834 : 0 : return -1;
7835 : :
7836 [ - + # # ]: 290 : if (drv->device_ap_sme &&
7837 : 0 : wpa_driver_nl80211_probe_req_report(bss, 1) < 0) {
7838 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to enable "
7839 : : "Probe Request frame reporting in AP mode");
7840 : : /* Try to survive without this */
7841 : : }
7842 : :
7843 : 290 : return 0;
7844 : : }
7845 : :
7846 : :
7847 : 280 : static void nl80211_teardown_ap(struct i802_bss *bss)
7848 : : {
7849 : 280 : struct wpa_driver_nl80211_data *drv = bss->drv;
7850 : :
7851 : 280 : wpa_printf(MSG_DEBUG, "nl80211: Teardown AP(%s) - device_ap_sme=%d use_monitor=%d",
7852 : 840 : bss->ifname, drv->device_ap_sme, drv->use_monitor);
7853 [ - + ]: 280 : if (drv->device_ap_sme) {
7854 : 0 : wpa_driver_nl80211_probe_req_report(bss, 0);
7855 [ # # ]: 0 : if (!drv->use_monitor)
7856 : 0 : nl80211_mgmt_unsubscribe(bss, "AP teardown (dev SME)");
7857 [ + + ]: 280 : } else if (drv->use_monitor)
7858 : 2 : nl80211_remove_monitor_interface(drv);
7859 : : else
7860 : 278 : nl80211_mgmt_unsubscribe(bss, "AP teardown");
7861 : :
7862 : 280 : bss->beacon_set = 0;
7863 : 280 : }
7864 : :
7865 : :
7866 : 1989 : static int nl80211_send_eapol_data(struct i802_bss *bss,
7867 : : const u8 *addr, const u8 *data,
7868 : : size_t data_len)
7869 : : {
7870 : : struct sockaddr_ll ll;
7871 : : int ret;
7872 : :
7873 [ - + ]: 1989 : if (bss->drv->eapol_tx_sock < 0) {
7874 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No socket to send EAPOL");
7875 : 0 : return -1;
7876 : : }
7877 : :
7878 : 1989 : os_memset(&ll, 0, sizeof(ll));
7879 : 1989 : ll.sll_family = AF_PACKET;
7880 : 1989 : ll.sll_ifindex = bss->ifindex;
7881 : 1989 : ll.sll_protocol = htons(ETH_P_PAE);
7882 : 1989 : ll.sll_halen = ETH_ALEN;
7883 : 1989 : os_memcpy(ll.sll_addr, addr, ETH_ALEN);
7884 : 1989 : ret = sendto(bss->drv->eapol_tx_sock, data, data_len, 0,
7885 : : (struct sockaddr *) &ll, sizeof(ll));
7886 [ - + ]: 1989 : if (ret < 0)
7887 : 0 : wpa_printf(MSG_ERROR, "nl80211: EAPOL TX: %s",
7888 : 0 : strerror(errno));
7889 : :
7890 : 1989 : return ret;
7891 : : }
7892 : :
7893 : :
7894 : : static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
7895 : :
7896 : 1991 : static int wpa_driver_nl80211_hapd_send_eapol(
7897 : : void *priv, const u8 *addr, const u8 *data,
7898 : : size_t data_len, int encrypt, const u8 *own_addr, u32 flags)
7899 : : {
7900 : 1991 : struct i802_bss *bss = priv;
7901 : 1991 : struct wpa_driver_nl80211_data *drv = bss->drv;
7902 : : struct ieee80211_hdr *hdr;
7903 : : size_t len;
7904 : : u8 *pos;
7905 : : int res;
7906 : 1991 : int qos = flags & WPA_STA_WMM;
7907 : :
7908 [ + - ][ + + ]: 1991 : if (drv->device_ap_sme || !drv->use_monitor)
7909 : 1989 : return nl80211_send_eapol_data(bss, addr, data, data_len);
7910 : :
7911 [ + - ]: 2 : len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 +
7912 : : data_len;
7913 : 2 : hdr = os_zalloc(len);
7914 [ - + ]: 2 : if (hdr == NULL) {
7915 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to allocate EAPOL buffer(len=%lu)",
7916 : : (unsigned long) len);
7917 : 0 : return -1;
7918 : : }
7919 : :
7920 : 2 : hdr->frame_control =
7921 : : IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
7922 : 2 : hdr->frame_control |= host_to_le16(WLAN_FC_FROMDS);
7923 [ - + ]: 2 : if (encrypt)
7924 : 0 : hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
7925 [ + - ]: 2 : if (qos) {
7926 : 2 : hdr->frame_control |=
7927 : : host_to_le16(WLAN_FC_STYPE_QOS_DATA << 4);
7928 : : }
7929 : :
7930 : 2 : memcpy(hdr->IEEE80211_DA_FROMDS, addr, ETH_ALEN);
7931 : 2 : memcpy(hdr->IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
7932 : 2 : memcpy(hdr->IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
7933 : 2 : pos = (u8 *) (hdr + 1);
7934 : :
7935 [ + - ]: 2 : if (qos) {
7936 : : /* Set highest priority in QoS header */
7937 : 2 : pos[0] = 7;
7938 : 2 : pos[1] = 0;
7939 : 2 : pos += 2;
7940 : : }
7941 : :
7942 : 2 : memcpy(pos, rfc1042_header, sizeof(rfc1042_header));
7943 : 2 : pos += sizeof(rfc1042_header);
7944 : 2 : WPA_PUT_BE16(pos, ETH_P_PAE);
7945 : 2 : pos += 2;
7946 : 2 : memcpy(pos, data, data_len);
7947 : :
7948 : 2 : res = wpa_driver_nl80211_send_frame(bss, (u8 *) hdr, len, encrypt, 0,
7949 : : 0, 0, 0, 0);
7950 [ - + ]: 2 : if (res < 0) {
7951 : 0 : wpa_printf(MSG_ERROR, "i802_send_eapol - packet len: %lu - "
7952 : : "failed: %d (%s)",
7953 : 0 : (unsigned long) len, errno, strerror(errno));
7954 : : }
7955 : 2 : os_free(hdr);
7956 : :
7957 : 1991 : return res;
7958 : : }
7959 : :
7960 : :
7961 : 1343 : static int wpa_driver_nl80211_sta_set_flags(void *priv, const u8 *addr,
7962 : : int total_flags,
7963 : : int flags_or, int flags_and)
7964 : : {
7965 : 1343 : struct i802_bss *bss = priv;
7966 : 1343 : struct wpa_driver_nl80211_data *drv = bss->drv;
7967 : : struct nl_msg *msg;
7968 : : struct nlattr *flags;
7969 : : struct nl80211_sta_flag_update upd;
7970 : :
7971 : 1343 : msg = nlmsg_alloc();
7972 [ - + ]: 1343 : if (!msg)
7973 : 0 : return -ENOMEM;
7974 : :
7975 : 1343 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
7976 : :
7977 [ + - ]: 1343 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
7978 : : if_nametoindex(bss->ifname));
7979 [ + - ]: 1343 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
7980 : :
7981 : : /*
7982 : : * Backwards compatibility version using NL80211_ATTR_STA_FLAGS. This
7983 : : * can be removed eventually.
7984 : : */
7985 : 1343 : flags = nla_nest_start(msg, NL80211_ATTR_STA_FLAGS);
7986 [ - + ]: 1343 : if (!flags)
7987 : 0 : goto nla_put_failure;
7988 [ + + ]: 1343 : if (total_flags & WPA_STA_AUTHORIZED)
7989 [ + - ]: 382 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_AUTHORIZED);
7990 : :
7991 [ + + ]: 1343 : if (total_flags & WPA_STA_WMM)
7992 [ + - ]: 1331 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_WME);
7993 : :
7994 [ + + ]: 1343 : if (total_flags & WPA_STA_SHORT_PREAMBLE)
7995 [ + - ]: 1331 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_SHORT_PREAMBLE);
7996 : :
7997 [ + + ]: 1343 : if (total_flags & WPA_STA_MFP)
7998 [ + - ]: 51 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_MFP);
7999 : :
8000 [ - + ]: 1343 : if (total_flags & WPA_STA_TDLS_PEER)
8001 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_TDLS_PEER);
8002 : :
8003 : 1343 : nla_nest_end(msg, flags);
8004 : :
8005 : 1343 : os_memset(&upd, 0, sizeof(upd));
8006 : 1343 : upd.mask = sta_flags_nl80211(flags_or | ~flags_and);
8007 : 1343 : upd.set = sta_flags_nl80211(flags_or);
8008 [ + - ]: 1343 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
8009 : :
8010 : 1343 : return send_and_recv_msgs(drv, msg, NULL, NULL);
8011 : : nla_put_failure:
8012 : 0 : nlmsg_free(msg);
8013 : 1343 : return -ENOBUFS;
8014 : : }
8015 : :
8016 : :
8017 : 60 : static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
8018 : : struct wpa_driver_associate_params *params)
8019 : : {
8020 : : enum nl80211_iftype nlmode, old_mode;
8021 : 120 : struct hostapd_freq_params freq = {
8022 : 60 : .freq = params->freq,
8023 : : };
8024 : :
8025 [ + + ]: 60 : if (params->p2p) {
8026 : 58 : wpa_printf(MSG_DEBUG, "nl80211: Setup AP operations for P2P "
8027 : : "group (GO)");
8028 : 58 : nlmode = NL80211_IFTYPE_P2P_GO;
8029 : : } else
8030 : 2 : nlmode = NL80211_IFTYPE_AP;
8031 : :
8032 : 60 : old_mode = drv->nlmode;
8033 [ - + ]: 60 : if (wpa_driver_nl80211_set_mode(drv->first_bss, nlmode)) {
8034 : 0 : nl80211_remove_monitor_interface(drv);
8035 : 0 : return -1;
8036 : : }
8037 : :
8038 [ - + ]: 60 : if (wpa_driver_nl80211_set_freq(drv->first_bss, &freq)) {
8039 [ # # ]: 0 : if (old_mode != nlmode)
8040 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss, old_mode);
8041 : 0 : nl80211_remove_monitor_interface(drv);
8042 : 0 : return -1;
8043 : : }
8044 : :
8045 : 60 : return 0;
8046 : : }
8047 : :
8048 : :
8049 : 6 : static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv)
8050 : : {
8051 : : struct nl_msg *msg;
8052 : 6 : int ret = -1;
8053 : :
8054 : 6 : msg = nlmsg_alloc();
8055 [ - + ]: 6 : if (!msg)
8056 : 0 : return -1;
8057 : :
8058 : 6 : nl80211_cmd(drv, msg, 0, NL80211_CMD_LEAVE_IBSS);
8059 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8060 : 6 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8061 : 6 : msg = NULL;
8062 [ - + ]: 6 : if (ret) {
8063 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS failed: ret=%d "
8064 : : "(%s)", ret, strerror(-ret));
8065 : 0 : goto nla_put_failure;
8066 : : }
8067 : :
8068 : 6 : ret = 0;
8069 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS request sent successfully");
8070 : :
8071 : : nla_put_failure:
8072 [ - + ]: 6 : if (wpa_driver_nl80211_set_mode(drv->first_bss,
8073 : : NL80211_IFTYPE_STATION)) {
8074 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
8075 : : "station mode");
8076 : : }
8077 : :
8078 : 6 : nlmsg_free(msg);
8079 : 6 : return ret;
8080 : : }
8081 : :
8082 : :
8083 : 6 : static int wpa_driver_nl80211_ibss(struct wpa_driver_nl80211_data *drv,
8084 : : struct wpa_driver_associate_params *params)
8085 : : {
8086 : : struct nl_msg *msg;
8087 : 6 : int ret = -1;
8088 : 6 : int count = 0;
8089 : :
8090 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS (ifindex=%d)", drv->ifindex);
8091 : :
8092 [ - + ]: 6 : if (wpa_driver_nl80211_set_mode(drv->first_bss,
8093 : : NL80211_IFTYPE_ADHOC)) {
8094 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
8095 : : "IBSS mode");
8096 : 0 : return -1;
8097 : : }
8098 : :
8099 : : retry:
8100 : 6 : msg = nlmsg_alloc();
8101 [ - + ]: 6 : if (!msg)
8102 : 0 : return -1;
8103 : :
8104 : 6 : nl80211_cmd(drv, msg, 0, NL80211_CMD_JOIN_IBSS);
8105 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8106 : :
8107 [ + - ][ + - ]: 6 : if (params->ssid == NULL || params->ssid_len > sizeof(drv->ssid))
8108 : : goto nla_put_failure;
8109 : :
8110 : 6 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8111 : 6 : params->ssid, params->ssid_len);
8112 [ + - ]: 6 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8113 : : params->ssid);
8114 : 6 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8115 : 6 : drv->ssid_len = params->ssid_len;
8116 : :
8117 : 6 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8118 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8119 : :
8120 : 6 : ret = nl80211_set_conn_keys(params, msg);
8121 [ - + ]: 6 : if (ret)
8122 : 0 : goto nla_put_failure;
8123 : :
8124 [ - + ][ # # ]: 6 : if (params->bssid && params->fixed_bssid) {
8125 : 0 : wpa_printf(MSG_DEBUG, " * BSSID=" MACSTR,
8126 : 0 : MAC2STR(params->bssid));
8127 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8128 : : }
8129 : :
8130 [ + - ][ + + ]: 6 : if (params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
8131 [ + - ]: 3 : params->key_mgmt_suite == WPA_KEY_MGMT_PSK ||
8132 [ - + ]: 3 : params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X_SHA256 ||
8133 : 3 : params->key_mgmt_suite == WPA_KEY_MGMT_PSK_SHA256) {
8134 : 3 : wpa_printf(MSG_DEBUG, " * control port");
8135 [ + - ]: 3 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
8136 : : }
8137 : :
8138 [ + - ]: 6 : if (params->wpa_ie) {
8139 : 6 : wpa_hexdump(MSG_DEBUG,
8140 : : " * Extra IEs for Beacon/Probe Response frames",
8141 : 6 : params->wpa_ie, params->wpa_ie_len);
8142 [ + - ]: 6 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8143 : : params->wpa_ie);
8144 : : }
8145 : :
8146 : 6 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8147 : 6 : msg = NULL;
8148 [ - + ]: 6 : if (ret) {
8149 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS failed: ret=%d (%s)",
8150 : : ret, strerror(-ret));
8151 : 0 : count++;
8152 [ # # ][ # # ]: 0 : if (ret == -EALREADY && count == 1) {
8153 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Retry IBSS join after "
8154 : : "forced leave");
8155 : 0 : nl80211_leave_ibss(drv);
8156 : 0 : nlmsg_free(msg);
8157 : 0 : goto retry;
8158 : : }
8159 : :
8160 : 0 : goto nla_put_failure;
8161 : : }
8162 : 6 : ret = 0;
8163 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS request sent successfully");
8164 : :
8165 : : nla_put_failure:
8166 : 6 : nlmsg_free(msg);
8167 : 6 : return ret;
8168 : : }
8169 : :
8170 : :
8171 : 461 : static int nl80211_connect_common(struct wpa_driver_nl80211_data *drv,
8172 : : struct wpa_driver_associate_params *params,
8173 : : struct nl_msg *msg)
8174 : : {
8175 [ + - ]: 461 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8176 : :
8177 [ + - ]: 461 : if (params->bssid) {
8178 : 461 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
8179 : 2766 : MAC2STR(params->bssid));
8180 [ + - ]: 461 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8181 : : }
8182 : :
8183 [ + - ]: 461 : if (params->freq) {
8184 : 461 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8185 [ + - ]: 461 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8186 : 461 : drv->assoc_freq = params->freq;
8187 : : } else
8188 : 0 : drv->assoc_freq = 0;
8189 : :
8190 [ - + ]: 461 : if (params->bg_scan_period >= 0) {
8191 : 0 : wpa_printf(MSG_DEBUG, " * bg scan period=%d",
8192 : : params->bg_scan_period);
8193 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
8194 : : params->bg_scan_period);
8195 : : }
8196 : :
8197 [ + - ]: 461 : if (params->ssid) {
8198 : 461 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8199 : 461 : params->ssid, params->ssid_len);
8200 [ + - ]: 461 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8201 : : params->ssid);
8202 [ - + ]: 461 : if (params->ssid_len > sizeof(drv->ssid))
8203 : 0 : goto nla_put_failure;
8204 : 461 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8205 : 461 : drv->ssid_len = params->ssid_len;
8206 : : }
8207 : :
8208 : 461 : wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
8209 [ + - ]: 461 : if (params->wpa_ie)
8210 [ + - ]: 461 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8211 : : params->wpa_ie);
8212 : :
8213 [ + + ]: 461 : if (params->wpa_proto) {
8214 : 289 : enum nl80211_wpa_versions ver = 0;
8215 : :
8216 [ + + ]: 289 : if (params->wpa_proto & WPA_PROTO_WPA)
8217 : 7 : ver |= NL80211_WPA_VERSION_1;
8218 [ + + ]: 289 : if (params->wpa_proto & WPA_PROTO_RSN)
8219 : 282 : ver |= NL80211_WPA_VERSION_2;
8220 : :
8221 : 289 : wpa_printf(MSG_DEBUG, " * WPA Versions 0x%x", ver);
8222 [ + - ]: 289 : NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
8223 : : }
8224 : :
8225 [ + + ]: 461 : if (params->pairwise_suite != WPA_CIPHER_NONE) {
8226 : 291 : u32 cipher = wpa_cipher_to_cipher_suite(params->pairwise_suite);
8227 : 291 : wpa_printf(MSG_DEBUG, " * pairwise=0x%x", cipher);
8228 [ + - ]: 291 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
8229 : : }
8230 : :
8231 [ + + ]: 461 : if (params->group_suite != WPA_CIPHER_NONE) {
8232 : 291 : u32 cipher = wpa_cipher_to_cipher_suite(params->group_suite);
8233 : 291 : wpa_printf(MSG_DEBUG, " * group=0x%x", cipher);
8234 [ + - ]: 291 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
8235 : : }
8236 : :
8237 [ + - ][ + + ]: 461 : if (params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
8238 [ + - ]: 459 : params->key_mgmt_suite == WPA_KEY_MGMT_PSK ||
8239 [ + - ]: 459 : params->key_mgmt_suite == WPA_KEY_MGMT_FT_IEEE8021X ||
8240 [ - + ]: 459 : params->key_mgmt_suite == WPA_KEY_MGMT_FT_PSK ||
8241 : 459 : params->key_mgmt_suite == WPA_KEY_MGMT_CCKM) {
8242 : 2 : int mgmt = WLAN_AKM_SUITE_PSK;
8243 : :
8244 [ - - - - : 2 : switch (params->key_mgmt_suite) {
+ ]
8245 : : case WPA_KEY_MGMT_CCKM:
8246 : 0 : mgmt = WLAN_AKM_SUITE_CCKM;
8247 : 0 : break;
8248 : : case WPA_KEY_MGMT_IEEE8021X:
8249 : 0 : mgmt = WLAN_AKM_SUITE_8021X;
8250 : 0 : break;
8251 : : case WPA_KEY_MGMT_FT_IEEE8021X:
8252 : 0 : mgmt = WLAN_AKM_SUITE_FT_8021X;
8253 : 0 : break;
8254 : : case WPA_KEY_MGMT_FT_PSK:
8255 : 0 : mgmt = WLAN_AKM_SUITE_FT_PSK;
8256 : 0 : break;
8257 : : case WPA_KEY_MGMT_PSK:
8258 : : default:
8259 : 2 : mgmt = WLAN_AKM_SUITE_PSK;
8260 : 2 : break;
8261 : : }
8262 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_ATTR_AKM_SUITES, mgmt);
8263 : : }
8264 : :
8265 [ + - ]: 461 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
8266 : :
8267 [ + + ]: 461 : if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
8268 [ + - ]: 16 : NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
8269 : :
8270 [ - + ]: 461 : if (params->disable_ht)
8271 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
8272 : :
8273 [ - + ][ # # ]: 461 : if (params->htcaps && params->htcaps_mask) {
8274 : 0 : int sz = sizeof(struct ieee80211_ht_capabilities);
8275 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
8276 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
8277 : : params->htcaps_mask);
8278 : : }
8279 : :
8280 : : #ifdef CONFIG_VHT_OVERRIDES
8281 : : if (params->disable_vht) {
8282 : : wpa_printf(MSG_DEBUG, " * VHT disabled");
8283 : : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_VHT);
8284 : : }
8285 : :
8286 : : if (params->vhtcaps && params->vhtcaps_mask) {
8287 : : int sz = sizeof(struct ieee80211_vht_capabilities);
8288 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY, sz, params->vhtcaps);
8289 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY_MASK, sz,
8290 : : params->vhtcaps_mask);
8291 : : }
8292 : : #endif /* CONFIG_VHT_OVERRIDES */
8293 : :
8294 [ + + ]: 461 : if (params->p2p)
8295 : 119 : wpa_printf(MSG_DEBUG, " * P2P group");
8296 : :
8297 : 461 : return 0;
8298 : : nla_put_failure:
8299 : 461 : return -1;
8300 : : }
8301 : :
8302 : :
8303 : 5 : static int wpa_driver_nl80211_try_connect(
8304 : : struct wpa_driver_nl80211_data *drv,
8305 : : struct wpa_driver_associate_params *params)
8306 : : {
8307 : : struct nl_msg *msg;
8308 : : enum nl80211_auth_type type;
8309 : : int ret;
8310 : : int algs;
8311 : :
8312 : 5 : msg = nlmsg_alloc();
8313 [ - + ]: 5 : if (!msg)
8314 : 0 : return -1;
8315 : :
8316 : 5 : wpa_printf(MSG_DEBUG, "nl80211: Connect (ifindex=%d)", drv->ifindex);
8317 : 5 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CONNECT);
8318 : :
8319 : 5 : ret = nl80211_connect_common(drv, params, msg);
8320 [ - + ]: 5 : if (ret)
8321 : 0 : goto nla_put_failure;
8322 : :
8323 : 5 : algs = 0;
8324 [ + - ]: 5 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
8325 : 5 : algs++;
8326 [ - + ]: 5 : if (params->auth_alg & WPA_AUTH_ALG_SHARED)
8327 : 0 : algs++;
8328 [ - + ]: 5 : if (params->auth_alg & WPA_AUTH_ALG_LEAP)
8329 : 0 : algs++;
8330 [ - + ]: 5 : if (algs > 1) {
8331 : 0 : wpa_printf(MSG_DEBUG, " * Leave out Auth Type for automatic "
8332 : : "selection");
8333 : 0 : goto skip_auth_type;
8334 : : }
8335 : :
8336 [ + - ]: 5 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
8337 : 5 : type = NL80211_AUTHTYPE_OPEN_SYSTEM;
8338 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
8339 : 0 : type = NL80211_AUTHTYPE_SHARED_KEY;
8340 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
8341 : 0 : type = NL80211_AUTHTYPE_NETWORK_EAP;
8342 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_FT)
8343 : 0 : type = NL80211_AUTHTYPE_FT;
8344 : : else
8345 : 0 : goto nla_put_failure;
8346 : :
8347 : 5 : wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
8348 [ + - ]: 5 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
8349 : :
8350 : : skip_auth_type:
8351 : 5 : ret = nl80211_set_conn_keys(params, msg);
8352 [ - + ]: 5 : if (ret)
8353 : 0 : goto nla_put_failure;
8354 : :
8355 : 5 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8356 : 5 : msg = NULL;
8357 [ - + ]: 5 : if (ret) {
8358 : 0 : wpa_printf(MSG_DEBUG, "nl80211: MLME connect failed: ret=%d "
8359 : : "(%s)", ret, strerror(-ret));
8360 : 0 : goto nla_put_failure;
8361 : : }
8362 : 5 : ret = 0;
8363 : 5 : wpa_printf(MSG_DEBUG, "nl80211: Connect request send successfully");
8364 : :
8365 : : nla_put_failure:
8366 : 5 : nlmsg_free(msg);
8367 : 5 : return ret;
8368 : :
8369 : : }
8370 : :
8371 : :
8372 : 5 : static int wpa_driver_nl80211_connect(
8373 : : struct wpa_driver_nl80211_data *drv,
8374 : : struct wpa_driver_associate_params *params)
8375 : : {
8376 : 5 : int ret = wpa_driver_nl80211_try_connect(drv, params);
8377 [ - + ]: 5 : if (ret == -EALREADY) {
8378 : : /*
8379 : : * cfg80211 does not currently accept new connections if
8380 : : * we are already connected. As a workaround, force
8381 : : * disconnection and try again.
8382 : : */
8383 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Explicitly "
8384 : : "disconnecting before reassociation "
8385 : : "attempt");
8386 [ # # ]: 0 : if (wpa_driver_nl80211_disconnect(
8387 : : drv, WLAN_REASON_PREV_AUTH_NOT_VALID))
8388 : 0 : return -1;
8389 : 0 : ret = wpa_driver_nl80211_try_connect(drv, params);
8390 : : }
8391 : 5 : return ret;
8392 : : }
8393 : :
8394 : :
8395 : 527 : static int wpa_driver_nl80211_associate(
8396 : : void *priv, struct wpa_driver_associate_params *params)
8397 : : {
8398 : 527 : struct i802_bss *bss = priv;
8399 : 527 : struct wpa_driver_nl80211_data *drv = bss->drv;
8400 : : int ret;
8401 : : struct nl_msg *msg;
8402 : :
8403 [ + + ]: 527 : if (params->mode == IEEE80211_MODE_AP)
8404 : 60 : return wpa_driver_nl80211_ap(drv, params);
8405 : :
8406 [ + + ]: 467 : if (params->mode == IEEE80211_MODE_IBSS)
8407 : 6 : return wpa_driver_nl80211_ibss(drv, params);
8408 : :
8409 [ + + ]: 461 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
8410 [ + + ]: 5 : enum nl80211_iftype nlmode = params->p2p ?
8411 : : NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
8412 : :
8413 [ - + ]: 5 : if (wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
8414 : 0 : return -1;
8415 : 5 : return wpa_driver_nl80211_connect(drv, params);
8416 : : }
8417 : :
8418 : 456 : nl80211_mark_disconnected(drv);
8419 : :
8420 : 456 : msg = nlmsg_alloc();
8421 [ - + ]: 456 : if (!msg)
8422 : 0 : return -1;
8423 : :
8424 : 456 : wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
8425 : : drv->ifindex);
8426 : 456 : nl80211_cmd(drv, msg, 0, NL80211_CMD_ASSOCIATE);
8427 : :
8428 : 456 : ret = nl80211_connect_common(drv, params, msg);
8429 [ - + ]: 456 : if (ret)
8430 : 0 : goto nla_put_failure;
8431 : :
8432 [ + + ]: 456 : if (params->prev_bssid) {
8433 : 26 : wpa_printf(MSG_DEBUG, " * prev_bssid=" MACSTR,
8434 : 156 : MAC2STR(params->prev_bssid));
8435 [ + - ]: 26 : NLA_PUT(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
8436 : : params->prev_bssid);
8437 : : }
8438 : :
8439 : 456 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8440 : 456 : msg = NULL;
8441 [ - + ]: 456 : if (ret) {
8442 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
8443 : : "nl80211: MLME command failed (assoc): ret=%d (%s)",
8444 : : ret, strerror(-ret));
8445 : 0 : nl80211_dump_scan(drv);
8446 : 0 : goto nla_put_failure;
8447 : : }
8448 : 456 : ret = 0;
8449 : 456 : wpa_printf(MSG_DEBUG, "nl80211: Association request send "
8450 : : "successfully");
8451 : :
8452 : : nla_put_failure:
8453 : 456 : nlmsg_free(msg);
8454 : 527 : return ret;
8455 : : }
8456 : :
8457 : :
8458 : 701 : static int nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
8459 : : int ifindex, enum nl80211_iftype mode)
8460 : : {
8461 : : struct nl_msg *msg;
8462 : 701 : int ret = -ENOBUFS;
8463 : :
8464 : 701 : wpa_printf(MSG_DEBUG, "nl80211: Set mode ifindex %d iftype %d (%s)",
8465 : : ifindex, mode, nl80211_iftype_str(mode));
8466 : :
8467 : 701 : msg = nlmsg_alloc();
8468 [ - + ]: 701 : if (!msg)
8469 : 0 : return -ENOMEM;
8470 : :
8471 : 701 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_INTERFACE);
8472 [ - + ]: 701 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
8473 : 0 : goto nla_put_failure;
8474 [ + - ]: 701 : NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, mode);
8475 : :
8476 : 701 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8477 : 701 : msg = NULL;
8478 [ + - ]: 701 : if (!ret)
8479 : 701 : return 0;
8480 : : nla_put_failure:
8481 : 0 : nlmsg_free(msg);
8482 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface %d to mode %d:"
8483 : : " %d (%s)", ifindex, mode, ret, strerror(-ret));
8484 : 701 : return ret;
8485 : : }
8486 : :
8487 : :
8488 : 701 : static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
8489 : : enum nl80211_iftype nlmode)
8490 : : {
8491 : 701 : struct wpa_driver_nl80211_data *drv = bss->drv;
8492 : 701 : int ret = -1;
8493 : : int i;
8494 : 701 : int was_ap = is_ap_interface(drv->nlmode);
8495 : : int res;
8496 : :
8497 : 701 : res = nl80211_set_mode(drv, drv->ifindex, nlmode);
8498 [ # # ][ - + ]: 701 : if (res && nlmode == nl80211_get_ifmode(bss))
8499 : 0 : res = 0;
8500 : :
8501 [ + - ]: 701 : if (res == 0) {
8502 : 701 : drv->nlmode = nlmode;
8503 : 701 : ret = 0;
8504 : 701 : goto done;
8505 : : }
8506 : :
8507 [ # # ]: 0 : if (res == -ENODEV)
8508 : 0 : return -1;
8509 : :
8510 [ # # ]: 0 : if (nlmode == drv->nlmode) {
8511 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface already in "
8512 : : "requested mode - ignore error");
8513 : 0 : ret = 0;
8514 : 0 : goto done; /* Already in the requested mode */
8515 : : }
8516 : :
8517 : : /* mac80211 doesn't allow mode changes while the device is up, so
8518 : : * take the device down, try to set the mode again, and bring the
8519 : : * device back up.
8520 : : */
8521 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Try mode change after setting "
8522 : : "interface down");
8523 [ # # ]: 0 : for (i = 0; i < 10; i++) {
8524 : 0 : res = i802_set_iface_flags(bss, 0);
8525 [ # # ][ # # ]: 0 : if (res == -EACCES || res == -ENODEV)
8526 : : break;
8527 [ # # ]: 0 : if (res == 0) {
8528 : : /* Try to set the mode again while the interface is
8529 : : * down */
8530 : 0 : ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
8531 [ # # ]: 0 : if (ret == -EACCES)
8532 : 0 : break;
8533 : 0 : res = i802_set_iface_flags(bss, 1);
8534 [ # # ][ # # ]: 0 : if (res && !ret)
8535 : 0 : ret = -1;
8536 [ # # ]: 0 : else if (ret != -EBUSY)
8537 : 0 : break;
8538 : : } else
8539 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set "
8540 : : "interface down");
8541 : 0 : os_sleep(0, 100000);
8542 : : }
8543 : :
8544 [ # # ]: 0 : if (!ret) {
8545 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
8546 : : "interface is down");
8547 : 0 : drv->nlmode = nlmode;
8548 : 0 : drv->ignore_if_down_event = 1;
8549 : : }
8550 : :
8551 : : done:
8552 [ - + ]: 701 : if (ret) {
8553 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
8554 : 0 : "from %d failed", nlmode, drv->nlmode);
8555 : 0 : return ret;
8556 : : }
8557 : :
8558 [ + + ]: 701 : if (is_p2p_net_interface(nlmode))
8559 : 133 : nl80211_disable_11b_rates(drv, drv->ifindex, 1);
8560 [ + + ]: 568 : else if (drv->disabled_11b_rates)
8561 : 99 : nl80211_disable_11b_rates(drv, drv->ifindex, 0);
8562 : :
8563 [ + + ]: 701 : if (is_ap_interface(nlmode)) {
8564 : 273 : nl80211_mgmt_unsubscribe(bss, "start AP");
8565 : : /* Setup additional AP mode functionality if needed */
8566 [ - + ]: 273 : if (nl80211_setup_ap(bss))
8567 : 0 : return -1;
8568 [ + + ]: 428 : } else if (was_ap) {
8569 : : /* Remove additional AP mode functionality */
8570 : 263 : nl80211_teardown_ap(bss);
8571 : : } else {
8572 : 165 : nl80211_mgmt_unsubscribe(bss, "mode change");
8573 : : }
8574 : :
8575 [ + + ]: 893 : if (!bss->in_deinit && !is_ap_interface(nlmode) &&
[ + + - + ]
8576 : 192 : nl80211_mgmt_subscribe_non_ap(bss) < 0)
8577 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to register Action "
8578 : : "frame processing - ignore for now");
8579 : :
8580 : 701 : return 0;
8581 : : }
8582 : :
8583 : :
8584 : 325 : static int wpa_driver_nl80211_get_capa(void *priv,
8585 : : struct wpa_driver_capa *capa)
8586 : : {
8587 : 325 : struct i802_bss *bss = priv;
8588 : 325 : struct wpa_driver_nl80211_data *drv = bss->drv;
8589 [ - + ]: 325 : if (!drv->has_capability)
8590 : 0 : return -1;
8591 : 325 : os_memcpy(capa, &drv->capa, sizeof(*capa));
8592 [ + - ][ + - ]: 325 : if (drv->extended_capa && drv->extended_capa_mask) {
8593 : 325 : capa->extended_capa = drv->extended_capa;
8594 : 325 : capa->extended_capa_mask = drv->extended_capa_mask;
8595 : 325 : capa->extended_capa_len = drv->extended_capa_len;
8596 : : }
8597 : :
8598 [ + - ][ + - ]: 325 : if ((capa->flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
8599 : 325 : !drv->allow_p2p_device) {
8600 : 325 : wpa_printf(MSG_DEBUG, "nl80211: Do not indicate P2P_DEVICE support (p2p_device=1 driver param not specified)");
8601 : 325 : capa->flags &= ~WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
8602 : : }
8603 : :
8604 : 325 : return 0;
8605 : : }
8606 : :
8607 : :
8608 : 3100 : static int wpa_driver_nl80211_set_operstate(void *priv, int state)
8609 : : {
8610 : 3100 : struct i802_bss *bss = priv;
8611 : 3100 : struct wpa_driver_nl80211_data *drv = bss->drv;
8612 : :
8613 [ + + ]: 3100 : wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
8614 : : __func__, drv->operstate, state, state ? "UP" : "DORMANT");
8615 : 3100 : drv->operstate = state;
8616 [ + + ]: 3100 : return netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, -1,
8617 : : state ? IF_OPER_UP : IF_OPER_DORMANT);
8618 : : }
8619 : :
8620 : :
8621 : 970 : static int wpa_driver_nl80211_set_supp_port(void *priv, int authorized)
8622 : : {
8623 : 970 : struct i802_bss *bss = priv;
8624 : 970 : struct wpa_driver_nl80211_data *drv = bss->drv;
8625 : : struct nl_msg *msg;
8626 : : struct nl80211_sta_flag_update upd;
8627 : 970 : int ret = -ENOBUFS;
8628 : :
8629 [ + + ][ + - ]: 970 : if (!drv->associated && is_zero_ether_addr(drv->bssid) && !authorized) {
[ + - ]
8630 : 474 : wpa_printf(MSG_DEBUG, "nl80211: Skip set_supp_port(unauthorized) while not associated");
8631 : 474 : return 0;
8632 : : }
8633 : :
8634 [ + + ]: 496 : wpa_printf(MSG_DEBUG, "nl80211: Set supplicant port %sauthorized for "
8635 : 2976 : MACSTR, authorized ? "" : "un", MAC2STR(drv->bssid));
8636 : :
8637 : 496 : msg = nlmsg_alloc();
8638 [ - + ]: 496 : if (!msg)
8639 : 0 : return -ENOMEM;
8640 : :
8641 : 496 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
8642 : :
8643 [ + - ]: 496 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8644 : : if_nametoindex(bss->ifname));
8645 [ + - ]: 496 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
8646 : :
8647 : 496 : os_memset(&upd, 0, sizeof(upd));
8648 : 496 : upd.mask = BIT(NL80211_STA_FLAG_AUTHORIZED);
8649 [ + + ]: 496 : if (authorized)
8650 : 352 : upd.set = BIT(NL80211_STA_FLAG_AUTHORIZED);
8651 [ + - ]: 496 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
8652 : :
8653 : 496 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8654 : 496 : msg = NULL;
8655 [ + + ]: 496 : if (!ret)
8656 : 490 : return 0;
8657 : : nla_put_failure:
8658 : 6 : nlmsg_free(msg);
8659 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set STA flag: %d (%s)",
8660 : : ret, strerror(-ret));
8661 : 970 : return ret;
8662 : : }
8663 : :
8664 : :
8665 : : /* Set kernel driver on given frequency (MHz) */
8666 : 256 : static int i802_set_freq(void *priv, struct hostapd_freq_params *freq)
8667 : : {
8668 : 256 : struct i802_bss *bss = priv;
8669 : 256 : return wpa_driver_nl80211_set_freq(bss, freq);
8670 : : }
8671 : :
8672 : :
8673 : 316 : static inline int min_int(int a, int b)
8674 : : {
8675 [ - + ]: 316 : if (a < b)
8676 : 0 : return a;
8677 : 316 : return b;
8678 : : }
8679 : :
8680 : :
8681 : 316 : static int get_key_handler(struct nl_msg *msg, void *arg)
8682 : : {
8683 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
8684 : 316 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
8685 : :
8686 : 316 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
8687 : : genlmsg_attrlen(gnlh, 0), NULL);
8688 : :
8689 : : /*
8690 : : * TODO: validate the key index and mac address!
8691 : : * Otherwise, there's a race condition as soon as
8692 : : * the kernel starts sending key notifications.
8693 : : */
8694 : :
8695 [ + - ]: 316 : if (tb[NL80211_ATTR_KEY_SEQ])
8696 : 316 : memcpy(arg, nla_data(tb[NL80211_ATTR_KEY_SEQ]),
8697 : 316 : min_int(nla_len(tb[NL80211_ATTR_KEY_SEQ]), 6));
8698 : 316 : return NL_SKIP;
8699 : : }
8700 : :
8701 : :
8702 : 316 : static int i802_get_seqnum(const char *iface, void *priv, const u8 *addr,
8703 : : int idx, u8 *seq)
8704 : : {
8705 : 316 : struct i802_bss *bss = priv;
8706 : 316 : struct wpa_driver_nl80211_data *drv = bss->drv;
8707 : : struct nl_msg *msg;
8708 : :
8709 : 316 : msg = nlmsg_alloc();
8710 [ - + ]: 316 : if (!msg)
8711 : 0 : return -ENOMEM;
8712 : :
8713 : 316 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_KEY);
8714 : :
8715 [ - + ]: 316 : if (addr)
8716 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8717 [ + - ]: 316 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, idx);
8718 [ + - ]: 316 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(iface));
8719 : :
8720 : 316 : memset(seq, 0, 6);
8721 : :
8722 : 316 : return send_and_recv_msgs(drv, msg, get_key_handler, seq);
8723 : : nla_put_failure:
8724 : 0 : nlmsg_free(msg);
8725 : 316 : return -ENOBUFS;
8726 : : }
8727 : :
8728 : :
8729 : 0 : static int i802_set_rts(void *priv, int rts)
8730 : : {
8731 : 0 : struct i802_bss *bss = priv;
8732 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8733 : : struct nl_msg *msg;
8734 : 0 : int ret = -ENOBUFS;
8735 : : u32 val;
8736 : :
8737 : 0 : msg = nlmsg_alloc();
8738 [ # # ]: 0 : if (!msg)
8739 : 0 : return -ENOMEM;
8740 : :
8741 [ # # ]: 0 : if (rts >= 2347)
8742 : 0 : val = (u32) -1;
8743 : : else
8744 : 0 : val = rts;
8745 : :
8746 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8747 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8748 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val);
8749 : :
8750 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8751 : 0 : msg = NULL;
8752 [ # # ]: 0 : if (!ret)
8753 : 0 : return 0;
8754 : : nla_put_failure:
8755 : 0 : nlmsg_free(msg);
8756 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set RTS threshold %d: "
8757 : : "%d (%s)", rts, ret, strerror(-ret));
8758 : 0 : return ret;
8759 : : }
8760 : :
8761 : :
8762 : 0 : static int i802_set_frag(void *priv, int frag)
8763 : : {
8764 : 0 : struct i802_bss *bss = priv;
8765 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8766 : : struct nl_msg *msg;
8767 : 0 : int ret = -ENOBUFS;
8768 : : u32 val;
8769 : :
8770 : 0 : msg = nlmsg_alloc();
8771 [ # # ]: 0 : if (!msg)
8772 : 0 : return -ENOMEM;
8773 : :
8774 [ # # ]: 0 : if (frag >= 2346)
8775 : 0 : val = (u32) -1;
8776 : : else
8777 : 0 : val = frag;
8778 : :
8779 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8780 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8781 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, val);
8782 : :
8783 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8784 : 0 : msg = NULL;
8785 [ # # ]: 0 : if (!ret)
8786 : 0 : return 0;
8787 : : nla_put_failure:
8788 : 0 : nlmsg_free(msg);
8789 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set fragmentation threshold "
8790 : : "%d: %d (%s)", frag, ret, strerror(-ret));
8791 : 0 : return ret;
8792 : : }
8793 : :
8794 : :
8795 : 567 : static int i802_flush(void *priv)
8796 : : {
8797 : 567 : struct i802_bss *bss = priv;
8798 : 567 : struct wpa_driver_nl80211_data *drv = bss->drv;
8799 : : struct nl_msg *msg;
8800 : : int res;
8801 : :
8802 : 567 : msg = nlmsg_alloc();
8803 [ - + ]: 567 : if (!msg)
8804 : 0 : return -1;
8805 : :
8806 : 567 : wpa_printf(MSG_DEBUG, "nl80211: flush -> DEL_STATION %s (all)",
8807 : 567 : bss->ifname);
8808 : 567 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
8809 : :
8810 : : /*
8811 : : * XXX: FIX! this needs to flush all VLANs too
8812 : : */
8813 [ + - ]: 567 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8814 : : if_nametoindex(bss->ifname));
8815 : :
8816 : 567 : res = send_and_recv_msgs(drv, msg, NULL, NULL);
8817 [ - + ]: 567 : if (res) {
8818 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Station flush failed: ret=%d "
8819 : : "(%s)", res, strerror(-res));
8820 : : }
8821 : 567 : return res;
8822 : : nla_put_failure:
8823 : 0 : nlmsg_free(msg);
8824 : 567 : return -ENOBUFS;
8825 : : }
8826 : :
8827 : :
8828 : 13 : static int get_sta_handler(struct nl_msg *msg, void *arg)
8829 : : {
8830 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
8831 : 13 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
8832 : 13 : struct hostap_sta_driver_data *data = arg;
8833 : : struct nlattr *stats[NL80211_STA_INFO_MAX + 1];
8834 : : static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
8835 : : [NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
8836 : : [NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
8837 : : [NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
8838 : : [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
8839 : : [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
8840 : : [NL80211_STA_INFO_TX_FAILED] = { .type = NLA_U32 },
8841 : : };
8842 : :
8843 : 13 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
8844 : : genlmsg_attrlen(gnlh, 0), NULL);
8845 : :
8846 : : /*
8847 : : * TODO: validate the interface and mac address!
8848 : : * Otherwise, there's a race condition as soon as
8849 : : * the kernel starts sending station notifications.
8850 : : */
8851 : :
8852 [ - + ]: 13 : if (!tb[NL80211_ATTR_STA_INFO]) {
8853 : 0 : wpa_printf(MSG_DEBUG, "sta stats missing!");
8854 : 0 : return NL_SKIP;
8855 : : }
8856 [ - + ]: 13 : if (nla_parse_nested(stats, NL80211_STA_INFO_MAX,
8857 : : tb[NL80211_ATTR_STA_INFO],
8858 : : stats_policy)) {
8859 : 0 : wpa_printf(MSG_DEBUG, "failed to parse nested attributes!");
8860 : 0 : return NL_SKIP;
8861 : : }
8862 : :
8863 [ + - ]: 13 : if (stats[NL80211_STA_INFO_INACTIVE_TIME])
8864 : 13 : data->inactive_msec =
8865 : 13 : nla_get_u32(stats[NL80211_STA_INFO_INACTIVE_TIME]);
8866 [ + - ]: 13 : if (stats[NL80211_STA_INFO_RX_BYTES])
8867 : 13 : data->rx_bytes = nla_get_u32(stats[NL80211_STA_INFO_RX_BYTES]);
8868 [ + - ]: 13 : if (stats[NL80211_STA_INFO_TX_BYTES])
8869 : 13 : data->tx_bytes = nla_get_u32(stats[NL80211_STA_INFO_TX_BYTES]);
8870 [ + - ]: 13 : if (stats[NL80211_STA_INFO_RX_PACKETS])
8871 : 13 : data->rx_packets =
8872 : 13 : nla_get_u32(stats[NL80211_STA_INFO_RX_PACKETS]);
8873 [ + - ]: 13 : if (stats[NL80211_STA_INFO_TX_PACKETS])
8874 : 13 : data->tx_packets =
8875 : 13 : nla_get_u32(stats[NL80211_STA_INFO_TX_PACKETS]);
8876 [ + - ]: 13 : if (stats[NL80211_STA_INFO_TX_FAILED])
8877 : 13 : data->tx_retry_failed =
8878 : 13 : nla_get_u32(stats[NL80211_STA_INFO_TX_FAILED]);
8879 : :
8880 : 13 : return NL_SKIP;
8881 : : }
8882 : :
8883 : 13 : static int i802_read_sta_data(struct i802_bss *bss,
8884 : : struct hostap_sta_driver_data *data,
8885 : : const u8 *addr)
8886 : : {
8887 : 13 : struct wpa_driver_nl80211_data *drv = bss->drv;
8888 : : struct nl_msg *msg;
8889 : :
8890 : 13 : os_memset(data, 0, sizeof(*data));
8891 : 13 : msg = nlmsg_alloc();
8892 [ - + ]: 13 : if (!msg)
8893 : 0 : return -ENOMEM;
8894 : :
8895 : 13 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
8896 : :
8897 [ + - ]: 13 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8898 [ + - ]: 13 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
8899 : :
8900 : 13 : return send_and_recv_msgs(drv, msg, get_sta_handler, data);
8901 : : nla_put_failure:
8902 : 0 : nlmsg_free(msg);
8903 : 13 : return -ENOBUFS;
8904 : : }
8905 : :
8906 : :
8907 : 1024 : static int i802_set_tx_queue_params(void *priv, int queue, int aifs,
8908 : : int cw_min, int cw_max, int burst_time)
8909 : : {
8910 : 1024 : struct i802_bss *bss = priv;
8911 : 1024 : struct wpa_driver_nl80211_data *drv = bss->drv;
8912 : : struct nl_msg *msg;
8913 : : struct nlattr *txq, *params;
8914 : :
8915 : 1024 : msg = nlmsg_alloc();
8916 [ - + ]: 1024 : if (!msg)
8917 : 0 : return -1;
8918 : :
8919 : 1024 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8920 : :
8921 [ + - ]: 1024 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
8922 : :
8923 : 1024 : txq = nla_nest_start(msg, NL80211_ATTR_WIPHY_TXQ_PARAMS);
8924 [ - + ]: 1024 : if (!txq)
8925 : 0 : goto nla_put_failure;
8926 : :
8927 : : /* We are only sending parameters for a single TXQ at a time */
8928 : 1024 : params = nla_nest_start(msg, 1);
8929 [ - + ]: 1024 : if (!params)
8930 : 0 : goto nla_put_failure;
8931 : :
8932 [ + + + + : 1024 : switch (queue) {
- ]
8933 : : case 0:
8934 [ + - ]: 256 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VO);
8935 : 256 : break;
8936 : : case 1:
8937 [ + - ]: 256 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VI);
8938 : 256 : break;
8939 : : case 2:
8940 [ + - ]: 256 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BE);
8941 : 256 : break;
8942 : : case 3:
8943 [ + - ]: 256 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BK);
8944 : 256 : break;
8945 : : }
8946 : : /* Burst time is configured in units of 0.1 msec and TXOP parameter in
8947 : : * 32 usec, so need to convert the value here. */
8948 [ + - ]: 1024 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_TXOP, (burst_time * 100 + 16) / 32);
8949 [ + - ]: 1024 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMIN, cw_min);
8950 [ + - ]: 1024 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMAX, cw_max);
8951 [ + - ]: 1024 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_AIFS, aifs);
8952 : :
8953 : 1024 : nla_nest_end(msg, params);
8954 : :
8955 : 1024 : nla_nest_end(msg, txq);
8956 : :
8957 [ + - ]: 1024 : if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
8958 : 1024 : return 0;
8959 : 0 : msg = NULL;
8960 : : nla_put_failure:
8961 : 0 : nlmsg_free(msg);
8962 : 1024 : return -1;
8963 : : }
8964 : :
8965 : :
8966 : 0 : static int i802_set_sta_vlan(struct i802_bss *bss, const u8 *addr,
8967 : : const char *ifname, int vlan_id)
8968 : : {
8969 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8970 : : struct nl_msg *msg;
8971 : 0 : int ret = -ENOBUFS;
8972 : :
8973 : 0 : msg = nlmsg_alloc();
8974 [ # # ]: 0 : if (!msg)
8975 : 0 : return -ENOMEM;
8976 : :
8977 : 0 : wpa_printf(MSG_DEBUG, "nl80211: %s[%d]: set_sta_vlan(" MACSTR
8978 : : ", ifname=%s[%d], vlan_id=%d)",
8979 : 0 : bss->ifname, if_nametoindex(bss->ifname),
8980 : 0 : MAC2STR(addr), ifname, if_nametoindex(ifname), vlan_id);
8981 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
8982 : :
8983 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8984 : : if_nametoindex(bss->ifname));
8985 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8986 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN,
8987 : : if_nametoindex(ifname));
8988 : :
8989 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8990 : 0 : msg = NULL;
8991 [ # # ]: 0 : if (ret < 0) {
8992 : 0 : wpa_printf(MSG_ERROR, "nl80211: NL80211_ATTR_STA_VLAN (addr="
8993 : : MACSTR " ifname=%s vlan_id=%d) failed: %d (%s)",
8994 : 0 : MAC2STR(addr), ifname, vlan_id, ret,
8995 : : strerror(-ret));
8996 : : }
8997 : : nla_put_failure:
8998 : 0 : nlmsg_free(msg);
8999 : 0 : return ret;
9000 : : }
9001 : :
9002 : :
9003 : 0 : static int i802_get_inact_sec(void *priv, const u8 *addr)
9004 : : {
9005 : : struct hostap_sta_driver_data data;
9006 : : int ret;
9007 : :
9008 : 0 : data.inactive_msec = (unsigned long) -1;
9009 : 0 : ret = i802_read_sta_data(priv, &data, addr);
9010 [ # # ][ # # ]: 0 : if (ret || data.inactive_msec == (unsigned long) -1)
9011 : 0 : return -1;
9012 : 0 : return data.inactive_msec / 1000;
9013 : : }
9014 : :
9015 : :
9016 : 294 : static int i802_sta_clear_stats(void *priv, const u8 *addr)
9017 : : {
9018 : : #if 0
9019 : : /* TODO */
9020 : : #endif
9021 : 294 : return 0;
9022 : : }
9023 : :
9024 : :
9025 : 686 : static int i802_sta_deauth(void *priv, const u8 *own_addr, const u8 *addr,
9026 : : int reason)
9027 : : {
9028 : 686 : struct i802_bss *bss = priv;
9029 : 686 : struct wpa_driver_nl80211_data *drv = bss->drv;
9030 : : struct ieee80211_mgmt mgmt;
9031 : :
9032 [ - + ]: 686 : if (drv->device_ap_sme)
9033 : 0 : return wpa_driver_nl80211_sta_remove(bss, addr);
9034 : :
9035 : 686 : memset(&mgmt, 0, sizeof(mgmt));
9036 : 686 : mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
9037 : : WLAN_FC_STYPE_DEAUTH);
9038 : 686 : memcpy(mgmt.da, addr, ETH_ALEN);
9039 : 686 : memcpy(mgmt.sa, own_addr, ETH_ALEN);
9040 : 686 : memcpy(mgmt.bssid, own_addr, ETH_ALEN);
9041 : 686 : mgmt.u.deauth.reason_code = host_to_le16(reason);
9042 : 686 : return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
9043 : : IEEE80211_HDRLEN +
9044 : : sizeof(mgmt.u.deauth), 0, 0, 0, 0,
9045 : : 0);
9046 : : }
9047 : :
9048 : :
9049 : 0 : static int i802_sta_disassoc(void *priv, const u8 *own_addr, const u8 *addr,
9050 : : int reason)
9051 : : {
9052 : 0 : struct i802_bss *bss = priv;
9053 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9054 : : struct ieee80211_mgmt mgmt;
9055 : :
9056 [ # # ]: 0 : if (drv->device_ap_sme)
9057 : 0 : return wpa_driver_nl80211_sta_remove(bss, addr);
9058 : :
9059 : 0 : memset(&mgmt, 0, sizeof(mgmt));
9060 : 0 : mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
9061 : : WLAN_FC_STYPE_DISASSOC);
9062 : 0 : memcpy(mgmt.da, addr, ETH_ALEN);
9063 : 0 : memcpy(mgmt.sa, own_addr, ETH_ALEN);
9064 : 0 : memcpy(mgmt.bssid, own_addr, ETH_ALEN);
9065 : 0 : mgmt.u.disassoc.reason_code = host_to_le16(reason);
9066 : 0 : return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
9067 : : IEEE80211_HDRLEN +
9068 : : sizeof(mgmt.u.disassoc), 0, 0, 0, 0,
9069 : : 0);
9070 : : }
9071 : :
9072 : :
9073 : 244 : static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9074 : : {
9075 : : int i;
9076 : : int *old;
9077 : :
9078 : 244 : wpa_printf(MSG_DEBUG, "nl80211: Add own interface ifindex %d",
9079 : : ifidx);
9080 [ + - ]: 269 : for (i = 0; i < drv->num_if_indices; i++) {
9081 [ + + ]: 269 : if (drv->if_indices[i] == 0) {
9082 : 244 : drv->if_indices[i] = ifidx;
9083 : 244 : return;
9084 : : }
9085 : : }
9086 : :
9087 [ # # ]: 0 : if (drv->if_indices != drv->default_if_indices)
9088 : 0 : old = drv->if_indices;
9089 : : else
9090 : 0 : old = NULL;
9091 : :
9092 : 0 : drv->if_indices = os_realloc_array(old, drv->num_if_indices + 1,
9093 : : sizeof(int));
9094 [ # # ]: 0 : if (!drv->if_indices) {
9095 [ # # ]: 0 : if (!old)
9096 : 0 : drv->if_indices = drv->default_if_indices;
9097 : : else
9098 : 0 : drv->if_indices = old;
9099 : 0 : wpa_printf(MSG_ERROR, "Failed to reallocate memory for "
9100 : : "interfaces");
9101 : 0 : wpa_printf(MSG_ERROR, "Ignoring EAPOL on interface %d", ifidx);
9102 : 0 : return;
9103 [ # # ]: 0 : } else if (!old)
9104 : 0 : os_memcpy(drv->if_indices, drv->default_if_indices,
9105 : : sizeof(drv->default_if_indices));
9106 : 0 : drv->if_indices[drv->num_if_indices] = ifidx;
9107 : 244 : drv->num_if_indices++;
9108 : : }
9109 : :
9110 : :
9111 : 41 : static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9112 : : {
9113 : : int i;
9114 : :
9115 [ + - ]: 66 : for (i = 0; i < drv->num_if_indices; i++) {
9116 [ + + ]: 66 : if (drv->if_indices[i] == ifidx) {
9117 : 41 : drv->if_indices[i] = 0;
9118 : 41 : break;
9119 : : }
9120 : : }
9121 : 41 : }
9122 : :
9123 : :
9124 : 10282 : static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9125 : : {
9126 : : int i;
9127 : :
9128 [ + + ]: 152278 : for (i = 0; i < drv->num_if_indices; i++)
9129 [ + + ]: 143410 : if (drv->if_indices[i] == ifidx)
9130 : 1414 : return 1;
9131 : :
9132 : 10282 : return 0;
9133 : : }
9134 : :
9135 : :
9136 : 0 : static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val,
9137 : : const char *bridge_ifname, char *ifname_wds)
9138 : : {
9139 : 0 : struct i802_bss *bss = priv;
9140 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9141 : : char name[IFNAMSIZ + 1];
9142 : :
9143 : 0 : os_snprintf(name, sizeof(name), "%s.sta%d", bss->ifname, aid);
9144 [ # # ]: 0 : if (ifname_wds)
9145 : 0 : os_strlcpy(ifname_wds, name, IFNAMSIZ + 1);
9146 : :
9147 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
9148 : 0 : " aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
9149 [ # # ]: 0 : if (val) {
9150 [ # # ]: 0 : if (!if_nametoindex(name)) {
9151 [ # # ]: 0 : if (nl80211_create_iface(drv, name,
9152 : : NL80211_IFTYPE_AP_VLAN,
9153 : 0 : bss->addr, 1, NULL, NULL, 0) <
9154 : : 0)
9155 : 0 : return -1;
9156 [ # # # # ]: 0 : if (bridge_ifname &&
9157 : 0 : linux_br_add_if(drv->global->ioctl_sock,
9158 : : bridge_ifname, name) < 0)
9159 : 0 : return -1;
9160 : : }
9161 [ # # ]: 0 : if (linux_set_iface_flags(drv->global->ioctl_sock, name, 1)) {
9162 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to set WDS STA "
9163 : : "interface %s up", name);
9164 : : }
9165 : 0 : return i802_set_sta_vlan(priv, addr, name, 0);
9166 : : } else {
9167 [ # # ]: 0 : if (bridge_ifname)
9168 : 0 : linux_br_del_if(drv->global->ioctl_sock, bridge_ifname,
9169 : : name);
9170 : :
9171 : 0 : i802_set_sta_vlan(priv, addr, bss->ifname, 0);
9172 : 0 : return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
9173 : : name);
9174 : : }
9175 : : }
9176 : :
9177 : :
9178 : 3111 : static void handle_eapol(int sock, void *eloop_ctx, void *sock_ctx)
9179 : : {
9180 : 3111 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
9181 : : struct sockaddr_ll lladdr;
9182 : : unsigned char buf[3000];
9183 : : int len;
9184 : 3111 : socklen_t fromlen = sizeof(lladdr);
9185 : :
9186 : 3111 : len = recvfrom(sock, buf, sizeof(buf), 0,
9187 : : (struct sockaddr *)&lladdr, &fromlen);
9188 [ - + ]: 3111 : if (len < 0) {
9189 : 0 : wpa_printf(MSG_ERROR, "nl80211: EAPOL recv failed: %s",
9190 : 0 : strerror(errno));
9191 : 3111 : return;
9192 : : }
9193 : :
9194 [ + + ]: 3111 : if (have_ifidx(drv, lladdr.sll_ifindex))
9195 : 1326 : drv_event_eapol_rx(drv->ctx, lladdr.sll_addr, buf, len);
9196 : : }
9197 : :
9198 : :
9199 : 0 : static int i802_check_bridge(struct wpa_driver_nl80211_data *drv,
9200 : : struct i802_bss *bss,
9201 : : const char *brname, const char *ifname)
9202 : : {
9203 : : int ifindex;
9204 : : char in_br[IFNAMSIZ];
9205 : :
9206 : 0 : os_strlcpy(bss->brname, brname, IFNAMSIZ);
9207 : 0 : ifindex = if_nametoindex(brname);
9208 [ # # ]: 0 : if (ifindex == 0) {
9209 : : /*
9210 : : * Bridge was configured, but the bridge device does
9211 : : * not exist. Try to add it now.
9212 : : */
9213 [ # # ]: 0 : if (linux_br_add(drv->global->ioctl_sock, brname) < 0) {
9214 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add the "
9215 : : "bridge interface %s: %s",
9216 : 0 : brname, strerror(errno));
9217 : 0 : return -1;
9218 : : }
9219 : 0 : bss->added_bridge = 1;
9220 : 0 : add_ifidx(drv, if_nametoindex(brname));
9221 : : }
9222 : :
9223 [ # # ]: 0 : if (linux_br_get(in_br, ifname) == 0) {
9224 [ # # ]: 0 : if (os_strcmp(in_br, brname) == 0)
9225 : 0 : return 0; /* already in the bridge */
9226 : :
9227 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Removing interface %s from "
9228 : : "bridge %s", ifname, in_br);
9229 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, in_br, ifname) <
9230 : : 0) {
9231 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to "
9232 : : "remove interface %s from bridge "
9233 : : "%s: %s",
9234 : 0 : ifname, brname, strerror(errno));
9235 : 0 : return -1;
9236 : : }
9237 : : }
9238 : :
9239 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Adding interface %s into bridge %s",
9240 : : ifname, brname);
9241 [ # # ]: 0 : if (linux_br_add_if(drv->global->ioctl_sock, brname, ifname) < 0) {
9242 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add interface %s "
9243 : : "into bridge %s: %s",
9244 : 0 : ifname, brname, strerror(errno));
9245 : 0 : return -1;
9246 : : }
9247 : 0 : bss->added_if_into_bridge = 1;
9248 : :
9249 : 0 : return 0;
9250 : : }
9251 : :
9252 : :
9253 : 203 : static void *i802_init(struct hostapd_data *hapd,
9254 : : struct wpa_init_params *params)
9255 : : {
9256 : : struct wpa_driver_nl80211_data *drv;
9257 : : struct i802_bss *bss;
9258 : : size_t i;
9259 : : char brname[IFNAMSIZ];
9260 : : int ifindex, br_ifindex;
9261 : 203 : int br_added = 0;
9262 : :
9263 : 203 : bss = wpa_driver_nl80211_drv_init(hapd, params->ifname,
9264 : : params->global_priv, 1,
9265 : : params->bssid);
9266 [ - + ]: 203 : if (bss == NULL)
9267 : 0 : return NULL;
9268 : :
9269 : 203 : drv = bss->drv;
9270 : :
9271 [ - + ]: 203 : if (linux_br_get(brname, params->ifname) == 0) {
9272 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface %s is in bridge %s",
9273 : : params->ifname, brname);
9274 : 0 : br_ifindex = if_nametoindex(brname);
9275 : : } else {
9276 : 203 : brname[0] = '\0';
9277 : 203 : br_ifindex = 0;
9278 : : }
9279 : :
9280 [ + + ]: 412 : for (i = 0; i < params->num_bridge; i++) {
9281 [ - + ]: 209 : if (params->bridge[i]) {
9282 : 0 : ifindex = if_nametoindex(params->bridge[i]);
9283 [ # # ]: 0 : if (ifindex)
9284 : 0 : add_ifidx(drv, ifindex);
9285 [ # # ]: 0 : if (ifindex == br_ifindex)
9286 : 0 : br_added = 1;
9287 : : }
9288 : : }
9289 [ + - ][ - + ]: 203 : if (!br_added && br_ifindex &&
[ # # ]
9290 [ # # ]: 0 : (params->num_bridge == 0 || !params->bridge[0]))
9291 : 0 : add_ifidx(drv, br_ifindex);
9292 : :
9293 : : /* start listening for EAPOL on the default AP interface */
9294 : 203 : add_ifidx(drv, drv->ifindex);
9295 : :
9296 [ - + # # ]: 203 : if (params->num_bridge && params->bridge[0] &&
[ + - ]
9297 : 0 : i802_check_bridge(drv, bss, params->bridge[0], params->ifname) < 0)
9298 : 0 : goto failed;
9299 : :
9300 : 203 : drv->eapol_sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_PAE));
9301 [ - + ]: 203 : if (drv->eapol_sock < 0) {
9302 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket(PF_PACKET, SOCK_DGRAM, ETH_P_PAE) failed: %s",
9303 : 0 : strerror(errno));
9304 : 0 : goto failed;
9305 : : }
9306 : :
9307 [ - + ]: 203 : if (eloop_register_read_sock(drv->eapol_sock, handle_eapol, drv, NULL))
9308 : : {
9309 : 0 : wpa_printf(MSG_INFO, "nl80211: Could not register read socket for eapol");
9310 : 0 : goto failed;
9311 : : }
9312 : :
9313 [ - + ]: 203 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
9314 : : params->own_addr))
9315 : 0 : goto failed;
9316 : :
9317 : 203 : memcpy(bss->addr, params->own_addr, ETH_ALEN);
9318 : :
9319 : 203 : return bss;
9320 : :
9321 : : failed:
9322 : 0 : wpa_driver_nl80211_deinit(bss);
9323 : 203 : return NULL;
9324 : : }
9325 : :
9326 : :
9327 : 203 : static void i802_deinit(void *priv)
9328 : : {
9329 : 203 : struct i802_bss *bss = priv;
9330 : 203 : wpa_driver_nl80211_deinit(bss);
9331 : 203 : }
9332 : :
9333 : :
9334 : 39 : static enum nl80211_iftype wpa_driver_nl80211_if_type(
9335 : : enum wpa_driver_if_type type)
9336 : : {
9337 [ - + - + : 39 : switch (type) {
+ - - ]
9338 : : case WPA_IF_STATION:
9339 : 0 : return NL80211_IFTYPE_STATION;
9340 : : case WPA_IF_P2P_CLIENT:
9341 : : case WPA_IF_P2P_GROUP:
9342 : 12 : return NL80211_IFTYPE_P2P_CLIENT;
9343 : : case WPA_IF_AP_VLAN:
9344 : 0 : return NL80211_IFTYPE_AP_VLAN;
9345 : : case WPA_IF_AP_BSS:
9346 : 17 : return NL80211_IFTYPE_AP;
9347 : : case WPA_IF_P2P_GO:
9348 : 10 : return NL80211_IFTYPE_P2P_GO;
9349 : : case WPA_IF_P2P_DEVICE:
9350 : 0 : return NL80211_IFTYPE_P2P_DEVICE;
9351 : : }
9352 : 39 : return -1;
9353 : : }
9354 : :
9355 : :
9356 : : #ifdef CONFIG_P2P
9357 : :
9358 : 22 : static int nl80211_addr_in_use(struct nl80211_global *global, const u8 *addr)
9359 : : {
9360 : : struct wpa_driver_nl80211_data *drv;
9361 [ + + ]: 44 : dl_list_for_each(drv, &global->interfaces,
9362 : : struct wpa_driver_nl80211_data, list) {
9363 [ - + ]: 22 : if (os_memcmp(addr, drv->first_bss->addr, ETH_ALEN) == 0)
9364 : 0 : return 1;
9365 : : }
9366 : 22 : return 0;
9367 : : }
9368 : :
9369 : :
9370 : 0 : static int nl80211_p2p_interface_addr(struct wpa_driver_nl80211_data *drv,
9371 : : u8 *new_addr)
9372 : : {
9373 : : unsigned int idx;
9374 : :
9375 [ # # ]: 0 : if (!drv->global)
9376 : 0 : return -1;
9377 : :
9378 : 0 : os_memcpy(new_addr, drv->first_bss->addr, ETH_ALEN);
9379 [ # # ]: 0 : for (idx = 0; idx < 64; idx++) {
9380 : 0 : new_addr[0] = drv->first_bss->addr[0] | 0x02;
9381 : 0 : new_addr[0] ^= idx << 2;
9382 [ # # ]: 0 : if (!nl80211_addr_in_use(drv->global, new_addr))
9383 : 0 : break;
9384 : : }
9385 [ # # ]: 0 : if (idx == 64)
9386 : 0 : return -1;
9387 : :
9388 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Assigned new P2P Interface Address "
9389 : 0 : MACSTR, MAC2STR(new_addr));
9390 : :
9391 : 0 : return 0;
9392 : : }
9393 : :
9394 : : #endif /* CONFIG_P2P */
9395 : :
9396 : :
9397 : : struct wdev_info {
9398 : : u64 wdev_id;
9399 : : int wdev_id_set;
9400 : : u8 macaddr[ETH_ALEN];
9401 : : };
9402 : :
9403 : 0 : static int nl80211_wdev_handler(struct nl_msg *msg, void *arg)
9404 : : {
9405 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
9406 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
9407 : 0 : struct wdev_info *wi = arg;
9408 : :
9409 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
9410 : : genlmsg_attrlen(gnlh, 0), NULL);
9411 [ # # ]: 0 : if (tb[NL80211_ATTR_WDEV]) {
9412 : 0 : wi->wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
9413 : 0 : wi->wdev_id_set = 1;
9414 : : }
9415 : :
9416 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC])
9417 : 0 : os_memcpy(wi->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
9418 : : ETH_ALEN);
9419 : :
9420 : 0 : return NL_SKIP;
9421 : : }
9422 : :
9423 : :
9424 : 39 : static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type,
9425 : : const char *ifname, const u8 *addr,
9426 : : void *bss_ctx, void **drv_priv,
9427 : : char *force_ifname, u8 *if_addr,
9428 : : const char *bridge, int use_existing)
9429 : : {
9430 : : enum nl80211_iftype nlmode;
9431 : 39 : struct i802_bss *bss = priv;
9432 : 39 : struct wpa_driver_nl80211_data *drv = bss->drv;
9433 : : int ifidx;
9434 : 39 : int added = 1;
9435 : :
9436 [ + + ]: 39 : if (addr)
9437 : 17 : os_memcpy(if_addr, addr, ETH_ALEN);
9438 : 39 : nlmode = wpa_driver_nl80211_if_type(type);
9439 [ - + ]: 39 : if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
9440 : : struct wdev_info p2pdev_info;
9441 : :
9442 : 0 : os_memset(&p2pdev_info, 0, sizeof(p2pdev_info));
9443 : 0 : ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
9444 : : 0, nl80211_wdev_handler,
9445 : : &p2pdev_info, use_existing);
9446 [ # # ][ # # ]: 0 : if (!p2pdev_info.wdev_id_set || ifidx != 0) {
9447 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to create a P2P Device interface %s",
9448 : : ifname);
9449 : 0 : return -1;
9450 : : }
9451 : :
9452 : 0 : drv->global->if_add_wdevid = p2pdev_info.wdev_id;
9453 : 0 : drv->global->if_add_wdevid_set = p2pdev_info.wdev_id_set;
9454 [ # # ]: 0 : if (!is_zero_ether_addr(p2pdev_info.macaddr))
9455 : 0 : os_memcpy(if_addr, p2pdev_info.macaddr, ETH_ALEN);
9456 : 0 : wpa_printf(MSG_DEBUG, "nl80211: New P2P Device interface %s (0x%llx) created",
9457 : : ifname,
9458 : 0 : (long long unsigned int) p2pdev_info.wdev_id);
9459 : : } else {
9460 : 39 : ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
9461 : : 0, NULL, NULL, use_existing);
9462 [ - + ][ + + ]: 39 : if (use_existing && ifidx == -ENFILE) {
9463 : 0 : added = 0;
9464 : 0 : ifidx = if_nametoindex(ifname);
9465 [ - + ]: 39 : } else if (ifidx < 0) {
9466 : 0 : return -1;
9467 : : }
9468 : : }
9469 : :
9470 [ + + ]: 39 : if (!addr) {
9471 [ - + ]: 22 : if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
9472 : 0 : os_memcpy(if_addr, bss->addr, ETH_ALEN);
9473 [ - + ]: 22 : else if (linux_get_ifhwaddr(drv->global->ioctl_sock,
9474 : 22 : bss->ifname, if_addr) < 0) {
9475 [ # # ]: 0 : if (added)
9476 : 0 : nl80211_remove_iface(drv, ifidx);
9477 : 0 : return -1;
9478 : : }
9479 : : }
9480 : :
9481 : : #ifdef CONFIG_P2P
9482 [ + - ][ + + ]: 22 : if (!addr &&
9483 [ + + ][ + - ]: 19 : (type == WPA_IF_P2P_CLIENT || type == WPA_IF_P2P_GROUP ||
9484 : : type == WPA_IF_P2P_GO)) {
9485 : : /* Enforce unique P2P Interface Address */
9486 : : u8 new_addr[ETH_ALEN];
9487 : :
9488 [ - + ]: 22 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, ifname,
9489 : : new_addr) < 0) {
9490 : 0 : nl80211_remove_iface(drv, ifidx);
9491 : 0 : return -1;
9492 : : }
9493 [ - + ]: 22 : if (nl80211_addr_in_use(drv->global, new_addr)) {
9494 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Allocate new address "
9495 : : "for P2P group interface");
9496 [ # # ]: 0 : if (nl80211_p2p_interface_addr(drv, new_addr) < 0) {
9497 : 0 : nl80211_remove_iface(drv, ifidx);
9498 : 0 : return -1;
9499 : : }
9500 [ # # ]: 0 : if (linux_set_ifhwaddr(drv->global->ioctl_sock, ifname,
9501 : : new_addr) < 0) {
9502 : 0 : nl80211_remove_iface(drv, ifidx);
9503 : 0 : return -1;
9504 : : }
9505 : : }
9506 : 22 : os_memcpy(if_addr, new_addr, ETH_ALEN);
9507 : : }
9508 : : #endif /* CONFIG_P2P */
9509 : :
9510 [ + + ]: 39 : if (type == WPA_IF_AP_BSS) {
9511 : 17 : struct i802_bss *new_bss = os_zalloc(sizeof(*new_bss));
9512 [ - + ]: 17 : if (new_bss == NULL) {
9513 [ # # ]: 0 : if (added)
9514 : 0 : nl80211_remove_iface(drv, ifidx);
9515 : 0 : return -1;
9516 : : }
9517 : :
9518 [ - + # # ]: 17 : if (bridge &&
9519 : 0 : i802_check_bridge(drv, new_bss, bridge, ifname) < 0) {
9520 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add the new "
9521 : : "interface %s to a bridge %s",
9522 : : ifname, bridge);
9523 [ # # ]: 0 : if (added)
9524 : 0 : nl80211_remove_iface(drv, ifidx);
9525 : 0 : os_free(new_bss);
9526 : 0 : return -1;
9527 : : }
9528 : :
9529 [ - + ]: 17 : if (linux_set_iface_flags(drv->global->ioctl_sock, ifname, 1))
9530 : : {
9531 : 0 : nl80211_remove_iface(drv, ifidx);
9532 : 0 : os_free(new_bss);
9533 : 0 : return -1;
9534 : : }
9535 : 17 : os_strlcpy(new_bss->ifname, ifname, IFNAMSIZ);
9536 : 17 : os_memcpy(new_bss->addr, if_addr, ETH_ALEN);
9537 : 17 : new_bss->ifindex = ifidx;
9538 : 17 : new_bss->drv = drv;
9539 : 17 : new_bss->next = drv->first_bss->next;
9540 : 17 : new_bss->freq = drv->first_bss->freq;
9541 : 17 : new_bss->ctx = bss_ctx;
9542 : 17 : new_bss->added_if = added;
9543 : 17 : drv->first_bss->next = new_bss;
9544 [ + - ]: 17 : if (drv_priv)
9545 : 17 : *drv_priv = new_bss;
9546 : 17 : nl80211_init_bss(new_bss);
9547 : :
9548 : : /* Subscribe management frames for this WPA_IF_AP_BSS */
9549 [ - + ]: 17 : if (nl80211_setup_ap(new_bss))
9550 : 0 : return -1;
9551 : : }
9552 : :
9553 [ + - ]: 39 : if (drv->global)
9554 : 39 : drv->global->if_add_ifindex = ifidx;
9555 : :
9556 : 39 : return 0;
9557 : : }
9558 : :
9559 : :
9560 : 39 : static int wpa_driver_nl80211_if_remove(struct i802_bss *bss,
9561 : : enum wpa_driver_if_type type,
9562 : : const char *ifname)
9563 : : {
9564 : 39 : struct wpa_driver_nl80211_data *drv = bss->drv;
9565 : 39 : int ifindex = if_nametoindex(ifname);
9566 : :
9567 : 39 : wpa_printf(MSG_DEBUG, "nl80211: %s(type=%d ifname=%s) ifindex=%d added_if=%d",
9568 : 39 : __func__, type, ifname, ifindex, bss->added_if);
9569 [ + + ][ + - ]: 39 : if (ifindex > 0 && (bss->added_if || bss->ifindex != ifindex))
[ + - ]
9570 : 39 : nl80211_remove_iface(drv, ifindex);
9571 : :
9572 [ + + ]: 39 : if (type != WPA_IF_AP_BSS)
9573 : 22 : return 0;
9574 : :
9575 [ - + ]: 17 : if (bss->added_if_into_bridge) {
9576 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
9577 : 0 : bss->ifname) < 0)
9578 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
9579 : : "interface %s from bridge %s: %s",
9580 : 0 : bss->ifname, bss->brname, strerror(errno));
9581 : : }
9582 [ - + ]: 17 : if (bss->added_bridge) {
9583 [ # # ]: 0 : if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
9584 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
9585 : : "bridge %s: %s",
9586 : 0 : bss->brname, strerror(errno));
9587 : : }
9588 : :
9589 [ + - ]: 17 : if (bss != drv->first_bss) {
9590 : : struct i802_bss *tbss;
9591 : :
9592 : 17 : wpa_printf(MSG_DEBUG, "nl80211: Not the first BSS - remove it");
9593 [ + - ]: 20 : for (tbss = drv->first_bss; tbss; tbss = tbss->next) {
9594 [ + + ]: 20 : if (tbss->next == bss) {
9595 : 17 : tbss->next = bss->next;
9596 : : /* Unsubscribe management frames */
9597 : 17 : nl80211_teardown_ap(bss);
9598 : 17 : nl80211_destroy_bss(bss);
9599 : 17 : os_free(bss);
9600 : 17 : bss = NULL;
9601 : 17 : break;
9602 : : }
9603 : : }
9604 [ - + ]: 17 : if (bss)
9605 : 0 : wpa_printf(MSG_INFO, "nl80211: %s - could not find "
9606 : : "BSS %p in the list", __func__, bss);
9607 : : } else {
9608 : 0 : wpa_printf(MSG_DEBUG, "nl80211: First BSS - reassign context");
9609 : 0 : nl80211_teardown_ap(bss);
9610 [ # # ][ # # ]: 0 : if (!bss->added_if && !drv->first_bss->next)
9611 : 0 : wpa_driver_nl80211_del_beacon(drv);
9612 : 0 : nl80211_destroy_bss(bss);
9613 [ # # ]: 0 : if (!bss->added_if)
9614 : 0 : i802_set_iface_flags(bss, 0);
9615 [ # # ]: 0 : if (drv->first_bss->next) {
9616 : 0 : drv->first_bss = drv->first_bss->next;
9617 : 0 : drv->ctx = drv->first_bss->ctx;
9618 : 0 : os_free(bss);
9619 : : } else {
9620 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No second BSS to reassign context to");
9621 : : }
9622 : : }
9623 : :
9624 : 39 : return 0;
9625 : : }
9626 : :
9627 : :
9628 : 2406 : static int cookie_handler(struct nl_msg *msg, void *arg)
9629 : : {
9630 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
9631 : 2406 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
9632 : 2406 : u64 *cookie = arg;
9633 : 2406 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
9634 : : genlmsg_attrlen(gnlh, 0), NULL);
9635 [ + - ]: 2406 : if (tb[NL80211_ATTR_COOKIE])
9636 : 2406 : *cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
9637 : 2406 : return NL_SKIP;
9638 : : }
9639 : :
9640 : :
9641 : 3133 : static int nl80211_send_frame_cmd(struct i802_bss *bss,
9642 : : unsigned int freq, unsigned int wait,
9643 : : const u8 *buf, size_t buf_len,
9644 : : u64 *cookie_out, int no_cck, int no_ack,
9645 : : int offchanok)
9646 : : {
9647 : 3133 : struct wpa_driver_nl80211_data *drv = bss->drv;
9648 : : struct nl_msg *msg;
9649 : : u64 cookie;
9650 : 3133 : int ret = -1;
9651 : :
9652 : 3133 : msg = nlmsg_alloc();
9653 [ - + ]: 3133 : if (!msg)
9654 : 0 : return -1;
9655 : :
9656 : 3133 : wpa_printf(MSG_MSGDUMP, "nl80211: CMD_FRAME freq=%u wait=%u no_cck=%d "
9657 : : "no_ack=%d offchanok=%d",
9658 : : freq, wait, no_cck, no_ack, offchanok);
9659 : 3133 : wpa_hexdump(MSG_MSGDUMP, "CMD_FRAME", buf, buf_len);
9660 : 3133 : nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME);
9661 : :
9662 [ - + ]: 3133 : if (nl80211_set_iface_id(msg, bss) < 0)
9663 : 0 : goto nla_put_failure;
9664 [ + + ]: 3133 : if (freq)
9665 [ + - ]: 3115 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
9666 [ + + ]: 3133 : if (wait)
9667 [ + - ]: 300 : NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait);
9668 [ + + ][ + - ]: 3133 : if (offchanok && (drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX))
9669 [ + - ]: 677 : NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK);
9670 [ + + ]: 3133 : if (no_cck)
9671 [ + - ]: 512 : NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
9672 [ + + ]: 3133 : if (no_ack)
9673 [ + - ]: 970 : NLA_PUT_FLAG(msg, NL80211_ATTR_DONT_WAIT_FOR_ACK);
9674 : :
9675 [ + - ]: 3133 : NLA_PUT(msg, NL80211_ATTR_FRAME, buf_len, buf);
9676 : :
9677 : 3133 : cookie = 0;
9678 : 3133 : ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
9679 : 3133 : msg = NULL;
9680 [ + + ]: 3133 : if (ret) {
9681 : 281 : wpa_printf(MSG_DEBUG, "nl80211: Frame command failed: ret=%d "
9682 : : "(%s) (freq=%u wait=%u)", ret, strerror(-ret),
9683 : : freq, wait);
9684 : 281 : goto nla_put_failure;
9685 : : }
9686 [ + + ]: 2852 : wpa_printf(MSG_MSGDUMP, "nl80211: Frame TX command accepted%s; "
9687 : : "cookie 0x%llx", no_ack ? " (no ACK)" : "",
9688 : : (long long unsigned int) cookie);
9689 : :
9690 [ + + ]: 2852 : if (cookie_out)
9691 [ + + ]: 2604 : *cookie_out = no_ack ? (u64) -1 : cookie;
9692 : :
9693 : : nla_put_failure:
9694 : 3133 : nlmsg_free(msg);
9695 : 3133 : return ret;
9696 : : }
9697 : :
9698 : :
9699 : 429 : static int wpa_driver_nl80211_send_action(struct i802_bss *bss,
9700 : : unsigned int freq,
9701 : : unsigned int wait_time,
9702 : : const u8 *dst, const u8 *src,
9703 : : const u8 *bssid,
9704 : : const u8 *data, size_t data_len,
9705 : : int no_cck)
9706 : : {
9707 : 429 : struct wpa_driver_nl80211_data *drv = bss->drv;
9708 : 429 : int ret = -1;
9709 : : u8 *buf;
9710 : : struct ieee80211_hdr *hdr;
9711 : :
9712 : 429 : wpa_printf(MSG_DEBUG, "nl80211: Send Action frame (ifindex=%d, "
9713 : : "freq=%u MHz wait=%d ms no_cck=%d)",
9714 : : drv->ifindex, freq, wait_time, no_cck);
9715 : :
9716 : 429 : buf = os_zalloc(24 + data_len);
9717 [ - + ]: 429 : if (buf == NULL)
9718 : 0 : return ret;
9719 : 429 : os_memcpy(buf + 24, data, data_len);
9720 : 429 : hdr = (struct ieee80211_hdr *) buf;
9721 : 429 : hdr->frame_control =
9722 : : IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_ACTION);
9723 : 429 : os_memcpy(hdr->addr1, dst, ETH_ALEN);
9724 : 429 : os_memcpy(hdr->addr2, src, ETH_ALEN);
9725 : 429 : os_memcpy(hdr->addr3, bssid, ETH_ALEN);
9726 : :
9727 [ + + ][ + - ]: 429 : if (is_ap_interface(drv->nlmode) &&
9728 [ + + ]: 99 : (!(drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) ||
9729 [ + - ][ + - ]: 2 : (int) freq == bss->freq || drv->device_ap_sme ||
9730 : 2 : !drv->use_monitor))
9731 : 99 : ret = wpa_driver_nl80211_send_mlme(bss, buf, 24 + data_len,
9732 : : 0, freq, no_cck, 1,
9733 : : wait_time);
9734 : : else
9735 : 330 : ret = nl80211_send_frame_cmd(bss, freq, wait_time, buf,
9736 : : 24 + data_len,
9737 : : &drv->send_action_cookie,
9738 : : no_cck, 0, 1);
9739 : :
9740 : 429 : os_free(buf);
9741 : 429 : return ret;
9742 : : }
9743 : :
9744 : :
9745 : 154 : static void wpa_driver_nl80211_send_action_cancel_wait(void *priv)
9746 : : {
9747 : 154 : struct i802_bss *bss = priv;
9748 : 154 : struct wpa_driver_nl80211_data *drv = bss->drv;
9749 : : struct nl_msg *msg;
9750 : : int ret;
9751 : :
9752 : 154 : msg = nlmsg_alloc();
9753 [ - + ]: 154 : if (!msg)
9754 : 154 : return;
9755 : :
9756 : 154 : wpa_printf(MSG_DEBUG, "nl80211: Cancel TX frame wait: cookie=0x%llx",
9757 : 154 : (long long unsigned int) drv->send_action_cookie);
9758 : 154 : nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME_WAIT_CANCEL);
9759 : :
9760 [ - + ]: 154 : if (nl80211_set_iface_id(msg, bss) < 0)
9761 : 0 : goto nla_put_failure;
9762 [ + - ]: 154 : NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->send_action_cookie);
9763 : :
9764 : 154 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9765 : 154 : msg = NULL;
9766 [ + + ]: 154 : if (ret)
9767 : 17 : wpa_printf(MSG_DEBUG, "nl80211: wait cancel failed: ret=%d "
9768 : : "(%s)", ret, strerror(-ret));
9769 : :
9770 : : nla_put_failure:
9771 : 154 : nlmsg_free(msg);
9772 : : }
9773 : :
9774 : :
9775 : 521 : static int wpa_driver_nl80211_remain_on_channel(void *priv, unsigned int freq,
9776 : : unsigned int duration)
9777 : : {
9778 : 521 : struct i802_bss *bss = priv;
9779 : 521 : struct wpa_driver_nl80211_data *drv = bss->drv;
9780 : : struct nl_msg *msg;
9781 : : int ret;
9782 : : u64 cookie;
9783 : :
9784 : 521 : msg = nlmsg_alloc();
9785 [ - + ]: 521 : if (!msg)
9786 : 0 : return -1;
9787 : :
9788 : 521 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REMAIN_ON_CHANNEL);
9789 : :
9790 [ - + ]: 521 : if (nl80211_set_iface_id(msg, bss) < 0)
9791 : 0 : goto nla_put_failure;
9792 : :
9793 [ + - ]: 521 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
9794 [ + - ]: 521 : NLA_PUT_U32(msg, NL80211_ATTR_DURATION, duration);
9795 : :
9796 : 521 : cookie = 0;
9797 : 521 : ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
9798 : 521 : msg = NULL;
9799 [ + - ]: 521 : if (ret == 0) {
9800 : 521 : wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel cookie "
9801 : : "0x%llx for freq=%u MHz duration=%u",
9802 : : (long long unsigned int) cookie, freq, duration);
9803 : 521 : drv->remain_on_chan_cookie = cookie;
9804 : 521 : drv->pending_remain_on_chan = 1;
9805 : 521 : return 0;
9806 : : }
9807 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to request remain-on-channel "
9808 : : "(freq=%d duration=%u): %d (%s)",
9809 : : freq, duration, ret, strerror(-ret));
9810 : : nla_put_failure:
9811 : 0 : nlmsg_free(msg);
9812 : 521 : return -1;
9813 : : }
9814 : :
9815 : :
9816 : 160 : static int wpa_driver_nl80211_cancel_remain_on_channel(void *priv)
9817 : : {
9818 : 160 : struct i802_bss *bss = priv;
9819 : 160 : struct wpa_driver_nl80211_data *drv = bss->drv;
9820 : : struct nl_msg *msg;
9821 : : int ret;
9822 : :
9823 [ - + ]: 160 : if (!drv->pending_remain_on_chan) {
9824 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No pending remain-on-channel "
9825 : : "to cancel");
9826 : 0 : return -1;
9827 : : }
9828 : :
9829 : 160 : wpa_printf(MSG_DEBUG, "nl80211: Cancel remain-on-channel with cookie "
9830 : : "0x%llx",
9831 : 160 : (long long unsigned int) drv->remain_on_chan_cookie);
9832 : :
9833 : 160 : msg = nlmsg_alloc();
9834 [ - + ]: 160 : if (!msg)
9835 : 0 : return -1;
9836 : :
9837 : 160 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL);
9838 : :
9839 [ - + ]: 160 : if (nl80211_set_iface_id(msg, bss) < 0)
9840 : 0 : goto nla_put_failure;
9841 : :
9842 [ + - ]: 160 : NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->remain_on_chan_cookie);
9843 : :
9844 : 160 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9845 : 160 : msg = NULL;
9846 [ + + ]: 160 : if (ret == 0)
9847 : 157 : return 0;
9848 : 3 : wpa_printf(MSG_DEBUG, "nl80211: Failed to cancel remain-on-channel: "
9849 : : "%d (%s)", ret, strerror(-ret));
9850 : : nla_put_failure:
9851 : 3 : nlmsg_free(msg);
9852 : 160 : return -1;
9853 : : }
9854 : :
9855 : :
9856 : 2979 : static int wpa_driver_nl80211_probe_req_report(struct i802_bss *bss, int report)
9857 : : {
9858 : 2979 : struct wpa_driver_nl80211_data *drv = bss->drv;
9859 : :
9860 [ + + ]: 2979 : if (!report) {
9861 [ + + ]: 2458 : if (bss->nl_preq && drv->device_ap_sme &&
[ - + # # ]
9862 : 0 : is_ap_interface(drv->nlmode)) {
9863 : : /*
9864 : : * Do not disable Probe Request reporting that was
9865 : : * enabled in nl80211_setup_ap().
9866 : : */
9867 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Skip disabling of "
9868 : : "Probe Request reporting nl_preq=%p while "
9869 : : "in AP mode", bss->nl_preq);
9870 [ + + ]: 2458 : } else if (bss->nl_preq) {
9871 : 511 : wpa_printf(MSG_DEBUG, "nl80211: Disable Probe Request "
9872 : : "reporting nl_preq=%p", bss->nl_preq);
9873 : 511 : nl80211_destroy_eloop_handle(&bss->nl_preq);
9874 : : }
9875 : 2458 : return 0;
9876 : : }
9877 : :
9878 [ + + ]: 521 : if (bss->nl_preq) {
9879 : 10 : wpa_printf(MSG_DEBUG, "nl80211: Probe Request reporting "
9880 : : "already on! nl_preq=%p", bss->nl_preq);
9881 : 10 : return 0;
9882 : : }
9883 : :
9884 : 511 : bss->nl_preq = nl_create_handle(drv->global->nl_cb, "preq");
9885 [ - + ]: 511 : if (bss->nl_preq == NULL)
9886 : 0 : return -1;
9887 : 511 : wpa_printf(MSG_DEBUG, "nl80211: Enable Probe Request "
9888 : : "reporting nl_preq=%p", bss->nl_preq);
9889 : :
9890 [ - + ]: 511 : if (nl80211_register_frame(bss, bss->nl_preq,
9891 : : (WLAN_FC_TYPE_MGMT << 2) |
9892 : : (WLAN_FC_STYPE_PROBE_REQ << 4),
9893 : : NULL, 0) < 0)
9894 : 0 : goto out_err;
9895 : :
9896 : 511 : nl80211_register_eloop_read(&bss->nl_preq,
9897 : : wpa_driver_nl80211_event_receive,
9898 : 511 : bss->nl_cb);
9899 : :
9900 : 511 : return 0;
9901 : :
9902 : : out_err:
9903 : 0 : nl_destroy_handles(&bss->nl_preq);
9904 : 2979 : return -1;
9905 : : }
9906 : :
9907 : :
9908 : 265 : static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
9909 : : int ifindex, int disabled)
9910 : : {
9911 : : struct nl_msg *msg;
9912 : : struct nlattr *bands, *band;
9913 : : int ret;
9914 : :
9915 : 265 : msg = nlmsg_alloc();
9916 [ - + ]: 265 : if (!msg)
9917 : 0 : return -1;
9918 : :
9919 : 265 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_TX_BITRATE_MASK);
9920 [ + - ]: 265 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
9921 : :
9922 : 265 : bands = nla_nest_start(msg, NL80211_ATTR_TX_RATES);
9923 [ - + ]: 265 : if (!bands)
9924 : 0 : goto nla_put_failure;
9925 : :
9926 : : /*
9927 : : * Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
9928 : : * else apart from 6, 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS
9929 : : * rates. All 5 GHz rates are left enabled.
9930 : : */
9931 : 265 : band = nla_nest_start(msg, NL80211_BAND_2GHZ);
9932 [ - + ]: 265 : if (!band)
9933 : 0 : goto nla_put_failure;
9934 [ + + ]: 265 : if (disabled) {
9935 [ + - ]: 155 : NLA_PUT(msg, NL80211_TXRATE_LEGACY, 8,
9936 : : "\x0c\x12\x18\x24\x30\x48\x60\x6c");
9937 : : }
9938 : 265 : nla_nest_end(msg, band);
9939 : :
9940 : 265 : nla_nest_end(msg, bands);
9941 : :
9942 : 265 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9943 : 265 : msg = NULL;
9944 [ + + ]: 265 : if (ret) {
9945 : 44 : wpa_printf(MSG_DEBUG, "nl80211: Set TX rates failed: ret=%d "
9946 : : "(%s)", ret, strerror(-ret));
9947 : : } else
9948 : 221 : drv->disabled_11b_rates = disabled;
9949 : :
9950 : 265 : return ret;
9951 : :
9952 : : nla_put_failure:
9953 : 0 : nlmsg_free(msg);
9954 : 265 : return -1;
9955 : : }
9956 : :
9957 : :
9958 : 60 : static int wpa_driver_nl80211_deinit_ap(void *priv)
9959 : : {
9960 : 60 : struct i802_bss *bss = priv;
9961 : 60 : struct wpa_driver_nl80211_data *drv = bss->drv;
9962 [ - + ]: 60 : if (!is_ap_interface(drv->nlmode))
9963 : 0 : return -1;
9964 : 60 : wpa_driver_nl80211_del_beacon(drv);
9965 : :
9966 : : /*
9967 : : * If the P2P GO interface was dynamically added, then it is
9968 : : * possible that the interface change to station is not possible.
9969 : : */
9970 [ + + ][ + + ]: 60 : if (drv->nlmode == NL80211_IFTYPE_P2P_GO && bss->if_dynamic)
9971 : 10 : return 0;
9972 : :
9973 : 60 : return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
9974 : : }
9975 : :
9976 : :
9977 : 0 : static int wpa_driver_nl80211_stop_ap(void *priv)
9978 : : {
9979 : 0 : struct i802_bss *bss = priv;
9980 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9981 [ # # ]: 0 : if (!is_ap_interface(drv->nlmode))
9982 : 0 : return -1;
9983 : 0 : wpa_driver_nl80211_del_beacon(drv);
9984 : 0 : bss->beacon_set = 0;
9985 : 0 : return 0;
9986 : : }
9987 : :
9988 : :
9989 : 50 : static int wpa_driver_nl80211_deinit_p2p_cli(void *priv)
9990 : : {
9991 : 50 : struct i802_bss *bss = priv;
9992 : 50 : struct wpa_driver_nl80211_data *drv = bss->drv;
9993 [ - + ]: 50 : if (drv->nlmode != NL80211_IFTYPE_P2P_CLIENT)
9994 : 0 : return -1;
9995 : :
9996 : : /*
9997 : : * If the P2P Client interface was dynamically added, then it is
9998 : : * possible that the interface change to station is not possible.
9999 : : */
10000 [ - + ]: 50 : if (bss->if_dynamic)
10001 : 0 : return 0;
10002 : :
10003 : 50 : return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
10004 : : }
10005 : :
10006 : :
10007 : 0 : static void wpa_driver_nl80211_resume(void *priv)
10008 : : {
10009 : 0 : struct i802_bss *bss = priv;
10010 : :
10011 [ # # ]: 0 : if (i802_set_iface_flags(bss, 1))
10012 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface up on resume event");
10013 : 0 : }
10014 : :
10015 : :
10016 : 6 : static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
10017 : : const u8 *ies, size_t ies_len)
10018 : : {
10019 : 6 : struct i802_bss *bss = priv;
10020 : 6 : struct wpa_driver_nl80211_data *drv = bss->drv;
10021 : : int ret;
10022 : : u8 *data, *pos;
10023 : : size_t data_len;
10024 : 6 : const u8 *own_addr = bss->addr;
10025 : :
10026 [ - + ]: 6 : if (action != 1) {
10027 : 0 : wpa_printf(MSG_ERROR, "nl80211: Unsupported send_ft_action "
10028 : : "action %d", action);
10029 : 0 : return -1;
10030 : : }
10031 : :
10032 : : /*
10033 : : * Action frame payload:
10034 : : * Category[1] = 6 (Fast BSS Transition)
10035 : : * Action[1] = 1 (Fast BSS Transition Request)
10036 : : * STA Address
10037 : : * Target AP Address
10038 : : * FT IEs
10039 : : */
10040 : :
10041 : 6 : data_len = 2 + 2 * ETH_ALEN + ies_len;
10042 : 6 : data = os_malloc(data_len);
10043 [ - + ]: 6 : if (data == NULL)
10044 : 0 : return -1;
10045 : 6 : pos = data;
10046 : 6 : *pos++ = 0x06; /* FT Action category */
10047 : 6 : *pos++ = action;
10048 : 6 : os_memcpy(pos, own_addr, ETH_ALEN);
10049 : 6 : pos += ETH_ALEN;
10050 : 6 : os_memcpy(pos, target_ap, ETH_ALEN);
10051 : 6 : pos += ETH_ALEN;
10052 : 6 : os_memcpy(pos, ies, ies_len);
10053 : :
10054 : 6 : ret = wpa_driver_nl80211_send_action(bss, drv->assoc_freq, 0,
10055 : 6 : drv->bssid, own_addr, drv->bssid,
10056 : : data, data_len, 0);
10057 : 6 : os_free(data);
10058 : :
10059 : 6 : return ret;
10060 : : }
10061 : :
10062 : :
10063 : 0 : static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis)
10064 : : {
10065 : 0 : struct i802_bss *bss = priv;
10066 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10067 : : struct nl_msg *msg;
10068 : : struct nlattr *cqm;
10069 : 0 : int ret = -1;
10070 : :
10071 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Signal monitor threshold=%d "
10072 : : "hysteresis=%d", threshold, hysteresis);
10073 : :
10074 : 0 : msg = nlmsg_alloc();
10075 [ # # ]: 0 : if (!msg)
10076 : 0 : return -1;
10077 : :
10078 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_CQM);
10079 : :
10080 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10081 : :
10082 : 0 : cqm = nla_nest_start(msg, NL80211_ATTR_CQM);
10083 [ # # ]: 0 : if (cqm == NULL)
10084 : 0 : goto nla_put_failure;
10085 : :
10086 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_THOLD, threshold);
10087 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
10088 : 0 : nla_nest_end(msg, cqm);
10089 : :
10090 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10091 : 0 : msg = NULL;
10092 : :
10093 : : nla_put_failure:
10094 : 0 : nlmsg_free(msg);
10095 : 0 : return ret;
10096 : : }
10097 : :
10098 : :
10099 : 0 : static int get_channel_width(struct nl_msg *msg, void *arg)
10100 : : {
10101 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
10102 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
10103 : 0 : struct wpa_signal_info *sig_change = arg;
10104 : :
10105 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
10106 : : genlmsg_attrlen(gnlh, 0), NULL);
10107 : :
10108 : 0 : sig_change->center_frq1 = -1;
10109 : 0 : sig_change->center_frq2 = -1;
10110 : 0 : sig_change->chanwidth = CHAN_WIDTH_UNKNOWN;
10111 : :
10112 [ # # ]: 0 : if (tb[NL80211_ATTR_CHANNEL_WIDTH]) {
10113 : 0 : sig_change->chanwidth = convert2width(
10114 : 0 : nla_get_u32(tb[NL80211_ATTR_CHANNEL_WIDTH]));
10115 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ1])
10116 : 0 : sig_change->center_frq1 =
10117 : 0 : nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
10118 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ2])
10119 : 0 : sig_change->center_frq2 =
10120 : 0 : nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
10121 : : }
10122 : :
10123 : 0 : return NL_SKIP;
10124 : : }
10125 : :
10126 : :
10127 : 0 : static int nl80211_get_channel_width(struct wpa_driver_nl80211_data *drv,
10128 : : struct wpa_signal_info *sig)
10129 : : {
10130 : : struct nl_msg *msg;
10131 : :
10132 : 0 : msg = nlmsg_alloc();
10133 [ # # ]: 0 : if (!msg)
10134 : 0 : return -ENOMEM;
10135 : :
10136 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_INTERFACE);
10137 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10138 : :
10139 : 0 : return send_and_recv_msgs(drv, msg, get_channel_width, sig);
10140 : :
10141 : : nla_put_failure:
10142 : 0 : nlmsg_free(msg);
10143 : 0 : return -ENOBUFS;
10144 : : }
10145 : :
10146 : :
10147 : 0 : static int nl80211_signal_poll(void *priv, struct wpa_signal_info *si)
10148 : : {
10149 : 0 : struct i802_bss *bss = priv;
10150 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10151 : : int res;
10152 : :
10153 : 0 : os_memset(si, 0, sizeof(*si));
10154 : 0 : res = nl80211_get_link_signal(drv, si);
10155 [ # # ]: 0 : if (res != 0)
10156 : 0 : return res;
10157 : :
10158 : 0 : res = nl80211_get_channel_width(drv, si);
10159 [ # # ]: 0 : if (res != 0)
10160 : 0 : return res;
10161 : :
10162 : 0 : return nl80211_get_link_noise(drv, si);
10163 : : }
10164 : :
10165 : :
10166 : 11 : static int wpa_driver_nl80211_shared_freq(void *priv)
10167 : : {
10168 : 11 : struct i802_bss *bss = priv;
10169 : 11 : struct wpa_driver_nl80211_data *drv = bss->drv;
10170 : : struct wpa_driver_nl80211_data *driver;
10171 : 11 : int freq = 0;
10172 : :
10173 : : /*
10174 : : * If the same PHY is in connected state with some other interface,
10175 : : * then retrieve the assoc freq.
10176 : : */
10177 : 11 : wpa_printf(MSG_DEBUG, "nl80211: Get shared freq for PHY %s",
10178 : 11 : drv->phyname);
10179 : :
10180 [ + + ]: 24 : dl_list_for_each(driver, &drv->global->interfaces,
10181 : : struct wpa_driver_nl80211_data, list) {
10182 [ + + ][ + - ]: 13 : if (drv == driver ||
10183 [ - + ]: 2 : os_strcmp(drv->phyname, driver->phyname) != 0 ||
10184 : 2 : !driver->associated)
10185 : 11 : continue;
10186 : :
10187 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Found a match for PHY %s - %s "
10188 : : MACSTR,
10189 : 2 : driver->phyname, driver->first_bss->ifname,
10190 : 12 : MAC2STR(driver->first_bss->addr));
10191 [ - + ]: 2 : if (is_ap_interface(driver->nlmode))
10192 : 0 : freq = driver->first_bss->freq;
10193 : : else
10194 : 2 : freq = nl80211_get_assoc_freq(driver);
10195 : 2 : wpa_printf(MSG_DEBUG, "nl80211: Shared freq for PHY %s: %d",
10196 : 2 : drv->phyname, freq);
10197 : : }
10198 : :
10199 [ + + ]: 11 : if (!freq)
10200 : 9 : wpa_printf(MSG_DEBUG, "nl80211: No shared interface for "
10201 : 9 : "PHY (%s) in associated state", drv->phyname);
10202 : :
10203 : 11 : return freq;
10204 : : }
10205 : :
10206 : :
10207 : 8 : static int nl80211_send_frame(void *priv, const u8 *data, size_t data_len,
10208 : : int encrypt)
10209 : : {
10210 : 8 : struct i802_bss *bss = priv;
10211 : 8 : return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt, 0,
10212 : : 0, 0, 0, 0);
10213 : : }
10214 : :
10215 : :
10216 : 33 : static int nl80211_set_param(void *priv, const char *param)
10217 : : {
10218 : 33 : wpa_printf(MSG_DEBUG, "nl80211: driver param='%s'", param);
10219 [ + + ]: 33 : if (param == NULL)
10220 : 27 : return 0;
10221 : :
10222 : : #ifdef CONFIG_P2P
10223 [ - + ]: 6 : if (os_strstr(param, "use_p2p_group_interface=1")) {
10224 : 0 : struct i802_bss *bss = priv;
10225 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10226 : :
10227 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
10228 : : "interface");
10229 : 0 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
10230 : 0 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
10231 : : }
10232 : :
10233 [ - + ]: 6 : if (os_strstr(param, "p2p_device=1")) {
10234 : 0 : struct i802_bss *bss = priv;
10235 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10236 : 0 : drv->allow_p2p_device = 1;
10237 : : }
10238 : : #endif /* CONFIG_P2P */
10239 : :
10240 [ + + ]: 6 : if (os_strstr(param, "use_monitor=1")) {
10241 : 2 : struct i802_bss *bss = priv;
10242 : 2 : struct wpa_driver_nl80211_data *drv = bss->drv;
10243 : 2 : drv->use_monitor = 1;
10244 : : }
10245 : :
10246 [ + + ]: 6 : if (os_strstr(param, "force_connect_cmd=1")) {
10247 : 4 : struct i802_bss *bss = priv;
10248 : 4 : struct wpa_driver_nl80211_data *drv = bss->drv;
10249 : 4 : drv->capa.flags &= ~WPA_DRIVER_FLAGS_SME;
10250 : : }
10251 : :
10252 : 33 : return 0;
10253 : : }
10254 : :
10255 : :
10256 : 5 : static void * nl80211_global_init(void)
10257 : : {
10258 : : struct nl80211_global *global;
10259 : : struct netlink_config *cfg;
10260 : :
10261 : 5 : global = os_zalloc(sizeof(*global));
10262 [ - + ]: 5 : if (global == NULL)
10263 : 0 : return NULL;
10264 : 5 : global->ioctl_sock = -1;
10265 : 5 : dl_list_init(&global->interfaces);
10266 : 5 : global->if_add_ifindex = -1;
10267 : :
10268 : 5 : cfg = os_zalloc(sizeof(*cfg));
10269 [ - + ]: 5 : if (cfg == NULL)
10270 : 0 : goto err;
10271 : :
10272 : 5 : cfg->ctx = global;
10273 : 5 : cfg->newlink_cb = wpa_driver_nl80211_event_rtm_newlink;
10274 : 5 : cfg->dellink_cb = wpa_driver_nl80211_event_rtm_dellink;
10275 : 5 : global->netlink = netlink_init(cfg);
10276 [ - + ]: 5 : if (global->netlink == NULL) {
10277 : 0 : os_free(cfg);
10278 : 0 : goto err;
10279 : : }
10280 : :
10281 [ - + ]: 5 : if (wpa_driver_nl80211_init_nl_global(global) < 0)
10282 : 0 : goto err;
10283 : :
10284 : 5 : global->ioctl_sock = socket(PF_INET, SOCK_DGRAM, 0);
10285 [ - + ]: 5 : if (global->ioctl_sock < 0) {
10286 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket(PF_INET,SOCK_DGRAM) failed: %s",
10287 : 0 : strerror(errno));
10288 : 0 : goto err;
10289 : : }
10290 : :
10291 : 5 : return global;
10292 : :
10293 : : err:
10294 : 0 : nl80211_global_deinit(global);
10295 : 5 : return NULL;
10296 : : }
10297 : :
10298 : :
10299 : 5 : static void nl80211_global_deinit(void *priv)
10300 : : {
10301 : 5 : struct nl80211_global *global = priv;
10302 [ - + ]: 5 : if (global == NULL)
10303 : 5 : return;
10304 [ - + ]: 5 : if (!dl_list_empty(&global->interfaces)) {
10305 : 0 : wpa_printf(MSG_ERROR, "nl80211: %u interface(s) remain at "
10306 : : "nl80211_global_deinit",
10307 : : dl_list_len(&global->interfaces));
10308 : : }
10309 : :
10310 [ + - ]: 5 : if (global->netlink)
10311 : 5 : netlink_deinit(global->netlink);
10312 : :
10313 : 5 : nl_destroy_handles(&global->nl);
10314 : :
10315 [ + - ]: 5 : if (global->nl_event)
10316 : 5 : nl80211_destroy_eloop_handle(&global->nl_event);
10317 : :
10318 : 5 : nl_cb_put(global->nl_cb);
10319 : :
10320 [ + - ]: 5 : if (global->ioctl_sock >= 0)
10321 : 5 : close(global->ioctl_sock);
10322 : :
10323 : 5 : os_free(global);
10324 : : }
10325 : :
10326 : :
10327 : 289 : static const char * nl80211_get_radio_name(void *priv)
10328 : : {
10329 : 289 : struct i802_bss *bss = priv;
10330 : 289 : struct wpa_driver_nl80211_data *drv = bss->drv;
10331 : 289 : return drv->phyname;
10332 : : }
10333 : :
10334 : :
10335 : 231 : static int nl80211_pmkid(struct i802_bss *bss, int cmd, const u8 *bssid,
10336 : : const u8 *pmkid)
10337 : : {
10338 : : struct nl_msg *msg;
10339 : :
10340 : 231 : msg = nlmsg_alloc();
10341 [ - + ]: 231 : if (!msg)
10342 : 0 : return -ENOMEM;
10343 : :
10344 : 231 : nl80211_cmd(bss->drv, msg, 0, cmd);
10345 : :
10346 [ + - ]: 231 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
10347 [ + + ]: 231 : if (pmkid)
10348 [ + - ]: 198 : NLA_PUT(msg, NL80211_ATTR_PMKID, 16, pmkid);
10349 [ + + ]: 231 : if (bssid)
10350 [ + - ]: 198 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
10351 : :
10352 : 231 : return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
10353 : : nla_put_failure:
10354 : 0 : nlmsg_free(msg);
10355 : 231 : return -ENOBUFS;
10356 : : }
10357 : :
10358 : :
10359 : 99 : static int nl80211_add_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
10360 : : {
10361 : 99 : struct i802_bss *bss = priv;
10362 : 99 : wpa_printf(MSG_DEBUG, "nl80211: Add PMKID for " MACSTR, MAC2STR(bssid));
10363 : 99 : return nl80211_pmkid(bss, NL80211_CMD_SET_PMKSA, bssid, pmkid);
10364 : : }
10365 : :
10366 : :
10367 : 99 : static int nl80211_remove_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
10368 : : {
10369 : 99 : struct i802_bss *bss = priv;
10370 : 99 : wpa_printf(MSG_DEBUG, "nl80211: Delete PMKID for " MACSTR,
10371 : 594 : MAC2STR(bssid));
10372 : 99 : return nl80211_pmkid(bss, NL80211_CMD_DEL_PMKSA, bssid, pmkid);
10373 : : }
10374 : :
10375 : :
10376 : 33 : static int nl80211_flush_pmkid(void *priv)
10377 : : {
10378 : 33 : struct i802_bss *bss = priv;
10379 : 33 : wpa_printf(MSG_DEBUG, "nl80211: Flush PMKIDs");
10380 : 33 : return nl80211_pmkid(bss, NL80211_CMD_FLUSH_PMKSA, NULL, NULL);
10381 : : }
10382 : :
10383 : :
10384 : 15 : static void clean_survey_results(struct survey_results *survey_results)
10385 : : {
10386 : : struct freq_survey *survey, *tmp;
10387 : :
10388 [ + - ]: 15 : if (dl_list_empty(&survey_results->survey_list))
10389 : 15 : return;
10390 : :
10391 [ # # ]: 0 : dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
10392 : : struct freq_survey, list) {
10393 : 0 : dl_list_del(&survey->list);
10394 : 0 : os_free(survey);
10395 : : }
10396 : : }
10397 : :
10398 : :
10399 : 15 : static void add_survey(struct nlattr **sinfo, u32 ifidx,
10400 : : struct dl_list *survey_list)
10401 : : {
10402 : : struct freq_survey *survey;
10403 : :
10404 : 15 : survey = os_zalloc(sizeof(struct freq_survey));
10405 [ - + ]: 15 : if (!survey)
10406 : 15 : return;
10407 : :
10408 : 15 : survey->ifidx = ifidx;
10409 : 15 : survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10410 : 15 : survey->filled = 0;
10411 : :
10412 [ + - ]: 15 : if (sinfo[NL80211_SURVEY_INFO_NOISE]) {
10413 : 15 : survey->nf = (int8_t)
10414 : 15 : nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
10415 : 15 : survey->filled |= SURVEY_HAS_NF;
10416 : : }
10417 : :
10418 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]) {
10419 : 0 : survey->channel_time =
10420 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]);
10421 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME;
10422 : : }
10423 : :
10424 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]) {
10425 : 0 : survey->channel_time_busy =
10426 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]);
10427 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
10428 : : }
10429 : :
10430 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]) {
10431 : 0 : survey->channel_time_rx =
10432 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]);
10433 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
10434 : : }
10435 : :
10436 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]) {
10437 : 0 : survey->channel_time_tx =
10438 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]);
10439 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
10440 : : }
10441 : :
10442 : 15 : 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)",
10443 : : survey->freq,
10444 : 15 : survey->nf,
10445 : : (unsigned long int) survey->channel_time,
10446 : : (unsigned long int) survey->channel_time_busy,
10447 : : (unsigned long int) survey->channel_time_tx,
10448 : : (unsigned long int) survey->channel_time_rx,
10449 : : survey->filled);
10450 : :
10451 : 15 : dl_list_add_tail(survey_list, &survey->list);
10452 : : }
10453 : :
10454 : :
10455 : 15 : static int check_survey_ok(struct nlattr **sinfo, u32 surveyed_freq,
10456 : : unsigned int freq_filter)
10457 : : {
10458 [ + - ]: 15 : if (!freq_filter)
10459 : 15 : return 1;
10460 : :
10461 : 15 : return freq_filter == surveyed_freq;
10462 : : }
10463 : :
10464 : :
10465 : 15 : static int survey_handler(struct nl_msg *msg, void *arg)
10466 : : {
10467 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
10468 : 15 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
10469 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
10470 : : struct survey_results *survey_results;
10471 : 15 : u32 surveyed_freq = 0;
10472 : : u32 ifidx;
10473 : :
10474 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
10475 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
10476 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
10477 : : };
10478 : :
10479 : 15 : survey_results = (struct survey_results *) arg;
10480 : :
10481 : 15 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
10482 : : genlmsg_attrlen(gnlh, 0), NULL);
10483 : :
10484 : 15 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
10485 : :
10486 [ - + ]: 15 : if (!tb[NL80211_ATTR_SURVEY_INFO])
10487 : 0 : return NL_SKIP;
10488 : :
10489 [ - + ]: 15 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
10490 : : tb[NL80211_ATTR_SURVEY_INFO],
10491 : : survey_policy))
10492 : 0 : return NL_SKIP;
10493 : :
10494 [ - + ]: 15 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY]) {
10495 : 0 : wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
10496 : 0 : return NL_SKIP;
10497 : : }
10498 : :
10499 : 15 : surveyed_freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10500 : :
10501 [ - + ]: 15 : if (!check_survey_ok(sinfo, surveyed_freq,
10502 : : survey_results->freq_filter))
10503 : 0 : return NL_SKIP;
10504 : :
10505 [ - + ][ # # ]: 15 : if (survey_results->freq_filter &&
10506 : 0 : survey_results->freq_filter != surveyed_freq) {
10507 : 0 : wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
10508 : : surveyed_freq);
10509 : 0 : return NL_SKIP;
10510 : : }
10511 : :
10512 : 15 : add_survey(sinfo, ifidx, &survey_results->survey_list);
10513 : :
10514 : 15 : return NL_SKIP;
10515 : : }
10516 : :
10517 : :
10518 : 15 : static int wpa_driver_nl80211_get_survey(void *priv, unsigned int freq)
10519 : : {
10520 : 15 : struct i802_bss *bss = priv;
10521 : 15 : struct wpa_driver_nl80211_data *drv = bss->drv;
10522 : : struct nl_msg *msg;
10523 : 15 : int err = -ENOBUFS;
10524 : : union wpa_event_data data;
10525 : : struct survey_results *survey_results;
10526 : :
10527 : 15 : os_memset(&data, 0, sizeof(data));
10528 : 15 : survey_results = &data.survey_results;
10529 : :
10530 : 15 : dl_list_init(&survey_results->survey_list);
10531 : :
10532 : 15 : msg = nlmsg_alloc();
10533 [ - + ]: 15 : if (!msg)
10534 : 0 : goto nla_put_failure;
10535 : :
10536 : 15 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
10537 : :
10538 [ + - ]: 15 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10539 : :
10540 [ - + ]: 15 : if (freq)
10541 : 0 : data.survey_results.freq_filter = freq;
10542 : :
10543 : : do {
10544 : 15 : wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
10545 : 15 : err = send_and_recv_msgs(drv, msg, survey_handler,
10546 : : survey_results);
10547 [ - + ]: 15 : } while (err > 0);
10548 : :
10549 [ - + ]: 15 : if (err) {
10550 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");
10551 : 0 : goto out_clean;
10552 : : }
10553 : :
10554 : 15 : wpa_supplicant_event(drv->ctx, EVENT_SURVEY, &data);
10555 : :
10556 : : out_clean:
10557 : 15 : clean_survey_results(survey_results);
10558 : : nla_put_failure:
10559 : 15 : return err;
10560 : : }
10561 : :
10562 : :
10563 : 274 : static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck,
10564 : : const u8 *replay_ctr)
10565 : : {
10566 : 274 : struct i802_bss *bss = priv;
10567 : 274 : struct wpa_driver_nl80211_data *drv = bss->drv;
10568 : : struct nlattr *replay_nested;
10569 : : struct nl_msg *msg;
10570 : :
10571 : 274 : msg = nlmsg_alloc();
10572 [ - + ]: 274 : if (!msg)
10573 : 0 : return;
10574 : :
10575 : 274 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10576 : :
10577 [ + - ]: 274 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10578 : :
10579 : 274 : replay_nested = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10580 [ - + ]: 274 : if (!replay_nested)
10581 : 0 : goto nla_put_failure;
10582 : :
10583 [ + - ]: 274 : NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
10584 [ + - ]: 274 : NLA_PUT(msg, NL80211_REKEY_DATA_KCK, NL80211_KCK_LEN, kck);
10585 [ + - ]: 274 : NLA_PUT(msg, NL80211_REKEY_DATA_REPLAY_CTR, NL80211_REPLAY_CTR_LEN,
10586 : : replay_ctr);
10587 : :
10588 : 274 : nla_nest_end(msg, replay_nested);
10589 : :
10590 : 274 : send_and_recv_msgs(drv, msg, NULL, NULL);
10591 : 274 : return;
10592 : : nla_put_failure:
10593 : 274 : nlmsg_free(msg);
10594 : : }
10595 : :
10596 : :
10597 : 0 : static void nl80211_send_null_frame(struct i802_bss *bss, const u8 *own_addr,
10598 : : const u8 *addr, int qos)
10599 : : {
10600 : : /* send data frame to poll STA and check whether
10601 : : * this frame is ACKed */
10602 : : struct {
10603 : : struct ieee80211_hdr hdr;
10604 : : u16 qos_ctl;
10605 : : } STRUCT_PACKED nulldata;
10606 : : size_t size;
10607 : :
10608 : : /* Send data frame to poll STA and check whether this frame is ACKed */
10609 : :
10610 : 0 : os_memset(&nulldata, 0, sizeof(nulldata));
10611 : :
10612 [ # # ]: 0 : if (qos) {
10613 : 0 : nulldata.hdr.frame_control =
10614 : : IEEE80211_FC(WLAN_FC_TYPE_DATA,
10615 : : WLAN_FC_STYPE_QOS_NULL);
10616 : 0 : size = sizeof(nulldata);
10617 : : } else {
10618 : 0 : nulldata.hdr.frame_control =
10619 : : IEEE80211_FC(WLAN_FC_TYPE_DATA,
10620 : : WLAN_FC_STYPE_NULLFUNC);
10621 : 0 : size = sizeof(struct ieee80211_hdr);
10622 : : }
10623 : :
10624 : 0 : nulldata.hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
10625 : 0 : os_memcpy(nulldata.hdr.IEEE80211_DA_FROMDS, addr, ETH_ALEN);
10626 : 0 : os_memcpy(nulldata.hdr.IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
10627 : 0 : os_memcpy(nulldata.hdr.IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
10628 : :
10629 [ # # ]: 0 : if (wpa_driver_nl80211_send_mlme(bss, (u8 *) &nulldata, size, 0, 0, 0,
10630 : : 0, 0) < 0)
10631 : 0 : wpa_printf(MSG_DEBUG, "nl80211_send_null_frame: Failed to "
10632 : : "send poll frame");
10633 : 0 : }
10634 : :
10635 : 0 : static void nl80211_poll_client(void *priv, const u8 *own_addr, const u8 *addr,
10636 : : int qos)
10637 : : {
10638 : 0 : struct i802_bss *bss = priv;
10639 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10640 : : struct nl_msg *msg;
10641 : :
10642 [ # # ]: 0 : if (!drv->poll_command_supported) {
10643 : 0 : nl80211_send_null_frame(bss, own_addr, addr, qos);
10644 : 0 : return;
10645 : : }
10646 : :
10647 : 0 : msg = nlmsg_alloc();
10648 [ # # ]: 0 : if (!msg)
10649 : 0 : return;
10650 : :
10651 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_PROBE_CLIENT);
10652 : :
10653 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10654 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
10655 : :
10656 : 0 : send_and_recv_msgs(drv, msg, NULL, NULL);
10657 : 0 : return;
10658 : : nla_put_failure:
10659 : 0 : nlmsg_free(msg);
10660 : : }
10661 : :
10662 : :
10663 : 0 : static int nl80211_set_power_save(struct i802_bss *bss, int enabled)
10664 : : {
10665 : : struct nl_msg *msg;
10666 : :
10667 : 0 : msg = nlmsg_alloc();
10668 [ # # ]: 0 : if (!msg)
10669 : 0 : return -ENOMEM;
10670 : :
10671 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_SET_POWER_SAVE);
10672 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10673 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_PS_STATE,
10674 : : enabled ? NL80211_PS_ENABLED : NL80211_PS_DISABLED);
10675 : 0 : return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
10676 : : nla_put_failure:
10677 : 0 : nlmsg_free(msg);
10678 : 0 : return -ENOBUFS;
10679 : : }
10680 : :
10681 : :
10682 : 0 : static int nl80211_set_p2p_powersave(void *priv, int legacy_ps, int opp_ps,
10683 : : int ctwindow)
10684 : : {
10685 : 0 : struct i802_bss *bss = priv;
10686 : :
10687 : 0 : wpa_printf(MSG_DEBUG, "nl80211: set_p2p_powersave (legacy_ps=%d "
10688 : : "opp_ps=%d ctwindow=%d)", legacy_ps, opp_ps, ctwindow);
10689 : :
10690 [ # # ][ # # ]: 0 : if (opp_ps != -1 || ctwindow != -1) {
10691 : : #ifdef ANDROID_P2P
10692 : : wpa_driver_set_p2p_ps(priv, legacy_ps, opp_ps, ctwindow);
10693 : : #else /* ANDROID_P2P */
10694 : 0 : return -1; /* Not yet supported */
10695 : : #endif /* ANDROID_P2P */
10696 : : }
10697 : :
10698 [ # # ]: 0 : if (legacy_ps == -1)
10699 : 0 : return 0;
10700 [ # # ][ # # ]: 0 : if (legacy_ps != 0 && legacy_ps != 1)
10701 : 0 : return -1; /* Not yet supported */
10702 : :
10703 : 0 : return nl80211_set_power_save(bss, legacy_ps);
10704 : : }
10705 : :
10706 : :
10707 : 0 : static int nl80211_start_radar_detection(void *priv,
10708 : : struct hostapd_freq_params *freq)
10709 : : {
10710 : 0 : struct i802_bss *bss = priv;
10711 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10712 : : struct nl_msg *msg;
10713 : : int ret;
10714 : :
10715 : 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)",
10716 : : freq->freq, freq->ht_enabled, freq->vht_enabled,
10717 : : freq->bandwidth, freq->center_freq1, freq->center_freq2);
10718 : :
10719 [ # # ]: 0 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_RADAR)) {
10720 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support radar "
10721 : : "detection");
10722 : 0 : return -1;
10723 : : }
10724 : :
10725 : 0 : msg = nlmsg_alloc();
10726 [ # # ]: 0 : if (!msg)
10727 : 0 : return -1;
10728 : :
10729 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_RADAR_DETECT);
10730 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10731 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
10732 : :
10733 [ # # ]: 0 : if (freq->vht_enabled) {
10734 [ # # # # : 0 : switch (freq->bandwidth) {
# ]
10735 : : case 20:
10736 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10737 : : NL80211_CHAN_WIDTH_20);
10738 : 0 : break;
10739 : : case 40:
10740 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10741 : : NL80211_CHAN_WIDTH_40);
10742 : 0 : break;
10743 : : case 80:
10744 [ # # ]: 0 : if (freq->center_freq2)
10745 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10746 : : NL80211_CHAN_WIDTH_80P80);
10747 : : else
10748 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10749 : : NL80211_CHAN_WIDTH_80);
10750 : 0 : break;
10751 : : case 160:
10752 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10753 : : NL80211_CHAN_WIDTH_160);
10754 : 0 : break;
10755 : : default:
10756 : 0 : return -1;
10757 : : }
10758 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
10759 [ # # ]: 0 : if (freq->center_freq2)
10760 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
10761 : : freq->center_freq2);
10762 [ # # ]: 0 : } else if (freq->ht_enabled) {
10763 [ # # # ]: 0 : switch (freq->sec_channel_offset) {
10764 : : case -1:
10765 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10766 : : NL80211_CHAN_HT40MINUS);
10767 : 0 : break;
10768 : : case 1:
10769 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10770 : : NL80211_CHAN_HT40PLUS);
10771 : 0 : break;
10772 : : default:
10773 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10774 : : NL80211_CHAN_HT20);
10775 : 0 : break;
10776 : : }
10777 : : }
10778 : :
10779 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10780 [ # # ]: 0 : if (ret == 0)
10781 : 0 : return 0;
10782 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to start radar detection: "
10783 : : "%d (%s)", ret, strerror(-ret));
10784 : : nla_put_failure:
10785 : 0 : return -1;
10786 : : }
10787 : :
10788 : : #ifdef CONFIG_TDLS
10789 : :
10790 : 105 : static int nl80211_send_tdls_mgmt(void *priv, const u8 *dst, u8 action_code,
10791 : : u8 dialog_token, u16 status_code,
10792 : : const u8 *buf, size_t len)
10793 : : {
10794 : 105 : struct i802_bss *bss = priv;
10795 : 105 : struct wpa_driver_nl80211_data *drv = bss->drv;
10796 : : struct nl_msg *msg;
10797 : :
10798 [ - + ]: 105 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
10799 : 0 : return -EOPNOTSUPP;
10800 : :
10801 [ - + ]: 105 : if (!dst)
10802 : 0 : return -EINVAL;
10803 : :
10804 : 105 : msg = nlmsg_alloc();
10805 [ - + ]: 105 : if (!msg)
10806 : 0 : return -ENOMEM;
10807 : :
10808 : 105 : nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_MGMT);
10809 [ + - ]: 105 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10810 [ + - ]: 105 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst);
10811 [ + - ]: 105 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_ACTION, action_code);
10812 [ + - ]: 105 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_DIALOG_TOKEN, dialog_token);
10813 [ + - ]: 105 : NLA_PUT_U16(msg, NL80211_ATTR_STATUS_CODE, status_code);
10814 [ + - ]: 105 : NLA_PUT(msg, NL80211_ATTR_IE, len, buf);
10815 : :
10816 : 105 : return send_and_recv_msgs(drv, msg, NULL, NULL);
10817 : :
10818 : : nla_put_failure:
10819 : 0 : nlmsg_free(msg);
10820 : 105 : return -ENOBUFS;
10821 : : }
10822 : :
10823 : :
10824 : 825 : static int nl80211_tdls_oper(void *priv, enum tdls_oper oper, const u8 *peer)
10825 : : {
10826 : 825 : struct i802_bss *bss = priv;
10827 : 825 : struct wpa_driver_nl80211_data *drv = bss->drv;
10828 : : struct nl_msg *msg;
10829 : : enum nl80211_tdls_operation nl80211_oper;
10830 : :
10831 [ - + ]: 825 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
10832 : 0 : return -EOPNOTSUPP;
10833 : :
10834 [ - - - + : 825 : switch (oper) {
+ + - - ]
10835 : : case TDLS_DISCOVERY_REQ:
10836 : 0 : nl80211_oper = NL80211_TDLS_DISCOVERY_REQ;
10837 : 0 : break;
10838 : : case TDLS_SETUP:
10839 : 0 : nl80211_oper = NL80211_TDLS_SETUP;
10840 : 0 : break;
10841 : : case TDLS_TEARDOWN:
10842 : 0 : nl80211_oper = NL80211_TDLS_TEARDOWN;
10843 : 0 : break;
10844 : : case TDLS_ENABLE_LINK:
10845 : 38 : nl80211_oper = NL80211_TDLS_ENABLE_LINK;
10846 : 38 : break;
10847 : : case TDLS_DISABLE_LINK:
10848 : 60 : nl80211_oper = NL80211_TDLS_DISABLE_LINK;
10849 : 60 : break;
10850 : : case TDLS_ENABLE:
10851 : 727 : return 0;
10852 : : case TDLS_DISABLE:
10853 : 0 : return 0;
10854 : : default:
10855 : 0 : return -EINVAL;
10856 : : }
10857 : :
10858 : 98 : msg = nlmsg_alloc();
10859 [ - + ]: 98 : if (!msg)
10860 : 0 : return -ENOMEM;
10861 : :
10862 : 98 : nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_OPER);
10863 [ + - ]: 98 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_OPERATION, nl80211_oper);
10864 [ + - ]: 98 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10865 [ + - ]: 98 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, peer);
10866 : :
10867 : 98 : return send_and_recv_msgs(drv, msg, NULL, NULL);
10868 : :
10869 : : nla_put_failure:
10870 : 0 : nlmsg_free(msg);
10871 : 825 : return -ENOBUFS;
10872 : : }
10873 : :
10874 : : #endif /* CONFIG TDLS */
10875 : :
10876 : :
10877 : : #ifdef ANDROID
10878 : :
10879 : : typedef struct android_wifi_priv_cmd {
10880 : : char *buf;
10881 : : int used_len;
10882 : : int total_len;
10883 : : } android_wifi_priv_cmd;
10884 : :
10885 : : static int drv_errors = 0;
10886 : :
10887 : : static void wpa_driver_send_hang_msg(struct wpa_driver_nl80211_data *drv)
10888 : : {
10889 : : drv_errors++;
10890 : : if (drv_errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
10891 : : drv_errors = 0;
10892 : : wpa_msg(drv->ctx, MSG_INFO, WPA_EVENT_DRIVER_STATE "HANGED");
10893 : : }
10894 : : }
10895 : :
10896 : :
10897 : : static int android_priv_cmd(struct i802_bss *bss, const char *cmd)
10898 : : {
10899 : : struct wpa_driver_nl80211_data *drv = bss->drv;
10900 : : struct ifreq ifr;
10901 : : android_wifi_priv_cmd priv_cmd;
10902 : : char buf[MAX_DRV_CMD_SIZE];
10903 : : int ret;
10904 : :
10905 : : os_memset(&ifr, 0, sizeof(ifr));
10906 : : os_memset(&priv_cmd, 0, sizeof(priv_cmd));
10907 : : os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
10908 : :
10909 : : os_memset(buf, 0, sizeof(buf));
10910 : : os_strlcpy(buf, cmd, sizeof(buf));
10911 : :
10912 : : priv_cmd.buf = buf;
10913 : : priv_cmd.used_len = sizeof(buf);
10914 : : priv_cmd.total_len = sizeof(buf);
10915 : : ifr.ifr_data = &priv_cmd;
10916 : :
10917 : : ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
10918 : : if (ret < 0) {
10919 : : wpa_printf(MSG_ERROR, "%s: failed to issue private commands",
10920 : : __func__);
10921 : : wpa_driver_send_hang_msg(drv);
10922 : : return ret;
10923 : : }
10924 : :
10925 : : drv_errors = 0;
10926 : : return 0;
10927 : : }
10928 : :
10929 : :
10930 : : static int android_pno_start(struct i802_bss *bss,
10931 : : struct wpa_driver_scan_params *params)
10932 : : {
10933 : : struct wpa_driver_nl80211_data *drv = bss->drv;
10934 : : struct ifreq ifr;
10935 : : android_wifi_priv_cmd priv_cmd;
10936 : : int ret = 0, i = 0, bp;
10937 : : char buf[WEXT_PNO_MAX_COMMAND_SIZE];
10938 : :
10939 : : bp = WEXT_PNOSETUP_HEADER_SIZE;
10940 : : os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp);
10941 : : buf[bp++] = WEXT_PNO_TLV_PREFIX;
10942 : : buf[bp++] = WEXT_PNO_TLV_VERSION;
10943 : : buf[bp++] = WEXT_PNO_TLV_SUBVERSION;
10944 : : buf[bp++] = WEXT_PNO_TLV_RESERVED;
10945 : :
10946 : : while (i < WEXT_PNO_AMOUNT && (size_t) i < params->num_ssids) {
10947 : : /* Check that there is enough space needed for 1 more SSID, the
10948 : : * other sections and null termination */
10949 : : if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN +
10950 : : WEXT_PNO_NONSSID_SECTIONS_SIZE + 1) >= (int) sizeof(buf))
10951 : : break;
10952 : : wpa_hexdump_ascii(MSG_DEBUG, "For PNO Scan",
10953 : : params->ssids[i].ssid,
10954 : : params->ssids[i].ssid_len);
10955 : : buf[bp++] = WEXT_PNO_SSID_SECTION;
10956 : : buf[bp++] = params->ssids[i].ssid_len;
10957 : : os_memcpy(&buf[bp], params->ssids[i].ssid,
10958 : : params->ssids[i].ssid_len);
10959 : : bp += params->ssids[i].ssid_len;
10960 : : i++;
10961 : : }
10962 : :
10963 : : buf[bp++] = WEXT_PNO_SCAN_INTERVAL_SECTION;
10964 : : os_snprintf(&buf[bp], WEXT_PNO_SCAN_INTERVAL_LENGTH + 1, "%x",
10965 : : WEXT_PNO_SCAN_INTERVAL);
10966 : : bp += WEXT_PNO_SCAN_INTERVAL_LENGTH;
10967 : :
10968 : : buf[bp++] = WEXT_PNO_REPEAT_SECTION;
10969 : : os_snprintf(&buf[bp], WEXT_PNO_REPEAT_LENGTH + 1, "%x",
10970 : : WEXT_PNO_REPEAT);
10971 : : bp += WEXT_PNO_REPEAT_LENGTH;
10972 : :
10973 : : buf[bp++] = WEXT_PNO_MAX_REPEAT_SECTION;
10974 : : os_snprintf(&buf[bp], WEXT_PNO_MAX_REPEAT_LENGTH + 1, "%x",
10975 : : WEXT_PNO_MAX_REPEAT);
10976 : : bp += WEXT_PNO_MAX_REPEAT_LENGTH + 1;
10977 : :
10978 : : memset(&ifr, 0, sizeof(ifr));
10979 : : memset(&priv_cmd, 0, sizeof(priv_cmd));
10980 : : os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
10981 : :
10982 : : priv_cmd.buf = buf;
10983 : : priv_cmd.used_len = bp;
10984 : : priv_cmd.total_len = bp;
10985 : : ifr.ifr_data = &priv_cmd;
10986 : :
10987 : : ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
10988 : :
10989 : : if (ret < 0) {
10990 : : wpa_printf(MSG_ERROR, "ioctl[SIOCSIWPRIV] (pnosetup): %d",
10991 : : ret);
10992 : : wpa_driver_send_hang_msg(drv);
10993 : : return ret;
10994 : : }
10995 : :
10996 : : drv_errors = 0;
10997 : :
10998 : : return android_priv_cmd(bss, "PNOFORCE 1");
10999 : : }
11000 : :
11001 : :
11002 : : static int android_pno_stop(struct i802_bss *bss)
11003 : : {
11004 : : return android_priv_cmd(bss, "PNOFORCE 0");
11005 : : }
11006 : :
11007 : : #endif /* ANDROID */
11008 : :
11009 : :
11010 : 6656 : static int driver_nl80211_set_key(const char *ifname, void *priv,
11011 : : enum wpa_alg alg, const u8 *addr,
11012 : : int key_idx, int set_tx,
11013 : : const u8 *seq, size_t seq_len,
11014 : : const u8 *key, size_t key_len)
11015 : : {
11016 : 6656 : struct i802_bss *bss = priv;
11017 : 6656 : return wpa_driver_nl80211_set_key(ifname, bss, alg, addr, key_idx,
11018 : : set_tx, seq, seq_len, key, key_len);
11019 : : }
11020 : :
11021 : :
11022 : 938 : static int driver_nl80211_scan2(void *priv,
11023 : : struct wpa_driver_scan_params *params)
11024 : : {
11025 : 938 : struct i802_bss *bss = priv;
11026 : 938 : return wpa_driver_nl80211_scan(bss, params);
11027 : : }
11028 : :
11029 : :
11030 : 433 : static int driver_nl80211_deauthenticate(void *priv, const u8 *addr,
11031 : : int reason_code)
11032 : : {
11033 : 433 : struct i802_bss *bss = priv;
11034 : 433 : return wpa_driver_nl80211_deauthenticate(bss, addr, reason_code);
11035 : : }
11036 : :
11037 : :
11038 : 489 : static int driver_nl80211_authenticate(void *priv,
11039 : : struct wpa_driver_auth_params *params)
11040 : : {
11041 : 489 : struct i802_bss *bss = priv;
11042 : 489 : return wpa_driver_nl80211_authenticate(bss, params);
11043 : : }
11044 : :
11045 : :
11046 : 33 : static void driver_nl80211_deinit(void *priv)
11047 : : {
11048 : 33 : struct i802_bss *bss = priv;
11049 : 33 : wpa_driver_nl80211_deinit(bss);
11050 : 33 : }
11051 : :
11052 : :
11053 : 39 : static int driver_nl80211_if_remove(void *priv, enum wpa_driver_if_type type,
11054 : : const char *ifname)
11055 : : {
11056 : 39 : struct i802_bss *bss = priv;
11057 : 39 : return wpa_driver_nl80211_if_remove(bss, type, ifname);
11058 : : }
11059 : :
11060 : :
11061 : 2020 : static int driver_nl80211_send_mlme(void *priv, const u8 *data,
11062 : : size_t data_len, int noack)
11063 : : {
11064 : 2020 : struct i802_bss *bss = priv;
11065 : 2020 : return wpa_driver_nl80211_send_mlme(bss, data, data_len, noack,
11066 : : 0, 0, 0, 0);
11067 : : }
11068 : :
11069 : :
11070 : 930 : static int driver_nl80211_sta_remove(void *priv, const u8 *addr)
11071 : : {
11072 : 930 : struct i802_bss *bss = priv;
11073 : 930 : return wpa_driver_nl80211_sta_remove(bss, addr);
11074 : : }
11075 : :
11076 : :
11077 : 0 : static int driver_nl80211_set_sta_vlan(void *priv, const u8 *addr,
11078 : : const char *ifname, int vlan_id)
11079 : : {
11080 : 0 : struct i802_bss *bss = priv;
11081 : 0 : return i802_set_sta_vlan(bss, addr, ifname, vlan_id);
11082 : : }
11083 : :
11084 : :
11085 : 13 : static int driver_nl80211_read_sta_data(void *priv,
11086 : : struct hostap_sta_driver_data *data,
11087 : : const u8 *addr)
11088 : : {
11089 : 13 : struct i802_bss *bss = priv;
11090 : 13 : return i802_read_sta_data(bss, data, addr);
11091 : : }
11092 : :
11093 : :
11094 : 423 : static int driver_nl80211_send_action(void *priv, unsigned int freq,
11095 : : unsigned int wait_time,
11096 : : const u8 *dst, const u8 *src,
11097 : : const u8 *bssid,
11098 : : const u8 *data, size_t data_len,
11099 : : int no_cck)
11100 : : {
11101 : 423 : struct i802_bss *bss = priv;
11102 : 423 : return wpa_driver_nl80211_send_action(bss, freq, wait_time, dst, src,
11103 : : bssid, data, data_len, no_cck);
11104 : : }
11105 : :
11106 : :
11107 : 2689 : static int driver_nl80211_probe_req_report(void *priv, int report)
11108 : : {
11109 : 2689 : struct i802_bss *bss = priv;
11110 : 2689 : return wpa_driver_nl80211_probe_req_report(bss, report);
11111 : : }
11112 : :
11113 : :
11114 : 0 : static int wpa_driver_nl80211_update_ft_ies(void *priv, const u8 *md,
11115 : : const u8 *ies, size_t ies_len)
11116 : : {
11117 : : int ret;
11118 : : struct nl_msg *msg;
11119 : 0 : struct i802_bss *bss = priv;
11120 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
11121 : 0 : u16 mdid = WPA_GET_LE16(md);
11122 : :
11123 : 0 : msg = nlmsg_alloc();
11124 [ # # ]: 0 : if (!msg)
11125 : 0 : return -ENOMEM;
11126 : :
11127 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Updating FT IEs");
11128 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_UPDATE_FT_IES);
11129 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11130 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE, ies_len, ies);
11131 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_MDID, mdid);
11132 : :
11133 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11134 [ # # ]: 0 : if (ret) {
11135 : 0 : wpa_printf(MSG_DEBUG, "nl80211: update_ft_ies failed "
11136 : : "err=%d (%s)", ret, strerror(-ret));
11137 : : }
11138 : :
11139 : 0 : return ret;
11140 : :
11141 : : nla_put_failure:
11142 : 0 : nlmsg_free(msg);
11143 : 0 : return -ENOBUFS;
11144 : : }
11145 : :
11146 : :
11147 : 33 : const u8 * wpa_driver_nl80211_get_macaddr(void *priv)
11148 : : {
11149 : 33 : struct i802_bss *bss = priv;
11150 : 33 : struct wpa_driver_nl80211_data *drv = bss->drv;
11151 : :
11152 [ + - ]: 33 : if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE)
11153 : 33 : return NULL;
11154 : :
11155 : 33 : return bss->addr;
11156 : : }
11157 : :
11158 : :
11159 : 735 : static const char * scan_state_str(enum scan_states scan_state)
11160 : : {
11161 [ + - + + : 735 : switch (scan_state) {
- - - -
- ]
11162 : : case NO_SCAN:
11163 : 6 : return "NO_SCAN";
11164 : : case SCAN_REQUESTED:
11165 : 0 : return "SCAN_REQUESTED";
11166 : : case SCAN_STARTED:
11167 : 8 : return "SCAN_STARTED";
11168 : : case SCAN_COMPLETED:
11169 : 721 : return "SCAN_COMPLETED";
11170 : : case SCAN_ABORTED:
11171 : 0 : return "SCAN_ABORTED";
11172 : : case SCHED_SCAN_STARTED:
11173 : 0 : return "SCHED_SCAN_STARTED";
11174 : : case SCHED_SCAN_STOPPED:
11175 : 0 : return "SCHED_SCAN_STOPPED";
11176 : : case SCHED_SCAN_RESULTS:
11177 : 0 : return "SCHED_SCAN_RESULTS";
11178 : : }
11179 : :
11180 : 735 : return "??";
11181 : : }
11182 : :
11183 : :
11184 : 735 : static int wpa_driver_nl80211_status(void *priv, char *buf, size_t buflen)
11185 : : {
11186 : 735 : struct i802_bss *bss = priv;
11187 : 735 : struct wpa_driver_nl80211_data *drv = bss->drv;
11188 : : int res;
11189 : : char *pos, *end;
11190 : :
11191 : 735 : pos = buf;
11192 : 735 : end = buf + buflen;
11193 : :
11194 [ - + ][ - + ]: 735 : res = os_snprintf(pos, end - pos,
[ - + ][ - + ]
[ - + ]
11195 : : "ifindex=%d\n"
11196 : : "ifname=%s\n"
11197 : : "brname=%s\n"
11198 : : "addr=" MACSTR "\n"
11199 : : "freq=%d\n"
11200 : : "%s%s%s%s%s",
11201 : : bss->ifindex,
11202 : 735 : bss->ifname,
11203 : 735 : bss->brname,
11204 : 4410 : MAC2STR(bss->addr),
11205 : : bss->freq,
11206 : 735 : bss->beacon_set ? "beacon_set=1\n" : "",
11207 : 735 : bss->added_if_into_bridge ?
11208 : : "added_if_into_bridge=1\n" : "",
11209 : 735 : bss->added_bridge ? "added_bridge=1\n" : "",
11210 : 735 : bss->in_deinit ? "in_deinit=1\n" : "",
11211 : 735 : bss->if_dynamic ? "if_dynamic=1\n" : "");
11212 [ + - ][ - + ]: 735 : if (res < 0 || res >= end - pos)
11213 : 0 : return pos - buf;
11214 : 735 : pos += res;
11215 : :
11216 [ - + ]: 735 : if (bss->wdev_id_set) {
11217 : 0 : res = os_snprintf(pos, end - pos, "wdev_id=%llu\n",
11218 : 0 : (unsigned long long) bss->wdev_id);
11219 [ # # ][ # # ]: 0 : if (res < 0 || res >= end - pos)
11220 : 0 : return pos - buf;
11221 : 0 : pos += res;
11222 : : }
11223 : :
11224 [ - + ][ - + ]: 735 : res = os_snprintf(pos, end - pos,
[ - + ][ - + ]
[ - + ][ + - ]
[ + - ][ - + ]
[ + - ][ - + ]
[ + + ][ + + ]
[ - + ]
11225 : : "phyname=%s\n"
11226 : : "drv_ifindex=%d\n"
11227 : : "operstate=%d\n"
11228 : : "scan_state=%s\n"
11229 : : "auth_bssid=" MACSTR "\n"
11230 : : "auth_attempt_bssid=" MACSTR "\n"
11231 : : "bssid=" MACSTR "\n"
11232 : : "prev_bssid=" MACSTR "\n"
11233 : : "associated=%d\n"
11234 : : "assoc_freq=%u\n"
11235 : : "monitor_sock=%d\n"
11236 : : "monitor_ifidx=%d\n"
11237 : : "monitor_refcount=%d\n"
11238 : : "last_mgmt_freq=%u\n"
11239 : : "eapol_tx_sock=%d\n"
11240 : : "%s%s%s%s%s%s%s%s%s%s%s%s%s",
11241 : 735 : drv->phyname,
11242 : : drv->ifindex,
11243 : : drv->operstate,
11244 : : scan_state_str(drv->scan_state),
11245 : 4410 : MAC2STR(drv->auth_bssid),
11246 : 4410 : MAC2STR(drv->auth_attempt_bssid),
11247 : 4410 : MAC2STR(drv->bssid),
11248 : 4410 : MAC2STR(drv->prev_bssid),
11249 : : drv->associated,
11250 : : drv->assoc_freq,
11251 : : drv->monitor_sock,
11252 : : drv->monitor_ifidx,
11253 : : drv->monitor_refcount,
11254 : : drv->last_mgmt_freq,
11255 : : drv->eapol_tx_sock,
11256 : 735 : drv->ignore_if_down_event ?
11257 : : "ignore_if_down_event=1\n" : "",
11258 : 735 : drv->scan_complete_events ?
11259 : : "scan_complete_events=1\n" : "",
11260 : 735 : drv->disabled_11b_rates ?
11261 : : "disabled_11b_rates=1\n" : "",
11262 : 735 : drv->pending_remain_on_chan ?
11263 : : "pending_remain_on_chan=1\n" : "",
11264 : 735 : drv->in_interface_list ? "in_interface_list=1\n" : "",
11265 : 735 : drv->device_ap_sme ? "device_ap_sme=1\n" : "",
11266 : 735 : drv->poll_command_supported ?
11267 : : "poll_command_supported=1\n" : "",
11268 : 735 : drv->data_tx_status ? "data_tx_status=1\n" : "",
11269 : 735 : drv->scan_for_auth ? "scan_for_auth=1\n" : "",
11270 : 735 : drv->retry_auth ? "retry_auth=1\n" : "",
11271 : 735 : drv->use_monitor ? "use_monitor=1\n" : "",
11272 : 735 : drv->ignore_next_local_disconnect ?
11273 : : "ignore_next_local_disconnect=1\n" : "",
11274 : 735 : drv->allow_p2p_device ? "allow_p2p_device=1\n" : "");
11275 [ - + ][ + - ]: 735 : if (res < 0 || res >= end - pos)
11276 : 0 : return pos - buf;
11277 : 735 : pos += res;
11278 : :
11279 [ + - ]: 735 : if (drv->has_capability) {
11280 : 735 : res = os_snprintf(pos, end - pos,
11281 : : "capa.key_mgmt=0x%x\n"
11282 : : "capa.enc=0x%x\n"
11283 : : "capa.auth=0x%x\n"
11284 : : "capa.flags=0x%x\n"
11285 : : "capa.max_scan_ssids=%d\n"
11286 : : "capa.max_sched_scan_ssids=%d\n"
11287 : : "capa.sched_scan_supported=%d\n"
11288 : : "capa.max_match_sets=%d\n"
11289 : : "capa.max_remain_on_chan=%u\n"
11290 : : "capa.max_stations=%u\n"
11291 : : "capa.probe_resp_offloads=0x%x\n"
11292 : : "capa.max_acl_mac_addrs=%u\n"
11293 : : "capa.num_multichan_concurrent=%u\n",
11294 : : drv->capa.key_mgmt,
11295 : : drv->capa.enc,
11296 : : drv->capa.auth,
11297 : : drv->capa.flags,
11298 : : drv->capa.max_scan_ssids,
11299 : : drv->capa.max_sched_scan_ssids,
11300 : : drv->capa.sched_scan_supported,
11301 : : drv->capa.max_match_sets,
11302 : : drv->capa.max_remain_on_chan,
11303 : : drv->capa.max_stations,
11304 : : drv->capa.probe_resp_offloads,
11305 : : drv->capa.max_acl_mac_addrs,
11306 : : drv->capa.num_multichan_concurrent);
11307 [ + - ][ - + ]: 735 : if (res < 0 || res >= end - pos)
11308 : 0 : return pos - buf;
11309 : 735 : pos += res;
11310 : : }
11311 : :
11312 : 735 : return pos - buf;
11313 : : }
11314 : :
11315 : :
11316 : 0 : static int set_beacon_data(struct nl_msg *msg, struct beacon_data *settings)
11317 : : {
11318 [ # # ]: 0 : if (settings->head)
11319 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD,
11320 : : settings->head_len, settings->head);
11321 : :
11322 [ # # ]: 0 : if (settings->tail)
11323 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL,
11324 : : settings->tail_len, settings->tail);
11325 : :
11326 [ # # ]: 0 : if (settings->beacon_ies)
11327 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE,
11328 : : settings->beacon_ies_len, settings->beacon_ies);
11329 : :
11330 [ # # ]: 0 : if (settings->proberesp_ies)
11331 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
11332 : : settings->proberesp_ies_len, settings->proberesp_ies);
11333 : :
11334 [ # # ]: 0 : if (settings->assocresp_ies)
11335 [ # # ]: 0 : NLA_PUT(msg,
11336 : : NL80211_ATTR_IE_ASSOC_RESP,
11337 : : settings->assocresp_ies_len, settings->assocresp_ies);
11338 : :
11339 [ # # ]: 0 : if (settings->probe_resp)
11340 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_PROBE_RESP,
11341 : : settings->probe_resp_len, settings->probe_resp);
11342 : :
11343 : 0 : return 0;
11344 : :
11345 : : nla_put_failure:
11346 : 0 : return -ENOBUFS;
11347 : : }
11348 : :
11349 : :
11350 : 1 : static int nl80211_switch_channel(void *priv, struct csa_settings *settings)
11351 : : {
11352 : : struct nl_msg *msg;
11353 : 1 : struct i802_bss *bss = priv;
11354 : 1 : struct wpa_driver_nl80211_data *drv = bss->drv;
11355 : : struct nlattr *beacon_csa;
11356 : 1 : int ret = -ENOBUFS;
11357 : :
11358 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Channel switch request (cs_count=%u block_tx=%u freq=%d width=%d cf1=%d cf2=%d)",
11359 : 2 : settings->cs_count, settings->block_tx,
11360 : : settings->freq_params.freq, settings->freq_params.bandwidth,
11361 : : settings->freq_params.center_freq1,
11362 : : settings->freq_params.center_freq2);
11363 : :
11364 [ + - ]: 1 : if (!drv->channel_switch_supported) {
11365 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support channel switch command");
11366 : 1 : return -EOPNOTSUPP;
11367 : : }
11368 : :
11369 [ # # ][ # # ]: 0 : if ((drv->nlmode != NL80211_IFTYPE_AP) &&
11370 : 0 : (drv->nlmode != NL80211_IFTYPE_P2P_GO))
11371 : 0 : return -EOPNOTSUPP;
11372 : :
11373 : : /* check settings validity */
11374 [ # # ][ # # ]: 0 : if (!settings->beacon_csa.tail ||
11375 : 0 : ((settings->beacon_csa.tail_len <=
11376 [ # # ]: 0 : settings->counter_offset_beacon) ||
11377 : 0 : (settings->beacon_csa.tail[settings->counter_offset_beacon] !=
11378 : 0 : settings->cs_count)))
11379 : 0 : return -EINVAL;
11380 : :
11381 [ # # ][ # # ]: 0 : if (settings->beacon_csa.probe_resp &&
11382 : 0 : ((settings->beacon_csa.probe_resp_len <=
11383 [ # # ]: 0 : settings->counter_offset_presp) ||
11384 : 0 : (settings->beacon_csa.probe_resp[settings->counter_offset_presp] !=
11385 : 0 : settings->cs_count)))
11386 : 0 : return -EINVAL;
11387 : :
11388 : 0 : msg = nlmsg_alloc();
11389 [ # # ]: 0 : if (!msg)
11390 : 0 : return -ENOMEM;
11391 : :
11392 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CHANNEL_SWITCH);
11393 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11394 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CH_SWITCH_COUNT, settings->cs_count);
11395 : 0 : ret = nl80211_put_freq_params(msg, &settings->freq_params);
11396 [ # # ]: 0 : if (ret)
11397 : 0 : goto error;
11398 : :
11399 [ # # ]: 0 : if (settings->block_tx)
11400 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_CH_SWITCH_BLOCK_TX);
11401 : :
11402 : : /* beacon_after params */
11403 : 0 : ret = set_beacon_data(msg, &settings->beacon_after);
11404 [ # # ]: 0 : if (ret)
11405 : 0 : goto error;
11406 : :
11407 : : /* beacon_csa params */
11408 : 0 : beacon_csa = nla_nest_start(msg, NL80211_ATTR_CSA_IES);
11409 [ # # ]: 0 : if (!beacon_csa)
11410 : 0 : goto nla_put_failure;
11411 : :
11412 : 0 : ret = set_beacon_data(msg, &settings->beacon_csa);
11413 [ # # ]: 0 : if (ret)
11414 : 0 : goto error;
11415 : :
11416 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_BEACON,
11417 : : settings->counter_offset_beacon);
11418 : :
11419 [ # # ]: 0 : if (settings->beacon_csa.probe_resp)
11420 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_PRESP,
11421 : : settings->counter_offset_presp);
11422 : :
11423 : 0 : nla_nest_end(msg, beacon_csa);
11424 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11425 [ # # ]: 0 : if (ret) {
11426 : 0 : wpa_printf(MSG_DEBUG, "nl80211: switch_channel failed err=%d (%s)",
11427 : : ret, strerror(-ret));
11428 : : }
11429 : 0 : return ret;
11430 : :
11431 : : nla_put_failure:
11432 : 0 : ret = -ENOBUFS;
11433 : : error:
11434 : 0 : nlmsg_free(msg);
11435 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not build channel switch request");
11436 : 1 : return ret;
11437 : : }
11438 : :
11439 : :
11440 : 4 : static int nl80211_set_qos_map(void *priv, const u8 *qos_map_set,
11441 : : u8 qos_map_set_len)
11442 : : {
11443 : 4 : struct i802_bss *bss = priv;
11444 : 4 : struct wpa_driver_nl80211_data *drv = bss->drv;
11445 : : struct nl_msg *msg;
11446 : : int ret;
11447 : :
11448 : 4 : msg = nlmsg_alloc();
11449 [ - + ]: 4 : if (!msg)
11450 : 0 : return -ENOMEM;
11451 : :
11452 : 4 : wpa_hexdump(MSG_DEBUG, "nl80211: Setting QoS Map",
11453 : : qos_map_set, qos_map_set_len);
11454 : :
11455 : 4 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_QOS_MAP);
11456 [ + - ]: 4 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11457 [ + - ]: 4 : NLA_PUT(msg, NL80211_ATTR_QOS_MAP, qos_map_set_len, qos_map_set);
11458 : :
11459 : 4 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11460 [ - + ]: 4 : if (ret)
11461 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Setting QoS Map failed");
11462 : :
11463 : 4 : return ret;
11464 : :
11465 : : nla_put_failure:
11466 : 0 : nlmsg_free(msg);
11467 : 4 : return -ENOBUFS;
11468 : : }
11469 : :
11470 : :
11471 : : const struct wpa_driver_ops wpa_driver_nl80211_ops = {
11472 : : .name = "nl80211",
11473 : : .desc = "Linux nl80211/cfg80211",
11474 : : .get_bssid = wpa_driver_nl80211_get_bssid,
11475 : : .get_ssid = wpa_driver_nl80211_get_ssid,
11476 : : .set_key = driver_nl80211_set_key,
11477 : : .scan2 = driver_nl80211_scan2,
11478 : : .sched_scan = wpa_driver_nl80211_sched_scan,
11479 : : .stop_sched_scan = wpa_driver_nl80211_stop_sched_scan,
11480 : : .get_scan_results2 = wpa_driver_nl80211_get_scan_results,
11481 : : .deauthenticate = driver_nl80211_deauthenticate,
11482 : : .authenticate = driver_nl80211_authenticate,
11483 : : .associate = wpa_driver_nl80211_associate,
11484 : : .global_init = nl80211_global_init,
11485 : : .global_deinit = nl80211_global_deinit,
11486 : : .init2 = wpa_driver_nl80211_init,
11487 : : .deinit = driver_nl80211_deinit,
11488 : : .get_capa = wpa_driver_nl80211_get_capa,
11489 : : .set_operstate = wpa_driver_nl80211_set_operstate,
11490 : : .set_supp_port = wpa_driver_nl80211_set_supp_port,
11491 : : .set_country = wpa_driver_nl80211_set_country,
11492 : : .get_country = wpa_driver_nl80211_get_country,
11493 : : .set_ap = wpa_driver_nl80211_set_ap,
11494 : : .set_acl = wpa_driver_nl80211_set_acl,
11495 : : .if_add = wpa_driver_nl80211_if_add,
11496 : : .if_remove = driver_nl80211_if_remove,
11497 : : .send_mlme = driver_nl80211_send_mlme,
11498 : : .get_hw_feature_data = wpa_driver_nl80211_get_hw_feature_data,
11499 : : .sta_add = wpa_driver_nl80211_sta_add,
11500 : : .sta_remove = driver_nl80211_sta_remove,
11501 : : .hapd_send_eapol = wpa_driver_nl80211_hapd_send_eapol,
11502 : : .sta_set_flags = wpa_driver_nl80211_sta_set_flags,
11503 : : .hapd_init = i802_init,
11504 : : .hapd_deinit = i802_deinit,
11505 : : .set_wds_sta = i802_set_wds_sta,
11506 : : .get_seqnum = i802_get_seqnum,
11507 : : .flush = i802_flush,
11508 : : .get_inact_sec = i802_get_inact_sec,
11509 : : .sta_clear_stats = i802_sta_clear_stats,
11510 : : .set_rts = i802_set_rts,
11511 : : .set_frag = i802_set_frag,
11512 : : .set_tx_queue_params = i802_set_tx_queue_params,
11513 : : .set_sta_vlan = driver_nl80211_set_sta_vlan,
11514 : : .sta_deauth = i802_sta_deauth,
11515 : : .sta_disassoc = i802_sta_disassoc,
11516 : : .read_sta_data = driver_nl80211_read_sta_data,
11517 : : .set_freq = i802_set_freq,
11518 : : .send_action = driver_nl80211_send_action,
11519 : : .send_action_cancel_wait = wpa_driver_nl80211_send_action_cancel_wait,
11520 : : .remain_on_channel = wpa_driver_nl80211_remain_on_channel,
11521 : : .cancel_remain_on_channel =
11522 : : wpa_driver_nl80211_cancel_remain_on_channel,
11523 : : .probe_req_report = driver_nl80211_probe_req_report,
11524 : : .deinit_ap = wpa_driver_nl80211_deinit_ap,
11525 : : .deinit_p2p_cli = wpa_driver_nl80211_deinit_p2p_cli,
11526 : : .resume = wpa_driver_nl80211_resume,
11527 : : .send_ft_action = nl80211_send_ft_action,
11528 : : .signal_monitor = nl80211_signal_monitor,
11529 : : .signal_poll = nl80211_signal_poll,
11530 : : .send_frame = nl80211_send_frame,
11531 : : .shared_freq = wpa_driver_nl80211_shared_freq,
11532 : : .set_param = nl80211_set_param,
11533 : : .get_radio_name = nl80211_get_radio_name,
11534 : : .add_pmkid = nl80211_add_pmkid,
11535 : : .remove_pmkid = nl80211_remove_pmkid,
11536 : : .flush_pmkid = nl80211_flush_pmkid,
11537 : : .set_rekey_info = nl80211_set_rekey_info,
11538 : : .poll_client = nl80211_poll_client,
11539 : : .set_p2p_powersave = nl80211_set_p2p_powersave,
11540 : : .start_dfs_cac = nl80211_start_radar_detection,
11541 : : .stop_ap = wpa_driver_nl80211_stop_ap,
11542 : : #ifdef CONFIG_TDLS
11543 : : .send_tdls_mgmt = nl80211_send_tdls_mgmt,
11544 : : .tdls_oper = nl80211_tdls_oper,
11545 : : #endif /* CONFIG_TDLS */
11546 : : .update_ft_ies = wpa_driver_nl80211_update_ft_ies,
11547 : : .get_mac_addr = wpa_driver_nl80211_get_macaddr,
11548 : : .get_survey = wpa_driver_nl80211_get_survey,
11549 : : .status = wpa_driver_nl80211_status,
11550 : : .switch_channel = nl80211_switch_channel,
11551 : : #ifdef ANDROID_P2P
11552 : : .set_noa = wpa_driver_set_p2p_noa,
11553 : : .get_noa = wpa_driver_get_p2p_noa,
11554 : : .set_ap_wps_ie = wpa_driver_set_ap_wps_p2p_ie,
11555 : : #endif /* ANDROID_P2P */
11556 : : #ifdef ANDROID
11557 : : .driver_cmd = wpa_driver_nl80211_driver_cmd,
11558 : : #endif /* ANDROID */
11559 : : .set_qos_map = nl80211_set_qos_map,
11560 : : };
|