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 : 1234 : static struct nl_handle * nl_create_handle(struct nl_cb *cb, const char *dbg)
124 : : {
125 : : struct nl_handle *handle;
126 : :
127 : 1234 : handle = nl80211_handle_alloc(cb);
128 [ - + ]: 1234 : 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 [ - + ]: 1234 : 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 : 1234 : return handle;
142 : : }
143 : :
144 : :
145 : 1234 : static void nl_destroy_handles(struct nl_handle **handle)
146 : : {
147 [ - + ]: 1234 : if (*handle == NULL)
148 : 1234 : return;
149 : 1234 : nl80211_handle_destroy(*handle);
150 : 1234 : *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 : 1230 : static void nl80211_register_eloop_read(struct nl_handle **handle,
161 : : eloop_sock_handler handler,
162 : : void *eloop_data)
163 : : {
164 : 1230 : nl_socket_set_nonblocking(*handle);
165 : 1230 : eloop_register_read_sock(nl_socket_get_fd(*handle), handler,
166 : : eloop_data, *handle);
167 : 1230 : *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
168 : 1230 : }
169 : :
170 : :
171 : 1230 : static void nl80211_destroy_eloop_handle(struct nl_handle **handle)
172 : : {
173 : 1230 : *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
174 : 1230 : eloop_unregister_read_sock(nl_socket_get_fd(*handle));
175 : 1230 : nl_destroy_handles(handle);
176 : 1230 : }
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 : 15676 : static const char * nl80211_command_to_string(enum nl80211_commands cmd)
397 : : {
398 : : #define C2S(x) case x: return #x;
399 [ - - - - : 15676 : 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 : 782 : C2S(NL80211_CMD_NEW_STATION)
420 : 760 : 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 : 915 : C2S(NL80211_CMD_TRIGGER_SCAN)
434 : 910 : C2S(NL80211_CMD_NEW_SCAN_RESULTS)
435 : 0 : C2S(NL80211_CMD_SCAN_ABORTED)
436 : 1042 : C2S(NL80211_CMD_REG_CHANGE)
437 : 743 : C2S(NL80211_CMD_AUTHENTICATE)
438 : 714 : C2S(NL80211_CMD_ASSOCIATE)
439 : 706 : 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 : 357 : C2S(NL80211_CMD_CONNECT)
447 : 0 : C2S(NL80211_CMD_ROAM)
448 : 347 : 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 : 584 : C2S(NL80211_CMD_REMAIN_ON_CHANNEL)
456 : 584 : C2S(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL)
457 : 0 : C2S(NL80211_CMD_SET_TX_BITRATE_MASK)
458 : 0 : C2S(NL80211_CMD_REGISTER_FRAME)
459 : 4530 : C2S(NL80211_CMD_FRAME)
460 : 2696 : 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 : : default:
501 : 15676 : return "NL80211_CMD_UNKNOWN";
502 : : }
503 : : #undef C2S
504 : : }
505 : :
506 : :
507 : : /* Converts nl80211_chan_width to a common format */
508 : 0 : static enum chan_width convert2width(int width)
509 : : {
510 [ # # # # : 0 : switch (width) {
# # # ]
511 : : case NL80211_CHAN_WIDTH_20_NOHT:
512 : 0 : return CHAN_WIDTH_20_NOHT;
513 : : case NL80211_CHAN_WIDTH_20:
514 : 0 : return CHAN_WIDTH_20;
515 : : case NL80211_CHAN_WIDTH_40:
516 : 0 : return CHAN_WIDTH_40;
517 : : case NL80211_CHAN_WIDTH_80:
518 : 0 : return CHAN_WIDTH_80;
519 : : case NL80211_CHAN_WIDTH_80P80:
520 : 0 : return CHAN_WIDTH_80P80;
521 : : case NL80211_CHAN_WIDTH_160:
522 : 0 : return CHAN_WIDTH_160;
523 : : }
524 : 0 : return CHAN_WIDTH_UNKNOWN;
525 : : }
526 : :
527 : :
528 : 6030 : static int is_ap_interface(enum nl80211_iftype nlmode)
529 : : {
530 [ + + ][ + + ]: 6030 : return (nlmode == NL80211_IFTYPE_AP ||
531 : : nlmode == NL80211_IFTYPE_P2P_GO);
532 : : }
533 : :
534 : :
535 : 2402 : static int is_sta_interface(enum nl80211_iftype nlmode)
536 : : {
537 [ + + ][ - + ]: 2402 : return (nlmode == NL80211_IFTYPE_STATION ||
538 : : nlmode == NL80211_IFTYPE_P2P_CLIENT);
539 : : }
540 : :
541 : :
542 : 630 : static int is_p2p_net_interface(enum nl80211_iftype nlmode)
543 : : {
544 [ + + ][ + + ]: 630 : return (nlmode == NL80211_IFTYPE_P2P_CLIENT ||
545 : : nlmode == NL80211_IFTYPE_P2P_GO);
546 : : }
547 : :
548 : :
549 : 1429 : static void nl80211_mark_disconnected(struct wpa_driver_nl80211_data *drv)
550 : : {
551 [ + + ]: 1429 : if (drv->associated)
552 : 362 : os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
553 : 1429 : drv->associated = 0;
554 : 1429 : os_memset(drv->bssid, 0, ETH_ALEN);
555 : 1429 : }
556 : :
557 : :
558 : : struct nl80211_bss_info_arg {
559 : : struct wpa_driver_nl80211_data *drv;
560 : : struct wpa_scan_results *res;
561 : : unsigned int assoc_freq;
562 : : u8 assoc_bssid[ETH_ALEN];
563 : : };
564 : :
565 : : static int bss_info_handler(struct nl_msg *msg, void *arg);
566 : :
567 : :
568 : : /* nl80211 code */
569 : 23554 : static int ack_handler(struct nl_msg *msg, void *arg)
570 : : {
571 : 23554 : int *err = arg;
572 : 23554 : *err = 0;
573 : 23554 : return NL_STOP;
574 : : }
575 : :
576 : 3116 : static int finish_handler(struct nl_msg *msg, void *arg)
577 : : {
578 : 3116 : int *ret = arg;
579 : 3116 : *ret = 0;
580 : 3116 : return NL_SKIP;
581 : : }
582 : :
583 : 12332 : static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err,
584 : : void *arg)
585 : : {
586 : 12332 : int *ret = arg;
587 : 12332 : *ret = err->error;
588 : 12332 : return NL_SKIP;
589 : : }
590 : :
591 : :
592 : 153872 : static int no_seq_check(struct nl_msg *msg, void *arg)
593 : : {
594 : 153872 : return NL_OK;
595 : : }
596 : :
597 : :
598 : 39002 : static int send_and_recv(struct nl80211_global *global,
599 : : struct nl_handle *nl_handle, struct nl_msg *msg,
600 : : int (*valid_handler)(struct nl_msg *, void *),
601 : : void *valid_data)
602 : : {
603 : : struct nl_cb *cb;
604 : 39002 : int err = -ENOMEM;
605 : :
606 : 39002 : cb = nl_cb_clone(global->nl_cb);
607 [ - + ]: 39002 : if (!cb)
608 : 0 : goto out;
609 : :
610 : 39002 : err = nl_send_auto_complete(nl_handle, msg);
611 [ - + ]: 39002 : if (err < 0)
612 : 0 : goto out;
613 : :
614 : 39002 : err = 1;
615 : :
616 : 39002 : nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
617 : 39002 : nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
618 : 39002 : nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
619 : :
620 [ + + ]: 39002 : if (valid_handler)
621 : 9684 : nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
622 : : valid_handler, valid_data);
623 : :
624 [ + + ]: 83481 : while (err > 0) {
625 : 44479 : int res = nl_recvmsgs(nl_handle, cb);
626 [ - + ]: 44479 : if (res) {
627 : 0 : wpa_printf(MSG_INFO,
628 : : "nl80211: %s->nl_recvmsgs failed: %d",
629 : : __func__, res);
630 : : }
631 : : }
632 : : out:
633 : 39002 : nl_cb_put(cb);
634 : 39002 : nlmsg_free(msg);
635 : 39002 : return err;
636 : : }
637 : :
638 : :
639 : 12 : static int send_and_recv_msgs_global(struct nl80211_global *global,
640 : : struct nl_msg *msg,
641 : : int (*valid_handler)(struct nl_msg *, void *),
642 : : void *valid_data)
643 : : {
644 : 12 : return send_and_recv(global, global->nl, msg, valid_handler,
645 : : valid_data);
646 : : }
647 : :
648 : :
649 : 34123 : static int send_and_recv_msgs(struct wpa_driver_nl80211_data *drv,
650 : : struct nl_msg *msg,
651 : : int (*valid_handler)(struct nl_msg *, void *),
652 : : void *valid_data)
653 : : {
654 : 34123 : return send_and_recv(drv->global, drv->global->nl, msg,
655 : : valid_handler, valid_data);
656 : : }
657 : :
658 : :
659 : : struct family_data {
660 : : const char *group;
661 : : int id;
662 : : };
663 : :
664 : :
665 : 10292 : static int nl80211_set_iface_id(struct nl_msg *msg, struct i802_bss *bss)
666 : : {
667 [ - + ]: 10292 : if (bss->wdev_id_set)
668 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
669 : : else
670 [ + - ]: 10292 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
671 : 10292 : return 0;
672 : :
673 : : nla_put_failure:
674 : 10292 : return -1;
675 : : }
676 : :
677 : :
678 : 12 : static int family_handler(struct nl_msg *msg, void *arg)
679 : : {
680 : 12 : struct family_data *res = arg;
681 : : struct nlattr *tb[CTRL_ATTR_MAX + 1];
682 : 12 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
683 : : struct nlattr *mcgrp;
684 : : int i;
685 : :
686 : 12 : nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
687 : : genlmsg_attrlen(gnlh, 0), NULL);
688 [ - + ]: 12 : if (!tb[CTRL_ATTR_MCAST_GROUPS])
689 : 0 : return NL_SKIP;
690 : :
691 [ + - ]: 36 : nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
692 : : struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1];
693 : 36 : nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
694 : : nla_len(mcgrp), NULL);
695 [ + - ][ + - ]: 36 : if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
696 [ + + ]: 36 : !tb2[CTRL_ATTR_MCAST_GRP_ID] ||
697 : 36 : os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
698 : : res->group,
699 : : nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
700 : 24 : continue;
701 : 12 : res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
702 : 12 : break;
703 : : };
704 : :
705 : 12 : return NL_SKIP;
706 : : }
707 : :
708 : :
709 : 12 : static int nl_get_multicast_id(struct nl80211_global *global,
710 : : const char *family, const char *group)
711 : : {
712 : : struct nl_msg *msg;
713 : 12 : int ret = -1;
714 : 12 : struct family_data res = { group, -ENOENT };
715 : :
716 : 12 : msg = nlmsg_alloc();
717 [ - + ]: 12 : if (!msg)
718 : 0 : return -ENOMEM;
719 : 12 : genlmsg_put(msg, 0, 0, genl_ctrl_resolve(global->nl, "nlctrl"),
720 : : 0, 0, CTRL_CMD_GETFAMILY, 0);
721 [ + - ]: 12 : NLA_PUT_STRING(msg, CTRL_ATTR_FAMILY_NAME, family);
722 : :
723 : 12 : ret = send_and_recv_msgs_global(global, msg, family_handler, &res);
724 : 12 : msg = NULL;
725 [ + - ]: 12 : if (ret == 0)
726 : 12 : ret = res.id;
727 : :
728 : : nla_put_failure:
729 : 12 : nlmsg_free(msg);
730 : 12 : return ret;
731 : : }
732 : :
733 : :
734 : 38992 : static void * nl80211_cmd(struct wpa_driver_nl80211_data *drv,
735 : : struct nl_msg *msg, int flags, uint8_t cmd)
736 : : {
737 : 38992 : return genlmsg_put(msg, 0, 0, drv->global->nl80211_id,
738 : : 0, flags, cmd, 0);
739 : : }
740 : :
741 : :
742 : : struct wiphy_idx_data {
743 : : int wiphy_idx;
744 : : enum nl80211_iftype nlmode;
745 : : u8 *macaddr;
746 : : };
747 : :
748 : :
749 : 648 : static int netdev_info_handler(struct nl_msg *msg, void *arg)
750 : : {
751 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
752 : 648 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
753 : 648 : struct wiphy_idx_data *info = arg;
754 : :
755 : 648 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
756 : : genlmsg_attrlen(gnlh, 0), NULL);
757 : :
758 [ + - ]: 648 : if (tb[NL80211_ATTR_WIPHY])
759 : 648 : info->wiphy_idx = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
760 : :
761 [ + - ]: 648 : if (tb[NL80211_ATTR_IFTYPE])
762 : 648 : info->nlmode = nla_get_u32(tb[NL80211_ATTR_IFTYPE]);
763 : :
764 [ + - ][ - + ]: 648 : if (tb[NL80211_ATTR_MAC] && info->macaddr)
765 : 0 : os_memcpy(info->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
766 : : ETH_ALEN);
767 : :
768 : 648 : return NL_SKIP;
769 : : }
770 : :
771 : :
772 : 249 : static int nl80211_get_wiphy_index(struct i802_bss *bss)
773 : : {
774 : : struct nl_msg *msg;
775 : 249 : struct wiphy_idx_data data = {
776 : : .wiphy_idx = -1,
777 : : .macaddr = NULL,
778 : : };
779 : :
780 : 249 : msg = nlmsg_alloc();
781 [ - + ]: 249 : if (!msg)
782 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
783 : :
784 : 249 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
785 : :
786 [ - + ]: 249 : if (nl80211_set_iface_id(msg, bss) < 0)
787 : 0 : goto nla_put_failure;
788 : :
789 [ + - ]: 249 : if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
790 : 249 : return data.wiphy_idx;
791 : 0 : msg = NULL;
792 : : nla_put_failure:
793 : 0 : nlmsg_free(msg);
794 : 249 : return -1;
795 : : }
796 : :
797 : :
798 : 399 : static enum nl80211_iftype nl80211_get_ifmode(struct i802_bss *bss)
799 : : {
800 : : struct nl_msg *msg;
801 : 399 : struct wiphy_idx_data data = {
802 : : .nlmode = NL80211_IFTYPE_UNSPECIFIED,
803 : : .macaddr = NULL,
804 : : };
805 : :
806 : 399 : msg = nlmsg_alloc();
807 [ - + ]: 399 : if (!msg)
808 : 0 : return -1;
809 : :
810 : 399 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
811 : :
812 [ - + ]: 399 : if (nl80211_set_iface_id(msg, bss) < 0)
813 : 0 : goto nla_put_failure;
814 : :
815 [ + - ]: 399 : if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
816 : 399 : return data.nlmode;
817 : 0 : msg = NULL;
818 : : nla_put_failure:
819 : 0 : nlmsg_free(msg);
820 : 399 : return NL80211_IFTYPE_UNSPECIFIED;
821 : : }
822 : :
823 : :
824 : 0 : static int nl80211_get_macaddr(struct i802_bss *bss)
825 : : {
826 : : struct nl_msg *msg;
827 : 0 : struct wiphy_idx_data data = {
828 : 0 : .macaddr = bss->addr,
829 : : };
830 : :
831 : 0 : msg = nlmsg_alloc();
832 [ # # ]: 0 : if (!msg)
833 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
834 : :
835 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
836 [ # # ]: 0 : if (nl80211_set_iface_id(msg, bss) < 0)
837 : 0 : goto nla_put_failure;
838 : :
839 : 0 : return send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data);
840 : :
841 : : nla_put_failure:
842 : 0 : nlmsg_free(msg);
843 : 0 : return NL80211_IFTYPE_UNSPECIFIED;
844 : : }
845 : :
846 : :
847 : 232 : static int nl80211_register_beacons(struct wpa_driver_nl80211_data *drv,
848 : : struct nl80211_wiphy_data *w)
849 : : {
850 : : struct nl_msg *msg;
851 : 232 : int ret = -1;
852 : :
853 : 232 : msg = nlmsg_alloc();
854 [ - + ]: 232 : if (!msg)
855 : 0 : return -1;
856 : :
857 : 232 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_BEACONS);
858 : :
859 [ + - ]: 232 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, w->wiphy_idx);
860 : :
861 : 232 : ret = send_and_recv(drv->global, w->nl_beacons, msg, NULL, NULL);
862 : 232 : msg = NULL;
863 [ - + ]: 232 : if (ret) {
864 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Register beacons command "
865 : : "failed: ret=%d (%s)",
866 : : ret, strerror(-ret));
867 : 0 : goto nla_put_failure;
868 : : }
869 : 232 : ret = 0;
870 : : nla_put_failure:
871 : 232 : nlmsg_free(msg);
872 : 232 : return ret;
873 : : }
874 : :
875 : :
876 : 1330 : static void nl80211_recv_beacons(int sock, void *eloop_ctx, void *handle)
877 : : {
878 : 1330 : struct nl80211_wiphy_data *w = eloop_ctx;
879 : : int res;
880 : :
881 : 1330 : wpa_printf(MSG_EXCESSIVE, "nl80211: Beacon event message available");
882 : :
883 : 1330 : res = nl_recvmsgs(handle, w->nl_cb);
884 [ - + ]: 1330 : if (res) {
885 : 0 : wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
886 : : __func__, res);
887 : : }
888 : 1330 : }
889 : :
890 : :
891 : 1330 : static int process_beacon_event(struct nl_msg *msg, void *arg)
892 : : {
893 : 1330 : struct nl80211_wiphy_data *w = arg;
894 : : struct wpa_driver_nl80211_data *drv;
895 : 1330 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
896 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
897 : : union wpa_event_data event;
898 : :
899 : 1330 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
900 : : genlmsg_attrlen(gnlh, 0), NULL);
901 : :
902 [ - + ]: 1330 : if (gnlh->cmd != NL80211_CMD_FRAME) {
903 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unexpected beacon event? (%d)",
904 : 0 : gnlh->cmd);
905 : 0 : return NL_SKIP;
906 : : }
907 : :
908 [ - + ]: 1330 : if (!tb[NL80211_ATTR_FRAME])
909 : 0 : return NL_SKIP;
910 : :
911 [ + + ]: 2660 : dl_list_for_each(drv, &w->drvs, struct wpa_driver_nl80211_data,
912 : : wiphy_list) {
913 : 1330 : os_memset(&event, 0, sizeof(event));
914 : 1330 : event.rx_mgmt.frame = nla_data(tb[NL80211_ATTR_FRAME]);
915 : 1330 : event.rx_mgmt.frame_len = nla_len(tb[NL80211_ATTR_FRAME]);
916 : 1330 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
917 : : }
918 : :
919 : 1330 : return NL_SKIP;
920 : : }
921 : :
922 : :
923 : : static struct nl80211_wiphy_data *
924 : 249 : nl80211_get_wiphy_data_ap(struct i802_bss *bss)
925 : : {
926 : : static DEFINE_DL_LIST(nl80211_wiphys);
927 : : struct nl80211_wiphy_data *w;
928 : 249 : int wiphy_idx, found = 0;
929 : : struct i802_bss *tmp_bss;
930 : :
931 [ - + ]: 249 : if (bss->wiphy_data != NULL)
932 : 0 : return bss->wiphy_data;
933 : :
934 : 249 : wiphy_idx = nl80211_get_wiphy_index(bss);
935 : :
936 [ + + ]: 264 : dl_list_for_each(w, &nl80211_wiphys, struct nl80211_wiphy_data, list) {
937 [ + + ]: 32 : if (w->wiphy_idx == wiphy_idx)
938 : 17 : goto add;
939 : : }
940 : :
941 : : /* alloc new one */
942 : 232 : w = os_zalloc(sizeof(*w));
943 [ - + ]: 232 : if (w == NULL)
944 : 0 : return NULL;
945 : 232 : w->wiphy_idx = wiphy_idx;
946 : 232 : dl_list_init(&w->bsss);
947 : 232 : dl_list_init(&w->drvs);
948 : :
949 : 232 : w->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
950 [ - + ]: 232 : if (!w->nl_cb) {
951 : 0 : os_free(w);
952 : 0 : return NULL;
953 : : }
954 : 232 : nl_cb_set(w->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
955 : 232 : nl_cb_set(w->nl_cb, NL_CB_VALID, NL_CB_CUSTOM, process_beacon_event,
956 : : w);
957 : :
958 : 232 : w->nl_beacons = nl_create_handle(bss->drv->global->nl_cb,
959 : : "wiphy beacons");
960 [ - + ]: 232 : if (w->nl_beacons == NULL) {
961 : 0 : os_free(w);
962 : 0 : return NULL;
963 : : }
964 : :
965 [ - + ]: 232 : if (nl80211_register_beacons(bss->drv, w)) {
966 : 0 : nl_destroy_handles(&w->nl_beacons);
967 : 0 : os_free(w);
968 : 0 : return NULL;
969 : : }
970 : :
971 : 232 : nl80211_register_eloop_read(&w->nl_beacons, nl80211_recv_beacons, w);
972 : :
973 : 232 : dl_list_add(&nl80211_wiphys, &w->list);
974 : :
975 : : add:
976 : : /* drv entry for this bss already there? */
977 [ + + ]: 249 : dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
978 [ + - ]: 17 : if (tmp_bss->drv == bss->drv) {
979 : 17 : found = 1;
980 : 17 : break;
981 : : }
982 : : }
983 : : /* if not add it */
984 [ + + ]: 249 : if (!found)
985 : 232 : dl_list_add(&w->drvs, &bss->drv->wiphy_list);
986 : :
987 : 249 : dl_list_add(&w->bsss, &bss->wiphy_list);
988 : 249 : bss->wiphy_data = w;
989 : 249 : return w;
990 : : }
991 : :
992 : :
993 : 421 : static void nl80211_put_wiphy_data_ap(struct i802_bss *bss)
994 : : {
995 : 421 : struct nl80211_wiphy_data *w = bss->wiphy_data;
996 : : struct i802_bss *tmp_bss;
997 : 421 : int found = 0;
998 : :
999 [ + + ]: 421 : if (w == NULL)
1000 : 172 : return;
1001 : 249 : bss->wiphy_data = NULL;
1002 : 249 : dl_list_del(&bss->wiphy_list);
1003 : :
1004 : : /* still any for this drv present? */
1005 [ + + ]: 249 : dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
1006 [ + - ]: 17 : if (tmp_bss->drv == bss->drv) {
1007 : 17 : found = 1;
1008 : 17 : break;
1009 : : }
1010 : : }
1011 : : /* if not remove it */
1012 [ + + ]: 249 : if (!found)
1013 : 232 : dl_list_del(&bss->drv->wiphy_list);
1014 : :
1015 [ + + ]: 249 : if (!dl_list_empty(&w->bsss))
1016 : 17 : return;
1017 : :
1018 : 232 : nl80211_destroy_eloop_handle(&w->nl_beacons);
1019 : :
1020 : 232 : nl_cb_put(w->nl_cb);
1021 : 232 : dl_list_del(&w->list);
1022 : 421 : os_free(w);
1023 : : }
1024 : :
1025 : :
1026 : 625 : static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
1027 : : {
1028 : 625 : struct i802_bss *bss = priv;
1029 : 625 : struct wpa_driver_nl80211_data *drv = bss->drv;
1030 [ - + ]: 625 : if (!drv->associated)
1031 : 0 : return -1;
1032 : 625 : os_memcpy(bssid, drv->bssid, ETH_ALEN);
1033 : 625 : return 0;
1034 : : }
1035 : :
1036 : :
1037 : 242 : static int wpa_driver_nl80211_get_ssid(void *priv, u8 *ssid)
1038 : : {
1039 : 242 : struct i802_bss *bss = priv;
1040 : 242 : struct wpa_driver_nl80211_data *drv = bss->drv;
1041 [ - + ]: 242 : if (!drv->associated)
1042 : 0 : return -1;
1043 : 242 : os_memcpy(ssid, drv->ssid, drv->ssid_len);
1044 : 242 : return drv->ssid_len;
1045 : : }
1046 : :
1047 : :
1048 : 1678 : static void wpa_driver_nl80211_event_link(struct wpa_driver_nl80211_data *drv,
1049 : : char *buf, size_t len, int del)
1050 : : {
1051 : : union wpa_event_data event;
1052 : :
1053 : 1678 : os_memset(&event, 0, sizeof(event));
1054 [ - + ]: 1678 : if (len > sizeof(event.interface_status.ifname))
1055 : 0 : len = sizeof(event.interface_status.ifname) - 1;
1056 : 1678 : os_memcpy(event.interface_status.ifname, buf, len);
1057 : 1678 : event.interface_status.ievent = del ? EVENT_INTERFACE_REMOVED :
1058 : : EVENT_INTERFACE_ADDED;
1059 : :
1060 [ - + ][ - + ]: 1678 : wpa_printf(MSG_DEBUG, "RTM_%sLINK, IFLA_IFNAME: Interface '%s' %s",
1061 : : del ? "DEL" : "NEW",
1062 : : event.interface_status.ifname,
1063 : : del ? "removed" : "added");
1064 : :
1065 [ + + ]: 1678 : if (os_strcmp(drv->first_bss->ifname, event.interface_status.ifname) ==
1066 : : 0) {
1067 [ - + ]: 1644 : if (del) {
1068 [ # # ]: 0 : if (drv->if_removed) {
1069 : 0 : wpa_printf(MSG_DEBUG, "nl80211: if_removed "
1070 : : "already set - ignore event");
1071 : 0 : return;
1072 : : }
1073 : 0 : drv->if_removed = 1;
1074 : : } else {
1075 [ - + ]: 1644 : if (if_nametoindex(drv->first_bss->ifname) == 0) {
1076 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface %s "
1077 : : "does not exist - ignore "
1078 : : "RTM_NEWLINK",
1079 : 0 : drv->first_bss->ifname);
1080 : 0 : return;
1081 : : }
1082 [ + - ]: 1644 : if (!drv->if_removed) {
1083 : 1644 : wpa_printf(MSG_DEBUG, "nl80211: if_removed "
1084 : : "already cleared - ignore event");
1085 : 1644 : return;
1086 : : }
1087 : 0 : drv->if_removed = 0;
1088 : : }
1089 : : }
1090 : :
1091 : 1678 : wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_STATUS, &event);
1092 : : }
1093 : :
1094 : :
1095 : 0 : static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
1096 : : u8 *buf, size_t len)
1097 : : {
1098 : : int attrlen, rta_len;
1099 : : struct rtattr *attr;
1100 : :
1101 : 0 : attrlen = len;
1102 : 0 : attr = (struct rtattr *) buf;
1103 : :
1104 : 0 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1105 [ # # ][ # # ]: 0 : while (RTA_OK(attr, attrlen)) {
[ # # ]
1106 [ # # ]: 0 : if (attr->rta_type == IFLA_IFNAME) {
1107 [ # # ]: 0 : if (os_strcmp(((char *) attr) + rta_len,
1108 : : drv->first_bss->ifname) == 0)
1109 : 0 : return 1;
1110 : : else
1111 : 0 : break;
1112 : : }
1113 : 0 : attr = RTA_NEXT(attr, attrlen);
1114 : : }
1115 : :
1116 : 0 : return 0;
1117 : : }
1118 : :
1119 : :
1120 : 7532 : static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
1121 : : int ifindex, u8 *buf, size_t len)
1122 : : {
1123 [ + + ]: 7532 : if (drv->ifindex == ifindex)
1124 : 1656 : return 1;
1125 : :
1126 [ - + ][ # # ]: 5876 : if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, buf, len)) {
1127 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
1128 : : "interface");
1129 : 0 : wpa_driver_nl80211_finish_drv_init(drv, NULL, 0);
1130 : 0 : return 1;
1131 : : }
1132 : :
1133 : 7532 : return 0;
1134 : : }
1135 : :
1136 : :
1137 : : static struct wpa_driver_nl80211_data *
1138 : 8114 : nl80211_find_drv(struct nl80211_global *global, int idx, u8 *buf, size_t len)
1139 : : {
1140 : : struct wpa_driver_nl80211_data *drv;
1141 [ + + ]: 13909 : dl_list_for_each(drv, &global->interfaces,
1142 : : struct wpa_driver_nl80211_data, list) {
1143 [ + + + + ]: 13408 : if (wpa_driver_nl80211_own_ifindex(drv, idx, buf, len) ||
1144 : 5876 : have_ifidx(drv, idx))
1145 : 1737 : return drv;
1146 : : }
1147 : 8114 : return NULL;
1148 : : }
1149 : :
1150 : :
1151 : 7970 : static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
1152 : : struct ifinfomsg *ifi,
1153 : : u8 *buf, size_t len)
1154 : : {
1155 : 7970 : struct nl80211_global *global = ctx;
1156 : : struct wpa_driver_nl80211_data *drv;
1157 : : int attrlen, rta_len;
1158 : : struct rtattr *attr;
1159 : 7970 : u32 brid = 0;
1160 : : char namebuf[IFNAMSIZ];
1161 : :
1162 : 7970 : drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
1163 [ + + ]: 7970 : if (!drv) {
1164 : 6233 : wpa_printf(MSG_DEBUG, "nl80211: Ignore event for foreign "
1165 : : "ifindex %d", ifi->ifi_index);
1166 : 6233 : return;
1167 : : }
1168 : :
1169 [ - + ][ + + ]: 1737 : wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
[ + + ][ + + ]
1170 : : "(%s%s%s%s)",
1171 : : drv->operstate, ifi->ifi_flags,
1172 : 1737 : (ifi->ifi_flags & IFF_UP) ? "[UP]" : "",
1173 : 1737 : (ifi->ifi_flags & IFF_RUNNING) ? "[RUNNING]" : "",
1174 : 1737 : (ifi->ifi_flags & IFF_LOWER_UP) ? "[LOWER_UP]" : "",
1175 : 1737 : (ifi->ifi_flags & IFF_DORMANT) ? "[DORMANT]" : "");
1176 : :
1177 [ + + ][ + - ]: 1737 : if (!drv->if_disabled && !(ifi->ifi_flags & IFF_UP)) {
1178 [ + - + - ]: 118 : if (if_indextoname(ifi->ifi_index, namebuf) &&
1179 : 59 : linux_iface_up(drv->global->ioctl_sock,
1180 : 59 : drv->first_bss->ifname) > 0) {
1181 : 59 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
1182 : : "event since interface %s is up", namebuf);
1183 : 59 : return;
1184 : : }
1185 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface down");
1186 [ # # ]: 0 : if (drv->ignore_if_down_event) {
1187 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
1188 : : "event generated by mode change");
1189 : 0 : drv->ignore_if_down_event = 0;
1190 : : } else {
1191 : 0 : drv->if_disabled = 1;
1192 : 0 : wpa_supplicant_event(drv->ctx,
1193 : : EVENT_INTERFACE_DISABLED, NULL);
1194 : : }
1195 : : }
1196 : :
1197 [ - + ][ # # ]: 1678 : if (drv->if_disabled && (ifi->ifi_flags & IFF_UP)) {
1198 [ # # # # ]: 0 : if (if_indextoname(ifi->ifi_index, namebuf) &&
1199 : 0 : linux_iface_up(drv->global->ioctl_sock,
1200 : 0 : drv->first_bss->ifname) == 0) {
1201 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
1202 : : "event since interface %s is down",
1203 : : namebuf);
1204 [ # # ]: 0 : } else if (if_nametoindex(drv->first_bss->ifname) == 0) {
1205 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
1206 : : "event since interface %s does not exist",
1207 : 0 : drv->first_bss->ifname);
1208 [ # # ]: 0 : } else if (drv->if_removed) {
1209 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
1210 : : "event since interface %s is marked "
1211 : 0 : "removed", drv->first_bss->ifname);
1212 : : } else {
1213 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface up");
1214 : 0 : drv->if_disabled = 0;
1215 : 0 : wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_ENABLED,
1216 : : NULL);
1217 : : }
1218 : : }
1219 : :
1220 : : /*
1221 : : * Some drivers send the association event before the operup event--in
1222 : : * this case, lifting operstate in wpa_driver_nl80211_set_operstate()
1223 : : * fails. This will hit us when wpa_supplicant does not need to do
1224 : : * IEEE 802.1X authentication
1225 : : */
1226 [ + + ][ + + ]: 1678 : if (drv->operstate == 1 &&
1227 [ + + ]: 633 : (ifi->ifi_flags & (IFF_LOWER_UP | IFF_DORMANT)) == IFF_LOWER_UP &&
1228 : 633 : !(ifi->ifi_flags & IFF_RUNNING))
1229 : 69 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
1230 : : -1, IF_OPER_UP);
1231 : :
1232 : 1678 : attrlen = len;
1233 : 1678 : attr = (struct rtattr *) buf;
1234 : 1678 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1235 [ + + ][ + - ]: 30204 : while (RTA_OK(attr, attrlen)) {
[ + - ]
1236 [ + + ]: 28526 : if (attr->rta_type == IFLA_IFNAME) {
1237 : 1678 : wpa_driver_nl80211_event_link(
1238 : : drv,
1239 : 1678 : ((char *) attr) + rta_len,
1240 : 1678 : attr->rta_len - rta_len, 0);
1241 [ - + ]: 26848 : } else if (attr->rta_type == IFLA_MASTER)
1242 : 0 : brid = nla_get_u32((struct nlattr *) attr);
1243 : 28526 : attr = RTA_NEXT(attr, attrlen);
1244 : : }
1245 : :
1246 [ - + ][ # # ]: 1678 : if (ifi->ifi_family == AF_BRIDGE && brid) {
1247 : : /* device has been added to bridge */
1248 : 0 : if_indextoname(brid, namebuf);
1249 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Add ifindex %u for bridge %s",
1250 : : brid, namebuf);
1251 : 7970 : add_ifidx(drv, brid);
1252 : : }
1253 : : }
1254 : :
1255 : :
1256 : 144 : static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
1257 : : struct ifinfomsg *ifi,
1258 : : u8 *buf, size_t len)
1259 : : {
1260 : 144 : struct nl80211_global *global = ctx;
1261 : : struct wpa_driver_nl80211_data *drv;
1262 : : int attrlen, rta_len;
1263 : : struct rtattr *attr;
1264 : 144 : u32 brid = 0;
1265 : :
1266 : 144 : drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
1267 [ + - ]: 144 : if (!drv) {
1268 : 144 : wpa_printf(MSG_DEBUG, "nl80211: Ignore dellink event for "
1269 : : "foreign ifindex %d", ifi->ifi_index);
1270 : 144 : return;
1271 : : }
1272 : :
1273 : 0 : attrlen = len;
1274 : 0 : attr = (struct rtattr *) buf;
1275 : :
1276 : 0 : rta_len = RTA_ALIGN(sizeof(struct rtattr));
1277 [ # # ][ # # ]: 0 : while (RTA_OK(attr, attrlen)) {
[ # # ]
1278 [ # # ]: 0 : if (attr->rta_type == IFLA_IFNAME) {
1279 : 0 : wpa_driver_nl80211_event_link(
1280 : : drv,
1281 : 0 : ((char *) attr) + rta_len,
1282 : 0 : attr->rta_len - rta_len, 1);
1283 [ # # ]: 0 : } else if (attr->rta_type == IFLA_MASTER)
1284 : 0 : brid = nla_get_u32((struct nlattr *) attr);
1285 : 0 : attr = RTA_NEXT(attr, attrlen);
1286 : : }
1287 : :
1288 [ # # ][ # # ]: 0 : if (ifi->ifi_family == AF_BRIDGE && brid) {
1289 : : /* device has been removed from bridge */
1290 : : char namebuf[IFNAMSIZ];
1291 : 0 : if_indextoname(brid, namebuf);
1292 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Remove ifindex %u for bridge "
1293 : : "%s", brid, namebuf);
1294 : 0 : del_ifidx(drv, brid);
1295 : : }
1296 : : }
1297 : :
1298 : :
1299 : 370 : static void mlme_event_auth(struct wpa_driver_nl80211_data *drv,
1300 : : const u8 *frame, size_t len)
1301 : : {
1302 : : const struct ieee80211_mgmt *mgmt;
1303 : : union wpa_event_data event;
1304 : :
1305 : 370 : wpa_printf(MSG_DEBUG, "nl80211: Authenticate event");
1306 : 370 : mgmt = (const struct ieee80211_mgmt *) frame;
1307 [ - + ]: 370 : if (len < 24 + sizeof(mgmt->u.auth)) {
1308 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
1309 : : "frame");
1310 : 370 : return;
1311 : : }
1312 : :
1313 : 370 : os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN);
1314 : 370 : os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
1315 : 370 : os_memset(&event, 0, sizeof(event));
1316 : 370 : os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN);
1317 : 370 : event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg);
1318 : 370 : event.auth.auth_transaction =
1319 : 370 : le_to_host16(mgmt->u.auth.auth_transaction);
1320 : 370 : event.auth.status_code = le_to_host16(mgmt->u.auth.status_code);
1321 [ + + ]: 370 : if (len > 24 + sizeof(mgmt->u.auth)) {
1322 : 38 : event.auth.ies = mgmt->u.auth.variable;
1323 : 38 : event.auth.ies_len = len - 24 - sizeof(mgmt->u.auth);
1324 : : }
1325 : :
1326 : 370 : wpa_supplicant_event(drv->ctx, EVENT_AUTH, &event);
1327 : : }
1328 : :
1329 : :
1330 : 0 : static unsigned int nl80211_get_assoc_freq(struct wpa_driver_nl80211_data *drv)
1331 : : {
1332 : : struct nl_msg *msg;
1333 : : int ret;
1334 : : struct nl80211_bss_info_arg arg;
1335 : :
1336 : 0 : os_memset(&arg, 0, sizeof(arg));
1337 : 0 : msg = nlmsg_alloc();
1338 [ # # ]: 0 : if (!msg)
1339 : 0 : goto nla_put_failure;
1340 : :
1341 : 0 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
1342 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
1343 : :
1344 : 0 : arg.drv = drv;
1345 : 0 : ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
1346 : 0 : msg = NULL;
1347 [ # # ]: 0 : if (ret == 0) {
1348 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Operating frequency for the "
1349 : : "associated BSS from scan results: %u MHz",
1350 : : arg.assoc_freq);
1351 [ # # ]: 0 : if (arg.assoc_freq)
1352 : 0 : drv->assoc_freq = arg.assoc_freq;
1353 : 0 : return drv->assoc_freq;
1354 : : }
1355 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
1356 : : "(%s)", ret, strerror(-ret));
1357 : : nla_put_failure:
1358 : 0 : nlmsg_free(msg);
1359 : 0 : return drv->assoc_freq;
1360 : : }
1361 : :
1362 : :
1363 : 357 : static void mlme_event_assoc(struct wpa_driver_nl80211_data *drv,
1364 : : const u8 *frame, size_t len)
1365 : : {
1366 : : const struct ieee80211_mgmt *mgmt;
1367 : : union wpa_event_data event;
1368 : : u16 status;
1369 : :
1370 : 357 : wpa_printf(MSG_DEBUG, "nl80211: Associate event");
1371 : 357 : mgmt = (const struct ieee80211_mgmt *) frame;
1372 [ - + ]: 357 : if (len < 24 + sizeof(mgmt->u.assoc_resp)) {
1373 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
1374 : : "frame");
1375 : 0 : return;
1376 : : }
1377 : :
1378 : 357 : status = le_to_host16(mgmt->u.assoc_resp.status_code);
1379 [ + + ]: 357 : if (status != WLAN_STATUS_SUCCESS) {
1380 : 1 : os_memset(&event, 0, sizeof(event));
1381 : 1 : event.assoc_reject.bssid = mgmt->bssid;
1382 [ + - ]: 1 : if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
1383 : 1 : event.assoc_reject.resp_ies =
1384 : 1 : (u8 *) mgmt->u.assoc_resp.variable;
1385 : 1 : event.assoc_reject.resp_ies_len =
1386 : 1 : len - 24 - sizeof(mgmt->u.assoc_resp);
1387 : : }
1388 : 1 : event.assoc_reject.status_code = status;
1389 : :
1390 : 1 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
1391 : 1 : return;
1392 : : }
1393 : :
1394 : 356 : drv->associated = 1;
1395 : 356 : os_memcpy(drv->bssid, mgmt->sa, ETH_ALEN);
1396 : 356 : os_memcpy(drv->prev_bssid, mgmt->sa, ETH_ALEN);
1397 : :
1398 : 356 : os_memset(&event, 0, sizeof(event));
1399 [ + - ]: 356 : if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
1400 : 356 : event.assoc_info.resp_ies = (u8 *) mgmt->u.assoc_resp.variable;
1401 : 356 : event.assoc_info.resp_ies_len =
1402 : 356 : len - 24 - sizeof(mgmt->u.assoc_resp);
1403 : : }
1404 : :
1405 : 356 : event.assoc_info.freq = drv->assoc_freq;
1406 : :
1407 : 357 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
1408 : : }
1409 : :
1410 : :
1411 : 357 : static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
1412 : : enum nl80211_commands cmd, struct nlattr *status,
1413 : : struct nlattr *addr, struct nlattr *req_ie,
1414 : : struct nlattr *resp_ie)
1415 : : {
1416 : : union wpa_event_data event;
1417 : :
1418 [ + - ]: 357 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
1419 : : /*
1420 : : * Avoid reporting two association events that would confuse
1421 : : * the core code.
1422 : : */
1423 : 357 : wpa_printf(MSG_DEBUG, "nl80211: Ignore connect event (cmd=%d) "
1424 : : "when using userspace SME", cmd);
1425 : 357 : return;
1426 : : }
1427 : :
1428 [ # # ]: 0 : if (cmd == NL80211_CMD_CONNECT)
1429 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connect event");
1430 [ # # ]: 0 : else if (cmd == NL80211_CMD_ROAM)
1431 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Roam event");
1432 : :
1433 : 0 : os_memset(&event, 0, sizeof(event));
1434 [ # # # # ]: 0 : if (cmd == NL80211_CMD_CONNECT &&
1435 : 0 : nla_get_u16(status) != WLAN_STATUS_SUCCESS) {
1436 [ # # ]: 0 : if (addr)
1437 : 0 : event.assoc_reject.bssid = nla_data(addr);
1438 [ # # ]: 0 : if (resp_ie) {
1439 : 0 : event.assoc_reject.resp_ies = nla_data(resp_ie);
1440 : 0 : event.assoc_reject.resp_ies_len = nla_len(resp_ie);
1441 : : }
1442 : 0 : event.assoc_reject.status_code = nla_get_u16(status);
1443 : 0 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
1444 : 0 : return;
1445 : : }
1446 : :
1447 : 0 : drv->associated = 1;
1448 [ # # ]: 0 : if (addr) {
1449 : 0 : os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN);
1450 : 0 : os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
1451 : : }
1452 : :
1453 [ # # ]: 0 : if (req_ie) {
1454 : 0 : event.assoc_info.req_ies = nla_data(req_ie);
1455 : 0 : event.assoc_info.req_ies_len = nla_len(req_ie);
1456 : : }
1457 [ # # ]: 0 : if (resp_ie) {
1458 : 0 : event.assoc_info.resp_ies = nla_data(resp_ie);
1459 : 0 : event.assoc_info.resp_ies_len = nla_len(resp_ie);
1460 : : }
1461 : :
1462 : 0 : event.assoc_info.freq = nl80211_get_assoc_freq(drv);
1463 : :
1464 : 357 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
1465 : : }
1466 : :
1467 : :
1468 : 347 : static void mlme_event_disconnect(struct wpa_driver_nl80211_data *drv,
1469 : : struct nlattr *reason, struct nlattr *addr,
1470 : : struct nlattr *by_ap)
1471 : : {
1472 : : union wpa_event_data data;
1473 : 347 : unsigned int locally_generated = by_ap == NULL;
1474 : :
1475 [ + - ]: 347 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
1476 : : /*
1477 : : * Avoid reporting two disassociation events that could
1478 : : * confuse the core code.
1479 : : */
1480 : 347 : wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
1481 : : "event when using userspace SME");
1482 : 347 : return;
1483 : : }
1484 : :
1485 [ # # ]: 0 : if (drv->ignore_next_local_disconnect) {
1486 : 0 : drv->ignore_next_local_disconnect = 0;
1487 [ # # ]: 0 : if (locally_generated) {
1488 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
1489 : : "event triggered during reassociation");
1490 : 0 : return;
1491 : : }
1492 : 0 : wpa_printf(MSG_WARNING, "nl80211: Was expecting local "
1493 : : "disconnect but got another disconnect "
1494 : : "event first");
1495 : : }
1496 : :
1497 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disconnect event");
1498 : 0 : nl80211_mark_disconnected(drv);
1499 : 0 : os_memset(&data, 0, sizeof(data));
1500 [ # # ]: 0 : if (reason)
1501 : 0 : data.deauth_info.reason_code = nla_get_u16(reason);
1502 : 0 : data.deauth_info.locally_generated = by_ap == NULL;
1503 : 347 : wpa_supplicant_event(drv->ctx, EVENT_DEAUTH, &data);
1504 : : }
1505 : :
1506 : :
1507 : 0 : static void mlme_event_ch_switch(struct wpa_driver_nl80211_data *drv,
1508 : : struct nlattr *ifindex, struct nlattr *freq,
1509 : : struct nlattr *type, struct nlattr *bw,
1510 : : struct nlattr *cf1, struct nlattr *cf2)
1511 : : {
1512 : : struct i802_bss *bss;
1513 : : union wpa_event_data data;
1514 : 0 : int ht_enabled = 1;
1515 : 0 : int chan_offset = 0;
1516 : : int ifidx;
1517 : :
1518 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Channel switch event");
1519 : :
1520 [ # # ]: 0 : if (!freq)
1521 : 0 : return;
1522 : :
1523 : 0 : ifidx = nla_get_u32(ifindex);
1524 [ # # ]: 0 : for (bss = drv->first_bss; bss; bss = bss->next)
1525 [ # # ]: 0 : if (bss->ifindex == ifidx)
1526 : 0 : break;
1527 : :
1528 [ # # ]: 0 : if (bss == NULL) {
1529 : 0 : wpa_printf(MSG_WARNING, "nl80211: Unknown ifindex (%d) for channel switch, ignoring",
1530 : : ifidx);
1531 : 0 : return;
1532 : : }
1533 : :
1534 [ # # ]: 0 : if (type) {
1535 [ # # # # : 0 : switch (nla_get_u32(type)) {
# ]
1536 : : case NL80211_CHAN_NO_HT:
1537 : 0 : ht_enabled = 0;
1538 : 0 : break;
1539 : : case NL80211_CHAN_HT20:
1540 : 0 : break;
1541 : : case NL80211_CHAN_HT40PLUS:
1542 : 0 : chan_offset = 1;
1543 : 0 : break;
1544 : : case NL80211_CHAN_HT40MINUS:
1545 : 0 : chan_offset = -1;
1546 : 0 : break;
1547 : : }
1548 : : }
1549 : :
1550 : 0 : os_memset(&data, 0, sizeof(data));
1551 : 0 : data.ch_switch.freq = nla_get_u32(freq);
1552 : 0 : data.ch_switch.ht_enabled = ht_enabled;
1553 : 0 : data.ch_switch.ch_offset = chan_offset;
1554 [ # # ]: 0 : if (bw)
1555 : 0 : data.ch_switch.ch_width = convert2width(nla_get_u32(bw));
1556 [ # # ]: 0 : if (cf1)
1557 : 0 : data.ch_switch.cf1 = nla_get_u32(cf1);
1558 [ # # ]: 0 : if (cf2)
1559 : 0 : data.ch_switch.cf2 = nla_get_u32(cf2);
1560 : :
1561 : 0 : bss->freq = data.ch_switch.freq;
1562 : :
1563 : 0 : wpa_supplicant_event(drv->ctx, EVENT_CH_SWITCH, &data);
1564 : : }
1565 : :
1566 : :
1567 : 3 : static void mlme_timeout_event(struct wpa_driver_nl80211_data *drv,
1568 : : enum nl80211_commands cmd, struct nlattr *addr)
1569 : : {
1570 : : union wpa_event_data event;
1571 : : enum wpa_event_type ev;
1572 : :
1573 [ - + ]: 3 : if (nla_len(addr) != ETH_ALEN)
1574 : 0 : return;
1575 : :
1576 : 3 : wpa_printf(MSG_DEBUG, "nl80211: MLME event %d; timeout with " MACSTR,
1577 : 3 : cmd, MAC2STR((u8 *) nla_data(addr)));
1578 : :
1579 [ + - ]: 3 : if (cmd == NL80211_CMD_AUTHENTICATE)
1580 : 3 : ev = EVENT_AUTH_TIMED_OUT;
1581 [ # # ]: 0 : else if (cmd == NL80211_CMD_ASSOCIATE)
1582 : 0 : ev = EVENT_ASSOC_TIMED_OUT;
1583 : : else
1584 : 0 : return;
1585 : :
1586 : 3 : os_memset(&event, 0, sizeof(event));
1587 : 3 : os_memcpy(event.timeout_event.addr, nla_data(addr), ETH_ALEN);
1588 : 3 : wpa_supplicant_event(drv->ctx, ev, &event);
1589 : : }
1590 : :
1591 : :
1592 : 2265 : static void mlme_event_mgmt(struct wpa_driver_nl80211_data *drv,
1593 : : struct nlattr *freq, struct nlattr *sig,
1594 : : const u8 *frame, size_t len)
1595 : : {
1596 : : const struct ieee80211_mgmt *mgmt;
1597 : : union wpa_event_data event;
1598 : : u16 fc, stype;
1599 : 2265 : int ssi_signal = 0;
1600 : 2265 : int rx_freq = 0;
1601 : :
1602 : 2265 : wpa_printf(MSG_MSGDUMP, "nl80211: Frame event");
1603 : 2265 : mgmt = (const struct ieee80211_mgmt *) frame;
1604 [ - + ]: 2265 : if (len < 24) {
1605 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Too short action frame");
1606 : 2265 : return;
1607 : : }
1608 : :
1609 : 2265 : fc = le_to_host16(mgmt->frame_control);
1610 : 2265 : stype = WLAN_FC_GET_STYPE(fc);
1611 : :
1612 [ + - ]: 2265 : if (sig)
1613 : 2265 : ssi_signal = (s32) nla_get_u32(sig);
1614 : :
1615 : 2265 : os_memset(&event, 0, sizeof(event));
1616 [ + - ]: 2265 : if (freq) {
1617 : 2265 : event.rx_action.freq = nla_get_u32(freq);
1618 : 2265 : rx_freq = drv->last_mgmt_freq = event.rx_action.freq;
1619 : : }
1620 : 2265 : wpa_printf(MSG_DEBUG,
1621 : : "nl80211: RX frame freq=%d ssi_signal=%d stype=%u len=%u",
1622 : : rx_freq, ssi_signal, stype, (unsigned int) len);
1623 [ + + ]: 2265 : if (stype == WLAN_FC_STYPE_ACTION) {
1624 : 386 : event.rx_action.da = mgmt->da;
1625 : 386 : event.rx_action.sa = mgmt->sa;
1626 : 386 : event.rx_action.bssid = mgmt->bssid;
1627 : 386 : event.rx_action.category = mgmt->u.action.category;
1628 : 386 : event.rx_action.data = &mgmt->u.action.category + 1;
1629 : 386 : event.rx_action.len = frame + len - event.rx_action.data;
1630 : 386 : wpa_supplicant_event(drv->ctx, EVENT_RX_ACTION, &event);
1631 : : } else {
1632 : 1879 : event.rx_mgmt.frame = frame;
1633 : 1879 : event.rx_mgmt.frame_len = len;
1634 : 1879 : event.rx_mgmt.ssi_signal = ssi_signal;
1635 : 1879 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
1636 : : }
1637 : : }
1638 : :
1639 : :
1640 : 1348 : static void mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv,
1641 : : struct nlattr *cookie, const u8 *frame,
1642 : : size_t len, struct nlattr *ack)
1643 : : {
1644 : : union wpa_event_data event;
1645 : : const struct ieee80211_hdr *hdr;
1646 : : u16 fc;
1647 : :
1648 : 1348 : wpa_printf(MSG_DEBUG, "nl80211: Frame TX status event");
1649 [ + + ]: 1348 : if (!is_ap_interface(drv->nlmode)) {
1650 : : u64 cookie_val;
1651 : :
1652 [ - + ]: 340 : if (!cookie)
1653 : 0 : return;
1654 : :
1655 : 340 : cookie_val = nla_get_u64(cookie);
1656 [ + + ]: 340 : wpa_printf(MSG_DEBUG, "nl80211: Action TX status:"
1657 : : " cookie=0%llx%s (ack=%d)",
1658 : : (long long unsigned int) cookie_val,
1659 : 340 : cookie_val == drv->send_action_cookie ?
1660 : : " (match)" : " (unknown)", ack != NULL);
1661 [ + + ]: 340 : if (cookie_val != drv->send_action_cookie)
1662 : 57 : return;
1663 : : }
1664 : :
1665 : 1291 : hdr = (const struct ieee80211_hdr *) frame;
1666 : 1291 : fc = le_to_host16(hdr->frame_control);
1667 : :
1668 : 1291 : os_memset(&event, 0, sizeof(event));
1669 : 1291 : event.tx_status.type = WLAN_FC_GET_TYPE(fc);
1670 : 1291 : event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
1671 : 1291 : event.tx_status.dst = hdr->addr1;
1672 : 1291 : event.tx_status.data = frame;
1673 : 1291 : event.tx_status.data_len = len;
1674 : 1291 : event.tx_status.ack = ack != NULL;
1675 : 1348 : wpa_supplicant_event(drv->ctx, EVENT_TX_STATUS, &event);
1676 : : }
1677 : :
1678 : :
1679 : 353 : static void mlme_event_deauth_disassoc(struct wpa_driver_nl80211_data *drv,
1680 : : enum wpa_event_type type,
1681 : : const u8 *frame, size_t len)
1682 : : {
1683 : : const struct ieee80211_mgmt *mgmt;
1684 : : union wpa_event_data event;
1685 : 353 : const u8 *bssid = NULL;
1686 : 353 : u16 reason_code = 0;
1687 : :
1688 [ + - ]: 353 : if (type == EVENT_DEAUTH)
1689 : 353 : wpa_printf(MSG_DEBUG, "nl80211: Deauthenticate event");
1690 : : else
1691 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disassociate event");
1692 : :
1693 : 353 : mgmt = (const struct ieee80211_mgmt *) frame;
1694 [ + - ]: 353 : if (len >= 24) {
1695 : 353 : bssid = mgmt->bssid;
1696 : :
1697 [ + - ][ + + ]: 353 : if ((drv->capa.flags & WPA_DRIVER_FLAGS_SME) &&
1698 [ + + ]: 305 : !drv->associated &&
1699 [ + + ]: 87 : os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0 &&
1700 [ + - ]: 18 : os_memcmp(bssid, drv->auth_attempt_bssid, ETH_ALEN) != 0 &&
1701 : 18 : os_memcmp(bssid, drv->prev_bssid, ETH_ALEN) == 0) {
1702 : : /*
1703 : : * Avoid issues with some roaming cases where
1704 : : * disconnection event for the old AP may show up after
1705 : : * we have started connection with the new AP.
1706 : : */
1707 : 18 : wpa_printf(MSG_DEBUG, "nl80211: Ignore deauth/disassoc event from old AP " MACSTR " when already authenticating with " MACSTR,
1708 : 108 : MAC2STR(bssid),
1709 : 108 : MAC2STR(drv->auth_attempt_bssid));
1710 : 18 : return;
1711 : : }
1712 : :
1713 [ + + ][ - + ]: 335 : if (drv->associated != 0 &&
1714 [ # # ]: 0 : os_memcmp(bssid, drv->bssid, ETH_ALEN) != 0 &&
1715 : 0 : os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0) {
1716 : : /*
1717 : : * We have presumably received this deauth as a
1718 : : * response to a clear_state_mismatch() outgoing
1719 : : * deauth. Don't let it take us offline!
1720 : : */
1721 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Deauth received "
1722 : : "from Unknown BSSID " MACSTR " -- ignoring",
1723 : 0 : MAC2STR(bssid));
1724 : 0 : return;
1725 : : }
1726 : : }
1727 : :
1728 : 335 : nl80211_mark_disconnected(drv);
1729 : 335 : os_memset(&event, 0, sizeof(event));
1730 : :
1731 : : /* Note: Same offset for Reason Code in both frame subtypes */
1732 [ + - ]: 335 : if (len >= 24 + sizeof(mgmt->u.deauth))
1733 : 335 : reason_code = le_to_host16(mgmt->u.deauth.reason_code);
1734 : :
1735 [ - + ]: 335 : if (type == EVENT_DISASSOC) {
1736 : 0 : event.disassoc_info.locally_generated =
1737 : 0 : !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
1738 : 0 : event.disassoc_info.addr = bssid;
1739 : 0 : event.disassoc_info.reason_code = reason_code;
1740 [ # # ]: 0 : if (frame + len > mgmt->u.disassoc.variable) {
1741 : 0 : event.disassoc_info.ie = mgmt->u.disassoc.variable;
1742 : 0 : event.disassoc_info.ie_len = frame + len -
1743 : : mgmt->u.disassoc.variable;
1744 : : }
1745 : : } else {
1746 : 335 : event.deauth_info.locally_generated =
1747 : 335 : !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
1748 : 335 : event.deauth_info.addr = bssid;
1749 : 335 : event.deauth_info.reason_code = reason_code;
1750 [ - + ]: 335 : if (frame + len > mgmt->u.deauth.variable) {
1751 : 0 : event.deauth_info.ie = mgmt->u.deauth.variable;
1752 : 0 : event.deauth_info.ie_len = frame + len -
1753 : : mgmt->u.deauth.variable;
1754 : : }
1755 : : }
1756 : :
1757 : 353 : wpa_supplicant_event(drv->ctx, type, &event);
1758 : : }
1759 : :
1760 : :
1761 : 0 : static void mlme_event_unprot_disconnect(struct wpa_driver_nl80211_data *drv,
1762 : : enum wpa_event_type type,
1763 : : const u8 *frame, size_t len)
1764 : : {
1765 : : const struct ieee80211_mgmt *mgmt;
1766 : : union wpa_event_data event;
1767 : 0 : u16 reason_code = 0;
1768 : :
1769 [ # # ]: 0 : if (type == EVENT_UNPROT_DEAUTH)
1770 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unprot Deauthenticate event");
1771 : : else
1772 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unprot Disassociate event");
1773 : :
1774 [ # # ]: 0 : if (len < 24)
1775 : 0 : return;
1776 : :
1777 : 0 : mgmt = (const struct ieee80211_mgmt *) frame;
1778 : :
1779 : 0 : os_memset(&event, 0, sizeof(event));
1780 : : /* Note: Same offset for Reason Code in both frame subtypes */
1781 [ # # ]: 0 : if (len >= 24 + sizeof(mgmt->u.deauth))
1782 : 0 : reason_code = le_to_host16(mgmt->u.deauth.reason_code);
1783 : :
1784 [ # # ]: 0 : if (type == EVENT_UNPROT_DISASSOC) {
1785 : 0 : event.unprot_disassoc.sa = mgmt->sa;
1786 : 0 : event.unprot_disassoc.da = mgmt->da;
1787 : 0 : event.unprot_disassoc.reason_code = reason_code;
1788 : : } else {
1789 : 0 : event.unprot_deauth.sa = mgmt->sa;
1790 : 0 : event.unprot_deauth.da = mgmt->da;
1791 : 0 : event.unprot_deauth.reason_code = reason_code;
1792 : : }
1793 : :
1794 : 0 : wpa_supplicant_event(drv->ctx, type, &event);
1795 : : }
1796 : :
1797 : :
1798 : 4696 : static void mlme_event(struct i802_bss *bss,
1799 : : enum nl80211_commands cmd, struct nlattr *frame,
1800 : : struct nlattr *addr, struct nlattr *timed_out,
1801 : : struct nlattr *freq, struct nlattr *ack,
1802 : : struct nlattr *cookie, struct nlattr *sig)
1803 : : {
1804 : 4696 : struct wpa_driver_nl80211_data *drv = bss->drv;
1805 : : const u8 *data;
1806 : : size_t len;
1807 : :
1808 [ + + ][ + - ]: 4696 : if (timed_out && addr) {
1809 : 3 : mlme_timeout_event(drv, cmd, addr);
1810 : 3 : return;
1811 : : }
1812 : :
1813 [ - + ]: 4693 : if (frame == NULL) {
1814 : 0 : wpa_printf(MSG_DEBUG,
1815 : : "nl80211: MLME event %d (%s) without frame data",
1816 : : cmd, nl80211_command_to_string(cmd));
1817 : 0 : return;
1818 : : }
1819 : :
1820 : 4693 : data = nla_data(frame);
1821 : 4693 : len = nla_len(frame);
1822 [ - + ]: 4693 : if (len < 4 + 2 * ETH_ALEN) {
1823 : 0 : wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s("
1824 : : MACSTR ") - too short",
1825 : 0 : cmd, nl80211_command_to_string(cmd), bss->ifname,
1826 : 0 : MAC2STR(bss->addr));
1827 : 0 : return;
1828 : : }
1829 : 4693 : wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s(" MACSTR
1830 : : ") A1=" MACSTR " A2=" MACSTR, cmd,
1831 : 4693 : nl80211_command_to_string(cmd), bss->ifname,
1832 : 56316 : MAC2STR(bss->addr), MAC2STR(data + 4),
1833 : 28158 : MAC2STR(data + 4 + ETH_ALEN));
1834 [ + + ][ + + ]: 4693 : if (cmd != NL80211_CMD_FRAME_TX_STATUS && !(data[4] & 0x01) &&
[ + + ]
1835 [ - + ]: 302 : os_memcmp(bss->addr, data + 4, ETH_ALEN) != 0 &&
1836 : 302 : os_memcmp(bss->addr, data + 4 + ETH_ALEN, ETH_ALEN) != 0) {
1837 : 0 : wpa_printf(MSG_MSGDUMP, "nl80211: %s: Ignore MLME frame event "
1838 : 0 : "for foreign address", bss->ifname);
1839 : 0 : return;
1840 : : }
1841 : 4693 : wpa_hexdump(MSG_MSGDUMP, "nl80211: MLME event frame",
1842 : 4693 : nla_data(frame), nla_len(frame));
1843 : :
1844 [ + + + - : 4693 : switch (cmd) {
+ + - -
- ]
1845 : : case NL80211_CMD_AUTHENTICATE:
1846 : 370 : mlme_event_auth(drv, nla_data(frame), nla_len(frame));
1847 : 370 : break;
1848 : : case NL80211_CMD_ASSOCIATE:
1849 : 357 : mlme_event_assoc(drv, nla_data(frame), nla_len(frame));
1850 : 357 : break;
1851 : : case NL80211_CMD_DEAUTHENTICATE:
1852 : 353 : mlme_event_deauth_disassoc(drv, EVENT_DEAUTH,
1853 : 353 : nla_data(frame), nla_len(frame));
1854 : 353 : break;
1855 : : case NL80211_CMD_DISASSOCIATE:
1856 : 0 : mlme_event_deauth_disassoc(drv, EVENT_DISASSOC,
1857 : 0 : nla_data(frame), nla_len(frame));
1858 : 0 : break;
1859 : : case NL80211_CMD_FRAME:
1860 : 2265 : mlme_event_mgmt(drv, freq, sig, nla_data(frame),
1861 : 2265 : nla_len(frame));
1862 : 2265 : break;
1863 : : case NL80211_CMD_FRAME_TX_STATUS:
1864 : 1348 : mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1865 : 1348 : nla_len(frame), ack);
1866 : 1348 : break;
1867 : : case NL80211_CMD_UNPROT_DEAUTHENTICATE:
1868 : 0 : mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DEAUTH,
1869 : 0 : nla_data(frame), nla_len(frame));
1870 : 0 : break;
1871 : : case NL80211_CMD_UNPROT_DISASSOCIATE:
1872 : 0 : mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DISASSOC,
1873 : 0 : nla_data(frame), nla_len(frame));
1874 : 0 : break;
1875 : : default:
1876 : 4696 : break;
1877 : : }
1878 : : }
1879 : :
1880 : :
1881 : 0 : static void mlme_event_michael_mic_failure(struct i802_bss *bss,
1882 : : struct nlattr *tb[])
1883 : : {
1884 : : union wpa_event_data data;
1885 : :
1886 : 0 : wpa_printf(MSG_DEBUG, "nl80211: MLME event Michael MIC failure");
1887 : 0 : os_memset(&data, 0, sizeof(data));
1888 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC]) {
1889 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Source MAC address",
1890 : 0 : nla_data(tb[NL80211_ATTR_MAC]),
1891 : 0 : nla_len(tb[NL80211_ATTR_MAC]));
1892 : 0 : data.michael_mic_failure.src = nla_data(tb[NL80211_ATTR_MAC]);
1893 : : }
1894 [ # # ]: 0 : if (tb[NL80211_ATTR_KEY_SEQ]) {
1895 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: TSC",
1896 : 0 : nla_data(tb[NL80211_ATTR_KEY_SEQ]),
1897 : 0 : nla_len(tb[NL80211_ATTR_KEY_SEQ]));
1898 : : }
1899 [ # # ]: 0 : if (tb[NL80211_ATTR_KEY_TYPE]) {
1900 : 0 : enum nl80211_key_type key_type =
1901 : 0 : nla_get_u32(tb[NL80211_ATTR_KEY_TYPE]);
1902 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Key Type %d", key_type);
1903 [ # # ]: 0 : if (key_type == NL80211_KEYTYPE_PAIRWISE)
1904 : 0 : data.michael_mic_failure.unicast = 1;
1905 : : } else
1906 : 0 : data.michael_mic_failure.unicast = 1;
1907 : :
1908 [ # # ]: 0 : if (tb[NL80211_ATTR_KEY_IDX]) {
1909 : 0 : u8 key_id = nla_get_u8(tb[NL80211_ATTR_KEY_IDX]);
1910 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Key Id %d", key_id);
1911 : : }
1912 : :
1913 : 0 : wpa_supplicant_event(bss->ctx, EVENT_MICHAEL_MIC_FAILURE, &data);
1914 : 0 : }
1915 : :
1916 : :
1917 : 6 : static void mlme_event_join_ibss(struct wpa_driver_nl80211_data *drv,
1918 : : struct nlattr *tb[])
1919 : : {
1920 [ - + ]: 6 : if (tb[NL80211_ATTR_MAC] == NULL) {
1921 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No address in IBSS joined "
1922 : : "event");
1923 : 6 : return;
1924 : : }
1925 : 6 : os_memcpy(drv->bssid, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
1926 : :
1927 : 6 : drv->associated = 1;
1928 : 6 : wpa_printf(MSG_DEBUG, "nl80211: IBSS " MACSTR " joined",
1929 : 36 : MAC2STR(drv->bssid));
1930 : :
1931 : 6 : wpa_supplicant_event(drv->ctx, EVENT_ASSOC, NULL);
1932 : : }
1933 : :
1934 : :
1935 : 1168 : static void mlme_event_remain_on_channel(struct wpa_driver_nl80211_data *drv,
1936 : : int cancel_event, struct nlattr *tb[])
1937 : : {
1938 : : unsigned int freq, chan_type, duration;
1939 : : union wpa_event_data data;
1940 : : u64 cookie;
1941 : :
1942 [ + - ]: 1168 : if (tb[NL80211_ATTR_WIPHY_FREQ])
1943 : 1168 : freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
1944 : : else
1945 : 0 : freq = 0;
1946 : :
1947 [ + - ]: 1168 : if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
1948 : 1168 : chan_type = nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
1949 : : else
1950 : 0 : chan_type = 0;
1951 : :
1952 [ + + ]: 1168 : if (tb[NL80211_ATTR_DURATION])
1953 : 584 : duration = nla_get_u32(tb[NL80211_ATTR_DURATION]);
1954 : : else
1955 : 584 : duration = 0;
1956 : :
1957 [ + - ]: 1168 : if (tb[NL80211_ATTR_COOKIE])
1958 : 1168 : cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1959 : : else
1960 : 0 : cookie = 0;
1961 : :
1962 [ + + ]: 1168 : wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel event (cancel=%d "
1963 : : "freq=%u channel_type=%u duration=%u cookie=0x%llx (%s))",
1964 : : cancel_event, freq, chan_type, duration,
1965 : : (long long unsigned int) cookie,
1966 : 1168 : cookie == drv->remain_on_chan_cookie ? "match" : "unknown");
1967 : :
1968 [ + + ]: 1168 : if (cookie != drv->remain_on_chan_cookie)
1969 : 1168 : return; /* not for us */
1970 : :
1971 [ + + ]: 1167 : if (cancel_event)
1972 : 583 : drv->pending_remain_on_chan = 0;
1973 : :
1974 : 1167 : os_memset(&data, 0, sizeof(data));
1975 : 1167 : data.remain_on_channel.freq = freq;
1976 : 1167 : data.remain_on_channel.duration = duration;
1977 [ + + ]: 1167 : wpa_supplicant_event(drv->ctx, cancel_event ?
1978 : : EVENT_CANCEL_REMAIN_ON_CHANNEL :
1979 : : EVENT_REMAIN_ON_CHANNEL, &data);
1980 : : }
1981 : :
1982 : :
1983 : 0 : static void mlme_event_ft_event(struct wpa_driver_nl80211_data *drv,
1984 : : struct nlattr *tb[])
1985 : : {
1986 : : union wpa_event_data data;
1987 : :
1988 : 0 : os_memset(&data, 0, sizeof(data));
1989 : :
1990 [ # # ]: 0 : if (tb[NL80211_ATTR_IE]) {
1991 : 0 : data.ft_ies.ies = nla_data(tb[NL80211_ATTR_IE]);
1992 : 0 : data.ft_ies.ies_len = nla_len(tb[NL80211_ATTR_IE]);
1993 : : }
1994 : :
1995 [ # # ]: 0 : if (tb[NL80211_ATTR_IE_RIC]) {
1996 : 0 : data.ft_ies.ric_ies = nla_data(tb[NL80211_ATTR_IE_RIC]);
1997 : 0 : data.ft_ies.ric_ies_len = nla_len(tb[NL80211_ATTR_IE_RIC]);
1998 : : }
1999 : :
2000 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC])
2001 : 0 : os_memcpy(data.ft_ies.target_ap,
2002 : : nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2003 : :
2004 : 0 : wpa_printf(MSG_DEBUG, "nl80211: FT event target_ap " MACSTR,
2005 : 0 : MAC2STR(data.ft_ies.target_ap));
2006 : :
2007 : 0 : wpa_supplicant_event(drv->ctx, EVENT_FT_RESPONSE, &data);
2008 : 0 : }
2009 : :
2010 : :
2011 : 910 : static void send_scan_event(struct wpa_driver_nl80211_data *drv, int aborted,
2012 : : struct nlattr *tb[])
2013 : : {
2014 : : union wpa_event_data event;
2015 : : struct nlattr *nl;
2016 : : int rem;
2017 : : struct scan_info *info;
2018 : : #define MAX_REPORT_FREQS 50
2019 : : int freqs[MAX_REPORT_FREQS];
2020 : 910 : int num_freqs = 0;
2021 : :
2022 [ - + ]: 910 : if (drv->scan_for_auth) {
2023 : 0 : drv->scan_for_auth = 0;
2024 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan results for missing "
2025 : : "cfg80211 BSS entry");
2026 : 0 : wpa_driver_nl80211_authenticate_retry(drv);
2027 : 910 : return;
2028 : : }
2029 : :
2030 : 910 : os_memset(&event, 0, sizeof(event));
2031 : 910 : info = &event.scan_info;
2032 : 910 : info->aborted = aborted;
2033 : :
2034 [ + - ]: 910 : if (tb[NL80211_ATTR_SCAN_SSIDS]) {
2035 [ + + ]: 1799 : nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
2036 : 889 : struct wpa_driver_scan_ssid *s =
2037 : 889 : &info->ssids[info->num_ssids];
2038 : 889 : s->ssid = nla_data(nl);
2039 : 889 : s->ssid_len = nla_len(nl);
2040 : 889 : wpa_printf(MSG_DEBUG, "nl80211: Scan probed for SSID '%s'",
2041 : : wpa_ssid_txt(s->ssid, s->ssid_len));
2042 : 889 : info->num_ssids++;
2043 [ - + ]: 889 : if (info->num_ssids == WPAS_MAX_SCAN_SSIDS)
2044 : 0 : break;
2045 : : }
2046 : : }
2047 [ + - ]: 910 : if (tb[NL80211_ATTR_SCAN_FREQUENCIES]) {
2048 : : char msg[200], *pos, *end;
2049 : : int res;
2050 : :
2051 : 910 : pos = msg;
2052 : 910 : end = pos + sizeof(msg);
2053 : 910 : *pos = '\0';
2054 : :
2055 [ + + ]: 5818 : nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
2056 : : {
2057 : 4908 : freqs[num_freqs] = nla_get_u32(nl);
2058 : 4908 : res = os_snprintf(pos, end - pos, " %d",
2059 : : freqs[num_freqs]);
2060 [ + - ][ + - ]: 4908 : if (res > 0 && end - pos > res)
2061 : 4908 : pos += res;
2062 : 4908 : num_freqs++;
2063 [ - + ]: 4908 : if (num_freqs == MAX_REPORT_FREQS - 1)
2064 : 0 : break;
2065 : : }
2066 : 910 : info->freqs = freqs;
2067 : 910 : info->num_freqs = num_freqs;
2068 : 910 : wpa_printf(MSG_DEBUG, "nl80211: Scan included frequencies:%s",
2069 : : msg);
2070 : : }
2071 : 910 : wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, &event);
2072 : : }
2073 : :
2074 : :
2075 : 0 : static int get_link_signal(struct nl_msg *msg, void *arg)
2076 : : {
2077 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2078 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2079 : : struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
2080 : : static struct nla_policy policy[NL80211_STA_INFO_MAX + 1] = {
2081 : : [NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
2082 : : [NL80211_STA_INFO_SIGNAL_AVG] = { .type = NLA_U8 },
2083 : : };
2084 : : struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1];
2085 : : static struct nla_policy rate_policy[NL80211_RATE_INFO_MAX + 1] = {
2086 : : [NL80211_RATE_INFO_BITRATE] = { .type = NLA_U16 },
2087 : : [NL80211_RATE_INFO_MCS] = { .type = NLA_U8 },
2088 : : [NL80211_RATE_INFO_40_MHZ_WIDTH] = { .type = NLA_FLAG },
2089 : : [NL80211_RATE_INFO_SHORT_GI] = { .type = NLA_FLAG },
2090 : : };
2091 : 0 : struct wpa_signal_info *sig_change = arg;
2092 : :
2093 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2094 : : genlmsg_attrlen(gnlh, 0), NULL);
2095 [ # # # # ]: 0 : if (!tb[NL80211_ATTR_STA_INFO] ||
2096 : 0 : nla_parse_nested(sinfo, NL80211_STA_INFO_MAX,
2097 : : tb[NL80211_ATTR_STA_INFO], policy))
2098 : 0 : return NL_SKIP;
2099 [ # # ]: 0 : if (!sinfo[NL80211_STA_INFO_SIGNAL])
2100 : 0 : return NL_SKIP;
2101 : :
2102 : 0 : sig_change->current_signal =
2103 : 0 : (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL]);
2104 : :
2105 [ # # ]: 0 : if (sinfo[NL80211_STA_INFO_SIGNAL_AVG])
2106 : 0 : sig_change->avg_signal =
2107 : 0 : (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL_AVG]);
2108 : : else
2109 : 0 : sig_change->avg_signal = 0;
2110 : :
2111 [ # # ]: 0 : if (sinfo[NL80211_STA_INFO_TX_BITRATE]) {
2112 [ # # ]: 0 : if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
2113 : : sinfo[NL80211_STA_INFO_TX_BITRATE],
2114 : : rate_policy)) {
2115 : 0 : sig_change->current_txrate = 0;
2116 : : } else {
2117 [ # # ]: 0 : if (rinfo[NL80211_RATE_INFO_BITRATE]) {
2118 : 0 : sig_change->current_txrate =
2119 : 0 : nla_get_u16(rinfo[
2120 : 0 : NL80211_RATE_INFO_BITRATE]) * 100;
2121 : : }
2122 : : }
2123 : : }
2124 : :
2125 : 0 : return NL_SKIP;
2126 : : }
2127 : :
2128 : :
2129 : 0 : static int nl80211_get_link_signal(struct wpa_driver_nl80211_data *drv,
2130 : : struct wpa_signal_info *sig)
2131 : : {
2132 : : struct nl_msg *msg;
2133 : :
2134 : 0 : sig->current_signal = -9999;
2135 : 0 : sig->current_txrate = 0;
2136 : :
2137 : 0 : msg = nlmsg_alloc();
2138 [ # # ]: 0 : if (!msg)
2139 : 0 : return -ENOMEM;
2140 : :
2141 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
2142 : :
2143 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2144 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
2145 : :
2146 : 0 : return send_and_recv_msgs(drv, msg, get_link_signal, sig);
2147 : : nla_put_failure:
2148 : 0 : nlmsg_free(msg);
2149 : 0 : return -ENOBUFS;
2150 : : }
2151 : :
2152 : :
2153 : 0 : static int get_link_noise(struct nl_msg *msg, void *arg)
2154 : : {
2155 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2156 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2157 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
2158 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
2159 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
2160 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
2161 : : };
2162 : 0 : struct wpa_signal_info *sig_change = arg;
2163 : :
2164 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2165 : : genlmsg_attrlen(gnlh, 0), NULL);
2166 : :
2167 [ # # ]: 0 : if (!tb[NL80211_ATTR_SURVEY_INFO]) {
2168 : 0 : wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
2169 : 0 : return NL_SKIP;
2170 : : }
2171 : :
2172 [ # # ]: 0 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
2173 : : tb[NL80211_ATTR_SURVEY_INFO],
2174 : : survey_policy)) {
2175 : 0 : wpa_printf(MSG_DEBUG, "nl80211: failed to parse nested "
2176 : : "attributes!");
2177 : 0 : return NL_SKIP;
2178 : : }
2179 : :
2180 [ # # ]: 0 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
2181 : 0 : return NL_SKIP;
2182 : :
2183 [ # # ]: 0 : if (nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
2184 : 0 : sig_change->frequency)
2185 : 0 : return NL_SKIP;
2186 : :
2187 [ # # ]: 0 : if (!sinfo[NL80211_SURVEY_INFO_NOISE])
2188 : 0 : return NL_SKIP;
2189 : :
2190 : 0 : sig_change->current_noise =
2191 : 0 : (s8) nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
2192 : :
2193 : 0 : return NL_SKIP;
2194 : : }
2195 : :
2196 : :
2197 : 0 : static int nl80211_get_link_noise(struct wpa_driver_nl80211_data *drv,
2198 : : struct wpa_signal_info *sig_change)
2199 : : {
2200 : : struct nl_msg *msg;
2201 : :
2202 : 0 : sig_change->current_noise = 9999;
2203 : 0 : sig_change->frequency = drv->assoc_freq;
2204 : :
2205 : 0 : msg = nlmsg_alloc();
2206 [ # # ]: 0 : if (!msg)
2207 : 0 : return -ENOMEM;
2208 : :
2209 : 0 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
2210 : :
2211 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2212 : :
2213 : 0 : return send_and_recv_msgs(drv, msg, get_link_noise, sig_change);
2214 : : nla_put_failure:
2215 : 0 : nlmsg_free(msg);
2216 : 0 : return -ENOBUFS;
2217 : : }
2218 : :
2219 : :
2220 : 901 : static int get_noise_for_scan_results(struct nl_msg *msg, void *arg)
2221 : : {
2222 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2223 : 901 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2224 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
2225 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
2226 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
2227 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
2228 : : };
2229 : 901 : struct wpa_scan_results *scan_results = arg;
2230 : : struct wpa_scan_res *scan_res;
2231 : : size_t i;
2232 : :
2233 : 901 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2234 : : genlmsg_attrlen(gnlh, 0), NULL);
2235 : :
2236 [ - + ]: 901 : if (!tb[NL80211_ATTR_SURVEY_INFO]) {
2237 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Survey data missing");
2238 : 0 : return NL_SKIP;
2239 : : }
2240 : :
2241 [ - + ]: 901 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
2242 : : tb[NL80211_ATTR_SURVEY_INFO],
2243 : : survey_policy)) {
2244 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to parse nested "
2245 : : "attributes");
2246 : 0 : return NL_SKIP;
2247 : : }
2248 : :
2249 [ - + ]: 901 : if (!sinfo[NL80211_SURVEY_INFO_NOISE])
2250 : 0 : return NL_SKIP;
2251 : :
2252 [ - + ]: 901 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
2253 : 0 : return NL_SKIP;
2254 : :
2255 [ + + ]: 4258 : for (i = 0; i < scan_results->num; ++i) {
2256 : 3357 : scan_res = scan_results->res[i];
2257 [ - + ]: 3357 : if (!scan_res)
2258 : 0 : continue;
2259 [ + + ]: 3357 : if ((int) nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
2260 : 3357 : scan_res->freq)
2261 : 1157 : continue;
2262 [ - + ]: 2200 : if (!(scan_res->flags & WPA_SCAN_NOISE_INVALID))
2263 : 0 : continue;
2264 : 2200 : scan_res->noise = (s8)
2265 : 2200 : nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
2266 : 2200 : scan_res->flags &= ~WPA_SCAN_NOISE_INVALID;
2267 : : }
2268 : :
2269 : 901 : return NL_SKIP;
2270 : : }
2271 : :
2272 : :
2273 : 901 : static int nl80211_get_noise_for_scan_results(
2274 : : struct wpa_driver_nl80211_data *drv,
2275 : : struct wpa_scan_results *scan_res)
2276 : : {
2277 : : struct nl_msg *msg;
2278 : :
2279 : 901 : msg = nlmsg_alloc();
2280 [ - + ]: 901 : if (!msg)
2281 : 0 : return -ENOMEM;
2282 : :
2283 : 901 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
2284 : :
2285 [ + - ]: 901 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
2286 : :
2287 : 901 : return send_and_recv_msgs(drv, msg, get_noise_for_scan_results,
2288 : : scan_res);
2289 : : nla_put_failure:
2290 : 0 : nlmsg_free(msg);
2291 : 901 : return -ENOBUFS;
2292 : : }
2293 : :
2294 : :
2295 : 0 : static void nl80211_cqm_event(struct wpa_driver_nl80211_data *drv,
2296 : : struct nlattr *tb[])
2297 : : {
2298 : : static struct nla_policy cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
2299 : : [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
2300 : : [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U8 },
2301 : : [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
2302 : : [NL80211_ATTR_CQM_PKT_LOSS_EVENT] = { .type = NLA_U32 },
2303 : : };
2304 : : struct nlattr *cqm[NL80211_ATTR_CQM_MAX + 1];
2305 : : enum nl80211_cqm_rssi_threshold_event event;
2306 : : union wpa_event_data ed;
2307 : : struct wpa_signal_info sig;
2308 : : int res;
2309 : :
2310 [ # # # # ]: 0 : if (tb[NL80211_ATTR_CQM] == NULL ||
2311 : 0 : nla_parse_nested(cqm, NL80211_ATTR_CQM_MAX, tb[NL80211_ATTR_CQM],
2312 : : cqm_policy)) {
2313 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignore invalid CQM event");
2314 : 0 : return;
2315 : : }
2316 : :
2317 : 0 : os_memset(&ed, 0, sizeof(ed));
2318 : :
2319 [ # # ]: 0 : if (cqm[NL80211_ATTR_CQM_PKT_LOSS_EVENT]) {
2320 [ # # ]: 0 : if (!tb[NL80211_ATTR_MAC])
2321 : 0 : return;
2322 : 0 : os_memcpy(ed.low_ack.addr, nla_data(tb[NL80211_ATTR_MAC]),
2323 : : ETH_ALEN);
2324 : 0 : wpa_supplicant_event(drv->ctx, EVENT_STATION_LOW_ACK, &ed);
2325 : 0 : return;
2326 : : }
2327 : :
2328 [ # # ]: 0 : if (cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] == NULL)
2329 : 0 : return;
2330 : 0 : event = nla_get_u32(cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT]);
2331 : :
2332 [ # # ]: 0 : if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH) {
2333 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
2334 : : "event: RSSI high");
2335 : 0 : ed.signal_change.above_threshold = 1;
2336 [ # # ]: 0 : } else if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW) {
2337 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
2338 : : "event: RSSI low");
2339 : 0 : ed.signal_change.above_threshold = 0;
2340 : : } else
2341 : 0 : return;
2342 : :
2343 : 0 : res = nl80211_get_link_signal(drv, &sig);
2344 [ # # ]: 0 : if (res == 0) {
2345 : 0 : ed.signal_change.current_signal = sig.current_signal;
2346 : 0 : ed.signal_change.current_txrate = sig.current_txrate;
2347 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Signal: %d dBm txrate: %d",
2348 : : sig.current_signal, sig.current_txrate);
2349 : : }
2350 : :
2351 : 0 : res = nl80211_get_link_noise(drv, &sig);
2352 [ # # ]: 0 : if (res == 0) {
2353 : 0 : ed.signal_change.current_noise = sig.current_noise;
2354 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Noise: %d dBm",
2355 : : sig.current_noise);
2356 : : }
2357 : :
2358 : 0 : wpa_supplicant_event(drv->ctx, EVENT_SIGNAL_CHANGE, &ed);
2359 : : }
2360 : :
2361 : :
2362 : 782 : static void nl80211_new_station_event(struct wpa_driver_nl80211_data *drv,
2363 : : struct nlattr **tb)
2364 : : {
2365 : : u8 *addr;
2366 : : union wpa_event_data data;
2367 : :
2368 [ - + ]: 782 : if (tb[NL80211_ATTR_MAC] == NULL)
2369 : 0 : return;
2370 : 782 : addr = nla_data(tb[NL80211_ATTR_MAC]);
2371 : 782 : wpa_printf(MSG_DEBUG, "nl80211: New station " MACSTR, MAC2STR(addr));
2372 : :
2373 [ - + ][ + + ]: 782 : if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
2374 : 0 : u8 *ies = NULL;
2375 : 0 : size_t ies_len = 0;
2376 [ # # ]: 0 : if (tb[NL80211_ATTR_IE]) {
2377 : 0 : ies = nla_data(tb[NL80211_ATTR_IE]);
2378 : 0 : ies_len = nla_len(tb[NL80211_ATTR_IE]);
2379 : : }
2380 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Assoc Req IEs", ies, ies_len);
2381 : 0 : drv_event_assoc(drv->ctx, addr, ies, ies_len, 0);
2382 : 0 : return;
2383 : : }
2384 : :
2385 [ + + ]: 782 : if (drv->nlmode != NL80211_IFTYPE_ADHOC)
2386 : 776 : return;
2387 : :
2388 : 6 : os_memset(&data, 0, sizeof(data));
2389 : 6 : os_memcpy(data.ibss_rsn_start.peer, addr, ETH_ALEN);
2390 : 782 : wpa_supplicant_event(drv->ctx, EVENT_IBSS_RSN_START, &data);
2391 : : }
2392 : :
2393 : :
2394 : 760 : static void nl80211_del_station_event(struct wpa_driver_nl80211_data *drv,
2395 : : struct nlattr **tb)
2396 : : {
2397 : : u8 *addr;
2398 : : union wpa_event_data data;
2399 : :
2400 [ - + ]: 760 : if (tb[NL80211_ATTR_MAC] == NULL)
2401 : 0 : return;
2402 : 760 : addr = nla_data(tb[NL80211_ATTR_MAC]);
2403 : 760 : wpa_printf(MSG_DEBUG, "nl80211: Delete station " MACSTR,
2404 : 4560 : MAC2STR(addr));
2405 : :
2406 [ - + ][ + + ]: 760 : if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
2407 : 0 : drv_event_disassoc(drv->ctx, addr);
2408 : 0 : return;
2409 : : }
2410 : :
2411 [ + - ]: 760 : if (drv->nlmode != NL80211_IFTYPE_ADHOC)
2412 : 760 : return;
2413 : :
2414 : 0 : os_memset(&data, 0, sizeof(data));
2415 : 0 : os_memcpy(data.ibss_peer_lost.peer, addr, ETH_ALEN);
2416 : 760 : wpa_supplicant_event(drv->ctx, EVENT_IBSS_PEER_LOST, &data);
2417 : : }
2418 : :
2419 : :
2420 : 0 : static void nl80211_rekey_offload_event(struct wpa_driver_nl80211_data *drv,
2421 : : struct nlattr **tb)
2422 : : {
2423 : : struct nlattr *rekey_info[NUM_NL80211_REKEY_DATA];
2424 : : static struct nla_policy rekey_policy[NUM_NL80211_REKEY_DATA] = {
2425 : : [NL80211_REKEY_DATA_KEK] = {
2426 : : .minlen = NL80211_KEK_LEN,
2427 : : .maxlen = NL80211_KEK_LEN,
2428 : : },
2429 : : [NL80211_REKEY_DATA_KCK] = {
2430 : : .minlen = NL80211_KCK_LEN,
2431 : : .maxlen = NL80211_KCK_LEN,
2432 : : },
2433 : : [NL80211_REKEY_DATA_REPLAY_CTR] = {
2434 : : .minlen = NL80211_REPLAY_CTR_LEN,
2435 : : .maxlen = NL80211_REPLAY_CTR_LEN,
2436 : : },
2437 : : };
2438 : : union wpa_event_data data;
2439 : :
2440 [ # # ]: 0 : if (!tb[NL80211_ATTR_MAC])
2441 : 0 : return;
2442 [ # # ]: 0 : if (!tb[NL80211_ATTR_REKEY_DATA])
2443 : 0 : return;
2444 [ # # ]: 0 : if (nla_parse_nested(rekey_info, MAX_NL80211_REKEY_DATA,
2445 : 0 : tb[NL80211_ATTR_REKEY_DATA], rekey_policy))
2446 : 0 : return;
2447 [ # # ]: 0 : if (!rekey_info[NL80211_REKEY_DATA_REPLAY_CTR])
2448 : 0 : return;
2449 : :
2450 : 0 : os_memset(&data, 0, sizeof(data));
2451 : 0 : data.driver_gtk_rekey.bssid = nla_data(tb[NL80211_ATTR_MAC]);
2452 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Rekey offload event for BSSID " MACSTR,
2453 : 0 : MAC2STR(data.driver_gtk_rekey.bssid));
2454 : 0 : data.driver_gtk_rekey.replay_ctr =
2455 : 0 : nla_data(rekey_info[NL80211_REKEY_DATA_REPLAY_CTR]);
2456 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Rekey offload - Replay Counter",
2457 : 0 : data.driver_gtk_rekey.replay_ctr, NL80211_REPLAY_CTR_LEN);
2458 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DRIVER_GTK_REKEY, &data);
2459 : : }
2460 : :
2461 : :
2462 : 0 : static void nl80211_pmksa_candidate_event(struct wpa_driver_nl80211_data *drv,
2463 : : struct nlattr **tb)
2464 : : {
2465 : : struct nlattr *cand[NUM_NL80211_PMKSA_CANDIDATE];
2466 : : static struct nla_policy cand_policy[NUM_NL80211_PMKSA_CANDIDATE] = {
2467 : : [NL80211_PMKSA_CANDIDATE_INDEX] = { .type = NLA_U32 },
2468 : : [NL80211_PMKSA_CANDIDATE_BSSID] = {
2469 : : .minlen = ETH_ALEN,
2470 : : .maxlen = ETH_ALEN,
2471 : : },
2472 : : [NL80211_PMKSA_CANDIDATE_PREAUTH] = { .type = NLA_FLAG },
2473 : : };
2474 : : union wpa_event_data data;
2475 : :
2476 : 0 : wpa_printf(MSG_DEBUG, "nl80211: PMKSA candidate event");
2477 : :
2478 [ # # ]: 0 : if (!tb[NL80211_ATTR_PMKSA_CANDIDATE])
2479 : 0 : return;
2480 [ # # ]: 0 : if (nla_parse_nested(cand, MAX_NL80211_PMKSA_CANDIDATE,
2481 : 0 : tb[NL80211_ATTR_PMKSA_CANDIDATE], cand_policy))
2482 : 0 : return;
2483 [ # # ][ # # ]: 0 : if (!cand[NL80211_PMKSA_CANDIDATE_INDEX] ||
2484 : 0 : !cand[NL80211_PMKSA_CANDIDATE_BSSID])
2485 : 0 : return;
2486 : :
2487 : 0 : os_memset(&data, 0, sizeof(data));
2488 : 0 : os_memcpy(data.pmkid_candidate.bssid,
2489 : : nla_data(cand[NL80211_PMKSA_CANDIDATE_BSSID]), ETH_ALEN);
2490 : 0 : data.pmkid_candidate.index =
2491 : 0 : nla_get_u32(cand[NL80211_PMKSA_CANDIDATE_INDEX]);
2492 : 0 : data.pmkid_candidate.preauth =
2493 : 0 : cand[NL80211_PMKSA_CANDIDATE_PREAUTH] != NULL;
2494 : 0 : wpa_supplicant_event(drv->ctx, EVENT_PMKID_CANDIDATE, &data);
2495 : : }
2496 : :
2497 : :
2498 : 0 : static void nl80211_client_probe_event(struct wpa_driver_nl80211_data *drv,
2499 : : struct nlattr **tb)
2500 : : {
2501 : : union wpa_event_data data;
2502 : :
2503 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Probe client event");
2504 : :
2505 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_ACK])
2506 : 0 : return;
2507 : :
2508 : 0 : os_memset(&data, 0, sizeof(data));
2509 : 0 : os_memcpy(data.client_poll.addr,
2510 : : nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2511 : :
2512 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DRIVER_CLIENT_POLL_OK, &data);
2513 : : }
2514 : :
2515 : :
2516 : 0 : static void nl80211_tdls_oper_event(struct wpa_driver_nl80211_data *drv,
2517 : : struct nlattr **tb)
2518 : : {
2519 : : union wpa_event_data data;
2520 : :
2521 : 0 : wpa_printf(MSG_DEBUG, "nl80211: TDLS operation event");
2522 : :
2523 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_TDLS_OPERATION])
2524 : 0 : return;
2525 : :
2526 : 0 : os_memset(&data, 0, sizeof(data));
2527 : 0 : os_memcpy(data.tdls.peer, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2528 [ # # # ]: 0 : switch (nla_get_u8(tb[NL80211_ATTR_TDLS_OPERATION])) {
2529 : : case NL80211_TDLS_SETUP:
2530 : 0 : wpa_printf(MSG_DEBUG, "nl80211: TDLS setup request for peer "
2531 : 0 : MACSTR, MAC2STR(data.tdls.peer));
2532 : 0 : data.tdls.oper = TDLS_REQUEST_SETUP;
2533 : 0 : break;
2534 : : case NL80211_TDLS_TEARDOWN:
2535 : 0 : wpa_printf(MSG_DEBUG, "nl80211: TDLS teardown request for peer "
2536 : 0 : MACSTR, MAC2STR(data.tdls.peer));
2537 : 0 : data.tdls.oper = TDLS_REQUEST_TEARDOWN;
2538 : 0 : break;
2539 : : default:
2540 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unsupported TDLS operatione "
2541 : : "event");
2542 : 0 : return;
2543 : : }
2544 [ # # ]: 0 : if (tb[NL80211_ATTR_REASON_CODE]) {
2545 : 0 : data.tdls.reason_code =
2546 : 0 : nla_get_u16(tb[NL80211_ATTR_REASON_CODE]);
2547 : : }
2548 : :
2549 : 0 : wpa_supplicant_event(drv->ctx, EVENT_TDLS, &data);
2550 : : }
2551 : :
2552 : :
2553 : 0 : static void nl80211_stop_ap(struct wpa_driver_nl80211_data *drv,
2554 : : struct nlattr **tb)
2555 : : {
2556 : 0 : wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_UNAVAILABLE, NULL);
2557 : 0 : }
2558 : :
2559 : :
2560 : 0 : static void nl80211_connect_failed_event(struct wpa_driver_nl80211_data *drv,
2561 : : struct nlattr **tb)
2562 : : {
2563 : : union wpa_event_data data;
2564 : : u32 reason;
2565 : :
2566 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connect failed event");
2567 : :
2568 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_CONN_FAILED_REASON])
2569 : 0 : return;
2570 : :
2571 : 0 : os_memset(&data, 0, sizeof(data));
2572 : 0 : os_memcpy(data.connect_failed_reason.addr,
2573 : : nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
2574 : :
2575 : 0 : reason = nla_get_u32(tb[NL80211_ATTR_CONN_FAILED_REASON]);
2576 [ # # # ]: 0 : switch (reason) {
2577 : : case NL80211_CONN_FAIL_MAX_CLIENTS:
2578 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Max client reached");
2579 : 0 : data.connect_failed_reason.code = MAX_CLIENT_REACHED;
2580 : 0 : break;
2581 : : case NL80211_CONN_FAIL_BLOCKED_CLIENT:
2582 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Blocked client " MACSTR
2583 : : " tried to connect",
2584 : 0 : MAC2STR(data.connect_failed_reason.addr));
2585 : 0 : data.connect_failed_reason.code = BLOCKED_CLIENT;
2586 : 0 : break;
2587 : : default:
2588 : 0 : wpa_printf(MSG_DEBUG, "nl8021l: Unknown connect failed reason "
2589 : : "%u", reason);
2590 : 0 : return;
2591 : : }
2592 : :
2593 : 0 : wpa_supplicant_event(drv->ctx, EVENT_CONNECT_FAILED_REASON, &data);
2594 : : }
2595 : :
2596 : :
2597 : 0 : static void nl80211_radar_event(struct wpa_driver_nl80211_data *drv,
2598 : : struct nlattr **tb)
2599 : : {
2600 : : union wpa_event_data data;
2601 : : enum nl80211_radar_event event_type;
2602 : :
2603 [ # # ][ # # ]: 0 : if (!tb[NL80211_ATTR_WIPHY_FREQ] || !tb[NL80211_ATTR_RADAR_EVENT])
2604 : 0 : return;
2605 : :
2606 : 0 : os_memset(&data, 0, sizeof(data));
2607 : 0 : data.dfs_event.freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
2608 : 0 : event_type = nla_get_u32(tb[NL80211_ATTR_RADAR_EVENT]);
2609 : :
2610 : : /* Check HT params */
2611 [ # # ]: 0 : if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
2612 : 0 : data.dfs_event.ht_enabled = 1;
2613 : 0 : data.dfs_event.chan_offset = 0;
2614 : :
2615 [ # # # # : 0 : switch (nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])) {
# ]
2616 : : case NL80211_CHAN_NO_HT:
2617 : 0 : data.dfs_event.ht_enabled = 0;
2618 : 0 : break;
2619 : : case NL80211_CHAN_HT20:
2620 : 0 : break;
2621 : : case NL80211_CHAN_HT40PLUS:
2622 : 0 : data.dfs_event.chan_offset = 1;
2623 : 0 : break;
2624 : : case NL80211_CHAN_HT40MINUS:
2625 : 0 : data.dfs_event.chan_offset = -1;
2626 : 0 : break;
2627 : : }
2628 : : }
2629 : :
2630 : : /* Get VHT params */
2631 [ # # ]: 0 : if (tb[NL80211_ATTR_CHANNEL_WIDTH])
2632 : 0 : data.dfs_event.chan_width =
2633 : 0 : convert2width(nla_get_u32(
2634 : 0 : tb[NL80211_ATTR_CHANNEL_WIDTH]));
2635 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ1])
2636 : 0 : data.dfs_event.cf1 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
2637 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ2])
2638 : 0 : data.dfs_event.cf2 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
2639 : :
2640 : 0 : wpa_printf(MSG_DEBUG, "nl80211: DFS event on freq %d MHz, ht: %d, offset: %d, width: %d, cf1: %dMHz, cf2: %dMHz",
2641 : : data.dfs_event.freq, data.dfs_event.ht_enabled,
2642 : 0 : data.dfs_event.chan_offset, data.dfs_event.chan_width,
2643 : : data.dfs_event.cf1, data.dfs_event.cf2);
2644 : :
2645 [ # # # # : 0 : switch (event_type) {
# ]
2646 : : case NL80211_RADAR_DETECTED:
2647 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_RADAR_DETECTED, &data);
2648 : 0 : break;
2649 : : case NL80211_RADAR_CAC_FINISHED:
2650 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_CAC_FINISHED, &data);
2651 : 0 : break;
2652 : : case NL80211_RADAR_CAC_ABORTED:
2653 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_CAC_ABORTED, &data);
2654 : 0 : break;
2655 : : case NL80211_RADAR_NOP_FINISHED:
2656 : 0 : wpa_supplicant_event(drv->ctx, EVENT_DFS_NOP_FINISHED, &data);
2657 : 0 : break;
2658 : : default:
2659 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown radar event %d "
2660 : : "received", event_type);
2661 : 0 : break;
2662 : : }
2663 : : }
2664 : :
2665 : :
2666 : 0 : static void nl80211_spurious_frame(struct i802_bss *bss, struct nlattr **tb,
2667 : : int wds)
2668 : : {
2669 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
2670 : : union wpa_event_data event;
2671 : :
2672 [ # # ]: 0 : if (!tb[NL80211_ATTR_MAC])
2673 : 0 : return;
2674 : :
2675 : 0 : os_memset(&event, 0, sizeof(event));
2676 : 0 : event.rx_from_unknown.bssid = bss->addr;
2677 : 0 : event.rx_from_unknown.addr = nla_data(tb[NL80211_ATTR_MAC]);
2678 : 0 : event.rx_from_unknown.wds = wds;
2679 : :
2680 : 0 : wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
2681 : : }
2682 : :
2683 : :
2684 : 8718 : static void do_process_drv_event(struct i802_bss *bss, int cmd,
2685 : : struct nlattr **tb)
2686 : : {
2687 : 8718 : struct wpa_driver_nl80211_data *drv = bss->drv;
2688 : : union wpa_event_data data;
2689 : :
2690 : 8718 : wpa_printf(MSG_DEBUG, "nl80211: Drv Event %d (%s) received for %s",
2691 : 8718 : cmd, nl80211_command_to_string(cmd), bss->ifname);
2692 : :
2693 [ # # ][ - + ]: 8718 : if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED &&
2694 [ # # ]: 0 : (cmd == NL80211_CMD_NEW_SCAN_RESULTS ||
2695 : : cmd == NL80211_CMD_SCAN_ABORTED)) {
2696 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss,
2697 : : drv->ap_scan_as_station);
2698 : 0 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
2699 : : }
2700 : :
2701 [ + - - + : 8718 : switch (cmd) {
- - + + -
+ - + + +
- + - + +
- - - - -
- - - - ]
2702 : : case NL80211_CMD_TRIGGER_SCAN:
2703 : 915 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan trigger");
2704 : 915 : drv->scan_state = SCAN_STARTED;
2705 : 915 : wpa_supplicant_event(drv->ctx, EVENT_SCAN_STARTED, NULL);
2706 : 915 : break;
2707 : : case NL80211_CMD_START_SCHED_SCAN:
2708 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan started");
2709 : 0 : drv->scan_state = SCHED_SCAN_STARTED;
2710 : 0 : break;
2711 : : case NL80211_CMD_SCHED_SCAN_STOPPED:
2712 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan stopped");
2713 : 0 : drv->scan_state = SCHED_SCAN_STOPPED;
2714 : 0 : wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
2715 : 0 : break;
2716 : : case NL80211_CMD_NEW_SCAN_RESULTS:
2717 : 910 : wpa_dbg(drv->ctx, MSG_DEBUG,
2718 : : "nl80211: New scan results available");
2719 : 910 : drv->scan_state = SCAN_COMPLETED;
2720 : 910 : drv->scan_complete_events = 1;
2721 : 910 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
2722 : : drv->ctx);
2723 : 910 : send_scan_event(drv, 0, tb);
2724 : 910 : break;
2725 : : case NL80211_CMD_SCHED_SCAN_RESULTS:
2726 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
2727 : : "nl80211: New sched scan results available");
2728 : 0 : drv->scan_state = SCHED_SCAN_RESULTS;
2729 : 0 : send_scan_event(drv, 0, tb);
2730 : 0 : break;
2731 : : case NL80211_CMD_SCAN_ABORTED:
2732 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan aborted");
2733 : 0 : drv->scan_state = SCAN_ABORTED;
2734 : : /*
2735 : : * Need to indicate that scan results are available in order
2736 : : * not to make wpa_supplicant stop its scanning.
2737 : : */
2738 : 0 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
2739 : : drv->ctx);
2740 : 0 : send_scan_event(drv, 1, tb);
2741 : 0 : break;
2742 : : case NL80211_CMD_AUTHENTICATE:
2743 : : case NL80211_CMD_ASSOCIATE:
2744 : : case NL80211_CMD_DEAUTHENTICATE:
2745 : : case NL80211_CMD_DISASSOCIATE:
2746 : : case NL80211_CMD_FRAME_TX_STATUS:
2747 : : case NL80211_CMD_UNPROT_DEAUTHENTICATE:
2748 : : case NL80211_CMD_UNPROT_DISASSOCIATE:
2749 : 2431 : mlme_event(bss, cmd, tb[NL80211_ATTR_FRAME],
2750 : 4862 : tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
2751 : 4862 : tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
2752 : 2431 : tb[NL80211_ATTR_COOKIE],
2753 : 2431 : tb[NL80211_ATTR_RX_SIGNAL_DBM]);
2754 : 2431 : break;
2755 : : case NL80211_CMD_CONNECT:
2756 : : case NL80211_CMD_ROAM:
2757 : 357 : mlme_event_connect(drv, cmd,
2758 : 357 : tb[NL80211_ATTR_STATUS_CODE],
2759 : 357 : tb[NL80211_ATTR_MAC],
2760 : 357 : tb[NL80211_ATTR_REQ_IE],
2761 : 357 : tb[NL80211_ATTR_RESP_IE]);
2762 : 357 : break;
2763 : : case NL80211_CMD_CH_SWITCH_NOTIFY:
2764 : 0 : mlme_event_ch_switch(drv,
2765 : 0 : tb[NL80211_ATTR_IFINDEX],
2766 : 0 : tb[NL80211_ATTR_WIPHY_FREQ],
2767 : 0 : tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE],
2768 : 0 : tb[NL80211_ATTR_CHANNEL_WIDTH],
2769 : 0 : tb[NL80211_ATTR_CENTER_FREQ1],
2770 : 0 : tb[NL80211_ATTR_CENTER_FREQ2]);
2771 : 0 : break;
2772 : : case NL80211_CMD_DISCONNECT:
2773 : 347 : mlme_event_disconnect(drv, tb[NL80211_ATTR_REASON_CODE],
2774 : 347 : tb[NL80211_ATTR_MAC],
2775 : 347 : tb[NL80211_ATTR_DISCONNECTED_BY_AP]);
2776 : 347 : break;
2777 : : case NL80211_CMD_MICHAEL_MIC_FAILURE:
2778 : 0 : mlme_event_michael_mic_failure(bss, tb);
2779 : 0 : break;
2780 : : case NL80211_CMD_JOIN_IBSS:
2781 : 6 : mlme_event_join_ibss(drv, tb);
2782 : 6 : break;
2783 : : case NL80211_CMD_REMAIN_ON_CHANNEL:
2784 : 584 : mlme_event_remain_on_channel(drv, 0, tb);
2785 : 584 : break;
2786 : : case NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL:
2787 : 584 : mlme_event_remain_on_channel(drv, 1, tb);
2788 : 584 : break;
2789 : : case NL80211_CMD_NOTIFY_CQM:
2790 : 0 : nl80211_cqm_event(drv, tb);
2791 : 0 : break;
2792 : : case NL80211_CMD_REG_CHANGE:
2793 : 1042 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory domain change");
2794 [ - + ]: 1042 : if (tb[NL80211_ATTR_REG_INITIATOR] == NULL)
2795 : 0 : break;
2796 : 1042 : os_memset(&data, 0, sizeof(data));
2797 [ + - - - : 1042 : switch (nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR])) {
- ]
2798 : : case NL80211_REGDOM_SET_BY_CORE:
2799 : 1042 : data.channel_list_changed.initiator =
2800 : : REGDOM_SET_BY_CORE;
2801 : 1042 : break;
2802 : : case NL80211_REGDOM_SET_BY_USER:
2803 : 0 : data.channel_list_changed.initiator =
2804 : : REGDOM_SET_BY_USER;
2805 : 0 : break;
2806 : : case NL80211_REGDOM_SET_BY_DRIVER:
2807 : 0 : data.channel_list_changed.initiator =
2808 : : REGDOM_SET_BY_DRIVER;
2809 : 0 : break;
2810 : : case NL80211_REGDOM_SET_BY_COUNTRY_IE:
2811 : 0 : data.channel_list_changed.initiator =
2812 : : REGDOM_SET_BY_COUNTRY_IE;
2813 : 0 : break;
2814 : : default:
2815 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown reg change initiator %d received",
2816 : 0 : nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR]));
2817 : 0 : break;
2818 : : }
2819 : 1042 : wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
2820 : : &data);
2821 : 1042 : break;
2822 : : case NL80211_CMD_REG_BEACON_HINT:
2823 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory beacon hint");
2824 : 0 : wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
2825 : : NULL);
2826 : 0 : break;
2827 : : case NL80211_CMD_NEW_STATION:
2828 : 782 : nl80211_new_station_event(drv, tb);
2829 : 782 : break;
2830 : : case NL80211_CMD_DEL_STATION:
2831 : 760 : nl80211_del_station_event(drv, tb);
2832 : 760 : break;
2833 : : case NL80211_CMD_SET_REKEY_OFFLOAD:
2834 : 0 : nl80211_rekey_offload_event(drv, tb);
2835 : 0 : break;
2836 : : case NL80211_CMD_PMKSA_CANDIDATE:
2837 : 0 : nl80211_pmksa_candidate_event(drv, tb);
2838 : 0 : break;
2839 : : case NL80211_CMD_PROBE_CLIENT:
2840 : 0 : nl80211_client_probe_event(drv, tb);
2841 : 0 : break;
2842 : : case NL80211_CMD_TDLS_OPER:
2843 : 0 : nl80211_tdls_oper_event(drv, tb);
2844 : 0 : break;
2845 : : case NL80211_CMD_CONN_FAILED:
2846 : 0 : nl80211_connect_failed_event(drv, tb);
2847 : 0 : break;
2848 : : case NL80211_CMD_FT_EVENT:
2849 : 0 : mlme_event_ft_event(drv, tb);
2850 : 0 : break;
2851 : : case NL80211_CMD_RADAR_DETECT:
2852 : 0 : nl80211_radar_event(drv, tb);
2853 : 0 : break;
2854 : : case NL80211_CMD_STOP_AP:
2855 : 0 : nl80211_stop_ap(drv, tb);
2856 : 0 : break;
2857 : : default:
2858 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Ignored unknown event "
2859 : : "(cmd=%d)", cmd);
2860 : 0 : break;
2861 : : }
2862 : 8718 : }
2863 : :
2864 : :
2865 : 0 : static int process_drv_event(struct nl_msg *msg, void *arg)
2866 : : {
2867 : 0 : struct wpa_driver_nl80211_data *drv = arg;
2868 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2869 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2870 : : struct i802_bss *bss;
2871 : 0 : int ifidx = -1;
2872 : :
2873 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2874 : : genlmsg_attrlen(gnlh, 0), NULL);
2875 : :
2876 [ # # ]: 0 : if (tb[NL80211_ATTR_IFINDEX]) {
2877 : 0 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
2878 : :
2879 [ # # ]: 0 : for (bss = drv->first_bss; bss; bss = bss->next)
2880 [ # # ][ # # ]: 0 : if (ifidx == -1 || ifidx == bss->ifindex) {
2881 : 0 : do_process_drv_event(bss, gnlh->cmd, tb);
2882 : 0 : return NL_SKIP;
2883 : : }
2884 : 0 : wpa_printf(MSG_DEBUG,
2885 : : "nl80211: Ignored event (cmd=%d) for foreign interface (ifindex %d)",
2886 : 0 : gnlh->cmd, ifidx);
2887 [ # # ]: 0 : } else if (tb[NL80211_ATTR_WDEV]) {
2888 : 0 : u64 wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
2889 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Process event on P2P device");
2890 [ # # ]: 0 : for (bss = drv->first_bss; bss; bss = bss->next) {
2891 [ # # ][ # # ]: 0 : if (bss->wdev_id_set && wdev_id == bss->wdev_id) {
2892 : 0 : do_process_drv_event(bss, gnlh->cmd, tb);
2893 : 0 : return NL_SKIP;
2894 : : }
2895 : : }
2896 : 0 : wpa_printf(MSG_DEBUG,
2897 : : "nl80211: Ignored event (cmd=%d) for foreign interface (wdev 0x%llx)",
2898 : 0 : gnlh->cmd, (long long unsigned int) wdev_id);
2899 : : }
2900 : :
2901 : 0 : return NL_SKIP;
2902 : : }
2903 : :
2904 : :
2905 : 32738 : static int process_global_event(struct nl_msg *msg, void *arg)
2906 : : {
2907 : 32738 : struct nl80211_global *global = arg;
2908 : 32738 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2909 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2910 : : struct wpa_driver_nl80211_data *drv, *tmp;
2911 : 32738 : int ifidx = -1;
2912 : : struct i802_bss *bss;
2913 : 32738 : u64 wdev_id = 0;
2914 : 32738 : int wdev_id_set = 0;
2915 : :
2916 : 32738 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2917 : : genlmsg_attrlen(gnlh, 0), NULL);
2918 : :
2919 [ + + ]: 32738 : if (tb[NL80211_ATTR_IFINDEX])
2920 : 31606 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
2921 [ - + ]: 1132 : else if (tb[NL80211_ATTR_WDEV]) {
2922 : 0 : wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
2923 : 0 : wdev_id_set = 1;
2924 : : }
2925 : :
2926 [ + + ]: 53585 : dl_list_for_each_safe(drv, tmp, &global->interfaces,
2927 : : struct wpa_driver_nl80211_data, list) {
2928 [ + + ]: 51235 : for (bss = drv->first_bss; bss; bss = bss->next) {
2929 [ + + ][ - + ]: 30388 : if ((ifidx == -1 && !wdev_id_set) ||
[ + + ]
2930 [ - + ]: 21670 : ifidx == bss->ifindex ||
2931 [ # # ][ # # ]: 0 : (wdev_id_set && bss->wdev_id_set &&
2932 : 0 : wdev_id == bss->wdev_id)) {
2933 : 8718 : do_process_drv_event(bss, gnlh->cmd, tb);
2934 : 8718 : return NL_SKIP;
2935 : : }
2936 : : }
2937 : : }
2938 : :
2939 : 32738 : return NL_SKIP;
2940 : : }
2941 : :
2942 : :
2943 : 2265 : static int process_bss_event(struct nl_msg *msg, void *arg)
2944 : : {
2945 : 2265 : struct i802_bss *bss = arg;
2946 : 2265 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
2947 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
2948 : :
2949 : 2265 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
2950 : : genlmsg_attrlen(gnlh, 0), NULL);
2951 : :
2952 : 2265 : wpa_printf(MSG_DEBUG, "nl80211: BSS Event %d (%s) received for %s",
2953 : 4530 : gnlh->cmd, nl80211_command_to_string(gnlh->cmd),
2954 : 2265 : bss->ifname);
2955 : :
2956 [ + - - - ]: 2265 : switch (gnlh->cmd) {
2957 : : case NL80211_CMD_FRAME:
2958 : : case NL80211_CMD_FRAME_TX_STATUS:
2959 : 2265 : mlme_event(bss, gnlh->cmd, tb[NL80211_ATTR_FRAME],
2960 : : tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
2961 : : tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
2962 : : tb[NL80211_ATTR_COOKIE],
2963 : : tb[NL80211_ATTR_RX_SIGNAL_DBM]);
2964 : 2265 : break;
2965 : : case NL80211_CMD_UNEXPECTED_FRAME:
2966 : 0 : nl80211_spurious_frame(bss, tb, 0);
2967 : 0 : break;
2968 : : case NL80211_CMD_UNEXPECTED_4ADDR_FRAME:
2969 : 0 : nl80211_spurious_frame(bss, tb, 1);
2970 : 0 : break;
2971 : : default:
2972 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
2973 : 0 : "(cmd=%d)", gnlh->cmd);
2974 : 0 : break;
2975 : : }
2976 : :
2977 : 2265 : return NL_SKIP;
2978 : : }
2979 : :
2980 : :
2981 : 34967 : static void wpa_driver_nl80211_event_receive(int sock, void *eloop_ctx,
2982 : : void *handle)
2983 : : {
2984 : 34967 : struct nl_cb *cb = eloop_ctx;
2985 : : int res;
2986 : :
2987 : 34967 : wpa_printf(MSG_MSGDUMP, "nl80211: Event message available");
2988 : :
2989 : 34967 : res = nl_recvmsgs(handle, cb);
2990 [ - + ]: 34967 : if (res) {
2991 : 0 : wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
2992 : : __func__, res);
2993 : : }
2994 : 34967 : }
2995 : :
2996 : :
2997 : : /**
2998 : : * wpa_driver_nl80211_set_country - ask nl80211 to set the regulatory domain
2999 : : * @priv: driver_nl80211 private data
3000 : : * @alpha2_arg: country to which to switch to
3001 : : * Returns: 0 on success, -1 on failure
3002 : : *
3003 : : * This asks nl80211 to set the regulatory domain for given
3004 : : * country ISO / IEC alpha2.
3005 : : */
3006 : 0 : static int wpa_driver_nl80211_set_country(void *priv, const char *alpha2_arg)
3007 : : {
3008 : 0 : struct i802_bss *bss = priv;
3009 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
3010 : : char alpha2[3];
3011 : : struct nl_msg *msg;
3012 : :
3013 : 0 : msg = nlmsg_alloc();
3014 [ # # ]: 0 : if (!msg)
3015 : 0 : return -ENOMEM;
3016 : :
3017 : 0 : alpha2[0] = alpha2_arg[0];
3018 : 0 : alpha2[1] = alpha2_arg[1];
3019 : 0 : alpha2[2] = '\0';
3020 : :
3021 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REQ_SET_REG);
3022 : :
3023 [ # # ]: 0 : NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2, alpha2);
3024 [ # # ]: 0 : if (send_and_recv_msgs(drv, msg, NULL, NULL))
3025 : 0 : return -EINVAL;
3026 : 0 : return 0;
3027 : : nla_put_failure:
3028 : 0 : nlmsg_free(msg);
3029 : 0 : return -EINVAL;
3030 : : }
3031 : :
3032 : :
3033 : 0 : static int nl80211_get_country(struct nl_msg *msg, void *arg)
3034 : : {
3035 : 0 : char *alpha2 = arg;
3036 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
3037 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3038 : :
3039 : 0 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3040 : : genlmsg_attrlen(gnlh, 0), NULL);
3041 [ # # ]: 0 : if (!tb_msg[NL80211_ATTR_REG_ALPHA2]) {
3042 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No country information available");
3043 : 0 : return NL_SKIP;
3044 : : }
3045 : 0 : os_strlcpy(alpha2, nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]), 3);
3046 : 0 : return NL_SKIP;
3047 : : }
3048 : :
3049 : :
3050 : 0 : static int wpa_driver_nl80211_get_country(void *priv, char *alpha2)
3051 : : {
3052 : 0 : struct i802_bss *bss = priv;
3053 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
3054 : : struct nl_msg *msg;
3055 : : int ret;
3056 : :
3057 : 0 : msg = nlmsg_alloc();
3058 [ # # ]: 0 : if (!msg)
3059 : 0 : return -ENOMEM;
3060 : :
3061 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
3062 : 0 : alpha2[0] = '\0';
3063 : 0 : ret = send_and_recv_msgs(drv, msg, nl80211_get_country, alpha2);
3064 [ # # ]: 0 : if (!alpha2[0])
3065 : 0 : ret = -1;
3066 : :
3067 : 0 : return ret;
3068 : : }
3069 : :
3070 : :
3071 : 1299 : static int protocol_feature_handler(struct nl_msg *msg, void *arg)
3072 : : {
3073 : 1299 : u32 *feat = arg;
3074 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
3075 : 1299 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3076 : :
3077 : 1299 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3078 : : genlmsg_attrlen(gnlh, 0), NULL);
3079 : :
3080 [ + - ]: 1299 : if (tb_msg[NL80211_ATTR_PROTOCOL_FEATURES])
3081 : 1299 : *feat = nla_get_u32(tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]);
3082 : :
3083 : 1299 : return NL_SKIP;
3084 : : }
3085 : :
3086 : :
3087 : 1299 : static u32 get_nl80211_protocol_features(struct wpa_driver_nl80211_data *drv)
3088 : : {
3089 : 1299 : u32 feat = 0;
3090 : : struct nl_msg *msg;
3091 : :
3092 : 1299 : msg = nlmsg_alloc();
3093 [ - + ]: 1299 : if (!msg)
3094 : 0 : goto nla_put_failure;
3095 : :
3096 : 1299 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_PROTOCOL_FEATURES);
3097 [ + - ]: 1299 : if (send_and_recv_msgs(drv, msg, protocol_feature_handler, &feat) == 0)
3098 : 1299 : return feat;
3099 : :
3100 : 0 : msg = NULL;
3101 : : nla_put_failure:
3102 : 0 : nlmsg_free(msg);
3103 : 1299 : return 0;
3104 : : }
3105 : :
3106 : :
3107 : : struct wiphy_info_data {
3108 : : struct wpa_driver_nl80211_data *drv;
3109 : : struct wpa_driver_capa *capa;
3110 : :
3111 : : unsigned int num_multichan_concurrent;
3112 : :
3113 : : unsigned int error:1;
3114 : : unsigned int device_ap_sme:1;
3115 : : unsigned int poll_command_supported:1;
3116 : : unsigned int data_tx_status:1;
3117 : : unsigned int monitor_supported:1;
3118 : : unsigned int auth_supported:1;
3119 : : unsigned int connect_supported:1;
3120 : : unsigned int p2p_go_supported:1;
3121 : : unsigned int p2p_client_supported:1;
3122 : : unsigned int p2p_concurrent:1;
3123 : : unsigned int channel_switch_supported:1;
3124 : : unsigned int set_qos_map_supported:1;
3125 : : };
3126 : :
3127 : :
3128 : 0 : static unsigned int probe_resp_offload_support(int supp_protocols)
3129 : : {
3130 : 0 : unsigned int prot = 0;
3131 : :
3132 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS)
3133 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS;
3134 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2)
3135 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2;
3136 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P)
3137 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P;
3138 [ # # ]: 0 : if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U)
3139 : 0 : prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING;
3140 : :
3141 : 0 : return prot;
3142 : : }
3143 : :
3144 : :
3145 : 10070 : static void wiphy_info_supported_iftypes(struct wiphy_info_data *info,
3146 : : struct nlattr *tb)
3147 : : {
3148 : : struct nlattr *nl_mode;
3149 : : int i;
3150 : :
3151 [ + + ]: 10070 : if (tb == NULL)
3152 : 10070 : return;
3153 : :
3154 [ + + ]: 1710 : nla_for_each_nested(nl_mode, tb, i) {
3155 [ + + + + : 1520 : switch (nla_type(nl_mode)) {
+ + + ]
3156 : : case NL80211_IFTYPE_AP:
3157 : 190 : info->capa->flags |= WPA_DRIVER_FLAGS_AP;
3158 : 190 : break;
3159 : : case NL80211_IFTYPE_ADHOC:
3160 : 190 : info->capa->flags |= WPA_DRIVER_FLAGS_IBSS;
3161 : 190 : break;
3162 : : case NL80211_IFTYPE_P2P_DEVICE:
3163 : 190 : info->capa->flags |=
3164 : : WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
3165 : 190 : break;
3166 : : case NL80211_IFTYPE_P2P_GO:
3167 : 190 : info->p2p_go_supported = 1;
3168 : 190 : break;
3169 : : case NL80211_IFTYPE_P2P_CLIENT:
3170 : 190 : info->p2p_client_supported = 1;
3171 : 190 : break;
3172 : : case NL80211_IFTYPE_MONITOR:
3173 : 190 : info->monitor_supported = 1;
3174 : 190 : break;
3175 : : }
3176 : : }
3177 : : }
3178 : :
3179 : :
3180 : 190 : static int wiphy_info_iface_comb_process(struct wiphy_info_data *info,
3181 : : struct nlattr *nl_combi)
3182 : : {
3183 : : struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
3184 : : struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
3185 : : struct nlattr *nl_limit, *nl_mode;
3186 : : int err, rem_limit, rem_mode;
3187 : 190 : int combination_has_p2p = 0, combination_has_mgd = 0;
3188 : : static struct nla_policy
3189 : : iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
3190 : : [NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
3191 : : [NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
3192 : : [NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
3193 : : [NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
3194 : : [NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS] = { .type = NLA_U32 },
3195 : : },
3196 : : iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
3197 : : [NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
3198 : : [NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
3199 : : };
3200 : :
3201 : 190 : err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
3202 : : nl_combi, iface_combination_policy);
3203 [ + - ][ + - ]: 190 : if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
[ + - ]
3204 [ - + ]: 190 : !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
3205 : 190 : !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
3206 : 0 : return 0; /* broken combination */
3207 : :
3208 [ + - ]: 190 : if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS])
3209 : 190 : info->capa->flags |= WPA_DRIVER_FLAGS_RADAR;
3210 : :
3211 [ + - ]: 380 : nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS],
3212 : : rem_limit) {
3213 : 380 : err = nla_parse_nested(tb_limit, MAX_NL80211_IFACE_LIMIT,
3214 : : nl_limit, iface_limit_policy);
3215 [ - + ][ + - ]: 380 : if (err || !tb_limit[NL80211_IFACE_LIMIT_TYPES])
3216 : 0 : return 0; /* broken combination */
3217 : :
3218 [ + + ]: 1330 : nla_for_each_nested(nl_mode,
3219 : : tb_limit[NL80211_IFACE_LIMIT_TYPES],
3220 : : rem_mode) {
3221 : 950 : int ift = nla_type(nl_mode);
3222 [ + + ][ + + ]: 950 : if (ift == NL80211_IFTYPE_P2P_GO ||
3223 : : ift == NL80211_IFTYPE_P2P_CLIENT)
3224 : 380 : combination_has_p2p = 1;
3225 [ + + ]: 950 : if (ift == NL80211_IFTYPE_STATION)
3226 : 190 : combination_has_mgd = 1;
3227 : : }
3228 [ + + ][ + - ]: 380 : if (combination_has_p2p && combination_has_mgd)
3229 : 190 : break;
3230 : : }
3231 : :
3232 [ + - ][ + - ]: 190 : if (combination_has_p2p && combination_has_mgd) {
3233 : 190 : info->p2p_concurrent = 1;
3234 : 190 : info->num_multichan_concurrent =
3235 : 190 : nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]);
3236 : 190 : return 1;
3237 : : }
3238 : :
3239 : 190 : return 0;
3240 : : }
3241 : :
3242 : :
3243 : 10070 : static void wiphy_info_iface_comb(struct wiphy_info_data *info,
3244 : : struct nlattr *tb)
3245 : : {
3246 : : struct nlattr *nl_combi;
3247 : : int rem_combi;
3248 : :
3249 [ + + ]: 10070 : if (tb == NULL)
3250 : 10070 : return;
3251 : :
3252 [ + - ]: 190 : nla_for_each_nested(nl_combi, tb, rem_combi) {
3253 [ + - ]: 190 : if (wiphy_info_iface_comb_process(info, nl_combi) > 0)
3254 : 190 : break;
3255 : : }
3256 : : }
3257 : :
3258 : :
3259 : 10070 : static void wiphy_info_supp_cmds(struct wiphy_info_data *info,
3260 : : struct nlattr *tb)
3261 : : {
3262 : : struct nlattr *nl_cmd;
3263 : : int i;
3264 : :
3265 [ + + ]: 10070 : if (tb == NULL)
3266 : 10070 : return;
3267 : :
3268 [ + + ]: 5510 : nla_for_each_nested(nl_cmd, tb, i) {
3269 [ + + - + : 5320 : switch (nla_get_u32(nl_cmd)) {
- + + ]
3270 : : case NL80211_CMD_AUTHENTICATE:
3271 : 190 : info->auth_supported = 1;
3272 : 190 : break;
3273 : : case NL80211_CMD_CONNECT:
3274 : 190 : info->connect_supported = 1;
3275 : 190 : break;
3276 : : case NL80211_CMD_START_SCHED_SCAN:
3277 : 0 : info->capa->sched_scan_supported = 1;
3278 : 0 : break;
3279 : : case NL80211_CMD_PROBE_CLIENT:
3280 : 190 : info->poll_command_supported = 1;
3281 : 190 : break;
3282 : : case NL80211_CMD_CHANNEL_SWITCH:
3283 : 0 : info->channel_switch_supported = 1;
3284 : 0 : break;
3285 : : case NL80211_CMD_SET_QOS_MAP:
3286 : 190 : info->set_qos_map_supported = 1;
3287 : 190 : break;
3288 : : }
3289 : : }
3290 : : }
3291 : :
3292 : :
3293 : 10070 : static void wiphy_info_cipher_suites(struct wiphy_info_data *info,
3294 : : struct nlattr *tb)
3295 : : {
3296 : : int i, num;
3297 : : u32 *ciphers;
3298 : :
3299 [ + + ]: 10070 : if (tb == NULL)
3300 : 10070 : return;
3301 : :
3302 : 190 : num = nla_len(tb) / sizeof(u32);
3303 : 190 : ciphers = nla_data(tb);
3304 [ + + ]: 2280 : for (i = 0; i < num; i++) {
3305 : 2090 : u32 c = ciphers[i];
3306 : :
3307 : 2090 : wpa_printf(MSG_DEBUG, "nl80211: Supported cipher %02x-%02x-%02x:%d",
3308 : 2090 : c >> 24, (c >> 16) & 0xff,
3309 : 2090 : (c >> 8) & 0xff, c & 0xff);
3310 [ + + + + : 2090 : switch (c) {
+ + + + +
+ + - ]
3311 : : case WLAN_CIPHER_SUITE_CCMP_256:
3312 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP_256;
3313 : 190 : break;
3314 : : case WLAN_CIPHER_SUITE_GCMP_256:
3315 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP_256;
3316 : 190 : break;
3317 : : case WLAN_CIPHER_SUITE_CCMP:
3318 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP;
3319 : 190 : break;
3320 : : case WLAN_CIPHER_SUITE_GCMP:
3321 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP;
3322 : 190 : break;
3323 : : case WLAN_CIPHER_SUITE_TKIP:
3324 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_TKIP;
3325 : 190 : break;
3326 : : case WLAN_CIPHER_SUITE_WEP104:
3327 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP104;
3328 : 190 : break;
3329 : : case WLAN_CIPHER_SUITE_WEP40:
3330 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP40;
3331 : 190 : break;
3332 : : case WLAN_CIPHER_SUITE_AES_CMAC:
3333 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP;
3334 : 190 : break;
3335 : : case WLAN_CIPHER_SUITE_BIP_GMAC_128:
3336 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_128;
3337 : 190 : break;
3338 : : case WLAN_CIPHER_SUITE_BIP_GMAC_256:
3339 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_256;
3340 : 190 : break;
3341 : : case WLAN_CIPHER_SUITE_BIP_CMAC_256:
3342 : 190 : info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_CMAC_256;
3343 : 190 : break;
3344 : : }
3345 : : }
3346 : : }
3347 : :
3348 : :
3349 : 10070 : static void wiphy_info_max_roc(struct wpa_driver_capa *capa,
3350 : : struct nlattr *tb)
3351 : : {
3352 [ + + ]: 10070 : if (tb)
3353 : 190 : capa->max_remain_on_chan = nla_get_u32(tb);
3354 : 10070 : }
3355 : :
3356 : :
3357 : 10070 : static void wiphy_info_tdls(struct wpa_driver_capa *capa, struct nlattr *tdls,
3358 : : struct nlattr *ext_setup)
3359 : : {
3360 [ + + ]: 10070 : if (tdls == NULL)
3361 : 10070 : return;
3362 : :
3363 : 190 : wpa_printf(MSG_DEBUG, "nl80211: TDLS supported");
3364 : 190 : capa->flags |= WPA_DRIVER_FLAGS_TDLS_SUPPORT;
3365 : :
3366 [ + - ]: 190 : if (ext_setup) {
3367 : 190 : wpa_printf(MSG_DEBUG, "nl80211: TDLS external setup");
3368 : 190 : capa->flags |= WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP;
3369 : : }
3370 : : }
3371 : :
3372 : :
3373 : 10070 : static void wiphy_info_feature_flags(struct wiphy_info_data *info,
3374 : : struct nlattr *tb)
3375 : : {
3376 : : u32 flags;
3377 : 10070 : struct wpa_driver_capa *capa = info->capa;
3378 : :
3379 [ + + ]: 10070 : if (tb == NULL)
3380 : 10070 : return;
3381 : :
3382 : 190 : flags = nla_get_u32(tb);
3383 : :
3384 [ + - ]: 190 : if (flags & NL80211_FEATURE_SK_TX_STATUS)
3385 : 190 : info->data_tx_status = 1;
3386 : :
3387 [ - + ]: 190 : if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
3388 : 0 : capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
3389 : :
3390 [ + - ]: 190 : if (flags & NL80211_FEATURE_SAE)
3391 : 190 : capa->flags |= WPA_DRIVER_FLAGS_SAE;
3392 : :
3393 [ - + ]: 190 : if (flags & NL80211_FEATURE_NEED_OBSS_SCAN)
3394 : 0 : capa->flags |= WPA_DRIVER_FLAGS_OBSS_SCAN;
3395 : : }
3396 : :
3397 : :
3398 : 10070 : static void wiphy_info_probe_resp_offload(struct wpa_driver_capa *capa,
3399 : : struct nlattr *tb)
3400 : : {
3401 : : u32 protocols;
3402 : :
3403 [ + - ]: 10070 : if (tb == NULL)
3404 : 10070 : return;
3405 : :
3406 : 0 : protocols = nla_get_u32(tb);
3407 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Supports Probe Response offload in AP "
3408 : : "mode");
3409 : 0 : capa->flags |= WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD;
3410 : 0 : capa->probe_resp_offloads = probe_resp_offload_support(protocols);
3411 : : }
3412 : :
3413 : :
3414 : 10070 : static int wiphy_info_handler(struct nl_msg *msg, void *arg)
3415 : : {
3416 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
3417 : 10070 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
3418 : 10070 : struct wiphy_info_data *info = arg;
3419 : 10070 : struct wpa_driver_capa *capa = info->capa;
3420 : 10070 : struct wpa_driver_nl80211_data *drv = info->drv;
3421 : :
3422 : 10070 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
3423 : : genlmsg_attrlen(gnlh, 0), NULL);
3424 : :
3425 [ + - ]: 10070 : if (tb[NL80211_ATTR_WIPHY_NAME])
3426 : 10070 : os_strlcpy(drv->phyname,
3427 : 10070 : nla_get_string(tb[NL80211_ATTR_WIPHY_NAME]),
3428 : : sizeof(drv->phyname));
3429 [ + + ]: 10070 : if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
3430 : 190 : capa->max_scan_ssids =
3431 : 190 : nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
3432 : :
3433 [ + + ]: 10070 : if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
3434 : 190 : capa->max_sched_scan_ssids =
3435 : 190 : nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
3436 : :
3437 [ + + ]: 10070 : if (tb[NL80211_ATTR_MAX_MATCH_SETS])
3438 : 190 : capa->max_match_sets =
3439 : 190 : nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
3440 : :
3441 [ - + ]: 10070 : if (tb[NL80211_ATTR_MAC_ACL_MAX])
3442 : 0 : capa->max_acl_mac_addrs =
3443 : 0 : nla_get_u8(tb[NL80211_ATTR_MAC_ACL_MAX]);
3444 : :
3445 : 10070 : wiphy_info_supported_iftypes(info, tb[NL80211_ATTR_SUPPORTED_IFTYPES]);
3446 : 10070 : wiphy_info_iface_comb(info, tb[NL80211_ATTR_INTERFACE_COMBINATIONS]);
3447 : 10070 : wiphy_info_supp_cmds(info, tb[NL80211_ATTR_SUPPORTED_COMMANDS]);
3448 : 10070 : wiphy_info_cipher_suites(info, tb[NL80211_ATTR_CIPHER_SUITES]);
3449 : :
3450 [ + + ]: 10070 : if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK]) {
3451 : 190 : wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
3452 : : "off-channel TX");
3453 : 190 : capa->flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
3454 : : }
3455 : :
3456 [ - + ]: 10070 : if (tb[NL80211_ATTR_ROAM_SUPPORT]) {
3457 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Using driver-based roaming");
3458 : 0 : capa->flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
3459 : : }
3460 : :
3461 : 10070 : wiphy_info_max_roc(capa,
3462 : : tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
3463 : :
3464 [ + + ]: 10070 : if (tb[NL80211_ATTR_SUPPORT_AP_UAPSD])
3465 : 190 : capa->flags |= WPA_DRIVER_FLAGS_AP_UAPSD;
3466 : :
3467 : 10070 : wiphy_info_tdls(capa, tb[NL80211_ATTR_TDLS_SUPPORT],
3468 : : tb[NL80211_ATTR_TDLS_EXTERNAL_SETUP]);
3469 : :
3470 [ - + ]: 10070 : if (tb[NL80211_ATTR_DEVICE_AP_SME])
3471 : 0 : info->device_ap_sme = 1;
3472 : :
3473 : 10070 : wiphy_info_feature_flags(info, tb[NL80211_ATTR_FEATURE_FLAGS]);
3474 : 10070 : wiphy_info_probe_resp_offload(capa,
3475 : : tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]);
3476 : :
3477 [ + - ][ + - ]: 10070 : if (tb[NL80211_ATTR_EXT_CAPA] && tb[NL80211_ATTR_EXT_CAPA_MASK] &&
[ + + ]
3478 : 190 : drv->extended_capa == NULL) {
3479 : 190 : drv->extended_capa =
3480 : 190 : os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3481 [ + - ]: 190 : if (drv->extended_capa) {
3482 : 190 : os_memcpy(drv->extended_capa,
3483 : : nla_data(tb[NL80211_ATTR_EXT_CAPA]),
3484 : : nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3485 : 190 : drv->extended_capa_len =
3486 : 190 : nla_len(tb[NL80211_ATTR_EXT_CAPA]);
3487 : : }
3488 : 190 : drv->extended_capa_mask =
3489 : 190 : os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3490 [ + - ]: 190 : if (drv->extended_capa_mask) {
3491 : 190 : os_memcpy(drv->extended_capa_mask,
3492 : : nla_data(tb[NL80211_ATTR_EXT_CAPA]),
3493 : : nla_len(tb[NL80211_ATTR_EXT_CAPA]));
3494 : : } else {
3495 : 0 : os_free(drv->extended_capa);
3496 : 0 : drv->extended_capa = NULL;
3497 : 0 : drv->extended_capa_len = 0;
3498 : : }
3499 : : }
3500 : :
3501 : 10070 : return NL_SKIP;
3502 : : }
3503 : :
3504 : :
3505 : 190 : static int wpa_driver_nl80211_get_info(struct wpa_driver_nl80211_data *drv,
3506 : : struct wiphy_info_data *info)
3507 : : {
3508 : : u32 feat;
3509 : : struct nl_msg *msg;
3510 : :
3511 : 190 : os_memset(info, 0, sizeof(*info));
3512 : 190 : info->capa = &drv->capa;
3513 : 190 : info->drv = drv;
3514 : :
3515 : 190 : msg = nlmsg_alloc();
3516 [ - + ]: 190 : if (!msg)
3517 : 0 : return -1;
3518 : :
3519 : 190 : feat = get_nl80211_protocol_features(drv);
3520 [ + - ]: 190 : if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
3521 : 190 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
3522 : : else
3523 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
3524 : :
3525 [ + - ]: 190 : NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
3526 [ - + ]: 190 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
3527 : 0 : goto nla_put_failure;
3528 : :
3529 [ - + ]: 190 : if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info))
3530 : 0 : return -1;
3531 : :
3532 [ + - ]: 190 : if (info->auth_supported)
3533 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_SME;
3534 [ # # ]: 0 : else if (!info->connect_supported) {
3535 : 0 : wpa_printf(MSG_INFO, "nl80211: Driver does not support "
3536 : : "authentication/association or connect commands");
3537 : 0 : info->error = 1;
3538 : : }
3539 : :
3540 [ + - ][ + - ]: 190 : if (info->p2p_go_supported && info->p2p_client_supported)
3541 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
3542 [ + - ]: 190 : if (info->p2p_concurrent) {
3543 : 190 : wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
3544 : : "interface (driver advertised support)");
3545 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
3546 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
3547 : : }
3548 [ - + ]: 190 : if (info->num_multichan_concurrent > 1) {
3549 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Enable multi-channel "
3550 : : "concurrent (driver advertised support)");
3551 : 0 : drv->capa.num_multichan_concurrent =
3552 : 0 : info->num_multichan_concurrent;
3553 : : }
3554 : :
3555 : : /* default to 5000 since early versions of mac80211 don't set it */
3556 [ - + ]: 190 : if (!drv->capa.max_remain_on_chan)
3557 : 0 : drv->capa.max_remain_on_chan = 5000;
3558 : :
3559 : 190 : return 0;
3560 : : nla_put_failure:
3561 : 0 : nlmsg_free(msg);
3562 : 190 : return -1;
3563 : : }
3564 : :
3565 : :
3566 : 190 : static int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
3567 : : {
3568 : : struct wiphy_info_data info;
3569 [ - + ]: 190 : if (wpa_driver_nl80211_get_info(drv, &info))
3570 : 0 : return -1;
3571 : :
3572 [ - + ]: 190 : if (info.error)
3573 : 0 : return -1;
3574 : :
3575 : 190 : drv->has_capability = 1;
3576 : 190 : drv->capa.key_mgmt = WPA_DRIVER_CAPA_KEY_MGMT_WPA |
3577 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
3578 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
3579 : : WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK;
3580 : 190 : drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
3581 : : WPA_DRIVER_AUTH_SHARED |
3582 : : WPA_DRIVER_AUTH_LEAP;
3583 : :
3584 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
3585 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
3586 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3587 : :
3588 [ + - ]: 190 : if (!info.device_ap_sme) {
3589 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS;
3590 : :
3591 : : /*
3592 : : * No AP SME is currently assumed to also indicate no AP MLME
3593 : : * in the driver/firmware.
3594 : : */
3595 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_AP_MLME;
3596 : : }
3597 : :
3598 : 190 : drv->device_ap_sme = info.device_ap_sme;
3599 : 190 : drv->poll_command_supported = info.poll_command_supported;
3600 : 190 : drv->data_tx_status = info.data_tx_status;
3601 : 190 : drv->channel_switch_supported = info.channel_switch_supported;
3602 [ + - ]: 190 : if (info.set_qos_map_supported)
3603 : 190 : drv->capa.flags |= WPA_DRIVER_FLAGS_QOS_MAPPING;
3604 : :
3605 : : /*
3606 : : * If poll command and tx status are supported, mac80211 is new enough
3607 : : * to have everything we need to not need monitor interfaces.
3608 : : */
3609 [ + - ][ - + ]: 190 : drv->use_monitor = !info.poll_command_supported || !info.data_tx_status;
3610 : :
3611 [ - + ][ # # ]: 190 : if (drv->device_ap_sme && drv->use_monitor) {
3612 : : /*
3613 : : * Non-mac80211 drivers may not support monitor interface.
3614 : : * Make sure we do not get stuck with incorrect capability here
3615 : : * by explicitly testing this.
3616 : : */
3617 [ # # ]: 0 : if (!info.monitor_supported) {
3618 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Disable use_monitor "
3619 : : "with device_ap_sme since no monitor mode "
3620 : : "support detected");
3621 : 0 : drv->use_monitor = 0;
3622 : : }
3623 : : }
3624 : :
3625 : : /*
3626 : : * If we aren't going to use monitor interfaces, but the
3627 : : * driver doesn't support data TX status, we won't get TX
3628 : : * status for EAPOL frames.
3629 : : */
3630 [ + - ][ - + ]: 190 : if (!drv->use_monitor && !info.data_tx_status)
3631 : 0 : drv->capa.flags &= ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3632 : :
3633 : 190 : return 0;
3634 : : }
3635 : :
3636 : :
3637 : : #ifdef ANDROID
3638 : : static int android_genl_ctrl_resolve(struct nl_handle *handle,
3639 : : const char *name)
3640 : : {
3641 : : /*
3642 : : * Android ICS has very minimal genl_ctrl_resolve() implementation, so
3643 : : * need to work around that.
3644 : : */
3645 : : struct nl_cache *cache = NULL;
3646 : : struct genl_family *nl80211 = NULL;
3647 : : int id = -1;
3648 : :
3649 : : if (genl_ctrl_alloc_cache(handle, &cache) < 0) {
3650 : : wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
3651 : : "netlink cache");
3652 : : goto fail;
3653 : : }
3654 : :
3655 : : nl80211 = genl_ctrl_search_by_name(cache, name);
3656 : : if (nl80211 == NULL)
3657 : : goto fail;
3658 : :
3659 : : id = genl_family_get_id(nl80211);
3660 : :
3661 : : fail:
3662 : : if (nl80211)
3663 : : genl_family_put(nl80211);
3664 : : if (cache)
3665 : : nl_cache_free(cache);
3666 : :
3667 : : return id;
3668 : : }
3669 : : #define genl_ctrl_resolve android_genl_ctrl_resolve
3670 : : #endif /* ANDROID */
3671 : :
3672 : :
3673 : 4 : static int wpa_driver_nl80211_init_nl_global(struct nl80211_global *global)
3674 : : {
3675 : : int ret;
3676 : :
3677 : 4 : global->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3678 [ - + ]: 4 : if (global->nl_cb == NULL) {
3679 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
3680 : : "callbacks");
3681 : 0 : return -1;
3682 : : }
3683 : :
3684 : 4 : global->nl = nl_create_handle(global->nl_cb, "nl");
3685 [ - + ]: 4 : if (global->nl == NULL)
3686 : 0 : goto err;
3687 : :
3688 : 4 : global->nl80211_id = genl_ctrl_resolve(global->nl, "nl80211");
3689 [ - + ]: 4 : if (global->nl80211_id < 0) {
3690 : 0 : wpa_printf(MSG_ERROR, "nl80211: 'nl80211' generic netlink not "
3691 : : "found");
3692 : 0 : goto err;
3693 : : }
3694 : :
3695 : 4 : global->nl_event = nl_create_handle(global->nl_cb, "event");
3696 [ - + ]: 4 : if (global->nl_event == NULL)
3697 : 0 : goto err;
3698 : :
3699 : 4 : ret = nl_get_multicast_id(global, "nl80211", "scan");
3700 [ + - ]: 4 : if (ret >= 0)
3701 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3702 [ - + ]: 4 : if (ret < 0) {
3703 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
3704 : : "membership for scan events: %d (%s)",
3705 : : ret, strerror(-ret));
3706 : 0 : goto err;
3707 : : }
3708 : :
3709 : 4 : ret = nl_get_multicast_id(global, "nl80211", "mlme");
3710 [ + - ]: 4 : if (ret >= 0)
3711 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3712 [ - + ]: 4 : if (ret < 0) {
3713 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
3714 : : "membership for mlme events: %d (%s)",
3715 : : ret, strerror(-ret));
3716 : 0 : goto err;
3717 : : }
3718 : :
3719 : 4 : ret = nl_get_multicast_id(global, "nl80211", "regulatory");
3720 [ + - ]: 4 : if (ret >= 0)
3721 : 4 : ret = nl_socket_add_membership(global->nl_event, ret);
3722 [ - + ]: 4 : if (ret < 0) {
3723 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
3724 : : "membership for regulatory events: %d (%s)",
3725 : : ret, strerror(-ret));
3726 : : /* Continue without regulatory events */
3727 : : }
3728 : :
3729 : 4 : nl_cb_set(global->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3730 : : no_seq_check, NULL);
3731 : 4 : nl_cb_set(global->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3732 : : process_global_event, global);
3733 : :
3734 : 4 : nl80211_register_eloop_read(&global->nl_event,
3735 : : wpa_driver_nl80211_event_receive,
3736 : 4 : global->nl_cb);
3737 : :
3738 : 4 : return 0;
3739 : :
3740 : : err:
3741 : 0 : nl_destroy_handles(&global->nl_event);
3742 : 0 : nl_destroy_handles(&global->nl);
3743 : 0 : nl_cb_put(global->nl_cb);
3744 : 0 : global->nl_cb = NULL;
3745 : 4 : return -1;
3746 : : }
3747 : :
3748 : :
3749 : 190 : static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv)
3750 : : {
3751 : 190 : drv->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3752 [ - + ]: 190 : if (!drv->nl_cb) {
3753 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to alloc cb struct");
3754 : 0 : return -1;
3755 : : }
3756 : :
3757 : 190 : nl_cb_set(drv->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3758 : : no_seq_check, NULL);
3759 : 190 : nl_cb_set(drv->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3760 : : process_drv_event, drv);
3761 : :
3762 : 190 : return 0;
3763 : : }
3764 : :
3765 : :
3766 : 0 : static void wpa_driver_nl80211_rfkill_blocked(void *ctx)
3767 : : {
3768 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL blocked");
3769 : : /*
3770 : : * This may be for any interface; use ifdown event to disable
3771 : : * interface.
3772 : : */
3773 : 0 : }
3774 : :
3775 : :
3776 : 0 : static void wpa_driver_nl80211_rfkill_unblocked(void *ctx)
3777 : : {
3778 : 0 : struct wpa_driver_nl80211_data *drv = ctx;
3779 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL unblocked");
3780 [ # # ]: 0 : if (i802_set_iface_flags(drv->first_bss, 1)) {
3781 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not set interface UP "
3782 : : "after rfkill unblock");
3783 : 0 : return;
3784 : : }
3785 : : /* rtnetlink ifup handler will report interface as enabled */
3786 : : }
3787 : :
3788 : :
3789 : 1430 : static void wpa_driver_nl80211_handle_eapol_tx_status(int sock,
3790 : : void *eloop_ctx,
3791 : : void *handle)
3792 : : {
3793 : 1430 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
3794 : : u8 data[2048];
3795 : : struct msghdr msg;
3796 : : struct iovec entry;
3797 : : u8 control[512];
3798 : : struct cmsghdr *cmsg;
3799 : 1430 : int res, found_ee = 0, found_wifi = 0, acked = 0;
3800 : : union wpa_event_data event;
3801 : :
3802 : 1430 : memset(&msg, 0, sizeof(msg));
3803 : 1430 : msg.msg_iov = &entry;
3804 : 1430 : msg.msg_iovlen = 1;
3805 : 1430 : entry.iov_base = data;
3806 : 1430 : entry.iov_len = sizeof(data);
3807 : 1430 : msg.msg_control = &control;
3808 : 1430 : msg.msg_controllen = sizeof(control);
3809 : :
3810 : 1430 : res = recvmsg(sock, &msg, MSG_ERRQUEUE);
3811 : : /* if error or not fitting 802.3 header, return */
3812 [ - + ]: 1430 : if (res < 14)
3813 : 0 : return;
3814 : :
3815 [ + - ][ + + ]: 4290 : for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg))
3816 : : {
3817 [ + + ][ + - ]: 2860 : if (cmsg->cmsg_level == SOL_SOCKET &&
3818 : 1430 : cmsg->cmsg_type == SCM_WIFI_STATUS) {
3819 : : int *ack;
3820 : :
3821 : 1430 : found_wifi = 1;
3822 : 1430 : ack = (void *)CMSG_DATA(cmsg);
3823 : 1430 : acked = *ack;
3824 : : }
3825 : :
3826 [ + + ][ + - ]: 2860 : if (cmsg->cmsg_level == SOL_PACKET &&
3827 : 1430 : cmsg->cmsg_type == PACKET_TX_TIMESTAMP) {
3828 : 1430 : struct sock_extended_err *err =
3829 : : (struct sock_extended_err *)CMSG_DATA(cmsg);
3830 : :
3831 [ + - ]: 1430 : if (err->ee_origin == SO_EE_ORIGIN_TXSTATUS)
3832 : 1430 : found_ee = 1;
3833 : : }
3834 : : }
3835 : :
3836 [ + - ][ - + ]: 1430 : if (!found_ee || !found_wifi)
3837 : 0 : return;
3838 : :
3839 : 1430 : memset(&event, 0, sizeof(event));
3840 : 1430 : event.eapol_tx_status.dst = data;
3841 : 1430 : event.eapol_tx_status.data = data + 14;
3842 : 1430 : event.eapol_tx_status.data_len = res - 14;
3843 : 1430 : event.eapol_tx_status.ack = acked;
3844 : 1430 : wpa_supplicant_event(drv->ctx, EVENT_EAPOL_TX_STATUS, &event);
3845 : : }
3846 : :
3847 : :
3848 : 207 : static int nl80211_init_bss(struct i802_bss *bss)
3849 : : {
3850 : 207 : bss->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
3851 [ - + ]: 207 : if (!bss->nl_cb)
3852 : 0 : return -1;
3853 : :
3854 : 207 : nl_cb_set(bss->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
3855 : : no_seq_check, NULL);
3856 : 207 : nl_cb_set(bss->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
3857 : : process_bss_event, bss);
3858 : :
3859 : 207 : return 0;
3860 : : }
3861 : :
3862 : :
3863 : 207 : static void nl80211_destroy_bss(struct i802_bss *bss)
3864 : : {
3865 : 207 : nl_cb_put(bss->nl_cb);
3866 : 207 : bss->nl_cb = NULL;
3867 : 207 : }
3868 : :
3869 : :
3870 : 190 : static void * wpa_driver_nl80211_drv_init(void *ctx, const char *ifname,
3871 : : void *global_priv, int hostapd,
3872 : : const u8 *set_addr)
3873 : : {
3874 : : struct wpa_driver_nl80211_data *drv;
3875 : : struct rfkill_config *rcfg;
3876 : : struct i802_bss *bss;
3877 : :
3878 [ - + ]: 190 : if (global_priv == NULL)
3879 : 0 : return NULL;
3880 : 190 : drv = os_zalloc(sizeof(*drv));
3881 [ - + ]: 190 : if (drv == NULL)
3882 : 0 : return NULL;
3883 : 190 : drv->global = global_priv;
3884 : 190 : drv->ctx = ctx;
3885 : 190 : drv->hostapd = !!hostapd;
3886 : 190 : drv->eapol_sock = -1;
3887 : 190 : drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
3888 : 190 : drv->if_indices = drv->default_if_indices;
3889 : :
3890 : 190 : drv->first_bss = os_zalloc(sizeof(*drv->first_bss));
3891 [ - + ]: 190 : if (!drv->first_bss) {
3892 : 0 : os_free(drv);
3893 : 0 : return NULL;
3894 : : }
3895 : 190 : bss = drv->first_bss;
3896 : 190 : bss->drv = drv;
3897 : 190 : bss->ctx = ctx;
3898 : :
3899 : 190 : os_strlcpy(bss->ifname, ifname, sizeof(bss->ifname));
3900 : 190 : drv->monitor_ifidx = -1;
3901 : 190 : drv->monitor_sock = -1;
3902 : 190 : drv->eapol_tx_sock = -1;
3903 : 190 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
3904 : :
3905 [ - + ]: 190 : if (wpa_driver_nl80211_init_nl(drv)) {
3906 : 0 : os_free(drv);
3907 : 0 : return NULL;
3908 : : }
3909 : :
3910 [ - + ]: 190 : if (nl80211_init_bss(bss))
3911 : 0 : goto failed;
3912 : :
3913 : 190 : rcfg = os_zalloc(sizeof(*rcfg));
3914 [ - + ]: 190 : if (rcfg == NULL)
3915 : 0 : goto failed;
3916 : 190 : rcfg->ctx = drv;
3917 : 190 : os_strlcpy(rcfg->ifname, ifname, sizeof(rcfg->ifname));
3918 : 190 : rcfg->blocked_cb = wpa_driver_nl80211_rfkill_blocked;
3919 : 190 : rcfg->unblocked_cb = wpa_driver_nl80211_rfkill_unblocked;
3920 : 190 : drv->rfkill = rfkill_init(rcfg);
3921 [ - + ]: 190 : if (drv->rfkill == NULL) {
3922 : 0 : wpa_printf(MSG_DEBUG, "nl80211: RFKILL status not available");
3923 : 0 : os_free(rcfg);
3924 : : }
3925 : :
3926 [ - + ]: 190 : if (linux_iface_up(drv->global->ioctl_sock, ifname) > 0)
3927 : 0 : drv->start_iface_up = 1;
3928 : :
3929 [ - + ]: 190 : if (wpa_driver_nl80211_finish_drv_init(drv, set_addr, 1))
3930 : 0 : goto failed;
3931 : :
3932 : 190 : drv->eapol_tx_sock = socket(PF_PACKET, SOCK_DGRAM, 0);
3933 [ - + ]: 190 : if (drv->eapol_tx_sock < 0)
3934 : 0 : goto failed;
3935 : :
3936 [ + - ]: 190 : if (drv->data_tx_status) {
3937 : 190 : int enabled = 1;
3938 : :
3939 [ - + ]: 190 : if (setsockopt(drv->eapol_tx_sock, SOL_SOCKET, SO_WIFI_STATUS,
3940 : : &enabled, sizeof(enabled)) < 0) {
3941 : 0 : wpa_printf(MSG_DEBUG,
3942 : : "nl80211: wifi status sockopt failed\n");
3943 : 0 : drv->data_tx_status = 0;
3944 [ # # ]: 0 : if (!drv->use_monitor)
3945 : 0 : drv->capa.flags &=
3946 : : ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
3947 : : } else {
3948 : 190 : eloop_register_read_sock(drv->eapol_tx_sock,
3949 : : wpa_driver_nl80211_handle_eapol_tx_status,
3950 : : drv, NULL);
3951 : : }
3952 : : }
3953 : :
3954 [ + - ]: 190 : if (drv->global) {
3955 : 190 : dl_list_add(&drv->global->interfaces, &drv->list);
3956 : 190 : drv->in_interface_list = 1;
3957 : : }
3958 : :
3959 : 190 : return bss;
3960 : :
3961 : : failed:
3962 : 0 : wpa_driver_nl80211_deinit(bss);
3963 : 190 : return NULL;
3964 : : }
3965 : :
3966 : :
3967 : : /**
3968 : : * wpa_driver_nl80211_init - Initialize nl80211 driver interface
3969 : : * @ctx: context to be used when calling wpa_supplicant functions,
3970 : : * e.g., wpa_supplicant_event()
3971 : : * @ifname: interface name, e.g., wlan0
3972 : : * @global_priv: private driver global data from global_init()
3973 : : * Returns: Pointer to private data, %NULL on failure
3974 : : */
3975 : 22 : static void * wpa_driver_nl80211_init(void *ctx, const char *ifname,
3976 : : void *global_priv)
3977 : : {
3978 : 22 : return wpa_driver_nl80211_drv_init(ctx, ifname, global_priv, 0, NULL);
3979 : : }
3980 : :
3981 : :
3982 : 4386 : static int nl80211_register_frame(struct i802_bss *bss,
3983 : : struct nl_handle *nl_handle,
3984 : : u16 type, const u8 *match, size_t match_len)
3985 : : {
3986 : 4386 : struct wpa_driver_nl80211_data *drv = bss->drv;
3987 : : struct nl_msg *msg;
3988 : 4386 : int ret = -1;
3989 : :
3990 : 4386 : msg = nlmsg_alloc();
3991 [ - + ]: 4386 : if (!msg)
3992 : 0 : return -1;
3993 : :
3994 : 4386 : wpa_printf(MSG_DEBUG, "nl80211: Register frame type=0x%x nl_handle=%p",
3995 : : type, nl_handle);
3996 : 4386 : wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
3997 : : match, match_len);
3998 : :
3999 : 4386 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_ACTION);
4000 : :
4001 [ - + ]: 4386 : if (nl80211_set_iface_id(msg, bss) < 0)
4002 : 0 : goto nla_put_failure;
4003 : :
4004 [ + - ]: 4386 : NLA_PUT_U16(msg, NL80211_ATTR_FRAME_TYPE, type);
4005 [ + - ]: 4386 : NLA_PUT(msg, NL80211_ATTR_FRAME_MATCH, match_len, match);
4006 : :
4007 : 4386 : ret = send_and_recv(drv->global, nl_handle, msg, NULL, NULL);
4008 : 4386 : msg = NULL;
4009 [ - + ]: 4386 : if (ret) {
4010 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Register frame command "
4011 : : "failed (type=%u): ret=%d (%s)",
4012 : : type, ret, strerror(-ret));
4013 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
4014 : : match, match_len);
4015 : 0 : goto nla_put_failure;
4016 : : }
4017 : 4386 : ret = 0;
4018 : : nla_put_failure:
4019 : 4386 : nlmsg_free(msg);
4020 : 4386 : return ret;
4021 : : }
4022 : :
4023 : :
4024 : 421 : static int nl80211_alloc_mgmt_handle(struct i802_bss *bss)
4025 : : {
4026 : 421 : struct wpa_driver_nl80211_data *drv = bss->drv;
4027 : :
4028 [ - + ]: 421 : if (bss->nl_mgmt) {
4029 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Mgmt reporting "
4030 : : "already on! (nl_mgmt=%p)", bss->nl_mgmt);
4031 : 0 : return -1;
4032 : : }
4033 : :
4034 : 421 : bss->nl_mgmt = nl_create_handle(drv->nl_cb, "mgmt");
4035 [ - + ]: 421 : if (bss->nl_mgmt == NULL)
4036 : 0 : return -1;
4037 : :
4038 : 421 : return 0;
4039 : : }
4040 : :
4041 : :
4042 : 421 : static void nl80211_mgmt_handle_register_eloop(struct i802_bss *bss)
4043 : : {
4044 : 421 : nl80211_register_eloop_read(&bss->nl_mgmt,
4045 : : wpa_driver_nl80211_event_receive,
4046 : 421 : bss->nl_cb);
4047 : 421 : }
4048 : :
4049 : :
4050 : 2064 : static int nl80211_register_action_frame(struct i802_bss *bss,
4051 : : const u8 *match, size_t match_len)
4052 : : {
4053 : 2064 : u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_ACTION << 4);
4054 : 2064 : return nl80211_register_frame(bss, bss->nl_mgmt,
4055 : : type, match, match_len);
4056 : : }
4057 : :
4058 : :
4059 : 172 : static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss)
4060 : : {
4061 : 172 : struct wpa_driver_nl80211_data *drv = bss->drv;
4062 : :
4063 [ - + ]: 172 : if (nl80211_alloc_mgmt_handle(bss))
4064 : 0 : return -1;
4065 : 172 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with non-AP "
4066 : : "handle %p", bss->nl_mgmt);
4067 : :
4068 [ + + ]: 172 : if (drv->nlmode == NL80211_IFTYPE_ADHOC) {
4069 : 6 : u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_AUTH << 4);
4070 : :
4071 : : /* register for any AUTH message */
4072 : 6 : nl80211_register_frame(bss, bss->nl_mgmt, type, NULL, 0);
4073 : : }
4074 : :
4075 : : #ifdef CONFIG_INTERWORKING
4076 : : /* QoS Map Configure */
4077 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x01\x04", 2) < 0)
4078 : 0 : return -1;
4079 : : #endif /* CONFIG_INTERWORKING */
4080 : : #if defined(CONFIG_P2P) || defined(CONFIG_INTERWORKING)
4081 : : /* GAS Initial Request */
4082 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0a", 2) < 0)
4083 : 0 : return -1;
4084 : : /* GAS Initial Response */
4085 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0b", 2) < 0)
4086 : 0 : return -1;
4087 : : /* GAS Comeback Request */
4088 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0c", 2) < 0)
4089 : 0 : return -1;
4090 : : /* GAS Comeback Response */
4091 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0d", 2) < 0)
4092 : 0 : return -1;
4093 : : #endif /* CONFIG_P2P || CONFIG_INTERWORKING */
4094 : : #ifdef CONFIG_P2P
4095 : : /* P2P Public Action */
4096 [ - + ]: 172 : if (nl80211_register_action_frame(bss,
4097 : : (u8 *) "\x04\x09\x50\x6f\x9a\x09",
4098 : : 6) < 0)
4099 : 0 : return -1;
4100 : : /* P2P Action */
4101 [ - + ]: 172 : if (nl80211_register_action_frame(bss,
4102 : : (u8 *) "\x7f\x50\x6f\x9a\x09",
4103 : : 5) < 0)
4104 : 0 : return -1;
4105 : : #endif /* CONFIG_P2P */
4106 : : #ifdef CONFIG_IEEE80211W
4107 : : /* SA Query Response */
4108 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x08\x01", 2) < 0)
4109 : 0 : return -1;
4110 : : #endif /* CONFIG_IEEE80211W */
4111 : : #ifdef CONFIG_TDLS
4112 [ + - ]: 172 : if ((drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT)) {
4113 : : /* TDLS Discovery Response */
4114 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0e", 2) <
4115 : : 0)
4116 : 0 : return -1;
4117 : : }
4118 : : #endif /* CONFIG_TDLS */
4119 : :
4120 : : /* FT Action frames */
4121 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x06", 1) < 0)
4122 : 0 : return -1;
4123 : : else
4124 : 172 : drv->capa.key_mgmt |= WPA_DRIVER_CAPA_KEY_MGMT_FT |
4125 : : WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK;
4126 : :
4127 : : /* WNM - BSS Transition Management Request */
4128 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x07", 2) < 0)
4129 : 0 : return -1;
4130 : : /* WNM-Sleep Mode Response */
4131 [ - + ]: 172 : if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x11", 2) < 0)
4132 : 0 : return -1;
4133 : :
4134 : 172 : nl80211_mgmt_handle_register_eloop(bss);
4135 : :
4136 : 172 : return 0;
4137 : : }
4138 : :
4139 : :
4140 : 249 : static int nl80211_register_spurious_class3(struct i802_bss *bss)
4141 : : {
4142 : 249 : struct wpa_driver_nl80211_data *drv = bss->drv;
4143 : : struct nl_msg *msg;
4144 : 249 : int ret = -1;
4145 : :
4146 : 249 : msg = nlmsg_alloc();
4147 [ - + ]: 249 : if (!msg)
4148 : 0 : return -1;
4149 : :
4150 : 249 : nl80211_cmd(drv, msg, 0, NL80211_CMD_UNEXPECTED_FRAME);
4151 : :
4152 [ + - ]: 249 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
4153 : :
4154 : 249 : ret = send_and_recv(drv->global, bss->nl_mgmt, msg, NULL, NULL);
4155 : 249 : msg = NULL;
4156 [ - + ]: 249 : if (ret) {
4157 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Register spurious class3 "
4158 : : "failed: ret=%d (%s)",
4159 : : ret, strerror(-ret));
4160 : 0 : goto nla_put_failure;
4161 : : }
4162 : 249 : ret = 0;
4163 : : nla_put_failure:
4164 : 249 : nlmsg_free(msg);
4165 : 249 : return ret;
4166 : : }
4167 : :
4168 : :
4169 : 249 : static int nl80211_mgmt_subscribe_ap(struct i802_bss *bss)
4170 : : {
4171 : : static const int stypes[] = {
4172 : : WLAN_FC_STYPE_AUTH,
4173 : : WLAN_FC_STYPE_ASSOC_REQ,
4174 : : WLAN_FC_STYPE_REASSOC_REQ,
4175 : : WLAN_FC_STYPE_DISASSOC,
4176 : : WLAN_FC_STYPE_DEAUTH,
4177 : : WLAN_FC_STYPE_ACTION,
4178 : : WLAN_FC_STYPE_PROBE_REQ,
4179 : : /* Beacon doesn't work as mac80211 doesn't currently allow
4180 : : * it, but it wouldn't really be the right thing anyway as
4181 : : * it isn't per interface ... maybe just dump the scan
4182 : : * results periodically for OLBC?
4183 : : */
4184 : : // WLAN_FC_STYPE_BEACON,
4185 : : };
4186 : : unsigned int i;
4187 : :
4188 [ - + ]: 249 : if (nl80211_alloc_mgmt_handle(bss))
4189 : 0 : return -1;
4190 : 249 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
4191 : : "handle %p", bss->nl_mgmt);
4192 : :
4193 [ + + ]: 1992 : for (i = 0; i < ARRAY_SIZE(stypes); i++) {
4194 [ - + ]: 1743 : if (nl80211_register_frame(bss, bss->nl_mgmt,
4195 : : (WLAN_FC_TYPE_MGMT << 2) |
4196 : 1743 : (stypes[i] << 4),
4197 : : NULL, 0) < 0) {
4198 : 0 : goto out_err;
4199 : : }
4200 : : }
4201 : :
4202 [ - + ]: 249 : if (nl80211_register_spurious_class3(bss))
4203 : 0 : goto out_err;
4204 : :
4205 [ - + ]: 249 : if (nl80211_get_wiphy_data_ap(bss) == NULL)
4206 : 0 : goto out_err;
4207 : :
4208 : 249 : nl80211_mgmt_handle_register_eloop(bss);
4209 : 249 : return 0;
4210 : :
4211 : : out_err:
4212 : 0 : nl_destroy_handles(&bss->nl_mgmt);
4213 : 249 : return -1;
4214 : : }
4215 : :
4216 : :
4217 : 0 : static int nl80211_mgmt_subscribe_ap_dev_sme(struct i802_bss *bss)
4218 : : {
4219 [ # # ]: 0 : if (nl80211_alloc_mgmt_handle(bss))
4220 : 0 : return -1;
4221 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
4222 : : "handle %p (device SME)", bss->nl_mgmt);
4223 : :
4224 [ # # ]: 0 : if (nl80211_register_frame(bss, bss->nl_mgmt,
4225 : : (WLAN_FC_TYPE_MGMT << 2) |
4226 : : (WLAN_FC_STYPE_ACTION << 4),
4227 : : NULL, 0) < 0)
4228 : 0 : goto out_err;
4229 : :
4230 : 0 : nl80211_mgmt_handle_register_eloop(bss);
4231 : 0 : return 0;
4232 : :
4233 : : out_err:
4234 : 0 : nl_destroy_handles(&bss->nl_mgmt);
4235 : 0 : return -1;
4236 : : }
4237 : :
4238 : :
4239 : 801 : static void nl80211_mgmt_unsubscribe(struct i802_bss *bss, const char *reason)
4240 : : {
4241 [ + + ]: 801 : if (bss->nl_mgmt == NULL)
4242 : 801 : return;
4243 : 421 : wpa_printf(MSG_DEBUG, "nl80211: Unsubscribe mgmt frames handle %p "
4244 : : "(%s)", bss->nl_mgmt, reason);
4245 : 421 : nl80211_destroy_eloop_handle(&bss->nl_mgmt);
4246 : :
4247 : 421 : nl80211_put_wiphy_data_ap(bss);
4248 : : }
4249 : :
4250 : :
4251 : 0 : static void wpa_driver_nl80211_send_rfkill(void *eloop_ctx, void *timeout_ctx)
4252 : : {
4253 : 0 : wpa_supplicant_event(timeout_ctx, EVENT_INTERFACE_DISABLED, NULL);
4254 : 0 : }
4255 : :
4256 : :
4257 : 0 : static void nl80211_del_p2pdev(struct i802_bss *bss)
4258 : : {
4259 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4260 : : struct nl_msg *msg;
4261 : : int ret;
4262 : :
4263 : 0 : msg = nlmsg_alloc();
4264 [ # # ]: 0 : if (!msg)
4265 : 0 : return;
4266 : :
4267 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
4268 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
4269 : :
4270 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4271 : 0 : msg = NULL;
4272 : :
4273 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Delete P2P Device %s (0x%llx): %s",
4274 : 0 : bss->ifname, (long long unsigned int) bss->wdev_id,
4275 : : strerror(-ret));
4276 : :
4277 : : nla_put_failure:
4278 : 0 : nlmsg_free(msg);
4279 : : }
4280 : :
4281 : :
4282 : 0 : static int nl80211_set_p2pdev(struct i802_bss *bss, int start)
4283 : : {
4284 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4285 : : struct nl_msg *msg;
4286 : 0 : int ret = -1;
4287 : :
4288 : 0 : msg = nlmsg_alloc();
4289 [ # # ]: 0 : if (!msg)
4290 : 0 : return -1;
4291 : :
4292 [ # # ]: 0 : if (start)
4293 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_START_P2P_DEVICE);
4294 : : else
4295 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_P2P_DEVICE);
4296 : :
4297 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
4298 : :
4299 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4300 : 0 : msg = NULL;
4301 : :
4302 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: %s P2P Device %s (0x%llx): %s",
4303 : : start ? "Start" : "Stop",
4304 : 0 : bss->ifname, (long long unsigned int) bss->wdev_id,
4305 : : strerror(-ret));
4306 : :
4307 : : nla_put_failure:
4308 : 0 : nlmsg_free(msg);
4309 : 0 : return ret;
4310 : : }
4311 : :
4312 : :
4313 : 190 : static int i802_set_iface_flags(struct i802_bss *bss, int up)
4314 : : {
4315 : : enum nl80211_iftype nlmode;
4316 : :
4317 : 190 : nlmode = nl80211_get_ifmode(bss);
4318 [ + - ]: 190 : if (nlmode != NL80211_IFTYPE_P2P_DEVICE) {
4319 : 190 : return linux_set_iface_flags(bss->drv->global->ioctl_sock,
4320 : 190 : bss->ifname, up);
4321 : : }
4322 : :
4323 : : /* P2P Device has start/stop which is equivalent */
4324 : 190 : return nl80211_set_p2pdev(bss, up);
4325 : : }
4326 : :
4327 : :
4328 : : static int
4329 : 190 : wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv,
4330 : : const u8 *set_addr, int first)
4331 : : {
4332 : 190 : struct i802_bss *bss = drv->first_bss;
4333 : 190 : int send_rfkill_event = 0;
4334 : : enum nl80211_iftype nlmode;
4335 : :
4336 : 190 : drv->ifindex = if_nametoindex(bss->ifname);
4337 : 190 : bss->ifindex = drv->ifindex;
4338 : 190 : bss->wdev_id = drv->global->if_add_wdevid;
4339 : 190 : bss->wdev_id_set = drv->global->if_add_wdevid_set;
4340 : :
4341 : 190 : bss->if_dynamic = drv->ifindex == drv->global->if_add_ifindex;
4342 [ - + ][ + + ]: 190 : bss->if_dynamic = bss->if_dynamic || drv->global->if_add_wdevid_set;
4343 : 190 : drv->global->if_add_wdevid_set = 0;
4344 : :
4345 [ - + ]: 190 : if (wpa_driver_nl80211_capa(drv))
4346 : 0 : return -1;
4347 : :
4348 : 190 : wpa_printf(MSG_DEBUG, "nl80211: interface %s in phy %s",
4349 : 190 : bss->ifname, drv->phyname);
4350 : :
4351 [ + + + - ]: 196 : if (set_addr &&
4352 [ - + ]: 12 : (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0) ||
4353 : 6 : linux_set_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
4354 : : set_addr)))
4355 : 0 : return -1;
4356 : :
4357 [ + - ][ - + ]: 190 : if (first && nl80211_get_ifmode(bss) == NL80211_IFTYPE_AP)
4358 : 0 : drv->start_mode_ap = 1;
4359 : :
4360 [ + + ]: 190 : if (drv->hostapd)
4361 : 168 : nlmode = NL80211_IFTYPE_AP;
4362 [ + + ]: 22 : else if (bss->if_dynamic)
4363 : 19 : nlmode = nl80211_get_ifmode(bss);
4364 : : else
4365 : 3 : nlmode = NL80211_IFTYPE_STATION;
4366 : :
4367 [ - + ]: 190 : if (wpa_driver_nl80211_set_mode(bss, nlmode) < 0) {
4368 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not configure driver mode");
4369 : 0 : return -1;
4370 : : }
4371 : :
4372 [ - + ]: 190 : if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
4373 : 0 : int ret = nl80211_set_p2pdev(bss, 1);
4374 [ # # ]: 0 : if (ret < 0)
4375 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not start P2P device");
4376 : 0 : nl80211_get_macaddr(bss);
4377 : 0 : return ret;
4378 : : }
4379 : :
4380 [ - + ]: 190 : if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) {
4381 [ # # ]: 0 : if (rfkill_is_blocked(drv->rfkill)) {
4382 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable "
4383 : : "interface '%s' due to rfkill",
4384 : 0 : bss->ifname);
4385 : 0 : drv->if_disabled = 1;
4386 : 0 : send_rfkill_event = 1;
4387 : : } else {
4388 : 0 : wpa_printf(MSG_ERROR, "nl80211: Could not set "
4389 : 0 : "interface '%s' UP", bss->ifname);
4390 : 0 : return -1;
4391 : : }
4392 : : }
4393 : :
4394 [ + + ]: 190 : if (!drv->hostapd)
4395 : 22 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
4396 : : 1, IF_OPER_DORMANT);
4397 : :
4398 [ - + ]: 190 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
4399 : 190 : bss->addr))
4400 : 0 : return -1;
4401 : :
4402 [ - + ]: 190 : if (send_rfkill_event) {
4403 : 0 : eloop_register_timeout(0, 0, wpa_driver_nl80211_send_rfkill,
4404 : : drv, drv->ctx);
4405 : : }
4406 : :
4407 : 190 : return 0;
4408 : : }
4409 : :
4410 : :
4411 : 233 : static int wpa_driver_nl80211_del_beacon(struct wpa_driver_nl80211_data *drv)
4412 : : {
4413 : : struct nl_msg *msg;
4414 : :
4415 : 233 : msg = nlmsg_alloc();
4416 [ - + ]: 233 : if (!msg)
4417 : 0 : return -ENOMEM;
4418 : :
4419 : 233 : wpa_printf(MSG_DEBUG, "nl80211: Remove beacon (ifindex=%d)",
4420 : : drv->ifindex);
4421 : 233 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_BEACON);
4422 [ + - ]: 233 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4423 : :
4424 : 233 : return send_and_recv_msgs(drv, msg, NULL, NULL);
4425 : : nla_put_failure:
4426 : 0 : nlmsg_free(msg);
4427 : 233 : return -ENOBUFS;
4428 : : }
4429 : :
4430 : :
4431 : : /**
4432 : : * wpa_driver_nl80211_deinit - Deinitialize nl80211 driver interface
4433 : : * @bss: Pointer to private nl80211 data from wpa_driver_nl80211_init()
4434 : : *
4435 : : * Shut down driver interface and processing of driver events. Free
4436 : : * private data buffer if one was allocated in wpa_driver_nl80211_init().
4437 : : */
4438 : 190 : static void wpa_driver_nl80211_deinit(struct i802_bss *bss)
4439 : : {
4440 : 190 : struct wpa_driver_nl80211_data *drv = bss->drv;
4441 : :
4442 : 190 : bss->in_deinit = 1;
4443 [ + - ]: 190 : if (drv->data_tx_status)
4444 : 190 : eloop_unregister_read_sock(drv->eapol_tx_sock);
4445 [ + - ]: 190 : if (drv->eapol_tx_sock >= 0)
4446 : 190 : close(drv->eapol_tx_sock);
4447 : :
4448 [ - + ]: 190 : if (bss->nl_preq)
4449 : 0 : wpa_driver_nl80211_probe_req_report(bss, 0);
4450 [ - + ]: 190 : if (bss->added_if_into_bridge) {
4451 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
4452 : 0 : bss->ifname) < 0)
4453 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
4454 : : "interface %s from bridge %s: %s",
4455 : 0 : bss->ifname, bss->brname, strerror(errno));
4456 : : }
4457 [ - + ]: 190 : if (bss->added_bridge) {
4458 [ # # ]: 0 : if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
4459 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
4460 : : "bridge %s: %s",
4461 : 0 : bss->brname, strerror(errno));
4462 : : }
4463 : :
4464 : 190 : nl80211_remove_monitor_interface(drv);
4465 : :
4466 [ + + ]: 190 : if (is_ap_interface(drv->nlmode))
4467 : 178 : wpa_driver_nl80211_del_beacon(drv);
4468 : :
4469 [ + + ]: 190 : if (drv->eapol_sock >= 0) {
4470 : 168 : eloop_unregister_read_sock(drv->eapol_sock);
4471 : 168 : close(drv->eapol_sock);
4472 : : }
4473 : :
4474 [ - + ]: 190 : if (drv->if_indices != drv->default_if_indices)
4475 : 0 : os_free(drv->if_indices);
4476 : :
4477 [ + + ]: 190 : if (drv->disabled_11b_rates)
4478 : 10 : nl80211_disable_11b_rates(drv, drv->ifindex, 0);
4479 : :
4480 : 190 : netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, 0,
4481 : : IF_OPER_UP);
4482 : 190 : rfkill_deinit(drv->rfkill);
4483 : :
4484 : 190 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
4485 : :
4486 [ + - ]: 190 : if (!drv->start_iface_up)
4487 : 190 : (void) i802_set_iface_flags(bss, 0);
4488 [ + - ]: 190 : if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE) {
4489 [ + + ][ + - ]: 190 : if (!drv->hostapd || !drv->start_mode_ap)
4490 : 190 : wpa_driver_nl80211_set_mode(bss,
4491 : : NL80211_IFTYPE_STATION);
4492 : 190 : nl80211_mgmt_unsubscribe(bss, "deinit");
4493 : : } else {
4494 : 0 : nl80211_mgmt_unsubscribe(bss, "deinit");
4495 : 0 : nl80211_del_p2pdev(bss);
4496 : : }
4497 : 190 : nl_cb_put(drv->nl_cb);
4498 : :
4499 : 190 : nl80211_destroy_bss(drv->first_bss);
4500 : :
4501 : 190 : os_free(drv->filter_ssids);
4502 : :
4503 : 190 : os_free(drv->auth_ie);
4504 : :
4505 [ + - ]: 190 : if (drv->in_interface_list)
4506 : 190 : dl_list_del(&drv->list);
4507 : :
4508 : 190 : os_free(drv->extended_capa);
4509 : 190 : os_free(drv->extended_capa_mask);
4510 : 190 : os_free(drv->first_bss);
4511 : 190 : os_free(drv);
4512 : 190 : }
4513 : :
4514 : :
4515 : : /**
4516 : : * wpa_driver_nl80211_scan_timeout - Scan timeout to report scan completion
4517 : : * @eloop_ctx: Driver private data
4518 : : * @timeout_ctx: ctx argument given to wpa_driver_nl80211_init()
4519 : : *
4520 : : * This function can be used as registered timeout when starting a scan to
4521 : : * generate a scan completed event if the driver does not report this.
4522 : : */
4523 : 0 : static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx, void *timeout_ctx)
4524 : : {
4525 : 0 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
4526 [ # # ]: 0 : if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED) {
4527 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss,
4528 : : drv->ap_scan_as_station);
4529 : 0 : drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
4530 : : }
4531 : 0 : wpa_printf(MSG_DEBUG, "Scan timeout - try to get results");
4532 : 0 : wpa_supplicant_event(timeout_ctx, EVENT_SCAN_RESULTS, NULL);
4533 : 0 : }
4534 : :
4535 : :
4536 : : static struct nl_msg *
4537 : 921 : nl80211_scan_common(struct wpa_driver_nl80211_data *drv, u8 cmd,
4538 : : struct wpa_driver_scan_params *params, u64 *wdev_id)
4539 : : {
4540 : : struct nl_msg *msg;
4541 : : size_t i;
4542 : :
4543 : 921 : msg = nlmsg_alloc();
4544 [ - + ]: 921 : if (!msg)
4545 : 0 : return NULL;
4546 : :
4547 : 921 : nl80211_cmd(drv, msg, 0, cmd);
4548 : :
4549 [ + - ]: 921 : if (!wdev_id)
4550 [ + - ]: 921 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4551 : : else
4552 [ # # ]: 0 : NLA_PUT_U64(msg, NL80211_ATTR_WDEV, *wdev_id);
4553 : :
4554 [ + + ]: 921 : if (params->num_ssids) {
4555 : : struct nlattr *ssids;
4556 : :
4557 : 895 : ssids = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
4558 [ - + ]: 895 : if (ssids == NULL)
4559 : 0 : goto fail;
4560 [ + + ]: 1790 : for (i = 0; i < params->num_ssids; i++) {
4561 : 895 : wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan SSID",
4562 : 895 : params->ssids[i].ssid,
4563 : : params->ssids[i].ssid_len);
4564 [ - + ]: 895 : if (nla_put(msg, i + 1, params->ssids[i].ssid_len,
4565 : 895 : params->ssids[i].ssid) < 0)
4566 : 0 : goto fail;
4567 : : }
4568 : 895 : nla_nest_end(msg, ssids);
4569 : : }
4570 : :
4571 [ + + ]: 921 : if (params->extra_ies) {
4572 : 896 : wpa_hexdump(MSG_MSGDUMP, "nl80211: Scan extra IEs",
4573 : 896 : params->extra_ies, params->extra_ies_len);
4574 [ - + ]: 896 : if (nla_put(msg, NL80211_ATTR_IE, params->extra_ies_len,
4575 : 896 : params->extra_ies) < 0)
4576 : 0 : goto fail;
4577 : : }
4578 : :
4579 [ + + ]: 921 : if (params->freqs) {
4580 : : struct nlattr *freqs;
4581 : 793 : freqs = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
4582 [ - + ]: 793 : if (freqs == NULL)
4583 : 0 : goto fail;
4584 [ + + ]: 2821 : for (i = 0; params->freqs[i]; i++) {
4585 : 2028 : wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
4586 : 2028 : "MHz", params->freqs[i]);
4587 [ - + ]: 2028 : if (nla_put_u32(msg, i + 1, params->freqs[i]) < 0)
4588 : 0 : goto fail;
4589 : : }
4590 : 793 : nla_nest_end(msg, freqs);
4591 : : }
4592 : :
4593 : 921 : os_free(drv->filter_ssids);
4594 : 921 : drv->filter_ssids = params->filter_ssids;
4595 : 921 : params->filter_ssids = NULL;
4596 : 921 : drv->num_filter_ssids = params->num_filter_ssids;
4597 : :
4598 : 921 : return msg;
4599 : :
4600 : : fail:
4601 : : nla_put_failure:
4602 : 0 : nlmsg_free(msg);
4603 : 921 : return NULL;
4604 : : }
4605 : :
4606 : :
4607 : : /**
4608 : : * wpa_driver_nl80211_scan - Request the driver to initiate scan
4609 : : * @bss: Pointer to private driver data from wpa_driver_nl80211_init()
4610 : : * @params: Scan parameters
4611 : : * Returns: 0 on success, -1 on failure
4612 : : */
4613 : 921 : static int wpa_driver_nl80211_scan(struct i802_bss *bss,
4614 : : struct wpa_driver_scan_params *params)
4615 : : {
4616 : 921 : struct wpa_driver_nl80211_data *drv = bss->drv;
4617 : 921 : int ret = -1, timeout;
4618 : 921 : struct nl_msg *msg = NULL;
4619 : :
4620 : 921 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: scan request");
4621 : 921 : drv->scan_for_auth = 0;
4622 : :
4623 [ - + ]: 921 : msg = nl80211_scan_common(drv, NL80211_CMD_TRIGGER_SCAN, params,
4624 : 921 : bss->wdev_id_set ? &bss->wdev_id : NULL);
4625 [ - + ]: 921 : if (!msg)
4626 : 0 : return -1;
4627 : :
4628 [ + + ]: 921 : if (params->p2p_probe) {
4629 : : struct nlattr *rates;
4630 : :
4631 : 589 : wpa_printf(MSG_DEBUG, "nl80211: P2P probe - mask SuppRates");
4632 : :
4633 : 589 : rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES);
4634 [ - + ]: 589 : if (rates == NULL)
4635 : 0 : goto nla_put_failure;
4636 : :
4637 : : /*
4638 : : * Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
4639 : : * by masking out everything else apart from the OFDM rates 6,
4640 : : * 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
4641 : : * rates are left enabled.
4642 : : */
4643 [ + - ]: 589 : NLA_PUT(msg, NL80211_BAND_2GHZ, 8,
4644 : : "\x0c\x12\x18\x24\x30\x48\x60\x6c");
4645 : 589 : nla_nest_end(msg, rates);
4646 : :
4647 [ + - ]: 589 : NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
4648 : : }
4649 : :
4650 : 921 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4651 : 921 : msg = NULL;
4652 [ + + ]: 921 : if (ret) {
4653 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Scan trigger failed: ret=%d "
4654 : : "(%s)", ret, strerror(-ret));
4655 [ # # ][ - + ]: 6 : if (drv->hostapd && is_ap_interface(drv->nlmode)) {
4656 : : /*
4657 : : * mac80211 does not allow scan requests in AP mode, so
4658 : : * try to do this in station mode.
4659 : : */
4660 [ # # ]: 0 : if (wpa_driver_nl80211_set_mode(
4661 : : bss, NL80211_IFTYPE_STATION))
4662 : 0 : goto nla_put_failure;
4663 : :
4664 [ # # ]: 0 : if (wpa_driver_nl80211_scan(bss, params)) {
4665 : 0 : wpa_driver_nl80211_set_mode(bss, drv->nlmode);
4666 : 0 : goto nla_put_failure;
4667 : : }
4668 : :
4669 : : /* Restore AP mode when processing scan results */
4670 : 0 : drv->ap_scan_as_station = drv->nlmode;
4671 : 0 : ret = 0;
4672 : : } else
4673 : : goto nla_put_failure;
4674 : : }
4675 : :
4676 : 915 : drv->scan_state = SCAN_REQUESTED;
4677 : : /* Not all drivers generate "scan completed" wireless event, so try to
4678 : : * read results after a timeout. */
4679 : 915 : timeout = 10;
4680 [ + + ]: 915 : if (drv->scan_complete_events) {
4681 : : /*
4682 : : * The driver seems to deliver events to notify when scan is
4683 : : * complete, so use longer timeout to avoid race conditions
4684 : : * with scanning and following association request.
4685 : : */
4686 : 891 : timeout = 30;
4687 : : }
4688 : 915 : wpa_printf(MSG_DEBUG, "Scan requested (ret=%d) - scan timeout %d "
4689 : : "seconds", ret, timeout);
4690 : 915 : eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
4691 : 915 : eloop_register_timeout(timeout, 0, wpa_driver_nl80211_scan_timeout,
4692 : : drv, drv->ctx);
4693 : :
4694 : : nla_put_failure:
4695 : 921 : nlmsg_free(msg);
4696 : 921 : return ret;
4697 : : }
4698 : :
4699 : :
4700 : : /**
4701 : : * wpa_driver_nl80211_sched_scan - Initiate a scheduled scan
4702 : : * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
4703 : : * @params: Scan parameters
4704 : : * @interval: Interval between scan cycles in milliseconds
4705 : : * Returns: 0 on success, -1 on failure or if not supported
4706 : : */
4707 : 0 : static int wpa_driver_nl80211_sched_scan(void *priv,
4708 : : struct wpa_driver_scan_params *params,
4709 : : u32 interval)
4710 : : {
4711 : 0 : struct i802_bss *bss = priv;
4712 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4713 : 0 : int ret = -1;
4714 : : struct nl_msg *msg;
4715 : : size_t i;
4716 : :
4717 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: sched_scan request");
4718 : :
4719 : : #ifdef ANDROID
4720 : : if (!drv->capa.sched_scan_supported)
4721 : : return android_pno_start(bss, params);
4722 : : #endif /* ANDROID */
4723 : :
4724 [ # # ]: 0 : msg = nl80211_scan_common(drv, NL80211_CMD_START_SCHED_SCAN, params,
4725 : 0 : bss->wdev_id_set ? &bss->wdev_id : NULL);
4726 [ # # ]: 0 : if (!msg)
4727 : 0 : goto nla_put_failure;
4728 : :
4729 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, interval);
4730 : :
4731 [ # # ][ # # ]: 0 : if ((drv->num_filter_ssids &&
4732 [ # # ]: 0 : (int) drv->num_filter_ssids <= drv->capa.max_match_sets) ||
4733 : 0 : params->filter_rssi) {
4734 : : struct nlattr *match_sets;
4735 : 0 : match_sets = nla_nest_start(msg, NL80211_ATTR_SCHED_SCAN_MATCH);
4736 [ # # ]: 0 : if (match_sets == NULL)
4737 : 0 : goto nla_put_failure;
4738 : :
4739 [ # # ]: 0 : for (i = 0; i < drv->num_filter_ssids; i++) {
4740 : : struct nlattr *match_set_ssid;
4741 : 0 : wpa_hexdump_ascii(MSG_MSGDUMP,
4742 : : "nl80211: Sched scan filter SSID",
4743 : 0 : drv->filter_ssids[i].ssid,
4744 : 0 : drv->filter_ssids[i].ssid_len);
4745 : :
4746 : 0 : match_set_ssid = nla_nest_start(msg, i + 1);
4747 [ # # ]: 0 : if (match_set_ssid == NULL)
4748 : 0 : goto nla_put_failure;
4749 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_SCHED_SCAN_MATCH_SSID,
4750 : : drv->filter_ssids[i].ssid_len,
4751 : : drv->filter_ssids[i].ssid);
4752 : :
4753 : 0 : nla_nest_end(msg, match_set_ssid);
4754 : : }
4755 : :
4756 [ # # ]: 0 : if (params->filter_rssi) {
4757 : : struct nlattr *match_set_rssi;
4758 : 0 : match_set_rssi = nla_nest_start(msg, 0);
4759 [ # # ]: 0 : if (match_set_rssi == NULL)
4760 : 0 : goto nla_put_failure;
4761 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_SCHED_SCAN_MATCH_ATTR_RSSI,
4762 : : params->filter_rssi);
4763 : 0 : wpa_printf(MSG_MSGDUMP,
4764 : : "nl80211: Sched scan RSSI filter %d dBm",
4765 : : params->filter_rssi);
4766 : 0 : nla_nest_end(msg, match_set_rssi);
4767 : : }
4768 : :
4769 : 0 : nla_nest_end(msg, match_sets);
4770 : : }
4771 : :
4772 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4773 : :
4774 : : /* TODO: if we get an error here, we should fall back to normal scan */
4775 : :
4776 : 0 : msg = NULL;
4777 [ # # ]: 0 : if (ret) {
4778 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan start failed: "
4779 : : "ret=%d (%s)", ret, strerror(-ret));
4780 : 0 : goto nla_put_failure;
4781 : : }
4782 : :
4783 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan requested (ret=%d) - "
4784 : : "scan interval %d msec", ret, interval);
4785 : :
4786 : : nla_put_failure:
4787 : 0 : nlmsg_free(msg);
4788 : 0 : return ret;
4789 : : }
4790 : :
4791 : :
4792 : : /**
4793 : : * wpa_driver_nl80211_stop_sched_scan - Stop a scheduled scan
4794 : : * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
4795 : : * Returns: 0 on success, -1 on failure or if not supported
4796 : : */
4797 : 0 : static int wpa_driver_nl80211_stop_sched_scan(void *priv)
4798 : : {
4799 : 0 : struct i802_bss *bss = priv;
4800 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
4801 : 0 : int ret = 0;
4802 : : struct nl_msg *msg;
4803 : :
4804 : : #ifdef ANDROID
4805 : : if (!drv->capa.sched_scan_supported)
4806 : : return android_pno_stop(bss);
4807 : : #endif /* ANDROID */
4808 : :
4809 : 0 : msg = nlmsg_alloc();
4810 [ # # ]: 0 : if (!msg)
4811 : 0 : return -1;
4812 : :
4813 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_SCHED_SCAN);
4814 : :
4815 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
4816 : :
4817 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
4818 : 0 : msg = NULL;
4819 [ # # ]: 0 : if (ret) {
4820 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop failed: "
4821 : : "ret=%d (%s)", ret, strerror(-ret));
4822 : 0 : goto nla_put_failure;
4823 : : }
4824 : :
4825 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop sent (ret=%d)", ret);
4826 : :
4827 : : nla_put_failure:
4828 : 0 : nlmsg_free(msg);
4829 : 0 : return ret;
4830 : : }
4831 : :
4832 : :
4833 : 5840 : static const u8 * nl80211_get_ie(const u8 *ies, size_t ies_len, u8 ie)
4834 : : {
4835 : : const u8 *end, *pos;
4836 : :
4837 [ - + ]: 5840 : if (ies == NULL)
4838 : 0 : return NULL;
4839 : :
4840 : 5840 : pos = ies;
4841 : 5840 : end = ies + ies_len;
4842 : :
4843 [ + - ]: 5840 : while (pos + 1 < end) {
4844 [ - + ]: 5840 : if (pos + 2 + pos[1] > end)
4845 : 0 : break;
4846 [ + - ]: 5840 : if (pos[0] == ie)
4847 : 5840 : return pos;
4848 : 0 : pos += 2 + pos[1];
4849 : : }
4850 : :
4851 : 5840 : return NULL;
4852 : : }
4853 : :
4854 : :
4855 : 3357 : static int nl80211_scan_filtered(struct wpa_driver_nl80211_data *drv,
4856 : : const u8 *ie, size_t ie_len)
4857 : : {
4858 : : const u8 *ssid;
4859 : : size_t i;
4860 : :
4861 [ + - ]: 3357 : if (drv->filter_ssids == NULL)
4862 : 3357 : return 0;
4863 : :
4864 : 0 : ssid = nl80211_get_ie(ie, ie_len, WLAN_EID_SSID);
4865 [ # # ]: 0 : if (ssid == NULL)
4866 : 0 : return 1;
4867 : :
4868 [ # # ]: 0 : for (i = 0; i < drv->num_filter_ssids; i++) {
4869 [ # # ][ # # ]: 0 : if (ssid[1] == drv->filter_ssids[i].ssid_len &&
4870 : 0 : os_memcmp(ssid + 2, drv->filter_ssids[i].ssid, ssid[1]) ==
4871 : : 0)
4872 : 0 : return 0;
4873 : : }
4874 : :
4875 : 3357 : return 1;
4876 : : }
4877 : :
4878 : :
4879 : 3357 : static int bss_info_handler(struct nl_msg *msg, void *arg)
4880 : : {
4881 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
4882 : 3357 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
4883 : : struct nlattr *bss[NL80211_BSS_MAX + 1];
4884 : : static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
4885 : : [NL80211_BSS_BSSID] = { .type = NLA_UNSPEC },
4886 : : [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
4887 : : [NL80211_BSS_TSF] = { .type = NLA_U64 },
4888 : : [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
4889 : : [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
4890 : : [NL80211_BSS_INFORMATION_ELEMENTS] = { .type = NLA_UNSPEC },
4891 : : [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
4892 : : [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
4893 : : [NL80211_BSS_STATUS] = { .type = NLA_U32 },
4894 : : [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
4895 : : [NL80211_BSS_BEACON_IES] = { .type = NLA_UNSPEC },
4896 : : };
4897 : 3357 : struct nl80211_bss_info_arg *_arg = arg;
4898 : 3357 : struct wpa_scan_results *res = _arg->res;
4899 : : struct wpa_scan_res **tmp;
4900 : : struct wpa_scan_res *r;
4901 : : const u8 *ie, *beacon_ie;
4902 : : size_t ie_len, beacon_ie_len;
4903 : : u8 *pos;
4904 : : size_t i;
4905 : :
4906 : 3357 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
4907 : : genlmsg_attrlen(gnlh, 0), NULL);
4908 [ - + ]: 3357 : if (!tb[NL80211_ATTR_BSS])
4909 : 0 : return NL_SKIP;
4910 [ - + ]: 3357 : if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
4911 : : bss_policy))
4912 : 0 : return NL_SKIP;
4913 [ + + ]: 3357 : if (bss[NL80211_BSS_STATUS]) {
4914 : : enum nl80211_bss_status status;
4915 : 23 : status = nla_get_u32(bss[NL80211_BSS_STATUS]);
4916 [ + - ][ + + ]: 23 : if (status == NL80211_BSS_STATUS_ASSOCIATED &&
4917 : 17 : bss[NL80211_BSS_FREQUENCY]) {
4918 : 17 : _arg->assoc_freq =
4919 : 17 : nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
4920 : 17 : wpa_printf(MSG_DEBUG, "nl80211: Associated on %u MHz",
4921 : : _arg->assoc_freq);
4922 : : }
4923 [ + + ][ + - ]: 23 : if (status == NL80211_BSS_STATUS_ASSOCIATED &&
4924 : 17 : bss[NL80211_BSS_BSSID]) {
4925 : 17 : os_memcpy(_arg->assoc_bssid,
4926 : : nla_data(bss[NL80211_BSS_BSSID]), ETH_ALEN);
4927 : 17 : wpa_printf(MSG_DEBUG, "nl80211: Associated with "
4928 : 102 : MACSTR, MAC2STR(_arg->assoc_bssid));
4929 : : }
4930 : : }
4931 [ - + ]: 3357 : if (!res)
4932 : 0 : return NL_SKIP;
4933 [ + - ]: 3357 : if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
4934 : 3357 : ie = nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
4935 : 3357 : ie_len = nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
4936 : : } else {
4937 : 0 : ie = NULL;
4938 : 0 : ie_len = 0;
4939 : : }
4940 [ + + ]: 3357 : if (bss[NL80211_BSS_BEACON_IES]) {
4941 : 2475 : beacon_ie = nla_data(bss[NL80211_BSS_BEACON_IES]);
4942 : 2475 : beacon_ie_len = nla_len(bss[NL80211_BSS_BEACON_IES]);
4943 : : } else {
4944 : 882 : beacon_ie = NULL;
4945 : 882 : beacon_ie_len = 0;
4946 : : }
4947 : :
4948 [ + - ][ + - ]: 3357 : if (nl80211_scan_filtered(_arg->drv, ie ? ie : beacon_ie,
[ - + ]
4949 : : ie ? ie_len : beacon_ie_len))
4950 : 0 : return NL_SKIP;
4951 : :
4952 : 3357 : r = os_zalloc(sizeof(*r) + ie_len + beacon_ie_len);
4953 [ - + ]: 3357 : if (r == NULL)
4954 : 0 : return NL_SKIP;
4955 [ + - ]: 3357 : if (bss[NL80211_BSS_BSSID])
4956 : 3357 : os_memcpy(r->bssid, nla_data(bss[NL80211_BSS_BSSID]),
4957 : : ETH_ALEN);
4958 [ + - ]: 3357 : if (bss[NL80211_BSS_FREQUENCY])
4959 : 3357 : r->freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
4960 [ + - ]: 3357 : if (bss[NL80211_BSS_BEACON_INTERVAL])
4961 : 3357 : r->beacon_int = nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]);
4962 [ + - ]: 3357 : if (bss[NL80211_BSS_CAPABILITY])
4963 : 3357 : r->caps = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
4964 : 3357 : r->flags |= WPA_SCAN_NOISE_INVALID;
4965 [ + - ]: 3357 : if (bss[NL80211_BSS_SIGNAL_MBM]) {
4966 : 3357 : r->level = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
4967 : 3357 : r->level /= 100; /* mBm to dBm */
4968 : 3357 : r->flags |= WPA_SCAN_LEVEL_DBM | WPA_SCAN_QUAL_INVALID;
4969 [ # # ]: 0 : } else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
4970 : 0 : r->level = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
4971 : 0 : r->flags |= WPA_SCAN_QUAL_INVALID;
4972 : : } else
4973 : 0 : r->flags |= WPA_SCAN_LEVEL_INVALID | WPA_SCAN_QUAL_INVALID;
4974 [ + - ]: 3357 : if (bss[NL80211_BSS_TSF])
4975 : 3357 : r->tsf = nla_get_u64(bss[NL80211_BSS_TSF]);
4976 [ + - ]: 3357 : if (bss[NL80211_BSS_SEEN_MS_AGO])
4977 : 3357 : r->age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
4978 : 3357 : r->ie_len = ie_len;
4979 : 3357 : pos = (u8 *) (r + 1);
4980 [ + - ]: 3357 : if (ie) {
4981 : 3357 : os_memcpy(pos, ie, ie_len);
4982 : 3357 : pos += ie_len;
4983 : : }
4984 : 3357 : r->beacon_ie_len = beacon_ie_len;
4985 [ + + ]: 3357 : if (beacon_ie)
4986 : 2475 : os_memcpy(pos, beacon_ie, beacon_ie_len);
4987 : :
4988 [ + + ]: 3357 : if (bss[NL80211_BSS_STATUS]) {
4989 : : enum nl80211_bss_status status;
4990 : 23 : status = nla_get_u32(bss[NL80211_BSS_STATUS]);
4991 [ - + + ]: 23 : switch (status) {
4992 : : case NL80211_BSS_STATUS_AUTHENTICATED:
4993 : 0 : r->flags |= WPA_SCAN_AUTHENTICATED;
4994 : 0 : break;
4995 : : case NL80211_BSS_STATUS_ASSOCIATED:
4996 : 17 : r->flags |= WPA_SCAN_ASSOCIATED;
4997 : 17 : break;
4998 : : default:
4999 : 6 : break;
5000 : : }
5001 : : }
5002 : :
5003 : : /*
5004 : : * cfg80211 maintains separate BSS table entries for APs if the same
5005 : : * BSSID,SSID pair is seen on multiple channels. wpa_supplicant does
5006 : : * not use frequency as a separate key in the BSS table, so filter out
5007 : : * duplicated entries. Prefer associated BSS entry in such a case in
5008 : : * order to get the correct frequency into the BSS table.
5009 : : */
5010 [ + + ]: 9572 : for (i = 0; i < res->num; i++) {
5011 : : const u8 *s1, *s2;
5012 [ + + ]: 6215 : if (os_memcmp(res->res[i]->bssid, r->bssid, ETH_ALEN) != 0)
5013 : 3295 : continue;
5014 : :
5015 : 2920 : s1 = nl80211_get_ie((u8 *) (res->res[i] + 1),
5016 : 2920 : res->res[i]->ie_len, WLAN_EID_SSID);
5017 : 2920 : s2 = nl80211_get_ie((u8 *) (r + 1), r->ie_len, WLAN_EID_SSID);
5018 [ + - ][ + + ]: 2920 : if (s1 == NULL || s2 == NULL || s1[1] != s2[1] ||
[ + - ][ + - ]
5019 : 870 : os_memcmp(s1, s2, 2 + s1[1]) != 0)
5020 : 2920 : continue;
5021 : :
5022 : : /* Same BSSID,SSID was already included in scan results */
5023 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Remove duplicated scan result "
5024 : 0 : "for " MACSTR, MAC2STR(r->bssid));
5025 : :
5026 [ # # ][ # # ]: 0 : if ((r->flags & WPA_SCAN_ASSOCIATED) &&
5027 : 0 : !(res->res[i]->flags & WPA_SCAN_ASSOCIATED)) {
5028 : 0 : os_free(res->res[i]);
5029 : 0 : res->res[i] = r;
5030 : : } else
5031 : 0 : os_free(r);
5032 : 0 : return NL_SKIP;
5033 : : }
5034 : :
5035 : 3357 : tmp = os_realloc_array(res->res, res->num + 1,
5036 : : sizeof(struct wpa_scan_res *));
5037 [ - + ]: 3357 : if (tmp == NULL) {
5038 : 0 : os_free(r);
5039 : 0 : return NL_SKIP;
5040 : : }
5041 : 3357 : tmp[res->num++] = r;
5042 : 3357 : res->res = tmp;
5043 : :
5044 : 3357 : return NL_SKIP;
5045 : : }
5046 : :
5047 : :
5048 : 0 : static void clear_state_mismatch(struct wpa_driver_nl80211_data *drv,
5049 : : const u8 *addr)
5050 : : {
5051 [ # # ]: 0 : if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
5052 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Clear possible state "
5053 : 0 : "mismatch (" MACSTR ")", MAC2STR(addr));
5054 : 0 : wpa_driver_nl80211_mlme(drv, addr,
5055 : : NL80211_CMD_DEAUTHENTICATE,
5056 : : WLAN_REASON_PREV_AUTH_NOT_VALID, 1);
5057 : : }
5058 : 0 : }
5059 : :
5060 : :
5061 : 901 : static void wpa_driver_nl80211_check_bss_status(
5062 : : struct wpa_driver_nl80211_data *drv, struct wpa_scan_results *res)
5063 : : {
5064 : : size_t i;
5065 : :
5066 [ + + ]: 4258 : for (i = 0; i < res->num; i++) {
5067 : 3357 : struct wpa_scan_res *r = res->res[i];
5068 [ - + ]: 3357 : if (r->flags & WPA_SCAN_AUTHENTICATED) {
5069 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan results "
5070 : : "indicates BSS status with " MACSTR
5071 : : " as authenticated",
5072 : 0 : MAC2STR(r->bssid));
5073 [ # # ][ # # ]: 0 : if (is_sta_interface(drv->nlmode) &&
5074 [ # # ]: 0 : os_memcmp(r->bssid, drv->bssid, ETH_ALEN) != 0 &&
5075 : 0 : os_memcmp(r->bssid, drv->auth_bssid, ETH_ALEN) !=
5076 : : 0) {
5077 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Unknown BSSID"
5078 : : " in local state (auth=" MACSTR
5079 : : " assoc=" MACSTR ")",
5080 : 0 : MAC2STR(drv->auth_bssid),
5081 : 0 : MAC2STR(drv->bssid));
5082 : 0 : clear_state_mismatch(drv, r->bssid);
5083 : : }
5084 : : }
5085 : :
5086 [ + + ]: 3357 : if (r->flags & WPA_SCAN_ASSOCIATED) {
5087 : 17 : wpa_printf(MSG_DEBUG, "nl80211: Scan results "
5088 : : "indicate BSS status with " MACSTR
5089 : : " as associated",
5090 : 102 : MAC2STR(r->bssid));
5091 [ - + ][ + - ]: 17 : if (is_sta_interface(drv->nlmode) &&
5092 : 17 : !drv->associated) {
5093 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Local state "
5094 : : "(not associated) does not match "
5095 : : "with BSS state");
5096 : 0 : clear_state_mismatch(drv, r->bssid);
5097 [ + - ][ - + ]: 17 : } else if (is_sta_interface(drv->nlmode) &&
5098 : 17 : os_memcmp(drv->bssid, r->bssid, ETH_ALEN) !=
5099 : : 0) {
5100 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Local state "
5101 : : "(associated with " MACSTR ") does "
5102 : : "not match with BSS state",
5103 : 0 : MAC2STR(drv->bssid));
5104 : 0 : clear_state_mismatch(drv, r->bssid);
5105 : 0 : clear_state_mismatch(drv, drv->bssid);
5106 : : }
5107 : : }
5108 : : }
5109 : 901 : }
5110 : :
5111 : :
5112 : : static struct wpa_scan_results *
5113 : 901 : nl80211_get_scan_results(struct wpa_driver_nl80211_data *drv)
5114 : : {
5115 : : struct nl_msg *msg;
5116 : : struct wpa_scan_results *res;
5117 : : int ret;
5118 : : struct nl80211_bss_info_arg arg;
5119 : :
5120 : 901 : res = os_zalloc(sizeof(*res));
5121 [ - + ]: 901 : if (res == NULL)
5122 : 0 : return NULL;
5123 : 901 : msg = nlmsg_alloc();
5124 [ - + ]: 901 : if (!msg)
5125 : 0 : goto nla_put_failure;
5126 : :
5127 : 901 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
5128 [ - + ]: 901 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
5129 : 0 : goto nla_put_failure;
5130 : :
5131 : 901 : arg.drv = drv;
5132 : 901 : arg.res = res;
5133 : 901 : ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
5134 : 901 : msg = NULL;
5135 [ + - ]: 901 : if (ret == 0) {
5136 : 901 : wpa_printf(MSG_DEBUG, "nl80211: Received scan results (%lu "
5137 : : "BSSes)", (unsigned long) res->num);
5138 : 901 : nl80211_get_noise_for_scan_results(drv, res);
5139 : 901 : return res;
5140 : : }
5141 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
5142 : : "(%s)", ret, strerror(-ret));
5143 : : nla_put_failure:
5144 : 0 : nlmsg_free(msg);
5145 : 0 : wpa_scan_results_free(res);
5146 : 901 : return NULL;
5147 : : }
5148 : :
5149 : :
5150 : : /**
5151 : : * wpa_driver_nl80211_get_scan_results - Fetch the latest scan results
5152 : : * @priv: Pointer to private wext data from wpa_driver_nl80211_init()
5153 : : * Returns: Scan results on success, -1 on failure
5154 : : */
5155 : : static struct wpa_scan_results *
5156 : 901 : wpa_driver_nl80211_get_scan_results(void *priv)
5157 : : {
5158 : 901 : struct i802_bss *bss = priv;
5159 : 901 : struct wpa_driver_nl80211_data *drv = bss->drv;
5160 : : struct wpa_scan_results *res;
5161 : :
5162 : 901 : res = nl80211_get_scan_results(drv);
5163 [ + - ]: 901 : if (res)
5164 : 901 : wpa_driver_nl80211_check_bss_status(drv, res);
5165 : 901 : return res;
5166 : : }
5167 : :
5168 : :
5169 : 0 : static void nl80211_dump_scan(struct wpa_driver_nl80211_data *drv)
5170 : : {
5171 : : struct wpa_scan_results *res;
5172 : : size_t i;
5173 : :
5174 : 0 : res = nl80211_get_scan_results(drv);
5175 [ # # ]: 0 : if (res == NULL) {
5176 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to get scan results");
5177 : 0 : return;
5178 : : }
5179 : :
5180 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Scan result dump");
5181 [ # # ]: 0 : for (i = 0; i < res->num; i++) {
5182 : 0 : struct wpa_scan_res *r = res->res[i];
5183 [ # # ][ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: %d/%d " MACSTR "%s%s",
5184 : 0 : (int) i, (int) res->num, MAC2STR(r->bssid),
5185 : 0 : r->flags & WPA_SCAN_AUTHENTICATED ? " [auth]" : "",
5186 : 0 : r->flags & WPA_SCAN_ASSOCIATED ? " [assoc]" : "");
5187 : : }
5188 : :
5189 : 0 : wpa_scan_results_free(res);
5190 : : }
5191 : :
5192 : :
5193 : 8948 : static int wpa_driver_nl80211_set_key(const char *ifname, struct i802_bss *bss,
5194 : : enum wpa_alg alg, const u8 *addr,
5195 : : int key_idx, int set_tx,
5196 : : const u8 *seq, size_t seq_len,
5197 : : const u8 *key, size_t key_len)
5198 : : {
5199 : 8948 : struct wpa_driver_nl80211_data *drv = bss->drv;
5200 : : int ifindex;
5201 : : struct nl_msg *msg;
5202 : : int ret;
5203 : 8948 : int tdls = 0;
5204 : :
5205 : : /* Ignore for P2P Device */
5206 [ - + ]: 8948 : if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
5207 : 0 : return 0;
5208 : :
5209 : 8948 : ifindex = if_nametoindex(ifname);
5210 : 8948 : wpa_printf(MSG_DEBUG, "%s: ifindex=%d (%s) alg=%d addr=%p key_idx=%d "
5211 : : "set_tx=%d seq_len=%lu key_len=%lu",
5212 : : __func__, ifindex, ifname, alg, addr, key_idx, set_tx,
5213 : : (unsigned long) seq_len, (unsigned long) key_len);
5214 : : #ifdef CONFIG_TDLS
5215 [ + + ]: 5928 : if (key_idx == -1) {
5216 : 68 : key_idx = 0;
5217 : 68 : tdls = 1;
5218 : : }
5219 : : #endif /* CONFIG_TDLS */
5220 : :
5221 : 8948 : msg = nlmsg_alloc();
5222 [ - + ]: 8948 : if (!msg)
5223 : 0 : return -ENOMEM;
5224 : :
5225 [ + + ]: 8948 : if (alg == WPA_ALG_NONE) {
5226 : 7676 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_KEY);
5227 : : } else {
5228 : 1272 : nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_KEY);
5229 [ + - ]: 1272 : NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
5230 [ + + + + : 1272 : switch (alg) {
+ + + - -
- - - + ]
5231 : : case WPA_ALG_WEP:
5232 [ + - ]: 5 : if (key_len == 5)
5233 [ + - ]: 5 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5234 : : WLAN_CIPHER_SUITE_WEP40);
5235 : : else
5236 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5237 : : WLAN_CIPHER_SUITE_WEP104);
5238 : 5 : break;
5239 : : case WPA_ALG_TKIP:
5240 [ + - ]: 59 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5241 : : WLAN_CIPHER_SUITE_TKIP);
5242 : 59 : break;
5243 : : case WPA_ALG_CCMP:
5244 [ + - ]: 1090 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5245 : : WLAN_CIPHER_SUITE_CCMP);
5246 : 1090 : break;
5247 : : case WPA_ALG_GCMP:
5248 [ + - ]: 5 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5249 : : WLAN_CIPHER_SUITE_GCMP);
5250 : 5 : break;
5251 : : case WPA_ALG_CCMP_256:
5252 [ + - ]: 5 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5253 : : WLAN_CIPHER_SUITE_CCMP_256);
5254 : 5 : break;
5255 : : case WPA_ALG_GCMP_256:
5256 [ + - ]: 5 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5257 : : WLAN_CIPHER_SUITE_GCMP_256);
5258 : 5 : break;
5259 : : case WPA_ALG_IGTK:
5260 [ + - ]: 101 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5261 : : WLAN_CIPHER_SUITE_AES_CMAC);
5262 : 101 : break;
5263 : : case WPA_ALG_BIP_GMAC_128:
5264 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5265 : : WLAN_CIPHER_SUITE_BIP_GMAC_128);
5266 : 0 : break;
5267 : : case WPA_ALG_BIP_GMAC_256:
5268 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5269 : : WLAN_CIPHER_SUITE_BIP_GMAC_256);
5270 : 0 : break;
5271 : : case WPA_ALG_BIP_CMAC_256:
5272 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5273 : : WLAN_CIPHER_SUITE_BIP_CMAC_256);
5274 : 0 : break;
5275 : : case WPA_ALG_SMS4:
5276 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5277 : : WLAN_CIPHER_SUITE_SMS4);
5278 : 0 : break;
5279 : : case WPA_ALG_KRK:
5280 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
5281 : : WLAN_CIPHER_SUITE_KRK);
5282 : 0 : break;
5283 : : default:
5284 : 2 : wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
5285 : : "algorithm %d", __func__, alg);
5286 : 2 : nlmsg_free(msg);
5287 : 2 : return -1;
5288 : : }
5289 : : }
5290 : :
5291 [ + + ][ + - ]: 8946 : if (seq && seq_len)
5292 [ + - ]: 592 : NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, seq_len, seq);
5293 : :
5294 [ + + ][ + + ]: 8946 : if (addr && !is_broadcast_ether_addr(addr)) {
5295 : 2322 : wpa_printf(MSG_DEBUG, " addr=" MACSTR, MAC2STR(addr));
5296 [ + - ]: 2322 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
5297 : :
5298 [ + - ][ + + ]: 2328 : if (alg != WPA_ALG_WEP && key_idx && !set_tx) {
[ + - ]
5299 : 6 : wpa_printf(MSG_DEBUG, " RSN IBSS RX GTK");
5300 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE,
5301 : : NL80211_KEYTYPE_GROUP);
5302 : : }
5303 [ + + ][ + - ]: 6624 : } else if (addr && is_broadcast_ether_addr(addr)) {
5304 : : struct nlattr *types;
5305 : :
5306 : 688 : wpa_printf(MSG_DEBUG, " broadcast key");
5307 : :
5308 : 688 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5309 [ - + ]: 688 : if (!types)
5310 : 0 : goto nla_put_failure;
5311 [ + - ]: 688 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
5312 : 688 : nla_nest_end(msg, types);
5313 : : }
5314 [ + - ]: 8946 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
5315 [ + - ]: 8946 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
5316 : :
5317 : 8946 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5318 [ + + ][ + + ]: 8946 : if ((ret == -ENOENT || ret == -ENOLINK) && alg == WPA_ALG_NONE)
[ + + ]
5319 : 7216 : ret = 0;
5320 [ + + ]: 8946 : if (ret)
5321 : 71 : wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d %s)",
5322 : : ret, strerror(-ret));
5323 : :
5324 : : /*
5325 : : * If we failed or don't need to set the default TX key (below),
5326 : : * we're done here.
5327 : : */
5328 [ + + ][ + + ]: 8946 : if (ret || !set_tx || alg == WPA_ALG_NONE || tdls)
[ + + ][ + + ]
5329 : 8026 : return ret;
5330 [ + + ]: 1592 : if (is_ap_interface(drv->nlmode) && addr &&
[ + + + + ]
5331 : 672 : !is_broadcast_ether_addr(addr))
5332 : 237 : return ret;
5333 : :
5334 : 683 : msg = nlmsg_alloc();
5335 [ - + ]: 683 : if (!msg)
5336 : 0 : return -ENOMEM;
5337 : :
5338 : 683 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_KEY);
5339 [ + - ]: 683 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
5340 [ + - ]: 683 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
5341 [ + + ]: 683 : if (alg == WPA_ALG_IGTK)
5342 [ + - ]: 86 : NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT_MGMT);
5343 : : else
5344 [ + - ]: 597 : NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
5345 [ + + ][ + + ]: 1124 : if (addr && is_broadcast_ether_addr(addr)) {
5346 : : struct nlattr *types;
5347 : :
5348 : 441 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5349 [ - + ]: 441 : if (!types)
5350 : 0 : goto nla_put_failure;
5351 [ + - ]: 441 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
5352 : 441 : nla_nest_end(msg, types);
5353 [ + + ]: 242 : } else if (addr) {
5354 : : struct nlattr *types;
5355 : :
5356 : 236 : types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
5357 [ - + ]: 236 : if (!types)
5358 : 0 : goto nla_put_failure;
5359 [ + - ]: 236 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_UNICAST);
5360 : 236 : nla_nest_end(msg, types);
5361 : : }
5362 : :
5363 : 683 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5364 [ - + ]: 683 : if (ret == -ENOENT)
5365 : 0 : ret = 0;
5366 [ - + ]: 683 : if (ret)
5367 : 0 : wpa_printf(MSG_DEBUG, "nl80211: set_key default failed; "
5368 : : "err=%d %s)", ret, strerror(-ret));
5369 : 683 : return ret;
5370 : :
5371 : : nla_put_failure:
5372 : 0 : nlmsg_free(msg);
5373 : 8948 : return -ENOBUFS;
5374 : : }
5375 : :
5376 : :
5377 : 2 : static int nl_add_key(struct nl_msg *msg, enum wpa_alg alg,
5378 : : int key_idx, int defkey,
5379 : : const u8 *seq, size_t seq_len,
5380 : : const u8 *key, size_t key_len)
5381 : : {
5382 : 2 : struct nlattr *key_attr = nla_nest_start(msg, NL80211_ATTR_KEY);
5383 [ - + ]: 2 : if (!key_attr)
5384 : 0 : return -1;
5385 : :
5386 [ + - ][ - + ]: 2 : if (defkey && alg == WPA_ALG_IGTK)
5387 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_MGMT);
5388 [ + - ]: 2 : else if (defkey)
5389 [ + - ]: 2 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
5390 : :
5391 [ + - ]: 2 : NLA_PUT_U8(msg, NL80211_KEY_IDX, key_idx);
5392 : :
5393 [ + - - - : 2 : switch (alg) {
- - - - -
- - ]
5394 : : case WPA_ALG_WEP:
5395 [ + - ]: 2 : if (key_len == 5)
5396 [ + - ]: 2 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5397 : : WLAN_CIPHER_SUITE_WEP40);
5398 : : else
5399 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5400 : : WLAN_CIPHER_SUITE_WEP104);
5401 : 2 : break;
5402 : : case WPA_ALG_TKIP:
5403 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_TKIP);
5404 : 0 : break;
5405 : : case WPA_ALG_CCMP:
5406 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_CCMP);
5407 : 0 : break;
5408 : : case WPA_ALG_GCMP:
5409 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER, WLAN_CIPHER_SUITE_GCMP);
5410 : 0 : break;
5411 : : case WPA_ALG_CCMP_256:
5412 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5413 : : WLAN_CIPHER_SUITE_CCMP_256);
5414 : 0 : break;
5415 : : case WPA_ALG_GCMP_256:
5416 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5417 : : WLAN_CIPHER_SUITE_GCMP_256);
5418 : 0 : break;
5419 : : case WPA_ALG_IGTK:
5420 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5421 : : WLAN_CIPHER_SUITE_AES_CMAC);
5422 : 0 : break;
5423 : : case WPA_ALG_BIP_GMAC_128:
5424 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5425 : : WLAN_CIPHER_SUITE_BIP_GMAC_128);
5426 : 0 : break;
5427 : : case WPA_ALG_BIP_GMAC_256:
5428 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5429 : : WLAN_CIPHER_SUITE_BIP_GMAC_256);
5430 : 0 : break;
5431 : : case WPA_ALG_BIP_CMAC_256:
5432 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5433 : : WLAN_CIPHER_SUITE_BIP_CMAC_256);
5434 : 0 : break;
5435 : : default:
5436 : 0 : wpa_printf(MSG_ERROR, "%s: Unsupported encryption "
5437 : : "algorithm %d", __func__, alg);
5438 : 0 : return -1;
5439 : : }
5440 : :
5441 [ - + ][ # # ]: 2 : if (seq && seq_len)
5442 [ # # ]: 0 : NLA_PUT(msg, NL80211_KEY_SEQ, seq_len, seq);
5443 : :
5444 [ + - ]: 2 : NLA_PUT(msg, NL80211_KEY_DATA, key_len, key);
5445 : :
5446 : 2 : nla_nest_end(msg, key_attr);
5447 : :
5448 : 2 : return 0;
5449 : : nla_put_failure:
5450 : 2 : return -1;
5451 : : }
5452 : :
5453 : :
5454 : 6 : static int nl80211_set_conn_keys(struct wpa_driver_associate_params *params,
5455 : : struct nl_msg *msg)
5456 : : {
5457 : 6 : int i, privacy = 0;
5458 : : struct nlattr *nl_keys, *nl_key;
5459 : :
5460 [ + + ]: 30 : for (i = 0; i < 4; i++) {
5461 [ + - ]: 24 : if (!params->wep_key[i])
5462 : 24 : continue;
5463 : 0 : privacy = 1;
5464 : 0 : break;
5465 : : }
5466 [ - + ]: 6 : if (params->wps == WPS_MODE_PRIVACY)
5467 : 0 : privacy = 1;
5468 [ + - ][ + - ]: 6 : if (params->pairwise_suite &&
5469 : 6 : params->pairwise_suite != WPA_CIPHER_NONE)
5470 : 6 : privacy = 1;
5471 : :
5472 [ - + ]: 6 : if (!privacy)
5473 : 0 : return 0;
5474 : :
5475 [ + - ]: 6 : NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
5476 : :
5477 : 6 : nl_keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
5478 [ - + ]: 6 : if (!nl_keys)
5479 : 0 : goto nla_put_failure;
5480 : :
5481 [ + + ]: 30 : for (i = 0; i < 4; i++) {
5482 [ + - ]: 24 : if (!params->wep_key[i])
5483 : 24 : continue;
5484 : :
5485 : 0 : nl_key = nla_nest_start(msg, i);
5486 [ # # ]: 0 : if (!nl_key)
5487 : 0 : goto nla_put_failure;
5488 : :
5489 [ # # ]: 0 : NLA_PUT(msg, NL80211_KEY_DATA, params->wep_key_len[i],
5490 : : params->wep_key[i]);
5491 [ # # ]: 0 : if (params->wep_key_len[i] == 5)
5492 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5493 : : WLAN_CIPHER_SUITE_WEP40);
5494 : : else
5495 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
5496 : : WLAN_CIPHER_SUITE_WEP104);
5497 : :
5498 [ # # ]: 0 : NLA_PUT_U8(msg, NL80211_KEY_IDX, i);
5499 : :
5500 [ # # ]: 0 : if (i == params->wep_tx_keyidx)
5501 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
5502 : :
5503 : 0 : nla_nest_end(msg, nl_key);
5504 : : }
5505 : 6 : nla_nest_end(msg, nl_keys);
5506 : :
5507 : 6 : return 0;
5508 : :
5509 : : nla_put_failure:
5510 : 6 : return -ENOBUFS;
5511 : : }
5512 : :
5513 : :
5514 : 344 : static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
5515 : : const u8 *addr, int cmd, u16 reason_code,
5516 : : int local_state_change)
5517 : : {
5518 : 344 : int ret = -1;
5519 : : struct nl_msg *msg;
5520 : :
5521 : 344 : msg = nlmsg_alloc();
5522 [ - + ]: 344 : if (!msg)
5523 : 0 : return -1;
5524 : :
5525 : 344 : nl80211_cmd(drv, msg, 0, cmd);
5526 : :
5527 [ + - ]: 344 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
5528 [ + - ]: 344 : NLA_PUT_U16(msg, NL80211_ATTR_REASON_CODE, reason_code);
5529 [ + - ]: 344 : if (addr)
5530 [ + - ]: 344 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
5531 [ - + ]: 344 : if (local_state_change)
5532 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
5533 : :
5534 : 344 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5535 : 344 : msg = NULL;
5536 [ + + ]: 344 : if (ret) {
5537 : 10 : wpa_dbg(drv->ctx, MSG_DEBUG,
5538 : : "nl80211: MLME command failed: reason=%u ret=%d (%s)",
5539 : : reason_code, ret, strerror(-ret));
5540 : 10 : goto nla_put_failure;
5541 : : }
5542 : 334 : ret = 0;
5543 : :
5544 : : nla_put_failure:
5545 : 344 : nlmsg_free(msg);
5546 : 344 : return ret;
5547 : : }
5548 : :
5549 : :
5550 : 0 : static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
5551 : : int reason_code)
5552 : : {
5553 : : int ret;
5554 : :
5555 : 0 : wpa_printf(MSG_DEBUG, "%s(reason_code=%d)", __func__, reason_code);
5556 : 0 : nl80211_mark_disconnected(drv);
5557 : : /* Disconnect command doesn't need BSSID - it uses cached value */
5558 : 0 : ret = wpa_driver_nl80211_mlme(drv, NULL, NL80211_CMD_DISCONNECT,
5559 : : reason_code, 0);
5560 : : /*
5561 : : * For locally generated disconnect, supplicant already generates a
5562 : : * DEAUTH event, so ignore the event from NL80211.
5563 : : */
5564 : 0 : drv->ignore_next_local_disconnect = ret == 0;
5565 : :
5566 : 0 : return ret;
5567 : : }
5568 : :
5569 : :
5570 : 350 : static int wpa_driver_nl80211_deauthenticate(struct i802_bss *bss,
5571 : : const u8 *addr, int reason_code)
5572 : : {
5573 : 350 : struct wpa_driver_nl80211_data *drv = bss->drv;
5574 [ - + ]: 350 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
5575 : 0 : return wpa_driver_nl80211_disconnect(drv, reason_code);
5576 : 350 : wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
5577 : 2100 : __func__, MAC2STR(addr), reason_code);
5578 : 350 : nl80211_mark_disconnected(drv);
5579 [ + + ]: 350 : if (drv->nlmode == NL80211_IFTYPE_ADHOC)
5580 : 6 : return nl80211_leave_ibss(drv);
5581 : 350 : return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
5582 : : reason_code, 0);
5583 : : }
5584 : :
5585 : :
5586 : 0 : static void nl80211_copy_auth_params(struct wpa_driver_nl80211_data *drv,
5587 : : struct wpa_driver_auth_params *params)
5588 : : {
5589 : : int i;
5590 : :
5591 : 0 : drv->auth_freq = params->freq;
5592 : 0 : drv->auth_alg = params->auth_alg;
5593 : 0 : drv->auth_wep_tx_keyidx = params->wep_tx_keyidx;
5594 : 0 : drv->auth_local_state_change = params->local_state_change;
5595 : 0 : drv->auth_p2p = params->p2p;
5596 : :
5597 [ # # ]: 0 : if (params->bssid)
5598 : 0 : os_memcpy(drv->auth_bssid_, params->bssid, ETH_ALEN);
5599 : : else
5600 : 0 : os_memset(drv->auth_bssid_, 0, ETH_ALEN);
5601 : :
5602 [ # # ]: 0 : if (params->ssid) {
5603 : 0 : os_memcpy(drv->auth_ssid, params->ssid, params->ssid_len);
5604 : 0 : drv->auth_ssid_len = params->ssid_len;
5605 : : } else
5606 : 0 : drv->auth_ssid_len = 0;
5607 : :
5608 : :
5609 : 0 : os_free(drv->auth_ie);
5610 : 0 : drv->auth_ie = NULL;
5611 : 0 : drv->auth_ie_len = 0;
5612 [ # # ]: 0 : if (params->ie) {
5613 : 0 : drv->auth_ie = os_malloc(params->ie_len);
5614 [ # # ]: 0 : if (drv->auth_ie) {
5615 : 0 : os_memcpy(drv->auth_ie, params->ie, params->ie_len);
5616 : 0 : drv->auth_ie_len = params->ie_len;
5617 : : }
5618 : : }
5619 : :
5620 [ # # ]: 0 : for (i = 0; i < 4; i++) {
5621 [ # # ][ # # ]: 0 : if (params->wep_key[i] && params->wep_key_len[i] &&
[ # # ]
5622 : 0 : params->wep_key_len[i] <= 16) {
5623 : 0 : os_memcpy(drv->auth_wep_key[i], params->wep_key[i],
5624 : : params->wep_key_len[i]);
5625 : 0 : drv->auth_wep_key_len[i] = params->wep_key_len[i];
5626 : : } else
5627 : 0 : drv->auth_wep_key_len[i] = 0;
5628 : : }
5629 : 0 : }
5630 : :
5631 : :
5632 : 387 : static int wpa_driver_nl80211_authenticate(
5633 : : struct i802_bss *bss, struct wpa_driver_auth_params *params)
5634 : : {
5635 : 387 : struct wpa_driver_nl80211_data *drv = bss->drv;
5636 : 387 : int ret = -1, i;
5637 : : struct nl_msg *msg;
5638 : : enum nl80211_auth_type type;
5639 : : enum nl80211_iftype nlmode;
5640 : 387 : int count = 0;
5641 : : int is_retry;
5642 : :
5643 : 387 : is_retry = drv->retry_auth;
5644 : 387 : drv->retry_auth = 0;
5645 : :
5646 : 387 : nl80211_mark_disconnected(drv);
5647 : 387 : os_memset(drv->auth_bssid, 0, ETH_ALEN);
5648 [ + - ]: 387 : if (params->bssid)
5649 : 387 : os_memcpy(drv->auth_attempt_bssid, params->bssid, ETH_ALEN);
5650 : : else
5651 : 0 : os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
5652 : : /* FIX: IBSS mode */
5653 [ + + ]: 387 : nlmode = params->p2p ?
5654 : : NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
5655 [ + + - + ]: 439 : if (drv->nlmode != nlmode &&
5656 : 52 : wpa_driver_nl80211_set_mode(bss, nlmode) < 0)
5657 : 0 : return -1;
5658 : :
5659 : : retry:
5660 : 387 : msg = nlmsg_alloc();
5661 [ - + ]: 387 : if (!msg)
5662 : 0 : return -1;
5663 : :
5664 : 387 : wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
5665 : : drv->ifindex);
5666 : :
5667 : 387 : nl80211_cmd(drv, msg, 0, NL80211_CMD_AUTHENTICATE);
5668 : :
5669 [ + + ]: 1935 : for (i = 0; i < 4; i++) {
5670 [ + + ]: 1548 : if (!params->wep_key[i])
5671 : 1546 : continue;
5672 : 2 : wpa_driver_nl80211_set_key(bss->ifname, bss, WPA_ALG_WEP,
5673 : : NULL, i,
5674 : 2 : i == params->wep_tx_keyidx, NULL, 0,
5675 : : params->wep_key[i],
5676 : : params->wep_key_len[i]);
5677 [ - + ]: 2 : if (params->wep_tx_keyidx != i)
5678 : 0 : continue;
5679 [ - + ]: 2 : if (nl_add_key(msg, WPA_ALG_WEP, i, 1, NULL, 0,
5680 : : params->wep_key[i], params->wep_key_len[i])) {
5681 : 0 : nlmsg_free(msg);
5682 : 0 : return -1;
5683 : : }
5684 : : }
5685 : :
5686 [ + - ]: 387 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
5687 [ + - ]: 387 : if (params->bssid) {
5688 : 387 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
5689 : 2322 : MAC2STR(params->bssid));
5690 [ + - ]: 387 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
5691 : : }
5692 [ + - ]: 387 : if (params->freq) {
5693 : 387 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
5694 [ + - ]: 387 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
5695 : : }
5696 [ + - ]: 387 : if (params->ssid) {
5697 : 387 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
5698 : 387 : params->ssid, params->ssid_len);
5699 [ + - ]: 387 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
5700 : : params->ssid);
5701 : : }
5702 : 387 : wpa_hexdump(MSG_DEBUG, " * IEs", params->ie, params->ie_len);
5703 [ + + ]: 387 : if (params->ie)
5704 [ + - ]: 10 : NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
5705 [ + + ]: 387 : if (params->sae_data) {
5706 : 31 : wpa_hexdump(MSG_DEBUG, " * SAE data", params->sae_data,
5707 : : params->sae_data_len);
5708 [ + - ]: 31 : NLA_PUT(msg, NL80211_ATTR_SAE_DATA, params->sae_data_len,
5709 : : params->sae_data);
5710 : : }
5711 [ + + ]: 387 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
5712 : 332 : type = NL80211_AUTHTYPE_OPEN_SYSTEM;
5713 [ - + ]: 55 : else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
5714 : 0 : type = NL80211_AUTHTYPE_SHARED_KEY;
5715 [ - + ]: 55 : else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
5716 : 0 : type = NL80211_AUTHTYPE_NETWORK_EAP;
5717 [ + + ]: 55 : else if (params->auth_alg & WPA_AUTH_ALG_FT)
5718 : 24 : type = NL80211_AUTHTYPE_FT;
5719 [ + - ]: 31 : else if (params->auth_alg & WPA_AUTH_ALG_SAE)
5720 : 31 : type = NL80211_AUTHTYPE_SAE;
5721 : : else
5722 : 0 : goto nla_put_failure;
5723 : 387 : wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
5724 [ + - ]: 387 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
5725 [ + + ]: 387 : if (params->local_state_change) {
5726 : 14 : wpa_printf(MSG_DEBUG, " * Local state change only");
5727 [ + - ]: 14 : NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
5728 : : }
5729 : :
5730 : 387 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
5731 : 387 : msg = NULL;
5732 [ - + ]: 387 : if (ret) {
5733 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
5734 : : "nl80211: MLME command failed (auth): ret=%d (%s)",
5735 : : ret, strerror(-ret));
5736 : 0 : count++;
5737 [ # # ][ # # ]: 0 : if (ret == -EALREADY && count == 1 && params->bssid &&
[ # # ][ # # ]
5738 : 0 : !params->local_state_change) {
5739 : : /*
5740 : : * mac80211 does not currently accept new
5741 : : * authentication if we are already authenticated. As a
5742 : : * workaround, force deauthentication and try again.
5743 : : */
5744 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Retry authentication "
5745 : : "after forced deauthentication");
5746 : 0 : wpa_driver_nl80211_deauthenticate(
5747 : : bss, params->bssid,
5748 : : WLAN_REASON_PREV_AUTH_NOT_VALID);
5749 : 0 : nlmsg_free(msg);
5750 : 0 : goto retry;
5751 : : }
5752 : :
5753 [ # # ][ # # ]: 0 : if (ret == -ENOENT && params->freq && !is_retry) {
[ # # ]
5754 : : /*
5755 : : * cfg80211 has likely expired the BSS entry even
5756 : : * though it was previously available in our internal
5757 : : * BSS table. To recover quickly, start a single
5758 : : * channel scan on the specified channel.
5759 : : */
5760 : : struct wpa_driver_scan_params scan;
5761 : : int freqs[2];
5762 : :
5763 : 0 : os_memset(&scan, 0, sizeof(scan));
5764 : 0 : scan.num_ssids = 1;
5765 [ # # ]: 0 : if (params->ssid) {
5766 : 0 : scan.ssids[0].ssid = params->ssid;
5767 : 0 : scan.ssids[0].ssid_len = params->ssid_len;
5768 : : }
5769 : 0 : freqs[0] = params->freq;
5770 : 0 : freqs[1] = 0;
5771 : 0 : scan.freqs = freqs;
5772 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Trigger single "
5773 : : "channel scan to refresh cfg80211 BSS "
5774 : : "entry");
5775 : 0 : ret = wpa_driver_nl80211_scan(bss, &scan);
5776 [ # # ]: 0 : if (ret == 0) {
5777 : 0 : nl80211_copy_auth_params(drv, params);
5778 : 0 : drv->scan_for_auth = 1;
5779 : : }
5780 [ # # ]: 0 : } else if (is_retry) {
5781 : : /*
5782 : : * Need to indicate this with an event since the return
5783 : : * value from the retry is not delivered to core code.
5784 : : */
5785 : : union wpa_event_data event;
5786 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Authentication retry "
5787 : : "failed");
5788 : 0 : os_memset(&event, 0, sizeof(event));
5789 : 0 : os_memcpy(event.timeout_event.addr, drv->auth_bssid_,
5790 : : ETH_ALEN);
5791 : 0 : wpa_supplicant_event(drv->ctx, EVENT_AUTH_TIMED_OUT,
5792 : : &event);
5793 : : }
5794 : :
5795 : 0 : goto nla_put_failure;
5796 : : }
5797 : 387 : ret = 0;
5798 : 387 : wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
5799 : : "successfully");
5800 : :
5801 : : nla_put_failure:
5802 : 387 : nlmsg_free(msg);
5803 : 387 : return ret;
5804 : : }
5805 : :
5806 : :
5807 : 0 : static int wpa_driver_nl80211_authenticate_retry(
5808 : : struct wpa_driver_nl80211_data *drv)
5809 : : {
5810 : : struct wpa_driver_auth_params params;
5811 : 0 : struct i802_bss *bss = drv->first_bss;
5812 : : int i;
5813 : :
5814 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Try to authenticate again");
5815 : :
5816 : 0 : os_memset(¶ms, 0, sizeof(params));
5817 : 0 : params.freq = drv->auth_freq;
5818 : 0 : params.auth_alg = drv->auth_alg;
5819 : 0 : params.wep_tx_keyidx = drv->auth_wep_tx_keyidx;
5820 : 0 : params.local_state_change = drv->auth_local_state_change;
5821 : 0 : params.p2p = drv->auth_p2p;
5822 : :
5823 [ # # ]: 0 : if (!is_zero_ether_addr(drv->auth_bssid_))
5824 : 0 : params.bssid = drv->auth_bssid_;
5825 : :
5826 [ # # ]: 0 : if (drv->auth_ssid_len) {
5827 : 0 : params.ssid = drv->auth_ssid;
5828 : 0 : params.ssid_len = drv->auth_ssid_len;
5829 : : }
5830 : :
5831 : 0 : params.ie = drv->auth_ie;
5832 : 0 : params.ie_len = drv->auth_ie_len;
5833 : :
5834 [ # # ]: 0 : for (i = 0; i < 4; i++) {
5835 [ # # ]: 0 : if (drv->auth_wep_key_len[i]) {
5836 : 0 : params.wep_key[i] = drv->auth_wep_key[i];
5837 : 0 : params.wep_key_len[i] = drv->auth_wep_key_len[i];
5838 : : }
5839 : : }
5840 : :
5841 : 0 : drv->retry_auth = 1;
5842 : 0 : return wpa_driver_nl80211_authenticate(bss, ¶ms);
5843 : : }
5844 : :
5845 : :
5846 : : struct phy_info_arg {
5847 : : u16 *num_modes;
5848 : : struct hostapd_hw_modes *modes;
5849 : : int last_mode, last_chan_idx;
5850 : : };
5851 : :
5852 : 46578 : static void phy_info_ht_capa(struct hostapd_hw_modes *mode, struct nlattr *capa,
5853 : : struct nlattr *ampdu_factor,
5854 : : struct nlattr *ampdu_density,
5855 : : struct nlattr *mcs_set)
5856 : : {
5857 [ + + ]: 46578 : if (capa)
5858 : 2218 : mode->ht_capab = nla_get_u16(capa);
5859 : :
5860 [ + + ]: 46578 : if (ampdu_factor)
5861 : 2218 : mode->a_mpdu_params |= nla_get_u8(ampdu_factor) & 0x03;
5862 : :
5863 [ + + ]: 46578 : if (ampdu_density)
5864 : 2218 : mode->a_mpdu_params |= nla_get_u8(ampdu_density) << 2;
5865 : :
5866 [ + + ][ + - ]: 46578 : if (mcs_set && nla_len(mcs_set) >= 16) {
5867 : : u8 *mcs;
5868 : 2218 : mcs = nla_data(mcs_set);
5869 : 2218 : os_memcpy(mode->mcs_set, mcs, 16);
5870 : : }
5871 : 46578 : }
5872 : :
5873 : :
5874 : 46578 : static void phy_info_vht_capa(struct hostapd_hw_modes *mode,
5875 : : struct nlattr *capa,
5876 : : struct nlattr *mcs_set)
5877 : : {
5878 [ + + ]: 46578 : if (capa)
5879 : 2218 : mode->vht_capab = nla_get_u32(capa);
5880 : :
5881 [ + + ][ + - ]: 46578 : if (mcs_set && nla_len(mcs_set) >= 8) {
5882 : : u8 *mcs;
5883 : 2218 : mcs = nla_data(mcs_set);
5884 : 2218 : os_memcpy(mode->vht_mcs_set, mcs, 8);
5885 : : }
5886 : 46578 : }
5887 : :
5888 : :
5889 : 42142 : static void phy_info_freq(struct hostapd_hw_modes *mode,
5890 : : struct hostapd_channel_data *chan,
5891 : : struct nlattr *tb_freq[])
5892 : : {
5893 : : u8 channel;
5894 : 42142 : chan->freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
5895 : 42142 : chan->flag = 0;
5896 [ + - ]: 42142 : if (ieee80211_freq_to_chan(chan->freq, &channel) != NUM_HOSTAPD_MODES)
5897 : 42142 : chan->chan = channel;
5898 : :
5899 [ + + ]: 42142 : if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
5900 : 16635 : chan->flag |= HOSTAPD_CHAN_DISABLED;
5901 [ + + ]: 42142 : if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IR])
5902 : 29943 : chan->flag |= HOSTAPD_CHAN_PASSIVE_SCAN | HOSTAPD_CHAN_NO_IBSS;
5903 [ + + ]: 42142 : if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
5904 : 16635 : chan->flag |= HOSTAPD_CHAN_RADAR;
5905 : :
5906 [ + + ]: 42142 : if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]) {
5907 : 16635 : enum nl80211_dfs_state state =
5908 : 16635 : nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]);
5909 : :
5910 [ + - - - ]: 16635 : switch (state) {
5911 : : case NL80211_DFS_USABLE:
5912 : 16635 : chan->flag |= HOSTAPD_CHAN_DFS_USABLE;
5913 : 16635 : break;
5914 : : case NL80211_DFS_AVAILABLE:
5915 : 0 : chan->flag |= HOSTAPD_CHAN_DFS_AVAILABLE;
5916 : 0 : break;
5917 : : case NL80211_DFS_UNAVAILABLE:
5918 : 0 : chan->flag |= HOSTAPD_CHAN_DFS_UNAVAILABLE;
5919 : 0 : break;
5920 : : }
5921 : : }
5922 : 42142 : }
5923 : :
5924 : :
5925 : 46578 : static int phy_info_freqs(struct phy_info_arg *phy_info,
5926 : : struct hostapd_hw_modes *mode, struct nlattr *tb)
5927 : : {
5928 : : static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
5929 : : [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
5930 : : [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
5931 : : [NL80211_FREQUENCY_ATTR_NO_IR] = { .type = NLA_FLAG },
5932 : : [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
5933 : : [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
5934 : : [NL80211_FREQUENCY_ATTR_DFS_STATE] = { .type = NLA_U32 },
5935 : : };
5936 : 46578 : int new_channels = 0;
5937 : : struct hostapd_channel_data *channel;
5938 : : struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
5939 : : struct nlattr *nl_freq;
5940 : : int rem_freq, idx;
5941 : :
5942 [ + + ]: 46578 : if (tb == NULL)
5943 : 2218 : return NL_OK;
5944 : :
5945 [ + + ]: 86502 : nla_for_each_nested(nl_freq, tb, rem_freq) {
5946 : 84284 : nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
5947 : 42142 : nla_data(nl_freq), nla_len(nl_freq), freq_policy);
5948 [ - + ]: 42142 : if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
5949 : 0 : continue;
5950 : 42142 : new_channels++;
5951 : : }
5952 : :
5953 : 44360 : channel = os_realloc_array(mode->channels,
5954 : 44360 : mode->num_channels + new_channels,
5955 : : sizeof(struct hostapd_channel_data));
5956 [ - + ]: 44360 : if (!channel)
5957 : 0 : return NL_SKIP;
5958 : :
5959 : 44360 : mode->channels = channel;
5960 : 44360 : mode->num_channels += new_channels;
5961 : :
5962 : 44360 : idx = phy_info->last_chan_idx;
5963 : :
5964 [ + + ]: 86502 : nla_for_each_nested(nl_freq, tb, rem_freq) {
5965 : 84284 : nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
5966 : 42142 : nla_data(nl_freq), nla_len(nl_freq), freq_policy);
5967 [ - + ]: 42142 : if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
5968 : 0 : continue;
5969 : 42142 : phy_info_freq(mode, &mode->channels[idx], tb_freq);
5970 : 42142 : idx++;
5971 : : }
5972 : 44360 : phy_info->last_chan_idx = idx;
5973 : :
5974 : 46578 : return NL_OK;
5975 : : }
5976 : :
5977 : :
5978 : 46578 : static int phy_info_rates(struct hostapd_hw_modes *mode, struct nlattr *tb)
5979 : : {
5980 : : static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
5981 : : [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
5982 : : [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] =
5983 : : { .type = NLA_FLAG },
5984 : : };
5985 : : struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
5986 : : struct nlattr *nl_rate;
5987 : : int rem_rate, idx;
5988 : :
5989 [ + + ]: 46578 : if (tb == NULL)
5990 : 44360 : return NL_OK;
5991 : :
5992 [ + + ]: 24398 : nla_for_each_nested(nl_rate, tb, rem_rate) {
5993 : 44360 : nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
5994 : 22180 : nla_data(nl_rate), nla_len(nl_rate),
5995 : : rate_policy);
5996 [ - + ]: 22180 : if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
5997 : 0 : continue;
5998 : 22180 : mode->num_rates++;
5999 : : }
6000 : :
6001 : 2218 : mode->rates = os_calloc(mode->num_rates, sizeof(int));
6002 [ - + ]: 2218 : if (!mode->rates)
6003 : 0 : return NL_SKIP;
6004 : :
6005 : 2218 : idx = 0;
6006 : :
6007 [ + + ]: 24398 : nla_for_each_nested(nl_rate, tb, rem_rate) {
6008 : 44360 : nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
6009 : 22180 : nla_data(nl_rate), nla_len(nl_rate),
6010 : : rate_policy);
6011 [ - + ]: 22180 : if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
6012 : 0 : continue;
6013 : 22180 : mode->rates[idx] = nla_get_u32(
6014 : : tb_rate[NL80211_BITRATE_ATTR_RATE]);
6015 : 22180 : idx++;
6016 : : }
6017 : :
6018 : 46578 : return NL_OK;
6019 : : }
6020 : :
6021 : :
6022 : 46578 : static int phy_info_band(struct phy_info_arg *phy_info, struct nlattr *nl_band)
6023 : : {
6024 : : struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
6025 : : struct hostapd_hw_modes *mode;
6026 : : int ret;
6027 : :
6028 [ + + ]: 46578 : if (phy_info->last_mode != nl_band->nla_type) {
6029 : 2218 : mode = os_realloc_array(phy_info->modes,
6030 : 2218 : *phy_info->num_modes + 1,
6031 : : sizeof(*mode));
6032 [ - + ]: 2218 : if (!mode)
6033 : 0 : return NL_SKIP;
6034 : 2218 : phy_info->modes = mode;
6035 : :
6036 : 2218 : mode = &phy_info->modes[*(phy_info->num_modes)];
6037 : 2218 : os_memset(mode, 0, sizeof(*mode));
6038 : 2218 : mode->mode = NUM_HOSTAPD_MODES;
6039 : 2218 : mode->flags = HOSTAPD_MODE_FLAG_HT_INFO_KNOWN |
6040 : : HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN;
6041 : :
6042 : : /*
6043 : : * Unsupported VHT MCS stream is defined as value 3, so the VHT
6044 : : * MCS RX/TX map must be initialized with 0xffff to mark all 8
6045 : : * possible streams as unsupported. This will be overridden if
6046 : : * driver advertises VHT support.
6047 : : */
6048 : 2218 : mode->vht_mcs_set[0] = 0xff;
6049 : 2218 : mode->vht_mcs_set[1] = 0xff;
6050 : 2218 : mode->vht_mcs_set[4] = 0xff;
6051 : 2218 : mode->vht_mcs_set[5] = 0xff;
6052 : :
6053 : 2218 : *(phy_info->num_modes) += 1;
6054 : 2218 : phy_info->last_mode = nl_band->nla_type;
6055 : 2218 : phy_info->last_chan_idx = 0;
6056 : : } else
6057 : 44360 : mode = &phy_info->modes[*(phy_info->num_modes) - 1];
6058 : :
6059 : 46578 : nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
6060 : : nla_len(nl_band), NULL);
6061 : :
6062 : 46578 : phy_info_ht_capa(mode, tb_band[NL80211_BAND_ATTR_HT_CAPA],
6063 : : tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR],
6064 : : tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY],
6065 : : tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
6066 : 46578 : phy_info_vht_capa(mode, tb_band[NL80211_BAND_ATTR_VHT_CAPA],
6067 : : tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]);
6068 : 46578 : ret = phy_info_freqs(phy_info, mode, tb_band[NL80211_BAND_ATTR_FREQS]);
6069 [ - + ]: 46578 : if (ret != NL_OK)
6070 : 0 : return ret;
6071 : 46578 : ret = phy_info_rates(mode, tb_band[NL80211_BAND_ATTR_RATES]);
6072 [ - + ]: 46578 : if (ret != NL_OK)
6073 : 0 : return ret;
6074 : :
6075 : 46578 : return NL_OK;
6076 : : }
6077 : :
6078 : :
6079 : 58777 : static int phy_info_handler(struct nl_msg *msg, void *arg)
6080 : : {
6081 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
6082 : 58777 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
6083 : 58777 : struct phy_info_arg *phy_info = arg;
6084 : : struct nlattr *nl_band;
6085 : : int rem_band;
6086 : :
6087 : 58777 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
6088 : : genlmsg_attrlen(gnlh, 0), NULL);
6089 : :
6090 [ + + ]: 58777 : if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
6091 : 11090 : return NL_SKIP;
6092 : :
6093 [ + + ]: 94265 : nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band)
6094 : : {
6095 : 46578 : int res = phy_info_band(phy_info, nl_band);
6096 [ - + ]: 46578 : if (res != NL_OK)
6097 : 0 : return res;
6098 : : }
6099 : :
6100 : 58777 : return NL_SKIP;
6101 : : }
6102 : :
6103 : :
6104 : : static struct hostapd_hw_modes *
6105 : 1109 : wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes,
6106 : : u16 *num_modes)
6107 : : {
6108 : : u16 m;
6109 : 1109 : struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
6110 : 1109 : int i, mode11g_idx = -1;
6111 : :
6112 : : /* heuristic to set up modes */
6113 [ + + ]: 3327 : for (m = 0; m < *num_modes; m++) {
6114 [ - + ]: 2218 : if (!modes[m].num_channels)
6115 : 0 : continue;
6116 [ + + ]: 2218 : if (modes[m].channels[0].freq < 4000) {
6117 : 1109 : modes[m].mode = HOSTAPD_MODE_IEEE80211B;
6118 [ + - ]: 11090 : for (i = 0; i < modes[m].num_rates; i++) {
6119 [ + + ]: 9981 : if (modes[m].rates[i] > 200) {
6120 : 1109 : modes[m].mode = HOSTAPD_MODE_IEEE80211G;
6121 : 1109 : break;
6122 : : }
6123 : : }
6124 [ - + ]: 1109 : } else if (modes[m].channels[0].freq > 50000)
6125 : 0 : modes[m].mode = HOSTAPD_MODE_IEEE80211AD;
6126 : : else
6127 : 1109 : modes[m].mode = HOSTAPD_MODE_IEEE80211A;
6128 : : }
6129 : :
6130 : : /* If only 802.11g mode is included, use it to construct matching
6131 : : * 802.11b mode data. */
6132 : :
6133 [ + + ]: 3327 : for (m = 0; m < *num_modes; m++) {
6134 [ - + ]: 2218 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
6135 : 0 : return modes; /* 802.11b already included */
6136 [ + + ]: 2218 : if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
6137 : 1109 : mode11g_idx = m;
6138 : : }
6139 : :
6140 [ - + ]: 1109 : if (mode11g_idx < 0)
6141 : 0 : return modes; /* 2.4 GHz band not supported at all */
6142 : :
6143 : 1109 : nmodes = os_realloc_array(modes, *num_modes + 1, sizeof(*nmodes));
6144 [ - + ]: 1109 : if (nmodes == NULL)
6145 : 0 : return modes; /* Could not add 802.11b mode */
6146 : :
6147 : 1109 : mode = &nmodes[*num_modes];
6148 : 1109 : os_memset(mode, 0, sizeof(*mode));
6149 : 1109 : (*num_modes)++;
6150 : 1109 : modes = nmodes;
6151 : :
6152 : 1109 : mode->mode = HOSTAPD_MODE_IEEE80211B;
6153 : :
6154 : 1109 : mode11g = &modes[mode11g_idx];
6155 : 1109 : mode->num_channels = mode11g->num_channels;
6156 : 1109 : mode->channels = os_malloc(mode11g->num_channels *
6157 : : sizeof(struct hostapd_channel_data));
6158 [ - + ]: 1109 : if (mode->channels == NULL) {
6159 : 0 : (*num_modes)--;
6160 : 0 : return modes; /* Could not add 802.11b mode */
6161 : : }
6162 : 1109 : os_memcpy(mode->channels, mode11g->channels,
6163 : : mode11g->num_channels * sizeof(struct hostapd_channel_data));
6164 : :
6165 : 1109 : mode->num_rates = 0;
6166 : 1109 : mode->rates = os_malloc(4 * sizeof(int));
6167 [ - + ]: 1109 : if (mode->rates == NULL) {
6168 : 0 : os_free(mode->channels);
6169 : 0 : (*num_modes)--;
6170 : 0 : return modes; /* Could not add 802.11b mode */
6171 : : }
6172 : :
6173 [ + - ]: 4436 : for (i = 0; i < mode11g->num_rates; i++) {
6174 [ + + ][ + + ]: 4436 : if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
[ + + ]
6175 [ - + ]: 1109 : mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
6176 : 0 : continue;
6177 : 4436 : mode->rates[mode->num_rates] = mode11g->rates[i];
6178 : 4436 : mode->num_rates++;
6179 [ + + ]: 4436 : if (mode->num_rates == 4)
6180 : 1109 : break;
6181 : : }
6182 : :
6183 [ - + ]: 1109 : if (mode->num_rates == 0) {
6184 : 0 : os_free(mode->channels);
6185 : 0 : os_free(mode->rates);
6186 : 0 : (*num_modes)--;
6187 : 0 : return modes; /* No 802.11b rates */
6188 : : }
6189 : :
6190 : 1109 : wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
6191 : : "information");
6192 : :
6193 : 1109 : return modes;
6194 : : }
6195 : :
6196 : :
6197 : 6654 : static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
6198 : : int end)
6199 : : {
6200 : : int c;
6201 : :
6202 [ + + ]: 133080 : for (c = 0; c < mode->num_channels; c++) {
6203 : 126426 : struct hostapd_channel_data *chan = &mode->channels[c];
6204 [ + + ][ + + ]: 126426 : if (chan->freq - 10 >= start && chan->freq + 10 <= end)
6205 : 22180 : chan->flag |= HOSTAPD_CHAN_HT40;
6206 : : }
6207 : 6654 : }
6208 : :
6209 : :
6210 : 11090 : static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
6211 : : int end)
6212 : : {
6213 : : int c;
6214 : :
6215 [ + + ]: 221800 : for (c = 0; c < mode->num_channels; c++) {
6216 : 210710 : struct hostapd_channel_data *chan = &mode->channels[c];
6217 [ + + ]: 210710 : if (!(chan->flag & HOSTAPD_CHAN_HT40))
6218 : 99810 : continue;
6219 [ + + ][ + + ]: 110900 : if (chan->freq - 30 >= start && chan->freq - 10 <= end)
6220 : 15526 : chan->flag |= HOSTAPD_CHAN_HT40MINUS;
6221 [ + + ][ + + ]: 110900 : if (chan->freq + 10 >= start && chan->freq + 30 <= end)
6222 : 17744 : chan->flag |= HOSTAPD_CHAN_HT40PLUS;
6223 : : }
6224 : 11090 : }
6225 : :
6226 : :
6227 : 5545 : static void nl80211_reg_rule_max_eirp(struct nlattr *tb[],
6228 : : struct phy_info_arg *results)
6229 : : {
6230 : : u32 start, end, max_eirp;
6231 : : u16 m;
6232 : :
6233 [ + - ][ + - ]: 5545 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6234 [ - + ]: 5545 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6235 : 5545 : tb[NL80211_ATTR_POWER_RULE_MAX_EIRP] == NULL)
6236 : 5545 : return;
6237 : :
6238 : 5545 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6239 : 5545 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6240 : 5545 : max_eirp = nla_get_u32(tb[NL80211_ATTR_POWER_RULE_MAX_EIRP]) / 100;
6241 : :
6242 : 5545 : wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u mBm",
6243 : : start, end, max_eirp);
6244 : :
6245 [ + + ]: 16635 : for (m = 0; m < *results->num_modes; m++) {
6246 : : int c;
6247 : 11090 : struct hostapd_hw_modes *mode = &results->modes[m];
6248 : :
6249 [ + + ]: 221800 : for (c = 0; c < mode->num_channels; c++) {
6250 : 210710 : struct hostapd_channel_data *chan = &mode->channels[c];
6251 [ + + ][ + + ]: 210710 : if ((u32) chan->freq - 10 >= start &&
6252 : 131971 : (u32) chan->freq + 10 <= end)
6253 : 25507 : chan->max_tx_power = max_eirp;
6254 : : }
6255 : : }
6256 : : }
6257 : :
6258 : :
6259 : 5545 : static void nl80211_reg_rule_ht40(struct nlattr *tb[],
6260 : : struct phy_info_arg *results)
6261 : : {
6262 : : u32 start, end, max_bw;
6263 : : u16 m;
6264 : :
6265 [ + - ][ + - ]: 5545 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6266 [ - + ]: 5545 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6267 : 5545 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6268 : 0 : return;
6269 : :
6270 : 5545 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6271 : 5545 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6272 : 5545 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6273 : :
6274 : 5545 : wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz",
6275 : : start, end, max_bw);
6276 [ + + ]: 5545 : if (max_bw < 40)
6277 : 2218 : return;
6278 : :
6279 [ + + ]: 12199 : for (m = 0; m < *results->num_modes; m++) {
6280 [ - + ]: 6654 : if (!(results->modes[m].ht_capab &
6281 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6282 : 0 : continue;
6283 : 6654 : nl80211_set_ht40_mode(&results->modes[m], start, end);
6284 : : }
6285 : : }
6286 : :
6287 : :
6288 : 5545 : static void nl80211_reg_rule_sec(struct nlattr *tb[],
6289 : : struct phy_info_arg *results)
6290 : : {
6291 : : u32 start, end, max_bw;
6292 : : u16 m;
6293 : :
6294 [ + - ][ + - ]: 5545 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6295 [ - + ]: 5545 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6296 : 5545 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6297 : 0 : return;
6298 : :
6299 : 5545 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6300 : 5545 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6301 : 5545 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6302 : :
6303 [ - + ]: 5545 : if (max_bw < 20)
6304 : 0 : return;
6305 : :
6306 [ + + ]: 16635 : for (m = 0; m < *results->num_modes; m++) {
6307 [ - + ]: 11090 : if (!(results->modes[m].ht_capab &
6308 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6309 : 0 : continue;
6310 : 11090 : nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
6311 : : }
6312 : : }
6313 : :
6314 : :
6315 : 0 : static void nl80211_set_vht_mode(struct hostapd_hw_modes *mode, int start,
6316 : : int end)
6317 : : {
6318 : : int c;
6319 : :
6320 [ # # ]: 0 : for (c = 0; c < mode->num_channels; c++) {
6321 : 0 : struct hostapd_channel_data *chan = &mode->channels[c];
6322 [ # # ][ # # ]: 0 : if (chan->freq - 10 >= start && chan->freq + 70 <= end)
6323 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_10_70;
6324 : :
6325 [ # # ][ # # ]: 0 : if (chan->freq - 30 >= start && chan->freq + 50 <= end)
6326 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_30_50;
6327 : :
6328 [ # # ][ # # ]: 0 : if (chan->freq - 50 >= start && chan->freq + 30 <= end)
6329 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_50_30;
6330 : :
6331 [ # # ][ # # ]: 0 : if (chan->freq - 70 >= start && chan->freq + 10 <= end)
6332 : 0 : chan->flag |= HOSTAPD_CHAN_VHT_70_10;
6333 : : }
6334 : 0 : }
6335 : :
6336 : :
6337 : 5545 : static void nl80211_reg_rule_vht(struct nlattr *tb[],
6338 : : struct phy_info_arg *results)
6339 : : {
6340 : : u32 start, end, max_bw;
6341 : : u16 m;
6342 : :
6343 [ + - ][ + - ]: 5545 : if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
6344 [ - + ]: 5545 : tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
6345 : 5545 : tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
6346 : 0 : return;
6347 : :
6348 : 5545 : start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
6349 : 5545 : end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
6350 : 5545 : max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
6351 : :
6352 [ + - ]: 5545 : if (max_bw < 80)
6353 : 5545 : return;
6354 : :
6355 [ # # ]: 5545 : for (m = 0; m < *results->num_modes; m++) {
6356 [ # # ]: 0 : if (!(results->modes[m].ht_capab &
6357 : : HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
6358 : 0 : continue;
6359 : : /* TODO: use a real VHT support indication */
6360 [ # # ]: 0 : if (!results->modes[m].vht_capab)
6361 : 0 : continue;
6362 : :
6363 : 0 : nl80211_set_vht_mode(&results->modes[m], start, end);
6364 : : }
6365 : : }
6366 : :
6367 : :
6368 : 1109 : static int nl80211_get_reg(struct nl_msg *msg, void *arg)
6369 : : {
6370 : 1109 : struct phy_info_arg *results = arg;
6371 : : struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
6372 : 1109 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
6373 : : struct nlattr *nl_rule;
6374 : : struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
6375 : : int rem_rule;
6376 : : static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
6377 : : [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
6378 : : [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
6379 : : [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
6380 : : [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
6381 : : [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
6382 : : [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
6383 : : };
6384 : :
6385 : 1109 : nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
6386 : : genlmsg_attrlen(gnlh, 0), NULL);
6387 [ - + ][ + - ]: 1109 : if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
6388 : 1109 : !tb_msg[NL80211_ATTR_REG_RULES]) {
6389 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
6390 : : "available");
6391 : 0 : return NL_SKIP;
6392 : : }
6393 : :
6394 : 1109 : wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
6395 : 1109 : (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
6396 : :
6397 [ + + ]: 6654 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6398 : : {
6399 : 11090 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6400 : 5545 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6401 : 5545 : nl80211_reg_rule_ht40(tb_rule, results);
6402 : 5545 : nl80211_reg_rule_max_eirp(tb_rule, results);
6403 : : }
6404 : :
6405 [ + + ]: 6654 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6406 : : {
6407 : 11090 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6408 : 5545 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6409 : 5545 : nl80211_reg_rule_sec(tb_rule, results);
6410 : : }
6411 : :
6412 [ + + ]: 6654 : nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
6413 : : {
6414 : 11090 : nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
6415 : 5545 : nla_data(nl_rule), nla_len(nl_rule), reg_policy);
6416 : 5545 : nl80211_reg_rule_vht(tb_rule, results);
6417 : : }
6418 : :
6419 : 1109 : return NL_SKIP;
6420 : : }
6421 : :
6422 : :
6423 : 1109 : static int nl80211_set_regulatory_flags(struct wpa_driver_nl80211_data *drv,
6424 : : struct phy_info_arg *results)
6425 : : {
6426 : : struct nl_msg *msg;
6427 : :
6428 : 1109 : msg = nlmsg_alloc();
6429 [ - + ]: 1109 : if (!msg)
6430 : 0 : return -ENOMEM;
6431 : :
6432 : 1109 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
6433 : 1109 : return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
6434 : : }
6435 : :
6436 : :
6437 : : static struct hostapd_hw_modes *
6438 : 1109 : wpa_driver_nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
6439 : : {
6440 : : u32 feat;
6441 : 1109 : struct i802_bss *bss = priv;
6442 : 1109 : struct wpa_driver_nl80211_data *drv = bss->drv;
6443 : : struct nl_msg *msg;
6444 : 1109 : struct phy_info_arg result = {
6445 : : .num_modes = num_modes,
6446 : : .modes = NULL,
6447 : : .last_mode = -1,
6448 : : };
6449 : :
6450 : 1109 : *num_modes = 0;
6451 : 1109 : *flags = 0;
6452 : :
6453 : 1109 : msg = nlmsg_alloc();
6454 [ - + ]: 1109 : if (!msg)
6455 : 0 : return NULL;
6456 : :
6457 : 1109 : feat = get_nl80211_protocol_features(drv);
6458 [ + - ]: 1109 : if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
6459 : 1109 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
6460 : : else
6461 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
6462 : :
6463 [ + - ]: 1109 : NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
6464 [ + - ]: 1109 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
6465 : :
6466 [ + - ]: 1109 : if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
6467 : 1109 : nl80211_set_regulatory_flags(drv, &result);
6468 : 1109 : return wpa_driver_nl80211_postprocess_modes(result.modes,
6469 : : num_modes);
6470 : : }
6471 : 0 : msg = NULL;
6472 : : nla_put_failure:
6473 : 0 : nlmsg_free(msg);
6474 : 1109 : return NULL;
6475 : : }
6476 : :
6477 : :
6478 : 0 : static int wpa_driver_nl80211_send_mntr(struct wpa_driver_nl80211_data *drv,
6479 : : const void *data, size_t len,
6480 : : int encrypt, int noack)
6481 : : {
6482 : 0 : __u8 rtap_hdr[] = {
6483 : : 0x00, 0x00, /* radiotap version */
6484 : : 0x0e, 0x00, /* radiotap length */
6485 : : 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
6486 : : IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
6487 : : 0x00, /* padding */
6488 : : 0x00, 0x00, /* RX and TX flags to indicate that */
6489 : : 0x00, 0x00, /* this is the injected frame directly */
6490 : : };
6491 : 0 : struct iovec iov[2] = {
6492 : : {
6493 : : .iov_base = &rtap_hdr,
6494 : : .iov_len = sizeof(rtap_hdr),
6495 : : },
6496 : : {
6497 : : .iov_base = (void *) data,
6498 : : .iov_len = len,
6499 : : }
6500 : : };
6501 : 0 : struct msghdr msg = {
6502 : : .msg_name = NULL,
6503 : : .msg_namelen = 0,
6504 : : .msg_iov = iov,
6505 : : .msg_iovlen = 2,
6506 : : .msg_control = NULL,
6507 : : .msg_controllen = 0,
6508 : : .msg_flags = 0,
6509 : : };
6510 : : int res;
6511 : 0 : u16 txflags = 0;
6512 : :
6513 [ # # ]: 0 : if (encrypt)
6514 : 0 : rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
6515 : :
6516 [ # # ]: 0 : if (drv->monitor_sock < 0) {
6517 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No monitor socket available "
6518 : : "for %s", __func__);
6519 : 0 : return -1;
6520 : : }
6521 : :
6522 [ # # ]: 0 : if (noack)
6523 : 0 : txflags |= IEEE80211_RADIOTAP_F_TX_NOACK;
6524 : 0 : WPA_PUT_LE16(&rtap_hdr[12], txflags);
6525 : :
6526 : 0 : res = sendmsg(drv->monitor_sock, &msg, 0);
6527 [ # # ]: 0 : if (res < 0) {
6528 : 0 : wpa_printf(MSG_INFO, "nl80211: sendmsg: %s", strerror(errno));
6529 : 0 : return -1;
6530 : : }
6531 : 0 : return 0;
6532 : : }
6533 : :
6534 : :
6535 : 2122 : static int wpa_driver_nl80211_send_frame(struct i802_bss *bss,
6536 : : const void *data, size_t len,
6537 : : int encrypt, int noack,
6538 : : unsigned int freq, int no_cck,
6539 : : int offchanok, unsigned int wait_time)
6540 : : {
6541 : 2122 : struct wpa_driver_nl80211_data *drv = bss->drv;
6542 : : u64 cookie;
6543 : : int res;
6544 : :
6545 [ + + ]: 2122 : if (freq == 0) {
6546 : 2022 : wpa_printf(MSG_DEBUG, "nl80211: send_frame - Use bss->freq=%u",
6547 : : bss->freq);
6548 : 2022 : freq = bss->freq;
6549 : : }
6550 : :
6551 [ - + ]: 2122 : if (drv->use_monitor) {
6552 : 0 : wpa_printf(MSG_DEBUG, "nl80211: send_frame(freq=%u bss->freq=%u) -> send_mntr",
6553 : : freq, bss->freq);
6554 : 0 : return wpa_driver_nl80211_send_mntr(drv, data, len,
6555 : : encrypt, noack);
6556 : : }
6557 : :
6558 : 2122 : wpa_printf(MSG_DEBUG, "nl80211: send_frame -> send_frame_cmd");
6559 : 2122 : res = nl80211_send_frame_cmd(bss, freq, wait_time, data, len,
6560 : : &cookie, no_cck, noack, offchanok);
6561 [ + + ][ + + ]: 2122 : if (res == 0 && !noack) {
6562 : : const struct ieee80211_mgmt *mgmt;
6563 : : u16 fc;
6564 : :
6565 : 1253 : mgmt = (const struct ieee80211_mgmt *) data;
6566 : 1253 : fc = le_to_host16(mgmt->frame_control);
6567 [ + - ][ + + ]: 1253 : if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6568 : 1253 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_ACTION) {
6569 : 124 : wpa_printf(MSG_MSGDUMP,
6570 : : "nl80211: Update send_action_cookie from 0x%llx to 0x%llx",
6571 : : (long long unsigned int)
6572 : 124 : drv->send_action_cookie,
6573 : : (long long unsigned int) cookie);
6574 : 124 : drv->send_action_cookie = cookie;
6575 : : }
6576 : : }
6577 : :
6578 : 2122 : return res;
6579 : : }
6580 : :
6581 : :
6582 : 2368 : static int wpa_driver_nl80211_send_mlme(struct i802_bss *bss, const u8 *data,
6583 : : size_t data_len, int noack,
6584 : : unsigned int freq, int no_cck,
6585 : : int offchanok,
6586 : : unsigned int wait_time)
6587 : : {
6588 : 2368 : struct wpa_driver_nl80211_data *drv = bss->drv;
6589 : : struct ieee80211_mgmt *mgmt;
6590 : 2368 : int encrypt = 1;
6591 : : u16 fc;
6592 : :
6593 : 2368 : mgmt = (struct ieee80211_mgmt *) data;
6594 : 2368 : fc = le_to_host16(mgmt->frame_control);
6595 : 2368 : wpa_printf(MSG_DEBUG, "nl80211: send_mlme - noack=%d freq=%u no_cck=%d offchanok=%d wait_time=%u fc=0x%x nlmode=%d",
6596 : 2368 : noack, freq, no_cck, offchanok, wait_time, fc, drv->nlmode);
6597 : :
6598 [ - + ][ + + ]: 2368 : if ((is_sta_interface(drv->nlmode) ||
6599 [ + - ]: 258 : drv->nlmode == NL80211_IFTYPE_P2P_DEVICE) &&
6600 [ + - ]: 258 : WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6601 : 258 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
6602 : : /*
6603 : : * The use of last_mgmt_freq is a bit of a hack,
6604 : : * but it works due to the single-threaded nature
6605 : : * of wpa_supplicant.
6606 : : */
6607 [ + - ]: 258 : if (freq == 0) {
6608 : 258 : wpa_printf(MSG_DEBUG, "nl80211: Use last_mgmt_freq=%d",
6609 : : drv->last_mgmt_freq);
6610 : 258 : freq = drv->last_mgmt_freq;
6611 : : }
6612 : 258 : return nl80211_send_frame_cmd(bss, freq, 0,
6613 : : data, data_len, NULL, 1, noack,
6614 : : 1);
6615 : : }
6616 : :
6617 [ - + ][ # # ]: 2110 : if (drv->device_ap_sme && is_ap_interface(drv->nlmode)) {
6618 [ # # ]: 0 : if (freq == 0) {
6619 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Use bss->freq=%d",
6620 : : bss->freq);
6621 : 0 : freq = bss->freq;
6622 : : }
6623 [ # # ]: 0 : return nl80211_send_frame_cmd(bss, freq,
6624 : 0 : (int) freq == bss->freq ? 0 :
6625 : : wait_time,
6626 : : data, data_len,
6627 : : &drv->send_action_cookie,
6628 : : no_cck, noack, offchanok);
6629 : : }
6630 : :
6631 [ + - ][ + + ]: 2110 : if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
6632 : 2110 : WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_AUTH) {
6633 : : /*
6634 : : * Only one of the authentication frame types is encrypted.
6635 : : * In order for static WEP encryption to work properly (i.e.,
6636 : : * to not encrypt the frame), we need to tell mac80211 about
6637 : : * the frames that must not be encrypted.
6638 : : */
6639 : 370 : u16 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
6640 : 370 : u16 auth_trans = le_to_host16(mgmt->u.auth.auth_transaction);
6641 [ - + ][ # # ]: 370 : if (auth_alg != WLAN_AUTH_SHARED_KEY || auth_trans != 3)
6642 : 370 : encrypt = 0;
6643 : : }
6644 : :
6645 : 2110 : wpa_printf(MSG_DEBUG, "nl80211: send_mlme -> send_frame");
6646 : 2368 : return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt,
6647 : : noack, freq, no_cck, offchanok,
6648 : : wait_time);
6649 : : }
6650 : :
6651 : :
6652 : 936 : static int nl80211_set_bss(struct i802_bss *bss, int cts, int preamble,
6653 : : int slot, int ht_opmode, int ap_isolate,
6654 : : int *basic_rates)
6655 : : {
6656 : 936 : struct wpa_driver_nl80211_data *drv = bss->drv;
6657 : : struct nl_msg *msg;
6658 : :
6659 : 936 : msg = nlmsg_alloc();
6660 [ - + ]: 936 : if (!msg)
6661 : 0 : return -ENOMEM;
6662 : :
6663 : 936 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_BSS);
6664 : :
6665 [ + - ]: 936 : if (cts >= 0)
6666 [ + - ]: 936 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_CTS_PROT, cts);
6667 [ + - ]: 936 : if (preamble >= 0)
6668 [ + - ]: 936 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_PREAMBLE, preamble);
6669 [ + - ]: 936 : if (slot >= 0)
6670 [ + - ]: 936 : NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_SLOT_TIME, slot);
6671 [ + + ]: 936 : if (ht_opmode >= 0)
6672 [ + - ]: 499 : NLA_PUT_U16(msg, NL80211_ATTR_BSS_HT_OPMODE, ht_opmode);
6673 [ + - ]: 936 : if (ap_isolate >= 0)
6674 [ + - ]: 936 : NLA_PUT_U8(msg, NL80211_ATTR_AP_ISOLATE, ap_isolate);
6675 : :
6676 [ + - ]: 936 : if (basic_rates) {
6677 : : u8 rates[NL80211_MAX_SUPP_RATES];
6678 : 936 : u8 rates_len = 0;
6679 : : int i;
6680 : :
6681 [ + - ][ + + ]: 4256 : for (i = 0; i < NL80211_MAX_SUPP_RATES && basic_rates[i] >= 0;
6682 : 3320 : i++)
6683 : 3320 : rates[rates_len++] = basic_rates[i] / 5;
6684 : :
6685 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
6686 : : }
6687 : :
6688 [ + - ]: 936 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
6689 : :
6690 : 936 : return send_and_recv_msgs(drv, msg, NULL, NULL);
6691 : : nla_put_failure:
6692 : 0 : nlmsg_free(msg);
6693 : 936 : return -ENOBUFS;
6694 : : }
6695 : :
6696 : :
6697 : 0 : static int wpa_driver_nl80211_set_acl(void *priv,
6698 : : struct hostapd_acl_params *params)
6699 : : {
6700 : 0 : struct i802_bss *bss = priv;
6701 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
6702 : : struct nl_msg *msg;
6703 : : struct nlattr *acl;
6704 : : unsigned int i;
6705 : 0 : int ret = 0;
6706 : :
6707 [ # # ]: 0 : if (!(drv->capa.max_acl_mac_addrs))
6708 : 0 : return -ENOTSUP;
6709 : :
6710 [ # # ]: 0 : if (params->num_mac_acl > drv->capa.max_acl_mac_addrs)
6711 : 0 : return -ENOTSUP;
6712 : :
6713 : 0 : msg = nlmsg_alloc();
6714 [ # # ]: 0 : if (!msg)
6715 : 0 : return -ENOMEM;
6716 : :
6717 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: Set %s ACL (num_mac_acl=%u)",
6718 : 0 : params->acl_policy ? "Accept" : "Deny", params->num_mac_acl);
6719 : :
6720 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_MAC_ACL);
6721 : :
6722 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
6723 : :
6724 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_ACL_POLICY, params->acl_policy ?
6725 : : NL80211_ACL_POLICY_DENY_UNLESS_LISTED :
6726 : : NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED);
6727 : :
6728 : 0 : acl = nla_nest_start(msg, NL80211_ATTR_MAC_ADDRS);
6729 [ # # ]: 0 : if (acl == NULL)
6730 : 0 : goto nla_put_failure;
6731 : :
6732 [ # # ]: 0 : for (i = 0; i < params->num_mac_acl; i++)
6733 [ # # ]: 0 : NLA_PUT(msg, i + 1, ETH_ALEN, params->mac_acl[i].addr);
6734 : :
6735 : 0 : nla_nest_end(msg, acl);
6736 : :
6737 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
6738 : 0 : msg = NULL;
6739 [ # # ]: 0 : if (ret) {
6740 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set MAC ACL: %d (%s)",
6741 : : ret, strerror(-ret));
6742 : : }
6743 : :
6744 : : nla_put_failure:
6745 : 0 : nlmsg_free(msg);
6746 : :
6747 : 0 : return ret;
6748 : : }
6749 : :
6750 : :
6751 : 936 : static int wpa_driver_nl80211_set_ap(void *priv,
6752 : : struct wpa_driver_ap_params *params)
6753 : : {
6754 : 936 : struct i802_bss *bss = priv;
6755 : 936 : struct wpa_driver_nl80211_data *drv = bss->drv;
6756 : : struct nl_msg *msg;
6757 : 936 : u8 cmd = NL80211_CMD_NEW_BEACON;
6758 : : int ret;
6759 : : int beacon_set;
6760 : 936 : int ifindex = if_nametoindex(bss->ifname);
6761 : : int num_suites;
6762 : : u32 suites[10];
6763 : : u32 ver;
6764 : :
6765 : 936 : beacon_set = bss->beacon_set;
6766 : :
6767 : 936 : msg = nlmsg_alloc();
6768 [ - + ]: 936 : if (!msg)
6769 : 0 : return -ENOMEM;
6770 : :
6771 : 936 : wpa_printf(MSG_DEBUG, "nl80211: Set beacon (beacon_set=%d)",
6772 : : beacon_set);
6773 [ + + ]: 936 : if (beacon_set)
6774 : 703 : cmd = NL80211_CMD_SET_BEACON;
6775 : :
6776 : 936 : nl80211_cmd(drv, msg, 0, cmd);
6777 : 936 : wpa_hexdump(MSG_DEBUG, "nl80211: Beacon head",
6778 : 936 : params->head, params->head_len);
6779 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD, params->head_len, params->head);
6780 : 936 : wpa_hexdump(MSG_DEBUG, "nl80211: Beacon tail",
6781 : 936 : params->tail, params->tail_len);
6782 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL, params->tail_len, params->tail);
6783 : 936 : wpa_printf(MSG_DEBUG, "nl80211: ifindex=%d", ifindex);
6784 [ + - ]: 936 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
6785 : 936 : wpa_printf(MSG_DEBUG, "nl80211: beacon_int=%d", params->beacon_int);
6786 [ + - ]: 936 : NLA_PUT_U32(msg, NL80211_ATTR_BEACON_INTERVAL, params->beacon_int);
6787 : 936 : wpa_printf(MSG_DEBUG, "nl80211: dtim_period=%d", params->dtim_period);
6788 [ + - ]: 936 : NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period);
6789 : 936 : wpa_hexdump_ascii(MSG_DEBUG, "nl80211: ssid",
6790 : 936 : params->ssid, params->ssid_len);
6791 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
6792 : : params->ssid);
6793 [ - + ][ # # ]: 936 : if (params->proberesp && params->proberesp_len) {
6794 : 0 : wpa_hexdump(MSG_DEBUG, "nl80211: proberesp (offload)",
6795 : 0 : params->proberesp, params->proberesp_len);
6796 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_PROBE_RESP, params->proberesp_len,
6797 : : params->proberesp);
6798 : : }
6799 [ + - - - ]: 936 : switch (params->hide_ssid) {
6800 : : case NO_SSID_HIDING:
6801 : 936 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID not in use");
6802 [ + - ]: 936 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6803 : : NL80211_HIDDEN_SSID_NOT_IN_USE);
6804 : 936 : break;
6805 : : case HIDDEN_SSID_ZERO_LEN:
6806 : 0 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero len");
6807 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6808 : : NL80211_HIDDEN_SSID_ZERO_LEN);
6809 : 0 : break;
6810 : : case HIDDEN_SSID_ZERO_CONTENTS:
6811 : 0 : wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero contents");
6812 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
6813 : : NL80211_HIDDEN_SSID_ZERO_CONTENTS);
6814 : 0 : break;
6815 : : }
6816 : 936 : wpa_printf(MSG_DEBUG, "nl80211: privacy=%d", params->privacy);
6817 [ + + ]: 936 : if (params->privacy)
6818 [ + - ]: 883 : NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
6819 : 936 : wpa_printf(MSG_DEBUG, "nl80211: auth_algs=0x%x", params->auth_algs);
6820 [ + + ]: 936 : if ((params->auth_algs & (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) ==
6821 : : (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) {
6822 : : /* Leave out the attribute */
6823 [ - + ]: 443 : } else if (params->auth_algs & WPA_AUTH_ALG_SHARED)
6824 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
6825 : : NL80211_AUTHTYPE_SHARED_KEY);
6826 : : else
6827 [ + - ]: 443 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
6828 : : NL80211_AUTHTYPE_OPEN_SYSTEM);
6829 : :
6830 : 936 : wpa_printf(MSG_DEBUG, "nl80211: wpa_version=0x%x", params->wpa_version);
6831 : 936 : ver = 0;
6832 [ + + ]: 936 : if (params->wpa_version & WPA_PROTO_WPA)
6833 : 36 : ver |= NL80211_WPA_VERSION_1;
6834 [ + + ]: 936 : if (params->wpa_version & WPA_PROTO_RSN)
6835 : 871 : ver |= NL80211_WPA_VERSION_2;
6836 [ + + ]: 936 : if (ver)
6837 [ + - ]: 880 : NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
6838 : :
6839 : 936 : wpa_printf(MSG_DEBUG, "nl80211: key_mgmt_suites=0x%x",
6840 : : params->key_mgmt_suites);
6841 : 936 : num_suites = 0;
6842 [ + + ]: 936 : if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X)
6843 : 173 : suites[num_suites++] = WLAN_AKM_SUITE_8021X;
6844 [ + + ]: 936 : if (params->key_mgmt_suites & WPA_KEY_MGMT_PSK)
6845 : 670 : suites[num_suites++] = WLAN_AKM_SUITE_PSK;
6846 [ + + ]: 936 : if (num_suites) {
6847 [ + - ]: 843 : NLA_PUT(msg, NL80211_ATTR_AKM_SUITES,
6848 : : num_suites * sizeof(u32), suites);
6849 : : }
6850 : :
6851 [ + + ][ - + ]: 936 : if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X &&
6852 : 173 : params->pairwise_ciphers & (WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40))
6853 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT);
6854 : :
6855 : 936 : wpa_printf(MSG_DEBUG, "nl80211: pairwise_ciphers=0x%x",
6856 : : params->pairwise_ciphers);
6857 : 936 : num_suites = 0;
6858 [ + + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_CCMP_256)
6859 : 3 : suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP_256;
6860 [ + + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_GCMP_256)
6861 : 3 : suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP_256;
6862 [ + + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_CCMP)
6863 : 859 : suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP;
6864 [ + + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_GCMP)
6865 : 3 : suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP;
6866 [ + + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_TKIP)
6867 : 15 : suites[num_suites++] = WLAN_CIPHER_SUITE_TKIP;
6868 [ - + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_WEP104)
6869 : 0 : suites[num_suites++] = WLAN_CIPHER_SUITE_WEP104;
6870 [ + + ]: 936 : if (params->pairwise_ciphers & WPA_CIPHER_WEP40)
6871 : 3 : suites[num_suites++] = WLAN_CIPHER_SUITE_WEP40;
6872 [ + + ]: 936 : if (num_suites) {
6873 [ + - ]: 877 : NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
6874 : : num_suites * sizeof(u32), suites);
6875 : : }
6876 : :
6877 : 936 : wpa_printf(MSG_DEBUG, "nl80211: group_cipher=0x%x",
6878 : : params->group_cipher);
6879 [ + + + + : 936 : switch (params->group_cipher) {
+ - + + ]
6880 : : case WPA_CIPHER_CCMP_256:
6881 [ + - ]: 3 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6882 : : WLAN_CIPHER_SUITE_CCMP_256);
6883 : 3 : break;
6884 : : case WPA_CIPHER_GCMP_256:
6885 [ + - ]: 3 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6886 : : WLAN_CIPHER_SUITE_GCMP_256);
6887 : 3 : break;
6888 : : case WPA_CIPHER_CCMP:
6889 [ + - ]: 832 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6890 : : WLAN_CIPHER_SUITE_CCMP);
6891 : 832 : break;
6892 : : case WPA_CIPHER_GCMP:
6893 [ + - ]: 3 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6894 : : WLAN_CIPHER_SUITE_GCMP);
6895 : 3 : break;
6896 : : case WPA_CIPHER_TKIP:
6897 [ + - ]: 39 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6898 : : WLAN_CIPHER_SUITE_TKIP);
6899 : 39 : break;
6900 : : case WPA_CIPHER_WEP104:
6901 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6902 : : WLAN_CIPHER_SUITE_WEP104);
6903 : 0 : break;
6904 : : case WPA_CIPHER_WEP40:
6905 [ + - ]: 3 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP,
6906 : : WLAN_CIPHER_SUITE_WEP40);
6907 : 3 : break;
6908 : : }
6909 : :
6910 [ + - ]: 936 : if (params->beacon_ies) {
6911 : 936 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: beacon_ies",
6912 : : params->beacon_ies);
6913 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_IE, wpabuf_len(params->beacon_ies),
6914 : : wpabuf_head(params->beacon_ies));
6915 : : }
6916 [ + - ]: 936 : if (params->proberesp_ies) {
6917 : 936 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: proberesp_ies",
6918 : : params->proberesp_ies);
6919 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
6920 : : wpabuf_len(params->proberesp_ies),
6921 : : wpabuf_head(params->proberesp_ies));
6922 : : }
6923 [ + - ]: 936 : if (params->assocresp_ies) {
6924 : 936 : wpa_hexdump_buf(MSG_DEBUG, "nl80211: assocresp_ies",
6925 : : params->assocresp_ies);
6926 [ + - ]: 936 : NLA_PUT(msg, NL80211_ATTR_IE_ASSOC_RESP,
6927 : : wpabuf_len(params->assocresp_ies),
6928 : : wpabuf_head(params->assocresp_ies));
6929 : : }
6930 : :
6931 [ - + ]: 936 : if (drv->capa.flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER) {
6932 : 0 : wpa_printf(MSG_DEBUG, "nl80211: ap_max_inactivity=%d",
6933 : : params->ap_max_inactivity);
6934 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_INACTIVITY_TIMEOUT,
6935 : : params->ap_max_inactivity);
6936 : : }
6937 : :
6938 : 936 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
6939 [ - + ]: 936 : if (ret) {
6940 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
6941 : : ret, strerror(-ret));
6942 : : } else {
6943 : 936 : bss->beacon_set = 1;
6944 : 936 : nl80211_set_bss(bss, params->cts_protect, params->preamble,
6945 : : params->short_slot_time, params->ht_opmode,
6946 : : params->isolate, params->basic_rates);
6947 : : }
6948 : 936 : return ret;
6949 : : nla_put_failure:
6950 : 0 : nlmsg_free(msg);
6951 : 936 : return -ENOBUFS;
6952 : : }
6953 : :
6954 : :
6955 : 271 : static int nl80211_put_freq_params(struct nl_msg *msg,
6956 : : struct hostapd_freq_params *freq)
6957 : : {
6958 [ + - ]: 271 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
6959 [ - + ]: 271 : if (freq->vht_enabled) {
6960 [ # # # # : 0 : switch (freq->bandwidth) {
# ]
6961 : : case 20:
6962 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6963 : : NL80211_CHAN_WIDTH_20);
6964 : 0 : break;
6965 : : case 40:
6966 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6967 : : NL80211_CHAN_WIDTH_40);
6968 : 0 : break;
6969 : : case 80:
6970 [ # # ]: 0 : if (freq->center_freq2)
6971 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6972 : : NL80211_CHAN_WIDTH_80P80);
6973 : : else
6974 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6975 : : NL80211_CHAN_WIDTH_80);
6976 : 0 : break;
6977 : : case 160:
6978 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
6979 : : NL80211_CHAN_WIDTH_160);
6980 : 0 : break;
6981 : : default:
6982 : 0 : return -EINVAL;
6983 : : }
6984 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
6985 [ # # ]: 0 : if (freq->center_freq2)
6986 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
6987 : : freq->center_freq2);
6988 [ + + ]: 271 : } else if (freq->ht_enabled) {
6989 [ + + + ]: 216 : switch (freq->sec_channel_offset) {
6990 : : case -1:
6991 [ + - ]: 1 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
6992 : : NL80211_CHAN_HT40MINUS);
6993 : 1 : break;
6994 : : case 1:
6995 [ + - ]: 3 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
6996 : : NL80211_CHAN_HT40PLUS);
6997 : 3 : break;
6998 : : default:
6999 [ + - ]: 212 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
7000 : : NL80211_CHAN_HT20);
7001 : 212 : break;
7002 : : }
7003 : : }
7004 : 271 : return 0;
7005 : :
7006 : : nla_put_failure:
7007 : 271 : return -ENOBUFS;
7008 : : }
7009 : :
7010 : :
7011 : 271 : static int wpa_driver_nl80211_set_freq(struct i802_bss *bss,
7012 : : struct hostapd_freq_params *freq)
7013 : : {
7014 : 271 : struct wpa_driver_nl80211_data *drv = bss->drv;
7015 : : struct nl_msg *msg;
7016 : : int ret;
7017 : :
7018 : 271 : wpa_printf(MSG_DEBUG,
7019 : : "nl80211: Set freq %d (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
7020 : : freq->freq, freq->ht_enabled, freq->vht_enabled,
7021 : : freq->bandwidth, freq->center_freq1, freq->center_freq2);
7022 : 271 : msg = nlmsg_alloc();
7023 [ - + ]: 271 : if (!msg)
7024 : 0 : return -1;
7025 : :
7026 : 271 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
7027 : :
7028 [ + - ]: 271 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
7029 [ - + ]: 271 : if (nl80211_put_freq_params(msg, freq) < 0)
7030 : 0 : goto nla_put_failure;
7031 : :
7032 : 271 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7033 : 271 : msg = NULL;
7034 [ + - ]: 271 : if (ret == 0) {
7035 : 271 : bss->freq = freq->freq;
7036 : 271 : return 0;
7037 : : }
7038 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set channel (freq=%d): "
7039 : : "%d (%s)", freq->freq, ret, strerror(-ret));
7040 : : nla_put_failure:
7041 : 0 : nlmsg_free(msg);
7042 : 271 : return -1;
7043 : : }
7044 : :
7045 : :
7046 : 2485 : static u32 sta_flags_nl80211(int flags)
7047 : : {
7048 : 2485 : u32 f = 0;
7049 : :
7050 [ + + ]: 2485 : if (flags & WPA_STA_AUTHORIZED)
7051 : 1241 : f |= BIT(NL80211_STA_FLAG_AUTHORIZED);
7052 [ + + ]: 2485 : if (flags & WPA_STA_WMM)
7053 : 1068 : f |= BIT(NL80211_STA_FLAG_WME);
7054 [ + + ]: 2485 : if (flags & WPA_STA_SHORT_PREAMBLE)
7055 : 1068 : f |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
7056 [ + + ]: 2485 : if (flags & WPA_STA_MFP)
7057 : 382 : f |= BIT(NL80211_STA_FLAG_MFP);
7058 [ + + ]: 2485 : if (flags & WPA_STA_TDLS_PEER)
7059 : 81 : f |= BIT(NL80211_STA_FLAG_TDLS_PEER);
7060 : :
7061 : 2485 : return f;
7062 : : }
7063 : :
7064 : :
7065 : 437 : static int wpa_driver_nl80211_sta_add(void *priv,
7066 : : struct hostapd_sta_add_params *params)
7067 : : {
7068 : 437 : struct i802_bss *bss = priv;
7069 : 437 : struct wpa_driver_nl80211_data *drv = bss->drv;
7070 : : struct nl_msg *msg;
7071 : : struct nl80211_sta_flag_update upd;
7072 : 437 : int ret = -ENOBUFS;
7073 : :
7074 [ + + ][ - + ]: 437 : if ((params->flags & WPA_STA_TDLS_PEER) &&
7075 : 81 : !(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
7076 : 0 : return -EOPNOTSUPP;
7077 : :
7078 : 437 : msg = nlmsg_alloc();
7079 [ - + ]: 437 : if (!msg)
7080 : 0 : return -ENOMEM;
7081 : :
7082 [ + + ]: 437 : wpa_printf(MSG_DEBUG, "nl80211: %s STA " MACSTR,
7083 : 3059 : params->set ? "Set" : "Add", MAC2STR(params->addr));
7084 [ + + ]: 437 : nl80211_cmd(drv, msg, 0, params->set ? NL80211_CMD_SET_STATION :
7085 : : NL80211_CMD_NEW_STATION);
7086 : :
7087 [ + - ]: 437 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
7088 [ + - ]: 437 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->addr);
7089 [ + - ]: 437 : NLA_PUT(msg, NL80211_ATTR_STA_SUPPORTED_RATES, params->supp_rates_len,
7090 : : params->supp_rates);
7091 : 437 : wpa_hexdump(MSG_DEBUG, " * supported rates", params->supp_rates,
7092 : : params->supp_rates_len);
7093 [ + + ]: 437 : if (!params->set) {
7094 [ + + ]: 399 : if (params->aid) {
7095 : 356 : wpa_printf(MSG_DEBUG, " * aid=%u", params->aid);
7096 [ + - ]: 356 : NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, params->aid);
7097 : : } else {
7098 : : /*
7099 : : * cfg80211 validates that AID is non-zero, so we have
7100 : : * to make this a non-zero value for the TDLS case where
7101 : : * a dummy STA entry is used for now.
7102 : : */
7103 : 43 : wpa_printf(MSG_DEBUG, " * aid=1 (TDLS workaround)");
7104 [ + - ]: 43 : NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, 1);
7105 : : }
7106 : 399 : wpa_printf(MSG_DEBUG, " * listen_interval=%u",
7107 : 399 : params->listen_interval);
7108 [ + - ]: 399 : NLA_PUT_U16(msg, NL80211_ATTR_STA_LISTEN_INTERVAL,
7109 : : params->listen_interval);
7110 [ - + ][ # # ]: 38 : } else if (params->aid && (params->flags & WPA_STA_TDLS_PEER)) {
7111 : 0 : wpa_printf(MSG_DEBUG, " * peer_aid=%u", params->aid);
7112 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_PEER_AID, params->aid);
7113 : : }
7114 [ + + ]: 437 : if (params->ht_capabilities) {
7115 : 200 : wpa_hexdump(MSG_DEBUG, " * ht_capabilities",
7116 : 200 : (u8 *) params->ht_capabilities,
7117 : : sizeof(*params->ht_capabilities));
7118 [ + - ]: 200 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY,
7119 : : sizeof(*params->ht_capabilities),
7120 : : params->ht_capabilities);
7121 : : }
7122 : :
7123 [ - + ]: 437 : if (params->vht_capabilities) {
7124 : 0 : wpa_hexdump(MSG_DEBUG, " * vht_capabilities",
7125 : 0 : (u8 *) params->vht_capabilities,
7126 : : sizeof(*params->vht_capabilities));
7127 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY,
7128 : : sizeof(*params->vht_capabilities),
7129 : : params->vht_capabilities);
7130 : : }
7131 : :
7132 : 437 : wpa_printf(MSG_DEBUG, " * capability=0x%x", params->capability);
7133 [ + - ]: 437 : NLA_PUT_U16(msg, NL80211_ATTR_STA_CAPABILITY, params->capability);
7134 : :
7135 [ + + ]: 437 : if (params->ext_capab) {
7136 : 38 : wpa_hexdump(MSG_DEBUG, " * ext_capab",
7137 : 38 : params->ext_capab, params->ext_capab_len);
7138 [ + - ]: 38 : NLA_PUT(msg, NL80211_ATTR_STA_EXT_CAPABILITY,
7139 : : params->ext_capab_len, params->ext_capab);
7140 : : }
7141 : :
7142 : 437 : os_memset(&upd, 0, sizeof(upd));
7143 : 437 : upd.mask = sta_flags_nl80211(params->flags);
7144 : 437 : upd.set = upd.mask;
7145 : 437 : wpa_printf(MSG_DEBUG, " * flags set=0x%x mask=0x%x",
7146 : : upd.set, upd.mask);
7147 [ + - ]: 437 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
7148 : :
7149 [ + + ]: 437 : if (params->flags & WPA_STA_WMM) {
7150 : 356 : struct nlattr *wme = nla_nest_start(msg, NL80211_ATTR_STA_WME);
7151 : :
7152 [ - + ]: 356 : if (!wme)
7153 : 0 : goto nla_put_failure;
7154 : :
7155 : 356 : wpa_printf(MSG_DEBUG, " * qosinfo=0x%x", params->qosinfo);
7156 [ + - ]: 356 : NLA_PUT_U8(msg, NL80211_STA_WME_UAPSD_QUEUES,
7157 : : params->qosinfo & WMM_QOSINFO_STA_AC_MASK);
7158 [ + - ]: 356 : NLA_PUT_U8(msg, NL80211_STA_WME_MAX_SP,
7159 : : (params->qosinfo >> WMM_QOSINFO_STA_SP_SHIFT) &
7160 : : WMM_QOSINFO_STA_SP_MASK);
7161 : 356 : nla_nest_end(msg, wme);
7162 : : }
7163 : :
7164 : 437 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7165 : 437 : msg = NULL;
7166 [ - + ]: 437 : if (ret)
7167 [ # # ]: 0 : wpa_printf(MSG_DEBUG, "nl80211: NL80211_CMD_%s_STATION "
7168 : 0 : "result: %d (%s)", params->set ? "SET" : "NEW", ret,
7169 : : strerror(-ret));
7170 [ - + ]: 437 : if (ret == -EEXIST)
7171 : 0 : ret = 0;
7172 : : nla_put_failure:
7173 : 437 : nlmsg_free(msg);
7174 : 437 : return ret;
7175 : : }
7176 : :
7177 : :
7178 : 712 : static int wpa_driver_nl80211_sta_remove(struct i802_bss *bss, const u8 *addr)
7179 : : {
7180 : 712 : struct wpa_driver_nl80211_data *drv = bss->drv;
7181 : : struct nl_msg *msg;
7182 : : int ret;
7183 : :
7184 : 712 : msg = nlmsg_alloc();
7185 [ - + ]: 712 : if (!msg)
7186 : 0 : return -ENOMEM;
7187 : :
7188 : 712 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
7189 : :
7190 [ + - ]: 712 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
7191 : : if_nametoindex(bss->ifname));
7192 [ + - ]: 712 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
7193 : :
7194 : 712 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
7195 : 712 : wpa_printf(MSG_DEBUG, "nl80211: sta_remove -> DEL_STATION %s " MACSTR
7196 : : " --> %d (%s)",
7197 : 4984 : bss->ifname, MAC2STR(addr), ret, strerror(-ret));
7198 [ + + ]: 712 : if (ret == -ENOENT)
7199 : 356 : return 0;
7200 : 356 : return ret;
7201 : : nla_put_failure:
7202 : 0 : nlmsg_free(msg);
7203 : 712 : return -ENOBUFS;
7204 : : }
7205 : :
7206 : :
7207 : 36 : static void nl80211_remove_iface(struct wpa_driver_nl80211_data *drv,
7208 : : int ifidx)
7209 : : {
7210 : : struct nl_msg *msg;
7211 : :
7212 : 36 : wpa_printf(MSG_DEBUG, "nl80211: Remove interface ifindex=%d", ifidx);
7213 : :
7214 : : /* stop listening for EAPOL on this interface */
7215 : 36 : del_ifidx(drv, ifidx);
7216 : :
7217 : 36 : msg = nlmsg_alloc();
7218 [ - + ]: 36 : if (!msg)
7219 : 0 : goto nla_put_failure;
7220 : :
7221 : 36 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
7222 [ + - ]: 36 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifidx);
7223 : :
7224 [ + - ]: 36 : if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
7225 : 36 : return;
7226 : 0 : msg = NULL;
7227 : : nla_put_failure:
7228 : 0 : nlmsg_free(msg);
7229 : 0 : wpa_printf(MSG_ERROR, "Failed to remove interface (ifidx=%d)", ifidx);
7230 : : }
7231 : :
7232 : :
7233 : 630 : static const char * nl80211_iftype_str(enum nl80211_iftype mode)
7234 : : {
7235 [ + + + - : 630 : switch (mode) {
- - - + +
- - ]
7236 : : case NL80211_IFTYPE_ADHOC:
7237 : 6 : return "ADHOC";
7238 : : case NL80211_IFTYPE_STATION:
7239 : 295 : return "STATION";
7240 : : case NL80211_IFTYPE_AP:
7241 : 185 : return "AP";
7242 : : case NL80211_IFTYPE_AP_VLAN:
7243 : 0 : return "AP_VLAN";
7244 : : case NL80211_IFTYPE_WDS:
7245 : 0 : return "WDS";
7246 : : case NL80211_IFTYPE_MONITOR:
7247 : 0 : return "MONITOR";
7248 : : case NL80211_IFTYPE_MESH_POINT:
7249 : 0 : return "MESH_POINT";
7250 : : case NL80211_IFTYPE_P2P_CLIENT:
7251 : 71 : return "P2P_CLIENT";
7252 : : case NL80211_IFTYPE_P2P_GO:
7253 : 73 : return "P2P_GO";
7254 : : case NL80211_IFTYPE_P2P_DEVICE:
7255 : 0 : return "P2P_DEVICE";
7256 : : default:
7257 : 630 : return "unknown";
7258 : : }
7259 : : }
7260 : :
7261 : :
7262 : 36 : static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
7263 : : const char *ifname,
7264 : : enum nl80211_iftype iftype,
7265 : : const u8 *addr, int wds,
7266 : : int (*handler)(struct nl_msg *, void *),
7267 : : void *arg)
7268 : : {
7269 : : struct nl_msg *msg;
7270 : : int ifidx;
7271 : 36 : int ret = -ENOBUFS;
7272 : :
7273 : 36 : wpa_printf(MSG_DEBUG, "nl80211: Create interface iftype %d (%s)",
7274 : : iftype, nl80211_iftype_str(iftype));
7275 : :
7276 : 36 : msg = nlmsg_alloc();
7277 [ - + ]: 36 : if (!msg)
7278 : 0 : return -1;
7279 : :
7280 : 36 : nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_INTERFACE);
7281 [ - + ]: 36 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
7282 : 0 : goto nla_put_failure;
7283 [ + - ]: 36 : NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, ifname);
7284 [ + - ]: 36 : NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, iftype);
7285 : :
7286 [ - + ]: 36 : if (iftype == NL80211_IFTYPE_MONITOR) {
7287 : : struct nlattr *flags;
7288 : :
7289 : 0 : flags = nla_nest_start(msg, NL80211_ATTR_MNTR_FLAGS);
7290 [ # # ]: 0 : if (!flags)
7291 : 0 : goto nla_put_failure;
7292 : :
7293 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_MNTR_FLAG_COOK_FRAMES);
7294 : :
7295 : 0 : nla_nest_end(msg, flags);
7296 [ - + ]: 36 : } else if (wds) {
7297 [ # # ]: 0 : NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
7298 : : }
7299 : :
7300 : 36 : ret = send_and_recv_msgs(drv, msg, handler, arg);
7301 : 36 : msg = NULL;
7302 [ - + ]: 36 : if (ret) {
7303 : : nla_put_failure:
7304 : 0 : nlmsg_free(msg);
7305 : 0 : wpa_printf(MSG_ERROR, "Failed to create interface %s: %d (%s)",
7306 : : ifname, ret, strerror(-ret));
7307 : 0 : return ret;
7308 : : }
7309 : :
7310 [ - + ]: 36 : if (iftype == NL80211_IFTYPE_P2P_DEVICE)
7311 : 0 : return 0;
7312 : :
7313 : 36 : ifidx = if_nametoindex(ifname);
7314 : 36 : wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
7315 : : ifname, ifidx);
7316 : :
7317 [ - + ]: 36 : if (ifidx <= 0)
7318 : 0 : return -1;
7319 : :
7320 : : /* start listening for EAPOL on this interface */
7321 : 36 : add_ifidx(drv, ifidx);
7322 : :
7323 [ + - - + ]: 53 : if (addr && iftype != NL80211_IFTYPE_MONITOR &&
[ + + ]
7324 : 17 : linux_set_ifhwaddr(drv->global->ioctl_sock, ifname, addr)) {
7325 : 0 : nl80211_remove_iface(drv, ifidx);
7326 : 0 : return -1;
7327 : : }
7328 : :
7329 : 36 : return ifidx;
7330 : : }
7331 : :
7332 : :
7333 : 36 : static int nl80211_create_iface(struct wpa_driver_nl80211_data *drv,
7334 : : const char *ifname, enum nl80211_iftype iftype,
7335 : : const u8 *addr, int wds,
7336 : : int (*handler)(struct nl_msg *, void *),
7337 : : void *arg, int use_existing)
7338 : : {
7339 : : int ret;
7340 : :
7341 : 36 : ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds, handler,
7342 : : arg);
7343 : :
7344 : : /* if error occurred and interface exists already */
7345 [ # # ][ - + ]: 36 : if (ret == -ENFILE && if_nametoindex(ifname)) {
7346 [ # # ]: 0 : if (use_existing) {
7347 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Continue using existing interface %s",
7348 : : ifname);
7349 : 0 : return -ENFILE;
7350 : : }
7351 : 0 : wpa_printf(MSG_INFO, "Try to remove and re-create %s", ifname);
7352 : :
7353 : : /* Try to remove the interface that was already there. */
7354 : 0 : nl80211_remove_iface(drv, if_nametoindex(ifname));
7355 : :
7356 : : /* Try to create the interface again */
7357 : 0 : ret = nl80211_create_iface_once(drv, ifname, iftype, addr,
7358 : : wds, handler, arg);
7359 : : }
7360 : :
7361 [ + - ][ + + ]: 36 : if (ret >= 0 && is_p2p_net_interface(iftype))
7362 : 19 : nl80211_disable_11b_rates(drv, ret, 1);
7363 : :
7364 : 36 : return ret;
7365 : : }
7366 : :
7367 : :
7368 : 0 : static void handle_tx_callback(void *ctx, u8 *buf, size_t len, int ok)
7369 : : {
7370 : : struct ieee80211_hdr *hdr;
7371 : : u16 fc;
7372 : : union wpa_event_data event;
7373 : :
7374 : 0 : hdr = (struct ieee80211_hdr *) buf;
7375 : 0 : fc = le_to_host16(hdr->frame_control);
7376 : :
7377 : 0 : os_memset(&event, 0, sizeof(event));
7378 : 0 : event.tx_status.type = WLAN_FC_GET_TYPE(fc);
7379 : 0 : event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
7380 : 0 : event.tx_status.dst = hdr->addr1;
7381 : 0 : event.tx_status.data = buf;
7382 : 0 : event.tx_status.data_len = len;
7383 : 0 : event.tx_status.ack = ok;
7384 : 0 : wpa_supplicant_event(ctx, EVENT_TX_STATUS, &event);
7385 : 0 : }
7386 : :
7387 : :
7388 : 0 : static void from_unknown_sta(struct wpa_driver_nl80211_data *drv,
7389 : : u8 *buf, size_t len)
7390 : : {
7391 : 0 : struct ieee80211_hdr *hdr = (void *)buf;
7392 : : u16 fc;
7393 : : union wpa_event_data event;
7394 : :
7395 [ # # ]: 0 : if (len < sizeof(*hdr))
7396 : 0 : return;
7397 : :
7398 : 0 : fc = le_to_host16(hdr->frame_control);
7399 : :
7400 : 0 : os_memset(&event, 0, sizeof(event));
7401 : 0 : event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
7402 : 0 : event.rx_from_unknown.addr = hdr->addr2;
7403 : 0 : event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) ==
7404 : : (WLAN_FC_FROMDS | WLAN_FC_TODS);
7405 : 0 : wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
7406 : : }
7407 : :
7408 : :
7409 : 0 : static void handle_frame(struct wpa_driver_nl80211_data *drv,
7410 : : u8 *buf, size_t len, int datarate, int ssi_signal)
7411 : : {
7412 : : struct ieee80211_hdr *hdr;
7413 : : u16 fc;
7414 : : union wpa_event_data event;
7415 : :
7416 : 0 : hdr = (struct ieee80211_hdr *) buf;
7417 : 0 : fc = le_to_host16(hdr->frame_control);
7418 : :
7419 [ # # # # ]: 0 : switch (WLAN_FC_GET_TYPE(fc)) {
7420 : : case WLAN_FC_TYPE_MGMT:
7421 : 0 : os_memset(&event, 0, sizeof(event));
7422 : 0 : event.rx_mgmt.frame = buf;
7423 : 0 : event.rx_mgmt.frame_len = len;
7424 : 0 : event.rx_mgmt.datarate = datarate;
7425 : 0 : event.rx_mgmt.ssi_signal = ssi_signal;
7426 : 0 : wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
7427 : 0 : break;
7428 : : case WLAN_FC_TYPE_CTRL:
7429 : : /* can only get here with PS-Poll frames */
7430 : 0 : wpa_printf(MSG_DEBUG, "CTRL");
7431 : 0 : from_unknown_sta(drv, buf, len);
7432 : 0 : break;
7433 : : case WLAN_FC_TYPE_DATA:
7434 : 0 : from_unknown_sta(drv, buf, len);
7435 : 0 : break;
7436 : : }
7437 : 0 : }
7438 : :
7439 : :
7440 : 0 : static void handle_monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
7441 : : {
7442 : 0 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
7443 : : int len;
7444 : : unsigned char buf[3000];
7445 : : struct ieee80211_radiotap_iterator iter;
7446 : : int ret;
7447 : 0 : int datarate = 0, ssi_signal = 0;
7448 : 0 : int injected = 0, failed = 0, rxflags = 0;
7449 : :
7450 : 0 : len = recv(sock, buf, sizeof(buf), 0);
7451 [ # # ]: 0 : if (len < 0) {
7452 : 0 : wpa_printf(MSG_ERROR, "nl80211: Monitor socket recv failed: %s",
7453 : 0 : strerror(errno));
7454 : 0 : return;
7455 : : }
7456 : :
7457 [ # # ]: 0 : if (ieee80211_radiotap_iterator_init(&iter, (void*)buf, len)) {
7458 : 0 : wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame");
7459 : 0 : return;
7460 : : }
7461 : :
7462 : : while (1) {
7463 : 0 : ret = ieee80211_radiotap_iterator_next(&iter);
7464 [ # # ]: 0 : if (ret == -ENOENT)
7465 : 0 : break;
7466 [ # # ]: 0 : if (ret) {
7467 : 0 : wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame (%d)",
7468 : : ret);
7469 : 0 : return;
7470 : : }
7471 [ # # # # : 0 : switch (iter.this_arg_index) {
# # # # ]
7472 : : case IEEE80211_RADIOTAP_FLAGS:
7473 [ # # ]: 0 : if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
7474 : 0 : len -= 4;
7475 : 0 : break;
7476 : : case IEEE80211_RADIOTAP_RX_FLAGS:
7477 : 0 : rxflags = 1;
7478 : 0 : break;
7479 : : case IEEE80211_RADIOTAP_TX_FLAGS:
7480 : 0 : injected = 1;
7481 : 0 : failed = le_to_host16((*(uint16_t *) iter.this_arg)) &
7482 : : IEEE80211_RADIOTAP_F_TX_FAIL;
7483 : 0 : break;
7484 : : case IEEE80211_RADIOTAP_DATA_RETRIES:
7485 : 0 : break;
7486 : : case IEEE80211_RADIOTAP_CHANNEL:
7487 : : /* TODO: convert from freq/flags to channel number */
7488 : 0 : break;
7489 : : case IEEE80211_RADIOTAP_RATE:
7490 : 0 : datarate = *iter.this_arg * 5;
7491 : 0 : break;
7492 : : case IEEE80211_RADIOTAP_DBM_ANTSIGNAL:
7493 : 0 : ssi_signal = (s8) *iter.this_arg;
7494 : 0 : break;
7495 : : }
7496 : 0 : }
7497 : :
7498 [ # # ][ # # ]: 0 : if (rxflags && injected)
7499 : 0 : return;
7500 : :
7501 [ # # ]: 0 : if (!injected)
7502 : 0 : handle_frame(drv, buf + iter.max_length,
7503 : 0 : len - iter.max_length, datarate, ssi_signal);
7504 : : else
7505 : 0 : handle_tx_callback(drv->ctx, buf + iter.max_length,
7506 : 0 : len - iter.max_length, !failed);
7507 : : }
7508 : :
7509 : :
7510 : : /*
7511 : : * we post-process the filter code later and rewrite
7512 : : * this to the offset to the last instruction
7513 : : */
7514 : : #define PASS 0xFF
7515 : : #define FAIL 0xFE
7516 : :
7517 : : static struct sock_filter msock_filter_insns[] = {
7518 : : /*
7519 : : * do a little-endian load of the radiotap length field
7520 : : */
7521 : : /* load lower byte into A */
7522 : : BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 2),
7523 : : /* put it into X (== index register) */
7524 : : BPF_STMT(BPF_MISC| BPF_TAX, 0),
7525 : : /* load upper byte into A */
7526 : : BPF_STMT(BPF_LD | BPF_B | BPF_ABS, 3),
7527 : : /* left-shift it by 8 */
7528 : : BPF_STMT(BPF_ALU | BPF_LSH | BPF_K, 8),
7529 : : /* or with X */
7530 : : BPF_STMT(BPF_ALU | BPF_OR | BPF_X, 0),
7531 : : /* put result into X */
7532 : : BPF_STMT(BPF_MISC| BPF_TAX, 0),
7533 : :
7534 : : /*
7535 : : * Allow management frames through, this also gives us those
7536 : : * management frames that we sent ourselves with status
7537 : : */
7538 : : /* load the lower byte of the IEEE 802.11 frame control field */
7539 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7540 : : /* mask off frame type and version */
7541 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0xF),
7542 : : /* accept frame if it's both 0, fall through otherwise */
7543 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0, PASS, 0),
7544 : :
7545 : : /*
7546 : : * TODO: add a bit to radiotap RX flags that indicates
7547 : : * that the sending station is not associated, then
7548 : : * add a filter here that filters on our DA and that flag
7549 : : * to allow us to deauth frames to that bad station.
7550 : : *
7551 : : * For now allow all To DS data frames through.
7552 : : */
7553 : : /* load the IEEE 802.11 frame control field */
7554 : : BPF_STMT(BPF_LD | BPF_H | BPF_IND, 0),
7555 : : /* mask off frame type, version and DS status */
7556 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0F03),
7557 : : /* accept frame if version 0, type 2 and To DS, fall through otherwise
7558 : : */
7559 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0801, PASS, 0),
7560 : :
7561 : : #if 0
7562 : : /*
7563 : : * drop non-data frames
7564 : : */
7565 : : /* load the lower byte of the frame control field */
7566 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7567 : : /* mask off QoS bit */
7568 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0c),
7569 : : /* drop non-data frames */
7570 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 8, 0, FAIL),
7571 : : #endif
7572 : : /* load the upper byte of the frame control field */
7573 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 1),
7574 : : /* mask off toDS/fromDS */
7575 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x03),
7576 : : /* accept WDS frames */
7577 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 3, PASS, 0),
7578 : :
7579 : : /*
7580 : : * add header length to index
7581 : : */
7582 : : /* load the lower byte of the frame control field */
7583 : : BPF_STMT(BPF_LD | BPF_B | BPF_IND, 0),
7584 : : /* mask off QoS bit */
7585 : : BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x80),
7586 : : /* right shift it by 6 to give 0 or 2 */
7587 : : BPF_STMT(BPF_ALU | BPF_RSH | BPF_K, 6),
7588 : : /* add data frame header length */
7589 : : BPF_STMT(BPF_ALU | BPF_ADD | BPF_K, 24),
7590 : : /* add index, was start of 802.11 header */
7591 : : BPF_STMT(BPF_ALU | BPF_ADD | BPF_X, 0),
7592 : : /* move to index, now start of LL header */
7593 : : BPF_STMT(BPF_MISC | BPF_TAX, 0),
7594 : :
7595 : : /*
7596 : : * Accept empty data frames, we use those for
7597 : : * polling activity.
7598 : : */
7599 : : BPF_STMT(BPF_LD | BPF_W | BPF_LEN, 0),
7600 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_X, 0, PASS, 0),
7601 : :
7602 : : /*
7603 : : * Accept EAPOL frames
7604 : : */
7605 : : BPF_STMT(BPF_LD | BPF_W | BPF_IND, 0),
7606 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0xAAAA0300, 0, FAIL),
7607 : : BPF_STMT(BPF_LD | BPF_W | BPF_IND, 4),
7608 : : BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0000888E, PASS, FAIL),
7609 : :
7610 : : /* keep these last two statements or change the code below */
7611 : : /* return 0 == "DROP" */
7612 : : BPF_STMT(BPF_RET | BPF_K, 0),
7613 : : /* return ~0 == "keep all" */
7614 : : BPF_STMT(BPF_RET | BPF_K, ~0),
7615 : : };
7616 : :
7617 : : static struct sock_fprog msock_filter = {
7618 : : .len = ARRAY_SIZE(msock_filter_insns),
7619 : : .filter = msock_filter_insns,
7620 : : };
7621 : :
7622 : :
7623 : 0 : static int add_monitor_filter(int s)
7624 : : {
7625 : : int idx;
7626 : :
7627 : : /* rewrite all PASS/FAIL jump offsets */
7628 [ # # ]: 0 : for (idx = 0; idx < msock_filter.len; idx++) {
7629 : 0 : struct sock_filter *insn = &msock_filter_insns[idx];
7630 : :
7631 [ # # ]: 0 : if (BPF_CLASS(insn->code) == BPF_JMP) {
7632 [ # # ]: 0 : if (insn->code == (BPF_JMP|BPF_JA)) {
7633 [ # # ]: 0 : if (insn->k == PASS)
7634 : 0 : insn->k = msock_filter.len - idx - 2;
7635 [ # # ]: 0 : else if (insn->k == FAIL)
7636 : 0 : insn->k = msock_filter.len - idx - 3;
7637 : : }
7638 : :
7639 [ # # ]: 0 : if (insn->jt == PASS)
7640 : 0 : insn->jt = msock_filter.len - idx - 2;
7641 [ # # ]: 0 : else if (insn->jt == FAIL)
7642 : 0 : insn->jt = msock_filter.len - idx - 3;
7643 : :
7644 [ # # ]: 0 : if (insn->jf == PASS)
7645 : 0 : insn->jf = msock_filter.len - idx - 2;
7646 [ # # ]: 0 : else if (insn->jf == FAIL)
7647 : 0 : insn->jf = msock_filter.len - idx - 3;
7648 : : }
7649 : : }
7650 : :
7651 [ # # ]: 0 : if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER,
7652 : : &msock_filter, sizeof(msock_filter))) {
7653 : 0 : wpa_printf(MSG_ERROR, "nl80211: setsockopt(SO_ATTACH_FILTER) failed: %s",
7654 : 0 : strerror(errno));
7655 : 0 : return -1;
7656 : : }
7657 : :
7658 : 0 : return 0;
7659 : : }
7660 : :
7661 : :
7662 : 190 : static void nl80211_remove_monitor_interface(
7663 : : struct wpa_driver_nl80211_data *drv)
7664 : : {
7665 [ - + ]: 190 : if (drv->monitor_refcount > 0)
7666 : 0 : drv->monitor_refcount--;
7667 : 190 : wpa_printf(MSG_DEBUG, "nl80211: Remove monitor interface: refcount=%d",
7668 : : drv->monitor_refcount);
7669 [ - + ]: 190 : if (drv->monitor_refcount > 0)
7670 : 190 : return;
7671 : :
7672 [ - + ]: 190 : if (drv->monitor_ifidx >= 0) {
7673 : 0 : nl80211_remove_iface(drv, drv->monitor_ifidx);
7674 : 0 : drv->monitor_ifidx = -1;
7675 : : }
7676 [ - + ]: 190 : if (drv->monitor_sock >= 0) {
7677 : 0 : eloop_unregister_read_sock(drv->monitor_sock);
7678 : 0 : close(drv->monitor_sock);
7679 : 0 : drv->monitor_sock = -1;
7680 : : }
7681 : : }
7682 : :
7683 : :
7684 : : static int
7685 : 0 : nl80211_create_monitor_interface(struct wpa_driver_nl80211_data *drv)
7686 : : {
7687 : : char buf[IFNAMSIZ];
7688 : : struct sockaddr_ll ll;
7689 : : int optval;
7690 : : socklen_t optlen;
7691 : :
7692 [ # # ]: 0 : if (drv->monitor_ifidx >= 0) {
7693 : 0 : drv->monitor_refcount++;
7694 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Re-use existing monitor interface: refcount=%d",
7695 : : drv->monitor_refcount);
7696 : 0 : return 0;
7697 : : }
7698 : :
7699 [ # # ]: 0 : if (os_strncmp(drv->first_bss->ifname, "p2p-", 4) == 0) {
7700 : : /*
7701 : : * P2P interface name is of the format p2p-%s-%d. For monitor
7702 : : * interface name corresponding to P2P GO, replace "p2p-" with
7703 : : * "mon-" to retain the same interface name length and to
7704 : : * indicate that it is a monitor interface.
7705 : : */
7706 : 0 : snprintf(buf, IFNAMSIZ, "mon-%s", drv->first_bss->ifname + 4);
7707 : : } else {
7708 : : /* Non-P2P interface with AP functionality. */
7709 : 0 : snprintf(buf, IFNAMSIZ, "mon.%s", drv->first_bss->ifname);
7710 : : }
7711 : :
7712 : 0 : buf[IFNAMSIZ - 1] = '\0';
7713 : :
7714 : 0 : drv->monitor_ifidx =
7715 : 0 : nl80211_create_iface(drv, buf, NL80211_IFTYPE_MONITOR, NULL,
7716 : : 0, NULL, NULL, 0);
7717 : :
7718 [ # # ]: 0 : if (drv->monitor_ifidx == -EOPNOTSUPP) {
7719 : : /*
7720 : : * This is backward compatibility for a few versions of
7721 : : * the kernel only that didn't advertise the right
7722 : : * attributes for the only driver that then supported
7723 : : * AP mode w/o monitor -- ath6kl.
7724 : : */
7725 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support "
7726 : : "monitor interface type - try to run without it");
7727 : 0 : drv->device_ap_sme = 1;
7728 : : }
7729 : :
7730 [ # # ]: 0 : if (drv->monitor_ifidx < 0)
7731 : 0 : return -1;
7732 : :
7733 [ # # ]: 0 : if (linux_set_iface_flags(drv->global->ioctl_sock, buf, 1))
7734 : 0 : goto error;
7735 : :
7736 : 0 : memset(&ll, 0, sizeof(ll));
7737 : 0 : ll.sll_family = AF_PACKET;
7738 : 0 : ll.sll_ifindex = drv->monitor_ifidx;
7739 : 0 : drv->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
7740 [ # # ]: 0 : if (drv->monitor_sock < 0) {
7741 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket[PF_PACKET,SOCK_RAW] failed: %s",
7742 : 0 : strerror(errno));
7743 : 0 : goto error;
7744 : : }
7745 : :
7746 [ # # ]: 0 : if (add_monitor_filter(drv->monitor_sock)) {
7747 : 0 : wpa_printf(MSG_INFO, "Failed to set socket filter for monitor "
7748 : : "interface; do filtering in user space");
7749 : : /* This works, but will cost in performance. */
7750 : : }
7751 : :
7752 [ # # ]: 0 : if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
7753 : 0 : wpa_printf(MSG_ERROR, "nl80211: monitor socket bind failed: %s",
7754 : 0 : strerror(errno));
7755 : 0 : goto error;
7756 : : }
7757 : :
7758 : 0 : optlen = sizeof(optval);
7759 : 0 : optval = 20;
7760 [ # # ]: 0 : if (setsockopt
7761 : 0 : (drv->monitor_sock, SOL_SOCKET, SO_PRIORITY, &optval, optlen)) {
7762 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to set socket priority: %s",
7763 : 0 : strerror(errno));
7764 : 0 : goto error;
7765 : : }
7766 : :
7767 [ # # ]: 0 : if (eloop_register_read_sock(drv->monitor_sock, handle_monitor_read,
7768 : : drv, NULL)) {
7769 : 0 : wpa_printf(MSG_INFO, "nl80211: Could not register monitor read socket");
7770 : 0 : goto error;
7771 : : }
7772 : :
7773 : 0 : drv->monitor_refcount++;
7774 : 0 : return 0;
7775 : : error:
7776 : 0 : nl80211_remove_monitor_interface(drv);
7777 : 0 : return -1;
7778 : : }
7779 : :
7780 : :
7781 : 249 : static int nl80211_setup_ap(struct i802_bss *bss)
7782 : : {
7783 : 249 : struct wpa_driver_nl80211_data *drv = bss->drv;
7784 : :
7785 : 249 : wpa_printf(MSG_DEBUG, "nl80211: Setup AP(%s) - device_ap_sme=%d use_monitor=%d",
7786 : 747 : bss->ifname, drv->device_ap_sme, drv->use_monitor);
7787 : :
7788 : : /*
7789 : : * Disable Probe Request reporting unless we need it in this way for
7790 : : * devices that include the AP SME, in the other case (unless using
7791 : : * monitor iface) we'll get it through the nl_mgmt socket instead.
7792 : : */
7793 [ + - ]: 249 : if (!drv->device_ap_sme)
7794 : 249 : wpa_driver_nl80211_probe_req_report(bss, 0);
7795 : :
7796 [ + - ][ + - ]: 249 : if (!drv->device_ap_sme && !drv->use_monitor)
7797 [ - + ]: 249 : if (nl80211_mgmt_subscribe_ap(bss))
7798 : 0 : return -1;
7799 : :
7800 [ - + ][ # # ]: 249 : if (drv->device_ap_sme && !drv->use_monitor)
7801 [ # # ]: 0 : if (nl80211_mgmt_subscribe_ap_dev_sme(bss))
7802 : 0 : return -1;
7803 : :
7804 [ + - ]: 249 : if (!drv->device_ap_sme && drv->use_monitor &&
[ - + # # ]
7805 [ # # ]: 0 : nl80211_create_monitor_interface(drv) &&
7806 : 0 : !drv->device_ap_sme)
7807 : 0 : return -1;
7808 : :
7809 [ - + # # ]: 249 : if (drv->device_ap_sme &&
7810 : 0 : wpa_driver_nl80211_probe_req_report(bss, 1) < 0) {
7811 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to enable "
7812 : : "Probe Request frame reporting in AP mode");
7813 : : /* Try to survive without this */
7814 : : }
7815 : :
7816 : 249 : return 0;
7817 : : }
7818 : :
7819 : :
7820 : 240 : static void nl80211_teardown_ap(struct i802_bss *bss)
7821 : : {
7822 : 240 : struct wpa_driver_nl80211_data *drv = bss->drv;
7823 : :
7824 : 240 : wpa_printf(MSG_DEBUG, "nl80211: Teardown AP(%s) - device_ap_sme=%d use_monitor=%d",
7825 : 720 : bss->ifname, drv->device_ap_sme, drv->use_monitor);
7826 [ - + ]: 240 : if (drv->device_ap_sme) {
7827 : 0 : wpa_driver_nl80211_probe_req_report(bss, 0);
7828 [ # # ]: 0 : if (!drv->use_monitor)
7829 : 0 : nl80211_mgmt_unsubscribe(bss, "AP teardown (dev SME)");
7830 [ - + ]: 240 : } else if (drv->use_monitor)
7831 : 0 : nl80211_remove_monitor_interface(drv);
7832 : : else
7833 : 240 : nl80211_mgmt_unsubscribe(bss, "AP teardown");
7834 : :
7835 : 240 : bss->beacon_set = 0;
7836 : 240 : }
7837 : :
7838 : :
7839 : 1430 : static int nl80211_send_eapol_data(struct i802_bss *bss,
7840 : : const u8 *addr, const u8 *data,
7841 : : size_t data_len)
7842 : : {
7843 : : struct sockaddr_ll ll;
7844 : : int ret;
7845 : :
7846 [ - + ]: 1430 : if (bss->drv->eapol_tx_sock < 0) {
7847 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No socket to send EAPOL");
7848 : 0 : return -1;
7849 : : }
7850 : :
7851 : 1430 : os_memset(&ll, 0, sizeof(ll));
7852 : 1430 : ll.sll_family = AF_PACKET;
7853 : 1430 : ll.sll_ifindex = bss->ifindex;
7854 : 1430 : ll.sll_protocol = htons(ETH_P_PAE);
7855 : 1430 : ll.sll_halen = ETH_ALEN;
7856 : 1430 : os_memcpy(ll.sll_addr, addr, ETH_ALEN);
7857 : 1430 : ret = sendto(bss->drv->eapol_tx_sock, data, data_len, 0,
7858 : : (struct sockaddr *) &ll, sizeof(ll));
7859 [ - + ]: 1430 : if (ret < 0)
7860 : 0 : wpa_printf(MSG_ERROR, "nl80211: EAPOL TX: %s",
7861 : 0 : strerror(errno));
7862 : :
7863 : 1430 : return ret;
7864 : : }
7865 : :
7866 : :
7867 : : static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
7868 : :
7869 : 1430 : static int wpa_driver_nl80211_hapd_send_eapol(
7870 : : void *priv, const u8 *addr, const u8 *data,
7871 : : size_t data_len, int encrypt, const u8 *own_addr, u32 flags)
7872 : : {
7873 : 1430 : struct i802_bss *bss = priv;
7874 : 1430 : struct wpa_driver_nl80211_data *drv = bss->drv;
7875 : : struct ieee80211_hdr *hdr;
7876 : : size_t len;
7877 : : u8 *pos;
7878 : : int res;
7879 : 1430 : int qos = flags & WPA_STA_WMM;
7880 : :
7881 [ + - ][ + - ]: 1430 : if (drv->device_ap_sme || !drv->use_monitor)
7882 : 1430 : return nl80211_send_eapol_data(bss, addr, data, data_len);
7883 : :
7884 [ # # ]: 0 : len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 +
7885 : : data_len;
7886 : 0 : hdr = os_zalloc(len);
7887 [ # # ]: 0 : if (hdr == NULL) {
7888 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to allocate EAPOL buffer(len=%lu)",
7889 : : (unsigned long) len);
7890 : 0 : return -1;
7891 : : }
7892 : :
7893 : 0 : hdr->frame_control =
7894 : : IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
7895 : 0 : hdr->frame_control |= host_to_le16(WLAN_FC_FROMDS);
7896 [ # # ]: 0 : if (encrypt)
7897 : 0 : hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
7898 [ # # ]: 0 : if (qos) {
7899 : 0 : hdr->frame_control |=
7900 : : host_to_le16(WLAN_FC_STYPE_QOS_DATA << 4);
7901 : : }
7902 : :
7903 : 0 : memcpy(hdr->IEEE80211_DA_FROMDS, addr, ETH_ALEN);
7904 : 0 : memcpy(hdr->IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
7905 : 0 : memcpy(hdr->IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
7906 : 0 : pos = (u8 *) (hdr + 1);
7907 : :
7908 [ # # ]: 0 : if (qos) {
7909 : : /* Set highest priority in QoS header */
7910 : 0 : pos[0] = 7;
7911 : 0 : pos[1] = 0;
7912 : 0 : pos += 2;
7913 : : }
7914 : :
7915 : 0 : memcpy(pos, rfc1042_header, sizeof(rfc1042_header));
7916 : 0 : pos += sizeof(rfc1042_header);
7917 : 0 : WPA_PUT_BE16(pos, ETH_P_PAE);
7918 : 0 : pos += 2;
7919 : 0 : memcpy(pos, data, data_len);
7920 : :
7921 : 0 : res = wpa_driver_nl80211_send_frame(bss, (u8 *) hdr, len, encrypt, 0,
7922 : : 0, 0, 0, 0);
7923 [ # # ]: 0 : if (res < 0) {
7924 : 0 : wpa_printf(MSG_ERROR, "i802_send_eapol - packet len: %lu - "
7925 : : "failed: %d (%s)",
7926 : 0 : (unsigned long) len, errno, strerror(errno));
7927 : : }
7928 : 0 : os_free(hdr);
7929 : :
7930 : 1430 : return res;
7931 : : }
7932 : :
7933 : :
7934 : 1024 : static int wpa_driver_nl80211_sta_set_flags(void *priv, const u8 *addr,
7935 : : int total_flags,
7936 : : int flags_or, int flags_and)
7937 : : {
7938 : 1024 : struct i802_bss *bss = priv;
7939 : 1024 : struct wpa_driver_nl80211_data *drv = bss->drv;
7940 : : struct nl_msg *msg;
7941 : : struct nlattr *flags;
7942 : : struct nl80211_sta_flag_update upd;
7943 : :
7944 : 1024 : msg = nlmsg_alloc();
7945 [ - + ]: 1024 : if (!msg)
7946 : 0 : return -ENOMEM;
7947 : :
7948 : 1024 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
7949 : :
7950 [ + - ]: 1024 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
7951 : : if_nametoindex(bss->ifname));
7952 [ + - ]: 1024 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
7953 : :
7954 : : /*
7955 : : * Backwards compatibility version using NL80211_ATTR_STA_FLAGS. This
7956 : : * can be removed eventually.
7957 : : */
7958 : 1024 : flags = nla_nest_start(msg, NL80211_ATTR_STA_FLAGS);
7959 [ - + ]: 1024 : if (!flags)
7960 : 0 : goto nla_put_failure;
7961 [ + + ]: 1024 : if (total_flags & WPA_STA_AUTHORIZED)
7962 [ + - ]: 312 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_AUTHORIZED);
7963 : :
7964 [ + + ]: 1024 : if (total_flags & WPA_STA_WMM)
7965 [ + - ]: 1012 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_WME);
7966 : :
7967 [ + + ]: 1024 : if (total_flags & WPA_STA_SHORT_PREAMBLE)
7968 [ + - ]: 1012 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_SHORT_PREAMBLE);
7969 : :
7970 [ + + ]: 1024 : if (total_flags & WPA_STA_MFP)
7971 [ + - ]: 46 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_MFP);
7972 : :
7973 [ - + ]: 1024 : if (total_flags & WPA_STA_TDLS_PEER)
7974 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_STA_FLAG_TDLS_PEER);
7975 : :
7976 : 1024 : nla_nest_end(msg, flags);
7977 : :
7978 : 1024 : os_memset(&upd, 0, sizeof(upd));
7979 : 1024 : upd.mask = sta_flags_nl80211(flags_or | ~flags_and);
7980 : 1024 : upd.set = sta_flags_nl80211(flags_or);
7981 [ + - ]: 1024 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
7982 : :
7983 : 1024 : return send_and_recv_msgs(drv, msg, NULL, NULL);
7984 : : nla_put_failure:
7985 : 0 : nlmsg_free(msg);
7986 : 1024 : return -ENOBUFS;
7987 : : }
7988 : :
7989 : :
7990 : 55 : static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
7991 : : struct wpa_driver_associate_params *params)
7992 : : {
7993 : : enum nl80211_iftype nlmode, old_mode;
7994 : 110 : struct hostapd_freq_params freq = {
7995 : 55 : .freq = params->freq,
7996 : : };
7997 : :
7998 [ + - ]: 55 : if (params->p2p) {
7999 : 55 : wpa_printf(MSG_DEBUG, "nl80211: Setup AP operations for P2P "
8000 : : "group (GO)");
8001 : 55 : nlmode = NL80211_IFTYPE_P2P_GO;
8002 : : } else
8003 : 0 : nlmode = NL80211_IFTYPE_AP;
8004 : :
8005 : 55 : old_mode = drv->nlmode;
8006 [ - + ]: 55 : if (wpa_driver_nl80211_set_mode(drv->first_bss, nlmode)) {
8007 : 0 : nl80211_remove_monitor_interface(drv);
8008 : 0 : return -1;
8009 : : }
8010 : :
8011 [ - + ]: 55 : if (wpa_driver_nl80211_set_freq(drv->first_bss, &freq)) {
8012 [ # # ]: 0 : if (old_mode != nlmode)
8013 : 0 : wpa_driver_nl80211_set_mode(drv->first_bss, old_mode);
8014 : 0 : nl80211_remove_monitor_interface(drv);
8015 : 0 : return -1;
8016 : : }
8017 : :
8018 : 55 : return 0;
8019 : : }
8020 : :
8021 : :
8022 : 6 : static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv)
8023 : : {
8024 : : struct nl_msg *msg;
8025 : 6 : int ret = -1;
8026 : :
8027 : 6 : msg = nlmsg_alloc();
8028 [ - + ]: 6 : if (!msg)
8029 : 0 : return -1;
8030 : :
8031 : 6 : nl80211_cmd(drv, msg, 0, NL80211_CMD_LEAVE_IBSS);
8032 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8033 : 6 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8034 : 6 : msg = NULL;
8035 [ - + ]: 6 : if (ret) {
8036 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS failed: ret=%d "
8037 : : "(%s)", ret, strerror(-ret));
8038 : 0 : goto nla_put_failure;
8039 : : }
8040 : :
8041 : 6 : ret = 0;
8042 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS request sent successfully");
8043 : :
8044 : : nla_put_failure:
8045 [ - + ]: 6 : if (wpa_driver_nl80211_set_mode(drv->first_bss,
8046 : : NL80211_IFTYPE_STATION)) {
8047 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
8048 : : "station mode");
8049 : : }
8050 : :
8051 : 6 : nlmsg_free(msg);
8052 : 6 : return ret;
8053 : : }
8054 : :
8055 : :
8056 : 6 : static int wpa_driver_nl80211_ibss(struct wpa_driver_nl80211_data *drv,
8057 : : struct wpa_driver_associate_params *params)
8058 : : {
8059 : : struct nl_msg *msg;
8060 : 6 : int ret = -1;
8061 : 6 : int count = 0;
8062 : :
8063 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS (ifindex=%d)", drv->ifindex);
8064 : :
8065 [ - + ]: 6 : if (wpa_driver_nl80211_set_mode(drv->first_bss,
8066 : : NL80211_IFTYPE_ADHOC)) {
8067 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
8068 : : "IBSS mode");
8069 : 0 : return -1;
8070 : : }
8071 : :
8072 : : retry:
8073 : 6 : msg = nlmsg_alloc();
8074 [ - + ]: 6 : if (!msg)
8075 : 0 : return -1;
8076 : :
8077 : 6 : nl80211_cmd(drv, msg, 0, NL80211_CMD_JOIN_IBSS);
8078 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8079 : :
8080 [ + - ][ + - ]: 6 : if (params->ssid == NULL || params->ssid_len > sizeof(drv->ssid))
8081 : : goto nla_put_failure;
8082 : :
8083 : 6 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8084 : 6 : params->ssid, params->ssid_len);
8085 [ + - ]: 6 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8086 : : params->ssid);
8087 : 6 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8088 : 6 : drv->ssid_len = params->ssid_len;
8089 : :
8090 : 6 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8091 [ + - ]: 6 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8092 : :
8093 : 6 : ret = nl80211_set_conn_keys(params, msg);
8094 [ - + ]: 6 : if (ret)
8095 : 0 : goto nla_put_failure;
8096 : :
8097 [ - + ][ # # ]: 6 : if (params->bssid && params->fixed_bssid) {
8098 : 0 : wpa_printf(MSG_DEBUG, " * BSSID=" MACSTR,
8099 : 0 : MAC2STR(params->bssid));
8100 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8101 : : }
8102 : :
8103 [ + - ][ + + ]: 6 : if (params->key_mgmt_suite == KEY_MGMT_802_1X ||
8104 [ + - ]: 3 : params->key_mgmt_suite == KEY_MGMT_PSK ||
8105 [ - + ]: 3 : params->key_mgmt_suite == KEY_MGMT_802_1X_SHA256 ||
8106 : 3 : params->key_mgmt_suite == KEY_MGMT_PSK_SHA256) {
8107 : 3 : wpa_printf(MSG_DEBUG, " * control port");
8108 [ + - ]: 3 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
8109 : : }
8110 : :
8111 [ + - ]: 6 : if (params->wpa_ie) {
8112 : 6 : wpa_hexdump(MSG_DEBUG,
8113 : : " * Extra IEs for Beacon/Probe Response frames",
8114 : 6 : params->wpa_ie, params->wpa_ie_len);
8115 [ + - ]: 6 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8116 : : params->wpa_ie);
8117 : : }
8118 : :
8119 : 6 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8120 : 6 : msg = NULL;
8121 [ - + ]: 6 : if (ret) {
8122 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS failed: ret=%d (%s)",
8123 : : ret, strerror(-ret));
8124 : 0 : count++;
8125 [ # # ][ # # ]: 0 : if (ret == -EALREADY && count == 1) {
8126 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Retry IBSS join after "
8127 : : "forced leave");
8128 : 0 : nl80211_leave_ibss(drv);
8129 : 0 : nlmsg_free(msg);
8130 : 0 : goto retry;
8131 : : }
8132 : :
8133 : 0 : goto nla_put_failure;
8134 : : }
8135 : 6 : ret = 0;
8136 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Join IBSS request sent successfully");
8137 : :
8138 : : nla_put_failure:
8139 : 6 : nlmsg_free(msg);
8140 : 6 : return ret;
8141 : : }
8142 : :
8143 : :
8144 : 0 : static int wpa_driver_nl80211_try_connect(
8145 : : struct wpa_driver_nl80211_data *drv,
8146 : : struct wpa_driver_associate_params *params)
8147 : : {
8148 : : struct nl_msg *msg;
8149 : : enum nl80211_auth_type type;
8150 : 0 : int ret = 0;
8151 : : int algs;
8152 : :
8153 : 0 : msg = nlmsg_alloc();
8154 [ # # ]: 0 : if (!msg)
8155 : 0 : return -1;
8156 : :
8157 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connect (ifindex=%d)", drv->ifindex);
8158 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CONNECT);
8159 : :
8160 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8161 [ # # ]: 0 : if (params->bssid) {
8162 : 0 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
8163 : 0 : MAC2STR(params->bssid));
8164 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8165 : : }
8166 [ # # ]: 0 : if (params->freq) {
8167 : 0 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8168 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8169 : 0 : drv->assoc_freq = params->freq;
8170 : : } else
8171 : 0 : drv->assoc_freq = 0;
8172 [ # # ]: 0 : if (params->bg_scan_period >= 0) {
8173 : 0 : wpa_printf(MSG_DEBUG, " * bg scan period=%d",
8174 : : params->bg_scan_period);
8175 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
8176 : : params->bg_scan_period);
8177 : : }
8178 [ # # ]: 0 : if (params->ssid) {
8179 : 0 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8180 : 0 : params->ssid, params->ssid_len);
8181 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8182 : : params->ssid);
8183 [ # # ]: 0 : if (params->ssid_len > sizeof(drv->ssid))
8184 : 0 : goto nla_put_failure;
8185 : 0 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8186 : 0 : drv->ssid_len = params->ssid_len;
8187 : : }
8188 : 0 : wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
8189 [ # # ]: 0 : if (params->wpa_ie)
8190 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8191 : : params->wpa_ie);
8192 : :
8193 : 0 : algs = 0;
8194 [ # # ]: 0 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
8195 : 0 : algs++;
8196 [ # # ]: 0 : if (params->auth_alg & WPA_AUTH_ALG_SHARED)
8197 : 0 : algs++;
8198 [ # # ]: 0 : if (params->auth_alg & WPA_AUTH_ALG_LEAP)
8199 : 0 : algs++;
8200 [ # # ]: 0 : if (algs > 1) {
8201 : 0 : wpa_printf(MSG_DEBUG, " * Leave out Auth Type for automatic "
8202 : : "selection");
8203 : 0 : goto skip_auth_type;
8204 : : }
8205 : :
8206 [ # # ]: 0 : if (params->auth_alg & WPA_AUTH_ALG_OPEN)
8207 : 0 : type = NL80211_AUTHTYPE_OPEN_SYSTEM;
8208 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
8209 : 0 : type = NL80211_AUTHTYPE_SHARED_KEY;
8210 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
8211 : 0 : type = NL80211_AUTHTYPE_NETWORK_EAP;
8212 [ # # ]: 0 : else if (params->auth_alg & WPA_AUTH_ALG_FT)
8213 : 0 : type = NL80211_AUTHTYPE_FT;
8214 : : else
8215 : 0 : goto nla_put_failure;
8216 : :
8217 : 0 : wpa_printf(MSG_DEBUG, " * Auth Type %d", type);
8218 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
8219 : :
8220 : : skip_auth_type:
8221 [ # # ]: 0 : if (params->wpa_proto) {
8222 : 0 : enum nl80211_wpa_versions ver = 0;
8223 : :
8224 [ # # ]: 0 : if (params->wpa_proto & WPA_PROTO_WPA)
8225 : 0 : ver |= NL80211_WPA_VERSION_1;
8226 [ # # ]: 0 : if (params->wpa_proto & WPA_PROTO_RSN)
8227 : 0 : ver |= NL80211_WPA_VERSION_2;
8228 : :
8229 : 0 : wpa_printf(MSG_DEBUG, " * WPA Versions 0x%x", ver);
8230 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
8231 : : }
8232 : :
8233 [ # # ]: 0 : if (params->pairwise_suite != CIPHER_NONE) {
8234 : : int cipher;
8235 : :
8236 [ # # # # : 0 : switch (params->pairwise_suite) {
# # # # ]
8237 : : case CIPHER_SMS4:
8238 : 0 : cipher = WLAN_CIPHER_SUITE_SMS4;
8239 : 0 : break;
8240 : : case CIPHER_WEP40:
8241 : 0 : cipher = WLAN_CIPHER_SUITE_WEP40;
8242 : 0 : break;
8243 : : case CIPHER_WEP104:
8244 : 0 : cipher = WLAN_CIPHER_SUITE_WEP104;
8245 : 0 : break;
8246 : : case CIPHER_CCMP:
8247 : 0 : cipher = WLAN_CIPHER_SUITE_CCMP;
8248 : 0 : break;
8249 : : case CIPHER_GCMP:
8250 : 0 : cipher = WLAN_CIPHER_SUITE_GCMP;
8251 : 0 : break;
8252 : : case CIPHER_CCMP_256:
8253 : 0 : cipher = WLAN_CIPHER_SUITE_CCMP_256;
8254 : 0 : break;
8255 : : case CIPHER_GCMP_256:
8256 : 0 : cipher = WLAN_CIPHER_SUITE_GCMP_256;
8257 : 0 : break;
8258 : : case CIPHER_TKIP:
8259 : : default:
8260 : 0 : cipher = WLAN_CIPHER_SUITE_TKIP;
8261 : 0 : break;
8262 : : }
8263 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
8264 : : }
8265 : :
8266 [ # # ]: 0 : if (params->group_suite != CIPHER_NONE) {
8267 : : int cipher;
8268 : :
8269 [ # # # # : 0 : switch (params->group_suite) {
# # # # ]
8270 : : case CIPHER_SMS4:
8271 : 0 : cipher = WLAN_CIPHER_SUITE_SMS4;
8272 : 0 : break;
8273 : : case CIPHER_WEP40:
8274 : 0 : cipher = WLAN_CIPHER_SUITE_WEP40;
8275 : 0 : break;
8276 : : case CIPHER_WEP104:
8277 : 0 : cipher = WLAN_CIPHER_SUITE_WEP104;
8278 : 0 : break;
8279 : : case CIPHER_CCMP:
8280 : 0 : cipher = WLAN_CIPHER_SUITE_CCMP;
8281 : 0 : break;
8282 : : case CIPHER_GCMP:
8283 : 0 : cipher = WLAN_CIPHER_SUITE_GCMP;
8284 : 0 : break;
8285 : : case CIPHER_CCMP_256:
8286 : 0 : cipher = WLAN_CIPHER_SUITE_CCMP_256;
8287 : 0 : break;
8288 : : case CIPHER_GCMP_256:
8289 : 0 : cipher = WLAN_CIPHER_SUITE_GCMP_256;
8290 : 0 : break;
8291 : : case CIPHER_TKIP:
8292 : : default:
8293 : 0 : cipher = WLAN_CIPHER_SUITE_TKIP;
8294 : 0 : break;
8295 : : }
8296 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
8297 : : }
8298 : :
8299 [ # # ][ # # ]: 0 : if (params->key_mgmt_suite == KEY_MGMT_802_1X ||
8300 [ # # ]: 0 : params->key_mgmt_suite == KEY_MGMT_PSK ||
8301 [ # # ]: 0 : params->key_mgmt_suite == KEY_MGMT_FT_802_1X ||
8302 [ # # ]: 0 : params->key_mgmt_suite == KEY_MGMT_FT_PSK ||
8303 : 0 : params->key_mgmt_suite == KEY_MGMT_CCKM) {
8304 : 0 : int mgmt = WLAN_AKM_SUITE_PSK;
8305 : :
8306 [ # # # # : 0 : switch (params->key_mgmt_suite) {
# ]
8307 : : case KEY_MGMT_CCKM:
8308 : 0 : mgmt = WLAN_AKM_SUITE_CCKM;
8309 : 0 : break;
8310 : : case KEY_MGMT_802_1X:
8311 : 0 : mgmt = WLAN_AKM_SUITE_8021X;
8312 : 0 : break;
8313 : : case KEY_MGMT_FT_802_1X:
8314 : 0 : mgmt = WLAN_AKM_SUITE_FT_8021X;
8315 : 0 : break;
8316 : : case KEY_MGMT_FT_PSK:
8317 : 0 : mgmt = WLAN_AKM_SUITE_FT_PSK;
8318 : 0 : break;
8319 : : case KEY_MGMT_PSK:
8320 : : default:
8321 : 0 : mgmt = WLAN_AKM_SUITE_PSK;
8322 : 0 : break;
8323 : : }
8324 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_AKM_SUITES, mgmt);
8325 : : }
8326 : :
8327 : : #ifdef CONFIG_IEEE80211W
8328 [ # # ]: 0 : if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
8329 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
8330 : : #endif /* CONFIG_IEEE80211W */
8331 : :
8332 [ # # ]: 0 : if (params->disable_ht)
8333 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
8334 : :
8335 [ # # ][ # # ]: 0 : if (params->htcaps && params->htcaps_mask) {
8336 : 0 : int sz = sizeof(struct ieee80211_ht_capabilities);
8337 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
8338 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
8339 : : params->htcaps_mask);
8340 : : }
8341 : :
8342 : : #ifdef CONFIG_VHT_OVERRIDES
8343 : : if (params->disable_vht) {
8344 : : wpa_printf(MSG_DEBUG, " * VHT disabled");
8345 : : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_VHT);
8346 : : }
8347 : :
8348 : : if (params->vhtcaps && params->vhtcaps_mask) {
8349 : : int sz = sizeof(struct ieee80211_vht_capabilities);
8350 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY, sz, params->vhtcaps);
8351 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY_MASK, sz,
8352 : : params->vhtcaps_mask);
8353 : : }
8354 : : #endif /* CONFIG_VHT_OVERRIDES */
8355 : :
8356 : 0 : ret = nl80211_set_conn_keys(params, msg);
8357 [ # # ]: 0 : if (ret)
8358 : 0 : goto nla_put_failure;
8359 : :
8360 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8361 : 0 : msg = NULL;
8362 [ # # ]: 0 : if (ret) {
8363 : 0 : wpa_printf(MSG_DEBUG, "nl80211: MLME connect failed: ret=%d "
8364 : : "(%s)", ret, strerror(-ret));
8365 : 0 : goto nla_put_failure;
8366 : : }
8367 : 0 : ret = 0;
8368 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Connect request send successfully");
8369 : :
8370 : : nla_put_failure:
8371 : 0 : nlmsg_free(msg);
8372 : 0 : return ret;
8373 : :
8374 : : }
8375 : :
8376 : :
8377 : 0 : static int wpa_driver_nl80211_connect(
8378 : : struct wpa_driver_nl80211_data *drv,
8379 : : struct wpa_driver_associate_params *params)
8380 : : {
8381 : 0 : int ret = wpa_driver_nl80211_try_connect(drv, params);
8382 [ # # ]: 0 : if (ret == -EALREADY) {
8383 : : /*
8384 : : * cfg80211 does not currently accept new connections if
8385 : : * we are already connected. As a workaround, force
8386 : : * disconnection and try again.
8387 : : */
8388 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Explicitly "
8389 : : "disconnecting before reassociation "
8390 : : "attempt");
8391 [ # # ]: 0 : if (wpa_driver_nl80211_disconnect(
8392 : : drv, WLAN_REASON_PREV_AUTH_NOT_VALID))
8393 : 0 : return -1;
8394 : 0 : ret = wpa_driver_nl80211_try_connect(drv, params);
8395 : : }
8396 : 0 : return ret;
8397 : : }
8398 : :
8399 : :
8400 : 418 : static int wpa_driver_nl80211_associate(
8401 : : void *priv, struct wpa_driver_associate_params *params)
8402 : : {
8403 : 418 : struct i802_bss *bss = priv;
8404 : 418 : struct wpa_driver_nl80211_data *drv = bss->drv;
8405 : 418 : int ret = -1;
8406 : : struct nl_msg *msg;
8407 : :
8408 [ + + ]: 418 : if (params->mode == IEEE80211_MODE_AP)
8409 : 55 : return wpa_driver_nl80211_ap(drv, params);
8410 : :
8411 [ + + ]: 363 : if (params->mode == IEEE80211_MODE_IBSS)
8412 : 6 : return wpa_driver_nl80211_ibss(drv, params);
8413 : :
8414 [ - + ]: 357 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
8415 [ # # ]: 0 : enum nl80211_iftype nlmode = params->p2p ?
8416 : : NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
8417 : :
8418 [ # # ]: 0 : if (wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
8419 : 0 : return -1;
8420 : 0 : return wpa_driver_nl80211_connect(drv, params);
8421 : : }
8422 : :
8423 : 357 : nl80211_mark_disconnected(drv);
8424 : :
8425 : 357 : msg = nlmsg_alloc();
8426 [ - + ]: 357 : if (!msg)
8427 : 0 : return -1;
8428 : :
8429 : 357 : wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
8430 : : drv->ifindex);
8431 : 357 : nl80211_cmd(drv, msg, 0, NL80211_CMD_ASSOCIATE);
8432 : :
8433 [ + - ]: 357 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8434 [ + - ]: 357 : if (params->bssid) {
8435 : 357 : wpa_printf(MSG_DEBUG, " * bssid=" MACSTR,
8436 : 2142 : MAC2STR(params->bssid));
8437 [ + - ]: 357 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
8438 : : }
8439 [ + - ]: 357 : if (params->freq) {
8440 : 357 : wpa_printf(MSG_DEBUG, " * freq=%d", params->freq);
8441 [ + - ]: 357 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
8442 : 357 : drv->assoc_freq = params->freq;
8443 : : } else
8444 : 0 : drv->assoc_freq = 0;
8445 [ - + ]: 357 : if (params->bg_scan_period >= 0) {
8446 : 0 : wpa_printf(MSG_DEBUG, " * bg scan period=%d",
8447 : : params->bg_scan_period);
8448 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
8449 : : params->bg_scan_period);
8450 : : }
8451 [ + - ]: 357 : if (params->ssid) {
8452 : 357 : wpa_hexdump_ascii(MSG_DEBUG, " * SSID",
8453 : 357 : params->ssid, params->ssid_len);
8454 [ + - ]: 357 : NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
8455 : : params->ssid);
8456 [ - + ]: 357 : if (params->ssid_len > sizeof(drv->ssid))
8457 : 0 : goto nla_put_failure;
8458 : 357 : os_memcpy(drv->ssid, params->ssid, params->ssid_len);
8459 : 357 : drv->ssid_len = params->ssid_len;
8460 : : }
8461 : 357 : wpa_hexdump(MSG_DEBUG, " * IEs", params->wpa_ie, params->wpa_ie_len);
8462 [ + - ]: 357 : if (params->wpa_ie)
8463 [ + - ]: 357 : NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
8464 : : params->wpa_ie);
8465 : :
8466 [ + + ]: 357 : if (params->pairwise_suite != CIPHER_NONE) {
8467 : : int cipher;
8468 : :
8469 [ + - + + : 218 : switch (params->pairwise_suite) {
+ + + ]
8470 : : case CIPHER_WEP40:
8471 : 2 : cipher = WLAN_CIPHER_SUITE_WEP40;
8472 : 2 : break;
8473 : : case CIPHER_WEP104:
8474 : 0 : cipher = WLAN_CIPHER_SUITE_WEP104;
8475 : 0 : break;
8476 : : case CIPHER_CCMP:
8477 : 207 : cipher = WLAN_CIPHER_SUITE_CCMP;
8478 : 207 : break;
8479 : : case CIPHER_GCMP:
8480 : 1 : cipher = WLAN_CIPHER_SUITE_GCMP;
8481 : 1 : break;
8482 : : case CIPHER_CCMP_256:
8483 : 1 : cipher = WLAN_CIPHER_SUITE_CCMP_256;
8484 : 1 : break;
8485 : : case CIPHER_GCMP_256:
8486 : 1 : cipher = WLAN_CIPHER_SUITE_GCMP_256;
8487 : 1 : break;
8488 : : case CIPHER_TKIP:
8489 : : default:
8490 : 6 : cipher = WLAN_CIPHER_SUITE_TKIP;
8491 : 6 : break;
8492 : : }
8493 : 218 : wpa_printf(MSG_DEBUG, " * pairwise=0x%x", cipher);
8494 [ + - ]: 218 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
8495 : : }
8496 : :
8497 [ + + ]: 357 : if (params->group_suite != CIPHER_NONE) {
8498 : : int cipher;
8499 : :
8500 [ + - + + : 218 : switch (params->group_suite) {
+ + + ]
8501 : : case CIPHER_WEP40:
8502 : 2 : cipher = WLAN_CIPHER_SUITE_WEP40;
8503 : 2 : break;
8504 : : case CIPHER_WEP104:
8505 : 0 : cipher = WLAN_CIPHER_SUITE_WEP104;
8506 : 0 : break;
8507 : : case CIPHER_CCMP:
8508 : 199 : cipher = WLAN_CIPHER_SUITE_CCMP;
8509 : 199 : break;
8510 : : case CIPHER_GCMP:
8511 : 1 : cipher = WLAN_CIPHER_SUITE_GCMP;
8512 : 1 : break;
8513 : : case CIPHER_CCMP_256:
8514 : 1 : cipher = WLAN_CIPHER_SUITE_CCMP_256;
8515 : 1 : break;
8516 : : case CIPHER_GCMP_256:
8517 : 1 : cipher = WLAN_CIPHER_SUITE_GCMP_256;
8518 : 1 : break;
8519 : : case CIPHER_TKIP:
8520 : : default:
8521 : 14 : cipher = WLAN_CIPHER_SUITE_TKIP;
8522 : 14 : break;
8523 : : }
8524 : 218 : wpa_printf(MSG_DEBUG, " * group=0x%x", cipher);
8525 [ + - ]: 218 : NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
8526 : : }
8527 : :
8528 : : #ifdef CONFIG_IEEE80211W
8529 [ + + ]: 357 : if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
8530 [ + - ]: 13 : NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
8531 : : #endif /* CONFIG_IEEE80211W */
8532 : :
8533 [ + - ]: 357 : NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
8534 : :
8535 [ + + ]: 357 : if (params->prev_bssid) {
8536 : 18 : wpa_printf(MSG_DEBUG, " * prev_bssid=" MACSTR,
8537 : 108 : MAC2STR(params->prev_bssid));
8538 [ + - ]: 18 : NLA_PUT(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
8539 : : params->prev_bssid);
8540 : : }
8541 : :
8542 [ - + ]: 357 : if (params->disable_ht)
8543 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
8544 : :
8545 [ - + ][ # # ]: 357 : if (params->htcaps && params->htcaps_mask) {
8546 : 0 : int sz = sizeof(struct ieee80211_ht_capabilities);
8547 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
8548 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
8549 : : params->htcaps_mask);
8550 : : }
8551 : :
8552 : : #ifdef CONFIG_VHT_OVERRIDES
8553 : : if (params->disable_vht) {
8554 : : wpa_printf(MSG_DEBUG, " * VHT disabled");
8555 : : NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_VHT);
8556 : : }
8557 : :
8558 : : if (params->vhtcaps && params->vhtcaps_mask) {
8559 : : int sz = sizeof(struct ieee80211_vht_capabilities);
8560 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY, sz, params->vhtcaps);
8561 : : NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY_MASK, sz,
8562 : : params->vhtcaps_mask);
8563 : : }
8564 : : #endif /* CONFIG_VHT_OVERRIDES */
8565 : :
8566 [ + + ]: 357 : if (params->p2p)
8567 : 112 : wpa_printf(MSG_DEBUG, " * P2P group");
8568 : :
8569 : 357 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8570 : 357 : msg = NULL;
8571 [ - + ]: 357 : if (ret) {
8572 : 0 : wpa_dbg(drv->ctx, MSG_DEBUG,
8573 : : "nl80211: MLME command failed (assoc): ret=%d (%s)",
8574 : : ret, strerror(-ret));
8575 : 0 : nl80211_dump_scan(drv);
8576 : 0 : goto nla_put_failure;
8577 : : }
8578 : 357 : ret = 0;
8579 : 357 : wpa_printf(MSG_DEBUG, "nl80211: Association request send "
8580 : : "successfully");
8581 : :
8582 : : nla_put_failure:
8583 : 357 : nlmsg_free(msg);
8584 : 418 : return ret;
8585 : : }
8586 : :
8587 : :
8588 : 594 : static int nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
8589 : : int ifindex, enum nl80211_iftype mode)
8590 : : {
8591 : : struct nl_msg *msg;
8592 : 594 : int ret = -ENOBUFS;
8593 : :
8594 : 594 : wpa_printf(MSG_DEBUG, "nl80211: Set mode ifindex %d iftype %d (%s)",
8595 : : ifindex, mode, nl80211_iftype_str(mode));
8596 : :
8597 : 594 : msg = nlmsg_alloc();
8598 [ - + ]: 594 : if (!msg)
8599 : 0 : return -ENOMEM;
8600 : :
8601 : 594 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_INTERFACE);
8602 [ - + ]: 594 : if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
8603 : 0 : goto nla_put_failure;
8604 [ + - ]: 594 : NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, mode);
8605 : :
8606 : 594 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8607 : 594 : msg = NULL;
8608 [ + - ]: 594 : if (!ret)
8609 : 594 : return 0;
8610 : : nla_put_failure:
8611 : 0 : nlmsg_free(msg);
8612 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface %d to mode %d:"
8613 : : " %d (%s)", ifindex, mode, ret, strerror(-ret));
8614 : 594 : return ret;
8615 : : }
8616 : :
8617 : :
8618 : 594 : static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
8619 : : enum nl80211_iftype nlmode)
8620 : : {
8621 : 594 : struct wpa_driver_nl80211_data *drv = bss->drv;
8622 : 594 : int ret = -1;
8623 : : int i;
8624 : 594 : int was_ap = is_ap_interface(drv->nlmode);
8625 : : int res;
8626 : :
8627 : 594 : res = nl80211_set_mode(drv, drv->ifindex, nlmode);
8628 [ # # ][ - + ]: 594 : if (res && nlmode == nl80211_get_ifmode(bss))
8629 : 0 : res = 0;
8630 : :
8631 [ + - ]: 594 : if (res == 0) {
8632 : 594 : drv->nlmode = nlmode;
8633 : 594 : ret = 0;
8634 : 594 : goto done;
8635 : : }
8636 : :
8637 [ # # ]: 0 : if (res == -ENODEV)
8638 : 0 : return -1;
8639 : :
8640 [ # # ]: 0 : if (nlmode == drv->nlmode) {
8641 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface already in "
8642 : : "requested mode - ignore error");
8643 : 0 : ret = 0;
8644 : 0 : goto done; /* Already in the requested mode */
8645 : : }
8646 : :
8647 : : /* mac80211 doesn't allow mode changes while the device is up, so
8648 : : * take the device down, try to set the mode again, and bring the
8649 : : * device back up.
8650 : : */
8651 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Try mode change after setting "
8652 : : "interface down");
8653 [ # # ]: 0 : for (i = 0; i < 10; i++) {
8654 : 0 : res = i802_set_iface_flags(bss, 0);
8655 [ # # ][ # # ]: 0 : if (res == -EACCES || res == -ENODEV)
8656 : : break;
8657 [ # # ]: 0 : if (res == 0) {
8658 : : /* Try to set the mode again while the interface is
8659 : : * down */
8660 : 0 : ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
8661 [ # # ]: 0 : if (ret == -EACCES)
8662 : 0 : break;
8663 : 0 : res = i802_set_iface_flags(bss, 1);
8664 [ # # ][ # # ]: 0 : if (res && !ret)
8665 : 0 : ret = -1;
8666 [ # # ]: 0 : else if (ret != -EBUSY)
8667 : 0 : break;
8668 : : } else
8669 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set "
8670 : : "interface down");
8671 : 0 : os_sleep(0, 100000);
8672 : : }
8673 : :
8674 [ # # ]: 0 : if (!ret) {
8675 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
8676 : : "interface is down");
8677 : 0 : drv->nlmode = nlmode;
8678 : 0 : drv->ignore_if_down_event = 1;
8679 : : }
8680 : :
8681 : : done:
8682 [ - + ]: 594 : if (ret) {
8683 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
8684 : 0 : "from %d failed", nlmode, drv->nlmode);
8685 : 0 : return ret;
8686 : : }
8687 : :
8688 [ + + ]: 594 : if (is_p2p_net_interface(nlmode))
8689 : 125 : nl80211_disable_11b_rates(drv, drv->ifindex, 1);
8690 [ + + ]: 469 : else if (drv->disabled_11b_rates)
8691 : 96 : nl80211_disable_11b_rates(drv, drv->ifindex, 0);
8692 : :
8693 [ + + ]: 594 : if (is_ap_interface(nlmode)) {
8694 : 232 : nl80211_mgmt_unsubscribe(bss, "start AP");
8695 : : /* Setup additional AP mode functionality if needed */
8696 [ - + ]: 232 : if (nl80211_setup_ap(bss))
8697 : 0 : return -1;
8698 [ + + ]: 362 : } else if (was_ap) {
8699 : : /* Remove additional AP mode functionality */
8700 : 223 : nl80211_teardown_ap(bss);
8701 : : } else {
8702 : 139 : nl80211_mgmt_unsubscribe(bss, "mode change");
8703 : : }
8704 : :
8705 [ + + ]: 766 : if (!bss->in_deinit && !is_ap_interface(nlmode) &&
[ + + - + ]
8706 : 172 : nl80211_mgmt_subscribe_non_ap(bss) < 0)
8707 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to register Action "
8708 : : "frame processing - ignore for now");
8709 : :
8710 : 594 : return 0;
8711 : : }
8712 : :
8713 : :
8714 : 265 : static int wpa_driver_nl80211_get_capa(void *priv,
8715 : : struct wpa_driver_capa *capa)
8716 : : {
8717 : 265 : struct i802_bss *bss = priv;
8718 : 265 : struct wpa_driver_nl80211_data *drv = bss->drv;
8719 [ - + ]: 265 : if (!drv->has_capability)
8720 : 0 : return -1;
8721 : 265 : os_memcpy(capa, &drv->capa, sizeof(*capa));
8722 [ + - ][ + - ]: 265 : if (drv->extended_capa && drv->extended_capa_mask) {
8723 : 265 : capa->extended_capa = drv->extended_capa;
8724 : 265 : capa->extended_capa_mask = drv->extended_capa_mask;
8725 : 265 : capa->extended_capa_len = drv->extended_capa_len;
8726 : : }
8727 : :
8728 [ + - ][ + - ]: 265 : if ((capa->flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
8729 : 265 : !drv->allow_p2p_device) {
8730 : 265 : wpa_printf(MSG_DEBUG, "nl80211: Do not indicate P2P_DEVICE support (p2p_device=1 driver param not specified)");
8731 : 265 : capa->flags &= ~WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
8732 : : }
8733 : :
8734 : 265 : return 0;
8735 : : }
8736 : :
8737 : :
8738 : 2487 : static int wpa_driver_nl80211_set_operstate(void *priv, int state)
8739 : : {
8740 : 2487 : struct i802_bss *bss = priv;
8741 : 2487 : struct wpa_driver_nl80211_data *drv = bss->drv;
8742 : :
8743 [ + + ]: 2487 : wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
8744 : : __func__, drv->operstate, state, state ? "UP" : "DORMANT");
8745 : 2487 : drv->operstate = state;
8746 [ + + ]: 2487 : return netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, -1,
8747 : : state ? IF_OPER_UP : IF_OPER_DORMANT);
8748 : : }
8749 : :
8750 : :
8751 : 5120 : static int wpa_driver_nl80211_set_supp_port(void *priv, int authorized)
8752 : : {
8753 : 5120 : struct i802_bss *bss = priv;
8754 : 5120 : struct wpa_driver_nl80211_data *drv = bss->drv;
8755 : : struct nl_msg *msg;
8756 : : struct nl80211_sta_flag_update upd;
8757 : :
8758 [ + + ]: 5120 : wpa_printf(MSG_DEBUG, "nl80211: Set supplicant port %sauthorized for "
8759 : 30720 : MACSTR, authorized ? "" : "un", MAC2STR(drv->bssid));
8760 : :
8761 : 5120 : msg = nlmsg_alloc();
8762 [ - + ]: 5120 : if (!msg)
8763 : 0 : return -ENOMEM;
8764 : :
8765 : 5120 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
8766 : :
8767 [ + - ]: 5120 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8768 : : if_nametoindex(bss->ifname));
8769 [ + - ]: 5120 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
8770 : :
8771 : 5120 : os_memset(&upd, 0, sizeof(upd));
8772 : 5120 : upd.mask = BIT(NL80211_STA_FLAG_AUTHORIZED);
8773 [ + + ]: 5120 : if (authorized)
8774 : 307 : upd.set = BIT(NL80211_STA_FLAG_AUTHORIZED);
8775 [ + - ]: 5120 : NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
8776 : :
8777 : 5120 : return send_and_recv_msgs(drv, msg, NULL, NULL);
8778 : : nla_put_failure:
8779 : 0 : nlmsg_free(msg);
8780 : 5120 : return -ENOBUFS;
8781 : : }
8782 : :
8783 : :
8784 : : /* Set kernel driver on given frequency (MHz) */
8785 : 216 : static int i802_set_freq(void *priv, struct hostapd_freq_params *freq)
8786 : : {
8787 : 216 : struct i802_bss *bss = priv;
8788 : 216 : return wpa_driver_nl80211_set_freq(bss, freq);
8789 : : }
8790 : :
8791 : :
8792 : 250 : static inline int min_int(int a, int b)
8793 : : {
8794 [ - + ]: 250 : if (a < b)
8795 : 0 : return a;
8796 : 250 : return b;
8797 : : }
8798 : :
8799 : :
8800 : 253 : static int get_key_handler(struct nl_msg *msg, void *arg)
8801 : : {
8802 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
8803 : 253 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
8804 : :
8805 : 253 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
8806 : : genlmsg_attrlen(gnlh, 0), NULL);
8807 : :
8808 : : /*
8809 : : * TODO: validate the key index and mac address!
8810 : : * Otherwise, there's a race condition as soon as
8811 : : * the kernel starts sending key notifications.
8812 : : */
8813 : :
8814 [ + + ]: 253 : if (tb[NL80211_ATTR_KEY_SEQ])
8815 : 250 : memcpy(arg, nla_data(tb[NL80211_ATTR_KEY_SEQ]),
8816 : 250 : min_int(nla_len(tb[NL80211_ATTR_KEY_SEQ]), 6));
8817 : 253 : return NL_SKIP;
8818 : : }
8819 : :
8820 : :
8821 : 253 : static int i802_get_seqnum(const char *iface, void *priv, const u8 *addr,
8822 : : int idx, u8 *seq)
8823 : : {
8824 : 253 : struct i802_bss *bss = priv;
8825 : 253 : struct wpa_driver_nl80211_data *drv = bss->drv;
8826 : : struct nl_msg *msg;
8827 : :
8828 : 253 : msg = nlmsg_alloc();
8829 [ - + ]: 253 : if (!msg)
8830 : 0 : return -ENOMEM;
8831 : :
8832 : 253 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_KEY);
8833 : :
8834 [ - + ]: 253 : if (addr)
8835 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
8836 [ + - ]: 253 : NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, idx);
8837 [ + - ]: 253 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(iface));
8838 : :
8839 : 253 : memset(seq, 0, 6);
8840 : :
8841 : 253 : return send_and_recv_msgs(drv, msg, get_key_handler, seq);
8842 : : nla_put_failure:
8843 : 0 : nlmsg_free(msg);
8844 : 253 : return -ENOBUFS;
8845 : : }
8846 : :
8847 : :
8848 : 0 : static int i802_set_rts(void *priv, int rts)
8849 : : {
8850 : 0 : struct i802_bss *bss = priv;
8851 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8852 : : struct nl_msg *msg;
8853 : 0 : int ret = -ENOBUFS;
8854 : : u32 val;
8855 : :
8856 : 0 : msg = nlmsg_alloc();
8857 [ # # ]: 0 : if (!msg)
8858 : 0 : return -ENOMEM;
8859 : :
8860 [ # # ]: 0 : if (rts >= 2347)
8861 : 0 : val = (u32) -1;
8862 : : else
8863 : 0 : val = rts;
8864 : :
8865 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8866 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8867 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val);
8868 : :
8869 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8870 : 0 : msg = NULL;
8871 [ # # ]: 0 : if (!ret)
8872 : 0 : return 0;
8873 : : nla_put_failure:
8874 : 0 : nlmsg_free(msg);
8875 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set RTS threshold %d: "
8876 : : "%d (%s)", rts, ret, strerror(-ret));
8877 : 0 : return ret;
8878 : : }
8879 : :
8880 : :
8881 : 0 : static int i802_set_frag(void *priv, int frag)
8882 : : {
8883 : 0 : struct i802_bss *bss = priv;
8884 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
8885 : : struct nl_msg *msg;
8886 : 0 : int ret = -ENOBUFS;
8887 : : u32 val;
8888 : :
8889 : 0 : msg = nlmsg_alloc();
8890 [ # # ]: 0 : if (!msg)
8891 : 0 : return -ENOMEM;
8892 : :
8893 [ # # ]: 0 : if (frag >= 2346)
8894 : 0 : val = (u32) -1;
8895 : : else
8896 : 0 : val = frag;
8897 : :
8898 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
8899 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
8900 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, val);
8901 : :
8902 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
8903 : 0 : msg = NULL;
8904 [ # # ]: 0 : if (!ret)
8905 : 0 : return 0;
8906 : : nla_put_failure:
8907 : 0 : nlmsg_free(msg);
8908 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set fragmentation threshold "
8909 : : "%d: %d (%s)", frag, ret, strerror(-ret));
8910 : 0 : return ret;
8911 : : }
8912 : :
8913 : :
8914 : 480 : static int i802_flush(void *priv)
8915 : : {
8916 : 480 : struct i802_bss *bss = priv;
8917 : 480 : struct wpa_driver_nl80211_data *drv = bss->drv;
8918 : : struct nl_msg *msg;
8919 : : int res;
8920 : :
8921 : 480 : msg = nlmsg_alloc();
8922 [ - + ]: 480 : if (!msg)
8923 : 0 : return -1;
8924 : :
8925 : 480 : wpa_printf(MSG_DEBUG, "nl80211: flush -> DEL_STATION %s (all)",
8926 : 480 : bss->ifname);
8927 : 480 : nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
8928 : :
8929 : : /*
8930 : : * XXX: FIX! this needs to flush all VLANs too
8931 : : */
8932 [ + - ]: 480 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
8933 : : if_nametoindex(bss->ifname));
8934 : :
8935 : 480 : res = send_and_recv_msgs(drv, msg, NULL, NULL);
8936 [ - + ]: 480 : if (res) {
8937 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Station flush failed: ret=%d "
8938 : : "(%s)", res, strerror(-res));
8939 : : }
8940 : 480 : return res;
8941 : : nla_put_failure:
8942 : 0 : nlmsg_free(msg);
8943 : 480 : return -ENOBUFS;
8944 : : }
8945 : :
8946 : :
8947 : 0 : static int get_sta_handler(struct nl_msg *msg, void *arg)
8948 : : {
8949 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
8950 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
8951 : 0 : struct hostap_sta_driver_data *data = arg;
8952 : : struct nlattr *stats[NL80211_STA_INFO_MAX + 1];
8953 : : static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
8954 : : [NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
8955 : : [NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
8956 : : [NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
8957 : : [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
8958 : : [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
8959 : : [NL80211_STA_INFO_TX_FAILED] = { .type = NLA_U32 },
8960 : : };
8961 : :
8962 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
8963 : : genlmsg_attrlen(gnlh, 0), NULL);
8964 : :
8965 : : /*
8966 : : * TODO: validate the interface and mac address!
8967 : : * Otherwise, there's a race condition as soon as
8968 : : * the kernel starts sending station notifications.
8969 : : */
8970 : :
8971 [ # # ]: 0 : if (!tb[NL80211_ATTR_STA_INFO]) {
8972 : 0 : wpa_printf(MSG_DEBUG, "sta stats missing!");
8973 : 0 : return NL_SKIP;
8974 : : }
8975 [ # # ]: 0 : if (nla_parse_nested(stats, NL80211_STA_INFO_MAX,
8976 : : tb[NL80211_ATTR_STA_INFO],
8977 : : stats_policy)) {
8978 : 0 : wpa_printf(MSG_DEBUG, "failed to parse nested attributes!");
8979 : 0 : return NL_SKIP;
8980 : : }
8981 : :
8982 [ # # ]: 0 : if (stats[NL80211_STA_INFO_INACTIVE_TIME])
8983 : 0 : data->inactive_msec =
8984 : 0 : nla_get_u32(stats[NL80211_STA_INFO_INACTIVE_TIME]);
8985 [ # # ]: 0 : if (stats[NL80211_STA_INFO_RX_BYTES])
8986 : 0 : data->rx_bytes = nla_get_u32(stats[NL80211_STA_INFO_RX_BYTES]);
8987 [ # # ]: 0 : if (stats[NL80211_STA_INFO_TX_BYTES])
8988 : 0 : data->tx_bytes = nla_get_u32(stats[NL80211_STA_INFO_TX_BYTES]);
8989 [ # # ]: 0 : if (stats[NL80211_STA_INFO_RX_PACKETS])
8990 : 0 : data->rx_packets =
8991 : 0 : nla_get_u32(stats[NL80211_STA_INFO_RX_PACKETS]);
8992 [ # # ]: 0 : if (stats[NL80211_STA_INFO_TX_PACKETS])
8993 : 0 : data->tx_packets =
8994 : 0 : nla_get_u32(stats[NL80211_STA_INFO_TX_PACKETS]);
8995 [ # # ]: 0 : if (stats[NL80211_STA_INFO_TX_FAILED])
8996 : 0 : data->tx_retry_failed =
8997 : 0 : nla_get_u32(stats[NL80211_STA_INFO_TX_FAILED]);
8998 : :
8999 : 0 : return NL_SKIP;
9000 : : }
9001 : :
9002 : 0 : static int i802_read_sta_data(struct i802_bss *bss,
9003 : : struct hostap_sta_driver_data *data,
9004 : : const u8 *addr)
9005 : : {
9006 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9007 : : struct nl_msg *msg;
9008 : :
9009 : 0 : os_memset(data, 0, sizeof(*data));
9010 : 0 : msg = nlmsg_alloc();
9011 [ # # ]: 0 : if (!msg)
9012 : 0 : return -ENOMEM;
9013 : :
9014 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
9015 : :
9016 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
9017 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
9018 : :
9019 : 0 : return send_and_recv_msgs(drv, msg, get_sta_handler, data);
9020 : : nla_put_failure:
9021 : 0 : nlmsg_free(msg);
9022 : 0 : return -ENOBUFS;
9023 : : }
9024 : :
9025 : :
9026 : 864 : static int i802_set_tx_queue_params(void *priv, int queue, int aifs,
9027 : : int cw_min, int cw_max, int burst_time)
9028 : : {
9029 : 864 : struct i802_bss *bss = priv;
9030 : 864 : struct wpa_driver_nl80211_data *drv = bss->drv;
9031 : : struct nl_msg *msg;
9032 : : struct nlattr *txq, *params;
9033 : :
9034 : 864 : msg = nlmsg_alloc();
9035 [ - + ]: 864 : if (!msg)
9036 : 0 : return -1;
9037 : :
9038 : 864 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
9039 : :
9040 [ + - ]: 864 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
9041 : :
9042 : 864 : txq = nla_nest_start(msg, NL80211_ATTR_WIPHY_TXQ_PARAMS);
9043 [ - + ]: 864 : if (!txq)
9044 : 0 : goto nla_put_failure;
9045 : :
9046 : : /* We are only sending parameters for a single TXQ at a time */
9047 : 864 : params = nla_nest_start(msg, 1);
9048 [ - + ]: 864 : if (!params)
9049 : 0 : goto nla_put_failure;
9050 : :
9051 [ + + + + : 864 : switch (queue) {
- ]
9052 : : case 0:
9053 [ + - ]: 216 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VO);
9054 : 216 : break;
9055 : : case 1:
9056 [ + - ]: 216 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VI);
9057 : 216 : break;
9058 : : case 2:
9059 [ + - ]: 216 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BE);
9060 : 216 : break;
9061 : : case 3:
9062 [ + - ]: 216 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BK);
9063 : 216 : break;
9064 : : }
9065 : : /* Burst time is configured in units of 0.1 msec and TXOP parameter in
9066 : : * 32 usec, so need to convert the value here. */
9067 [ + - ]: 864 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_TXOP, (burst_time * 100 + 16) / 32);
9068 [ + - ]: 864 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMIN, cw_min);
9069 [ + - ]: 864 : NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMAX, cw_max);
9070 [ + - ]: 864 : NLA_PUT_U8(msg, NL80211_TXQ_ATTR_AIFS, aifs);
9071 : :
9072 : 864 : nla_nest_end(msg, params);
9073 : :
9074 : 864 : nla_nest_end(msg, txq);
9075 : :
9076 [ + - ]: 864 : if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
9077 : 864 : return 0;
9078 : 0 : msg = NULL;
9079 : : nla_put_failure:
9080 : 0 : nlmsg_free(msg);
9081 : 864 : return -1;
9082 : : }
9083 : :
9084 : :
9085 : 0 : static int i802_set_sta_vlan(struct i802_bss *bss, const u8 *addr,
9086 : : const char *ifname, int vlan_id)
9087 : : {
9088 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9089 : : struct nl_msg *msg;
9090 : 0 : int ret = -ENOBUFS;
9091 : :
9092 : 0 : msg = nlmsg_alloc();
9093 [ # # ]: 0 : if (!msg)
9094 : 0 : return -ENOMEM;
9095 : :
9096 : 0 : wpa_printf(MSG_DEBUG, "nl80211: %s[%d]: set_sta_vlan(" MACSTR
9097 : : ", ifname=%s[%d], vlan_id=%d)",
9098 : 0 : bss->ifname, if_nametoindex(bss->ifname),
9099 : 0 : MAC2STR(addr), ifname, if_nametoindex(ifname), vlan_id);
9100 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
9101 : :
9102 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
9103 : : if_nametoindex(bss->ifname));
9104 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
9105 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN,
9106 : : if_nametoindex(ifname));
9107 : :
9108 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9109 : 0 : msg = NULL;
9110 [ # # ]: 0 : if (ret < 0) {
9111 : 0 : wpa_printf(MSG_ERROR, "nl80211: NL80211_ATTR_STA_VLAN (addr="
9112 : : MACSTR " ifname=%s vlan_id=%d) failed: %d (%s)",
9113 : 0 : MAC2STR(addr), ifname, vlan_id, ret,
9114 : : strerror(-ret));
9115 : : }
9116 : : nla_put_failure:
9117 : 0 : nlmsg_free(msg);
9118 : 0 : return ret;
9119 : : }
9120 : :
9121 : :
9122 : 0 : static int i802_get_inact_sec(void *priv, const u8 *addr)
9123 : : {
9124 : : struct hostap_sta_driver_data data;
9125 : : int ret;
9126 : :
9127 : 0 : data.inactive_msec = (unsigned long) -1;
9128 : 0 : ret = i802_read_sta_data(priv, &data, addr);
9129 [ # # ][ # # ]: 0 : if (ret || data.inactive_msec == (unsigned long) -1)
9130 : 0 : return -1;
9131 : 0 : return data.inactive_msec / 1000;
9132 : : }
9133 : :
9134 : :
9135 : 232 : static int i802_sta_clear_stats(void *priv, const u8 *addr)
9136 : : {
9137 : : #if 0
9138 : : /* TODO */
9139 : : #endif
9140 : 232 : return 0;
9141 : : }
9142 : :
9143 : :
9144 : 560 : static int i802_sta_deauth(void *priv, const u8 *own_addr, const u8 *addr,
9145 : : int reason)
9146 : : {
9147 : 560 : struct i802_bss *bss = priv;
9148 : 560 : struct wpa_driver_nl80211_data *drv = bss->drv;
9149 : : struct ieee80211_mgmt mgmt;
9150 : :
9151 [ - + ]: 560 : if (drv->device_ap_sme)
9152 : 0 : return wpa_driver_nl80211_sta_remove(bss, addr);
9153 : :
9154 : 560 : memset(&mgmt, 0, sizeof(mgmt));
9155 : 560 : mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
9156 : : WLAN_FC_STYPE_DEAUTH);
9157 : 560 : memcpy(mgmt.da, addr, ETH_ALEN);
9158 : 560 : memcpy(mgmt.sa, own_addr, ETH_ALEN);
9159 : 560 : memcpy(mgmt.bssid, own_addr, ETH_ALEN);
9160 : 560 : mgmt.u.deauth.reason_code = host_to_le16(reason);
9161 : 560 : return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
9162 : : IEEE80211_HDRLEN +
9163 : : sizeof(mgmt.u.deauth), 0, 0, 0, 0,
9164 : : 0);
9165 : : }
9166 : :
9167 : :
9168 : 0 : static int i802_sta_disassoc(void *priv, const u8 *own_addr, const u8 *addr,
9169 : : int reason)
9170 : : {
9171 : 0 : struct i802_bss *bss = priv;
9172 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9173 : : struct ieee80211_mgmt mgmt;
9174 : :
9175 [ # # ]: 0 : if (drv->device_ap_sme)
9176 : 0 : return wpa_driver_nl80211_sta_remove(bss, addr);
9177 : :
9178 : 0 : memset(&mgmt, 0, sizeof(mgmt));
9179 : 0 : mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
9180 : : WLAN_FC_STYPE_DISASSOC);
9181 : 0 : memcpy(mgmt.da, addr, ETH_ALEN);
9182 : 0 : memcpy(mgmt.sa, own_addr, ETH_ALEN);
9183 : 0 : memcpy(mgmt.bssid, own_addr, ETH_ALEN);
9184 : 0 : mgmt.u.disassoc.reason_code = host_to_le16(reason);
9185 : 0 : return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
9186 : : IEEE80211_HDRLEN +
9187 : : sizeof(mgmt.u.disassoc), 0, 0, 0, 0,
9188 : : 0);
9189 : : }
9190 : :
9191 : :
9192 : 204 : static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9193 : : {
9194 : : int i;
9195 : : int *old;
9196 : :
9197 : 204 : wpa_printf(MSG_DEBUG, "nl80211: Add own interface ifindex %d",
9198 : : ifidx);
9199 [ + - ]: 229 : for (i = 0; i < drv->num_if_indices; i++) {
9200 [ + + ]: 229 : if (drv->if_indices[i] == 0) {
9201 : 204 : drv->if_indices[i] = ifidx;
9202 : 204 : return;
9203 : : }
9204 : : }
9205 : :
9206 [ # # ]: 0 : if (drv->if_indices != drv->default_if_indices)
9207 : 0 : old = drv->if_indices;
9208 : : else
9209 : 0 : old = NULL;
9210 : :
9211 : 0 : drv->if_indices = os_realloc_array(old, drv->num_if_indices + 1,
9212 : : sizeof(int));
9213 [ # # ]: 0 : if (!drv->if_indices) {
9214 [ # # ]: 0 : if (!old)
9215 : 0 : drv->if_indices = drv->default_if_indices;
9216 : : else
9217 : 0 : drv->if_indices = old;
9218 : 0 : wpa_printf(MSG_ERROR, "Failed to reallocate memory for "
9219 : : "interfaces");
9220 : 0 : wpa_printf(MSG_ERROR, "Ignoring EAPOL on interface %d", ifidx);
9221 : 0 : return;
9222 [ # # ]: 0 : } else if (!old)
9223 : 0 : os_memcpy(drv->if_indices, drv->default_if_indices,
9224 : : sizeof(drv->default_if_indices));
9225 : 0 : drv->if_indices[drv->num_if_indices] = ifidx;
9226 : 204 : drv->num_if_indices++;
9227 : : }
9228 : :
9229 : :
9230 : 36 : static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9231 : : {
9232 : : int i;
9233 : :
9234 [ + - ]: 61 : for (i = 0; i < drv->num_if_indices; i++) {
9235 [ + + ]: 61 : if (drv->if_indices[i] == ifidx) {
9236 : 36 : drv->if_indices[i] = 0;
9237 : 36 : break;
9238 : : }
9239 : : }
9240 : 36 : }
9241 : :
9242 : :
9243 : 7903 : static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
9244 : : {
9245 : : int i;
9246 : :
9247 [ + + ]: 119387 : for (i = 0; i < drv->num_if_indices; i++)
9248 [ + + ]: 112426 : if (drv->if_indices[i] == ifidx)
9249 : 942 : return 1;
9250 : :
9251 : 7903 : return 0;
9252 : : }
9253 : :
9254 : :
9255 : 0 : static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val,
9256 : : const char *bridge_ifname, char *ifname_wds)
9257 : : {
9258 : 0 : struct i802_bss *bss = priv;
9259 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
9260 : : char name[IFNAMSIZ + 1];
9261 : :
9262 : 0 : os_snprintf(name, sizeof(name), "%s.sta%d", bss->ifname, aid);
9263 [ # # ]: 0 : if (ifname_wds)
9264 : 0 : os_strlcpy(ifname_wds, name, IFNAMSIZ + 1);
9265 : :
9266 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
9267 : 0 : " aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
9268 [ # # ]: 0 : if (val) {
9269 [ # # ]: 0 : if (!if_nametoindex(name)) {
9270 [ # # ]: 0 : if (nl80211_create_iface(drv, name,
9271 : : NL80211_IFTYPE_AP_VLAN,
9272 : 0 : bss->addr, 1, NULL, NULL, 0) <
9273 : : 0)
9274 : 0 : return -1;
9275 [ # # # # ]: 0 : if (bridge_ifname &&
9276 : 0 : linux_br_add_if(drv->global->ioctl_sock,
9277 : : bridge_ifname, name) < 0)
9278 : 0 : return -1;
9279 : : }
9280 [ # # ]: 0 : if (linux_set_iface_flags(drv->global->ioctl_sock, name, 1)) {
9281 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to set WDS STA "
9282 : : "interface %s up", name);
9283 : : }
9284 : 0 : return i802_set_sta_vlan(priv, addr, name, 0);
9285 : : } else {
9286 [ # # ]: 0 : if (bridge_ifname)
9287 : 0 : linux_br_del_if(drv->global->ioctl_sock, bridge_ifname,
9288 : : name);
9289 : :
9290 : 0 : i802_set_sta_vlan(priv, addr, bss->ifname, 0);
9291 : 0 : return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
9292 : : name);
9293 : : }
9294 : : }
9295 : :
9296 : :
9297 : 2027 : static void handle_eapol(int sock, void *eloop_ctx, void *sock_ctx)
9298 : : {
9299 : 2027 : struct wpa_driver_nl80211_data *drv = eloop_ctx;
9300 : : struct sockaddr_ll lladdr;
9301 : : unsigned char buf[3000];
9302 : : int len;
9303 : 2027 : socklen_t fromlen = sizeof(lladdr);
9304 : :
9305 : 2027 : len = recvfrom(sock, buf, sizeof(buf), 0,
9306 : : (struct sockaddr *)&lladdr, &fromlen);
9307 [ - + ]: 2027 : if (len < 0) {
9308 : 0 : wpa_printf(MSG_ERROR, "nl80211: EAPOL recv failed: %s",
9309 : 0 : strerror(errno));
9310 : 2027 : return;
9311 : : }
9312 : :
9313 [ + + ]: 2027 : if (have_ifidx(drv, lladdr.sll_ifindex))
9314 : 861 : drv_event_eapol_rx(drv->ctx, lladdr.sll_addr, buf, len);
9315 : : }
9316 : :
9317 : :
9318 : 0 : static int i802_check_bridge(struct wpa_driver_nl80211_data *drv,
9319 : : struct i802_bss *bss,
9320 : : const char *brname, const char *ifname)
9321 : : {
9322 : : int ifindex;
9323 : : char in_br[IFNAMSIZ];
9324 : :
9325 : 0 : os_strlcpy(bss->brname, brname, IFNAMSIZ);
9326 : 0 : ifindex = if_nametoindex(brname);
9327 [ # # ]: 0 : if (ifindex == 0) {
9328 : : /*
9329 : : * Bridge was configured, but the bridge device does
9330 : : * not exist. Try to add it now.
9331 : : */
9332 [ # # ]: 0 : if (linux_br_add(drv->global->ioctl_sock, brname) < 0) {
9333 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add the "
9334 : : "bridge interface %s: %s",
9335 : 0 : brname, strerror(errno));
9336 : 0 : return -1;
9337 : : }
9338 : 0 : bss->added_bridge = 1;
9339 : 0 : add_ifidx(drv, if_nametoindex(brname));
9340 : : }
9341 : :
9342 [ # # ]: 0 : if (linux_br_get(in_br, ifname) == 0) {
9343 [ # # ]: 0 : if (os_strcmp(in_br, brname) == 0)
9344 : 0 : return 0; /* already in the bridge */
9345 : :
9346 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Removing interface %s from "
9347 : : "bridge %s", ifname, in_br);
9348 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, in_br, ifname) <
9349 : : 0) {
9350 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to "
9351 : : "remove interface %s from bridge "
9352 : : "%s: %s",
9353 : 0 : ifname, brname, strerror(errno));
9354 : 0 : return -1;
9355 : : }
9356 : : }
9357 : :
9358 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Adding interface %s into bridge %s",
9359 : : ifname, brname);
9360 [ # # ]: 0 : if (linux_br_add_if(drv->global->ioctl_sock, brname, ifname) < 0) {
9361 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add interface %s "
9362 : : "into bridge %s: %s",
9363 : 0 : ifname, brname, strerror(errno));
9364 : 0 : return -1;
9365 : : }
9366 : 0 : bss->added_if_into_bridge = 1;
9367 : :
9368 : 0 : return 0;
9369 : : }
9370 : :
9371 : :
9372 : 168 : static void *i802_init(struct hostapd_data *hapd,
9373 : : struct wpa_init_params *params)
9374 : : {
9375 : : struct wpa_driver_nl80211_data *drv;
9376 : : struct i802_bss *bss;
9377 : : size_t i;
9378 : : char brname[IFNAMSIZ];
9379 : : int ifindex, br_ifindex;
9380 : 168 : int br_added = 0;
9381 : :
9382 : 168 : bss = wpa_driver_nl80211_drv_init(hapd, params->ifname,
9383 : : params->global_priv, 1,
9384 : : params->bssid);
9385 [ - + ]: 168 : if (bss == NULL)
9386 : 0 : return NULL;
9387 : :
9388 : 168 : drv = bss->drv;
9389 : :
9390 [ - + ]: 168 : if (linux_br_get(brname, params->ifname) == 0) {
9391 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Interface %s is in bridge %s",
9392 : : params->ifname, brname);
9393 : 0 : br_ifindex = if_nametoindex(brname);
9394 : : } else {
9395 : 168 : brname[0] = '\0';
9396 : 168 : br_ifindex = 0;
9397 : : }
9398 : :
9399 [ + + ]: 342 : for (i = 0; i < params->num_bridge; i++) {
9400 [ - + ]: 174 : if (params->bridge[i]) {
9401 : 0 : ifindex = if_nametoindex(params->bridge[i]);
9402 [ # # ]: 0 : if (ifindex)
9403 : 0 : add_ifidx(drv, ifindex);
9404 [ # # ]: 0 : if (ifindex == br_ifindex)
9405 : 0 : br_added = 1;
9406 : : }
9407 : : }
9408 [ + - ][ - + ]: 168 : if (!br_added && br_ifindex &&
[ # # ]
9409 [ # # ]: 0 : (params->num_bridge == 0 || !params->bridge[0]))
9410 : 0 : add_ifidx(drv, br_ifindex);
9411 : :
9412 : : /* start listening for EAPOL on the default AP interface */
9413 : 168 : add_ifidx(drv, drv->ifindex);
9414 : :
9415 [ - + # # ]: 168 : if (params->num_bridge && params->bridge[0] &&
[ + - ]
9416 : 0 : i802_check_bridge(drv, bss, params->bridge[0], params->ifname) < 0)
9417 : 0 : goto failed;
9418 : :
9419 : 168 : drv->eapol_sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_PAE));
9420 [ - + ]: 168 : if (drv->eapol_sock < 0) {
9421 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket(PF_PACKET, SOCK_DGRAM, ETH_P_PAE) failed: %s",
9422 : 0 : strerror(errno));
9423 : 0 : goto failed;
9424 : : }
9425 : :
9426 [ - + ]: 168 : if (eloop_register_read_sock(drv->eapol_sock, handle_eapol, drv, NULL))
9427 : : {
9428 : 0 : wpa_printf(MSG_INFO, "nl80211: Could not register read socket for eapol");
9429 : 0 : goto failed;
9430 : : }
9431 : :
9432 [ - + ]: 168 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
9433 : : params->own_addr))
9434 : 0 : goto failed;
9435 : :
9436 : 168 : memcpy(bss->addr, params->own_addr, ETH_ALEN);
9437 : :
9438 : 168 : return bss;
9439 : :
9440 : : failed:
9441 : 0 : wpa_driver_nl80211_deinit(bss);
9442 : 168 : return NULL;
9443 : : }
9444 : :
9445 : :
9446 : 168 : static void i802_deinit(void *priv)
9447 : : {
9448 : 168 : struct i802_bss *bss = priv;
9449 : 168 : wpa_driver_nl80211_deinit(bss);
9450 : 168 : }
9451 : :
9452 : :
9453 : 36 : static enum nl80211_iftype wpa_driver_nl80211_if_type(
9454 : : enum wpa_driver_if_type type)
9455 : : {
9456 [ - + - + : 36 : switch (type) {
+ - - ]
9457 : : case WPA_IF_STATION:
9458 : 0 : return NL80211_IFTYPE_STATION;
9459 : : case WPA_IF_P2P_CLIENT:
9460 : : case WPA_IF_P2P_GROUP:
9461 : 10 : return NL80211_IFTYPE_P2P_CLIENT;
9462 : : case WPA_IF_AP_VLAN:
9463 : 0 : return NL80211_IFTYPE_AP_VLAN;
9464 : : case WPA_IF_AP_BSS:
9465 : 17 : return NL80211_IFTYPE_AP;
9466 : : case WPA_IF_P2P_GO:
9467 : 9 : return NL80211_IFTYPE_P2P_GO;
9468 : : case WPA_IF_P2P_DEVICE:
9469 : 0 : return NL80211_IFTYPE_P2P_DEVICE;
9470 : : }
9471 : 36 : return -1;
9472 : : }
9473 : :
9474 : :
9475 : : #ifdef CONFIG_P2P
9476 : :
9477 : 19 : static int nl80211_addr_in_use(struct nl80211_global *global, const u8 *addr)
9478 : : {
9479 : : struct wpa_driver_nl80211_data *drv;
9480 [ + + ]: 38 : dl_list_for_each(drv, &global->interfaces,
9481 : : struct wpa_driver_nl80211_data, list) {
9482 [ - + ]: 19 : if (os_memcmp(addr, drv->first_bss->addr, ETH_ALEN) == 0)
9483 : 0 : return 1;
9484 : : }
9485 : 19 : return 0;
9486 : : }
9487 : :
9488 : :
9489 : 0 : static int nl80211_p2p_interface_addr(struct wpa_driver_nl80211_data *drv,
9490 : : u8 *new_addr)
9491 : : {
9492 : : unsigned int idx;
9493 : :
9494 [ # # ]: 0 : if (!drv->global)
9495 : 0 : return -1;
9496 : :
9497 : 0 : os_memcpy(new_addr, drv->first_bss->addr, ETH_ALEN);
9498 [ # # ]: 0 : for (idx = 0; idx < 64; idx++) {
9499 : 0 : new_addr[0] = drv->first_bss->addr[0] | 0x02;
9500 : 0 : new_addr[0] ^= idx << 2;
9501 [ # # ]: 0 : if (!nl80211_addr_in_use(drv->global, new_addr))
9502 : 0 : break;
9503 : : }
9504 [ # # ]: 0 : if (idx == 64)
9505 : 0 : return -1;
9506 : :
9507 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Assigned new P2P Interface Address "
9508 : 0 : MACSTR, MAC2STR(new_addr));
9509 : :
9510 : 0 : return 0;
9511 : : }
9512 : :
9513 : : #endif /* CONFIG_P2P */
9514 : :
9515 : :
9516 : : struct wdev_info {
9517 : : u64 wdev_id;
9518 : : int wdev_id_set;
9519 : : u8 macaddr[ETH_ALEN];
9520 : : };
9521 : :
9522 : 0 : static int nl80211_wdev_handler(struct nl_msg *msg, void *arg)
9523 : : {
9524 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
9525 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
9526 : 0 : struct wdev_info *wi = arg;
9527 : :
9528 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
9529 : : genlmsg_attrlen(gnlh, 0), NULL);
9530 [ # # ]: 0 : if (tb[NL80211_ATTR_WDEV]) {
9531 : 0 : wi->wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
9532 : 0 : wi->wdev_id_set = 1;
9533 : : }
9534 : :
9535 [ # # ]: 0 : if (tb[NL80211_ATTR_MAC])
9536 : 0 : os_memcpy(wi->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
9537 : : ETH_ALEN);
9538 : :
9539 : 0 : return NL_SKIP;
9540 : : }
9541 : :
9542 : :
9543 : 36 : static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type,
9544 : : const char *ifname, const u8 *addr,
9545 : : void *bss_ctx, void **drv_priv,
9546 : : char *force_ifname, u8 *if_addr,
9547 : : const char *bridge, int use_existing)
9548 : : {
9549 : : enum nl80211_iftype nlmode;
9550 : 36 : struct i802_bss *bss = priv;
9551 : 36 : struct wpa_driver_nl80211_data *drv = bss->drv;
9552 : : int ifidx;
9553 : 36 : int added = 1;
9554 : :
9555 [ + + ]: 36 : if (addr)
9556 : 17 : os_memcpy(if_addr, addr, ETH_ALEN);
9557 : 36 : nlmode = wpa_driver_nl80211_if_type(type);
9558 [ - + ]: 36 : if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
9559 : : struct wdev_info p2pdev_info;
9560 : :
9561 : 0 : os_memset(&p2pdev_info, 0, sizeof(p2pdev_info));
9562 : 0 : ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
9563 : : 0, nl80211_wdev_handler,
9564 : : &p2pdev_info, use_existing);
9565 [ # # ][ # # ]: 0 : if (!p2pdev_info.wdev_id_set || ifidx != 0) {
9566 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to create a P2P Device interface %s",
9567 : : ifname);
9568 : 0 : return -1;
9569 : : }
9570 : :
9571 : 0 : drv->global->if_add_wdevid = p2pdev_info.wdev_id;
9572 : 0 : drv->global->if_add_wdevid_set = p2pdev_info.wdev_id_set;
9573 [ # # ]: 0 : if (!is_zero_ether_addr(p2pdev_info.macaddr))
9574 : 0 : os_memcpy(if_addr, p2pdev_info.macaddr, ETH_ALEN);
9575 : 0 : wpa_printf(MSG_DEBUG, "nl80211: New P2P Device interface %s (0x%llx) created",
9576 : : ifname,
9577 : 0 : (long long unsigned int) p2pdev_info.wdev_id);
9578 : : } else {
9579 : 36 : ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
9580 : : 0, NULL, NULL, use_existing);
9581 [ - + ][ + + ]: 36 : if (use_existing && ifidx == -ENFILE) {
9582 : 0 : added = 0;
9583 : 0 : ifidx = if_nametoindex(ifname);
9584 [ - + ]: 36 : } else if (ifidx < 0) {
9585 : 0 : return -1;
9586 : : }
9587 : : }
9588 : :
9589 [ + + ]: 36 : if (!addr) {
9590 [ - + ]: 19 : if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
9591 : 0 : os_memcpy(if_addr, bss->addr, ETH_ALEN);
9592 [ - + ]: 19 : else if (linux_get_ifhwaddr(drv->global->ioctl_sock,
9593 : 19 : bss->ifname, if_addr) < 0) {
9594 [ # # ]: 0 : if (added)
9595 : 0 : nl80211_remove_iface(drv, ifidx);
9596 : 0 : return -1;
9597 : : }
9598 : : }
9599 : :
9600 : : #ifdef CONFIG_P2P
9601 [ + - ][ + + ]: 19 : if (!addr &&
9602 [ + + ][ + - ]: 16 : (type == WPA_IF_P2P_CLIENT || type == WPA_IF_P2P_GROUP ||
9603 : : type == WPA_IF_P2P_GO)) {
9604 : : /* Enforce unique P2P Interface Address */
9605 : : u8 new_addr[ETH_ALEN];
9606 : :
9607 [ - + ]: 19 : if (linux_get_ifhwaddr(drv->global->ioctl_sock, ifname,
9608 : : new_addr) < 0) {
9609 : 0 : nl80211_remove_iface(drv, ifidx);
9610 : 0 : return -1;
9611 : : }
9612 [ - + ]: 19 : if (nl80211_addr_in_use(drv->global, new_addr)) {
9613 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Allocate new address "
9614 : : "for P2P group interface");
9615 [ # # ]: 0 : if (nl80211_p2p_interface_addr(drv, new_addr) < 0) {
9616 : 0 : nl80211_remove_iface(drv, ifidx);
9617 : 0 : return -1;
9618 : : }
9619 [ # # ]: 0 : if (linux_set_ifhwaddr(drv->global->ioctl_sock, ifname,
9620 : : new_addr) < 0) {
9621 : 0 : nl80211_remove_iface(drv, ifidx);
9622 : 0 : return -1;
9623 : : }
9624 : : }
9625 : 19 : os_memcpy(if_addr, new_addr, ETH_ALEN);
9626 : : }
9627 : : #endif /* CONFIG_P2P */
9628 : :
9629 [ + + ]: 36 : if (type == WPA_IF_AP_BSS) {
9630 : 17 : struct i802_bss *new_bss = os_zalloc(sizeof(*new_bss));
9631 [ - + ]: 17 : if (new_bss == NULL) {
9632 [ # # ]: 0 : if (added)
9633 : 0 : nl80211_remove_iface(drv, ifidx);
9634 : 0 : return -1;
9635 : : }
9636 : :
9637 [ - + # # ]: 17 : if (bridge &&
9638 : 0 : i802_check_bridge(drv, new_bss, bridge, ifname) < 0) {
9639 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to add the new "
9640 : : "interface %s to a bridge %s",
9641 : : ifname, bridge);
9642 [ # # ]: 0 : if (added)
9643 : 0 : nl80211_remove_iface(drv, ifidx);
9644 : 0 : os_free(new_bss);
9645 : 0 : return -1;
9646 : : }
9647 : :
9648 [ - + ]: 17 : if (linux_set_iface_flags(drv->global->ioctl_sock, ifname, 1))
9649 : : {
9650 : 0 : nl80211_remove_iface(drv, ifidx);
9651 : 0 : os_free(new_bss);
9652 : 0 : return -1;
9653 : : }
9654 : 17 : os_strlcpy(new_bss->ifname, ifname, IFNAMSIZ);
9655 : 17 : os_memcpy(new_bss->addr, if_addr, ETH_ALEN);
9656 : 17 : new_bss->ifindex = ifidx;
9657 : 17 : new_bss->drv = drv;
9658 : 17 : new_bss->next = drv->first_bss->next;
9659 : 17 : new_bss->freq = drv->first_bss->freq;
9660 : 17 : new_bss->ctx = bss_ctx;
9661 : 17 : new_bss->added_if = added;
9662 : 17 : drv->first_bss->next = new_bss;
9663 [ + - ]: 17 : if (drv_priv)
9664 : 17 : *drv_priv = new_bss;
9665 : 17 : nl80211_init_bss(new_bss);
9666 : :
9667 : : /* Subscribe management frames for this WPA_IF_AP_BSS */
9668 [ - + ]: 17 : if (nl80211_setup_ap(new_bss))
9669 : 0 : return -1;
9670 : : }
9671 : :
9672 [ + - ]: 36 : if (drv->global)
9673 : 36 : drv->global->if_add_ifindex = ifidx;
9674 : :
9675 : 36 : return 0;
9676 : : }
9677 : :
9678 : :
9679 : 36 : static int wpa_driver_nl80211_if_remove(struct i802_bss *bss,
9680 : : enum wpa_driver_if_type type,
9681 : : const char *ifname)
9682 : : {
9683 : 36 : struct wpa_driver_nl80211_data *drv = bss->drv;
9684 : 36 : int ifindex = if_nametoindex(ifname);
9685 : :
9686 : 36 : wpa_printf(MSG_DEBUG, "nl80211: %s(type=%d ifname=%s) ifindex=%d added_if=%d",
9687 : 36 : __func__, type, ifname, ifindex, bss->added_if);
9688 [ + + ][ + - ]: 36 : if (ifindex > 0 && (bss->added_if || bss->ifindex != ifindex))
[ + - ]
9689 : 36 : nl80211_remove_iface(drv, ifindex);
9690 : :
9691 [ + + ]: 36 : if (type != WPA_IF_AP_BSS)
9692 : 19 : return 0;
9693 : :
9694 [ - + ]: 17 : if (bss->added_if_into_bridge) {
9695 [ # # ]: 0 : if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
9696 : 0 : bss->ifname) < 0)
9697 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
9698 : : "interface %s from bridge %s: %s",
9699 : 0 : bss->ifname, bss->brname, strerror(errno));
9700 : : }
9701 [ - + ]: 17 : if (bss->added_bridge) {
9702 [ # # ]: 0 : if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
9703 : 0 : wpa_printf(MSG_INFO, "nl80211: Failed to remove "
9704 : : "bridge %s: %s",
9705 : 0 : bss->brname, strerror(errno));
9706 : : }
9707 : :
9708 [ + - ]: 17 : if (bss != drv->first_bss) {
9709 : : struct i802_bss *tbss;
9710 : :
9711 : 17 : wpa_printf(MSG_DEBUG, "nl80211: Not the first BSS - remove it");
9712 [ + - ]: 20 : for (tbss = drv->first_bss; tbss; tbss = tbss->next) {
9713 [ + + ]: 20 : if (tbss->next == bss) {
9714 : 17 : tbss->next = bss->next;
9715 : : /* Unsubscribe management frames */
9716 : 17 : nl80211_teardown_ap(bss);
9717 : 17 : nl80211_destroy_bss(bss);
9718 : 17 : os_free(bss);
9719 : 17 : bss = NULL;
9720 : 17 : break;
9721 : : }
9722 : : }
9723 [ - + ]: 17 : if (bss)
9724 : 0 : wpa_printf(MSG_INFO, "nl80211: %s - could not find "
9725 : : "BSS %p in the list", __func__, bss);
9726 : : } else {
9727 : 0 : wpa_printf(MSG_DEBUG, "nl80211: First BSS - reassign context");
9728 : 0 : nl80211_teardown_ap(bss);
9729 [ # # ][ # # ]: 0 : if (!bss->added_if && !drv->first_bss->next)
9730 : 0 : wpa_driver_nl80211_del_beacon(drv);
9731 : 0 : nl80211_destroy_bss(bss);
9732 [ # # ]: 0 : if (!bss->added_if)
9733 : 0 : i802_set_iface_flags(bss, 0);
9734 [ # # ]: 0 : if (drv->first_bss->next) {
9735 : 0 : drv->first_bss = drv->first_bss->next;
9736 : 0 : drv->ctx = drv->first_bss->ctx;
9737 : 0 : os_free(bss);
9738 : : } else {
9739 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No second BSS to reassign context to");
9740 : : }
9741 : : }
9742 : :
9743 : 36 : return 0;
9744 : : }
9745 : :
9746 : :
9747 : 2120 : static int cookie_handler(struct nl_msg *msg, void *arg)
9748 : : {
9749 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
9750 : 2120 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
9751 : 2120 : u64 *cookie = arg;
9752 : 2120 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
9753 : : genlmsg_attrlen(gnlh, 0), NULL);
9754 [ + - ]: 2120 : if (tb[NL80211_ATTR_COOKIE])
9755 : 2120 : *cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
9756 : 2120 : return NL_SKIP;
9757 : : }
9758 : :
9759 : :
9760 : 2663 : static int nl80211_send_frame_cmd(struct i802_bss *bss,
9761 : : unsigned int freq, unsigned int wait,
9762 : : const u8 *buf, size_t buf_len,
9763 : : u64 *cookie_out, int no_cck, int no_ack,
9764 : : int offchanok)
9765 : : {
9766 : 2663 : struct wpa_driver_nl80211_data *drv = bss->drv;
9767 : : struct nl_msg *msg;
9768 : : u64 cookie;
9769 : 2663 : int ret = -1;
9770 : :
9771 : 2663 : msg = nlmsg_alloc();
9772 [ - + ]: 2663 : if (!msg)
9773 : 0 : return -1;
9774 : :
9775 : 2663 : wpa_printf(MSG_MSGDUMP, "nl80211: CMD_FRAME freq=%u wait=%u no_cck=%d "
9776 : : "no_ack=%d offchanok=%d",
9777 : : freq, wait, no_cck, no_ack, offchanok);
9778 : 2663 : wpa_hexdump(MSG_MSGDUMP, "CMD_FRAME", buf, buf_len);
9779 : 2663 : nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME);
9780 : :
9781 [ - + ]: 2663 : if (nl80211_set_iface_id(msg, bss) < 0)
9782 : 0 : goto nla_put_failure;
9783 [ + + ]: 2663 : if (freq)
9784 [ + - ]: 2641 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
9785 [ + + ]: 2663 : if (wait)
9786 [ + - ]: 254 : NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait);
9787 [ + + ][ + - ]: 2663 : if (offchanok && (drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX))
9788 [ + - ]: 641 : NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK);
9789 [ + + ]: 2663 : if (no_cck)
9790 [ + - ]: 472 : NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
9791 [ + + ]: 2663 : if (no_ack)
9792 [ + - ]: 887 : NLA_PUT_FLAG(msg, NL80211_ATTR_DONT_WAIT_FOR_ACK);
9793 : :
9794 [ + - ]: 2663 : NLA_PUT(msg, NL80211_ATTR_FRAME, buf_len, buf);
9795 : :
9796 : 2663 : cookie = 0;
9797 : 2663 : ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
9798 : 2663 : msg = NULL;
9799 [ + + ]: 2663 : if (ret) {
9800 : 243 : wpa_printf(MSG_DEBUG, "nl80211: Frame command failed: ret=%d "
9801 : : "(%s) (freq=%u wait=%u)", ret, strerror(-ret),
9802 : : freq, wait);
9803 : 243 : goto nla_put_failure;
9804 : : }
9805 [ + + ]: 2420 : wpa_printf(MSG_MSGDUMP, "nl80211: Frame TX command accepted%s; "
9806 : : "cookie 0x%llx", no_ack ? " (no ACK)" : "",
9807 : : (long long unsigned int) cookie);
9808 : :
9809 [ + + ]: 2420 : if (cookie_out)
9810 [ + + ]: 2162 : *cookie_out = no_ack ? (u64) -1 : cookie;
9811 : :
9812 : : nla_put_failure:
9813 : 2663 : nlmsg_free(msg);
9814 : 2663 : return ret;
9815 : : }
9816 : :
9817 : :
9818 : 383 : static int wpa_driver_nl80211_send_action(struct i802_bss *bss,
9819 : : unsigned int freq,
9820 : : unsigned int wait_time,
9821 : : const u8 *dst, const u8 *src,
9822 : : const u8 *bssid,
9823 : : const u8 *data, size_t data_len,
9824 : : int no_cck)
9825 : : {
9826 : 383 : struct wpa_driver_nl80211_data *drv = bss->drv;
9827 : 383 : int ret = -1;
9828 : : u8 *buf;
9829 : : struct ieee80211_hdr *hdr;
9830 : :
9831 : 383 : wpa_printf(MSG_DEBUG, "nl80211: Send Action frame (ifindex=%d, "
9832 : : "freq=%u MHz wait=%d ms no_cck=%d)",
9833 : : drv->ifindex, freq, wait_time, no_cck);
9834 : :
9835 : 383 : buf = os_zalloc(24 + data_len);
9836 [ - + ]: 383 : if (buf == NULL)
9837 : 0 : return ret;
9838 : 383 : os_memcpy(buf + 24, data, data_len);
9839 : 383 : hdr = (struct ieee80211_hdr *) buf;
9840 : 383 : hdr->frame_control =
9841 : : IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_ACTION);
9842 : 383 : os_memcpy(hdr->addr1, dst, ETH_ALEN);
9843 : 383 : os_memcpy(hdr->addr2, src, ETH_ALEN);
9844 : 383 : os_memcpy(hdr->addr3, bssid, ETH_ALEN);
9845 : :
9846 [ + + ][ + - ]: 383 : if (is_ap_interface(drv->nlmode) &&
9847 [ + + ]: 100 : (!(drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) ||
9848 [ + - ][ + - ]: 4 : (int) freq == bss->freq || drv->device_ap_sme ||
9849 : 4 : !drv->use_monitor))
9850 : 100 : ret = wpa_driver_nl80211_send_mlme(bss, buf, 24 + data_len,
9851 : : 0, freq, no_cck, 1,
9852 : : wait_time);
9853 : : else
9854 : 283 : ret = nl80211_send_frame_cmd(bss, freq, wait_time, buf,
9855 : : 24 + data_len,
9856 : : &drv->send_action_cookie,
9857 : : no_cck, 0, 1);
9858 : :
9859 : 383 : os_free(buf);
9860 : 383 : return ret;
9861 : : }
9862 : :
9863 : :
9864 : 133 : static void wpa_driver_nl80211_send_action_cancel_wait(void *priv)
9865 : : {
9866 : 133 : struct i802_bss *bss = priv;
9867 : 133 : struct wpa_driver_nl80211_data *drv = bss->drv;
9868 : : struct nl_msg *msg;
9869 : : int ret;
9870 : :
9871 : 133 : msg = nlmsg_alloc();
9872 [ - + ]: 133 : if (!msg)
9873 : 133 : return;
9874 : :
9875 : 133 : wpa_printf(MSG_DEBUG, "nl80211: Cancel TX frame wait: cookie=0x%llx",
9876 : 133 : (long long unsigned int) drv->send_action_cookie);
9877 : 133 : nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME_WAIT_CANCEL);
9878 : :
9879 [ - + ]: 133 : if (nl80211_set_iface_id(msg, bss) < 0)
9880 : 0 : goto nla_put_failure;
9881 [ + - ]: 133 : NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->send_action_cookie);
9882 : :
9883 : 133 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9884 : 133 : msg = NULL;
9885 [ + + ]: 133 : if (ret)
9886 : 9 : wpa_printf(MSG_DEBUG, "nl80211: wait cancel failed: ret=%d "
9887 : : "(%s)", ret, strerror(-ret));
9888 : :
9889 : : nla_put_failure:
9890 : 133 : nlmsg_free(msg);
9891 : : }
9892 : :
9893 : :
9894 : 584 : static int wpa_driver_nl80211_remain_on_channel(void *priv, unsigned int freq,
9895 : : unsigned int duration)
9896 : : {
9897 : 584 : struct i802_bss *bss = priv;
9898 : 584 : struct wpa_driver_nl80211_data *drv = bss->drv;
9899 : : struct nl_msg *msg;
9900 : : int ret;
9901 : : u64 cookie;
9902 : :
9903 : 584 : msg = nlmsg_alloc();
9904 [ - + ]: 584 : if (!msg)
9905 : 0 : return -1;
9906 : :
9907 : 584 : nl80211_cmd(drv, msg, 0, NL80211_CMD_REMAIN_ON_CHANNEL);
9908 : :
9909 [ - + ]: 584 : if (nl80211_set_iface_id(msg, bss) < 0)
9910 : 0 : goto nla_put_failure;
9911 : :
9912 [ + - ]: 584 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
9913 [ + - ]: 584 : NLA_PUT_U32(msg, NL80211_ATTR_DURATION, duration);
9914 : :
9915 : 584 : cookie = 0;
9916 : 584 : ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
9917 : 584 : msg = NULL;
9918 [ + - ]: 584 : if (ret == 0) {
9919 : 584 : wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel cookie "
9920 : : "0x%llx for freq=%u MHz duration=%u",
9921 : : (long long unsigned int) cookie, freq, duration);
9922 : 584 : drv->remain_on_chan_cookie = cookie;
9923 : 584 : drv->pending_remain_on_chan = 1;
9924 : 584 : return 0;
9925 : : }
9926 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to request remain-on-channel "
9927 : : "(freq=%d duration=%u): %d (%s)",
9928 : : freq, duration, ret, strerror(-ret));
9929 : : nla_put_failure:
9930 : 0 : nlmsg_free(msg);
9931 : 584 : return -1;
9932 : : }
9933 : :
9934 : :
9935 : 157 : static int wpa_driver_nl80211_cancel_remain_on_channel(void *priv)
9936 : : {
9937 : 157 : struct i802_bss *bss = priv;
9938 : 157 : struct wpa_driver_nl80211_data *drv = bss->drv;
9939 : : struct nl_msg *msg;
9940 : : int ret;
9941 : :
9942 [ - + ]: 157 : if (!drv->pending_remain_on_chan) {
9943 : 0 : wpa_printf(MSG_DEBUG, "nl80211: No pending remain-on-channel "
9944 : : "to cancel");
9945 : 0 : return -1;
9946 : : }
9947 : :
9948 : 157 : wpa_printf(MSG_DEBUG, "nl80211: Cancel remain-on-channel with cookie "
9949 : : "0x%llx",
9950 : 157 : (long long unsigned int) drv->remain_on_chan_cookie);
9951 : :
9952 : 157 : msg = nlmsg_alloc();
9953 [ - + ]: 157 : if (!msg)
9954 : 0 : return -1;
9955 : :
9956 : 157 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL);
9957 : :
9958 [ - + ]: 157 : if (nl80211_set_iface_id(msg, bss) < 0)
9959 : 0 : goto nla_put_failure;
9960 : :
9961 [ + - ]: 157 : NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->remain_on_chan_cookie);
9962 : :
9963 : 157 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
9964 : 157 : msg = NULL;
9965 [ + + ]: 157 : if (ret == 0)
9966 : 156 : return 0;
9967 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Failed to cancel remain-on-channel: "
9968 : : "%d (%s)", ret, strerror(-ret));
9969 : : nla_put_failure:
9970 : 1 : nlmsg_free(msg);
9971 : 157 : return -1;
9972 : : }
9973 : :
9974 : :
9975 : 2783 : static int wpa_driver_nl80211_probe_req_report(struct i802_bss *bss, int report)
9976 : : {
9977 : 2783 : struct wpa_driver_nl80211_data *drv = bss->drv;
9978 : :
9979 [ + + ]: 2783 : if (!report) {
9980 [ + + ]: 2199 : if (bss->nl_preq && drv->device_ap_sme &&
[ - + # # ]
9981 : 0 : is_ap_interface(drv->nlmode)) {
9982 : : /*
9983 : : * Do not disable Probe Request reporting that was
9984 : : * enabled in nl80211_setup_ap().
9985 : : */
9986 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Skip disabling of "
9987 : : "Probe Request reporting nl_preq=%p while "
9988 : : "in AP mode", bss->nl_preq);
9989 [ + + ]: 2199 : } else if (bss->nl_preq) {
9990 : 573 : wpa_printf(MSG_DEBUG, "nl80211: Disable Probe Request "
9991 : : "reporting nl_preq=%p", bss->nl_preq);
9992 : 573 : nl80211_destroy_eloop_handle(&bss->nl_preq);
9993 : : }
9994 : 2199 : return 0;
9995 : : }
9996 : :
9997 [ + + ]: 584 : if (bss->nl_preq) {
9998 : 11 : wpa_printf(MSG_DEBUG, "nl80211: Probe Request reporting "
9999 : : "already on! nl_preq=%p", bss->nl_preq);
10000 : 11 : return 0;
10001 : : }
10002 : :
10003 : 573 : bss->nl_preq = nl_create_handle(drv->global->nl_cb, "preq");
10004 [ - + ]: 573 : if (bss->nl_preq == NULL)
10005 : 0 : return -1;
10006 : 573 : wpa_printf(MSG_DEBUG, "nl80211: Enable Probe Request "
10007 : : "reporting nl_preq=%p", bss->nl_preq);
10008 : :
10009 [ - + ]: 573 : if (nl80211_register_frame(bss, bss->nl_preq,
10010 : : (WLAN_FC_TYPE_MGMT << 2) |
10011 : : (WLAN_FC_STYPE_PROBE_REQ << 4),
10012 : : NULL, 0) < 0)
10013 : 0 : goto out_err;
10014 : :
10015 : 573 : nl80211_register_eloop_read(&bss->nl_preq,
10016 : : wpa_driver_nl80211_event_receive,
10017 : 573 : bss->nl_cb);
10018 : :
10019 : 573 : return 0;
10020 : :
10021 : : out_err:
10022 : 0 : nl_destroy_handles(&bss->nl_preq);
10023 : 2783 : return -1;
10024 : : }
10025 : :
10026 : :
10027 : 250 : static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
10028 : : int ifindex, int disabled)
10029 : : {
10030 : : struct nl_msg *msg;
10031 : : struct nlattr *bands, *band;
10032 : : int ret;
10033 : :
10034 : 250 : msg = nlmsg_alloc();
10035 [ - + ]: 250 : if (!msg)
10036 : 0 : return -1;
10037 : :
10038 : 250 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_TX_BITRATE_MASK);
10039 [ + - ]: 250 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
10040 : :
10041 : 250 : bands = nla_nest_start(msg, NL80211_ATTR_TX_RATES);
10042 [ - + ]: 250 : if (!bands)
10043 : 0 : goto nla_put_failure;
10044 : :
10045 : : /*
10046 : : * Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
10047 : : * else apart from 6, 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS
10048 : : * rates. All 5 GHz rates are left enabled.
10049 : : */
10050 : 250 : band = nla_nest_start(msg, NL80211_BAND_2GHZ);
10051 [ - + ]: 250 : if (!band)
10052 : 0 : goto nla_put_failure;
10053 [ + + ]: 250 : if (disabled) {
10054 [ + - ]: 144 : NLA_PUT(msg, NL80211_TXRATE_LEGACY, 8,
10055 : : "\x0c\x12\x18\x24\x30\x48\x60\x6c");
10056 : : }
10057 : 250 : nla_nest_end(msg, band);
10058 : :
10059 : 250 : nla_nest_end(msg, bands);
10060 : :
10061 : 250 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10062 : 250 : msg = NULL;
10063 [ + + ]: 250 : if (ret) {
10064 : 38 : wpa_printf(MSG_DEBUG, "nl80211: Set TX rates failed: ret=%d "
10065 : : "(%s)", ret, strerror(-ret));
10066 : : } else
10067 : 212 : drv->disabled_11b_rates = disabled;
10068 : :
10069 : 250 : return ret;
10070 : :
10071 : : nla_put_failure:
10072 : 0 : nlmsg_free(msg);
10073 : 250 : return -1;
10074 : : }
10075 : :
10076 : :
10077 : 55 : static int wpa_driver_nl80211_deinit_ap(void *priv)
10078 : : {
10079 : 55 : struct i802_bss *bss = priv;
10080 : 55 : struct wpa_driver_nl80211_data *drv = bss->drv;
10081 [ - + ]: 55 : if (!is_ap_interface(drv->nlmode))
10082 : 0 : return -1;
10083 : 55 : wpa_driver_nl80211_del_beacon(drv);
10084 : :
10085 : : /*
10086 : : * If the P2P GO interface was dynamically added, then it is
10087 : : * possible that the interface change to station is not possible.
10088 : : */
10089 [ + + ][ + - ]: 55 : if (drv->nlmode == NL80211_IFTYPE_P2P_GO && bss->if_dynamic)
10090 : 10 : return 0;
10091 : :
10092 : 55 : return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
10093 : : }
10094 : :
10095 : :
10096 : 0 : static int wpa_driver_nl80211_stop_ap(void *priv)
10097 : : {
10098 : 0 : struct i802_bss *bss = priv;
10099 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10100 [ # # ]: 0 : if (!is_ap_interface(drv->nlmode))
10101 : 0 : return -1;
10102 : 0 : wpa_driver_nl80211_del_beacon(drv);
10103 : 0 : bss->beacon_set = 0;
10104 : 0 : return 0;
10105 : : }
10106 : :
10107 : :
10108 : 50 : static int wpa_driver_nl80211_deinit_p2p_cli(void *priv)
10109 : : {
10110 : 50 : struct i802_bss *bss = priv;
10111 : 50 : struct wpa_driver_nl80211_data *drv = bss->drv;
10112 [ - + ]: 50 : if (drv->nlmode != NL80211_IFTYPE_P2P_CLIENT)
10113 : 0 : return -1;
10114 : :
10115 : : /*
10116 : : * If the P2P Client interface was dynamically added, then it is
10117 : : * possible that the interface change to station is not possible.
10118 : : */
10119 [ - + ]: 50 : if (bss->if_dynamic)
10120 : 0 : return 0;
10121 : :
10122 : 50 : return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
10123 : : }
10124 : :
10125 : :
10126 : 0 : static void wpa_driver_nl80211_resume(void *priv)
10127 : : {
10128 : 0 : struct i802_bss *bss = priv;
10129 : :
10130 [ # # ]: 0 : if (i802_set_iface_flags(bss, 1))
10131 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface up on resume event");
10132 : 0 : }
10133 : :
10134 : :
10135 : 5 : static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
10136 : : const u8 *ies, size_t ies_len)
10137 : : {
10138 : 5 : struct i802_bss *bss = priv;
10139 : 5 : struct wpa_driver_nl80211_data *drv = bss->drv;
10140 : : int ret;
10141 : : u8 *data, *pos;
10142 : : size_t data_len;
10143 : 5 : const u8 *own_addr = bss->addr;
10144 : :
10145 [ - + ]: 5 : if (action != 1) {
10146 : 0 : wpa_printf(MSG_ERROR, "nl80211: Unsupported send_ft_action "
10147 : : "action %d", action);
10148 : 0 : return -1;
10149 : : }
10150 : :
10151 : : /*
10152 : : * Action frame payload:
10153 : : * Category[1] = 6 (Fast BSS Transition)
10154 : : * Action[1] = 1 (Fast BSS Transition Request)
10155 : : * STA Address
10156 : : * Target AP Address
10157 : : * FT IEs
10158 : : */
10159 : :
10160 : 5 : data_len = 2 + 2 * ETH_ALEN + ies_len;
10161 : 5 : data = os_malloc(data_len);
10162 [ - + ]: 5 : if (data == NULL)
10163 : 0 : return -1;
10164 : 5 : pos = data;
10165 : 5 : *pos++ = 0x06; /* FT Action category */
10166 : 5 : *pos++ = action;
10167 : 5 : os_memcpy(pos, own_addr, ETH_ALEN);
10168 : 5 : pos += ETH_ALEN;
10169 : 5 : os_memcpy(pos, target_ap, ETH_ALEN);
10170 : 5 : pos += ETH_ALEN;
10171 : 5 : os_memcpy(pos, ies, ies_len);
10172 : :
10173 : 5 : ret = wpa_driver_nl80211_send_action(bss, drv->assoc_freq, 0,
10174 : 5 : drv->bssid, own_addr, drv->bssid,
10175 : : data, data_len, 0);
10176 : 5 : os_free(data);
10177 : :
10178 : 5 : return ret;
10179 : : }
10180 : :
10181 : :
10182 : 0 : static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis)
10183 : : {
10184 : 0 : struct i802_bss *bss = priv;
10185 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10186 : : struct nl_msg *msg;
10187 : : struct nlattr *cqm;
10188 : 0 : int ret = -1;
10189 : :
10190 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Signal monitor threshold=%d "
10191 : : "hysteresis=%d", threshold, hysteresis);
10192 : :
10193 : 0 : msg = nlmsg_alloc();
10194 [ # # ]: 0 : if (!msg)
10195 : 0 : return -1;
10196 : :
10197 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_CQM);
10198 : :
10199 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10200 : :
10201 : 0 : cqm = nla_nest_start(msg, NL80211_ATTR_CQM);
10202 [ # # ]: 0 : if (cqm == NULL)
10203 : 0 : goto nla_put_failure;
10204 : :
10205 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_THOLD, threshold);
10206 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
10207 : 0 : nla_nest_end(msg, cqm);
10208 : :
10209 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10210 : 0 : msg = NULL;
10211 : :
10212 : : nla_put_failure:
10213 : 0 : nlmsg_free(msg);
10214 : 0 : return ret;
10215 : : }
10216 : :
10217 : :
10218 : 0 : static int get_channel_width(struct nl_msg *msg, void *arg)
10219 : : {
10220 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
10221 : 0 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
10222 : 0 : struct wpa_signal_info *sig_change = arg;
10223 : :
10224 : 0 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
10225 : : genlmsg_attrlen(gnlh, 0), NULL);
10226 : :
10227 : 0 : sig_change->center_frq1 = -1;
10228 : 0 : sig_change->center_frq2 = -1;
10229 : 0 : sig_change->chanwidth = CHAN_WIDTH_UNKNOWN;
10230 : :
10231 [ # # ]: 0 : if (tb[NL80211_ATTR_CHANNEL_WIDTH]) {
10232 : 0 : sig_change->chanwidth = convert2width(
10233 : 0 : nla_get_u32(tb[NL80211_ATTR_CHANNEL_WIDTH]));
10234 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ1])
10235 : 0 : sig_change->center_frq1 =
10236 : 0 : nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
10237 [ # # ]: 0 : if (tb[NL80211_ATTR_CENTER_FREQ2])
10238 : 0 : sig_change->center_frq2 =
10239 : 0 : nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
10240 : : }
10241 : :
10242 : 0 : return NL_SKIP;
10243 : : }
10244 : :
10245 : :
10246 : 0 : static int nl80211_get_channel_width(struct wpa_driver_nl80211_data *drv,
10247 : : struct wpa_signal_info *sig)
10248 : : {
10249 : : struct nl_msg *msg;
10250 : :
10251 : 0 : msg = nlmsg_alloc();
10252 [ # # ]: 0 : if (!msg)
10253 : 0 : return -ENOMEM;
10254 : :
10255 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_INTERFACE);
10256 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10257 : :
10258 : 0 : return send_and_recv_msgs(drv, msg, get_channel_width, sig);
10259 : :
10260 : : nla_put_failure:
10261 : 0 : nlmsg_free(msg);
10262 : 0 : return -ENOBUFS;
10263 : : }
10264 : :
10265 : :
10266 : 0 : static int nl80211_signal_poll(void *priv, struct wpa_signal_info *si)
10267 : : {
10268 : 0 : struct i802_bss *bss = priv;
10269 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10270 : : int res;
10271 : :
10272 : 0 : os_memset(si, 0, sizeof(*si));
10273 : 0 : res = nl80211_get_link_signal(drv, si);
10274 [ # # ]: 0 : if (res != 0)
10275 : 0 : return res;
10276 : :
10277 : 0 : res = nl80211_get_channel_width(drv, si);
10278 [ # # ]: 0 : if (res != 0)
10279 : 0 : return res;
10280 : :
10281 : 0 : return nl80211_get_link_noise(drv, si);
10282 : : }
10283 : :
10284 : :
10285 : 6 : static int wpa_driver_nl80211_shared_freq(void *priv)
10286 : : {
10287 : 6 : struct i802_bss *bss = priv;
10288 : 6 : struct wpa_driver_nl80211_data *drv = bss->drv;
10289 : : struct wpa_driver_nl80211_data *driver;
10290 : 6 : int freq = 0;
10291 : :
10292 : : /*
10293 : : * If the same PHY is in connected state with some other interface,
10294 : : * then retrieve the assoc freq.
10295 : : */
10296 : 6 : wpa_printf(MSG_DEBUG, "nl80211: Get shared freq for PHY %s",
10297 : 6 : drv->phyname);
10298 : :
10299 [ + + ]: 12 : dl_list_for_each(driver, &drv->global->interfaces,
10300 : : struct wpa_driver_nl80211_data, list) {
10301 [ - + ][ # # ]: 6 : if (drv == driver ||
10302 [ # # ]: 0 : os_strcmp(drv->phyname, driver->phyname) != 0 ||
10303 : 0 : !driver->associated)
10304 : 6 : continue;
10305 : :
10306 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Found a match for PHY %s - %s "
10307 : : MACSTR,
10308 : 0 : driver->phyname, driver->first_bss->ifname,
10309 : 0 : MAC2STR(driver->first_bss->addr));
10310 [ # # ]: 0 : if (is_ap_interface(driver->nlmode))
10311 : 0 : freq = driver->first_bss->freq;
10312 : : else
10313 : 0 : freq = nl80211_get_assoc_freq(driver);
10314 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Shared freq for PHY %s: %d",
10315 : 0 : drv->phyname, freq);
10316 : : }
10317 : :
10318 [ + - ]: 6 : if (!freq)
10319 : 6 : wpa_printf(MSG_DEBUG, "nl80211: No shared interface for "
10320 : 6 : "PHY (%s) in associated state", drv->phyname);
10321 : :
10322 : 6 : return freq;
10323 : : }
10324 : :
10325 : :
10326 : 12 : static int nl80211_send_frame(void *priv, const u8 *data, size_t data_len,
10327 : : int encrypt)
10328 : : {
10329 : 12 : struct i802_bss *bss = priv;
10330 : 12 : return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt, 0,
10331 : : 0, 0, 0, 0);
10332 : : }
10333 : :
10334 : :
10335 : 22 : static int nl80211_set_param(void *priv, const char *param)
10336 : : {
10337 : 22 : wpa_printf(MSG_DEBUG, "nl80211: driver param='%s'", param);
10338 [ + - ]: 22 : if (param == NULL)
10339 : 22 : return 0;
10340 : :
10341 : : #ifdef CONFIG_P2P
10342 [ # # ]: 0 : if (os_strstr(param, "use_p2p_group_interface=1")) {
10343 : 0 : struct i802_bss *bss = priv;
10344 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10345 : :
10346 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
10347 : : "interface");
10348 : 0 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
10349 : 0 : drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
10350 : : }
10351 : :
10352 [ # # ]: 0 : if (os_strstr(param, "p2p_device=1")) {
10353 : 0 : struct i802_bss *bss = priv;
10354 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10355 : 0 : drv->allow_p2p_device = 1;
10356 : : }
10357 : : #endif /* CONFIG_P2P */
10358 : :
10359 : 22 : return 0;
10360 : : }
10361 : :
10362 : :
10363 : 4 : static void * nl80211_global_init(void)
10364 : : {
10365 : : struct nl80211_global *global;
10366 : : struct netlink_config *cfg;
10367 : :
10368 : 4 : global = os_zalloc(sizeof(*global));
10369 [ - + ]: 4 : if (global == NULL)
10370 : 0 : return NULL;
10371 : 4 : global->ioctl_sock = -1;
10372 : 4 : dl_list_init(&global->interfaces);
10373 : 4 : global->if_add_ifindex = -1;
10374 : :
10375 : 4 : cfg = os_zalloc(sizeof(*cfg));
10376 [ - + ]: 4 : if (cfg == NULL)
10377 : 0 : goto err;
10378 : :
10379 : 4 : cfg->ctx = global;
10380 : 4 : cfg->newlink_cb = wpa_driver_nl80211_event_rtm_newlink;
10381 : 4 : cfg->dellink_cb = wpa_driver_nl80211_event_rtm_dellink;
10382 : 4 : global->netlink = netlink_init(cfg);
10383 [ - + ]: 4 : if (global->netlink == NULL) {
10384 : 0 : os_free(cfg);
10385 : 0 : goto err;
10386 : : }
10387 : :
10388 [ - + ]: 4 : if (wpa_driver_nl80211_init_nl_global(global) < 0)
10389 : 0 : goto err;
10390 : :
10391 : 4 : global->ioctl_sock = socket(PF_INET, SOCK_DGRAM, 0);
10392 [ - + ]: 4 : if (global->ioctl_sock < 0) {
10393 : 0 : wpa_printf(MSG_ERROR, "nl80211: socket(PF_INET,SOCK_DGRAM) failed: %s",
10394 : 0 : strerror(errno));
10395 : 0 : goto err;
10396 : : }
10397 : :
10398 : 4 : return global;
10399 : :
10400 : : err:
10401 : 0 : nl80211_global_deinit(global);
10402 : 4 : return NULL;
10403 : : }
10404 : :
10405 : :
10406 : 4 : static void nl80211_global_deinit(void *priv)
10407 : : {
10408 : 4 : struct nl80211_global *global = priv;
10409 [ - + ]: 4 : if (global == NULL)
10410 : 4 : return;
10411 [ - + ]: 4 : if (!dl_list_empty(&global->interfaces)) {
10412 : 0 : wpa_printf(MSG_ERROR, "nl80211: %u interface(s) remain at "
10413 : : "nl80211_global_deinit",
10414 : : dl_list_len(&global->interfaces));
10415 : : }
10416 : :
10417 [ + - ]: 4 : if (global->netlink)
10418 : 4 : netlink_deinit(global->netlink);
10419 : :
10420 : 4 : nl_destroy_handles(&global->nl);
10421 : :
10422 [ + - ]: 4 : if (global->nl_event)
10423 : 4 : nl80211_destroy_eloop_handle(&global->nl_event);
10424 : :
10425 : 4 : nl_cb_put(global->nl_cb);
10426 : :
10427 [ + - ]: 4 : if (global->ioctl_sock >= 0)
10428 : 4 : close(global->ioctl_sock);
10429 : :
10430 : 4 : os_free(global);
10431 : : }
10432 : :
10433 : :
10434 : 238 : static const char * nl80211_get_radio_name(void *priv)
10435 : : {
10436 : 238 : struct i802_bss *bss = priv;
10437 : 238 : struct wpa_driver_nl80211_data *drv = bss->drv;
10438 : 238 : return drv->phyname;
10439 : : }
10440 : :
10441 : :
10442 : 158 : static int nl80211_pmkid(struct i802_bss *bss, int cmd, const u8 *bssid,
10443 : : const u8 *pmkid)
10444 : : {
10445 : : struct nl_msg *msg;
10446 : :
10447 : 158 : msg = nlmsg_alloc();
10448 [ - + ]: 158 : if (!msg)
10449 : 0 : return -ENOMEM;
10450 : :
10451 : 158 : nl80211_cmd(bss->drv, msg, 0, cmd);
10452 : :
10453 [ + - ]: 158 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
10454 [ + + ]: 158 : if (pmkid)
10455 [ + - ]: 136 : NLA_PUT(msg, NL80211_ATTR_PMKID, 16, pmkid);
10456 [ + + ]: 158 : if (bssid)
10457 [ + - ]: 136 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
10458 : :
10459 : 158 : return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
10460 : : nla_put_failure:
10461 : 0 : nlmsg_free(msg);
10462 : 158 : return -ENOBUFS;
10463 : : }
10464 : :
10465 : :
10466 : 68 : static int nl80211_add_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
10467 : : {
10468 : 68 : struct i802_bss *bss = priv;
10469 : 68 : wpa_printf(MSG_DEBUG, "nl80211: Add PMKID for " MACSTR, MAC2STR(bssid));
10470 : 68 : return nl80211_pmkid(bss, NL80211_CMD_SET_PMKSA, bssid, pmkid);
10471 : : }
10472 : :
10473 : :
10474 : 68 : static int nl80211_remove_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
10475 : : {
10476 : 68 : struct i802_bss *bss = priv;
10477 : 68 : wpa_printf(MSG_DEBUG, "nl80211: Delete PMKID for " MACSTR,
10478 : 408 : MAC2STR(bssid));
10479 : 68 : return nl80211_pmkid(bss, NL80211_CMD_DEL_PMKSA, bssid, pmkid);
10480 : : }
10481 : :
10482 : :
10483 : 22 : static int nl80211_flush_pmkid(void *priv)
10484 : : {
10485 : 22 : struct i802_bss *bss = priv;
10486 : 22 : wpa_printf(MSG_DEBUG, "nl80211: Flush PMKIDs");
10487 : 22 : return nl80211_pmkid(bss, NL80211_CMD_FLUSH_PMKSA, NULL, NULL);
10488 : : }
10489 : :
10490 : :
10491 : 15 : static void clean_survey_results(struct survey_results *survey_results)
10492 : : {
10493 : : struct freq_survey *survey, *tmp;
10494 : :
10495 [ + - ]: 15 : if (dl_list_empty(&survey_results->survey_list))
10496 : 15 : return;
10497 : :
10498 [ # # ]: 0 : dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
10499 : : struct freq_survey, list) {
10500 : 0 : dl_list_del(&survey->list);
10501 : 0 : os_free(survey);
10502 : : }
10503 : : }
10504 : :
10505 : :
10506 : 15 : static void add_survey(struct nlattr **sinfo, u32 ifidx,
10507 : : struct dl_list *survey_list)
10508 : : {
10509 : : struct freq_survey *survey;
10510 : :
10511 : 15 : survey = os_zalloc(sizeof(struct freq_survey));
10512 [ - + ]: 15 : if (!survey)
10513 : 15 : return;
10514 : :
10515 : 15 : survey->ifidx = ifidx;
10516 : 15 : survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10517 : 15 : survey->filled = 0;
10518 : :
10519 [ + - ]: 15 : if (sinfo[NL80211_SURVEY_INFO_NOISE]) {
10520 : 15 : survey->nf = (int8_t)
10521 : 15 : nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
10522 : 15 : survey->filled |= SURVEY_HAS_NF;
10523 : : }
10524 : :
10525 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]) {
10526 : 0 : survey->channel_time =
10527 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]);
10528 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME;
10529 : : }
10530 : :
10531 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]) {
10532 : 0 : survey->channel_time_busy =
10533 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]);
10534 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
10535 : : }
10536 : :
10537 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]) {
10538 : 0 : survey->channel_time_rx =
10539 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]);
10540 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
10541 : : }
10542 : :
10543 [ - + ]: 15 : if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]) {
10544 : 0 : survey->channel_time_tx =
10545 : 0 : nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]);
10546 : 0 : survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
10547 : : }
10548 : :
10549 : 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)",
10550 : : survey->freq,
10551 : 15 : survey->nf,
10552 : : (unsigned long int) survey->channel_time,
10553 : : (unsigned long int) survey->channel_time_busy,
10554 : : (unsigned long int) survey->channel_time_tx,
10555 : : (unsigned long int) survey->channel_time_rx,
10556 : : survey->filled);
10557 : :
10558 : 15 : dl_list_add_tail(survey_list, &survey->list);
10559 : : }
10560 : :
10561 : :
10562 : 15 : static int check_survey_ok(struct nlattr **sinfo, u32 surveyed_freq,
10563 : : unsigned int freq_filter)
10564 : : {
10565 [ + - ]: 15 : if (!freq_filter)
10566 : 15 : return 1;
10567 : :
10568 : 15 : return freq_filter == surveyed_freq;
10569 : : }
10570 : :
10571 : :
10572 : 15 : static int survey_handler(struct nl_msg *msg, void *arg)
10573 : : {
10574 : : struct nlattr *tb[NL80211_ATTR_MAX + 1];
10575 : 15 : struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
10576 : : struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
10577 : : struct survey_results *survey_results;
10578 : 15 : u32 surveyed_freq = 0;
10579 : : u32 ifidx;
10580 : :
10581 : : static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
10582 : : [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
10583 : : [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
10584 : : };
10585 : :
10586 : 15 : survey_results = (struct survey_results *) arg;
10587 : :
10588 : 15 : nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
10589 : : genlmsg_attrlen(gnlh, 0), NULL);
10590 : :
10591 : 15 : ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
10592 : :
10593 [ - + ]: 15 : if (!tb[NL80211_ATTR_SURVEY_INFO])
10594 : 0 : return NL_SKIP;
10595 : :
10596 [ - + ]: 15 : if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
10597 : : tb[NL80211_ATTR_SURVEY_INFO],
10598 : : survey_policy))
10599 : 0 : return NL_SKIP;
10600 : :
10601 [ - + ]: 15 : if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY]) {
10602 : 0 : wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
10603 : 0 : return NL_SKIP;
10604 : : }
10605 : :
10606 : 15 : surveyed_freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
10607 : :
10608 [ - + ]: 15 : if (!check_survey_ok(sinfo, surveyed_freq,
10609 : : survey_results->freq_filter))
10610 : 0 : return NL_SKIP;
10611 : :
10612 [ - + ][ # # ]: 15 : if (survey_results->freq_filter &&
10613 : 0 : survey_results->freq_filter != surveyed_freq) {
10614 : 0 : wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
10615 : : surveyed_freq);
10616 : 0 : return NL_SKIP;
10617 : : }
10618 : :
10619 : 15 : add_survey(sinfo, ifidx, &survey_results->survey_list);
10620 : :
10621 : 15 : return NL_SKIP;
10622 : : }
10623 : :
10624 : :
10625 : 15 : static int wpa_driver_nl80211_get_survey(void *priv, unsigned int freq)
10626 : : {
10627 : 15 : struct i802_bss *bss = priv;
10628 : 15 : struct wpa_driver_nl80211_data *drv = bss->drv;
10629 : : struct nl_msg *msg;
10630 : 15 : int err = -ENOBUFS;
10631 : : union wpa_event_data data;
10632 : : struct survey_results *survey_results;
10633 : :
10634 : 15 : os_memset(&data, 0, sizeof(data));
10635 : 15 : survey_results = &data.survey_results;
10636 : :
10637 : 15 : dl_list_init(&survey_results->survey_list);
10638 : :
10639 : 15 : msg = nlmsg_alloc();
10640 [ - + ]: 15 : if (!msg)
10641 : 0 : goto nla_put_failure;
10642 : :
10643 : 15 : nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
10644 : :
10645 [ + - ]: 15 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10646 : :
10647 [ - + ]: 15 : if (freq)
10648 : 0 : data.survey_results.freq_filter = freq;
10649 : :
10650 : : do {
10651 : 15 : wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
10652 : 15 : err = send_and_recv_msgs(drv, msg, survey_handler,
10653 : : survey_results);
10654 [ - + ]: 15 : } while (err > 0);
10655 : :
10656 [ - + ]: 15 : if (err) {
10657 : 0 : wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");
10658 : 0 : goto out_clean;
10659 : : }
10660 : :
10661 : 15 : wpa_supplicant_event(drv->ctx, EVENT_SURVEY, &data);
10662 : :
10663 : : out_clean:
10664 : 15 : clean_survey_results(survey_results);
10665 : : nla_put_failure:
10666 : 15 : return err;
10667 : : }
10668 : :
10669 : :
10670 : 217 : static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck,
10671 : : const u8 *replay_ctr)
10672 : : {
10673 : 217 : struct i802_bss *bss = priv;
10674 : 217 : struct wpa_driver_nl80211_data *drv = bss->drv;
10675 : : struct nlattr *replay_nested;
10676 : : struct nl_msg *msg;
10677 : :
10678 : 217 : msg = nlmsg_alloc();
10679 [ - + ]: 217 : if (!msg)
10680 : 0 : return;
10681 : :
10682 : 217 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
10683 : :
10684 [ + - ]: 217 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10685 : :
10686 : 217 : replay_nested = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
10687 [ - + ]: 217 : if (!replay_nested)
10688 : 0 : goto nla_put_failure;
10689 : :
10690 [ + - ]: 217 : NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
10691 [ + - ]: 217 : NLA_PUT(msg, NL80211_REKEY_DATA_KCK, NL80211_KCK_LEN, kck);
10692 [ + - ]: 217 : NLA_PUT(msg, NL80211_REKEY_DATA_REPLAY_CTR, NL80211_REPLAY_CTR_LEN,
10693 : : replay_ctr);
10694 : :
10695 : 217 : nla_nest_end(msg, replay_nested);
10696 : :
10697 : 217 : send_and_recv_msgs(drv, msg, NULL, NULL);
10698 : 217 : return;
10699 : : nla_put_failure:
10700 : 217 : nlmsg_free(msg);
10701 : : }
10702 : :
10703 : :
10704 : 0 : static void nl80211_send_null_frame(struct i802_bss *bss, const u8 *own_addr,
10705 : : const u8 *addr, int qos)
10706 : : {
10707 : : /* send data frame to poll STA and check whether
10708 : : * this frame is ACKed */
10709 : : struct {
10710 : : struct ieee80211_hdr hdr;
10711 : : u16 qos_ctl;
10712 : : } STRUCT_PACKED nulldata;
10713 : : size_t size;
10714 : :
10715 : : /* Send data frame to poll STA and check whether this frame is ACKed */
10716 : :
10717 : 0 : os_memset(&nulldata, 0, sizeof(nulldata));
10718 : :
10719 [ # # ]: 0 : if (qos) {
10720 : 0 : nulldata.hdr.frame_control =
10721 : : IEEE80211_FC(WLAN_FC_TYPE_DATA,
10722 : : WLAN_FC_STYPE_QOS_NULL);
10723 : 0 : size = sizeof(nulldata);
10724 : : } else {
10725 : 0 : nulldata.hdr.frame_control =
10726 : : IEEE80211_FC(WLAN_FC_TYPE_DATA,
10727 : : WLAN_FC_STYPE_NULLFUNC);
10728 : 0 : size = sizeof(struct ieee80211_hdr);
10729 : : }
10730 : :
10731 : 0 : nulldata.hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
10732 : 0 : os_memcpy(nulldata.hdr.IEEE80211_DA_FROMDS, addr, ETH_ALEN);
10733 : 0 : os_memcpy(nulldata.hdr.IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
10734 : 0 : os_memcpy(nulldata.hdr.IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
10735 : :
10736 [ # # ]: 0 : if (wpa_driver_nl80211_send_mlme(bss, (u8 *) &nulldata, size, 0, 0, 0,
10737 : : 0, 0) < 0)
10738 : 0 : wpa_printf(MSG_DEBUG, "nl80211_send_null_frame: Failed to "
10739 : : "send poll frame");
10740 : 0 : }
10741 : :
10742 : 0 : static void nl80211_poll_client(void *priv, const u8 *own_addr, const u8 *addr,
10743 : : int qos)
10744 : : {
10745 : 0 : struct i802_bss *bss = priv;
10746 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10747 : : struct nl_msg *msg;
10748 : :
10749 [ # # ]: 0 : if (!drv->poll_command_supported) {
10750 : 0 : nl80211_send_null_frame(bss, own_addr, addr, qos);
10751 : 0 : return;
10752 : : }
10753 : :
10754 : 0 : msg = nlmsg_alloc();
10755 [ # # ]: 0 : if (!msg)
10756 : 0 : return;
10757 : :
10758 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_PROBE_CLIENT);
10759 : :
10760 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10761 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
10762 : :
10763 : 0 : send_and_recv_msgs(drv, msg, NULL, NULL);
10764 : 0 : return;
10765 : : nla_put_failure:
10766 : 0 : nlmsg_free(msg);
10767 : : }
10768 : :
10769 : :
10770 : 0 : static int nl80211_set_power_save(struct i802_bss *bss, int enabled)
10771 : : {
10772 : : struct nl_msg *msg;
10773 : :
10774 : 0 : msg = nlmsg_alloc();
10775 [ # # ]: 0 : if (!msg)
10776 : 0 : return -ENOMEM;
10777 : :
10778 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_SET_POWER_SAVE);
10779 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
10780 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_PS_STATE,
10781 : : enabled ? NL80211_PS_ENABLED : NL80211_PS_DISABLED);
10782 : 0 : return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
10783 : : nla_put_failure:
10784 : 0 : nlmsg_free(msg);
10785 : 0 : return -ENOBUFS;
10786 : : }
10787 : :
10788 : :
10789 : 0 : static int nl80211_set_p2p_powersave(void *priv, int legacy_ps, int opp_ps,
10790 : : int ctwindow)
10791 : : {
10792 : 0 : struct i802_bss *bss = priv;
10793 : :
10794 : 0 : wpa_printf(MSG_DEBUG, "nl80211: set_p2p_powersave (legacy_ps=%d "
10795 : : "opp_ps=%d ctwindow=%d)", legacy_ps, opp_ps, ctwindow);
10796 : :
10797 [ # # ][ # # ]: 0 : if (opp_ps != -1 || ctwindow != -1) {
10798 : : #ifdef ANDROID_P2P
10799 : : wpa_driver_set_p2p_ps(priv, legacy_ps, opp_ps, ctwindow);
10800 : : #else /* ANDROID_P2P */
10801 : 0 : return -1; /* Not yet supported */
10802 : : #endif /* ANDROID_P2P */
10803 : : }
10804 : :
10805 [ # # ]: 0 : if (legacy_ps == -1)
10806 : 0 : return 0;
10807 [ # # ][ # # ]: 0 : if (legacy_ps != 0 && legacy_ps != 1)
10808 : 0 : return -1; /* Not yet supported */
10809 : :
10810 : 0 : return nl80211_set_power_save(bss, legacy_ps);
10811 : : }
10812 : :
10813 : :
10814 : 0 : static int nl80211_start_radar_detection(void *priv,
10815 : : struct hostapd_freq_params *freq)
10816 : : {
10817 : 0 : struct i802_bss *bss = priv;
10818 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
10819 : : struct nl_msg *msg;
10820 : : int ret;
10821 : :
10822 : 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)",
10823 : : freq->freq, freq->ht_enabled, freq->vht_enabled,
10824 : : freq->bandwidth, freq->center_freq1, freq->center_freq2);
10825 : :
10826 [ # # ]: 0 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_RADAR)) {
10827 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support radar "
10828 : : "detection");
10829 : 0 : return -1;
10830 : : }
10831 : :
10832 : 0 : msg = nlmsg_alloc();
10833 [ # # ]: 0 : if (!msg)
10834 : 0 : return -1;
10835 : :
10836 : 0 : nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_RADAR_DETECT);
10837 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10838 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
10839 : :
10840 [ # # ]: 0 : if (freq->vht_enabled) {
10841 [ # # # # : 0 : switch (freq->bandwidth) {
# ]
10842 : : case 20:
10843 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10844 : : NL80211_CHAN_WIDTH_20);
10845 : 0 : break;
10846 : : case 40:
10847 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10848 : : NL80211_CHAN_WIDTH_40);
10849 : 0 : break;
10850 : : case 80:
10851 [ # # ]: 0 : if (freq->center_freq2)
10852 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10853 : : NL80211_CHAN_WIDTH_80P80);
10854 : : else
10855 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10856 : : NL80211_CHAN_WIDTH_80);
10857 : 0 : break;
10858 : : case 160:
10859 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
10860 : : NL80211_CHAN_WIDTH_160);
10861 : 0 : break;
10862 : : default:
10863 : 0 : return -1;
10864 : : }
10865 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
10866 [ # # ]: 0 : if (freq->center_freq2)
10867 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
10868 : : freq->center_freq2);
10869 [ # # ]: 0 : } else if (freq->ht_enabled) {
10870 [ # # # ]: 0 : switch (freq->sec_channel_offset) {
10871 : : case -1:
10872 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10873 : : NL80211_CHAN_HT40MINUS);
10874 : 0 : break;
10875 : : case 1:
10876 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10877 : : NL80211_CHAN_HT40PLUS);
10878 : 0 : break;
10879 : : default:
10880 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
10881 : : NL80211_CHAN_HT20);
10882 : 0 : break;
10883 : : }
10884 : : }
10885 : :
10886 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
10887 [ # # ]: 0 : if (ret == 0)
10888 : 0 : return 0;
10889 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Failed to start radar detection: "
10890 : : "%d (%s)", ret, strerror(-ret));
10891 : : nla_put_failure:
10892 : 0 : return -1;
10893 : : }
10894 : :
10895 : : #ifdef CONFIG_TDLS
10896 : :
10897 : 105 : static int nl80211_send_tdls_mgmt(void *priv, const u8 *dst, u8 action_code,
10898 : : u8 dialog_token, u16 status_code,
10899 : : const u8 *buf, size_t len)
10900 : : {
10901 : 105 : struct i802_bss *bss = priv;
10902 : 105 : struct wpa_driver_nl80211_data *drv = bss->drv;
10903 : : struct nl_msg *msg;
10904 : :
10905 [ - + ]: 105 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
10906 : 0 : return -EOPNOTSUPP;
10907 : :
10908 [ - + ]: 105 : if (!dst)
10909 : 0 : return -EINVAL;
10910 : :
10911 : 105 : msg = nlmsg_alloc();
10912 [ - + ]: 105 : if (!msg)
10913 : 0 : return -ENOMEM;
10914 : :
10915 : 105 : nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_MGMT);
10916 [ + - ]: 105 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10917 [ + - ]: 105 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst);
10918 [ + - ]: 105 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_ACTION, action_code);
10919 [ + - ]: 105 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_DIALOG_TOKEN, dialog_token);
10920 [ + - ]: 105 : NLA_PUT_U16(msg, NL80211_ATTR_STATUS_CODE, status_code);
10921 [ + - ]: 105 : NLA_PUT(msg, NL80211_ATTR_IE, len, buf);
10922 : :
10923 : 105 : return send_and_recv_msgs(drv, msg, NULL, NULL);
10924 : :
10925 : : nla_put_failure:
10926 : 0 : nlmsg_free(msg);
10927 : 105 : return -ENOBUFS;
10928 : : }
10929 : :
10930 : :
10931 : 702 : static int nl80211_tdls_oper(void *priv, enum tdls_oper oper, const u8 *peer)
10932 : : {
10933 : 702 : struct i802_bss *bss = priv;
10934 : 702 : struct wpa_driver_nl80211_data *drv = bss->drv;
10935 : : struct nl_msg *msg;
10936 : : enum nl80211_tdls_operation nl80211_oper;
10937 : :
10938 [ - + ]: 702 : if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
10939 : 0 : return -EOPNOTSUPP;
10940 : :
10941 [ - - - + : 702 : switch (oper) {
+ + - - ]
10942 : : case TDLS_DISCOVERY_REQ:
10943 : 0 : nl80211_oper = NL80211_TDLS_DISCOVERY_REQ;
10944 : 0 : break;
10945 : : case TDLS_SETUP:
10946 : 0 : nl80211_oper = NL80211_TDLS_SETUP;
10947 : 0 : break;
10948 : : case TDLS_TEARDOWN:
10949 : 0 : nl80211_oper = NL80211_TDLS_TEARDOWN;
10950 : 0 : break;
10951 : : case TDLS_ENABLE_LINK:
10952 : 38 : nl80211_oper = NL80211_TDLS_ENABLE_LINK;
10953 : 38 : break;
10954 : : case TDLS_DISABLE_LINK:
10955 : 60 : nl80211_oper = NL80211_TDLS_DISABLE_LINK;
10956 : 60 : break;
10957 : : case TDLS_ENABLE:
10958 : 604 : return 0;
10959 : : case TDLS_DISABLE:
10960 : 0 : return 0;
10961 : : default:
10962 : 0 : return -EINVAL;
10963 : : }
10964 : :
10965 : 98 : msg = nlmsg_alloc();
10966 [ - + ]: 98 : if (!msg)
10967 : 0 : return -ENOMEM;
10968 : :
10969 : 98 : nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_OPER);
10970 [ + - ]: 98 : NLA_PUT_U8(msg, NL80211_ATTR_TDLS_OPERATION, nl80211_oper);
10971 [ + - ]: 98 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
10972 [ + - ]: 98 : NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, peer);
10973 : :
10974 : 98 : return send_and_recv_msgs(drv, msg, NULL, NULL);
10975 : :
10976 : : nla_put_failure:
10977 : 0 : nlmsg_free(msg);
10978 : 702 : return -ENOBUFS;
10979 : : }
10980 : :
10981 : : #endif /* CONFIG TDLS */
10982 : :
10983 : :
10984 : : #ifdef ANDROID
10985 : :
10986 : : typedef struct android_wifi_priv_cmd {
10987 : : char *buf;
10988 : : int used_len;
10989 : : int total_len;
10990 : : } android_wifi_priv_cmd;
10991 : :
10992 : : static int drv_errors = 0;
10993 : :
10994 : : static void wpa_driver_send_hang_msg(struct wpa_driver_nl80211_data *drv)
10995 : : {
10996 : : drv_errors++;
10997 : : if (drv_errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
10998 : : drv_errors = 0;
10999 : : wpa_msg(drv->ctx, MSG_INFO, WPA_EVENT_DRIVER_STATE "HANGED");
11000 : : }
11001 : : }
11002 : :
11003 : :
11004 : : static int android_priv_cmd(struct i802_bss *bss, const char *cmd)
11005 : : {
11006 : : struct wpa_driver_nl80211_data *drv = bss->drv;
11007 : : struct ifreq ifr;
11008 : : android_wifi_priv_cmd priv_cmd;
11009 : : char buf[MAX_DRV_CMD_SIZE];
11010 : : int ret;
11011 : :
11012 : : os_memset(&ifr, 0, sizeof(ifr));
11013 : : os_memset(&priv_cmd, 0, sizeof(priv_cmd));
11014 : : os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
11015 : :
11016 : : os_memset(buf, 0, sizeof(buf));
11017 : : os_strlcpy(buf, cmd, sizeof(buf));
11018 : :
11019 : : priv_cmd.buf = buf;
11020 : : priv_cmd.used_len = sizeof(buf);
11021 : : priv_cmd.total_len = sizeof(buf);
11022 : : ifr.ifr_data = &priv_cmd;
11023 : :
11024 : : ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
11025 : : if (ret < 0) {
11026 : : wpa_printf(MSG_ERROR, "%s: failed to issue private commands",
11027 : : __func__);
11028 : : wpa_driver_send_hang_msg(drv);
11029 : : return ret;
11030 : : }
11031 : :
11032 : : drv_errors = 0;
11033 : : return 0;
11034 : : }
11035 : :
11036 : :
11037 : : static int android_pno_start(struct i802_bss *bss,
11038 : : struct wpa_driver_scan_params *params)
11039 : : {
11040 : : struct wpa_driver_nl80211_data *drv = bss->drv;
11041 : : struct ifreq ifr;
11042 : : android_wifi_priv_cmd priv_cmd;
11043 : : int ret = 0, i = 0, bp;
11044 : : char buf[WEXT_PNO_MAX_COMMAND_SIZE];
11045 : :
11046 : : bp = WEXT_PNOSETUP_HEADER_SIZE;
11047 : : os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp);
11048 : : buf[bp++] = WEXT_PNO_TLV_PREFIX;
11049 : : buf[bp++] = WEXT_PNO_TLV_VERSION;
11050 : : buf[bp++] = WEXT_PNO_TLV_SUBVERSION;
11051 : : buf[bp++] = WEXT_PNO_TLV_RESERVED;
11052 : :
11053 : : while (i < WEXT_PNO_AMOUNT && (size_t) i < params->num_ssids) {
11054 : : /* Check that there is enough space needed for 1 more SSID, the
11055 : : * other sections and null termination */
11056 : : if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN +
11057 : : WEXT_PNO_NONSSID_SECTIONS_SIZE + 1) >= (int) sizeof(buf))
11058 : : break;
11059 : : wpa_hexdump_ascii(MSG_DEBUG, "For PNO Scan",
11060 : : params->ssids[i].ssid,
11061 : : params->ssids[i].ssid_len);
11062 : : buf[bp++] = WEXT_PNO_SSID_SECTION;
11063 : : buf[bp++] = params->ssids[i].ssid_len;
11064 : : os_memcpy(&buf[bp], params->ssids[i].ssid,
11065 : : params->ssids[i].ssid_len);
11066 : : bp += params->ssids[i].ssid_len;
11067 : : i++;
11068 : : }
11069 : :
11070 : : buf[bp++] = WEXT_PNO_SCAN_INTERVAL_SECTION;
11071 : : os_snprintf(&buf[bp], WEXT_PNO_SCAN_INTERVAL_LENGTH + 1, "%x",
11072 : : WEXT_PNO_SCAN_INTERVAL);
11073 : : bp += WEXT_PNO_SCAN_INTERVAL_LENGTH;
11074 : :
11075 : : buf[bp++] = WEXT_PNO_REPEAT_SECTION;
11076 : : os_snprintf(&buf[bp], WEXT_PNO_REPEAT_LENGTH + 1, "%x",
11077 : : WEXT_PNO_REPEAT);
11078 : : bp += WEXT_PNO_REPEAT_LENGTH;
11079 : :
11080 : : buf[bp++] = WEXT_PNO_MAX_REPEAT_SECTION;
11081 : : os_snprintf(&buf[bp], WEXT_PNO_MAX_REPEAT_LENGTH + 1, "%x",
11082 : : WEXT_PNO_MAX_REPEAT);
11083 : : bp += WEXT_PNO_MAX_REPEAT_LENGTH + 1;
11084 : :
11085 : : memset(&ifr, 0, sizeof(ifr));
11086 : : memset(&priv_cmd, 0, sizeof(priv_cmd));
11087 : : os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
11088 : :
11089 : : priv_cmd.buf = buf;
11090 : : priv_cmd.used_len = bp;
11091 : : priv_cmd.total_len = bp;
11092 : : ifr.ifr_data = &priv_cmd;
11093 : :
11094 : : ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
11095 : :
11096 : : if (ret < 0) {
11097 : : wpa_printf(MSG_ERROR, "ioctl[SIOCSIWPRIV] (pnosetup): %d",
11098 : : ret);
11099 : : wpa_driver_send_hang_msg(drv);
11100 : : return ret;
11101 : : }
11102 : :
11103 : : drv_errors = 0;
11104 : :
11105 : : return android_priv_cmd(bss, "PNOFORCE 1");
11106 : : }
11107 : :
11108 : :
11109 : : static int android_pno_stop(struct i802_bss *bss)
11110 : : {
11111 : : return android_priv_cmd(bss, "PNOFORCE 0");
11112 : : }
11113 : :
11114 : : #endif /* ANDROID */
11115 : :
11116 : :
11117 : 8946 : static int driver_nl80211_set_key(const char *ifname, void *priv,
11118 : : enum wpa_alg alg, const u8 *addr,
11119 : : int key_idx, int set_tx,
11120 : : const u8 *seq, size_t seq_len,
11121 : : const u8 *key, size_t key_len)
11122 : : {
11123 : 8946 : struct i802_bss *bss = priv;
11124 : 8946 : return wpa_driver_nl80211_set_key(ifname, bss, alg, addr, key_idx,
11125 : : set_tx, seq, seq_len, key, key_len);
11126 : : }
11127 : :
11128 : :
11129 : 921 : static int driver_nl80211_scan2(void *priv,
11130 : : struct wpa_driver_scan_params *params)
11131 : : {
11132 : 921 : struct i802_bss *bss = priv;
11133 : 921 : return wpa_driver_nl80211_scan(bss, params);
11134 : : }
11135 : :
11136 : :
11137 : 350 : static int driver_nl80211_deauthenticate(void *priv, const u8 *addr,
11138 : : int reason_code)
11139 : : {
11140 : 350 : struct i802_bss *bss = priv;
11141 : 350 : return wpa_driver_nl80211_deauthenticate(bss, addr, reason_code);
11142 : : }
11143 : :
11144 : :
11145 : 387 : static int driver_nl80211_authenticate(void *priv,
11146 : : struct wpa_driver_auth_params *params)
11147 : : {
11148 : 387 : struct i802_bss *bss = priv;
11149 : 387 : return wpa_driver_nl80211_authenticate(bss, params);
11150 : : }
11151 : :
11152 : :
11153 : 22 : static void driver_nl80211_deinit(void *priv)
11154 : : {
11155 : 22 : struct i802_bss *bss = priv;
11156 : 22 : wpa_driver_nl80211_deinit(bss);
11157 : 22 : }
11158 : :
11159 : :
11160 : 36 : static int driver_nl80211_if_remove(void *priv, enum wpa_driver_if_type type,
11161 : : const char *ifname)
11162 : : {
11163 : 36 : struct i802_bss *bss = priv;
11164 : 36 : return wpa_driver_nl80211_if_remove(bss, type, ifname);
11165 : : }
11166 : :
11167 : :
11168 : 1708 : static int driver_nl80211_send_mlme(void *priv, const u8 *data,
11169 : : size_t data_len, int noack)
11170 : : {
11171 : 1708 : struct i802_bss *bss = priv;
11172 : 1708 : return wpa_driver_nl80211_send_mlme(bss, data, data_len, noack,
11173 : : 0, 0, 0, 0);
11174 : : }
11175 : :
11176 : :
11177 : 712 : static int driver_nl80211_sta_remove(void *priv, const u8 *addr)
11178 : : {
11179 : 712 : struct i802_bss *bss = priv;
11180 : 712 : return wpa_driver_nl80211_sta_remove(bss, addr);
11181 : : }
11182 : :
11183 : :
11184 : 0 : static int driver_nl80211_set_sta_vlan(void *priv, const u8 *addr,
11185 : : const char *ifname, int vlan_id)
11186 : : {
11187 : 0 : struct i802_bss *bss = priv;
11188 : 0 : return i802_set_sta_vlan(bss, addr, ifname, vlan_id);
11189 : : }
11190 : :
11191 : :
11192 : 0 : static int driver_nl80211_read_sta_data(void *priv,
11193 : : struct hostap_sta_driver_data *data,
11194 : : const u8 *addr)
11195 : : {
11196 : 0 : struct i802_bss *bss = priv;
11197 : 0 : return i802_read_sta_data(bss, data, addr);
11198 : : }
11199 : :
11200 : :
11201 : 378 : static int driver_nl80211_send_action(void *priv, unsigned int freq,
11202 : : unsigned int wait_time,
11203 : : const u8 *dst, const u8 *src,
11204 : : const u8 *bssid,
11205 : : const u8 *data, size_t data_len,
11206 : : int no_cck)
11207 : : {
11208 : 378 : struct i802_bss *bss = priv;
11209 : 378 : return wpa_driver_nl80211_send_action(bss, freq, wait_time, dst, src,
11210 : : bssid, data, data_len, no_cck);
11211 : : }
11212 : :
11213 : :
11214 : 2534 : static int driver_nl80211_probe_req_report(void *priv, int report)
11215 : : {
11216 : 2534 : struct i802_bss *bss = priv;
11217 : 2534 : return wpa_driver_nl80211_probe_req_report(bss, report);
11218 : : }
11219 : :
11220 : :
11221 : 0 : static int wpa_driver_nl80211_update_ft_ies(void *priv, const u8 *md,
11222 : : const u8 *ies, size_t ies_len)
11223 : : {
11224 : : int ret;
11225 : : struct nl_msg *msg;
11226 : 0 : struct i802_bss *bss = priv;
11227 : 0 : struct wpa_driver_nl80211_data *drv = bss->drv;
11228 : 0 : u16 mdid = WPA_GET_LE16(md);
11229 : :
11230 : 0 : msg = nlmsg_alloc();
11231 [ # # ]: 0 : if (!msg)
11232 : 0 : return -ENOMEM;
11233 : :
11234 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Updating FT IEs");
11235 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_UPDATE_FT_IES);
11236 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11237 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE, ies_len, ies);
11238 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_MDID, mdid);
11239 : :
11240 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11241 [ # # ]: 0 : if (ret) {
11242 : 0 : wpa_printf(MSG_DEBUG, "nl80211: update_ft_ies failed "
11243 : : "err=%d (%s)", ret, strerror(-ret));
11244 : : }
11245 : :
11246 : 0 : return ret;
11247 : :
11248 : : nla_put_failure:
11249 : 0 : nlmsg_free(msg);
11250 : 0 : return -ENOBUFS;
11251 : : }
11252 : :
11253 : :
11254 : 22 : const u8 * wpa_driver_nl80211_get_macaddr(void *priv)
11255 : : {
11256 : 22 : struct i802_bss *bss = priv;
11257 : 22 : struct wpa_driver_nl80211_data *drv = bss->drv;
11258 : :
11259 [ + - ]: 22 : if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE)
11260 : 22 : return NULL;
11261 : :
11262 : 22 : return bss->addr;
11263 : : }
11264 : :
11265 : :
11266 : 610 : static const char * scan_state_str(enum scan_states scan_state)
11267 : : {
11268 [ + - + + : 610 : switch (scan_state) {
- - - -
- ]
11269 : : case NO_SCAN:
11270 : 3 : return "NO_SCAN";
11271 : : case SCAN_REQUESTED:
11272 : 0 : return "SCAN_REQUESTED";
11273 : : case SCAN_STARTED:
11274 : 6 : return "SCAN_STARTED";
11275 : : case SCAN_COMPLETED:
11276 : 601 : return "SCAN_COMPLETED";
11277 : : case SCAN_ABORTED:
11278 : 0 : return "SCAN_ABORTED";
11279 : : case SCHED_SCAN_STARTED:
11280 : 0 : return "SCHED_SCAN_STARTED";
11281 : : case SCHED_SCAN_STOPPED:
11282 : 0 : return "SCHED_SCAN_STOPPED";
11283 : : case SCHED_SCAN_RESULTS:
11284 : 0 : return "SCHED_SCAN_RESULTS";
11285 : : }
11286 : :
11287 : 610 : return "??";
11288 : : }
11289 : :
11290 : :
11291 : 610 : static int wpa_driver_nl80211_status(void *priv, char *buf, size_t buflen)
11292 : : {
11293 : 610 : struct i802_bss *bss = priv;
11294 : 610 : struct wpa_driver_nl80211_data *drv = bss->drv;
11295 : : int res;
11296 : : char *pos, *end;
11297 : :
11298 : 610 : pos = buf;
11299 : 610 : end = buf + buflen;
11300 : :
11301 [ - + ][ - + ]: 610 : res = os_snprintf(pos, end - pos,
[ - + ][ - + ]
[ - + ]
11302 : : "ifindex=%d\n"
11303 : : "ifname=%s\n"
11304 : : "brname=%s\n"
11305 : : "addr=" MACSTR "\n"
11306 : : "freq=%d\n"
11307 : : "%s%s%s%s%s",
11308 : : bss->ifindex,
11309 : 610 : bss->ifname,
11310 : 610 : bss->brname,
11311 : 3660 : MAC2STR(bss->addr),
11312 : : bss->freq,
11313 : 610 : bss->beacon_set ? "beacon_set=1\n" : "",
11314 : 610 : bss->added_if_into_bridge ?
11315 : : "added_if_into_bridge=1\n" : "",
11316 : 610 : bss->added_bridge ? "added_bridge=1\n" : "",
11317 : 610 : bss->in_deinit ? "in_deinit=1\n" : "",
11318 : 610 : bss->if_dynamic ? "if_dynamic=1\n" : "");
11319 [ + - ][ - + ]: 610 : if (res < 0 || res >= end - pos)
11320 : 0 : return pos - buf;
11321 : 610 : pos += res;
11322 : :
11323 [ - + ]: 610 : if (bss->wdev_id_set) {
11324 : 0 : res = os_snprintf(pos, end - pos, "wdev_id=%llu\n",
11325 : 0 : (unsigned long long) bss->wdev_id);
11326 [ # # ][ # # ]: 0 : if (res < 0 || res >= end - pos)
11327 : 0 : return pos - buf;
11328 : 0 : pos += res;
11329 : : }
11330 : :
11331 [ - + ][ - + ]: 610 : res = os_snprintf(pos, end - pos,
[ - + ][ - + ]
[ - + ][ + - ]
[ + - ][ - + ]
[ + - ][ - + ]
[ + + ][ + + ]
[ - + ]
11332 : : "phyname=%s\n"
11333 : : "drv_ifindex=%d\n"
11334 : : "operstate=%d\n"
11335 : : "scan_state=%s\n"
11336 : : "auth_bssid=" MACSTR "\n"
11337 : : "auth_attempt_bssid=" MACSTR "\n"
11338 : : "bssid=" MACSTR "\n"
11339 : : "prev_bssid=" MACSTR "\n"
11340 : : "associated=%d\n"
11341 : : "assoc_freq=%u\n"
11342 : : "monitor_sock=%d\n"
11343 : : "monitor_ifidx=%d\n"
11344 : : "monitor_refcount=%d\n"
11345 : : "last_mgmt_freq=%u\n"
11346 : : "eapol_tx_sock=%d\n"
11347 : : "%s%s%s%s%s%s%s%s%s%s%s%s%s",
11348 : 610 : drv->phyname,
11349 : : drv->ifindex,
11350 : : drv->operstate,
11351 : : scan_state_str(drv->scan_state),
11352 : 3660 : MAC2STR(drv->auth_bssid),
11353 : 3660 : MAC2STR(drv->auth_attempt_bssid),
11354 : 3660 : MAC2STR(drv->bssid),
11355 : 3660 : MAC2STR(drv->prev_bssid),
11356 : : drv->associated,
11357 : : drv->assoc_freq,
11358 : : drv->monitor_sock,
11359 : : drv->monitor_ifidx,
11360 : : drv->monitor_refcount,
11361 : : drv->last_mgmt_freq,
11362 : : drv->eapol_tx_sock,
11363 : 610 : drv->ignore_if_down_event ?
11364 : : "ignore_if_down_event=1\n" : "",
11365 : 610 : drv->scan_complete_events ?
11366 : : "scan_complete_events=1\n" : "",
11367 : 610 : drv->disabled_11b_rates ?
11368 : : "disabled_11b_rates=1\n" : "",
11369 : 610 : drv->pending_remain_on_chan ?
11370 : : "pending_remain_on_chan=1\n" : "",
11371 : 610 : drv->in_interface_list ? "in_interface_list=1\n" : "",
11372 : 610 : drv->device_ap_sme ? "device_ap_sme=1\n" : "",
11373 : 610 : drv->poll_command_supported ?
11374 : : "poll_command_supported=1\n" : "",
11375 : 610 : drv->data_tx_status ? "data_tx_status=1\n" : "",
11376 : 610 : drv->scan_for_auth ? "scan_for_auth=1\n" : "",
11377 : 610 : drv->retry_auth ? "retry_auth=1\n" : "",
11378 : 610 : drv->use_monitor ? "use_monitor=1\n" : "",
11379 : 610 : drv->ignore_next_local_disconnect ?
11380 : : "ignore_next_local_disconnect=1\n" : "",
11381 : 610 : drv->allow_p2p_device ? "allow_p2p_device=1\n" : "");
11382 [ - + ][ + - ]: 610 : if (res < 0 || res >= end - pos)
11383 : 0 : return pos - buf;
11384 : 610 : pos += res;
11385 : :
11386 [ + - ]: 610 : if (drv->has_capability) {
11387 : 610 : res = os_snprintf(pos, end - pos,
11388 : : "capa.key_mgmt=0x%x\n"
11389 : : "capa.enc=0x%x\n"
11390 : : "capa.auth=0x%x\n"
11391 : : "capa.flags=0x%x\n"
11392 : : "capa.max_scan_ssids=%d\n"
11393 : : "capa.max_sched_scan_ssids=%d\n"
11394 : : "capa.sched_scan_supported=%d\n"
11395 : : "capa.max_match_sets=%d\n"
11396 : : "capa.max_remain_on_chan=%u\n"
11397 : : "capa.max_stations=%u\n"
11398 : : "capa.probe_resp_offloads=0x%x\n"
11399 : : "capa.max_acl_mac_addrs=%u\n"
11400 : : "capa.num_multichan_concurrent=%u\n",
11401 : : drv->capa.key_mgmt,
11402 : : drv->capa.enc,
11403 : : drv->capa.auth,
11404 : : drv->capa.flags,
11405 : : drv->capa.max_scan_ssids,
11406 : : drv->capa.max_sched_scan_ssids,
11407 : : drv->capa.sched_scan_supported,
11408 : : drv->capa.max_match_sets,
11409 : : drv->capa.max_remain_on_chan,
11410 : : drv->capa.max_stations,
11411 : : drv->capa.probe_resp_offloads,
11412 : : drv->capa.max_acl_mac_addrs,
11413 : : drv->capa.num_multichan_concurrent);
11414 [ + - ][ - + ]: 610 : if (res < 0 || res >= end - pos)
11415 : 0 : return pos - buf;
11416 : 610 : pos += res;
11417 : : }
11418 : :
11419 : 610 : return pos - buf;
11420 : : }
11421 : :
11422 : :
11423 : 0 : static int set_beacon_data(struct nl_msg *msg, struct beacon_data *settings)
11424 : : {
11425 [ # # ]: 0 : if (settings->head)
11426 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD,
11427 : : settings->head_len, settings->head);
11428 : :
11429 [ # # ]: 0 : if (settings->tail)
11430 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL,
11431 : : settings->tail_len, settings->tail);
11432 : :
11433 [ # # ]: 0 : if (settings->beacon_ies)
11434 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE,
11435 : : settings->beacon_ies_len, settings->beacon_ies);
11436 : :
11437 [ # # ]: 0 : if (settings->proberesp_ies)
11438 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
11439 : : settings->proberesp_ies_len, settings->proberesp_ies);
11440 : :
11441 [ # # ]: 0 : if (settings->assocresp_ies)
11442 [ # # ]: 0 : NLA_PUT(msg,
11443 : : NL80211_ATTR_IE_ASSOC_RESP,
11444 : : settings->assocresp_ies_len, settings->assocresp_ies);
11445 : :
11446 [ # # ]: 0 : if (settings->probe_resp)
11447 [ # # ]: 0 : NLA_PUT(msg, NL80211_ATTR_PROBE_RESP,
11448 : : settings->probe_resp_len, settings->probe_resp);
11449 : :
11450 : 0 : return 0;
11451 : :
11452 : : nla_put_failure:
11453 : 0 : return -ENOBUFS;
11454 : : }
11455 : :
11456 : :
11457 : 1 : static int nl80211_switch_channel(void *priv, struct csa_settings *settings)
11458 : : {
11459 : : struct nl_msg *msg;
11460 : 1 : struct i802_bss *bss = priv;
11461 : 1 : struct wpa_driver_nl80211_data *drv = bss->drv;
11462 : : struct nlattr *beacon_csa;
11463 : 1 : int ret = -ENOBUFS;
11464 : :
11465 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Channel switch request (cs_count=%u block_tx=%u freq=%d width=%d cf1=%d cf2=%d)",
11466 : 2 : settings->cs_count, settings->block_tx,
11467 : : settings->freq_params.freq, settings->freq_params.bandwidth,
11468 : : settings->freq_params.center_freq1,
11469 : : settings->freq_params.center_freq2);
11470 : :
11471 [ + - ]: 1 : if (!drv->channel_switch_supported) {
11472 : 1 : wpa_printf(MSG_DEBUG, "nl80211: Driver does not support channel switch command");
11473 : 1 : return -EOPNOTSUPP;
11474 : : }
11475 : :
11476 [ # # ][ # # ]: 0 : if ((drv->nlmode != NL80211_IFTYPE_AP) &&
11477 : 0 : (drv->nlmode != NL80211_IFTYPE_P2P_GO))
11478 : 0 : return -EOPNOTSUPP;
11479 : :
11480 : : /* check settings validity */
11481 [ # # ][ # # ]: 0 : if (!settings->beacon_csa.tail ||
11482 : 0 : ((settings->beacon_csa.tail_len <=
11483 [ # # ]: 0 : settings->counter_offset_beacon) ||
11484 : 0 : (settings->beacon_csa.tail[settings->counter_offset_beacon] !=
11485 : 0 : settings->cs_count)))
11486 : 0 : return -EINVAL;
11487 : :
11488 [ # # ][ # # ]: 0 : if (settings->beacon_csa.probe_resp &&
11489 : 0 : ((settings->beacon_csa.probe_resp_len <=
11490 [ # # ]: 0 : settings->counter_offset_presp) ||
11491 : 0 : (settings->beacon_csa.probe_resp[settings->counter_offset_presp] !=
11492 : 0 : settings->cs_count)))
11493 : 0 : return -EINVAL;
11494 : :
11495 : 0 : msg = nlmsg_alloc();
11496 [ # # ]: 0 : if (!msg)
11497 : 0 : return -ENOMEM;
11498 : :
11499 : 0 : nl80211_cmd(drv, msg, 0, NL80211_CMD_CHANNEL_SWITCH);
11500 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11501 [ # # ]: 0 : NLA_PUT_U32(msg, NL80211_ATTR_CH_SWITCH_COUNT, settings->cs_count);
11502 : 0 : ret = nl80211_put_freq_params(msg, &settings->freq_params);
11503 [ # # ]: 0 : if (ret)
11504 : 0 : goto error;
11505 : :
11506 [ # # ]: 0 : if (settings->block_tx)
11507 [ # # ]: 0 : NLA_PUT_FLAG(msg, NL80211_ATTR_CH_SWITCH_BLOCK_TX);
11508 : :
11509 : : /* beacon_after params */
11510 : 0 : ret = set_beacon_data(msg, &settings->beacon_after);
11511 [ # # ]: 0 : if (ret)
11512 : 0 : goto error;
11513 : :
11514 : : /* beacon_csa params */
11515 : 0 : beacon_csa = nla_nest_start(msg, NL80211_ATTR_CSA_IES);
11516 [ # # ]: 0 : if (!beacon_csa)
11517 : 0 : goto nla_put_failure;
11518 : :
11519 : 0 : ret = set_beacon_data(msg, &settings->beacon_csa);
11520 [ # # ]: 0 : if (ret)
11521 : 0 : goto error;
11522 : :
11523 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_BEACON,
11524 : : settings->counter_offset_beacon);
11525 : :
11526 [ # # ]: 0 : if (settings->beacon_csa.probe_resp)
11527 [ # # ]: 0 : NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_PRESP,
11528 : : settings->counter_offset_presp);
11529 : :
11530 : 0 : nla_nest_end(msg, beacon_csa);
11531 : 0 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11532 [ # # ]: 0 : if (ret) {
11533 : 0 : wpa_printf(MSG_DEBUG, "nl80211: switch_channel failed err=%d (%s)",
11534 : : ret, strerror(-ret));
11535 : : }
11536 : 0 : return ret;
11537 : :
11538 : : nla_put_failure:
11539 : 0 : ret = -ENOBUFS;
11540 : : error:
11541 : 0 : nlmsg_free(msg);
11542 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Could not build channel switch request");
11543 : 1 : return ret;
11544 : : }
11545 : :
11546 : :
11547 : 4 : static int nl80211_set_qos_map(void *priv, const u8 *qos_map_set,
11548 : : u8 qos_map_set_len)
11549 : : {
11550 : 4 : struct i802_bss *bss = priv;
11551 : 4 : struct wpa_driver_nl80211_data *drv = bss->drv;
11552 : : struct nl_msg *msg;
11553 : : int ret;
11554 : :
11555 : 4 : msg = nlmsg_alloc();
11556 [ - + ]: 4 : if (!msg)
11557 : 0 : return -ENOMEM;
11558 : :
11559 : 4 : wpa_hexdump(MSG_DEBUG, "nl80211: Setting QoS Map",
11560 : : qos_map_set, qos_map_set_len);
11561 : :
11562 : 4 : nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_QOS_MAP);
11563 [ + - ]: 4 : NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
11564 [ + - ]: 4 : NLA_PUT(msg, NL80211_ATTR_QOS_MAP, qos_map_set_len, qos_map_set);
11565 : :
11566 : 4 : ret = send_and_recv_msgs(drv, msg, NULL, NULL);
11567 [ - + ]: 4 : if (ret)
11568 : 0 : wpa_printf(MSG_DEBUG, "nl80211: Setting QoS Map failed");
11569 : :
11570 : 4 : return ret;
11571 : :
11572 : : nla_put_failure:
11573 : 0 : nlmsg_free(msg);
11574 : 4 : return -ENOBUFS;
11575 : : }
11576 : :
11577 : :
11578 : : const struct wpa_driver_ops wpa_driver_nl80211_ops = {
11579 : : .name = "nl80211",
11580 : : .desc = "Linux nl80211/cfg80211",
11581 : : .get_bssid = wpa_driver_nl80211_get_bssid,
11582 : : .get_ssid = wpa_driver_nl80211_get_ssid,
11583 : : .set_key = driver_nl80211_set_key,
11584 : : .scan2 = driver_nl80211_scan2,
11585 : : .sched_scan = wpa_driver_nl80211_sched_scan,
11586 : : .stop_sched_scan = wpa_driver_nl80211_stop_sched_scan,
11587 : : .get_scan_results2 = wpa_driver_nl80211_get_scan_results,
11588 : : .deauthenticate = driver_nl80211_deauthenticate,
11589 : : .authenticate = driver_nl80211_authenticate,
11590 : : .associate = wpa_driver_nl80211_associate,
11591 : : .global_init = nl80211_global_init,
11592 : : .global_deinit = nl80211_global_deinit,
11593 : : .init2 = wpa_driver_nl80211_init,
11594 : : .deinit = driver_nl80211_deinit,
11595 : : .get_capa = wpa_driver_nl80211_get_capa,
11596 : : .set_operstate = wpa_driver_nl80211_set_operstate,
11597 : : .set_supp_port = wpa_driver_nl80211_set_supp_port,
11598 : : .set_country = wpa_driver_nl80211_set_country,
11599 : : .get_country = wpa_driver_nl80211_get_country,
11600 : : .set_ap = wpa_driver_nl80211_set_ap,
11601 : : .set_acl = wpa_driver_nl80211_set_acl,
11602 : : .if_add = wpa_driver_nl80211_if_add,
11603 : : .if_remove = driver_nl80211_if_remove,
11604 : : .send_mlme = driver_nl80211_send_mlme,
11605 : : .get_hw_feature_data = wpa_driver_nl80211_get_hw_feature_data,
11606 : : .sta_add = wpa_driver_nl80211_sta_add,
11607 : : .sta_remove = driver_nl80211_sta_remove,
11608 : : .hapd_send_eapol = wpa_driver_nl80211_hapd_send_eapol,
11609 : : .sta_set_flags = wpa_driver_nl80211_sta_set_flags,
11610 : : .hapd_init = i802_init,
11611 : : .hapd_deinit = i802_deinit,
11612 : : .set_wds_sta = i802_set_wds_sta,
11613 : : .get_seqnum = i802_get_seqnum,
11614 : : .flush = i802_flush,
11615 : : .get_inact_sec = i802_get_inact_sec,
11616 : : .sta_clear_stats = i802_sta_clear_stats,
11617 : : .set_rts = i802_set_rts,
11618 : : .set_frag = i802_set_frag,
11619 : : .set_tx_queue_params = i802_set_tx_queue_params,
11620 : : .set_sta_vlan = driver_nl80211_set_sta_vlan,
11621 : : .sta_deauth = i802_sta_deauth,
11622 : : .sta_disassoc = i802_sta_disassoc,
11623 : : .read_sta_data = driver_nl80211_read_sta_data,
11624 : : .set_freq = i802_set_freq,
11625 : : .send_action = driver_nl80211_send_action,
11626 : : .send_action_cancel_wait = wpa_driver_nl80211_send_action_cancel_wait,
11627 : : .remain_on_channel = wpa_driver_nl80211_remain_on_channel,
11628 : : .cancel_remain_on_channel =
11629 : : wpa_driver_nl80211_cancel_remain_on_channel,
11630 : : .probe_req_report = driver_nl80211_probe_req_report,
11631 : : .deinit_ap = wpa_driver_nl80211_deinit_ap,
11632 : : .deinit_p2p_cli = wpa_driver_nl80211_deinit_p2p_cli,
11633 : : .resume = wpa_driver_nl80211_resume,
11634 : : .send_ft_action = nl80211_send_ft_action,
11635 : : .signal_monitor = nl80211_signal_monitor,
11636 : : .signal_poll = nl80211_signal_poll,
11637 : : .send_frame = nl80211_send_frame,
11638 : : .shared_freq = wpa_driver_nl80211_shared_freq,
11639 : : .set_param = nl80211_set_param,
11640 : : .get_radio_name = nl80211_get_radio_name,
11641 : : .add_pmkid = nl80211_add_pmkid,
11642 : : .remove_pmkid = nl80211_remove_pmkid,
11643 : : .flush_pmkid = nl80211_flush_pmkid,
11644 : : .set_rekey_info = nl80211_set_rekey_info,
11645 : : .poll_client = nl80211_poll_client,
11646 : : .set_p2p_powersave = nl80211_set_p2p_powersave,
11647 : : .start_dfs_cac = nl80211_start_radar_detection,
11648 : : .stop_ap = wpa_driver_nl80211_stop_ap,
11649 : : #ifdef CONFIG_TDLS
11650 : : .send_tdls_mgmt = nl80211_send_tdls_mgmt,
11651 : : .tdls_oper = nl80211_tdls_oper,
11652 : : #endif /* CONFIG_TDLS */
11653 : : .update_ft_ies = wpa_driver_nl80211_update_ft_ies,
11654 : : .get_mac_addr = wpa_driver_nl80211_get_macaddr,
11655 : : .get_survey = wpa_driver_nl80211_get_survey,
11656 : : .status = wpa_driver_nl80211_status,
11657 : : .switch_channel = nl80211_switch_channel,
11658 : : #ifdef ANDROID_P2P
11659 : : .set_noa = wpa_driver_set_p2p_noa,
11660 : : .get_noa = wpa_driver_get_p2p_noa,
11661 : : .set_ap_wps_ie = wpa_driver_set_ap_wps_p2p_ie,
11662 : : #endif /* ANDROID_P2P */
11663 : : #ifdef ANDROID
11664 : : .driver_cmd = wpa_driver_nl80211_driver_cmd,
11665 : : #endif /* ANDROID */
11666 : : .set_qos_map = nl80211_set_qos_map,
11667 : : };
|